[
  {
    "path": ".github/create-search-demo-gif.md",
    "content": "# 如何创建搜索功能演示 GIF\n\n> **注意**：当前 `.github/search-demo.gif` 是一个占位符。请按照以下步骤创建真实的演示 GIF。\n\n## 🚀 方法 0: 使用自动化脚本（推荐）\n\n我们提供了一个自动化脚本，可以自动访问 GitHub Pages 并生成演示 GIF：\n\n```bash\n# 1. 安装依赖\npip install playwright Pillow\nplaywright install chromium\n\n# 2. 运行脚本\npython scripts/generate_search_demo_gif.py\n```\n\n脚本会自动：\n- ✅ 访问 GitHub Pages 页面\n- ✅ 等待数据加载\n- ✅ 执行多个搜索操作（\"文学\"、\"历史\"、\"沟通 励志\"）\n- ✅ 截图并生成 GIF 动画\n- ✅ 保存到 `.github/search-demo.gif`\n\n**优点**：完全自动化，无需手动操作，可重复执行\n\n## 方法 1: 使用 Kap（推荐，macOS）\n\n1. 下载并安装 [Kap](https://getkap.co/)\n2. 打开 GitHub Pages 页面：https://jbiaojerry.github.io/ebook-treasure-chest/\n3. 使用 Kap 录制以下操作：\n   - 展示页面加载和统计信息\n   - 在搜索框输入关键词（如\"文学\"、\"历史\"）\n   - 展示实时搜索结果\n   - 展示点击下载链接\n4. 导出为 GIF，保存为 `.github/search-demo.gif`\n\n## 方法 2: 使用 macOS 屏幕录制 + ffmpeg 转换\n\n1. 打开 GitHub Pages 页面：https://jbiaojerry.github.io/ebook-treasure-chest/\n2. 使用 macOS 内置的屏幕录制功能（Command+Shift+5）录制搜索演示\n3. 安装 gifsicle（如果未安装）：\n   ```bash\n   brew install gifsicle\n   ```\n4. 将录制的视频转换为 GIF：\n   ```bash\n   ffmpeg -i input.mov -vf \"fps=10,scale=1280:-1:flags=lanczos\" -c:v gif - | \\\n   gifsicle --optimize=3 --delay=10 > .github/search-demo.gif\n   ```\n\n## 方法 3: 使用其他工具\n\n- **Gifox** (macOS): https://gifox.io/\n- **ScreenToGif** (Windows): https://www.screentogif.com/\n- **Peek** (Linux): https://github.com/phw/peek\n\n## 录制内容建议\n\n- ✅ 展示页面加载和统计信息（总书籍数、分类数）\n- ✅ 在搜索框输入关键词（如\"文学\"、\"历史\"、\"沟通\"）\n- ✅ 展示实时搜索结果（高亮关键词）\n- ✅ 展示多关键词搜索（用空格分隔）\n- ✅ 展示点击下载链接\n- ⏱️ 总时长：10-15 秒\n- 📐 分辨率：1280x720 或更高\n- 🎨 保持与页面 Solarized Dark 主题一致\n"
  },
  {
    "path": ".github/workflows/full-sync.yml",
    "content": "name: Full Sync Books\n\npermissions:\n  contents: write\n\non:\n  workflow_dispatch:  # 只允许手动触发\n  # 也可以添加一次性schedule，例如：\n  # schedule:\n  #   - cron: '0 0 1 1 *'  # 每年1月1日执行一次\n\njobs:\n  full-sync:\n    runs-on: ubuntu-latest\n    timeout-minutes: 600  # 全量同步可能需要较长时间（10小时，支持处理6万+书籍）\n    \n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          fetch-depth: 0  # 获取完整历史，避免推送冲突\n\n      - name: Set up Python\n        uses: actions/setup-python@v5\n        with:\n          python-version: \"3.10\"\n\n      - name: Install dependencies\n        run: |\n          pip install requests beautifulsoup4 aiohttp\n\n      - name: Full sync books\n        env:\n          BOOK_SITE_DOMAIN: ${{ secrets.BOOK_SITE_DOMAIN }}\n          OUTPUT_DIR: md\n        run: |\n          # 检查环境变量\n          if [ -z \"$BOOK_SITE_DOMAIN\" ]; then\n            echo \"❌ 错误: BOOK_SITE_DOMAIN 未设置\"\n            echo \"请在 GitHub Repository Settings > Secrets and variables > Actions 中添加 BOOK_SITE_DOMAIN\"\n            exit 1\n          fi\n          \n          echo \"✅ BOOK_SITE_DOMAIN 已从GitHub Secrets加载\"\n          echo \"📁 输出目录: $OUTPUT_DIR\"\n          \n          # 运行全量同步脚本（会自动查找最大ID并更新README和all_books.json）\n          # 使用分批处理：每批20000本，降低单次运行风险，配合断点续传和超时保护\n          cd scripts/sync\n          python3 sync_all_books.py --skip-backup --batch-size 20000\n\n      - name: Commit and push changes\n        if: success()  # 只有同步成功才提交\n        run: |\n          git config user.name \"github-actions[bot]\"\n          git config user.email \"github-actions[bot]@users.noreply.github.com\"\n          \n          # 检查是否有变更\n          if [ -n \"$(git status --porcelain)\" ]; then\n            # 添加所有变更（md目录、README.md、all_books.json等）\n            git add md/ README.md docs/all-books.json docs/parse-stats.json || true\n            git commit -m \"auto: full sync books and update README [skip ci]\" || echo \"No changes to commit\"\n            \n            # 在推送前先拉取远程更改（避免推送冲突）\n            echo \"📥 拉取远程最新更改...\"\n            git fetch origin main\n            git pull origin main --rebase || git pull origin main --no-rebase || true\n            \n            # 推送更改（最多重试3次）\n            max_retries=3\n            retry_count=0\n            while [ $retry_count -lt $max_retries ]; do\n              if git push origin main; then\n                echo \"✅ 推送成功\"\n                break\n              else\n                retry_count=$((retry_count + 1))\n                echo \"⚠️  推送失败，重试 $retry_count/$max_retries...\"\n                if [ $retry_count -lt $max_retries ]; then\n                  # 重新拉取并合并\n                  git fetch origin main\n                  git rebase origin/main || git merge origin/main || true\n                  sleep 2\n                else\n                  echo \"❌ 推送失败，已达到最大重试次数\"\n                  exit 1\n                fi\n              fi\n            done\n          else\n            echo \"No changes to commit\"\n          fi\n"
  },
  {
    "path": ".github/workflows/generate-site.yml",
    "content": "name: Generate Index\n\npermissions:\n  contents: write\n\non:\n  push:\n    branches:\n      - main\n    paths:\n      - \"scripts/**\"\n      - \"md/**\"\n  # 排除由同步脚本触发的提交（避免循环）\n  # 同步脚本使用 [skip ci] 标记，不会触发此工作流\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          fetch-depth: 0  # 获取完整历史，避免推送冲突\n\n      - uses: actions/setup-python@v5\n        with:\n          python-version: \"3.10\"\n\n      - name: Install dependencies\n        run: |\n          echo \"No external dependencies required\"\n\n      - name: Parse MD files to JSON\n        # 注意：all-books.json 通常已由同步脚本生成\n        # 这里确保all-books.json存在（如果不存在则生成）\n        run: |\n          if [ ! -f \"docs/all-books.json\" ]; then\n            echo \"⚠️  all-books.json 不存在，生成中...\"\n            python scripts/parse_md_to_json.py\n          else\n            echo \"✅ all-books.json 已存在（可能由同步脚本生成），跳过生成\"\n          fi\n\n      - name: Generate index.html\n        run: |\n          python scripts/generate_index.py\n\n      - name: Commit and push\n        run: |\n          git config user.name \"github-actions[bot]\"\n          git config user.email \"github-actions[bot]@users.noreply.github.com\"\n          git add docs/index.html docs/books.json docs/all-books.json docs/parse-stats.json docs/search.js\n          git rm docs/index.md 2>/dev/null || true\n          git commit -m \"auto: update index and search data\" || echo \"No changes\"\n          \n          # 在推送前先拉取远程更改（避免推送冲突）\n          echo \"📥 拉取远程最新更改...\"\n          git fetch origin main\n          git pull origin main --rebase || git pull origin main --no-rebase || true\n          \n          # 推送更改（最多重试3次）\n          max_retries=3\n          retry_count=0\n          while [ $retry_count -lt $max_retries ]; do\n            if git push origin main; then\n              echo \"✅ 推送成功\"\n              break\n            else\n              retry_count=$((retry_count + 1))\n              echo \"⚠️  推送失败，重试 $retry_count/$max_retries...\"\n              if [ $retry_count -lt $max_retries ]; then\n                # 重新拉取并合并\n                git fetch origin main\n                git rebase origin/main || git merge origin/main || true\n                sleep 2\n              else\n                echo \"❌ 推送失败，已达到最大重试次数\"\n                exit 1\n              fi\n            fi\n          done\n"
  },
  {
    "path": ".github/workflows/incremental-sync.yml",
    "content": "name: Incremental Sync Books\n\npermissions:\n  contents: write\n\non:\n  schedule:\n    # 每天凌晨2点自动执行（UTC时间，即北京时间10点）\n    - cron: '0 2 * * *'\n  workflow_dispatch:  # 允许手动触发\n\njobs:\n  incremental-sync:\n    runs-on: ubuntu-latest\n    timeout-minutes: 60  # 增量同步通常较快\n    \n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n\n      - name: Set up Python\n        uses: actions/setup-python@v5\n        with:\n          python-version: \"3.10\"\n\n      - name: Install dependencies\n        run: |\n          pip install requests beautifulsoup4 aiohttp\n\n      - name: Incremental sync books\n        env:\n          BOOK_SITE_DOMAIN: ${{ secrets.BOOK_SITE_DOMAIN }}\n          OUTPUT_DIR: md\n        run: |\n          # 检查环境变量\n          if [ -z \"$BOOK_SITE_DOMAIN\" ]; then\n            echo \"❌ 错误: BOOK_SITE_DOMAIN 未设置\"\n            echo \"请在 GitHub Repository Settings > Secrets and variables > Actions 中添加 BOOK_SITE_DOMAIN\"\n            exit 1\n          fi\n          \n          echo \"✅ BOOK_SITE_DOMAIN 已从GitHub Secrets加载\"\n          echo \"📁 输出目录: $OUTPUT_DIR\"\n          \n          # 运行增量同步脚本\n          cd scripts/sync\n          python3 incremental_sync.py\n\n      - name: Update README and all_books.json\n        if: success()  # 只有同步成功才更新\n        run: |\n          # 更新README.md的热门分类章节\n          echo \"📝 更新README.md热门分类章节...\"\n          python3 scripts/sync/update_readme_hot_categories.py || echo \"⚠️  README更新失败，继续执行\"\n          \n          # 生成all_books.json\n          echo \"📝 生成all_books.json...\"\n          python3 scripts/parse_md_to_json.py || echo \"⚠️  all_books.json生成失败，继续执行\"\n\n      - name: Commit and push changes\n        if: success()  # 只有同步成功才提交\n        run: |\n          git config user.name \"github-actions[bot]\"\n          git config user.email \"github-actions[bot]@users.noreply.github.com\"\n          \n          # 检查是否有变更\n          if [ -n \"$(git status --porcelain)\" ]; then\n            # 添加所有变更（md目录、README.md、all_books.json等）\n            git add md/ README.md docs/all-books.json docs/parse-stats.json || true\n            git commit -m \"auto: incremental sync books and update README [skip ci]\" || echo \"No changes to commit\"\n            git push\n          else\n            echo \"No changes to commit\"\n          fi\n"
  },
  {
    "path": ".gitignore",
    "content": "# 配置文件（包含敏感信息）\nscripts/sync/config.py\n\n# 测试输出目录\nmd_test/\n\n# 备份文件\nbackup/\nmd_backup/\n\n# Python缓存\n__pycache__/\n*.pyc\n*.pyo\n*.pyd\n\n# 环境变量文件\n.env\n.env.local\n\n# IDE配置\n.vscode/\n.idea/\n*.swp\n*.swo\n\n# 系统文件\n.DS_Store\nThumbs.db\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\">\n<img src=\".github/logo.png\" alt=\"Project Logo\">\n</p>\n\n# 电子书下载宝库\n\n![GitHub](https://img.shields.io/github/license/jbiaojerry/ebook-treasure-chest)\n![GitHub stars](https://img.shields.io/github/stars/jbiaojerry/ebook-treasure-chest?style=social)\n![GitHub forks](https://img.shields.io/github/forks/jbiaojerry/ebook-treasure-chest?style=social)\n\n> **🌐 [在线访问 GitHub Pages](https://jbiaojerry.github.io/ebook-treasure-chest/)** - 体验强大的实时搜索功能和多关键字搜索，快速找到你想要的电子书！\n\n欢迎来到电子书下载宝库，一个汇聚了各类电子书下载链接的地方。无论你是喜欢阅读经典文学、经管励志、终身学习、职场创业、技术手册还是其他类型的书籍，这里都能满足你的需求。\n该库涵盖了帆书app(原樊登读书)、微信读书、京东读书、喜马拉雅等读书app的大部分电子书。\n\n## 简介\n\n我们从各个电子书网站上精心收集了各种电子书下载链接，并根据常用的标签对它们进行了简单分类。每本书都包括了三种常见格式文件：epub、mobi 和 azw3，以满足不同阅读设备和喜好的需求。\n\n## 🔍 如何使用\n\n浏览我们的下载宝库非常简单：\n\n### 🌐 实时快速搜索（推荐）\n\n**访问 [GitHub Pages 实时在线搜索页面](https://jbiaojerry.github.io/ebook-treasure-chest/)**，体验强大的实时快速搜索和多关键词搜索功能：\n\n- **🔎 实时搜索**：输入书名、作者或分类关键词，即时显示匹配结果\n- **💡 多关键词搜索**：支持同时搜索多个关键词（用空格分隔）\n\n![搜索功能演示](.github/search-demo.gif?v=2)\n\n### 💡 搜索技巧\n- **在线搜索**：访问 GitHub Pages 页面，使用实时搜索功能（推荐）\n- **Ctrl+F**：在 GitHub 页面使用浏览器搜索功能\n- **热门分类**：文学、历史、科普、管理、社会、推理等\n- **按需查找**：职场、创业、技术、投资、心理学等专业领域\n\n## ☕ 请我们喝咖啡\n\n> **🌟 如果这个项目对你有帮助，欢迎请我们喝杯咖啡！你的支持是我们持续维护和更新这个项目的动力。**\n\n<div align=\"center\">\n\n<img src=\".github/赞赏码.jpg\" alt=\"赞赏码\" width=\"200\">\n\n**感谢所有支持我们的赞助人！**  \n查看 [📋 赞助人名单](sponsors.md) 了解已赞赏的赞助人信息。\n\n</div>\n\n\n\n# 📚 索引目录\n\n> **💡 使用 Ctrl+F 快速搜索关键词，或点击下方标签直接进入分类页面**\n\n## 🔥 热门分类\n\n- [文学(2711)](md/文学.md)  | - [历史(1748)](md/历史.md)  | - [科普(743)](md/科普.md)  | - [管理(613)](md/管理.md)  | - [社会(558)](md/社会.md)  | - [推理(531)](md/推理.md)  | - [经典(494)](md/经典.md)  | - [经济(487)](md/经济.md) \n- [哲学(431)](md/哲学.md)  | - [传记(413)](md/传记.md)  | - [美国(399)](md/美国.md)  | - [心理(396)](md/心理.md)  | - [悬疑(393)](md/悬疑.md)  | - [商业(387)](md/商业.md)  | - [励志(373)](md/励志.md)  | - [金融(370)](md/金融.md) \n- [随笔(368)](md/随笔.md)  | - [投资(365)](md/投资.md)  | - [思维(353)](md/思维.md)  | - [文化(344)](md/文化.md)  | - [科幻(286)](md/科幻.md)  | - [中国(281)](md/中国.md)  | - [成长(248)](md/成长.md)  | - [漫画(227)](md/漫画.md) \n- [英国(223)](md/英国.md)  | - [政治(202)](md/政治.md)  | - [纪实(199)](md/纪实.md)  | - [艺术(191)](md/艺术.md)  | - [科学(177)](md/科学.md)  | - [散文(168)](md/散文.md)  | - [职场(155)](md/职场.md)  | - [法国(147)](md/法国.md) \n- [生活(145)](md/生活.md)  | - [互联网(138)](md/互联网.md)  | - [营销(128)](md/营销.md)  | - [女性(125)](md/女性.md)  | - [二战(118)](md/二战.md)  | - [奇幻(116)](md/奇幻.md)  | - [股票(115)](md/股票.md)  | - [德国(101)](md/德国.md) \n- [战争(101)](md/战争.md)  | - [学习(101)](md/学习.md)  | - [绘本(100)](md/绘本.md)  | - [理财(96)](md/理财.md)  | - [世界(92)](md/世界.md)  | - [教育(88)](md/教育.md)  | - [创业(86)](md/创业.md)  | - [欧洲(85)](md/欧洲.md) \n- [治愈(84)](md/治愈.md)  | - [沟通(84)](md/沟通.md)  | - [名著(81)](md/名著.md)  | - [军事(80)](md/军事.md)  | - [爱情(78)](md/爱情.md)  | - [人物(77)](md/人物.md)  | - [医学(74)](md/医学.md)  | - [物理(70)](md/物理.md) \n- [诗歌(67)](md/诗歌.md)  | - [国学(66)](md/国学.md)  | - [健康(65)](md/健康.md)  | - [科技(60)](md/科技.md)  | - [写作(58)](md/写作.md)  | - [人文(57)](md/人文.md)  | - [旅行(55)](md/旅行.md)  | - [个人(55)](md/个人.md) \n- [民国(53)](md/民国.md)  | - [心理学(53)](md/心理学.md)  | - [自然(52)](md/自然.md)  | - [当代(52)](md/当代.md)  | - [杂文(51)](md/杂文.md)  | - [外国(48)](md/外国.md)  | - [思想(47)](md/思想.md)  | - [育儿(47)](md/育儿.md) \n- [人类(47)](md/人类.md)  | - [计算机(47)](md/计算机.md)  | - [宗教(46)](md/宗教.md)  | - [犯罪(44)](md/犯罪.md)  | - [人生(44)](md/人生.md)  | - [美食(43)](md/美食.md)  | - [古典(43)](md/古典.md)  | - [编程(43)](md/编程.md) \n- [逻辑(42)](md/逻辑.md)  | - [诗词(42)](md/诗词.md)  | - [交易(42)](md/交易.md)  | - [言情(40)](md/言情.md)  | - [未来(40)](md/未来.md)  | - [回忆录(39)](md/回忆录.md)  | - [神话(39)](md/神话.md)  | - [数学(39)](md/数学.md) \n- [晚清(38)](md/晚清.md)  | - [侦探(38)](md/侦探.md)  | - [人工智能(38)](md/人工智能.md)  | - [青春(38)](md/青春.md)  | - [近代史(38)](md/近代史.md)  | - [方法(37)](md/方法.md)  | - [儿童(37)](md/儿童.md)  | - [社交(36)](md/社交.md) \n- [创新(36)](md/创新.md)  | - [生物(35)](md/生物.md)  | - [宇宙(35)](md/宇宙.md)  | - [电影(34)](md/电影.md)  | - [意大利(34)](md/意大利.md)  | - [运营(34)](md/运营.md)  | - [游记(33)](md/游记.md)  | - [饮食(32)](md/饮食.md) \n- [情绪(31)](md/情绪.md)  | - [企业(31)](md/企业.md)  | - [罗马(31)](md/罗马.md)  | - [博物馆(29)](md/博物馆.md)  | - [心灵(29)](md/心灵.md)  | - [武侠(29)](md/武侠.md)  | - [Python(28)](md/Python.md)  | - [台湾(28)](md/台湾.md) \n- [音乐(27)](md/音乐.md)  | - [思考(27)](md/思考.md)  | - [明朝(26)](md/明朝.md)  | - [销售(26)](md/销售.md)  | - [三国(26)](md/三国.md)  | - [运动(26)](md/运动.md)  | - [玄幻(26)](md/玄幻.md)  | - [阅读(26)](md/阅读.md) \n- [英语(26)](md/英语.md)  | - [工作(26)](md/工作.md)  | - [健身(25)](md/健身.md)  | - [俄罗斯(25)](md/俄罗斯.md)  | - [人性(25)](md/人性.md)  | - [戏剧(23)](md/戏剧.md)  | - [天文(23)](md/天文.md)  | - [经济学(23)](md/经济学.md) \n- [动物(23)](md/动物.md)  | - [法律(23)](md/法律.md)  | - [绘画(22)](md/绘画.md)  | - [情感(21)](md/情感.md)  | - [恐怖(21)](md/恐怖.md)  | - [情商(21)](md/情商.md)  | - [建筑(20)](md/建筑.md)  | - [清史(20)](md/清史.md) \n- [西方(20)](md/西方.md)  | - [苏联(20)](md/苏联.md)  | - [进化(20)](md/进化.md)  | - [城市(20)](md/城市.md)  | - [货币(20)](md/货币.md)  | - [现代(20)](md/现代.md)  | - [时间(19)](md/时间.md)  | - [魔幻(19)](md/魔幻.md) \n- [演讲(19)](md/演讲.md)  | - [惊悚(19)](md/惊悚.md)  | - [英文(19)](md/英文.md)  | - [摄影(19)](md/摄影.md)  | - [读书(19)](md/读书.md)  | - [古籍(19)](md/古籍.md)  | - [决策(18)](md/决策.md)  | - [考古(18)](md/考古.md) \n- [古代(18)](md/古代.md)  | - [成功(18)](md/成功.md)  | - [设计(18)](md/设计.md)  | - [社科(18)](md/社科.md)  | - [印度(18)](md/印度.md)  | - [经管(18)](md/经管.md)  | - [地理(18)](md/地理.md)  | - [社会学(17)](md/社会学.md) \n- [文案(17)](md/文案.md)  | - [世界史(17)](md/世界史.md)  | - [童话(17)](md/童话.md)  | - [人类学(17)](md/人类学.md)  | - [社会学人类学(17)](md/社会学人类学.md)  | - [鸡汤(17)](md/鸡汤.md)  | - [广告(16)](md/广告.md)  | - [生命(16)](md/生命.md) \n- [唐朝(16)](md/唐朝.md)  | - [自传(16)](md/自传.md)  | - [财富(16)](md/财富.md)  | - [口才(16)](md/口才.md)  | - [语言(16)](md/语言.md)  | - [市场(15)](md/市场.md)  | - [古希腊(15)](md/古希腊.md)  | - [巴菲特(15)](md/巴菲特.md) \n- [欧洲史(15)](md/欧洲史.md)  | - [法医(15)](md/法医.md)  | - [文明(15)](md/文明.md)  | - [养生(15)](md/养生.md)  | - [明史(15)](md/明史.md)  | - [佛学(15)](md/佛学.md)  | - [战略(15)](md/战略.md)  | - [拉美(15)](md/拉美.md) \n- [以色列(15)](md/以色列.md)  | - [文革(15)](md/文革.md)  | - [食帖(14)](md/食帖.md)  | - [认知(14)](md/认知.md)  | - [效率(14)](md/效率.md)  | - [间谍(14)](md/间谍.md)  | - [挪威(13)](md/挪威.md)  | - [大数据(13)](md/大数据.md) \n- [中世纪(13)](md/中世纪.md)  | - [非洲(13)](md/非洲.md)  | - [谈判(13)](md/谈判.md)  | - [一战(12)](md/一战.md)  | - [数据(12)](md/数据.md)  | - [财务(12)](md/财务.md)  | - [零售(12)](md/零售.md)  | - [新经济(12)](md/新经济.md) \n- [记忆(12)](md/记忆.md)  | - [基因(12)](md/基因.md)  | - [创意(12)](md/创意.md)  | - [领导力(12)](md/领导力.md)  | - [技术(12)](md/技术.md)  | - [区块链(11)](md/区块链.md)  | - [跑步(11)](md/跑步.md)  | - [西班牙(11)](md/西班牙.md) \n- [家庭(11)](md/家庭.md)  | - [焦虑(11)](md/焦虑.md)  | - [灵异(11)](md/灵异.md)  | - [人格(11)](md/人格.md)  | - [猫(11)](md/猫.md)  | - [俄国(11)](md/俄国.md)  | - [思想史(11)](md/思想史.md)  | - [西藏(11)](md/西藏.md) \n- [趋势(11)](md/趋势.md)  | - [博弈(11)](md/博弈.md)  | - [蒙古(11)](md/蒙古.md)  | - [温暖(11)](md/温暖.md)  | - [植物(11)](md/植物.md)  | - [两性(11)](md/两性.md)  | - [中东(11)](md/中东.md)  | - [抗战(11)](md/抗战.md) \n- [谍战(11)](md/谍战.md)  | - [探险(10)](md/探险.md)  | - [通识(10)](md/通识.md)  | - [量子(10)](md/量子.md)  | - [近代(10)](md/近代.md)  | - [海洋(10)](md/海洋.md)  | - [美学(10)](md/美学.md)  | - [诗集(10)](md/诗集.md) \n- [汉朝(10)](md/汉朝.md)  | - [保健(10)](md/保健.md)  | - [华尔街(10)](md/华尔街.md)  | - [经营(10)](md/经营.md)  | - [医疗(10)](md/医疗.md)  | - [期货(10)](md/期货.md)  | - [新媒体(10)](md/新媒体.md)  | - [工具(10)](md/工具.md) \n- [茶(10)](md/茶.md)  | - [算法(10)](md/算法.md)  | - [希腊(10)](md/希腊.md)  | - [探险，艺术(10)](md/探险，艺术.md)  | - [百科(10)](md/百科.md)  | - [清朝(10)](md/清朝.md)  | - [文艺(10)](md/文艺.md)  | - [睡眠(10)](md/睡眠.md) \n- [基金(10)](md/基金.md)  | - [莎士比亚(10)](md/莎士比亚.md)  | - [商战(9)](md/商战.md)  | - [网络(9)](md/网络.md)  | - [通俗(9)](md/通俗.md)  | - [幽默(9)](md/幽默.md)  | - [中医(9)](md/中医.md)  | - [春秋(9)](md/春秋.md) \n- [投机(9)](md/投机.md)  | - [官场(9)](md/官场.md)  | - [战国(9)](md/战国.md)  | - [北京(9)](md/北京.md)  | - [瑞典(9)](md/瑞典.md)  | - [技巧(9)](md/技巧.md)  | - [规划(9)](md/规划.md)  | - [证券(9)](md/证券.md) \n- [红楼梦(9)](md/红楼梦.md)  | - [习惯(9)](md/习惯.md)  | - [故事(9)](md/故事.md)  | - [华为(9)](md/华为.md)  | - [减肥(9)](md/减肥.md)  | - [资本(8)](md/资本.md)  | - [古罗马(8)](md/古罗马.md)  | - [埃及(8)](md/埃及.md) \n- [硅谷(8)](md/硅谷.md)  | - [冷战(8)](md/冷战.md)  | - [亲子(8)](md/亲子.md)  | - [唐诗(8)](md/唐诗.md)  | - [时尚(8)](md/时尚.md)  | - [宋史(8)](md/宋史.md)  | - [先秦(8)](md/先秦.md)  | - [脑科学(8)](md/脑科学.md) \n- [领导(8)](md/领导.md)  | - [新闻(8)](md/新闻.md)  | - [少儿(8)](md/少儿.md)  | - [文物(8)](md/文物.md)  | - [魏晋(8)](md/魏晋.md)  | - [秦汉(8)](md/秦汉.md)  | - [婚姻(8)](md/婚姻.md)  | - [老舍(8)](md/老舍.md) \n- [故宫(8)](md/故宫.md)  | - [量化(8)](md/量化.md)  | - [全球(8)](md/全球.md)  | - [经学(8)](md/经学.md)  | - [拿破仑(8)](md/拿破仑.md)  | - [民族(7)](md/民族.md)  | - [智能(7)](md/智能.md)  | - [亚洲(7)](md/亚洲.md) \n- [秦始皇(7)](md/秦始皇.md)  | - [性格(7)](md/性格.md)  | - [加拿大(7)](md/加拿大.md)  | - [财经(7)](md/财经.md)  | - [纳粹(7)](md/纳粹.md)  | - [宋词(7)](md/宋词.md)  | - [咖啡(7)](md/咖啡.md)  | - [户外(7)](md/户外.md) \n- [环境(7)](md/环境.md)  | - [定位(7)](md/定位.md)  | - [读客(7)](md/读客.md)  | - [佛教(7)](md/佛教.md)  | - [日记(7)](md/日记.md)  | - [贸易(7)](md/贸易.md)  | - [产品(7)](md/产品.md)  | - [笔记(7)](md/笔记.md) \n- [美术(7)](md/美术.md)  | - [知识(7)](md/知识.md)  | - [阿根廷(7)](md/阿根廷.md)  | - [帝国(7)](md/帝国.md)  | - [行为(7)](md/行为.md)  | - [癌症(7)](md/癌症.md)  | - [自我(7)](md/自我.md)  | - [书信(7)](md/书信.md) \n- [宋朝(7)](md/宋朝.md)  | - [病毒(7)](md/病毒.md)  | - [法学(7)](md/法学.md)  | - [道家(7)](md/道家.md)  | - [小时(7)](md/小时.md)  | - [AI(7)](md/AI.md)  | - [旅游(7)](md/旅游.md)  | - [奥地利(7)](md/奥地利.md) \n- [香港(7)](md/香港.md)  | - [雪球(6)](md/雪球.md)  | - [希特勒(6)](md/希特勒.md)  | - [易中天(6)](md/易中天.md)  | - [鲁迅(6)](md/鲁迅.md)  | - [牛津(6)](md/牛津.md)  | - [数据分析(6)](md/数据分析.md)  | - [会计(6)](md/会计.md) \n- [刑侦(6)](md/刑侦.md)  | - [盗墓(6)](md/盗墓.md)  | - [游戏(6)](md/游戏.md)  | - [风险(6)](md/风险.md)  | - [灵修(6)](md/灵修.md)  | - [太平天国(6)](md/太平天国.md)  | - [统计(6)](md/统计.md)  | - [同性(6)](md/同性.md) \n- [卡通(6)](md/卡通.md)  | - [短篇(6)](md/短篇.md)  | - [品牌(6)](md/品牌.md)  | - [拜占庭(6)](md/拜占庭.md)  | - [大脑(6)](md/大脑.md)  | - [论语(6)](md/论语.md)  | - [WEB(6)](md/WEB.md)  | - [阿拉伯(6)](md/阿拉伯.md) \n- [荷兰(6)](md/荷兰.md)  | - [海盗(6)](md/海盗.md)  | - [荒诞(6)](md/荒诞.md)  | - [改革(6)](md/改革.md)  | - [史学(6)](md/史学.md)  | - [说话(6)](md/说话.md)  | - [北洋(6)](md/北洋.md)  | - [革命(6)](md/革命.md) \n- [杂志(6)](md/杂志.md)  | - [海军(5)](md/海军.md)  | - [苹果(5)](md/苹果.md)  | - [正能量(5)](md/正能量.md)  | - [团队(5)](md/团队.md)  | - [明清(5)](md/明清.md)  | - [校园(5)](md/校园.md)  | - [暖心(5)](md/暖心.md) \n- [汉字(5)](md/汉字.md)  | - [冒险(5)](md/冒险.md)  | - [有趣(5)](md/有趣.md)  | - [伦理(5)](md/伦理.md)  | - [房地产(5)](md/房地产.md)  | - [人口(5)](md/人口.md)  | - [前端(5)](md/前端.md)  | - [心学(5)](md/心学.md) \n- [阿富汗(5)](md/阿富汗.md)  | - [名家(5)](md/名家.md)  | - [谷歌(5)](md/谷歌.md)  | - [曾国藩(5)](md/曾国藩.md)  | - [股市(5)](md/股市.md)  | - [自由(5)](md/自由.md)  | - [Java(5)](md/Java.md)  | - [地中海(5)](md/地中海.md) \n- [三体(5)](md/三体.md)  | - [常识(5)](md/常识.md)  | - [敦煌(5)](md/敦煌.md)  | - [权谋(5)](md/权谋.md)  | - [上海(5)](md/上海.md)  | - [技能(5)](md/技能.md)  | - [啤酒(5)](md/啤酒.md)  | - [土耳其(5)](md/土耳其.md) \n- [匈牙利(5)](md/匈牙利.md)  | - [剧本(5)](md/剧本.md)  | - [股权(5)](md/股权.md)  | - [犹太(5)](md/犹太.md)  | - [爬虫(5)](md/爬虫.md)  | - [太空(5)](md/太空.md)  | - [保险(5)](md/保险.md)  | - [毛姆(5)](md/毛姆.md) \n- [画册(4)](md/画册.md)  | - [秦汉史(4)](md/秦汉史.md)  | - [银行(4)](md/银行.md)  | - [南北朝(4)](md/南北朝.md)  | - [丹麦(4)](md/丹麦.md)  | - [东欧(4)](md/东欧.md)  | - [穿越(4)](md/穿越.md)  | - [CSS(4)](md/CSS.md) \n- [政治学(4)](md/政治学.md)  | - [电子商务(4)](md/电子商务.md)  | - [隋唐史(4)](md/隋唐史.md)  | - [访谈(4)](md/访谈.md)  | - [欧美(4)](md/欧美.md)  | - [企鹅(4)](md/企鹅.md)  | - [文集(4)](md/文集.md)  | - [期权(4)](md/期权.md) \n- [实用(4)](md/实用.md)  | - [民俗(4)](md/民俗.md)  | - [亚马逊(4)](md/亚马逊.md)  | - [儒学(4)](md/儒学.md)  | - [爱尔兰(4)](md/爱尔兰.md)  | - [外交(4)](md/外交.md)  | - [收藏(4)](md/收藏.md)  | - [外国文学(4)](md/外国文学.md) \n- [文化史(4)](md/文化史.md)  | - [概率(4)](md/概率.md)  | - [民主(4)](md/民主.md)  | - [刑法(4)](md/刑法.md)  | - [诗经(4)](md/诗经.md)  | - [儒家(4)](md/儒家.md)  | - [Linux(4)](md/Linux.md)  | - [财报(4)](md/财报.md) \n- [孔子(4)](md/孔子.md)  | - [知乎(4)](md/知乎.md)  | - [古文(4)](md/古文.md)  | - [职业(4)](md/职业.md)  | - [神怪(4)](md/神怪.md)  | - [梵高(4)](md/梵高.md)  | - [生物学(4)](md/生物学.md)  | - [私募(4)](md/私募.md) \n- [乔布斯(4)](md/乔布斯.md)  | - [知青(4)](md/知青.md)  | - [激励(4)](md/激励.md)  | - [死亡(4)](md/死亡.md)  | - [海洋史(4)](md/海洋史.md)  | - [5G(4)](md/5G.md)  | - [修行(4)](md/修行.md)  | - [电竞(4)](md/电竞.md) \n- [国外(4)](md/国外.md)  | - [甲骨文(4)](md/甲骨文.md)  | - [价值(4)](md/价值.md)  | - [讽刺(4)](md/讽刺.md)  | - [体育(4)](md/体育.md)  | - [性学(4)](md/性学.md)  | - [学术(4)](md/学术.md)  | - [减脂(4)](md/减脂.md) \n- [经济史(4)](md/经济史.md)  | - [种族(4)](md/种族.md)  | - [回忆(4)](md/回忆.md)  | - [韩国(4)](md/韩国.md)  | - [罪案(4)](md/罪案.md)  | - [十字军(4)](md/十字军.md)  | - [四大名著(4)](md/四大名著.md)  | - [足球(4)](md/足球.md) \n- [魔术(4)](md/魔术.md)  | - [南极(3)](md/南极.md)  | - [物流(3)](md/物流.md)  | - [烹饪(3)](md/烹饪.md)  | - [机器人(3)](md/机器人.md)  | - [唐代(3)](md/唐代.md)  | - [石黑一雄(3)](md/石黑一雄.md)  | - [小米(3)](md/小米.md) \n- [隋唐(3)](md/隋唐.md)  | - [普京(3)](md/普京.md)  | - [老子(3)](md/老子.md)  | - [时政(3)](md/时政.md)  | - [德鲁克(3)](md/德鲁克.md)  | - [传媒(3)](md/传媒.md)  | - [北宋(3)](md/北宋.md)  | - [WEB开发(3)](md/WEB开发.md) \n- [芯片(3)](md/芯片.md)  | - [可转债(3)](md/可转债.md)  | - [文献学(3)](md/文献学.md)  | - [评论(3)](md/评论.md)  | - [理想国(3)](md/理想国.md)  | - [南宋(3)](md/南宋.md)  | - [财商(3)](md/财商.md)  | - [禅修(3)](md/禅修.md) \n- [信仰(3)](md/信仰.md)  | - [史诗(3)](md/史诗.md)  | - [简史(3)](md/简史.md)  | - [慈禧(3)](md/慈禧.md)  | - [妖怪(3)](md/妖怪.md)  | - [安全(3)](md/安全.md)  | - [策划(3)](md/策划.md)  | - [情色(3)](md/情色.md) \n- [澳门(3)](md/澳门.md)  | - [治疗(3)](md/治疗.md)  | - [感人(3)](md/感人.md)  | - [电商(3)](md/电商.md)  | - [马克思(3)](md/马克思.md)  | - [霍金(3)](md/霍金.md)  | - [江湖(3)](md/江湖.md)  | - [美元(3)](md/美元.md) \n- [烧脑(3)](md/烧脑.md)  | - [梁启超(3)](md/梁启超.md)  | - [动漫(3)](md/动漫.md)  | - [系统(3)](md/系统.md)  | - [菜谱(3)](md/菜谱.md)  | - [汽车(3)](md/汽车.md)  | - [梦想(3)](md/梦想.md)  | - [脱口秀(3)](md/脱口秀.md) \n- [信息(3)](md/信息.md)  | - [北欧(3)](md/北欧.md)  | - [情报(3)](md/情报.md)  | - [人体(3)](md/人体.md)  | - [入门(3)](md/入门.md)  | - [编剧(3)](md/编剧.md)  | - [巴黎(3)](md/巴黎.md)  | - [知日(3)](md/知日.md) \n- [精进(3)](md/精进.md)  | - [美漫(3)](md/美漫.md)  | - [软件(3)](md/软件.md)  | - [MBA(3)](md/MBA.md)  | - [明清史(3)](md/明清史.md)  | - [反腐(3)](md/反腐.md)  | - [南非(3)](md/南非.md)  | - [国漫(3)](md/国漫.md) \n- [营养(3)](md/营养.md)  | - [禅(3)](md/禅.md)  | - [解密(3)](md/解密.md)  | - [冥想(3)](md/冥想.md)  | - [搞笑(3)](md/搞笑.md)  | - [李白(3)](md/李白.md)  | - [灾难(3)](md/灾难.md)  | - [理论(3)](md/理论.md) \n- [史料(3)](md/史料.md)  | - [读物(3)](md/读物.md)  | - [朝鲜(3)](md/朝鲜.md)  | - [星巴克(3)](md/星巴克.md)  | - [全球化(3)](md/全球化.md)  | - [党史(3)](md/党史.md)  | - [绩效(3)](md/绩效.md)  | - [技术分析(3)](md/技术分析.md) \n- [海尔(3)](md/海尔.md)  | - [小说文学(3)](md/小说文学.md)  | - [中国史(3)](md/中国史.md)  | - [苏格兰(3)](md/苏格兰.md)  | - [秦朝(3)](md/秦朝.md)  | - [Excel(3)](md/Excel.md)  | - [估值(3)](md/估值.md)  | - [巴西(3)](md/巴西.md) \n- [威尼斯(3)](md/威尼斯.md)  | - [缉毒(3)](md/缉毒.md)  | - [传播(3)](md/传播.md)  | - [年代(3)](md/年代.md)  | - [大清(3)](md/大清.md)  | - [能力(3)](md/能力.md)  | - [表达(3)](md/表达.md)  | - [东野圭吾(3)](md/东野圭吾.md) \n- [阿里巴巴(3)](md/阿里巴巴.md)  | - [课程(2)](md/课程.md)  | - [亲情(2)](md/亲情.md)  | - [国民党(2)](md/国民党.md)  | - [四书(2)](md/四书.md)  | - [芬兰(2)](md/芬兰.md)  | - [航海(2)](md/航海.md)  | - [甲午(2)](md/甲午.md) \n- [斯大林(2)](md/斯大林.md)  | - [明治维新(2)](md/明治维新.md)  | - [Spring(2)](md/Spring.md)  | - [物理学(2)](md/物理学.md)  | - [阴谋(2)](md/阴谋.md)  | - [暴雪(2)](md/暴雪.md)  | - [大学(2)](md/大学.md)  | - [宫斗(2)](md/宫斗.md) \n- [地图(2)](md/地图.md)  | - [美国史(2)](md/美国史.md)  | - [佛法(2)](md/佛法.md)  | - [化学(2)](md/化学.md)  | - [记录(2)](md/记录.md)  | - [野史(2)](md/野史.md)  | - [自控力(2)](md/自控力.md)  | - [黑人(2)](md/黑人.md) \n- [马来西亚(2)](md/马来西亚.md)  | - [苏轼(2)](md/苏轼.md)  | - [雍正(2)](md/雍正.md)  | - [趣味(2)](md/趣味.md)  | - [前端开发(2)](md/前端开发.md)  | - [葡萄牙(2)](md/葡萄牙.md)  | - [心智(2)](md/心智.md)  | - [疾病(2)](md/疾病.md) \n- [李诞(2)](md/李诞.md)  | - [易学(2)](md/易学.md)  | - [彭德怀(2)](md/彭德怀.md)  | - [犹太人(2)](md/犹太人.md)  | - [诡异(2)](md/诡异.md)  | - [诸葛亮(2)](md/诸葛亮.md)  | - [注意力(2)](md/注意力.md)  | - [国家(2)](md/国家.md) \n- [人力(2)](md/人力.md)  | - [虚构(2)](md/虚构.md)  | - [机器学习(2)](md/机器学习.md)  | - [高铁(2)](md/高铁.md)  | - [故乡(2)](md/故乡.md)  | - [昆虫(2)](md/昆虫.md)  | - [现象学(2)](md/现象学.md)  | - [抗日战争(2)](md/抗日战争.md) \n- [黑格尔(2)](md/黑格尔.md)  | - [用户(2)](md/用户.md)  | - [先秦史(2)](md/先秦史.md)  | - [美术史(2)](md/美术史.md)  | - [不平等(2)](md/不平等.md)  | - [影评(2)](md/影评.md)  | - [冯唐(2)](md/冯唐.md)  | - [瘟疫(2)](md/瘟疫.md) \n- [资治通鉴(2)](md/资治通鉴.md)  | - [鸟(2)](md/鸟.md)  | - [凯撒(2)](md/凯撒.md)  | - [社群(2)](md/社群.md)  | - [通信(2)](md/通信.md)  | - [达芬奇(2)](md/达芬奇.md)  | - [贫穷(2)](md/贫穷.md)  | - [狄更斯(2)](md/狄更斯.md) \n- [文史(2)](md/文史.md)  | - [鬼怪(2)](md/鬼怪.md)  | - [策略(2)](md/策略.md)  | - [拉伸(2)](md/拉伸.md)  | - [外汇(2)](md/外汇.md)  | - [产业(2)](md/产业.md)  | - [蒋介石(2)](md/蒋介石.md)  | - [法规(2)](md/法规.md) \n- [企业家(2)](md/企业家.md)  | - [词话(2)](md/词话.md)  | - [视频(2)](md/视频.md)  | - [武器(2)](md/武器.md)  | - [清单(2)](md/清单.md)  | - [戛纳(2)](md/戛纳.md)  | - [手绘(2)](md/手绘.md)  | - [暴力(2)](md/暴力.md) \n- [大航海(2)](md/大航海.md)  | - [短视频(2)](md/短视频.md)  | - [远古(2)](md/远古.md)  | - [皮肤(2)](md/皮肤.md)  | - [女权(2)](md/女权.md)  | - [西周(2)](md/西周.md)  | - [厨房(2)](md/厨房.md)  | - [教学(2)](md/教学.md) \n- [法国大革命(2)](md/法国大革命.md)  | - [破案(2)](md/破案.md)  | - [高盛(2)](md/高盛.md)  | - [学习方法(2)](md/学习方法.md)  | - [吸血鬼(2)](md/吸血鬼.md)  | - [朱元璋(2)](md/朱元璋.md)  | - [哈佛(2)](md/哈佛.md)  | - [女生(2)](md/女生.md) \n- [重口味(2)](md/重口味.md)  | - [法治(2)](md/法治.md)  | - [书法(2)](md/书法.md)  | - [语文(2)](md/语文.md)  | - [教材(2)](md/教材.md)  | - [雨果(2)](md/雨果.md)  | - [晚明(2)](md/晚明.md)  | - [服务(2)](md/服务.md) \n- [财政(2)](md/财政.md)  | - [大汉(2)](md/大汉.md)  | - [通史(2)](md/通史.md)  | - [越南(2)](md/越南.md)  | - [加缪(2)](md/加缪.md)  | - [买房(2)](md/买房.md)  | - [抖音(2)](md/抖音.md)  | - [叛逆(2)](md/叛逆.md) \n- [婴儿(2)](md/婴儿.md)  | - [王小波(2)](md/王小波.md)  | - [急救(2)](md/急救.md)  | - [正念(2)](md/正念.md)  | - [疫苗(2)](md/疫苗.md)  | - [博弈论(2)](md/博弈论.md)  | - [信贷(2)](md/信贷.md)  | - [蜡烛图(2)](md/蜡烛图.md) \n- [求职(2)](md/求职.md)  | - [组织(2)](md/组织.md)  | - [李鸿章(2)](md/李鸿章.md)  | - [边疆(2)](md/边疆.md)  | - [二战史(2)](md/二战史.md)  | - [高效(2)](md/高效.md)  | - [宪法(2)](md/宪法.md)  | - [火星(2)](md/火星.md) \n- [道德经(2)](md/道德经.md)  | - [麦肯锡(2)](md/麦肯锡.md)  | - [文言文(2)](md/文言文.md)  | - [竞争(2)](md/竞争.md)  | - [果壳(2)](md/果壳.md)  | - [哪吒(2)](md/哪吒.md)  | - [流感(2)](md/流感.md)  | - [谋略(2)](md/谋略.md) \n- [段子(2)](md/段子.md)  | - [王朔(2)](md/王朔.md)  | - [数据库(2)](md/数据库.md)  | - [债券(2)](md/债券.md)  | - [矛盾(2)](md/矛盾.md)  | - [童年(2)](md/童年.md)  | - [智商(2)](md/智商.md)  | - [尼采(2)](md/尼采.md) \n- [探索(2)](md/探索.md)  | - [耶路撒冷(2)](md/耶路撒冷.md)  | - [快递(2)](md/快递.md)  | - [俄国史(2)](md/俄国史.md)  | - [古言(2)](md/古言.md)  | - [逆袭(2)](md/逆袭.md)  | - [古典文学(2)](md/古典文学.md)  | - [整理(2)](md/整理.md) \n- [五四(2)](md/五四.md)  | - [聊斋(2)](md/聊斋.md)  | - [西域(2)](md/西域.md)  | - [后宫(2)](md/后宫.md)  | - [波兰(2)](md/波兰.md)  | - [美联储(2)](md/美联储.md)  | - [王夫之(2)](md/王夫之.md)  | - [乡村(2)](md/乡村.md) \n- [蒙元史(2)](md/蒙元史.md)  | - [古代史(2)](md/古代史.md)  | - [抑郁(2)](md/抑郁.md)  | - [词集(2)](md/词集.md)  | - [格局(2)](md/格局.md)  | - [黄金(2)](md/黄金.md)  | - [都市(2)](md/都市.md)  | - [观察(2)](md/观察.md) \n- [汉语(2)](md/汉语.md)  | - [营运(2)](md/营运.md)  | - [网络小说(2)](md/网络小说.md)  | - [石油(2)](md/石油.md)  | - [庄子(2)](md/庄子.md)  | - [仙侠(2)](md/仙侠.md)  | - [海明威(2)](md/海明威.md)  | - [文艺复兴(2)](md/文艺复兴.md) \n- [治愈系(2)](md/治愈系.md)  | - [航天(2)](md/航天.md)  | - [西游记(2)](md/西游记.md)  | - [影视(2)](md/影视.md)  | - [吃货(2)](md/吃货.md)  | - [留学(2)](md/留学.md)  | - [漫威(2)](md/漫威.md)  | - [OKR(2)](md/OKR.md) \n- [服饰(2)](md/服饰.md)  | - [能源(2)](md/能源.md)  | - [怪谈(2)](md/怪谈.md)  | - [宋代(2)](md/宋代.md)  | - [围棋(2)](md/围棋.md)  | - [批判(2)](md/批判.md)  | - [柏林(2)](md/柏林.md)  | - [史记(2)](md/史记.md) \n- [晚期(2)](md/晚期.md)  | - [随便(2)](md/随便.md)  | - [葡萄酒(2)](md/葡萄酒.md)  | - [中亚(2)](md/中亚.md)  | - [护肤(2)](md/护肤.md)  | - [马拉松(2)](md/马拉松.md)  | - [泰国(2)](md/泰国.md)  | - [澳大利亚(2)](md/澳大利亚.md) \n- [志怪(2)](md/志怪.md)  | - [环保(2)](md/环保.md)  | - [自律(2)](md/自律.md)  | - [温情(2)](md/温情.md)  | - [方言(2)](md/方言.md)  | - [邓巴(2)](md/邓巴.md)  | - [幸福(2)](md/幸福.md)  | - [太平洋(2)](md/太平洋.md) \n- [穿搭(2)](md/穿搭.md)  | - [译文(2)](md/译文.md)  | - [腾讯(2)](md/腾讯.md)  | - [非虚构(2)](md/非虚构.md)  | - [童书(2)](md/童书.md)  | - [复盘(2)](md/复盘.md)  | - [自信(2)](md/自信.md)  | - [疗愈(2)](md/疗愈.md) \n- [轶事(1)](md/轶事.md)  | - [伊朗(1)](md/伊朗.md)  | - [海关(1)](md/海关.md)  | - [烤箱(1)](md/烤箱.md)  | - [发财(1)](md/发财.md)  | - [复杂性(1)](md/复杂性.md)  | - [公平(1)](md/公平.md)  | - [演员(1)](md/演员.md) \n- [世界观(1)](md/世界观.md)  | - [兵器(1)](md/兵器.md)  | - [萌宠(1)](md/萌宠.md)  | - [冰岛(1)](md/冰岛.md)  | - [直销(1)](md/直销.md)  | - [扑克(1)](md/扑克.md)  | - [选举(1)](md/选举.md)  | - [丹道(1)](md/丹道.md) \n- [滚雪球(1)](md/滚雪球.md)  | - [回本(1)](md/回本.md)  | - [求生(1)](md/求生.md)  | - [伏尔泰(1)](md/伏尔泰.md)  | - [发明(1)](md/发明.md)  | - [修养(1)](md/修养.md)  | - [社会科学(1)](md/社会科学.md)  | - [三国演义(1)](md/三国演义.md) \n- [相对论(1)](md/相对论.md)  | - [凯恩斯(1)](md/凯恩斯.md)  | - [潜规则(1)](md/潜规则.md)  | - [早餐(1)](md/早餐.md)  | - [香港随笔(1)](md/香港随笔.md)  | - [财会(1)](md/财会.md)  | - [正则表达式(1)](md/正则表达式.md)  | - [药方(1)](md/药方.md) \n- [焦虑症(1)](md/焦虑症.md)  | - [周鸿祎(1)](md/周鸿祎.md)  | - [中医学(1)](md/中医学.md)  | - [亚瑟王(1)](md/亚瑟王.md)  | - [蝙蝠侠(1)](md/蝙蝠侠.md)  | - [北韩(1)](md/北韩.md)  | - [系列(1)](md/系列.md)  | - [泰戈尔(1)](md/泰戈尔.md) \n- [戏曲(1)](md/戏曲.md)  | - [关羽(1)](md/关羽.md)  | - [李小龙(1)](md/李小龙.md)  | - [影响(1)](md/影响.md)  | - [企管(1)](md/企管.md)  | - [双语(1)](md/双语.md)  | - [亲密关系(1)](md/亲密关系.md)  | - [20世纪(1)](md/20世纪.md) \n- [狄金森(1)](md/狄金森.md)  | - [潜水(1)](md/潜水.md)  | - [功夫(1)](md/功夫.md)  | - [价值观(1)](md/价值观.md)  | - [新零售(1)](md/新零售.md)  | - [爸爸(1)](md/爸爸.md)  | - [全球史(1)](md/全球史.md)  | - [巴黎和会(1)](md/巴黎和会.md) \n- [启蒙(1)](md/启蒙.md)  | - [现代文学(1)](md/现代文学.md)  | - [英格兰(1)](md/英格兰.md)  | - [礼学(1)](md/礼学.md)  | - [自尊(1)](md/自尊.md)  | - [开发(1)](md/开发.md)  | - [神经病(1)](md/神经病.md)  | - [威士忌(1)](md/威士忌.md) \n- [工业(1)](md/工业.md)  | - [上市(1)](md/上市.md)  | - [拍摄(1)](md/拍摄.md)  | - [女权主义(1)](md/女权主义.md)  | - [剑桥(1)](md/剑桥.md)  | - [盗墓笔记(1)](md/盗墓笔记.md)  | - [笑话(1)](md/笑话.md)  | - [安利(1)](md/安利.md) \n- [努力(1)](md/努力.md)  | - [南怀瑾(1)](md/南怀瑾.md)  | - [丝绸之路(1)](md/丝绸之路.md)  | - [中原大战(1)](md/中原大战.md)  | - [MYSQL(1)](md/MYSQL.md)  | - [想读(1)](md/想读.md)  | - [本拉登(1)](md/本拉登.md)  | - [大自然(1)](md/大自然.md) \n- [实验(1)](md/实验.md)  | - [特朗普(1)](md/特朗普.md)  | - [粮食、油脂及植物蛋白工程(1)](md/粮食、油脂及植物蛋白工程.md)  | - [蒸汽朋克(1)](md/蒸汽朋克.md)  | - [黑色童话(1)](md/黑色童话.md)  | - [罗马史(1)](md/罗马史.md)  | - [危机(1)](md/危机.md)  | - [爱迪生(1)](md/爱迪生.md) \n- [巴尔干(1)](md/巴尔干.md)  | - [PHP(1)](md/PHP.md)  | - [伦理学(1)](md/伦理学.md)  | - [国际(1)](md/国际.md)  | - [艺术文化(1)](md/艺术文化.md)  | - [审计(1)](md/审计.md)  | - [恋爱(1)](md/恋爱.md)  | - [政论(1)](md/政论.md) \n- [胡适(1)](md/胡适.md)  | - [诺贝尔(1)](md/诺贝尔.md)  | - [服务器(1)](md/服务器.md)  | - [借贷(1)](md/借贷.md)  | - [欧亨利(1)](md/欧亨利.md)  | - [共情(1)](md/共情.md)  | - [酷刑(1)](md/酷刑.md)  | - [大师(1)](md/大师.md) \n- [肯尼迪(1)](md/肯尼迪.md)  | - [诗学(1)](md/诗学.md)  | - [FBI(1)](md/FBI.md)  | - [731(1)](md/731.md)  | - [宪政(1)](md/宪政.md)  | - [崇祯(1)](md/崇祯.md)  | - [唯美(1)](md/唯美.md)  | - [时机(1)](md/时机.md) \n- [重庆(1)](md/重庆.md)  | - [基督(1)](md/基督.md)  | - [艺术史(1)](md/艺术史.md)  | - [词曲(1)](md/词曲.md)  | - [鸡尾酒(1)](md/鸡尾酒.md)  | - [甲午战争(1)](md/甲午战争.md)  | - [朝鲜战争(1)](md/朝鲜战争.md)  | - [自述(1)](md/自述.md) \n- [数理(1)](md/数理.md)  | - [哥伦布(1)](md/哥伦布.md)  | - [匠人(1)](md/匠人.md)  | - [世界杯(1)](md/世界杯.md)  | - [日常(1)](md/日常.md)  | - [服装(1)](md/服装.md)  | - [圣经(1)](md/圣经.md)  | - [元宇宙(1)](md/元宇宙.md) \n- [书单(1)](md/书单.md)  | - [科学家(1)](md/科学家.md)  | - [文明史(1)](md/文明史.md)  | - [收纳(1)](md/收纳.md)  | - [传统(1)](md/传统.md)  | - [成功学(1)](md/成功学.md)  | - [马云(1)](md/马云.md)  | - [斯坦福(1)](md/斯坦福.md) \n- [冷笑话(1)](md/冷笑话.md)  | - [教父(1)](md/教父.md)  | - [黑暗(1)](md/黑暗.md)  | - [消费者(1)](md/消费者.md)  | - [英语读物(1)](md/英语读物.md)  | - [并购(1)](md/并购.md)  | - [史书(1)](md/史书.md)  | - [文化大革命(1)](md/文化大革命.md) \n- [对谈录(1)](md/对谈录.md)  | - [行为学(1)](md/行为学.md)  | - [创作(1)](md/创作.md)  | - [毒品(1)](md/毒品.md)  | - [曹操(1)](md/曹操.md)  | - [想象力(1)](md/想象力.md)  | - [房龙(1)](md/房龙.md)  | - [数字化(1)](md/数字化.md) \n- [曼德拉(1)](md/曼德拉.md)  | - [商场(1)](md/商场.md)  | - [铲屎官(1)](md/铲屎官.md)  | - [海权(1)](md/海权.md)  | - [tableau(1)](md/tableau.md)  | - [日耳曼(1)](md/日耳曼.md)  | - [提升(1)](md/提升.md)  | - [中华(1)](md/中华.md) \n- [资产(1)](md/资产.md)  | - [埃博拉(1)](md/埃博拉.md)  | - [武志红(1)](md/武志红.md)  | - [苏州(1)](md/苏州.md)  | - [迷幻(1)](md/迷幻.md)  | - [歌赋(1)](md/歌赋.md)  | - [力量训练(1)](md/力量训练.md)  | - [黑洞(1)](md/黑洞.md) \n- [大势(1)](md/大势.md)  | - [雨(1)](md/雨.md)  | - [孤独感(1)](md/孤独感.md)  | - [隐私(1)](md/隐私.md)  | - [芭比(1)](md/芭比.md)  | - [iOS(1)](md/iOS.md)  | - [京剧(1)](md/京剧.md)  | - [悬爱(1)](md/悬爱.md) \n- [贸易战(1)](md/贸易战.md)  | - [成吉思汗(1)](md/成吉思汗.md)  | - [外文(1)](md/外文.md)  | - [可口可乐(1)](md/可口可乐.md)  | - [基督教(1)](md/基督教.md)  | - [沙皇(1)](md/沙皇.md)  | - [近视(1)](md/近视.md)  | - [资本论(1)](md/资本论.md) \n- [权利(1)](md/权利.md)  | - [数据可视化(1)](md/数据可视化.md)  | - [人情(1)](md/人情.md)  | - [格林童话(1)](md/格林童话.md)  | - [明星(1)](md/明星.md)  | - [狗(1)](md/狗.md)  | - [世界是(1)](md/世界是.md)  | - [魔兽(1)](md/魔兽.md) \n- [网络时代(1)](md/网络时代.md)  | - [拉丁美洲(1)](md/拉丁美洲.md)  | - [零食(1)](md/零食.md)  | - [美洲(1)](md/美洲.md)  | - [傅雷(1)](md/傅雷.md)  | - [茶文化(1)](md/茶文化.md)  | - [深海(1)](md/深海.md)  | - [商务(1)](md/商务.md) \n- [操作系统(1)](md/操作系统.md)  | - [摇滚(1)](md/摇滚.md)  | - [世纪三部曲(1)](md/世纪三部曲.md)  | - [腐败(1)](md/腐败.md)  | - [经验(1)](md/经验.md)  | - [大脑科学(1)](md/大脑科学.md)  | - [家庭教育(1)](md/家庭教育.md)  | - [武术(1)](md/武术.md) \n- [家训(1)](md/家训.md)  | - [教练(1)](md/教练.md)  | - [地球(1)](md/地球.md)  | - [访谈录(1)](md/访谈录.md)  | - [维也纳(1)](md/维也纳.md)  | - [蒙田(1)](md/蒙田.md)  | - [孩子(1)](md/孩子.md)  | - [编程语言(1)](md/编程语言.md) \n- [自然科学(1)](md/自然科学.md)  | - [微软(1)](md/微软.md)  | - [协同(1)](md/协同.md)  | - [公益(1)](md/公益.md)  | - [婚恋(1)](md/婚恋.md)  | - [福尔摩斯(1)](md/福尔摩斯.md)  | - [创投(1)](md/创投.md)  | - [迪士尼(1)](md/迪士尼.md)\n"
  },
  {
    "path": "docs/.nojekyll",
    "content": "\n"
  },
  {
    "path": "docs/all-books.json",
    "content": "[\n  {\n    \"title\": \"极度成功\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510375-05242f?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里人的答案书\",\n    \"author\": \"阿里巴巴组织文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510804-a5e3a8?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本企业家精选（全5册）\",\n    \"author\": \"一条和生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511533-b724b2?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡决断力\",\n    \"author\": \"石井辉美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为管理哲学\",\n    \"author\": \"蒋朝安/杜俊鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050910-d72194?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔是海：张瑞敏随笔选录\",\n    \"author\": \"张瑞敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质（珍藏版）\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创始人手记\",\n    \"author\": \"季琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健经营哲学系列（套装共3册）\",\n    \"author\": \"张小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边界\",\n    \"author\": \"吉莲・邰蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略推演\",\n    \"author\": \"王昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042372-78310a?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在耶鲁精进\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039087-2cce2c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂管理上\",\n    \"author\": \"冯为中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039018-f17707?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"345薪酬\",\n    \"author\": \"李祖滨/汤鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034002-cf5f79?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级符号原理\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031524-1a7a6c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·实践篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031224-5ab3aa?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力陷阱\",\n    \"author\": \"埃米尼亚・伊贝拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·变革篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030801-7b000d?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力思维\",\n    \"author\": \"珍妮弗・加维・伯格/基斯・约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向创新\",\n    \"author\": \"亚当・摩根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028677-7e2d5f?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：平台型组织的进化路线图\",\n    \"author\": \"穆胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让问题到你为止\",\n    \"author\": \"博恩・崔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个天才团队的故事\",\n    \"author\": \"沃伦・本尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以客户为中心\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形冠军：未来全球化的先锋\",\n    \"author\": \"赫尔曼・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017103-ceb233?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的常识\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015057-903f80?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光变：一个企业及其工业史\",\n    \"author\": \"路风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·柯林斯成就卓越系列（套装共4册）\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导梯队（原书第2版）\",\n    \"author\": \"拉姆・查兰/斯蒂芬・德罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达工作法\",\n    \"author\": \"万达集团企业文化中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生长（权威未删节）\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史记（精注全译）（全12册）\",\n    \"author\": \"司马迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504366-972bdd?p=8866\",\n    \"category\": \"史记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天人之际：薛仁明读《史记》\",\n    \"author\": \"薛仁明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030213-f27649?p=8866\",\n    \"category\": \"史记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画算法\",\n    \"author\": \"魏梦舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简算法史\",\n    \"author\": \"吕克・德・布拉班迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变未来的九大算法\",\n    \"author\": \"约翰・麦考密克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从祖先到算法\",\n    \"author\": \"亚历克斯・本特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容算法\",\n    \"author\": \"闫泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的乐趣\",\n    \"author\": \"王晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法霸权\",\n    \"author\": \"凯西・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推荐系统实践\",\n    \"author\": \"项亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编程珠玑（第2版·修订版）\",\n    \"author\": \"Jon Bentley\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018450-0ab379?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法图解\",\n    \"author\": \"Aditya Bhargava\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理与人（二十世纪西方哲学经典）\",\n    \"author\": \"德里克・帕菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985840-14e9cf?p=8866\",\n    \"category\": \"伦理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017625-c61710?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报2\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"您厉害，您赚得多\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百箭穿杨\",\n    \"author\": \"小小辛巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非赚不可\",\n    \"author\": \"袁园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字与图像间的重庆（套装3册）\",\n    \"author\": \"杨宇振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506388-3c8521?p=8866\",\n    \"category\": \"重庆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抱住棒棒的自己\",\n    \"author\": \"徐慢慢心理话\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活蒙太奇\",\n    \"author\": \"天然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忍不住想打扰你\",\n    \"author\": \"bibi园长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500922-1b9c21?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谢谢，但今天不行\",\n    \"author\": \"科尔杜拉・努斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501042-6f62d9?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂旅行团\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501435-2b3e87?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出门买蛋去\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502962-d87e59?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狮子之家的点心日\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504180-50d4c6?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第4部：卷19~卷23）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507348-35ca31?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在最后一页等我\",\n    \"author\": \"索菲亚・蕾依\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506712-efdf8e?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第1部：卷1~卷6）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508449-053311?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第3部：卷13~卷18）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509205-71e3f3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带着恐惧前行\",\n    \"author\": \"鲁斯・苏库普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510180-c33921?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛤蟆先生去看心理医生\",\n    \"author\": \"罗伯特・戴博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的堡垒\",\n    \"author\": \"詹森・雷库拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511824-5bbdd3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷心书店\",\n    \"author\": \"卡塔琳娜・碧瓦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512223-e07962?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本的童话（果麦经典）\",\n    \"author\": \"小川未明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004434-9f10f5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果萨莉没离开\",\n    \"author\": \"丽贝卡・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003960-ba3f4b?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食，祈祷，恋爱\",\n    \"author\": \"伊丽莎白・吉尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐贩卖机\",\n    \"author\": \"凯蒂・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我离开之后\",\n    \"author\": \"苏西・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杏仁\",\n    \"author\": \"孙元平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997795-ec9e5f?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让我离开\",\n    \"author\": \"凯瑟琳・雷恩・海德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994834-ef4958?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见马戏团\",\n    \"author\": \"伊坂幸太郎/曼努埃尔・菲奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994525-225149?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善哉善哉，就你话多\",\n    \"author\": \"明安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使的孩子\",\n    \"author\": \"丹尼尔・斯蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986575-694e6f?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔守望者的女儿\",\n    \"author\": \"珍•E.潘德兹沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986095-8be8e5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听你的\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我余生的第一天\",\n    \"author\": \"维尔吉妮・格里马尔蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985000-fd55f0?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岛西岸的来信\",\n    \"author\": \"洛丽・施皮尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053124-ef774c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一见你就好心情\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命：只想陪在你身边\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡在汽车里的女孩\",\n    \"author\": \"珍妮弗・克莱门特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047661-1ca554?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独梦想家\",\n    \"author\": \"戴维・巴尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047646-c1f65b?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，黑鸟\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047280-8f2319?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间值得\",\n    \"author\": \"中村恒子/奥田弘美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑又怎样\",\n    \"author\": \"弗兰齐丝卡・赛柏特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海边理发店\",\n    \"author\": \"荻原浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043965-d46de9?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉本家的猫咪们\",\n    \"author\": \"春野宵子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043533-a39c3e?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己和解\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖12：厨房，治愈人生的避难所\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费孝通经典作品四部\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041178-c73b09?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无法完成的告别\",\n    \"author\": \"大卫・利维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035373-d1df05?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唯有猫能治愈我\",\n    \"author\": \"杰克森・盖勒克西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033900-848a6b?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜月亮\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033636-81f339?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己的人自带光芒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的聪明人太多了，我必须为笨蛋争口气！\",\n    \"author\": \"书单狗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪认知\",\n    \"author\": \"尹惟楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人3：无境之爱\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的歌\",\n    \"author\": \"余光中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032004-ffb2cf?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追恐龙的男孩\",\n    \"author\": \"贾科莫・马扎里奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030879-d30fd6?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福需要等待\",\n    \"author\": \"安娜・戈华达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030705-407eec?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寺内贯太郎一家\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030645-fd9b57?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时忍住就好了（插图典藏版）\",\n    \"author\": \"肯・林德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029577-e20eb2?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随风飘舞的塑料布\",\n    \"author\": \"森绘都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028566-77b8a6?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他跟我聊到樱桃树、灰尘以及一座山\",\n    \"author\": \"安东尼・帕耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028206-7f784d?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哀愁的预感\",\n    \"author\": \"吉本芭娜娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027426-a44ae6?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在天堂那五年\",\n    \"author\": \"约翰・施利姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027240-d0e434?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不执着，叫看破 不完美，是生活\",\n    \"author\": \"莫妮卡・拉米雷斯・巴斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒲公英醇夏\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024867-dd3818?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感2\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023358-da9edb?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云边有个小卖部\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022539-f60fa4?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山茶文具店\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021900-38dea3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光倒流的女孩\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021435-850156?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡了吗？摘颗星星给你\",\n    \"author\": \"LOST7\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020397-464256?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个叫欧维的男人决定去死\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019383-ef7704?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在未来等你\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019131-e9de0c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹男孩\",\n    \"author\": \"帕拉西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017115-40f395?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪安娜穿过漫漫长夜\",\n    \"author\": \"加瑞尔・萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊与钢的森林\",\n    \"author\": \"宫下奈都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015348-2e4ed9?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守护故事的人\",\n    \"author\": \"丽萨・温格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014787-6c94a7?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摘星星的男孩\",\n    \"author\": \"约翰・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小小巴黎书店\",\n    \"author\": \"妮娜・乔治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012591-51c462?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等你呼唤我的名字\",\n    \"author\": \"阿尔伯特・埃斯皮诺萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡未冷前\",\n    \"author\": \"川口俊和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011202-0121ce?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，萤火虫小巷\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010206-82872c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿司匹林博物馆\",\n    \"author\": \"赵越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的朝圣2：奎妮的情歌\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009930-818355?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你今天真好看\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莉莉和章鱼\",\n    \"author\": \"史蒂文・罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009783-3b87ff?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外婆的道歉信\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008808-17d5d1?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂成瘾者\",\n    \"author\": \"马克・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008163-e5e6c5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫小巷\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007914-abfad4?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不知东方既白\",\n    \"author\": \"橘子宸\",\n    \"link\": \"链接未找到\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将门虎女（全2册）\",\n    \"author\": \"姽婳莲翩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050739-cf2b32?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第84封情书\",\n    \"author\": \"骆淑景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下倾歌（共2册）\",\n    \"author\": \"青林之初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045369-5592ba?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"竹书谣（共4册）\",\n    \"author\": \"文简子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045303-d67fa4?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹤唳华亭\",\n    \"author\": \"雪满梁园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045174-9ca4ca?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张爱玲作品精选（共8册）\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044931-653d40?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为你打开时间的门\",\n    \"author\": \"皎皎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039795-12f145?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晋江大神Priest经典作品合集（套装10册）\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035787-47378b?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾围城（全两册）\",\n    \"author\": \"匪我思存\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035541-d08688?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有匪（套装共4册）\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035424-611fd0?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与谎言为邻\",\n    \"author\": \"米娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035154-f86a21?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"篇篇十万+：朋友圈的戎马江湖（套装共11册）\",\n    \"author\": \"咪蒙/张小娴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034755-6f1025?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室困游鱼\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032955-deb293?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花雨枪\",\n    \"author\": \"夏生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美婚姻\",\n    \"author\": \"米歇尔・里奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二年，故人戏（全2册）\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜汁炖鱿鱼\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032229-530e18?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目漱石四部曲\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031974-779200?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯禁书三部曲（全新修订版）\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031536-958b1b?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天子谋\",\n    \"author\": \"青垚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031365-98380f?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹是深闺梦里人\",\n    \"author\": \"井上三尺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030462-ce1a44?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佳偶都绝色\",\n    \"author\": \"李李翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027762-c1b434?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风起青萍\",\n    \"author\": \"皎皎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027756-c0d52f?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郎骑竹马来\",\n    \"author\": \"半夏\",\n    \"link\": \"链接未找到\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楠木向北\",\n    \"author\": \"凉风薄暮\",\n    \"link\": \"链接未找到\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"若离于爱\",\n    \"author\": \"青衫落拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027753-c0f9e8?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独家记忆\",\n    \"author\": \"木浮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027354-a1ded4?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时擦\",\n    \"author\": \"笙离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027348-1f5ea8?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳洞\",\n    \"author\": \"笙离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027345-adc729?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情锁（十六周年修订典藏版）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027204-70c319?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医见钟情\",\n    \"author\": \"叶紫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023367-9a9902?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温暖的弦（套装共2册）\",\n    \"author\": \"安宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019809-be0128?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打火机与公主裙·荒草园\",\n    \"author\": \"Twentine\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011664-75c735?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打火机与公主裙·长明灯\",\n    \"author\": \"Twentine\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011661-c56c0c?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三生三世枕上书\",\n    \"author\": \"唐七公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011499-16f489?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三生三世枕上书·终篇\",\n    \"author\": \"唐七公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011490-f0b38c?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三生三世十里桃花\",\n    \"author\": \"唐七公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007647-923bd8?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也会爱上别人的\",\n    \"author\": \"自由极光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006873-68fdf4?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沥川往事（全二册新版）\",\n    \"author\": \"施定柔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006399-ae0df1?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌徒恺撒\",\n    \"author\": \"马丁・耶内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866\",\n    \"category\": \"凯撒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恺撒：巨人的一生\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866\",\n    \"category\": \"凯撒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原典书坊合辑（全八册）\",\n    \"author\": \"鲁迅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·情感故事书系（套装共66本）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷谈艺录及其他\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国婉约（套装7本）\",\n    \"author\": \"江晓英/林杉/臧宪柱/李婍/牧来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鉴古晓今更渊博（套装共4册）\",\n    \"author\": \"干春松/张晓芒/王阳明/吕思勉/曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032055-42ab1f?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：一部全新的世界史\",\n    \"author\": \"彼得·弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866\",\n    \"category\": \"丝绸之路\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的时代（共3册）\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504177-aa627c?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个金融大鳄2\",\n    \"author\": \"邓荣栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052422-c462a6?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个金融大鳄\",\n    \"author\": \"邓荣栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051852-ff30a4?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：危险交易\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在东北当警察（套装共3册）\",\n    \"author\": \"程琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031446-ae2e03?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人2\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022887-a6b83d?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套1：战局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021465-4d2c0f?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套2：迷局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021450-f4aaca?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套3：终局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021447-9e6224?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特和查理·芒格内部讲话\",\n    \"author\": \"丹尼尔・佩科/科里・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999487-966255?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾（珍藏版）\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998941-39104e?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的第一桶金\",\n    \"author\": \"格伦・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历巴菲特股东大会\",\n    \"author\": \"杰夫・马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿过迷雾\",\n    \"author\": \"任俊杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中投资\",\n    \"author\": \"艾伦・卡尔普・波尼洛等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃伦·巴菲特如是说\",\n    \"author\": \"珍妮特・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038517-e8a9af?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信：投资原则篇\",\n    \"author\": \"杰里米・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027714-2bcfdf?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（原书第4版）\",\n    \"author\": \"沃伦・巴菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滚雪球：巴菲特和他的财富人生（套装共2册）\",\n    \"author\": \"艾丽斯・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（原书第3版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017424-7fb305?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳着踢踏舞去上班\",\n    \"author\": \"卡萝尔・卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特幕后智囊：查理·芒格传\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（精华篇）\",\n    \"author\": \"L·J·瑞德豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体的语言\",\n    \"author\": \"列夫・马诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意短视频策划、推广、引流、爆粉与变现全能攻略\",\n    \"author\": \"肖恩・卡内尔/本吉・特拉维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"点亮视频号\",\n    \"author\": \"刘兴亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511014-d8a952?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裂变增长\",\n    \"author\": \"施襄/杨嘉伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抖音营销系统\",\n    \"author\": \"刘大贺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案变现\",\n    \"author\": \"叶小鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微博营销与运营\",\n    \"author\": \"秋叶/萧秋水/刘勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025710-bd18ec?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销概论\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体写作平台策划与运营\",\n    \"author\": \"哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025650-823a65?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体文案创作与传播\",\n    \"author\": \"秋叶/叶小鱼/勾俊伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不妥协的谈判\",\n    \"author\": \"丹尼尔・夏皮罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判2\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从对抗到共赢\",\n    \"author\": \"杨杜泽/沈莉娟/王赛/范松璐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场谈判经典书系（套装共3册）\",\n    \"author\": \"德雷克・阿顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制胜谈判\",\n    \"author\": \"游梓翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052629-f068d8?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何一开口就赢\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判技巧：菜鸟谈判进阶的八大要领\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的谈判武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商者会谈判\",\n    \"author\": \"冯岳宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控谈话\",\n    \"author\": \"克里斯・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强势谈判心理学\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014361-f635fc?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·道森优势谈判系列\",\n    \"author\": \"罗杰・道森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争3\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006240-b0ff09?p=8866\",\n    \"category\": \"抗日战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗日战争的细节大全集（共4册）\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866\",\n    \"category\": \"抗日战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国政党与选举（牛津通识读本）\",\n    \"author\": \"桑迪・梅塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866\",\n    \"category\": \"选举\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲茨杰拉德文集（套装共9本）\",\n    \"author\": \"菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010659-835d89?p=8866\",\n    \"category\": \"现代文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（中国传统节日）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866\",\n    \"category\": \"传统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石全集：临川先生文集\",\n    \"author\": \"王水照主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋论（全本全注全译）\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗冤集录注评\",\n    \"author\": \"宋慈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053118-be8da5?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋徽宗\",\n    \"author\": \"伊沛霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒家统治的时代：宋的转型\",\n    \"author\": \"迪特・库恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009474-529aaf?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弱宋：造极之世\",\n    \"author\": \"陈胜利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008796-38df46?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果这是宋史（套装共10册）\",\n    \"author\": \"高天流云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006702-cf600b?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋帝国三百年（共5册）\",\n    \"author\": \"金纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意短视频策划、推广、引流、爆粉与变现全能攻略\",\n    \"author\": \"肖恩・卡内尔/本吉・特拉维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866\",\n    \"category\": \"短视频\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"15秒的商机\",\n    \"author\": \"胡涵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051903-88c85f?p=8866\",\n    \"category\": \"短视频\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走的人多了，就有了路\",\n    \"author\": \"尼可拉斯・克里斯多夫/雪莉・邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866\",\n    \"category\": \"公益\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿经典作品集（套装10册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家宝藏（全3季）\",\n    \"author\": \"于蕾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岳南：考古中国（全11册）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499434-08138d?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦因·西域游历丛书（15卷本）\",\n    \"author\": \"奥雷尔・斯坦因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003783-1b5133?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从考古发现中国\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良渚文明丛书\",\n    \"author\": \"浙江大学出版社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001587-15feaf?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何以中国\",\n    \"author\": \"许宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西周的灭亡（增订本）\",\n    \"author\": \"李峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵器史\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"章服之实\",\n    \"author\": \"王亚蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海昏侯刘贺\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032874-fa7f10?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现燕然山铭\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027969-c72992?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"考古的故事\",\n    \"author\": \"埃里克·H.克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026685-adfaf2?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗失的姆大陆之谜\",\n    \"author\": \"詹姆斯・乔治瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五次开始\",\n    \"author\": \"罗伯特・L .凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝四川：纪念汶川地震十周年\",\n    \"author\": \"《华夏地理》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019644-61d102?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝三日\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些消失的文明\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·婴儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006084-2be15d?p=8866\",\n    \"category\": \"婴儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·胎儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006081-99bed7?p=8866\",\n    \"category\": \"婴儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客居己乡\",\n    \"author\": \"哲尔吉・康拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不识字的人\",\n    \"author\": \"雅歌塔・克里斯多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046671-ef211b?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烛烬\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027732-a9cbf4?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反叛者\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027423-a2e18f?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分手在布达\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027363-6c9da6?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇才\",\n    \"author\": \"梅利莎・席林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866\",\n    \"category\": \"精进\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三道门\",\n    \"author\": \"亚历克斯・班纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866\",\n    \"category\": \"精进\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"升维：让你人生出众的另类通道\",\n    \"author\": \"褚明宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866\",\n    \"category\": \"精进\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练套装\",\n    \"author\": \"马克・瑞比拖/安迪・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866\",\n    \"category\": \"力量训练\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上：我生活的故事\",\n    \"author\": \"格洛丽亚・斯泰纳姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035034-83902d?p=8866\",\n    \"category\": \"社会科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个汉人皇帝：崇祯大败局\",\n    \"author\": \"晏青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006183-848fe4?p=8866\",\n    \"category\": \"崇祯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克服低自尊（第二版）\",\n    \"author\": \"梅勒妮・芬内尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051270-abaeb1?p=8866\",\n    \"category\": \"自尊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地图3000年\",\n    \"author\": \"托马斯・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506883-89a846?p=8866\",\n    \"category\": \"地图\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华心影\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866\",\n    \"category\": \"地图\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866\",\n    \"category\": \"雨果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（套装上中下册）\",\n    \"author\": \"雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866\",\n    \"category\": \"雨果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌：信息不足时如何做出高明决策\",\n    \"author\": \"安妮・杜克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866\",\n    \"category\": \"扑克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京时代与英格兰\",\n    \"author\": \"埃莉诺・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战：繁荣的幻灭\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游牧民的世界史（修订版）\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太文明\",\n    \"author\": \"S.N.艾森斯塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彗星年代\",\n    \"author\": \"丹尼尔・舍恩普夫卢格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新食货志\",\n    \"author\": \"杜君立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史\",\n    \"author\": \"A.A.瓦西列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马其顿的亚历山大\",\n    \"author\": \"彼得・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1848：革命之年\",\n    \"author\": \"迈克・拉波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典的胜利\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝圆舞曲\",\n    \"author\": \"高林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年帝国史\",\n    \"author\": \"克里尚・库马尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035127-d8bec6?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧亚皇家狩猎史\",\n    \"author\": \"托马斯・爱尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经与利剑\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造和平：1919巴黎和会及其开启的战后世界\",\n    \"author\": \"玛格丽特・麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球帝国史\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：1500年以前的世界\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017238-a96be6?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本趣味数理化书（套装共三册）\",\n    \"author\": \"韩垒/田梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866\",\n    \"category\": \"数理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"义疏学衰亡史论\",\n    \"author\": \"乔秀岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054387-22b652?p=8866\",\n    \"category\": \"文献学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从六艺到十三经（上下册）\",\n    \"author\": \"程苏东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051807-3757fe?p=8866\",\n    \"category\": \"文献学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦文体与话语方式研究\",\n    \"author\": \"过常宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866\",\n    \"category\": \"文献学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从何而来\",\n    \"author\": \"傅渥成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866\",\n    \"category\": \"物理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柔软的宇宙\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866\",\n    \"category\": \"物理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革故鼎新\",\n    \"author\": \"杨天宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004677-064105?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990388-6ec689?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙宝瑄日记\",\n    \"author\": \"孙宝瑄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三国\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古道\",\n    \"author\": \"伊莎贝拉・韦廉臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053949-72e6cc?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶战争（修订版）\",\n    \"author\": \"周重林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的叙述方式\",\n    \"author\": \"茅海建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044724-930fe0?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1848：革命之年\",\n    \"author\": \"迈克・拉波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温莎王朝\",\n    \"author\": \"汤姆・利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四运动史：现代中国的知识革命\",\n    \"author\": \"周策纵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041817-36939b?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华帝国的衰落\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034473-fa1b42?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战爆发前十天\",\n    \"author\": \"理查德・奥弗里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午两甲子：忆与思\",\n    \"author\": \"姜鸣/贾葭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族、土地与祖先\",\n    \"author\": \"易劳逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸦片战争\",\n    \"author\": \"蓝诗玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029562-9dc4cd?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：计划外革命\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代史：1840-1937\",\n    \"author\": \"蒋廷黻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022515-8c554f?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的启蒙\",\n    \"author\": \"马国川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021972-56b623?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《伦敦新闻画报》记录的民国1926-1949（套装4册）\",\n    \"author\": \"沈弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两岸新编中国近代史·晚清卷（全2册）\",\n    \"author\": \"王建朗/黄克武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015321-dbf17d?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两岸新编中国近代史·民国卷（全2册）\",\n    \"author\": \"王建朗/黄克武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015309-a31b4d?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潮来潮去：海关与中国现代性的全球起源\",\n    \"author\": \"方德万\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国现代史\",\n    \"author\": \"徐中约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代通史（套装共10册）\",\n    \"author\": \"张海鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009672-5434a0?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午殇思\",\n    \"author\": \"刘声东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009177-e05cf4?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东亚近代文明史上的梁启超\",\n    \"author\": \"狭间直树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋军阀史话\",\n    \"author\": \"丁中江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006738-a84f44?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的底稿\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极乐诱惑：太平天国的兴亡\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：摇晃的中国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005151-2a156e?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1927·谁主沉浮\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋裂变\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005022-6f69d4?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧私生活回忆录\",\n    \"author\": \"裕德龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004989-2742d5?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大变局1911\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的正面与侧面\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重说中国近代史\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004869-d245f9?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的汪精卫\",\n    \"author\": \"林思云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国误会了袁世凯\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长安与河北之间\",\n    \"author\": \"仇鹿鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054402-00b665?p=8866\",\n    \"category\": \"隋唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录3：大结局\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022287-27301b?p=8866\",\n    \"category\": \"隋唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的正午\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005139-267d57?p=8866\",\n    \"category\": \"隋唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产是部金融史\",\n    \"author\": \"黄立坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与中国经济\",\n    \"author\": \"盛松成等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512808-94f8bf?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房法典\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990313-a6a495?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球房地产\",\n    \"author\": \"夏磊/任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与城市发展\",\n    \"author\": \"陈杰/陆铭/黄益平/潘英丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二幅地图中的世界史\",\n    \"author\": \"杰里・布罗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024693-19bb78?p=8866\",\n    \"category\": \"世界是\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑洞之书\",\n    \"author\": \"史蒂文・古布泽/弗兰斯・比勒陀利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866\",\n    \"category\": \"黑洞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：个人、组织如何与风险共舞\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非对称风险\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲\",\n    \"author\": \"阿莉森・施拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险认知\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维与陷阱\",\n    \"author\": \"史蒂夫・卡斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被平均的风险\",\n    \"author\": \"萨姆・萨维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038088-8edfbb?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走钢丝的人\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031827-350ba1?p=8866\",\n    \"category\": \"暴力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷暴力\",\n    \"author\": \"玛丽・弗朗斯・伊里戈扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866\",\n    \"category\": \"暴力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民疯狂的欧洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沿坟墓而行\",\n    \"author\": \"纳韦德・凯尔曼尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐霞客游记（全本全注全译）\",\n    \"author\": \"朱惠荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984961-6859f1?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火车大巴扎\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052536-571f79?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大风向野\",\n    \"author\": \"练明乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047823-81f4e6?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅰ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅱ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"占卜师的预言\",\n    \"author\": \"蒂齐亚诺・泰尔扎尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯是一条鱼\",\n    \"author\": \"提齐安诺・斯卡帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航西飞\",\n    \"author\": \"柏瑞尔・马卡姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山旅书札\",\n    \"author\": \"伊莎贝拉・博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说吧，叙利亚\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨西哥湾千里徒步行\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前往阿姆河之乡\",\n    \"author\": \"罗伯特・拜伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日升之处\",\n    \"author\": \"A.W.金莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老巴塔哥尼亚快车\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多瑙河之旅\",\n    \"author\": \"克劳迪欧・马格里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"察沃的食人魔\",\n    \"author\": \"J.H.帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别列津纳河\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往印度次大陆\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"26城记\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳船上的孩子\",\n    \"author\": \"雅丝米娜・米哈伊洛维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽暗国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信徒的国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边境·近境\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方的鼓声\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客厅里的绅士\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026385-b08e93?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡苦不苦\",\n    \"author\": \"陈丹燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禹域鸿爪\",\n    \"author\": \"内藤湖南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021618-f78c8b?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"River Town\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021492-f2f9e2?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与爱之地：入以色列记\",\n    \"author\": \"云也退\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014499-251f20?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背包十年\",\n    \"author\": \"小鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲三万里\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的战争\",\n    \"author\": \"Momself\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破圈：如何突破认知局限并实现终身成长\",\n    \"author\": \"顾及\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自洽：在不确定的日子里向内看\",\n    \"author\": \"史欣悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498615-e56c1d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的孩子\",\n    \"author\": \"迈克尔・乔莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498705-4c11d3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不必太用力\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错失恐惧\",\n    \"author\": \"帕特里克·J.麦金尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500760-480526?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自律修炼手册\",\n    \"author\": \"史蒂夫・帕弗利纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500763-ae1e4a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智突围\",\n    \"author\": \"Windy Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500784-b71caf?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大江健三郎人生成长系列（套装共4册）\",\n    \"author\": \"大江健三郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500874-a07323?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理自助读物精选（套装17册）\",\n    \"author\": \"南茜・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谢谢，但今天不行\",\n    \"author\": \"科尔杜拉・努斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501042-6f62d9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基层女性\",\n    \"author\": \"王慧玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往未来之路\",\n    \"author\": \"赵昂/任国荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非线性成长\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的堡垒\",\n    \"author\": \"詹森・雷库拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511824-5bbdd3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为黑马\",\n    \"author\": \"托德・罗斯/奥吉・奥加斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512115-a73ff5?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突的演化\",\n    \"author\": \"杰弗里・贝蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512607-ff38db?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进有道\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512904-0b5469?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姥爷，我们天上见\",\n    \"author\": \"蒋雯丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513441-514038?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顽童小番茄\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灿若黎明\",\n    \"author\": \"艾米・哈蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004398-f7de17?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和另一个自己谈谈心\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004392-11723b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何戒掉坏习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为主角\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷静表达的艺术\",\n    \"author\": \"罗纳德·T·派特佛恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的150个信念\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大器晚成\",\n    \"author\": \"里奇・卡尔加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杏仁\",\n    \"author\": \"孙元平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997795-ec9e5f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在动机\",\n    \"author\": \"爱德华・L. 德西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997342-de547e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知红利\",\n    \"author\": \"谢春霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效迭代\",\n    \"author\": \"冯起升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们今天怎样做父亲\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995407-79bcac?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"持续行动\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995179-bf6496?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为极少数\",\n    \"author\": \"李栩然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995131-73e16b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇敢而非完美\",\n    \"author\": \"拉什玛・萨贾尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好思考\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个心碎的伊朗女人\",\n    \"author\": \"龚娜姿・哈宣沙达・邦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994564-faf248?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度改变\",\n    \"author\": \"泽阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994561-5fcd0c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让情绪毁了你的努力\",\n    \"author\": \"剑圣喵大师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向心理学\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只管去做\",\n    \"author\": \"邹小强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991549-e07ddd?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恰到好处的挫折\",\n    \"author\": \"格雷格• S •里德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991267-795ad9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生没有后悔药\",\n    \"author\": \"约翰・伊佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990643-2981f8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你没有退路，才有出路\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的骑士男孩\",\n    \"author\": \"金・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989767-a100a8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年顶十年\",\n    \"author\": \"剽悍一只猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989455-699466?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的囚徒\",\n    \"author\": \"亚历克斯・佩塔克斯/伊莱恩・丹顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超强专注力\",\n    \"author\": \"西多昌规\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要做人生的甲方\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是谁出的题这么难，到处都是正确答案\",\n    \"author\": \"邱天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破天性\",\n    \"author\": \"布赖恩・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏菲的哲学课\",\n    \"author\": \"多米尼克・贾尼科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985762-968eb9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（30周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个抗压的人\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生护城河\",\n    \"author\": \"张辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983704-127285?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同自己\",\n    \"author\": \"斯蒂芬妮・斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑：让选择变简单的方法\",\n    \"author\": \"欧文・瑟维斯/罗里・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的桌子\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982483-fa4e5d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格的陷阱\",\n    \"author\": \"杰弗里·E.杨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与内心的冲突和解\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日之计\",\n    \"author\": \"本杰明・斯帕/迈克尔・赞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：如何成为一个有价值的知识变现者\",\n    \"author\": \"Angie\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国女孩\",\n    \"author\": \"王苇柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053208-116309?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在时光中盛开的女子\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的心理学\",\n    \"author\": \"王明姬/姚兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052671-91e779?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体突围\",\n    \"author\": \"艾玛・加侬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的自律，给你自由\",\n    \"author\": \"小椰子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简社交\",\n    \"author\": \"莫拉格・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是记性差，只是没找对方法\",\n    \"author\": \"池田义博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习：10个你必须掌握的未来生存法则\",\n    \"author\": \"丹・苏利文/凯瑟琳・野村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界学习\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长行动指南\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通也要懂套路\",\n    \"author\": \"姜朝川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是失败，只是差一点成功\",\n    \"author\": \"萨拉・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能2\",\n    \"author\": \"刘船洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗物质三部曲\",\n    \"author\": \"菲利普・普尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭2\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别做那只迷途的候鸟\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要如何衡量你的人生\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑\",\n    \"author\": \"张羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺爱\",\n    \"author\": \"罗伯特・纳伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导就是让人追随\",\n    \"author\": \"约翰・科特/霍尔格・拉斯格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝲蛄吟唱的地方\",\n    \"author\": \"迪莉娅・欧文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046752-6d776b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趁早（十周年畅销升级版）\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挫折复原力\",\n    \"author\": \"丹尼斯・穆蓝纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保持饥渴\",\n    \"author\": \"Thinkers50\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻人，你就是想太多\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045006-2bc59b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极思考\",\n    \"author\": \"约翰尼・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044913-7a0138?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小孩\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044604-4d3683?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑又怎样\",\n    \"author\": \"弗兰齐丝卡・赛柏特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为面向未来的学习者（原书第7版）\",\n    \"author\": \"卡罗尔・卡特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而不凡\",\n    \"author\": \"维申・拉克雅礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册：重塑升级版\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎妈战歌\",\n    \"author\": \"蔡美儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆\",\n    \"author\": \"卢龙斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董卿：做一个有才情的女子\",\n    \"author\": \"乔瑞玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越（果麦经典）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039837-b00dc9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度连接\",\n    \"author\": \"杰西・沃伦・特维罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039315-f3117a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Unfu*k Yourself\",\n    \"author\": \"Gary John Bishop\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最初之前\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036237-0122de?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在亲密关系中成长\",\n    \"author\": \"卡洛琳・戴奇/丽萨・罗伯邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控习惯\",\n    \"author\": \"詹姆斯・克利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控关系\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（25周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034338-0f9f3b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变提问，改变人生（原书第3版）\",\n    \"author\": \"梅若李・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失误：为什么我们总爱犯错？\",\n    \"author\": \"凯瑟琳・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"登天的感觉\",\n    \"author\": \"岳晓东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033522-deb968?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己的人自带光芒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头的咖啡馆\",\n    \"author\": \"约翰・史崔勒基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉住气，吃硬饭\",\n    \"author\": \"王路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布隆夫曼脱单历险记\",\n    \"author\": \"丹尼尔・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的答案\",\n    \"author\": \"卢思浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032070-1c4c86?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十几岁，没有十年\",\n    \"author\": \"孙晴悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只想和你好好生活\",\n    \"author\": \"武志红等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式成长\",\n    \"author\": \"惠特尼・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追恐龙的男孩\",\n    \"author\": \"贾科莫・马扎里奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030879-d30fd6?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理界限\",\n    \"author\": \"杨嘉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消极情绪的力量\",\n    \"author\": \"托德・卡什丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人穷口袋，富人富脑袋\",\n    \"author\": \"曾驿翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少女，请回答\",\n    \"author\": \"张晓晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福断舍离\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030489-949958?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每一个认真生活的人，都值得被认真对待\",\n    \"author\": \"马叛/傅首尔/小岩井等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030477-a9eb3c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人不可以穷\",\n    \"author\": \"正经婶儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找更明亮的天空\",\n    \"author\": \"古尔瓦力・帕萨雷/娜德纳・古力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030261-83d050?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响：如何自然地赢得他人的心\",\n    \"author\": \"凯伦・梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正面管教\",\n    \"author\": \"简・尼尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029700-2aae5a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长：颠覆思维模式，重新定义成功\",\n    \"author\": \"科里・夏纳罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029661-3b9e65?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的勇气\",\n    \"author\": \"岸见一郎/古贺史健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029367-9f1f8a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是个年轻人，我心情不太好\",\n    \"author\": \"阿澜・卢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029265-8b0217?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再忙也要用心生活\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女少年\",\n    \"author\": \"秋微\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028980-691d01?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青青陌上桑\",\n    \"author\": \"陆观澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027747-d1669b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知突围：做复杂时代的明白人\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高手：精英的见识和我们的时代\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跃升\",\n    \"author\": \"威廉・麦独孤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027246-69f74b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密如何改变了我们的生活\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆境成长：坚韧人格养成手册\",\n    \"author\": \"小乔治·S.埃弗利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原生家庭\",\n    \"author\": \"苏珊・福沃德/克雷格・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024315-e9494b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木匠手记\",\n    \"author\": \"尼娜・麦克劳林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何想到又做到\",\n    \"author\": \"肖恩・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越原生家庭（原书第4版）\",\n    \"author\": \"罗纳德・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023712-fa74ce?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美女都是狠角色\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023664-8fe48b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体不说谎\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体赋能\",\n    \"author\": \"YouCore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"态度\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023064-924c58?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自媒体写作\",\n    \"author\": \"余老诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023055-a42878?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在革命：一本关于成长的书\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深阅读\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美好人生运营指南\",\n    \"author\": \"一稼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022893-a74f2b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终有一天你会懂\",\n    \"author\": \"琢磨先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到孤独尽头\",\n    \"author\": \"贝内迪克特・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022347-89429b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的幸福\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022284-740f82?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处停歇\",\n    \"author\": \"杰米・阿滕贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022275-8a9145?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的要素\",\n    \"author\": \"西蒙・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022251-1bcbdc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别的女生萨哈拉\",\n    \"author\": \"爱斯米・科德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022122-a16d36?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让人生停止灰暗的艺术\",\n    \"author\": \"苏珊・福沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021906-c19745?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果你再勇敢一点\",\n    \"author\": \"波莉・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021660-aab07e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Daring Greatly\",\n    \"author\": \"Brene Brown\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变人生\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信思考\",\n    \"author\": \"泉忠司著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我和厄尔以及将死的女孩\",\n    \"author\": \"杰西・安德鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021093-451af6?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的天赋\",\n    \"author\": \"肯・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020910-0f5b1c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰普勒极简人生法则系列（套装共6册）\",\n    \"author\": \"理查德・泰普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找到意想不到的自己\",\n    \"author\": \"丛扬洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020430-d63e63?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇风岁月\",\n    \"author\": \"罗伯特・麦卡蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020187-d7c04c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者沟通圣经\",\n    \"author\": \"珍妮弗・康维勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命中最简单又最困难的事\",\n    \"author\": \"大卫・福斯特・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019881-0c36b8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职得：成为自己故事里的英雄\",\n    \"author\": \"高琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019758-aa07ed?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样读书就够了\",\n    \"author\": \"赵周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019695-1defad?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类的天赋\",\n    \"author\": \"凯文・达顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识变现\",\n    \"author\": \"萧秋水/剽悍一只猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018279-eb39b7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不过低配的人生\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017898-288643?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小学问\",\n    \"author\": \"黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017124-975340?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹男孩\",\n    \"author\": \"帕拉西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017115-40f395?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲密关系：通往灵魂的桥梁\",\n    \"author\": \"克里斯多福・孟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017046-fa06c7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作是最好的修行\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你骨子里是个牛人\",\n    \"author\": \"珍・新赛罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016563-63ad1c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上来信\",\n    \"author\": \"胡子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者优势\",\n    \"author\": \"Marti Olsen Laney\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016314-c5509f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可爱的诅咒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015768-fe4a62?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在的重生\",\n    \"author\": \"吉杜・克里希那穆提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015477-39ea6d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的枷锁\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015369-cdc221?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所以，一切都是童年的错吗？\",\n    \"author\": \"KnowYourself主创们\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015294-aa1568?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚毅\",\n    \"author\": \"安杰拉・达克沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015231-e2dc65?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请停止无效努力\",\n    \"author\": \"孙圈圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲出一个精彩故事\",\n    \"author\": \"麦成辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好工作，好好生活\",\n    \"author\": \"克里斯汀・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变带来医治\",\n    \"author\": \"亨利・克劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014841-214fcc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆者：周鸿祎自传\",\n    \"author\": \"周鸿祎/范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014796-d33909?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的觉醒\",\n    \"author\": \"沙法丽・萨巴瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014697-afca27?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世上没有怀才不遇这件事\",\n    \"author\": \"温言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014346-461bcf?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要么出众，要么出局\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014193-3f0667?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见成长的自己\",\n    \"author\": \"卡罗尔・徳韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014046-66564e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从现在出发\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013962-86c669?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破自我的标签\",\n    \"author\": \"陈虎平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在哈佛的最后一堂课\",\n    \"author\": \"艾瑞克・赛诺威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑自我：如何成为一个很幸福的人\",\n    \"author\": \"尼尔・帕斯理查\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013746-1a8179?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长大后的世界\",\n    \"author\": \"罗曼・阿拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012951-aa9637?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿过森林的男孩\",\n    \"author\": \"加思・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012372-292745?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才源自刻意练习\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012300-54ef8d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁说你不能坚持\",\n    \"author\": \"程龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等你呼唤我的名字\",\n    \"author\": \"阿尔伯特・埃斯皮诺萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你自以为的极限，只是别人的起点\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011988-1c9150?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣地亚哥朝圣之路\",\n    \"author\": \"王赛男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011304-11a0bb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太傻天书\",\n    \"author\": \"太傻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不设限（中英双语版）\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的好天气\",\n    \"author\": \"青山七惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010605-21733e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的力量（珍藏版）\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被讨厌的勇气\",\n    \"author\": \"岸见一郎/古贺史健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010347-03ea7c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情力\",\n    \"author\": \"亚瑟・乔拉米卡利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010311-5eb039?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生命有什么可能\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你的才华还撑不起你的梦想时\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们最幸福\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一粒红尘\",\n    \"author\": \"独木舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009345-5d9d0b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的绵羊\",\n    \"author\": \"威廉・德雷谢维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗振宇：罗辑思维成长三部曲\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008769-f7cf2e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁克林有棵树\",\n    \"author\": \"贝蒂・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008640-fcdadb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见孩子，遇见更好的自己\",\n    \"author\": \"赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张德芬身心灵四部曲（套装共4册）\",\n    \"author\": \"张德芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙应台“人生三书”（套装共3册）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还年轻，我还可以重新出发\",\n    \"author\": \"唐骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像疯子一样思考，像天才一样行动\",\n    \"author\": \"凯文・达顿/安迪・麦克纳布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007617-83ecfb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨婴国\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿甘正传\",\n    \"author\": \"温斯顿・葛詹姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007395-34fe2b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产狂人许家印\",\n    \"author\": \"魏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独自上场\",\n    \"author\": \"李娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进：如何成为一个很厉害的人\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达哲学：王健林首次自述经营之道\",\n    \"author\": \"王健林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小别离\",\n    \"author\": \"鲁引弓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完整的成长：儿童生命的自我创造\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱和自由：孙瑞雪幼儿教育演讲录\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力，才配有未来\",\n    \"author\": \"小川叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜拉拉升职记（套装共4册）\",\n    \"author\": \"李可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006420-6369ee?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（20周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要让未来的你，讨厌现在的自己\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005937-7d4be8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的真谛\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁的青春不迷茫\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005709-7eb74c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的我们\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你慢慢长大\",\n    \"author\": \"刘瑜/周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005649-79868f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁都不敢欺负你\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005631-9ebae5?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将来的你，一定会感谢现在拼命的自己\",\n    \"author\": \"汤木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨房（译文经典）\",\n    \"author\": \"吉本芭娜娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032481-51d917?p=8866\",\n    \"category\": \"治愈系\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色地址簿\",\n    \"author\": \"苏菲亚・伦德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032307-65c5a3?p=8866\",\n    \"category\": \"治愈系\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑你好\",\n    \"author\": \"安珀・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零压人生\",\n    \"author\": \"米修・斯托罗尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051774-c1d5fd?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的焦虑\",\n    \"author\": \"斯科特・施托塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑又怎样\",\n    \"author\": \"弗兰齐丝卡・赛柏特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑心理学\",\n    \"author\": \"董心洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035310-d689df?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑星球笔记\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035019-621de5?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑心理学：别让美好的生活被焦虑毁了\",\n    \"author\": \"陈东城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030768-ce633e?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理界限\",\n    \"author\": \"杨嘉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么我们总是在逃避\",\n    \"author\": \"约瑟夫・布尔戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028359-3ffd8c?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑急救\",\n    \"author\": \"贝芙・艾斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028233-5b176f?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在成长\",\n    \"author\": \"塔玛・琼斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己对话：曼德拉自传\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023478-a73738?p=8866\",\n    \"category\": \"曼德拉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张宗和日记（全二卷）\",\n    \"author\": \"张宗和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510597-3f3fea?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙宝瑄日记\",\n    \"author\": \"孙宝瑄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心为身役：苏珊·桑塔格日记与笔记（1964-1980）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生：苏珊·桑塔格日记与笔记（1947-1963）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利维亚日记\",\n    \"author\": \"切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟日记\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010896-aa236e?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩智慧精髓大合集（套装共三册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒枪手：慕尼黑的秘密间谍\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁幕欧洲之新生\",\n    \"author\": \"卡尔・施勒格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜将至\",\n    \"author\": \"迈克尔・多布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032853-5f84af?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"档案：一部个人史\",\n    \"author\": \"蒂莫西・加顿艾什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败的帝国：从斯大林到戈尔巴乔夫\",\n    \"author\": \"弗拉季斯拉夫・祖博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布达佩斯往事\",\n    \"author\": \"卡蒂・马顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009486-392c89?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联专家在中国（1948-1960）\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学梯级公开课（套装共6册）\",\n    \"author\": \"摩罗/杨帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036837-519673?p=8866\",\n    \"category\": \"文言文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年文言\",\n    \"author\": \"陳永正/徐晉如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027861-286c94?p=8866\",\n    \"category\": \"文言文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为何结婚，又为何不忠\",\n    \"author\": \"海伦・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500571-d4970f?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身社会\",\n    \"author\": \"伊利亚金・奇斯列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511056-3aa444?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美婚姻\",\n    \"author\": \"米歇尔・里奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只想和你好好生活\",\n    \"author\": \"武志红等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻中的陌生人\",\n    \"author\": \"埃米尔・库斯图里卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027054-9b8a7c?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻心理学\",\n    \"author\": \"霍妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026814-a0dd95?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻的意义\",\n    \"author\": \"提摩太・凯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014898-c319af?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分心也有好婚姻\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（四）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866\",\n    \"category\": \"外文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物语系列：倾物语\",\n    \"author\": \"西尾维新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491532-54d69b?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物语系列：猫物语.白\",\n    \"author\": \"西尾维新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491559-e90937?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物语系列：猫物语.黑\",\n    \"author\": \"西尾维新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491565-9e0377?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸侦探系列（3册）\",\n    \"author\": \"弗朗齐斯卡・比尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503268-1bec63?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的羔羊四部曲\",\n    \"author\": \"托马斯・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507501-9415e7?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天机十二宫（套装2册）\",\n    \"author\": \"王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513327-58c5bc?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记5\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513426-83f70a?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（果麦经典）\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998860-dbddd1?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆·侦探小说黄金时代经典作品集（第一辑）\",\n    \"author\": \"梅维斯・多里尔・海等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995047-3a5eaf?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛经济学家推理系列（套装共4册）\",\n    \"author\": \"马歇尔・杰文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991537-2fc1c4?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冤罪代码\",\n    \"author\": \"纪遊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991234-3be92d?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返犯罪现场（共4册）\",\n    \"author\": \"宇尘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990115-eecd7e?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理计划\",\n    \"author\": \"宁城荒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985519-f13a9a?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死局\",\n    \"author\": \"江海潮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985048-e4e04b?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃勒里·奎因（30本合集）\",\n    \"author\": \"埃勒里・奎因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051606-c33e83?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达希尔•哈米特系列（共8册）\",\n    \"author\": \"达希尔・哈米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050382-1b6108?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我消失的影子\",\n    \"author\": \"高博洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048903-6588d8?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯先生\",\n    \"author\": \"米奇・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047973-333dca?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白猿客栈\",\n    \"author\": \"猎衣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047937-74e8c8?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046815-9f9c8d?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗影\",\n    \"author\": \"时晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046365-a83ffb?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八卦侦探\",\n    \"author\": \"姜木水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046179-deec2b?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青崎有吾推理作品集：里染天马系列（套装全4册）\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040971-7442fe?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝之屋\",\n    \"author\": \"安东尼・赫洛维滋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040410-cac2ae?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂侦探小说大全集（全85册）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036642-5cddab?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京极夏彦百鬼夜行中短篇集（套装5册）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033678-0e267f?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马普尔小姐探案全集\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029085-8c4c31?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大侦探波洛探案全集\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026937-aadc2c?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使安魂三部曲\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022779-c4d931?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛田庄司精选作品合集（共14册）\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022599-4320ac?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎的毒药\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020940-286d4a?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"松本清张推理悬疑典藏版合集（套装共7册）\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018183-4e0feb?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"律政先锋\",\n    \"author\": \"蒂姆・维卡里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017505-4cd655?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂作品集（套装共45册）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015663-b5afa0?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华生手稿\",\n    \"author\": \"邦妮・麦克伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014928-2d50ce?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008217-788327?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（插图新注新译本）\",\n    \"author\": \"亚瑟·柯南·道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连环罪：心里有诡系列（上下册）\",\n    \"author\": \"墨绿青苔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"К.С.斯坦尼斯拉夫斯基作品集（套装共四册）\",\n    \"author\": \"斯坦尼斯拉夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019338-3fa8a5?p=8866\",\n    \"category\": \"明星\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰民族\",\n    \"author\": \"T.M.迪瓦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503739-f61668?p=8866\",\n    \"category\": \"苏格兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC苏格兰史\",\n    \"author\": \"尼尔・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866\",\n    \"category\": \"苏格兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰女王的悲剧\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866\",\n    \"category\": \"苏格兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲技巧\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512052-f9a19a?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡公众表达课\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课3\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED说话的力量\",\n    \"author\": \"阿卡什·P.卡里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判的艺术\",\n    \"author\": \"于反\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986518-9ea72b?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服力：如何让沟通充满逻辑与技巧\",\n    \"author\": \"白丽洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986359-ce2061?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服力：如何让沟通充满逻辑（全新升级版）\",\n    \"author\": \"白丽洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985729-c3f598?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一名脱口秀老手\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课1：说的艺术\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985207-998a83?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做一场精彩的演讲\",\n    \"author\": \"琼・戴兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑演讲\",\n    \"author\": \"大卫祁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴演讲\",\n    \"author\": \"朱迪思・汉弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马云的说话之道（2019版）\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准表达：开口就能说重点\",\n    \"author\": \"牛津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026985-8d194b?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主宰演讲台\",\n    \"author\": \"比尔・胡戈特伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026454-f43984?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你玩脱口秀\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017172-eb3c87?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED思想的力量系列（套装共11册）\",\n    \"author\": \"奇普・基德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012561-cc2ad1?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白说\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲的力量\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006537-682cc0?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你又忙又美，何惧患得患失\",\n    \"author\": \"梁爽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总能做出正确决定的幸运法则\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你的才华还撑不起你的梦想时\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力，才配有未来\",\n    \"author\": \"小川叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力到无能为力，拼搏到感动自己\",\n    \"author\": \"沐木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006447-568588?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习入门：基于Python的理论与实现\",\n    \"author\": \"斋藤康毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866\",\n    \"category\": \"机器学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器学习实战\",\n    \"author\": \"Peter Harrington\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021075-0d6e7c?p=8866\",\n    \"category\": \"机器学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国浮沉：关于拿破仑一世的私人回忆（全2册）\",\n    \"author\": \"克劳德・梅尼瓦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498120-b235b7?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑大帝（全2册）\",\n    \"author\": \"安德鲁・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：决定欧洲命运的四天\",\n    \"author\": \"蒂姆・克莱顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（拿破仑批注版）\",\n    \"author\": \"马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049287-a0aa34?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆拿破仑\",\n    \"author\": \"布里昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑三世与法兰西第二帝国\",\n    \"author\": \"皮埃尔・德・拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑传（果麦经典）\",\n    \"author\": \"埃米尔・路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029262-51cdbd?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：四天、三支大军和三场战役的历史\",\n    \"author\": \"伯纳德・康沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西街\",\n    \"author\": \"菲利普・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002484-3fc686?p=8866\",\n    \"category\": \"种族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"根部之血：美国的一次种族清洗\",\n    \"author\": \"特里克・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866\",\n    \"category\": \"种族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平等之路\",\n    \"author\": \"迈克尔·J.克拉曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866\",\n    \"category\": \"种族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国种族简史\",\n    \"author\": \"托马斯・索威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866\",\n    \"category\": \"种族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"磨坊信札（作家榜经典文库）\",\n    \"author\": \"阿尔封斯・都德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491025-903fa5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年百部红色经典系列：第一辑（套装共20册）\",\n    \"author\": \"周梅森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491169-00db51?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经史百家杂钞套装共8册（全本全注全译）\",\n    \"author\": \"余兴安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491943-3f0e5a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太多值得思考的事物\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493218-ba0ce5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第三辑）\",\n    \"author\": \"唐克扬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496881-d79a75?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文经典·第一辑（套装共20册）\",\n    \"author\": \"福楼拜等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497409-47086f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生必读之书：文景古典·名译插图本\",\n    \"author\": \"埃斯库罗斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497523-e093d0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方心理学大师经典译丛（套装共11册）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497529-0e8c3b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联苏俄文学经典译著（套装15册）\",\n    \"author\": \"高尔基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497571-7a9471?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著名家经典译本·译文40（套装共40册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497904-e167f7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典名著超值套装（80册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498210-cccd8e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中译经典文库•世界文学名著精选50册\",\n    \"author\": \"中国对外翻译出版公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文心理分析作品集（套装共12册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利小说全集（全6册）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498882-338365?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫罗博士岛（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498885-f259b0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长眠不醒（作家榜经典文库）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498939-95f078?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（作家榜经典文库）\",\n    \"author\": \"尼古拉・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498993-19158e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（作家榜经典文库）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498984-f45284?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄罗斯套娃（短经典精选）\",\n    \"author\": \"阿道夫・比奥伊・卡萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499080-07b8b6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基文集套装（全八册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499341-f43d73?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拳头（短经典精选）\",\n    \"author\": \"彼得罗・格罗西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499359-0762d3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基中篇心理小说经典（全4册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499635-ae8716?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈鼓应著作精选合集（套装共6册）\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499644-a23b2a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"避暑（短经典精选）\",\n    \"author\": \"何塞・多诺索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499668-bf196c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变色龙（作家榜经典文库）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499692-2e4742?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际战争（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499734-b85d92?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"套中人（作家榜经典文库）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500169-080c3a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽的约定（作家榜经典文库）\",\n    \"author\": \"阿兰・傅尼埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500358-f4641f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺纪念文集水墨珍藏版套装全六册\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500346-c90acd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吹牛大王历险记（作家榜经典文库）\",\n    \"author\": \"埃・拉斯伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500382-8e5f6b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力：全新升级版\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海蒂（果麦经典）\",\n    \"author\": \"约翰娜・斯比丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500616-d44508?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名人传（作家榜经典文库）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500694-85d5d9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代大师林语堂作品全新修订版（全25册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500832-ce5662?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余秋雨学术四卷（套装共4册）\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500850-128583?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林格雷的画像（作家榜经典文库）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500937-3c3b07?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞选（古典文学大字本）\",\n    \"author\": \"陆侃如/龚克昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501081-311ef3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"S.A.阿列克谢耶维奇作品集（套装共五册）\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501123-bc5f17?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（读客经典文库）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501381-675b76?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经选（古典文学大字本）\",\n    \"author\": \"褚斌杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501477-e31d54?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词选（古典文学大字本）\",\n    \"author\": \"刘石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501546-485495?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛弃疾词选（古典文学大字本）\",\n    \"author\": \"刘扬忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501651-12c86d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱光潜全集\",\n    \"author\": \"朱光潜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501777-4c22d0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鄙视\",\n    \"author\": \"阿尔贝托・莫拉维亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501930-0b2e66?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（古典文学大字本）\",\n    \"author\": \"孙洙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501939-d54a1c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历代名家词集精华录（全22册）\",\n    \"author\": \"温庭筠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502101-12a823?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樊登讲论语：学而\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502065-aaa0f3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆短篇小说全集（读客经典文库）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502116-5455c0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元曲三百首（古典文学大字本）\",\n    \"author\": \"张燕瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502113-fcbdaa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聚斯金德文集（套装共5册）\",\n    \"author\": \"帕特里克・聚斯金德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502188-2f2edc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古文观止（古典文学大字本）\",\n    \"author\": \"吴楚材/吴调侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502311-70f080?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳永词选（古典文学大字本）\",\n    \"author\": \"柳永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502314-b5e7e4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词三百首（古典文学大字本）\",\n    \"author\": \"武玉成/顾丛龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503301-c03e33?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照词选（古典文学大字本）\",\n    \"author\": \"陈祖美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503934-42bda0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白居易诗选（古典文学大字本）\",\n    \"author\": \"孙明君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504276-543fa0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恩古吉·瓦·提安哥文集（全7册）\",\n    \"author\": \"恩古吉・瓦・提安哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504327-8ea788?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著大师课合集（套装全7册）\",\n    \"author\": \"柳鸣九等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词选（古典文学大字本）\",\n    \"author\": \"韩经太/王维若\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504993-b34598?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学鉴赏辞典大系（套装共17部22册）\",\n    \"author\": \"上海辞书出版社文学鉴赏辞典编纂中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506529-6d5879?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河铁道之夜（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506277-c17653?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓶梅的艺术\",\n    \"author\": \"孙述宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506652-ddc7ba?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏蛋与大象（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506616-7f1f34?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李商隐诗选（古典文学大字本）\",\n    \"author\": \"董乃斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506757-ccee5d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫中短篇小说全集（全8册）\",\n    \"author\": \"安东・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507030-e46ffb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李煜诗词全集（作家榜经典文库）\",\n    \"author\": \"李煜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507048-37f6d0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青梅竹马·樋口一叶选集（作家榜经典文库）\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507315-77109b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪事务所（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507474-204cb6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔维诺的经典世界（共26册）\",\n    \"author\": \"伊塔洛・卡尔维诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507552-e56fe9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勒卡雷谍影经典系列重磅套装15册\",\n    \"author\": \"约翰・勒卡雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507804-ad5466?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国诗人徐志摩作品典藏全集\",\n    \"author\": \"徐志摩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英诗经典名家名译全集（套装共21本）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508305-0fc203?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（全四册）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508653-1087bf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫大合集（全10册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508854-9a7e1f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·初中部分·全49种\",\n    \"author\": \"儒勒・凡尔纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508971-dab70d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·高中部分·全56种\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509052-6ba338?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯原版作品大合集（套装共70册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508989-b952cf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文白对照四书五经全本（精注全译）\",\n    \"author\": \"李伯钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单（全本全注全译）\",\n    \"author\": \"陈伟明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫禁色作品集（套装共15册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509106-9bcd46?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格中短篇小说选（外国文学名著丛书）\",\n    \"author\": \"斯・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509109-d38600?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字套装全五册（全本全注全译）\",\n    \"author\": \"许慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509451-f7225a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草婴译列夫·托尔斯泰·全3种6册\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509229-b42707?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宁美文精选（全3册）\",\n    \"author\": \"伊凡・阿列克谢耶维奇・布宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509214-c671f0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯至译文全集（共四册）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509274-6808a3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去年的树（果麦经典）\",\n    \"author\": \"新美南吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509280-4384dd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建党百年百篇文学短经典（全5册）\",\n    \"author\": \"贺绍俊等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509304-7fb398?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图哲学作品集（套装6册）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509394-d47210?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社博雅文库大全集（套装共24本）\",\n    \"author\": \"费孝通等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509547-14b151?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅奖作家短经典（全14册）\",\n    \"author\": \"陈忠实等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509631-093196?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯文集·逝世150周年纪念版\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509703-27e896?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（果麦经典）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文与社会译丛·精选集（套装20册）\",\n    \"author\": \"汉娜・阿伦特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509832-1b9259?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录（全本全注全译）\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509775-46c4c9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜（果麦经典）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510144-7fa451?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫言经典作品（套装7册）\",\n    \"author\": \"莫言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510243-1f1cbf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华章同人重现经典（套装24册）\",\n    \"author\": \"安・兰德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510513-78819a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基作品集（套装共9册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510720-d03973?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"围炉夜话（作家榜经典文库）\",\n    \"author\": \"王永彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510696-9e23ec?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清文选\",\n    \"author\": \"刘世南/刘松来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510765-68d5d1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（读客经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510825-94b6a4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小窗幽记（作家榜经典文库）\",\n    \"author\": \"陈继儒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510867-7b596f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学读本丛书典藏全集（共23册）\",\n    \"author\": \"薛天纬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510990-2cbfc9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"处世三大奇书（套装共3册）\",\n    \"author\": \"洪应明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510918-b3a5ca?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂：足本（全三册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510981-38511d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔船\",\n    \"author\": \"西格弗里德・伦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510969-3e51f2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溪山琴况 琴声十六法（全本全注全译）\",\n    \"author\": \"陈忱译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511044-5300d3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风俗通义（全本全注全译）\",\n    \"author\": \"应劭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511053-cc854f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典小白书（全14册）\",\n    \"author\": \"戴维・布朗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511128-49e429?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝范 臣轨 庭训格言（全本全注全译）\",\n    \"author\": \"王双怀等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511086-2c38d2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死一只知更鸟（图像小说）\",\n    \"author\": \"哈珀・李/弗雷德哈珀・李福德姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511326-6ffb36?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变形记（作家榜经典文库）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511323-ecb5b9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话（读客经典文库）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511362-ce4957?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人笔记（作家榜经典文库）\",\n    \"author\": \"伊万・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511440-340449?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（果麦经典）\",\n    \"author\": \"刘向/刘歆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511605-ee4d4c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（作家榜经典文库）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511782-eaea45?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记（2020全新编校精美插图典藏本）\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511932-7b6bb3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季羡林全集（套装全套三十卷）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511971-8fd3a8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著丛书（第二辑）\",\n    \"author\": \"托尔斯泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512160-ee215b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原（果麦经典）\",\n    \"author\": \"托・斯・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512013-24591d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个青年艺术家的画像（果麦经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512145-efc308?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著丛书（第一辑）\",\n    \"author\": \"斯威夫特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512493-553b6b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（作家榜经典文库）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512541-3dc7db?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独小说家（作家榜经典文库）\",\n    \"author\": \"郁达夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512583-7a6408?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远大前程（作家榜经典文库）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512628-994571?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆短篇小说全集（套装共7册）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512712-1e94ab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菜根谭（作家榜经典文库）\",\n    \"author\": \"洪应明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512730-2183ca?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翁贝托·埃科重要代表作品集（套装共12册）\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513030-dd182d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王蒙写给年轻人的中国智慧（全四册）\",\n    \"author\": \"王蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513588-2fdf16?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛虻（果麦经典）\",\n    \"author\": \"埃塞尔・丽莲・伏尼契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513789-ea804a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛天赐传（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004530-ae8ca6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本雅明作品集（套装共六册）\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004428-bf2da4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的枷锁（作家榜经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004386-bd9f54?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先知：纪伯伦散文诗选（果麦经典）\",\n    \"author\": \"纪伯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004314-4501b1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明及其不满（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004269-ea87b0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第二辑）\",\n    \"author\": \"詹姆斯・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004257-24dc6d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文精选散文系列（全6册）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年维特之烦恼（果麦经典）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004071-6309ee?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003906-785783?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵的焦灼（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003828-b5debe?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺散文全编（全6卷）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人鼠之间（果麦经典）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003681-64a126?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日之东·月之西：北欧故事集\",\n    \"author\": \"彼得・克利斯登・亚柏容森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003552-8f56f9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"项塔兰（套装全三册）\",\n    \"author\": \"格里高利・大卫・罗伯兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003516-7758a1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间机器（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003399-288485?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍勒作品集（套装共七册）\",\n    \"author\": \"马克思・舍勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003123-717cf7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尼亚传奇全集（套装共7册）\",\n    \"author\": \"C.S.路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002988-6b8b50?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（作家榜经典文库）\",\n    \"author\": \"蘅塘退士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002970-071756?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时（果麦经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002574-f02fe9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛尔戈王后\",\n    \"author\": \"亚历山大・仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002424-836ef4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（果麦经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾经典合集（共24册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002232-b29b6a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的解析（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002187-512d6c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脚客\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002142-08a9b3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人笔记（果麦经典）\",\n    \"author\": \"伊凡・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001815-50efa3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格作品集（套装共9册）\",\n    \"author\": \"斯特凡・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001710-78d962?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（果麦经典）\",\n    \"author\": \"尼科洛・马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·情感故事书系（套装共66本）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（作家榜经典文库）\",\n    \"author\": \"但丁・阿利吉耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001539-6e9215?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁实秋经典作品雅致生活系列（套装共5册）\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001419-010171?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李健吾译文集（套装共14册）\",\n    \"author\": \"福楼拜等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001437-81e8a8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉檀迦利（果麦经典）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001179-3f0045?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（作家榜经典文库）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001044-27b101?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（读客经典）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000699-3c0b68?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色俄罗斯系列（第二辑）\",\n    \"author\": \"普希金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000600-533ea6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春潮（作家榜经典文库）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000564-12b502?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群雄逐鹿：彩绘三国演义\",\n    \"author\": \"金协中绘/成长著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000246-278283?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（作家榜经典文库）\",\n    \"author\": \"费奥多尔・米哈伊洛维奇・陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999847-be2ddd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降魔修心：彩绘西游记\",\n    \"author\": \"林遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000642-780a39?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培根随笔全集（作家榜经典文库）\",\n    \"author\": \"弗朗西斯・培根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林人（作家榜经典文库）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999451-b07ef2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初恋（作家榜经典文库）\",\n    \"author\": \"伊凡・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999073-2cb9f3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒凉山庄（插图珍藏版）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999151-c700d1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书杂志\",\n    \"author\": \"王念孙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草枕（果麦经典）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998569-850adf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（作家榜经典文库）2020版\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997672-b67be3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙乡年鉴（经典译林）\",\n    \"author\": \"奥尔多・利奥波德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997633-c1cc0f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记丛书\",\n    \"author\": \"沈复/陈裴之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗吉尼亚·伍尔夫作品集（套装共6册）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996826-c6f60d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎注评\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁启超修身三书\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996163-d09e12?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔经济学奖经典文库系列（套装共11册）\",\n    \"author\": \"保罗・克鲁格曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995938-fd0511?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪伯伦大全集名家译著经典套装（全七册）\",\n    \"author\": \"纪伯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995524-a19e30?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列那狐的故事（作家榜经典文库）\",\n    \"author\": \"威廉・卡克斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995368-9b04db?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏珊·桑塔格文集套装（套装共16册）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995377-7fe3c3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（作家榜经典文库）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995341-51019b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话（果麦经典）\",\n    \"author\": \"汉斯・克里斯汀・安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995311-bfdc72?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克小说集（傅雷译文经典）\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995194-58db5d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪夜来客\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995071-9ecd56?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学与人：20世纪西方哲学精选（套装共5本）\",\n    \"author\": \"卡尔・雅斯贝斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保罗·奥斯特作品集（套装共8册）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994537-3a23e1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（博集天卷）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大名著（彩皮版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短经典系列（套装共15册）\",\n    \"author\": \"路易吉・马莱巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991078-23a4a7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪者（读客经典）\",\n    \"author\": \"卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990928-0ab20b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（作家榜经典文库）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990895-2603f9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个来自远方的故事（短经典）\",\n    \"author\": \"让-克利斯托夫・吕芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990028-c5cf11?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔山（读客经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989524-5ccc77?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全7册）\",\n    \"author\": \"伊万谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第五辑）\",\n    \"author\": \"蒲松龄等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985930-aed100?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方百年学术经典著作（套装共30品38册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985768-ab1baa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第四辑）\",\n    \"author\": \"弗吉尼亚・伍尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（中英双语典藏版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚经典作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第13部：卷96~卷98）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985435-f1700a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋全传（作家榜经典文库）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第4部22-28卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984898-007385?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第5部：卷33-卷38）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983725-235f1a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第1部1-7卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983902-35ebe0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第2部8-14卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983941-1ab596?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第3部15-21卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983569-96e619?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第2部：卷9-卷16）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983290-57f378?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第3部：卷17-卷24）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983281-556f8a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第4部：卷25-卷32）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983263-15b46b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子（全本全注全译）\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第1部：卷1-卷8）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054669-60e509?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那时上帝是只兔子\",\n    \"author\": \"莎拉・韦曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051723-905b0e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第三辑）\",\n    \"author\": \"简・奥斯汀等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051342-44a7e5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二十二条军规\",\n    \"author\": \"约瑟夫・海勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051087-ca589a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红字（果麦经典）\",\n    \"author\": \"纳撒尼尔・霍桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050886-37cf4c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫（影子经典）\",\n    \"author\": \"加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050511-978701?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语别裁\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公孙龙子（全本全注全译）\",\n    \"author\": \"黄克剑译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（果麦经典）\",\n    \"author\": \"普罗斯珀・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小彩虹（第一辑）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（果麦经典）\",\n    \"author\": \"爱米丽・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047481-49fc2b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋穀梁传（全本全注全译）\",\n    \"author\": \"徐正英/邹皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（果麦经典）\",\n    \"author\": \"尼古拉・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047319-612f67?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔雅（全本全注全译）\",\n    \"author\": \"管锡华译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（果麦经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046398-388e26?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（果麦经典）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045654-27e62a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著名译典藏（套装共50册）\",\n    \"author\": \"亚历山大・仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045579-8eb63c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特（果麦经典）\",\n    \"author\": \"米・阿・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045261-32db15?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经点醒\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陶渊明集（作家榜经典文库）\",\n    \"author\": \"陶渊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（果麦版）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海译文TOP30名家名作大套装（套装共30本·2019年版）\",\n    \"author\": \"贾雷德・戴蒙德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045210-c6ded3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威诞辰120周年图文珍藏版文集（全18卷）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044511-3d087b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学治要（套装共三册）\",\n    \"author\": \"张文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画梁春尽落香尘\",\n    \"author\": \"刘心武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042753-f657fc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格拉底之死（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵、自我与社会（译文经典）\",\n    \"author\": \"米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北大名家名著文丛（套装共六册）\",\n    \"author\": \"许渊冲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040761-0f0cc1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界少年文学经典文库·中国经典篇（全套30册）\",\n    \"author\": \"吴承恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040800-945097?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我与本我（译文经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸说经典作品集（套装共4册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第二辑）\",\n    \"author\": \"奥斯卡・王尔德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039732-4d4163?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲与文明（译文经典）\",\n    \"author\": \"赫伯特・马尔库塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039576-5787a8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第一辑）\",\n    \"author\": \"薄伽丘等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海浪（译文经典）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039228-13707b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第四只手\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038940-7b7b24?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"田园交响曲（译文经典）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038904-bcb0b1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香水（译文经典）\",\n    \"author\": \"帕特里克・聚斯金德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038457-f07ef8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典藏书全套装（全61册）\",\n    \"author\": \"胡平生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038349-85eafc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（译文经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037821-bebf0d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发条橙（全新译本）\",\n    \"author\": \"安东尼・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037221-aea276?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕鼠器（译文经典）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷经典译文全集（共45册）\",\n    \"author\": \"巴尔扎克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036606-f389f7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第三辑）\",\n    \"author\": \"圣埃克苏佩里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036372-54fcf2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第四辑）\",\n    \"author\": \"大仲马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第五辑）\",\n    \"author\": \"梭罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035886-c54a82?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第一辑）\",\n    \"author\": \"莫泊桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第二辑）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡志忠经典解密系列6本\",\n    \"author\": \"蔡志忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035520-653d63?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皆大欢喜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说选（名著名译丛书）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035244-18370e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035160-d37674?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方心理学名著译丛（套装共十四册）\",\n    \"author\": \"赫尔曼・艾宾浩斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035172-bd4fe6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（名著名译丛书）\",\n    \"author\": \"爱米丽・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034848-f289fc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行记\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034770-67707c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034776-4f89d2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾著作全收录\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学巨匠老舍作品珍藏集（套装53册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034650-848b00?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学百年经典（套装三册）\",\n    \"author\": \"李朝全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔维诺精选作品集（套装23册）\",\n    \"author\": \"伊塔洛・卡尔维诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034284-3a66b1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说选（名著名译丛书）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034254-5ce4c2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与生活\",\n    \"author\": \"理查德・格里格/菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威作品全集（套装共17册）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034464-b3597e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一位女士的画像（名著名译丛书）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034101-54f30a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个陌生女人的来信（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（企鹅经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033813-b518c2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典咏流传诗词曲赋集（套装21册）\",\n    \"author\": \"李白/王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（企鹅经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033651-3000d6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茵梦湖（企鹅经典）\",\n    \"author\": \"施托姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033138-01b7da?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是猫（企鹅经典）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032898-bc4857?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第五辑）\",\n    \"author\": \"雅各布・布克哈特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坟墓的闯入者（企鹅经典）\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032805-2fdf34?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双星\",\n    \"author\": \"罗伯特・海因莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032667-da2c4f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界十大文学名著（名译珍藏版）\",\n    \"author\": \"列夫・托尔斯泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032628-52a9ac?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第四辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈·奇谭（译文经典）\",\n    \"author\": \"小泉八云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032262-b7998a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棋王（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032205-bbe80d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗生门（读客经典）\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032109-6ad93e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感悟文学大师经典100册套装\",\n    \"author\": \"萧枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（作家榜经典文库）\",\n    \"author\": \"弗・司各特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031977-f1c06b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因文集（套装共4册）\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典文学名著四师深度解读推荐版（套装七册）\",\n    \"author\": \"威廉・福克纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的外国文学经典（套装35册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍长篇小说作品全集（套装十七册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031458-4659d9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍作品全集（套装五十五册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031389-1fea08?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2061：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老舍经典代表作（套装共3册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031329-6d9fcc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选中短篇小说集（套装六册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031305-740b89?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选杂文集（套装八册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍代表作作品集（套装九册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（果麦经典）\",\n    \"author\": \"弗朗西斯・司各特・菲兹杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031194-680961?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著名译化境文库（套装共9册）\",\n    \"author\": \"化境文库编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2010：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031092-6ce749?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊恩·麦克尤恩作品集（套装共15册）\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030873-4d30db?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异详注新评\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030834-021d30?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装六十册）\",\n    \"author\": \"奥斯丁/勃朗特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031182-92bef5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叔本华哲学经典（套装共5册）\",\n    \"author\": \"叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030699-1c8a13?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文豆瓣高分必读经典套装\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030654-cbc641?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦（修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间词话（作家榜经典文库）\",\n    \"author\": \"王国维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030492-572067?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学大师经典必读（套装100册）\",\n    \"author\": \"鲁迅/徐志摩/朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030450-b187cd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄心理学经典\",\n    \"author\": \"河合隼雄等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030357-1b42df?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三毛典藏全集（14本套装）\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030303-88ee37?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师精选典藏系列套装33册\",\n    \"author\": \"林徽因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"念楼学短\",\n    \"author\": \"锺叔河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的幽默家\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"（新华书店十年畅销书系列）世界名著39本合集（上册）\",\n    \"author\": \"新华文轩出版集团\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030153-5465e0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"（新华书店十年畅销书系列）世界名著39本合集（下册）\",\n    \"author\": \"新华文轩出版集团\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030141-351a91?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装共50册）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸书院（套装共8册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029850-c5adf5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（名著译林）\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029805-90d798?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著译林）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（名著译林）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029796-8ad781?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底两万里（名著译林）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029784-a7b283?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（名著译林）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029631-0c12fd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾四书精讲（套装共11册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029571-16066b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新刻绣像批评金瓶梅\",\n    \"author\": \"兰陵笑笑生\",\n    \"link\": \"链接未找到\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（作家榜经典文库）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029385-ae493f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（果麦经典）\",\n    \"author\": \"曹雪芹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（果麦经典）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（果麦经典）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029133-504b14?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（果麦经典）\",\n    \"author\": \"施耐庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（读客经典）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028821-f3f217?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尔齐斯与歌尔德蒙\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028767-0d8d9a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮与六便士（读客经典）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028707-7117d7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺与玫瑰（读客经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028629-d7c7bb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个火枪手（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028785-d4755a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底两万里（读客经典）\",\n    \"author\": \"凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028590-8917cf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（读客经典）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028290-a85451?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（权威全译典藏版）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028281-88645a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（经典译林）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"链接未找到\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（世界十大文学名著）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（作家榜经典文库）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028299-c59dc2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子（作家榜经典文库）\",\n    \"author\": \"圣-埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027807-091fea?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威精选集（套装共4册）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027795-430894?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特立斯非虚构经典著作\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027792-68778f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿德勒积极心理学（套装共4册）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027780-02be68?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿山墙的安妮（作家榜经典文库）\",\n    \"author\": \"露西・莫德・蒙格玛丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包法利夫人\",\n    \"author\": \"居斯达夫・福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027603-cfcf3f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（读客经典）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林家铺子\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027486-d72605?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（果麦经典）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027510-2f2be5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（读客经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高老头（作家榜经典文库）\",\n    \"author\": \"奥诺雷·德·巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027474-27cba5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（作家榜经典文库）\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027480-eb7b21?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（作家榜经典文库）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027459-37a5f7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力意志与永恒轮回（译文经典）\",\n    \"author\": \"弗里德里希·威廉·尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三言二拍典藏版套装（作家榜经典文库）\",\n    \"author\": \"冯梦龙/凌濛初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027468-fe4fe6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯（读客经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027420-0f8297?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨之夜（译文经典）\",\n    \"author\": \"海因里希・海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027390-c641ae?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点（作家榜经典文库）\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金粉世家（作家榜经典文库）\",\n    \"author\": \"张恨水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027375-2bba42?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅青少年文学经典系列（套装共10册）\",\n    \"author\": \"刘易斯・卡罗尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027315-5cf5f6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林童话（果麦经典）\",\n    \"author\": \"格林兄弟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027186-65bb3b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳科幻经典（套装共9册）\",\n    \"author\": \"凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027225-b52df3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑林广记（作家榜经典文库）\",\n    \"author\": \"游戏主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮士德（译文名著典藏）\",\n    \"author\": \"约翰・沃尔夫冈・歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026772-9e30ca?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"官场现形记\",\n    \"author\": \"李宝嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026424-31227d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的枷锁\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026397-998dcb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙主题变奏\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026391-dafb28?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苔丝（译文名著典藏）\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025656-f77567?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当美拯救我们\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未发现的自我\",\n    \"author\": \"卡尔・古斯塔夫・荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025497-5a5313?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Human Comedy\",\n    \"author\": \"Honore de Balzac\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025263-8947e9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（果麦经典）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025074-44fa95?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城堡\",\n    \"author\": \"卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025014-46844e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书（读客经典）\",\n    \"author\": \"约瑟夫・鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024987-cfbbc7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列那狐的故事（读客经典）\",\n    \"author\": \"玛特・艾・季罗夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024705-152cdc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乞力马扎罗的雪（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024483-1cc6ab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人爱我\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文全传\",\n    \"author\": \"张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024288-a2737b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年维特的烦恼（读客经典）\",\n    \"author\": \"约翰・沃尔夫冈・冯・歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024237-1edddb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（读客经典）\",\n    \"author\": \"艾米莉・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024126-44fd04?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小妇人（读客经典）\",\n    \"author\": \"露易莎・梅・奥尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024123-d8ea29?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲（果麦经典）\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024081-b60289?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（作家榜经典文库）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024075-de0a5f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野性的呼唤（读客经典）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024048-f76d1c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（读客经典）\",\n    \"author\": \"弗・司各特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023826-c18ccc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督山伯爵（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学常识\",\n    \"author\": \"郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学常识\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023640-fe3bfc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰小说精选（读客经典）\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"IBM帝国缔造者：小沃森自传\",\n    \"author\": \"小托马斯・约翰・沃森/彼得・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（完整版）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（果麦经典）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023229-b94dc3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯丁全集（英文版）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023130-faa3ba?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们一无所有\",\n    \"author\": \"安东尼・马拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023091-47cf9b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（读客经典）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023061-1bff68?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间喜剧（读客经典）\",\n    \"author\": \"奥诺雷・德・巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023082-d9ba2c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河铁道之夜（读客经典）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022767-1f1a92?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白轮船\",\n    \"author\": \"钦吉斯・·艾特玛托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022752-04c29a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到灯塔去\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022578-1cdcd0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶花女（读客经典）\",\n    \"author\": \"小仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022494-778de5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（读客经典）\",\n    \"author\": \"普罗斯佩・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022485-c0ed82?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜阳（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潘多拉之匣（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022431-d56ce6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背影\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（读客经典）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022320-b8d36b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔集（全六册）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司汤达集（全四册）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫集（全五册）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022206-6b62a3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基集（全九册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022209-03d5a0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左拉集（全四册）\",\n    \"author\": \"左拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍夫曼集（套装共2册）\",\n    \"author\": \"霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022191-d724ce?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个被绞死的人\",\n    \"author\": \"安德烈耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021981-96c437?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯集（套装共10册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈察洛夫集（全四册）\",\n    \"author\": \"冈察洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代集（共五册）\",\n    \"author\": \"哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德集（全五册）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪德集（全五册）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德莱塞集（全四册）\",\n    \"author\": \"德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫集（全二册）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托尔斯泰集（共6册）\",\n    \"author\": \"托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格集（全2册）\",\n    \"author\": \"茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马集（共八册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯集（共5册）\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基度山伯爵（全2册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021567-8fdb13?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦卡勒斯作品系列（套装共6册）\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021537-c2fc56?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·鱼鸟篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·人神篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"50：伟大的短篇小说们\",\n    \"author\": \"欧・亨利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020481-1fffa1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡短篇小说集\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019605-f1d5f0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛丽·安妮\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅经典全集全四册\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019455-217bae?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盖普眼中的世界\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（果麦经典）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019365-ccc402?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子三部曲\",\n    \"author\": \"埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019302-5cad9b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（原书第4版）\",\n    \"author\": \"沃伦・巴菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅全集（全20册）\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018621-414c16?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学备览（套装共12册）\",\n    \"author\": \"赵敏俐/尹小林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016722-5e54ed?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮与六便士（作家榜经典文库）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016398-3a2ca3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫（果麦经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016017-b4cf30?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（全译本）\",\n    \"author\": \"亚当・斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015849-0975d2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不成问题的问题\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015252-eb9267?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透孙子兵法\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014508-c3e54a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛百年经典（01-38卷）\",\n    \"author\": \"伊索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013542-8c1815?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平凡的世界（套装共3册）\",\n    \"author\": \"路遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012519-dcdb11?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012480-bb6ba7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012498-08c134?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个火枪手\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012471-f5ee43?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高窗\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012333-e3cf0f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖底女人\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012327-4c3365?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重播\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012063-099570?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日走过山间（果麦经典）\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（全本全注全译）\",\n    \"author\": \"王秀梅译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贼巢\",\n    \"author\": \"詹姆斯・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白先勇细说红楼梦\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009822-88e0d4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名利场（套装上下册）\",\n    \"author\": \"萨克雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008997-bf0775?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008829-113e17?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死一只知更鸟\",\n    \"author\": \"哈珀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008760-83b113?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒林外史（果麦经典）\",\n    \"author\": \"吴敬梓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008754-58ab37?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年孤独\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008040-9c2191?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密花园（果麦经典）\",\n    \"author\": \"弗朗西丝・霍奇森・伯内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007665-e9967f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（缩译全彩插图本）\",\n    \"author\": \"亚当·斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说选（经典译林）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006429-a8db77?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群书治要译注\",\n    \"author\": \"魏徵等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006303-52769e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邯郸记\",\n    \"author\": \"汤显祖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的26部欧美人文经典译丛（套装26册）\",\n    \"author\": \"尼采/柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005814-2644a8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个孤独漫步者的遐想（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005694-ef74ce?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记（经典译林）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005670-e80ccf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（译文名著精选）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005319-d938bf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世说新语\",\n    \"author\": \"刘义庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005316-e1c6a2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾诉（短经典）\",\n    \"author\": \"伊芙琳・康伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004746-84baf1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒枪手：慕尼黑的秘密间谍\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑之门\",\n    \"author\": \"理查德・阿尔德里奇/罗里・科马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威与骗子工厂\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053163-da42f2?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅲ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034080-736199?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅰ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033729-239911?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅱ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033720-1dd32f?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处可藏\",\n    \"author\": \"格伦・格林沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国情报界\",\n    \"author\": \"杰弗瑞・理查尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔虞我诈：中国古代四千年谍海风云（全2册）\",\n    \"author\": \"赵英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008742-adf1c5?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍王：戴笠与中国特工\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008571-4000d9?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CIA美国中央情报局全传\",\n    \"author\": \"亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家阴谋5：火焰王子\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006324-542463?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7本书带你走进间谍圈（全七册）\",\n    \"author\": \"弗·福赛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风起陇西\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴戏剧\",\n    \"author\": \"苏广辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003891-a41242?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迪伦马特戏剧集（全2册）\",\n    \"author\": \"弗里德里希・迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995305-1b9e72?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戏剧（牛津通识读本）\",\n    \"author\": \"马文・卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界少年文学经典文库·国外经典篇（全套47册）\",\n    \"author\": \"雨果等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041877-25ba88?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕鼠器（译文经典）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯商人（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036159-3537ae?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仲夏夜之梦（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李尔王（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035631-63e1ab?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈姆莱特（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035400-4bace1?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皆大欢喜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱桃园（名著名译丛书）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035322-e80b3f?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥瑟罗（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035214-ce0c10?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十二夜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035130-63ad7b?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克白（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035055-a52df3?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老妇还乡（名著名译丛书）\",\n    \"author\": \"迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035007-9dda46?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧悲剧全集（套装共6册）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009066-01e1b6?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009063-7f3a81?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚四大悲剧（译文名著精选）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007458-01f132?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎乐美（译文经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006588-7b673f?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邯郸记\",\n    \"author\": \"汤显祖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在亲密关系中成长\",\n    \"author\": \"卡洛琳・戴奇/丽萨・罗伯邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866\",\n    \"category\": \"婚恋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的常识\",\n    \"author\": \"布拉德福德・康纳尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学常识\",\n    \"author\": \"郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文物常识\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023637-a8bb06?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑常识\",\n    \"author\": \"林徽因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023643-a76ebd?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大忙人看的历史常识\",\n    \"author\": \"章学城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006027-0210e9?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔登战役\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上谈兵\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"条顿骑士团\",\n    \"author\": \"威廉・厄本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511374-0df96e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"号角：世界经典制服徽章艺术全集（套装共10册）\",\n    \"author\": \"指文号角工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513021-755d2a?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当大明遇上大清（全二册）\",\n    \"author\": \"宿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004389-c9a2fa?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪战争论\",\n    \"author\": \"克里斯托弗・科克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002808-69f5f4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的本质\",\n    \"author\": \"A.C.葛瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（041-050）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在伏龙芝学军事\",\n    \"author\": \"郝智慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争论（全三册）\",\n    \"author\": \"克劳塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马军事史（贝克知识丛书）\",\n    \"author\": \"莱昂哈特・布克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051891-e1f24d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独霸中东\",\n    \"author\": \"雅科夫・卡茨/阿米尔・鲍博特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵器史\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲古兵器图说\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵者不祥\",\n    \"author\": \"刘鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家安全局\",\n    \"author\": \"克劳德・德莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中途岛奇迹\",\n    \"author\": \"戈登・普兰奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲（珍藏版）\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵攻击（经典纪念版）\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六舰\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隆美尔战时文件\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪击英雄\",\n    \"author\": \"海因茨・威廉・古德里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战完整历史实录（套装共38册）\",\n    \"author\": \"马夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注定一战\",\n    \"author\": \"格雷厄姆・艾利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1944阿登战役\",\n    \"author\": \"安东尼・比弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球使命\",\n    \"author\": \"亨利・H・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国与拿破仑的决战\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第4卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第1卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第2卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第3卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀戮与文化\",\n    \"author\": \"维克托・戴维斯・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：一部历史\",\n    \"author\": \"劳伦斯・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特拉法尔加战役\",\n    \"author\": \"朱利安·S.科贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史（修订珍藏版）\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国总参谋部\",\n    \"author\": \"斯宾塞・威尔金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪战争艺术史（第一卷）\",\n    \"author\": \"查尔斯・威廉・欧曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030030-7c2c59?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐战完结珍藏版套装（全二册）\",\n    \"author\": \"李浩白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029898-df5d11?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战术\",\n    \"author\": \"利奥六世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029895-0c0896?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丹药到枪炮\",\n    \"author\": \"欧阳泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争\",\n    \"author\": \"儿岛襄\",\n    \"link\": \"链接未找到\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国战争史\",\n    \"author\": \"李湖光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的面目\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赫尔曼·沃克作品集（共9册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024753-9ab4e4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典特辑\",\n    \"author\": \"李湖光/王子午/宋毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023829-119ac1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（001-040）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024885-e1f1b0?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放战争（套装共6册）\",\n    \"author\": \"刘统等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布局天下：中国古代军事地理大势\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017508-118f05?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争魔术师\",\n    \"author\": \"大卫・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017109-9a5083?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血性军人：百年中国战争亲历纪（共13册）\",\n    \"author\": \"全国政协文史和学习委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滇西抗战三部曲\",\n    \"author\": \"余戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015765-b0be9b?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的局座：悄悄话\",\n    \"author\": \"张召忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵以诈立 : 我读《孙子》\",\n    \"author\": \"李零\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014802-6020b3?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雄兵漫道\",\n    \"author\": \"周林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012069-80045a?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘大战略\",\n    \"author\": \"丁力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西洋世界军事史（全三卷）\",\n    \"author\": \"富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011562-ee7a99?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人眼中最真实的越南战争\",\n    \"author\": \"卡尔・马兰提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010791-35d8b5?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国事机密档（全10册）\",\n    \"author\": \"凤凰周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009705-558073?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十杆枪：从独立战争到西部拓荒的美国勇敢冒险史\",\n    \"author\": \"克里斯・凯尔/威廉・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009336-cf85ab?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵进攻\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明帝国边防史：从土木堡之变到大凌河血战\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狼群（全集）\",\n    \"author\": \"刺血\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008934-54c893?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔虞我诈：中国古代四千年谍海风云（全2册）\",\n    \"author\": \"赵英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008742-adf1c5?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国海盗\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"C形包围：内忧外患下的中国突围\",\n    \"author\": \"戴旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007992-9f9eb2?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：四天、三支大军和三场战役的历史\",\n    \"author\": \"伯纳德・康沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红圈：海豹突击队前狙击手总教练回忆录\",\n    \"author\": \"布兰登・韦伯/约翰・大卫・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战太平洋（HBO官方完整版）\",\n    \"author\": \"休·安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西路军（套装共3册）\",\n    \"author\": \"冯亚光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006267-cdd7bc?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争2\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争3\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006240-b0ff09?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"军部当国：近代日本军国主义冒险史\",\n    \"author\": \"赵恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006174-b628f4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有一类战犯叫参谋\",\n    \"author\": \"俞天任\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006147-fac58d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：欧洲八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱绝杀：当关东军遇上苏联红军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005877-d8ae7b?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山的那一边\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战神粟裕\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本！日本！：中日历史上的历次死磕\",\n    \"author\": \"王浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005280-12bd88?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天坑宝藏\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗物质三部曲\",\n    \"author\": \"菲利普・普尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨齿鲨\",\n    \"author\": \"斯蒂夫・奥顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038691-82187b?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库蒙的食人兽\",\n    \"author\": \"吉姆・科比特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028389-9bc0c8?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红圈：海豹突击队前狙击手总教练回忆录\",\n    \"author\": \"布兰登・韦伯/约翰・大卫・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国共产党的九十年\",\n    \"author\": \"中共中央党史研究室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992086-13abd2?p=8866\",\n    \"category\": \"党史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色三部曲（套装3册）\",\n    \"author\": \"叶永烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008625-ff83ec?p=8866\",\n    \"category\": \"党史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色账簿\",\n    \"author\": \"马祥林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006660-1bfd15?p=8866\",\n    \"category\": \"党史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志公敌\",\n    \"author\": \"杰弗里・赫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866\",\n    \"category\": \"二战史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1945：大国博弈下的世界秩序新格局\",\n    \"author\": \"迈克・内伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866\",\n    \"category\": \"二战史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎和会与北京政府的内外博弈\",\n    \"author\": \"邓野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1943：中国在十字路口\",\n    \"author\": \"周锡瑞/李皓天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的裂缝\",\n    \"author\": \"雷颐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019896-3e4312?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的演变：19世纪史（全3册）\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019389-c4eb1e?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国社会的新陈代谢（插图本）\",\n    \"author\": \"陈旭麓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缠斗：方生与未死\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋大时代\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失稳的帝国\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戊戌变法史\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大变局\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十部小说及其作者\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991540-89a5e9?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不一样的文学史\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面纱（果麦经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031668-2a3322?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面纱\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031473-0007f9?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的因素：毛姆短篇小说全集2\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029256-35e6e8?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间的诗学（译文经典）\",\n    \"author\": \"加斯东・巴什拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866\",\n    \"category\": \"诗学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体突围\",\n    \"author\": \"艾玛・加侬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866\",\n    \"category\": \"能力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑优势（第二版）\",\n    \"author\": \"奈德・赫曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866\",\n    \"category\": \"能力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力都是逼出来的\",\n    \"author\": \"布兰登・伯查德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020433-eee874?p=8866\",\n    \"category\": \"能力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐人轶事汇编\",\n    \"author\": \"周勋初/严杰/武秀成/姚松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866\",\n    \"category\": \"轶事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Buried Giant\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016653-9a3edb?p=8866\",\n    \"category\": \"石黑一雄\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Never Let Me Go\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013593-c4885e?p=8866\",\n    \"category\": \"石黑一雄\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Remains of the Day\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013581-23b14c?p=8866\",\n    \"category\": \"石黑一雄\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方经济学说史教程\",\n    \"author\": \"晏智杰编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043584-8bd3af?p=8866\",\n    \"category\": \"教材\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与生活\",\n    \"author\": \"理查德・格里格/菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866\",\n    \"category\": \"教材\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球海盗史\",\n    \"author\": \"彼得・莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492117-e4c788?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色的旗，蓝色的海\",\n    \"author\": \"埃里克・杰・多林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504423-4afc88?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗共和国\",\n    \"author\": \"科林・伍达德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032946-dc4fd1?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗奇谭\",\n    \"author\": \"盛文强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028122-374cfe?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国海盗\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海盗时代\",\n    \"author\": \"海盗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛世：康乾\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004629-21ceb7?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是清朝套装（全8册）\",\n    \"author\": \"鹿鼎公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031809-c21e9d?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻画战勋\",\n    \"author\": \"马雅贞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020811-235335?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清商埠（共3卷）\",\n    \"author\": \"祝春亭/辛磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010002-cb156a?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道光十九年：从禁烟到战争\",\n    \"author\": \"沈渭滨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008298-a00093?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的盛世\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008151-db2720?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫女谈往录\",\n    \"author\": \"金易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清的角落\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，这是大清正史（套装共三册）\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005739-4e4df0?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆十三年\",\n    \"author\": \"高王凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005277-d6967f?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺回忆录\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513501-daa881?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国第一夫人回忆录\",\n    \"author\": \"塔夫脱总统夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的情报与外交生涯\",\n    \"author\": \"熊向晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空无界\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身大师\",\n    \"author\": \"萨拉・卡明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后叹息\",\n    \"author\": \"路易斯・布努艾尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在伏龙芝学军事\",\n    \"author\": \"郝智慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是落花生的女儿\",\n    \"author\": \"许燕吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984751-7442f4?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的一瞬间\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983962-13cbc9?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾维钧回忆录（全13册）\",\n    \"author\": \"顾维钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983332-e78898?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖们（全译修订版）\",\n    \"author\": \"理查德・尼克松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅱ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萝西与苹果酒\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老先生\",\n    \"author\": \"周实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044673-2e0611?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一道曙光下的真实\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫看大门\",\n    \"author\": \"维一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张岪与木心\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你当像鸟飞往你的山\",\n    \"author\": \"塔拉・韦斯特弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不锈时光\",\n    \"author\": \"任曙林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040479-46f77b?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国公使夫人清宫回忆录\",\n    \"author\": \"苏珊・汤丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"I Am, I Am, I Am\",\n    \"author\": \"Maggie O'Farrell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034404-5f9292?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人自编集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安南回忆录\",\n    \"author\": \"科菲・安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032844-1da8c4?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流氓的归来\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032382-2de8ce?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生有罪\",\n    \"author\": \"特雷弗・诺亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿登纳回忆录（套装共4册）\",\n    \"author\": \"康拉德・阿登纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"往事与随想（共3册）\",\n    \"author\": \"赫尔岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忆往谈旧录\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些难忘的声音\",\n    \"author\": \"张稼峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017289-27536c?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蹉跎坡旧事\",\n    \"author\": \"沈博爱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017268-d0dff9?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘人偶记\",\n    \"author\": \"徐国琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016278-c6fdd0?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟日记\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010896-aa236e?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个戴灰帽子的人\",\n    \"author\": \"邵燕祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009354-ecd060?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨的记忆\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们仨\",\n    \"author\": \"杨绛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呐喊-大屠杀回忆录\",\n    \"author\": \"曼尼・斯坦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫女谈往录\",\n    \"author\": \"金易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛并快乐着\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上岸：一个海淀妈妈的重点学校闯关记\",\n    \"author\": \"安柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493359-744141?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子的品格\",\n    \"author\": \"彭凯平/闫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493764-ff4380?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好孕，从卵子开始\",\n    \"author\": \"瑞贝卡・费特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500655-c5e536?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀孕呵护指南\",\n    \"author\": \"六层楼先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501330-30fc9c?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔玉涛自然养育法\",\n    \"author\": \"崔玉涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501618-4b43b7?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的悔过书\",\n    \"author\": \"李柳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510222-3ee66f?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡前育儿法\",\n    \"author\": \"李永爱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510288-757ee6?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让孩子像哲学家一样会思考\",\n    \"author\": \"张玮/沈文婕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教育的常识\",\n    \"author\": \"尹建莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511668-05c413?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顽童小番茄\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丁香妈妈科学养育\",\n    \"author\": \"丁香妈妈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004488-c3216d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的学区房是你家的书房\",\n    \"author\": \"佐藤亮子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真希望我父母读过这本书\",\n    \"author\": \"菲利帕・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000732-ac2b7d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"准备\",\n    \"author\": \"黛安娜・塔文纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998926-07fdc2?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育女孩（成长版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994843-6e6be3?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪孩子终身成长\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991630-eba848?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生非此\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的语言\",\n    \"author\": \"达娜・萨斯金德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反溺爱\",\n    \"author\": \"罗恩・利伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎妈战歌\",\n    \"author\": \"蔡美儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"园丁与木匠\",\n    \"author\": \"艾莉森・高普尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039465-e654bf?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学本来很有趣\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不管教的勇气\",\n    \"author\": \"岸见一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035196-6f1a79?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰教育全球第一的秘密（珍藏版）\",\n    \"author\": \"陈之华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给父母的未来之书\",\n    \"author\": \"童行学院教研团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身幼儿园\",\n    \"author\": \"米切尔・雷斯尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子是脚，教育是鞋\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020505-1ae1af?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国儿科学会育儿百科（第6版）\",\n    \"author\": \"斯蒂文・谢尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"0～12岁，给孩子一个好性格\",\n    \"author\": \"葛安妮/葛碧建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018738-0a0c03?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就是孩子最好的玩具\",\n    \"author\": \"金伯莉・布雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017844-ea3b3d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就好爸爸：男人一生最重要的工作\",\n    \"author\": \"格雷戈里・史雷顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017655-919009?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Between Parent and Child\",\n    \"author\": \"Haim G Ginott\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013977-185e23?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育男孩（典藏版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法伯睡眠宝典\",\n    \"author\": \"理查德・法伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011148-584292?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见孩子，遇见更好的自己\",\n    \"author\": \"赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙应台“人生三书”（套装共3册）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次当奶爸\",\n    \"author\": \"马克・伍兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007575-ad564d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼看懂小孩子\",\n    \"author\": \"王勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱和自由：孙瑞雪幼儿教育演讲录\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁拿走了孩子的幸福\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早教的秘密\",\n    \"author\": \"李子勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006603-2c7afe?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·婴儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006084-2be15d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·幼儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006141-816059?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·胎儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006081-99bed7?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西尔斯育儿经\",\n    \"author\": \"西尔斯夫妇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定本育儿百科\",\n    \"author\": \"松田道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔玉涛：宝贝健康公开课\",\n    \"author\": \"崔玉涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004908-0271f7?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录（全本全注全译）\",\n    \"author\": \"杨春俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866\",\n    \"category\": \"北宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汴京之围\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034971-15dabf?p=8866\",\n    \"category\": \"北宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个帝国的生与死\",\n    \"author\": \"夜狼啸西风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007848-1e242c?p=8866\",\n    \"category\": \"北宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李诞脱口秀工作手册\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866\",\n    \"category\": \"脱口秀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一名脱口秀老手\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866\",\n    \"category\": \"脱口秀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你玩脱口秀\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017172-eb3c87?p=8866\",\n    \"category\": \"脱口秀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻蜂记\",\n    \"author\": \"戴夫・古尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491859-9bd801?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关灯就睡觉\",\n    \"author\": \"格雷格·D·贾克布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491976-465249?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的地外生命\",\n    \"author\": \"刘易斯・达特奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492573-a93ad2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的能源新趋势\",\n    \"author\": \"瓦茨拉夫・斯米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493416-7ae8a8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据如何误导了我们\",\n    \"author\": \"桑内・布劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危崖：生存性风险与人类的未来\",\n    \"author\": \"托比・奥德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493782-80c088?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津科普读本（第一辑）\",\n    \"author\": \"克劳塞维茨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496395-3eb1b0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家地理终极观星指南\",\n    \"author\": \"霍华德・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496701-44ca96?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课：理学套装（全4册）\",\n    \"author\": \"麦克・戈德史密斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496950-51ea21?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"0次与10000次\",\n    \"author\": \"吉塔・雅各布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497181-c8dc00?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的奥秘\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497319-411984?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的起源\",\n    \"author\": \"刘大可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497466-2034fd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的脑科学\",\n    \"author\": \"阿马尔・阿尔查拉比等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒药：危险物质的历史\",\n    \"author\": \"本・哈伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497697-cec14c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列：伽利略的手指\",\n    \"author\": \"彼得・阿特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家宝藏（全3季）\",\n    \"author\": \"于蕾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十种人性\",\n    \"author\": \"德克斯特・迪亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不停歇的时钟\",\n    \"author\": \"杰西卡・里斯金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498153-27f384?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类进化史\",\n    \"author\": \"加亚・文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498165-5357ae?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法治的细节\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498228-28f106?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新科学漫游指南（套装共8册）\",\n    \"author\": \"《新科学家》杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498336-abceb1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体由我\",\n    \"author\": \"希拉・德利兹/路易莎・施托默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林病人\",\n    \"author\": \"娜塔莉亚・霍尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498453-ee35c9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贪婪的多巴胺\",\n    \"author\": \"丹尼尔・利伯曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498459-018013?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空居民\",\n    \"author\": \"克里斯托弗・万杰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟着文物穿越历史\",\n    \"author\": \"张志浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝来了\",\n    \"author\": \"马菁菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懒惰脑科学\",\n    \"author\": \"鲍里斯・薛瓦勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵长类人科动物图鉴\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498702-8b48c5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么长这样\",\n    \"author\": \"爱丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碳中和时代\",\n    \"author\": \"汪军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499221-bf6b0d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到火星去\",\n    \"author\": \"莎拉・斯图尔特・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499260-e8e937?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现日本：500件日本怀旧器物图鉴\",\n    \"author\": \"岩井宏实/中林启治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499302-2fb977?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学简史\",\n    \"author\": \"杰克琳・杜芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499506-2cac2b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命在于静止\",\n    \"author\": \"篠原薰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499569-193758?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告2\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499542-190a47?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混沌：开创一门新科学\",\n    \"author\": \"詹姆斯・格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499593-12a37c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级生物探寻指南\",\n    \"author\": \"马修 · D. 拉普兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499677-11db81?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凤凰：神鸟传奇\",\n    \"author\": \"约瑟夫・尼格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499722-63b477?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细胞生命的礼赞\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499728-0ba4d6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的天工开物·绘本版（全三册）\",\n    \"author\": \"一页书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在别的星球上\",\n    \"author\": \"吕西安・吕都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499833-e58485?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助燃创新的人\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499887-18f06c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道地球的奥秘\",\n    \"author\": \"戴维・比尔林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499872-69554e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戒糖：改变一生的科学饮食法\",\n    \"author\": \"初夏之菡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狡猾的细胞\",\n    \"author\": \"雅典娜・阿克蒂皮斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500322-b11884?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的自我\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500376-01a4ec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在病毒中生存\",\n    \"author\": \"苗德岁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂芬·霍金中文版著作全集（套装共11册）\",\n    \"author\": \"史蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500730-428f3d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无脊椎动物百科\",\n    \"author\": \"拉尔夫・布克斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500724-3e2969?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外科的诞生\",\n    \"author\": \"大卫・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500703-c0710c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"药物简史\",\n    \"author\": \"德劳因・伯奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500718-9137b0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耐药菌小史\",\n    \"author\": \"穆罕默德·H.扎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500787-4ece60?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个健康吃货的自我修养（共4册）\",\n    \"author\": \"威廉・李博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何证明你不是僵尸\",\n    \"author\": \"杰里米・斯特朗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很高兴认识“我”\",\n    \"author\": \"比尔・沙利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宇宙大爆炸\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪声：人类判断的缺陷\",\n    \"author\": \"丹尼尔・卡尼曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物皆假设\",\n    \"author\": \"埃里克斯・伯依斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501312-6893ef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀孕呵护指南\",\n    \"author\": \"六层楼先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501330-30fc9c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深时之旅\",\n    \"author\": \"罗伯特・麦克法伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·免疫与治愈\",\n    \"author\": \"迈克尔・金奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的一天·鹈鹕丛书\",\n    \"author\": \"苏珊・格林菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501504-478cce?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病与人类历史\",\n    \"author\": \"约书亚·S.卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501513-c3ab6e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空5500年\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特工训练手册\",\n    \"author\": \"克林特・埃默森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501945-412c41?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推开红酒的门\",\n    \"author\": \"王胜寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502554-c90c21?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们星球上的生命\",\n    \"author\": \"大卫・爱登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503952-5bd190?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误解的盐\",\n    \"author\": \"詹姆斯・迪尼科兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界自然文学经典：博物图鉴版（共12册）\",\n    \"author\": \"伊迪丝・霍尔登等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505827-9f090e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画病菌、人类与历史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505926-c5bb26?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学休息\",\n    \"author\": \"亚历克斯・索勇－金・庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505929-497bb9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事\",\n    \"author\": \"罗伯特・哈森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505959-214d70?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的材料\",\n    \"author\": \"艾妮莎・拉米雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506454-00e823?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地图3000年\",\n    \"author\": \"托马斯・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506883-89a846?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的危机\",\n    \"author\": \"玛丽安・麦克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肠道断糖\",\n    \"author\": \"江田证\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507414-c09954?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂碳中和\",\n    \"author\": \"安永碳中和课题组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507366-f36283?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人为何物\",\n    \"author\": \"王一江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507411-9a3746?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锥形帐篷的起源\",\n    \"author\": \"喬尼・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507432-99ca3f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果宇宙可以伸缩\",\n    \"author\": \"凯莱布・沙夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508368-cf05f3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫周期\",\n    \"author\": \"查尔斯・肯尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508044-93a44f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的怪物\",\n    \"author\": \"克里斯・伊姆佩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508134-74bc4c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的起源\",\n    \"author\": \"约翰・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508191-ec962a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的结构\",\n    \"author\": \"斯蒂芬・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳台人的植物生活\",\n    \"author\": \"伊藤正幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508935-c37c4a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑子不会好好睡\",\n    \"author\": \"盖伊・勒施齐纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509061-ceecea?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21个被“淘汰”的人体器官\",\n    \"author\": \"坂井建雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509247-6918f2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖无聊\",\n    \"author\": \"马克・金维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个世界，一个星球\",\n    \"author\": \"强尼・基林/斯科特・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509295-af62d4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命敌人\",\n    \"author\": \"迈克尔·T.奥斯特霍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极观星指南\",\n    \"author\": \"鲍勃・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事三部曲\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509640-75ac91?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读脑术\",\n    \"author\": \"拉塞尔·A.波德拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509688-9d9191?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英经典博物学（套装5册）\",\n    \"author\": \"德斯蒙德・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509904-1f74c7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们身处的宇宙究竟有多古怪？\",\n    \"author\": \"伊拉・马克・爱格多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜托，哲学没有那么难\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509877-4157bd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从玫瑰到枪炮\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509892-7e4601?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐数学\",\n    \"author\": \"本・奥尔林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509988-85b379?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的最后三分钟\",\n    \"author\": \"保罗・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昆虫记（全10卷）\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510141-5c4c28?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起来粉碎朋友圈养生谣言\",\n    \"author\": \"好奇博士团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失信：公共卫生体系的崩溃\",\n    \"author\": \"劳丽・加勒特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510282-6f16d7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠扬的素数\",\n    \"author\": \"马库斯・杜・索托伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510315-8d1e4a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能之不能\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510333-472d20?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC夜空探索系列（套装全8册）\",\n    \"author\": \"BBC仰望夜空杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖动植物图鉴\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津大学自然史博物馆的寻宝之旅\",\n    \"author\": \"凯特・迪思顿/佐薇・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510750-5b4a2a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类大瘟疫\",\n    \"author\": \"马克・霍尼斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学：无尽的前沿\",\n    \"author\": \"范内瓦・布什/拉什·D·霍尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510807-8d9351?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极求生\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510861-cb888f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疫苗竞赛\",\n    \"author\": \"梅雷迪丝・瓦德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方草木之美\",\n    \"author\": \"西莉亚・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于痛苦的七堂哲学课\",\n    \"author\": \"斯科特・塞缪尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510948-7b1f45?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手术刀下的历史\",\n    \"author\": \"阿诺德・范德拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510960-26a6f8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉数学书\",\n    \"author\": \"杰森・威尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510984-d5459b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你想知道的生酮饮食错误\",\n    \"author\": \"米尔萨德・哈西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史前人类生活大辟谣\",\n    \"author\": \"安托万・巴尔泽奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511002-65432a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当死亡化作生命\",\n    \"author\": \"书亚・梅兹里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我把你蠢哭了吗\",\n    \"author\": \"迪安・博内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511098-4544c6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5分钟生物课\",\n    \"author\": \"冯智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511134-5ad126?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇事物所\",\n    \"author\": \"怪奇事物所所长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511239-e8b5e8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费曼的彩虹\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511389-9a7177?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六极物理\",\n    \"author\": \"严伯钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511584-57f21d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类学讲义稿\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄油：一部丰富的历史\",\n    \"author\": \"约翰・马图夏克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511737-ace1ac?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鱼解字\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511992-0df03b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从部落到国家\",\n    \"author\": \"马克·W. 莫菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511962-90a78c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度量衡简史\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511983-ec1b7c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌物志\",\n    \"author\": \"斑斑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的六件事\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伴你一生的睡眠指导书\",\n    \"author\": \"爱丽丝・格雷戈里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史·中国篇\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512193-724ebd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物王朝\",\n    \"author\": \"冉浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512175-7e0849?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶学与茶科学\",\n    \"author\": \"叶士敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512316-d78971?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血液循环\",\n    \"author\": \"弗朗索瓦・布斯塔尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512286-58e5e6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性的进化\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512319-d04e8d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达尔文的战争\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解宇宙的尺度\",\n    \"author\": \"金伯莉・阿坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512424-f9a069?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老爸评测：你的健康呵护指南\",\n    \"author\": \"老爸评测\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512535-af72f0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女士品茶\",\n    \"author\": \"戴维・萨尔斯伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512682-fdee18?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的浪漫史\",\n    \"author\": \"诺曼・C.埃尔斯特兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512688-2974e3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追寻记忆的痕迹\",\n    \"author\": \"埃里克・坎德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513372-90244d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物眼中的人类\",\n    \"author\": \"赵序茅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513462-89d08b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧大脑\",\n    \"author\": \"艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513534-db2475?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物不简单（套装共5册）\",\n    \"author\": \"德斯蒙德・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513651-236db3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗意的宇宙\",\n    \"author\": \"斯特凡・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513624-bf8549?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干掉失眠\",\n    \"author\": \"科琳・恩斯特朗姆/阿丽莎・布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工具，还是武器？\",\n    \"author\": \"布拉德・史密斯/卡罗尔・安・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的铁证\",\n    \"author\": \"安吉拉・盖洛普/简・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513696-53c951?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇葩进化论（套装共7册）\",\n    \"author\": \"玛拉·J. 哈尔特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513783-2e2ad9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像火箭科学家一样思考\",\n    \"author\": \"奥赞・瓦罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第六日译丛（套装六册）\",\n    \"author\": \"玛丽・罗琦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513816-ceb911?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑修复术\",\n    \"author\": \"姚乃琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004539-c52863?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丁香妈妈科学养育\",\n    \"author\": \"丁香妈妈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004488-c3216d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级社会\",\n    \"author\": \"彼得・图尔钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004446-8c0263?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医疗与人性系列（套装共4册）\",\n    \"author\": \"亨利・马什等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004365-27ce81?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国科学史（全两册）\",\n    \"author\": \"李申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004308-1ba9f4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳗鱼的旅行\",\n    \"author\": \"帕特里克・斯文松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水的密码\",\n    \"author\": \"特里斯坦・古利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004038-2e1bbb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病的文化史\",\n    \"author\": \"洛伊斯·N.玛格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺陷也完美\",\n    \"author\": \"内森·H.兰兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003792-89386e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常生活中的发明原理\",\n    \"author\": \"高木芳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：活细胞的物理观\",\n    \"author\": \"埃尔温・薛定谔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑罚的历史\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003726-07d003?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的秘密\",\n    \"author\": \"耶尔・阿德勒/卡佳・施皮策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003708-5ef7a9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染\",\n    \"author\": \"亚当・库哈尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003660-c8d8ff?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：40亿年生命史诗的开端\",\n    \"author\": \"埃迪・普罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003546-7d4c71?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类简史（知识漫画）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001926-2ba1b6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"够笑一年的奇葩人体冷知识\",\n    \"author\": \"SME\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001743-801a91?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子空间\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜色的故事\",\n    \"author\": \"加文・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下落小猫与基础物理学\",\n    \"author\": \"格雷戈里·J.格布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001302-28b2c5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的故事\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的未完成交响曲\",\n    \"author\": \"玛西亚・芭楚莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相对论之路\",\n    \"author\": \"哈诺赫・古特弗罗因德/于尔根・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理套装（共四册）\",\n    \"author\": \"许大鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎药师\",\n    \"author\": \"唐纳德・R・基尔希/奥吉・奥加斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000702-1890cd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑新引·怎样判别是非\",\n    \"author\": \"殷海光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000414-fe83d1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦语录（终极版）\",\n    \"author\": \"阿尔伯特・爱因斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000372-db0ba3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码时间\",\n    \"author\": \"阿德里安・巴登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因之河\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999775-ad8131?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薄世宁医学通识讲义\",\n    \"author\": \"薄世宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999703-5d8070?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法学讲义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的认识论\",\n    \"author\": \"罗伯特・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999046-10db8e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的互联网思维\",\n    \"author\": \"伯纳多・A. 胡伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的地球科学\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998518-3ec35a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进化的跃升\",\n    \"author\": \"尼克・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给年轻科学家的信\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997759-7b3384?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国会（牛津通识读本）\",\n    \"author\": \"唐纳德・A.里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日用品简史\",\n    \"author\": \"安迪・沃纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997060-cffd2a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何不切实际地解决实际问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张文宏说传染\",\n    \"author\": \"张文宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996598-f10f1a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威士忌原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥利弗萨克斯系列（套装共4册）\",\n    \"author\": \"奥利弗・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995947-35801f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肉料理原来是这么回事儿\",\n    \"author\": \"亚瑟・勒凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒原来是这么回事儿\",\n    \"author\": \"吉雷克・奥贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捍卫隐私\",\n    \"author\": \"凯文・米特尼克/罗伯特・瓦摩西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡尾酒原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多/亚尼斯・瓦卢西克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触（第二版）\",\n    \"author\": \"大卫・奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪原来是这么回事儿\",\n    \"author\": \"特里斯坦・西卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质是什么\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的价值\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995326-60c097?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画预防常见病\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《三体》中的物理学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的科普系列（套装共8册）\",\n    \"author\": \"竹内薫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994651-9f7c25?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥胖代码\",\n    \"author\": \"冯子新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个利他主义者之死\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994531-bf36d7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因蓝图\",\n    \"author\": \"罗伯特・普罗明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994126-6e174f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何睡个好觉\",\n    \"author\": \"劳伦斯·J. 爱泼斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姿势跑法\",\n    \"author\": \"尼古拉斯・罗曼诺夫/约翰・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智与阅读\",\n    \"author\": \"丹尼尔·T.威林厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新大脑\",\n    \"author\": \"艾克纳恩・戈德堡艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991867-61d613?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理的时空\",\n    \"author\": \"尼古拉斯・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好奇心杂货铺\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991786-260d2f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课\",\n    \"author\": \"凯瑟琳・玛丽・布伦德尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果，哥白尼错了\",\n    \"author\": \"凯莱布・沙夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991624-eb9c92?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丝绸到硅\",\n    \"author\": \"杰弗里・加滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大流感\",\n    \"author\": \"约翰 M.巴里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界边缘的秘密\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空无界\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的骰子\",\n    \"author\": \"罗金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与达尔文共进晚餐\",\n    \"author\": \"乔纳森・西尔弗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非正常死亡事件簿\",\n    \"author\": \"上野正彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990121-2cc599?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个天文学家的夜空漫游指南\",\n    \"author\": \"郑春顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫海错图\",\n    \"author\": \"夏雪著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然的音符\",\n    \"author\": \"自然科研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维魔方\",\n    \"author\": \"陈波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不吃糖的理由\",\n    \"author\": \"加里・陶布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989851-a15964?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅、凤梨与穿山甲\",\n    \"author\": \"克莱尔・科克-斯塔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989284-df491a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妖怪大全\",\n    \"author\": \"孙见坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物发明指南\",\n    \"author\": \"瑞安・诺思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系度假指南\",\n    \"author\": \"奥莉维亚・科斯基/加纳・格鲁赛维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多云的宇宙\",\n    \"author\": \"小谷太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987340-afdf8f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的本质\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987280-13909c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸检报告\",\n    \"author\": \"卡拉・瓦伦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987277-fccf1c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维：关于决策、问题解决与预测的新科学\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987145-752493?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简20世纪史\",\n    \"author\": \"妮古拉・查尔顿/梅雷迪思・麦克阿德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986602-539487?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学本来很简单\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画科学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简史：世界隐秘知识博库（套装全4册）\",\n    \"author\": \"大卫・沃克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986746-917056?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我想多了吗？\",\n    \"author\": \"新科学家杂志/邱涛涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因与命运\",\n    \"author\": \"斯蒂芬·J.海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊林经典科普小丛书（套装4册）\",\n    \"author\": \"伊林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985759-492e78?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心、脑与科学（二十世纪西方哲学经典）\",\n    \"author\": \"约翰・塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未解的宇宙\",\n    \"author\": \"汪诘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985645-e44e5a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字起源\",\n    \"author\": \"凯莱布・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系简史\",\n    \"author\": \"约翰・钱伯斯/杰奎琳・米顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言的诞生\",\n    \"author\": \"丹尼尔·L. 埃弗雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟物理套装\",\n    \"author\": \"中科院物理所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985375-1c626d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之源\",\n    \"author\": \"尼克・連恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们脑中那些挥之不去的问题\",\n    \"author\": \"卓克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985348-fd5cec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫\",\n    \"author\": \"儒勒・米什莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985333-8f71e8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟\",\n    \"author\": \"儒勒・米什莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985324-f5b93b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海\",\n    \"author\": \"儒勒・米什莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985309-558959?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山\",\n    \"author\": \"儒勒・米什莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985306-7d7e9b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的旅程\",\n    \"author\": \"斯宾塞・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的工程学\",\n    \"author\": \"娜塔莎・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985189-b04eab?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新序（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经科医生有话要说\",\n    \"author\": \"吴洵昳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十分钟智商运动\",\n    \"author\": \"李永乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984940-6dc445?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球编年史（套装全七册）\",\n    \"author\": \"撒迦利亚・西琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生新算法\",\n    \"author\": \"矢野和男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷的开始\",\n    \"author\": \"戴维・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷小\",\n    \"author\": \"阿米尔・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能机器如何思考\",\n    \"author\": \"肖恩・格里什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类成功统治地球的秘密\",\n    \"author\": \"约瑟夫・亨里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学2\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小数据之美\",\n    \"author\": \"陈辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982447-1e6d76?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异端：进击的哲学现场\",\n    \"author\": \"史蒂文・纳德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间观\",\n    \"author\": \"西蒙・加菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054399-46d739?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理学的进化\",\n    \"author\": \"阿尔伯特・爱因斯坦/利奥波德・英费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮全书\",\n    \"author\": \"比尔・莱瑟巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找爽点\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命流感\",\n    \"author\": \"杰里米・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络（牛津通识读本）\",\n    \"author\": \"圭多・卡尔达雷利/米凯莱・卡坦扎罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053052-0ef287?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影（牛津通识读本）\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨：一部自然与文化的历史\",\n    \"author\": \"辛西娅・巴内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深奥的简洁\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人机共生\",\n    \"author\": \"托马斯・达文波特/茱莉娅・柯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代，你的工作还好吗？\",\n    \"author\": \"渠成/陈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能十万个为什么\",\n    \"author\": \"智能相对论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051492-7ab628?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世纪的哭泣\",\n    \"author\": \"兰迪・希尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051345-8d25b6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的逻辑题\",\n    \"author\": \"亚历克斯・贝洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑训练手册\",\n    \"author\": \"塔拉・斯瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051024-e3c24d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《自然》百年科学经典（第一卷）\",\n    \"author\": \"赫胥黎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"角斗士、海盗与信任博弈\",\n    \"author\": \"哈伊姆・夏皮拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050799-329cef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和伊壁鸠鲁一起旅行\",\n    \"author\": \"丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造未来城市\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追捕祝融星\",\n    \"author\": \"托马斯・利文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《新科学家》杂志轻科普系列（套装全3册）\",\n    \"author\": \"新科学家杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简地理学\",\n    \"author\": \"威尔・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050448-e34a7b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的“屁”事儿\",\n    \"author\": \"尼克・卡鲁索等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050424-0a1c39?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在太空的一年\",\n    \"author\": \"斯科特 · 凯利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050355-16803e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简哲学史\",\n    \"author\": \"莱斯莉・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简量子力学\",\n    \"author\": \"张天蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050145-239ab3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万智有灵\",\n    \"author\": \"弗朗斯・德瓦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049908-4023d0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影冷知识\",\n    \"author\": \"许立衡/张凯淯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与爱因斯坦共进早餐\",\n    \"author\": \"查德・奥泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全新万物简史\",\n    \"author\": \"鲍勃・伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构是什么\",\n    \"author\": \"詹姆斯・爱德华・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：经济增长新引擎\",\n    \"author\": \"孙松林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新型冠状病毒感染防护\",\n    \"author\": \"何剑峰/宋铁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《科学美国人》精选系列科学全景套装（共14册）\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大开眼界的科学知识\",\n    \"author\": \"胡桃夹子工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048882-d2f1c4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆斯河\",\n    \"author\": \"丹・费金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物奇葩说\",\n    \"author\": \"尼克・卡鲁索等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048585-97d7e9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费恩曼物理学讲义（新千年版）（套装共3册）\",\n    \"author\": \"费恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类为什么要探索太空\",\n    \"author\": \"克里斯・英庇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"模型思维\",\n    \"author\": \"斯科特・佩奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048045-63863d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的进击\",\n    \"author\": \"唐文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047508-dc4798?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠、虱子和历史\",\n    \"author\": \"汉斯・辛瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技与和平\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047055-d0635a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡个好觉\",\n    \"author\": \"迈尔・克利格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级潜能\",\n    \"author\": \"亚当・皮奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人诞生\",\n    \"author\": \"稻见昌彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超纲冷知识\",\n    \"author\": \"吉姆・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的情绪生活\",\n    \"author\": \"理查德・戴维森/莎朗・伯格利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大图景\",\n    \"author\": \"肖恩・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物思维\",\n    \"author\": \"查尔斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能会抢哪些工作\",\n    \"author\": \"理查德・萨斯坎德/丹尼尔・萨斯坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲古兵器图说\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI的25种可能\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"140亿年宇宙演化全史\",\n    \"author\": \"尼尔・德格拉斯・泰森/唐纳德・戈德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二堂经典科普课\",\n    \"author\": \"吴京平/汪诘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045681-e1cc56?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端生存\",\n    \"author\": \"史蒂芬・帕鲁比/安东尼・帕鲁比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技失控\",\n    \"author\": \"温德尔・瓦拉赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会呼吸\",\n    \"author\": \"帕特里克・麦基翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽之问\",\n    \"author\": \"弗兰克・维尔切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级思维\",\n    \"author\": \"托马斯·W·马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同的生命线\",\n    \"author\": \"约翰・苏尔斯顿/乔治娜・费里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到你的世界\",\n    \"author\": \"莎拉・威廉姆斯・戈德哈根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间简史\",\n    \"author\": \"托马斯・马卡卡罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044703-9154af?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（果麦版）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简算法史\",\n    \"author\": \"吕克・德・布拉班迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给大家的AI极简史\",\n    \"author\": \"托马斯・拉姆齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043935-90a7c1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆的思想家\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我们灵魂激荡身体欢愉\",\n    \"author\": \"任黎明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043866-18019c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你也是蘑菇吗\",\n    \"author\": \"安定医院郝医生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043701-0683a6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超凡：我们的身心极致及天赋的科学\",\n    \"author\": \"罗恩・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代人的日常生活\",\n    \"author\": \"讲历史的王老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043638-abdc6f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晓肚知肠\",\n    \"author\": \"段云峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043326-134f07?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我包罗万象\",\n    \"author\": \"埃德・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043266-561836?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候改变世界\",\n    \"author\": \"布莱恩・费根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043254-e54d87?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"揭秘太空\",\n    \"author\": \"张天蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043209-6575f3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变未来的九大算法\",\n    \"author\": \"约翰・麦考密克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简世界神话\",\n    \"author\": \"马克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触感引擎\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042108-97942a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女生呵护指南\",\n    \"author\": \"六层楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑动解锁\",\n    \"author\": \"尼尔・梅塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类起源的故事\",\n    \"author\": \"大卫・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病者生存\",\n    \"author\": \"沙龙・莫勒姆/乔纳森・普林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简新药发现史\",\n    \"author\": \"彭雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040899-7bda48?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖先的故事\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法布尔植物记：手绘珍藏版（套装共2册）\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040536-bfadef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们花园里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的秘密\",\n    \"author\": \"约翰・布拉德肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅3\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们林地里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们迷人的鸟：猫头鹰\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅与其他海鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱歌的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善与恶\",\n    \"author\": \"阿比盖尔・马什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039612-8d1c5f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会说脏话？\",\n    \"author\": \"埃玛・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗？（升级版）\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039567-9b107f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空荡荡的地球\",\n    \"author\": \"达雷尔・布里克/约翰・伊比特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤博士的啤酒札记\",\n    \"author\": \"太空精酿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空旅行指南\",\n    \"author\": \"尼尔·F. 科明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039180-ff8b0d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创世记\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能生存学\",\n    \"author\": \"李・戈德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的肚脐\",\n    \"author\": \"迈克尔・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"免疫\",\n    \"author\": \"尤拉・比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪海洋简史\",\n    \"author\": \"菲利帕・桑德尔/艾德・朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038478-6fe43e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性动物\",\n    \"author\": \"道格拉斯・肯里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（生活常识篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐糖脂\",\n    \"author\": \"迈克尔・莫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037266-955677?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·量子探秘系列（新版套装共5册）\",\n    \"author\": \"布鲁斯・罗森布鲁姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037227-c08bef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·弦理论之争系列（新版套装共3册）\",\n    \"author\": \"布莱恩・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简数学\",\n    \"author\": \"克里斯・韦林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036807-4542b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉酒简史\",\n    \"author\": \"马克・福赛思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·时空奥秘系列（新版套装共5册）\",\n    \"author\": \"史蒂芬・霍金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036891-abb2fb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非平面\",\n    \"author\": \"尼克・索萨尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弥散的心智\",\n    \"author\": \"里卡多・曼佐蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的遗传学\",\n    \"author\": \"伯顿・格特曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列（套装共7册）\",\n    \"author\": \"梅拉妮・米歇尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（六）\",\n    \"author\": \"伽利略等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036366-c0cbfa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给好奇者的暗黑物理学\",\n    \"author\": \"罗兰・勒乌克/文森特・博滕斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036114-dbe6f4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学本来很有趣\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·诺贝尔奖得主作品（新版套装共8册）\",\n    \"author\": \"基普·S.索恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036132-d2b94c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的材料\",\n    \"author\": \"马克・米奥多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新药的故事\",\n    \"author\": \"梁贵柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的克隆技术\",\n    \"author\": \"亚伦・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035901-def398?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现的乐趣\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035826-de103a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的法庭科学\",\n    \"author\": \"杰伊・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（四）\",\n    \"author\": \"约翰・布鲁德斯・华生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035742-b3a5b1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（五）\",\n    \"author\": \"惠更斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么\",\n    \"author\": \"朱迪亚・珀尓/达纳・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深呼吸：菠萝解密肺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035556-2eaf53?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷茫的旅行商\",\n    \"author\": \"William J. Cook\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035454-7affdc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（三）\",\n    \"author\": \"开普勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因何美妙而优雅地运行\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物起源\",\n    \"author\": \"格雷厄姆・劳顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（一）\",\n    \"author\": \"摩尔根等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她说：菠萝解密乳腺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（二）\",\n    \"author\": \"玛丽・居里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC自然探索系列（套装共7册）\",\n    \"author\": \"阿拉斯泰尔・福瑟吉尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035511-2fd3b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星座全书\",\n    \"author\": \"贾尔斯・斯帕罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034923-1361c3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无中生有的世界\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从祖先到算法\",\n    \"author\": \"亚历克斯・本特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10堂极简概率课\",\n    \"author\": \"佩尔西・戴康尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈之书\",\n    \"author\": \"曼纽尔・利马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁？如果有我，有几个我？\",\n    \"author\": \"理查德・大卫・普列斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与生活\",\n    \"author\": \"理查德・格里格/菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空故事\",\n    \"author\": \"苏珊娜・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的算法\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的秩序\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群的进化\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的亲密关系\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观从何而来\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"18个未来进行时\",\n    \"author\": \"吉姆・阿尔- 哈里里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会发胖\",\n    \"author\": \"盖里・陶比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的故事\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033396-0dc284?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑与意识\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无量之网\",\n    \"author\": \"格里格．布莱登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画古诗文\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体2\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代\",\n    \"author\": \"项立刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞奔的物种\",\n    \"author\": \"大卫・伊格曼/安东尼・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器人共舞\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邀你共进量子早餐\",\n    \"author\": \"索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对话最强大脑\",\n    \"author\": \"李大巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033003-e77cd0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三次浪潮\",\n    \"author\": \"阿尔文・托夫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的春天（四师推荐精装版）\",\n    \"author\": \"蕾切尔・卡森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032802-2197eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薛将军精解《孙子兵法》\",\n    \"author\": \"薛国安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032532-cd3d67?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期表\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的熊猫\",\n    \"author\": \"乔治・夏勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032364-6ae019?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术简史\",\n    \"author\": \"德伯拉·L·斯帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032319-7433f4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（完整精修珍藏译本）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总觉得饿？\",\n    \"author\": \"大卫. 路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一想到还有95%的问题留给人类，我就放心了\",\n    \"author\": \"豪尔赫・陈/丹尼尔・怀特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说出来你可能不信\",\n    \"author\": \"SME\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032043-e62957?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通识：学问的门类\",\n    \"author\": \"茂木健一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032028-db8b7e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒星球\",\n    \"author\": \"卡尔・齐默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自下而上\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之问\",\n    \"author\": \"汪波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031944-64d9c3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷物大脑\",\n    \"author\": \"戴维・珀尔马特/戴维・珀尔马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌群大脑\",\n    \"author\": \"戴维・珀尔马特/克里斯廷・洛伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球科技通史\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031734-3f4ae5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠化学\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031512-ccaaad?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠物理\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031503-32fac0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点艺术\",\n    \"author\": \"谭力勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交媒体简史\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"急救，比医生快一步\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟类的天赋\",\n    \"author\": \"珍妮弗・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯化\",\n    \"author\": \"艾丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之美：奇异植物的生存智慧\",\n    \"author\": \"林十之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031011-6d2792?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类愚蠢辞典\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表象与本质\",\n    \"author\": \"侯世达/桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然万物科普百科（套装共2册）\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简天文学\",\n    \"author\": \"科林・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"齐民要术（全本全注全译）\",\n    \"author\": \"贾思勰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030642-350654?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从何而来\",\n    \"author\": \"傅渥成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物城邦系列（共四册）\",\n    \"author\": \"伯特・霍尔多布勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030435-d80ab8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类酷刑简史\",\n    \"author\": \"马克·P.唐纳利/丹尼尔·迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据的真相\",\n    \"author\": \"约翰・H. 约翰逊/迈克・格鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增强人类\",\n    \"author\": \"海伦・帕帕扬尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030204-bca3d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食的迷思\",\n    \"author\": \"蒂姆・斯佩克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的数字零\",\n    \"author\": \"查尔斯・塞弗\",\n    \"link\": \"链接未找到\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深海：探索寂静的未知\",\n    \"author\": \"詹姆斯・内斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗知识：机器认知如何颠覆商业和社会\",\n    \"author\": \"王维嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029484-71f57f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝笑了99次\",\n    \"author\": \"彼得・凯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029406-b5a217?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"较量：乐观的经济学与悲观的生态学\",\n    \"author\": \"保罗・萨宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮肤的秘密\",\n    \"author\": \"耶尔・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能的本质\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029304-4060a7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未解之谜（套装共2册）\",\n    \"author\": \"克雷格·P·鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029346-23a41e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联结：通向未来的文明史\",\n    \"author\": \"詹姆斯・伯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"起源：万物大历史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029259-608e4e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的哲学\",\n    \"author\": \"彼得・卡夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You Are a Badass at Making Money\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞\",\n    \"author\": \"马修・桑托罗/杰克・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029172-3654fd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼安德特人\",\n    \"author\": \"斯万特・帕博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能的进化\",\n    \"author\": \"赫克托・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站火星\",\n    \"author\": \"克里斯蒂安・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火焰中的秘密\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028938-6425da?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的历程（修订第4版）\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础读懂云计算\",\n    \"author\": \"纳扬・鲁帕拉里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028467-7f62ed?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙：一种未明的动物（增订本）\",\n    \"author\": \"马小星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028452-c59106?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子世界的发现之旅\",\n    \"author\": \"迈克尔・S. 沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑洞之书\",\n    \"author\": \"史蒂文・古布泽/弗兰斯・比勒陀利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美的进化\",\n    \"author\": \"理查德·O.普鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老科技的全球史\",\n    \"author\": \"大卫・艾杰顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027402-7317b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高手：精英的见识和我们的时代\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个观点，不一定对\",\n    \"author\": \"黄章晋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类“吸猫”小史\",\n    \"author\": \"艾比盖尔・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027183-6dbd40?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"码书：编码与解码的战争\",\n    \"author\": \"西蒙・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027210-1192ec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来50年\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027123-c3d4eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果我们错了呢？\",\n    \"author\": \"查克・克洛斯特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027147-aafe1f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空帝国\",\n    \"author\": \"徐刚/王燕平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027096-381168?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近2050\",\n    \"author\": \"集智俱乐部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026955-cae786?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识的边界\",\n    \"author\": \"戴维・温伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026913-097907?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码朋克\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单统计学\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞脑科学\",\n    \"author\": \"盖瑞・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026820-32a86b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明亮的泥土\",\n    \"author\": \"菲利普・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026793-14240d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上动物园\",\n    \"author\": \"夏洛特・斯莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026883-d8edc7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界观（原书第2版）\",\n    \"author\": \"理查德・德威特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026505-be18f3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撼动世界史的思想家格斗\",\n    \"author\": \"茂木诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026415-5855e5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海：另一个未知的宇宙\",\n    \"author\": \"弗兰克・施茨廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026199-42f833?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维如何与互联网共同进化\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的脑洞略大于整个宇宙\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026175-0b29b5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性之谜\",\n    \"author\": \"雨果・梅西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有用的逻辑学（第2版）\",\n    \"author\": \"梅森・皮里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025659-255f15?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简未来史\",\n    \"author\": \"克里斯托弗・巴纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025617-432176?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的智人\",\n    \"author\": \"河森堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的意识\",\n    \"author\": \"约翰・巴奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本有趣又有料的科学书\",\n    \"author\": \"大象公会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025065-df6894?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命密码\",\n    \"author\": \"尹烨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪家庭医学大百科\",\n    \"author\": \"林政毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025086-d9896b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劫持\",\n    \"author\": \"玛丽•K. 斯温格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长寿的基因\",\n    \"author\": \"普雷斯顿・埃斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑与阅读\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024882-9103fb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缤纷的生命\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘易斯·托马斯作品（共5册）\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空的琴弦\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶杯里的风暴\",\n    \"author\": \"海伦・切尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永生的海拉\",\n    \"author\": \"丽贝卡・思科鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿波罗\",\n    \"author\": \"扎克・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024600-7d239d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因、大脑和人类潜能\",\n    \"author\": \"肯・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云彩收集者手册\",\n    \"author\": \"加文・普雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024291-bd3b5c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学·科学·常识\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024279-dcadb0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从一粒尘埃开始\",\n    \"author\": \"布莱恩・考克斯/杰夫・福修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的修炼\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024060-80fd78?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的精进\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质的秘密\",\n    \"author\": \"埃蒂安・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肿瘤防治科普丛书（套装共13册）\",\n    \"author\": \"重庆市肿瘤医院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普鲁斯特是个神经学家\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（40周年增订版）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023907-8aa3e0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Order of Time\",\n    \"author\": \"Carlo Rovelli\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023880-1dbfad?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑常识\",\n    \"author\": \"林徽因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023643-a76ebd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明年更年轻\",\n    \"author\": \"克里斯・克劳利/亨利・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡征服世界\",\n    \"author\": \"安德鲁・劳勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新设计生命\",\n    \"author\": \"约翰・帕林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的技术\",\n    \"author\": \"凯莉・魏纳史密斯/扎克・魏纳史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单的逻辑学\",\n    \"author\": \"麦克伦尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪与玫瑰的使用方法\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023379-ac0f90?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史\",\n    \"author\": \"莉迪亚・康/内特・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑医疗史\",\n    \"author\": \"苏上豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼的牧师\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023202-04f6de?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲眼钟表匠\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级连接者\",\n    \"author\": \"伊桑・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经的逻辑\",\n    \"author\": \"埃利泽・斯滕伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学之美\",\n    \"author\": \"艾克哈特・玛腾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023118-bb94c1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级智能\",\n    \"author\": \"尼克・波斯特洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切与创造有关\",\n    \"author\": \"奥古斯汀・富恩特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未完成的进化\",\n    \"author\": \"凯文・拉兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好奇心：保持对未知世界永不停息的热情\",\n    \"author\": \"伊恩・莱斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022995-3678fc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃在拂晓\",\n    \"author\": \"克里斯托弗・莱恩/卡西尔达・杰萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给狮子剥皮\",\n    \"author\": \"克莱尔・科克-斯塔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022968-b9aee4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统计学关我什么事\",\n    \"author\": \"小岛宽之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学关我什么事\",\n    \"author\": \"文安德・冯・彼特尔斯多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022896-9538ae?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎曼猜想漫谈\",\n    \"author\": \"卢昌海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022899-88af93?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叩响天堂之门\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弯曲的旅行\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022818-41a87e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共7册）\",\n    \"author\": \"罗伯特・劳克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022836-5a2cdc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·宇宙系列（套装共6册）\",\n    \"author\": \"史蒂芬・霍金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022812-304b75?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列（套装共5册）\",\n    \"author\": \"罗杰・彭罗斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022785-3c7f3b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个定理的诞生\",\n    \"author\": \"塞德里克・维拉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022608-e6a289?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲量子力学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的明天\",\n    \"author\": \"席里尔・迪翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择的悖论\",\n    \"author\": \"巴里・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器70年\",\n    \"author\": \"徐曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤裸裸的统计学\",\n    \"author\": \"查尔斯・惠伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本书书名无法描述本书内容\",\n    \"author\": \"埃里克・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的法则\",\n    \"author\": \"肖恩·B·卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的极致：漫谈人工智能\",\n    \"author\": \"集智俱乐部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022236-849651?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万万没想到：用理工科思维理解世界\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间重生\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学的真相\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今日简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柔软的宇宙\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的发现\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021693-d754a0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类存在的意义\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络是怎样连接的\",\n    \"author\": \"户根勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走神的艺术与科学\",\n    \"author\": \"迈克尔・C.科尔巴里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实不似你所见\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塑造世界经济的50项伟大发明\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Princeton Companion to Mathematics\",\n    \"author\": \"Gowers, Timothy\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021243-933c06?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑箱社会\",\n    \"author\": \"弗兰克・帕斯奎尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021171-9be5d6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学简史\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021195-ee63f5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法之美：指导工作与生活的算法\",\n    \"author\": \"布莱恩・克里斯汀/汤姆・格里菲思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021150-6920ac?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看脸\",\n    \"author\": \"华沙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021126-869176?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道生命的答案\",\n    \"author\": \"丹尼尔・查莫维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命3.0\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021120-2c89e2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五次开始\",\n    \"author\": \"罗伯特・L .凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑微的套套\",\n    \"author\": \"安妮・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021051-972816?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规模：复杂世界的简单法则\",\n    \"author\": \"杰弗里・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021036-fe84e6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X的奇幻之旅\",\n    \"author\": \"史蒂夫・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学起源课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的微生物\",\n    \"author\": \"马丁・布莱泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020871-3d589b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安慰剂效应\",\n    \"author\": \"莉萨・兰金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020814-39b49a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的真相\",\n    \"author\": \"大卫・兰德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020793-75b8cb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知心理学（原书第5版）\",\n    \"author\": \"凯瑟琳・加洛蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020787-06bc90?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷尔蒙战争\",\n    \"author\": \"科迪莉亚・法恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020769-c67cdf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的未来\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020727-193b46?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的未来：从双螺旋到合成生命\",\n    \"author\": \"克雷格・文特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020724-9f0385?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒防御和心理复原力三部曲\",\n    \"author\": \"内森・沃尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020532-469146?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技前哨\",\n    \"author\": \"王煜全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020316-b05dfb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞行中的科学\",\n    \"author\": \"布莱恩・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020310-213507?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无器械健身\",\n    \"author\": \"马克・劳伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020154-710555?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国儿科学会育儿百科（第6版）\",\n    \"author\": \"斯蒂文・谢尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百科通识全系列大套装（共49本）\",\n    \"author\": \"安德鲁・巴兰坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020376-81a38d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因魔剪\",\n    \"author\": \"日本NHK“基因组编辑”采访组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020022-f75244?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪最伟大的心理学实验\",\n    \"author\": \"伦・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019893-bcc56f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学现场：另类世界史\",\n    \"author\": \"王雁斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019836-4f4794?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的温度\",\n    \"author\": \"吉诺・格塞雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019803-f6c866?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同步：秩序如何从混沌中涌现\",\n    \"author\": \"斯蒂芬・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019755-1e9eae?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维简史：从丛林到宇宙\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019542-7cb361?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好！植物（全彩）\",\n    \"author\": \"喵喵植物控\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学家们都干了些什么？（2015年全新修订版）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019287-bbfe16?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是数字的\",\n    \"author\": \"Brian W·Kernighan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019173-51d646?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智社会\",\n    \"author\": \"马文・明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018900-706749?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的手术刀\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笛卡尔的错误\",\n    \"author\": \"安东尼奥・达马西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018066-8ad3a0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是科学\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017991-026d4b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗意的原子\",\n    \"author\": \"科特・施塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017949-15be38?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们应当行走\",\n    \"author\": \"戴维・M. 奥辛斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017937-987b61?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人类革命\",\n    \"author\": \"吕克・费希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017670-bee6d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们人类的进化\",\n    \"author\": \"亚历山大・哈考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史，小世界\",\n    \"author\": \"辛西娅・斯托克斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造自然\",\n    \"author\": \"安德烈娅・武尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017490-5b557e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑使用指南\",\n    \"author\": \"赵思家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017454-809589?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的形状：相对论史话\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明之光（全三册）\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017397-aefe13?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一万年的爆发\",\n    \"author\": \"格雷戈里・柯克伦/亨利・哈本丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017313-fa9dd4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土：文明的侵蚀\",\n    \"author\": \"戴维·R. 蒙哥马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016863-fce466?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞鸟记\",\n    \"author\": \"欧仁・朗贝尔/保罗・罗贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016632-58b036?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Life 3.0\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016356-638f33?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲宇宙\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016302-ce02e5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因社会\",\n    \"author\": \"以太・亚奈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016272-086eed?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因组：人类自传\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么我们会上瘾\",\n    \"author\": \"迈克尔・库赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016179-c81d0e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理学与生活：全彩插图第11版\",\n    \"author\": \"阿瑟・格蒂斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯直觉心理学\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016014-26ab45?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子大唠嗑\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016011-0b3bbf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理的迷宫\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰道尔宇宙三部曲\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015930-649116?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大脑自由\",\n    \"author\": \"约翰・梅迪纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015795-94cb6e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒的困境\",\n    \"author\": \"威廉姆・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的大猩猩\",\n    \"author\": \"克里斯托弗・查布利斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症科普（套装共2册）\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接组：造就独一无二的你\",\n    \"author\": \"承现峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术的本质\",\n    \"author\": \"布莱恩・阿瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015207-84ea05?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛊惑世界的力量：可卡因传奇\",\n    \"author\": \"多米尼克・斯特里特费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015042-67c9a9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球上最伟大的表演\",\n    \"author\": \"理查德・毛姆道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行星全书\",\n    \"author\": \"尼尔马拉・纳塔瑞杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014421-80096e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的森林\",\n    \"author\": \"戴维・哈斯凯尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引力波\",\n    \"author\": \"珍娜・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014196-53b378?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何思考会思考的机器\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014175-b0a0d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际穿越\",\n    \"author\": \"基普・索恩/基普・索恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014238-883094?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Astrophysics for People in a Hurry\",\n    \"author\": \"Neil deGrasse Tyson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014013-01ce24?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七堂极简物理课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013917-9f1be2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空全书\",\n    \"author\": \"詹姆斯・特赖菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部王国传奇（套装共5册）\",\n    \"author\": \"贾陈亮/王东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命：进化生物学、遗传学、人类学和环境科学的黎明\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗物质与恐龙\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别逗了，费曼先生\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的精神生活\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汽车是怎样跑起来的\",\n    \"author\": \"御堀直嗣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013170-8e1445?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极算法\",\n    \"author\": \"佩德罗・多明戈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书（套装共6册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的抉择\",\n    \"author\": \"杰尔姆・格罗普曼/帕米拉・哈茨班德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012789-a455a7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与数学\",\n    \"author\": \"爱德华・弗伦克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012663-712e79?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学家们都干了些什么？\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012042-46b91e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI：人工智能的本质与未来\",\n    \"author\": \"玛格丽特・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肠子的小心思\",\n    \"author\": \"朱莉娅・恩德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的乐趣：Matrix67数学笔记\",\n    \"author\": \"顾森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的故事：进化、健康与疾病\",\n    \"author\": \"丹尼尔・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙：从起源到未来\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010935-644bd6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学沉思录\",\n    \"author\": \"Mario Livio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010926-6eb53d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界的本质\",\n    \"author\": \"亚瑟・斯坦利・爱丁顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010893-b337b8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通俗天文学（全彩四色珍藏版）\",\n    \"author\": \"西蒙・纽康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010887-fc3eff?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德动物\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德景观\",\n    \"author\": \"萨姆・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越平行宇宙\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的后人类未来\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简海洋文明史\",\n    \"author\": \"菲利普・德・索萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学女孩\",\n    \"author\": \"结城浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010338-f745a3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学女孩2：费马大定理\",\n    \"author\": \"结城浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010332-f2891c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白板\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲常识\",\n    \"author\": \"吕夏乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机械宇宙\",\n    \"author\": \"爱德华・多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"控制论与科学方法论\",\n    \"author\": \"金观涛/华国凡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009942-8968ed?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界未解之谜大全集（超值白金版）\",\n    \"author\": \"文若愚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009702-76dece?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识大融通：21世纪的科学与人文\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009588-edfc82?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简科普丛书（套装共6册）\",\n    \"author\": \"阿尔伯特・爱因斯坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009147-e52dc1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑的阅读：破解人类阅读之谜\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些古怪又让人忧心的问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008988-3e59d8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救护车到来前，你能做什么？\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经度\",\n    \"author\": \"达娃・索贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简宇宙史\",\n    \"author\": \"克里斯托弗・加尔法德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘的量子生命\",\n    \"author\": \"吉姆・艾尔/约翰乔・麦克法登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布大交换\",\n    \"author\": \"艾尔弗雷德・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生变态狂\",\n    \"author\": \"詹姆斯・法隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008187-852b5b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数理化通俗演义\",\n    \"author\": \"梁衡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008178-f506c2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙简史：起源与归宿\",\n    \"author\": \"斯蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谣言粉碎机系列（套装共3册）\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学史\",\n    \"author\": \"苏珊・怀斯・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007800-428adc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些消失的文明\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极客物理学：地球上最有趣的问题和最出人意料的答案\",\n    \"author\": \"瑞特・阿莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双脑记：认知神经科学之父加扎尼加自传\",\n    \"author\": \"迈克尔・加扎尼加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息简史\",\n    \"author\": \"詹姆斯·格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学究竟是什么（第3版）\",\n    \"author\": \"A.F.查尔默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哇，历史原来可以这样学（套装共2册）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界奇遇记\",\n    \"author\": \"伽莫夫/斯坦纳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（30周年纪念版）\",\n    \"author\": \"理查德·道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧几里得之窗\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006591-0ff2c9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"森林的奇妙旅行\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006462-24745a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大自然的社交网络\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006459-66ad57?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群星都是你们的世界\",\n    \"author\": \"乔恩・威利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006396-8de5aa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·真相\",\n    \"author\": \"菠萝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简音乐史\",\n    \"author\": \"冈田晓生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大灭绝时代：一部反常的自然史\",\n    \"author\": \"伊丽莎白·科尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的宇宙\",\n    \"author\": \"加来道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005760-1c0736?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一平米健身：硬派健身\",\n    \"author\": \"斌卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005727-03824e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给忙碌者的天体物理学\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众病之王：癌症传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005568-d9ac87?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学那些事儿\",\n    \"author\": \"William Dunham\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人造恐慌\",\n    \"author\": \"袁越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005136-32c837?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福极简经济学\",\n    \"author\": \"蒂莫西・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画以人传\",\n    \"author\": \"陈文璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100天后会死的鳄鱼君\",\n    \"author\": \"菊池祐纪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510312-e1ca94?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画家的一天\",\n    \"author\": \"段张取艺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512166-2a760f?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺绘画鲁迅小说\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512835-de753e?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名画中的符号\",\n    \"author\": \"平松洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001521-888cfc?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑老绘画陈列馆（伟大的博物馆）\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国绘画史\",\n    \"author\": \"陈师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方画家及其作品套装（全4册）\",\n    \"author\": \"王月亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造境记\",\n    \"author\": \"曾仁臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美不言\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽象城市\",\n    \"author\": \"克里斯托夫・尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦勃朗1642\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画见\",\n    \"author\": \"止庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初见卢浮宫\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：德加\",\n    \"author\": \"唐一帆/牛雪彤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026688-6d5b37?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：莫奈\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一幅画开启的世界\",\n    \"author\": \"高畑勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024951-5f5325?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误诊的艺术史\",\n    \"author\": \"董悠悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名画背后的故事（全五册）\",\n    \"author\": \"中野京子/顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019560-5d3b15?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊绘画·壹\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014850-625ef1?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊绘画·贰\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014826-5cb55d?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊神话\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人诞生\",\n    \"author\": \"稻见昌彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅3\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G+：5G如何改变社会\",\n    \"author\": \"李正茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037314-20cf94?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市大崩溃前抛出的人（典藏版）\",\n    \"author\": \"伯纳德・巴鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术简史\",\n    \"author\": \"德伯拉·L·斯帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032319-7433f4?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术分析（原书第5版）\",\n    \"author\": \"马丁J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028260-40febb?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的技术\",\n    \"author\": \"凯莉・魏纳史密斯/扎克・魏纳史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The DevOps Handbook\",\n    \"author\": \"Gene Kim/Patrick Debois\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022182-e48593?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Who Can You Trust？\",\n    \"author\": \"Rachel Botsman\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021600-6613cf?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尽在双11：阿里巴巴技术演进与超越\",\n    \"author\": \"阿里巴巴双11技术团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股怎能不懂波段\",\n    \"author\": \"宋建文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬妮·希尔\",\n    \"author\": \"约翰・克利兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024696-f27937?p=8866\",\n    \"category\": \"情色\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马爱经（企鹅经典）\",\n    \"author\": \"奥维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866\",\n    \"category\": \"情色\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好色的哈姆雷特\",\n    \"author\": \"小白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866\",\n    \"category\": \"情色\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银、剑、石：拉丁美洲的三重烙印\",\n    \"author\": \"玛丽・阿拉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003672-fa8a61?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佩恩先生\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985156-46b0f6?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宜诺斯艾利斯传\",\n    \"author\": \"詹姆斯・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花与恶心\",\n    \"author\": \"卡洛斯・德鲁蒙德・德・安德拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十个女人\",\n    \"author\": \"马塞拉・塞拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037614-efe484?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掉队的拉美\",\n    \"author\": \"塞巴斯蒂安・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有人给他写信的上校\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034659-dfacc3?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安第斯山脉的生与死\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032457-1c064e?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印加帝国的末日\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风景画家的片段人生\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032295-900cb5?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊\",\n    \"author\": \"奥古斯托・蒙特罗索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028038-89760c?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斗牛士之名\",\n    \"author\": \"路易斯・塞普尔维达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027405-82e241?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴\",\n    \"author\": \"塞尔希奥・拉米雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024861-a5cc92?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"族长的秋天\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022356-073aeb?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克罗诺皮奥与法玛的故事\",\n    \"author\": \"胡利奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017775-747156?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866\",\n    \"category\": \"圣经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝帝国：英国海军的兴衰\",\n    \"author\": \"本・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙无敌舰队\",\n    \"author\": \"加勒・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六舰\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·杰斐逊与海盗\",\n    \"author\": \"布莱恩・吉米德/唐・耶格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海魂国殇\",\n    \"author\": \"肖璞韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020121-e8411c?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经（第2版）\",\n    \"author\": \"赫尔伯特・史迪凡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493785-dc64ee?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骨骼跑步法\",\n    \"author\": \"铃木清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学跑步\",\n    \"author\": \"罗炜樑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姿势跑法\",\n    \"author\": \"尼古拉斯・罗曼诺夫/约翰・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无伤跑法\",\n    \"author\": \"戴剑松/郑家轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太极跑：不费力、无伤害的革命性跑步法\",\n    \"author\": \"丹尼・德雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你可以跑得更快\",\n    \"author\": \"徐国峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹尼尔斯经典跑步训练法\",\n    \"author\": \"杰克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我谈跑步时，我谈些什么\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013386-6178c4?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉松终极训练指南（原书第4版）\",\n    \"author\": \"霍尔・希格登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经：我跑故我在\",\n    \"author\": \"乔治・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布、大航海时代与地理大发现\",\n    \"author\": \"约翰・S.C.阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866\",\n    \"category\": \"大航海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无敌舰队\",\n    \"author\": \"加勒特・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866\",\n    \"category\": \"大航海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驭鲛记（全二册）\",\n    \"author\": \"九鹭非香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045429-d26386?p=8866\",\n    \"category\": \"仙侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三生三世十里桃花\",\n    \"author\": \"唐七公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007647-923bd8?p=8866\",\n    \"category\": \"仙侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：打造峰值体验\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866\",\n    \"category\": \"消费者\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨艺的常识\",\n    \"author\": \"迈克尔・鲁尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866\",\n    \"category\": \"厨房\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖07：大丈夫生于厨房\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866\",\n    \"category\": \"厨房\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·杰斐逊与海盗\",\n    \"author\": \"布莱恩・吉米德/唐・耶格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866\",\n    \"category\": \"海权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息技术简史\",\n    \"author\": \"吕廷杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043158-2c151c?p=8866\",\n    \"category\": \"通信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G+：5G如何改变社会\",\n    \"author\": \"李正茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037314-20cf94?p=8866\",\n    \"category\": \"通信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅰ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866\",\n    \"category\": \"南极\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"南极\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬：极地求生700天\",\n    \"author\": \"阿尔弗雷德・兰辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866\",\n    \"category\": \"南极\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩们的地下战争\",\n    \"author\": \"蕾切尔・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491190-40f929?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不平等的尸体\",\n    \"author\": \"西尾元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491730-fd4592?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱里的希望\",\n    \"author\": \"丹・波托洛蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492060-2c8fad?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她来自马里乌波尔\",\n    \"author\": \"娜塔莎・沃丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里约折叠\",\n    \"author\": \"米沙・格兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493452-eb3a63?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运气的诱饵\",\n    \"author\": \"娜塔莎・道・舒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493695-e4930e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在中国大地上\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美好时代的背后\",\n    \"author\": \"凯瑟琳・布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495399-0e9e0c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压裂的底层\",\n    \"author\": \"伊丽莎・格里斯沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497073-d5a61b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坠落与重生：911的故事\",\n    \"author\": \"米切尔・祖科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497535-e9ce53?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在人间：肿瘤科女医生亲历记录\",\n    \"author\": \"沈琳/戴志悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498033-dfa046?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐谷路\",\n    \"author\": \"罗伯特・科尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498873-def7c6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张医生与王医生\",\n    \"author\": \"伊险峰/杨樱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499125-925a06?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老后两代破产\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499251-4a9792?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熔炉\",\n    \"author\": \"孔枝泳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500031-1ac20c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归家庭\",\n    \"author\": \"沙尼・奥加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500403-34b60f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失业白领的职场漂流\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500553-5edab3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁庄十年\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500706-b2fafd?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私立小学闯关记\",\n    \"author\": \"槙原久美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500793-2c71ca?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夹缝生存：不堪重负的中产家庭\",\n    \"author\": \"阿莉莎・夸特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501354-ff97b8?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高中生穷忙族\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501642-8081e6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重走：在公路、河流和驿道上寻找西南联大\",\n    \"author\": \"杨潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507096-34bbb4?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京贫困女子\",\n    \"author\": \"中村淳彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507093-5284bf?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"殿军：山一证券最后的12人\",\n    \"author\": \"清武英利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507573-379911?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚无时代\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桶川跟踪狂杀人事件\",\n    \"author\": \"清水洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509955-7d12b3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云没有回答\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510006-ca0590?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女佣的故事\",\n    \"author\": \"斯蒂芬妮・兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512379-69c390?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士的故事\",\n    \"author\": \"克里斯蒂・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性贫困\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513486-69ca43?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午之魔\",\n    \"author\": \"安德鲁・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俺爹俺娘\",\n    \"author\": \"焦波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513762-f54ff0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱鹮的遗言\",\n    \"author\": \"小林照幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004575-299851?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是茅台\",\n    \"author\": \"张小军/马玥/熊玥伽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004500-5515a4?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形而上学俱乐部\",\n    \"author\": \"路易斯・梅南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003579-09071b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远的现在时\",\n    \"author\": \"苏珊・科金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003021-92ad62?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看护杀人\",\n    \"author\": \"每日新闻大阪社会部采访组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003012-070566?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深暗\",\n    \"author\": \"赫克托・托巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002850-10fa6c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“排放门”：大众汽车丑闻\",\n    \"author\": \"杰克・尤因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002769-31400d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非虚构的艺术\",\n    \"author\": \"特雷西・基德尔/理查德・托德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002583-d3c7fb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国病\",\n    \"author\": \"伊丽莎白・罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的二本学生\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妻子们的思秋期\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001602-8bf926?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好老师，坏老师\",\n    \"author\": \"达娜・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知晓我姓名\",\n    \"author\": \"香奈儿・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋园\",\n    \"author\": \"杨本芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998932-5bad21?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肮脏的三十年代\",\n    \"author\": \"蒂莫西・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国监狱\",\n    \"author\": \"肖恩・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血殇\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不让生育的社会\",\n    \"author\": \"小林美希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廷巴克图\",\n    \"author\": \"约书亚・哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，我是接体员\",\n    \"author\": \"大师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟往来书信集\",\n    \"author\": \"梁培宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·伯格作品13册套装\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985822-e14dbb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死96小时\",\n    \"author\": \"冯韵娴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985246-d27bd2?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔战时文集\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主妇、舞者与牧师\",\n    \"author\": \"马蜂窝出品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053694-6f133f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历滇缅公路（套装共4本）\",\n    \"author\": \"内维尔・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午2：此地不宜久留\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052698-caedb3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午3：到海底去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052620-5a8fe8?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午4：我的黎明骊歌\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052587-a22353?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午1：我穿墙过去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无缘社会\",\n    \"author\": \"日本NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051867-337e7a?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米格尔在智利的地下行动\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051711-d0d758?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世纪的哭泣\",\n    \"author\": \"兰迪・希尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051345-8d25b6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创水记\",\n    \"author\": \"赛斯・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义的代价\",\n    \"author\": \"劳伦斯・李默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少林很忙\",\n    \"author\": \"马修・波利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049068-7ff5e6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆斯河\",\n    \"author\": \"丹・费金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非典十年祭\",\n    \"author\": \"何建明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048432-7a243d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉鲨\",\n    \"author\": \"莫腾・安德雷亚斯・斯特罗克奈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔纪实作品全集（套装共3册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨浪下的小学\",\n    \"author\": \"理查德・劳埃德・帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046986-bb9508?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅰ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅰ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最残酷的夏天：美国人眼中的越南战争\",\n    \"author\": \"菲利普・卡普托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"求医记\",\n    \"author\": \"会飞的王动\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045063-bfae67?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凉灯\",\n    \"author\": \"黄于纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044739-fc0da7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"察沃的食人魔\",\n    \"author\": \"J.H.帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产科男医生手记\",\n    \"author\": \"田吉顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤老板自述三十年\",\n    \"author\": \"老五/劲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043788-51d196?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超凡：我们的身心极致及天赋的科学\",\n    \"author\": \"罗恩・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝶变：澳门博彩业田野叙事\",\n    \"author\": \"刘昭瑞/霍志钊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最深的水是泪水\",\n    \"author\": \"鲍尔吉・原野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040617-eb3c15?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰雪王国：美国军舰珍妮特号的极地远征\",\n    \"author\": \"汉普顿・塞兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040221-ed59c0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"絕望者之歌\",\n    \"author\": \"杰德・凡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起连环绑架案的新闻\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037893-b383ce?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作漂流\",\n    \"author\": \"稻泉连\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037632-6132e7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人经典作品合集（套装共9册）\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037461-7d9d06?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方视野里的中国合集（共10册）\",\n    \"author\": \"庄士敦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走的人多了，就有了路\",\n    \"author\": \"尼可拉斯・克里斯多夫/雪莉・邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九月的十三天\",\n    \"author\": \"劳伦斯・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日的世界\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎烧了吗？\",\n    \"author\": \"拉莱・科林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好告别\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人自编集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷血\",\n    \"author\": \"杜鲁门・卡波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034077-79c03d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列的诞生（全四册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的访谈系列（套装共6册）\",\n    \"author\": \"欧内斯特・米勒尔・海明威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC经典文化纪录片配套著作精选合集\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033249-7df812?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总统班底\",\n    \"author\": \"卡尔・伯恩斯坦/鲍勃・伍德沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民蠢萌的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的熊猫\",\n    \"author\": \"乔治・夏勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032364-6ae019?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岗村40年\",\n    \"author\": \"贾鸿彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对笑喷之弃业医生日志\",\n    \"author\": \"亚当・凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三杯茶\",\n    \"author\": \"葛瑞格・摩顿森/大卫・奥利佛・瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032001-2bc835?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下：东京地铁沙林毒气事件实录（套装共2册）\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031869-499ce7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬：极地求生700天\",\n    \"author\": \"阿尔弗雷德・兰辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑帮·贩毒集团神秘内幕（全五册）\",\n    \"author\": \"詹幼鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031308-31f32e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房奴\",\n    \"author\": \"戴维・戴恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻路中国\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝的故事\",\n    \"author\": \"深蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国与中国人影像（增订版）\",\n    \"author\": \"约翰・汤姆逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030279-7e35db?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人岛生存十六人\",\n    \"author\": \"须川邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑箱：日本之耻\",\n    \"author\": \"伊藤诗织\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029460-1e1c60?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏血：一个硅谷巨头的秘密与谎言\",\n    \"author\": \"约翰・卡雷鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的美国\",\n    \"author\": \"珍妮・拉斯卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷忙\",\n    \"author\": \"戴维・希普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那时的先生\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028962-13aa23?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子1：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028203-c24763?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子2：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028182-15b27e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子3：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028176-a2cb1b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读16：新北京人\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027591-a94676?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑的清真寺\",\n    \"author\": \"伊恩・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛德勒名单（译文经典）\",\n    \"author\": \"托马斯・基尼利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027282-8e342c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兄弟连（译林纪念版）\",\n    \"author\": \"斯蒂芬•E．安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寡头\",\n    \"author\": \"戴维・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一个家在何方？\",\n    \"author\": \"馬修・戴斯蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025545-020e6e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"往事与随想（共3册）\",\n    \"author\": \"赫尔岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永生的海拉\",\n    \"author\": \"丽贝卡・思科鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民自黑的英国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马航MH370失联十七天\",\n    \"author\": \"陈功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024450-32c0b3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木匠手记\",\n    \"author\": \"尼娜・麦克劳林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我从战场归来\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我钻进了金字塔\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023844-04f9b7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返巴格达\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023856-5b4c01?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打工女孩\",\n    \"author\": \"张彤禾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国情报界\",\n    \"author\": \"杰弗瑞・理查尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不知道该说什么，关于死亡还是爱情\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022905-60dc96?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的浏阳兄弟\",\n    \"author\": \"索文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东北游记\",\n    \"author\": \"迈克尔・麦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022509-9d7c84?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再会，老北京\",\n    \"author\": \"迈克尔・麦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022461-d6df24?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐山大地震（纪念版）\",\n    \"author\": \"钱钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022425-0c7827?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青苔不会消失\",\n    \"author\": \"袁凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扫地出门：美国城市的贫穷与暴利\",\n    \"author\": \"马修・德斯蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼翅与花椒\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人之妻\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗网\",\n    \"author\": \"杰米・巴特利特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020808-518d1f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿图医生（第二季）\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020292-b5bcc6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蕾蒂西娅，或人类的终结\",\n    \"author\": \"伊凡・雅布隆卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汶川地震168小时\",\n    \"author\": \"张良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019782-2760cf?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫物语\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019347-0c448f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019266-96362f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长乐路\",\n    \"author\": \"史明智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只名叫鲍勃的流浪猫\",\n    \"author\": \"詹姆斯・鲍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018270-7946fb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大路：高速中国里的工地纪事\",\n    \"author\": \"张赞波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017673-ac0306?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的亲人\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014427-4895bb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑旗：ISIS的崛起\",\n    \"author\": \"乔比・沃里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014355-a74506?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Street of Eternal Happiness\",\n    \"author\": \"Rob Schmitz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013707-35fbcc?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与火同行：大卫·林奇谈电影\",\n    \"author\": \"大卫・林奇/克里斯・罗德雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都市速写簿\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国灯笼\",\n    \"author\": \"格蕾丝・汤普森・西登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的悲鸣\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部招妻\",\n    \"author\": \"马宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战大武汉\",\n    \"author\": \"张军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010920-a3947f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还是想你，妈妈\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010209-11eeec?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1942河南大饥荒\",\n    \"author\": \"宋致新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009999-ed0873?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻关注：二战经典战役纪实（套装共10册）\",\n    \"author\": \"二战经典战役编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是女兵，也是女人\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江城\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009462-96eec5?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆（图文版）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的烽塔\",\n    \"author\": \"卡伊斯・阿克巴尔・奥马尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008757-f55e62?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与荒原同行\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出梁庄记\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追问\",\n    \"author\": \"丁捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一百个人的十年\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在底层的生活\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末日巨塔\",\n    \"author\": \"劳伦斯・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007947-f24581?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进入空气稀薄地带\",\n    \"author\": \"乔恩・克拉考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希拉里传（纪念版）\",\n    \"author\": \"卡尔・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007839-6bdb2b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅰ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅱ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“四人帮”兴亡（增订版）\",\n    \"author\": \"叶永烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唉，我的沧桑50年（1959至今）\",\n    \"author\": \"八爪夜叉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难一日：海豹六队击毙本・拉登行动亲历\",\n    \"author\": \"马克・欧文/凯文・莫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CIA美国中央情报局全传\",\n    \"author\": \"亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统一大业（合订本）\",\n    \"author\": \"郭晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福了吗？\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇石：来自东西方的报道\",\n    \"author\": \"彼得·海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个红卫兵的自白\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006858-8e4d5d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见\",\n    \"author\": \"柴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是尘埃也是光\",\n    \"author\": \"梁子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夹边沟记事\",\n    \"author\": \"杨显惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006411-34b535?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甘南纪事\",\n    \"author\": \"杨显惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006405-e4b8cb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨迹：留在生命和记忆中\",\n    \"author\": \"曾子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大灭绝时代：一部反常的自然史\",\n    \"author\": \"伊丽莎白·科尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生的中国人\",\n    \"author\": \"杨猛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005721-fc7d62?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递1\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866\",\n    \"category\": \"温情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命：只想陪在你身边\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866\",\n    \"category\": \"温情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死屋\",\n    \"author\": \"丹尼尔・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033177-b3ac59?p=8866\",\n    \"category\": \"俄国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往权力之路：叶卡捷琳娜大帝\",\n    \"author\": \"罗伯特·K·迈锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866\",\n    \"category\": \"俄国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒原来是这么回事儿\",\n    \"author\": \"吉雷克・奥贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒经济学\",\n    \"author\": \"约翰・思文/德文・布里斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤博士的啤酒札记\",\n    \"author\": \"太空精酿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何畅享啤酒\",\n    \"author\": \"约翰・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032259-138919?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精酿啤酒革命\",\n    \"author\": \"史蒂夫・欣迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏杨白话版资治通鉴（全72册）\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866\",\n    \"category\": \"资治通鉴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通鉴纪事本末（注译本）全42卷\",\n    \"author\": \"袁枢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052959-de2d4c?p=8866\",\n    \"category\": \"资治通鉴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高手稿（典藏修订版）\",\n    \"author\": \"文森特・凡高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513045-85b0e4?p=8866\",\n    \"category\": \"梵高\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：梵高\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866\",\n    \"category\": \"梵高\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的提奥：梵高传\",\n    \"author\": \"文森特・威廉・梵高/约翰娜・梵高・邦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017379-8fa602?p=8866\",\n    \"category\": \"梵高\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高传（全三部）\",\n    \"author\": \"史蒂文・奈菲/格雷戈里・怀特・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866\",\n    \"category\": \"梵高\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进博物馆（套装12册）\",\n    \"author\": \"陕西省文物局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498555-c1a8e6?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让木乃伊跳舞（新版）\",\n    \"author\": \"托马斯・霍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆里的极简中国史\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨圣母百花大教堂博物馆\",\n    \"author\": \"蒂莫西・弗登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典考古博物馆\",\n    \"author\": \"卢卡・莫扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022161-31f368?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯国家考古博物馆\",\n    \"author\": \"迪雷塔・哥伦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰波尔迪·佩佐利博物馆\",\n    \"author\": \"玛利亚·特蕾莎·巴尔博尼·布雷萨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开罗埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯卡波迪蒙特博物馆\",\n    \"author\": \"马蒂亚・盖塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰布雷拉美术馆\",\n    \"author\": \"斯蒂芬尼・祖菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019170-dd2f29?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰斯福尔扎古堡博物馆\",\n    \"author\": \"马蒂诺・阿斯托尔菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019149-58301b?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯学院美术馆\",\n    \"author\": \"露琪亚・伊姆佩鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019119-338773?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕尔马国家美术馆\",\n    \"author\": \"乔瓦娜・达米亚尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019065-def2cc?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科普希金博物馆\",\n    \"author\": \"西莫内塔・佩卢西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019038-d6ede3?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣彼得堡冬宫博物馆\",\n    \"author\": \"亚历山大・弗雷格伦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019044-36223b?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博洛尼亚国家艺术画廊\",\n    \"author\": \"贝亚特莉切・布斯卡罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华盛顿国家艺术馆\",\n    \"author\": \"罗萨娜・乔尔吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦国家美术馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018696-513898?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马德里普拉多博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018684-d7b281?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌尔比诺马尔凯国家美术馆\",\n    \"author\": \"罗伦查・莫基・奥诺里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018648-5c52b0?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维也纳艺术史博物馆\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018669-686c5d?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎卢浮宫\",\n    \"author\": \"亚历山德拉・弗雷格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012414-10182f?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹国家博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨皮蒂宫\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012279-fd065b?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨乌菲齐画廊\",\n    \"author\": \"艾莱娜・吉纳耐斯奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012285-af45df?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦大英博物馆\",\n    \"author\": \"卢卡・莫扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012210-e9d448?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎奥赛美术馆\",\n    \"author\": \"西蒙娜・巴尔多蕾娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012240-1bee54?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英博物馆世界简史（套装共3册）\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个故宫的离合\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人当国：慈禧太后与晚清五十年\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866\",\n    \"category\": \"慈禧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫女谈往录\",\n    \"author\": \"金易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866\",\n    \"category\": \"慈禧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧全传\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866\",\n    \"category\": \"慈禧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经（锁线图文版）\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510882-3771c1?p=8866\",\n    \"category\": \"诗经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866\",\n    \"category\": \"诗经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经点醒\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866\",\n    \"category\": \"诗经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经楚辞鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023427-f856e9?p=8866\",\n    \"category\": \"诗经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因文集（套装共4册）\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866\",\n    \"category\": \"神经病\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫经营实录（共5册）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995602-63c5f5?p=8866\",\n    \"category\": \"企管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返帕米尔\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501357-a9c1bd?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深时之旅\",\n    \"author\": \"罗伯特・麦克法伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事\",\n    \"author\": \"罗伯特・哈森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505959-214d70?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第一辑（套装共4册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第二辑（套装共6册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里是中国\",\n    \"author\": \"星球研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001278-e6701c?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理的时空\",\n    \"author\": \"尼古拉斯・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简地理学\",\n    \"author\": \"威尔・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050448-e34a7b?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘境\",\n    \"author\": \"乔舒亚・福尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理与世界霸权\",\n    \"author\": \"詹姆斯・费尔格里夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁在世界的中央\",\n    \"author\": \"梁二平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020298-7a1189?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：历史地理（上册）\",\n    \"author\": \"单周尧等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019728-de9599?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：历史地理（下册）\",\n    \"author\": \"张伟保等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019734-e6e9b5?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理学与生活：全彩插图第11版\",\n    \"author\": \"阿瑟・格蒂斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部王国传奇（套装共5册）\",\n    \"author\": \"贾陈亮/王东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：厦门\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘大战略\",\n    \"author\": \"丁力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯庸笑翻中国简史\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马登谈成功（套装共5册）\",\n    \"author\": \"奥里森・马登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508968-7f8963?p=8866\",\n    \"category\": \"成功学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴越春秋（全本全注全译）\",\n    \"author\": \"崔冶译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆天子传（全本全注全译）\",\n    \"author\": \"高永旺译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子大历史\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦文体与话语方式研究\",\n    \"author\": \"过常宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕氏春秋译注（修订本）\",\n    \"author\": \"张双棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦古国志\",\n    \"author\": \"林屋公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007686-218743?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦凶猛 （全五册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007683-6430e6?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"头颅中国：另一个角度看先秦\",\n    \"author\": \"黄摩崖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007314-f6145e?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类酷刑简史\",\n    \"author\": \"马克·P.唐纳利/丹尼尔·迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866\",\n    \"category\": \"酷刑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青口述史\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009201-91fa5a?p=8866\",\n    \"category\": \"知青\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的一代：中国的上山下乡运动1968-1980\",\n    \"author\": \"潘鸣啸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866\",\n    \"category\": \"知青\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·初澜（1953～1968）\",\n    \"author\": \"定宜庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866\",\n    \"category\": \"知青\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·大潮（1966～1980）\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866\",\n    \"category\": \"知青\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类大瘟疫\",\n    \"author\": \"马克・霍尼斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866\",\n    \"category\": \"疾病\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病的文化史\",\n    \"author\": \"洛伊斯·N.玛格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866\",\n    \"category\": \"疾病\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人10\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492399-b7dec5?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第二辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495999-c078ba?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第一辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494919-9c0725?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉蕾（第1部：卷1~卷6）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497349-aa8a4e?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶犬之牙\",\n    \"author\": \"鱼骨互娱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001476-984182?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"hi我的名字叫镰\",\n    \"author\": \"天翼爱动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999409-80bef5?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫周期\",\n    \"author\": \"查尔斯・肯尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508044-93a44f?p=8866\",\n    \"category\": \"瘟疫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫与人\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020880-aa080f?p=8866\",\n    \"category\": \"瘟疫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866\",\n    \"category\": \"庄子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子现代版（最新修订版）\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053886-547f3d?p=8866\",\n    \"category\": \"庄子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网新商业时代（套装共三册）\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866\",\n    \"category\": \"网络时代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将夜（精校版）\",\n    \"author\": \"猫腻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049074-8f7e9a?p=8866\",\n    \"category\": \"网络小说\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苍壁书（共3册）\",\n    \"author\": \"青林之初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045138-443d3b?p=8866\",\n    \"category\": \"网络小说\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035478-d1cadf?p=8866\",\n    \"category\": \"德鲁克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866\",\n    \"category\": \"德鲁克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德鲁克的最后忠告\",\n    \"author\": \"伊丽莎白・哈斯・埃德莎姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866\",\n    \"category\": \"德鲁克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户的本质\",\n    \"author\": \"史蒂文・范・贝莱格姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866\",\n    \"category\": \"用户\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆用户增长\",\n    \"author\": \"黄天文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016125-7b3129?p=8866\",\n    \"category\": \"用户\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生十二法则\",\n    \"author\": \"乔丹・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866\",\n    \"category\": \"修行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正念的奇迹\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029160-04ba40?p=8866\",\n    \"category\": \"修行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冥想\",\n    \"author\": \"斯瓦米・拉玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019578-9ee5ca?p=8866\",\n    \"category\": \"修行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"淡定的智慧\",\n    \"author\": \"弘一法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017016-132f58?p=8866\",\n    \"category\": \"修行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在病毒中生存\",\n    \"author\": \"苗德岁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命敌人\",\n    \"author\": \"迈克尔·T.奥斯特霍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血殇\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花冠病毒\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049548-85c3c0?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新型冠状病毒感染防护\",\n    \"author\": \"何剑峰/宋铁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒星球\",\n    \"author\": \"卡尔・齐默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疫苗竞赛\",\n    \"author\": \"梅雷迪丝・瓦德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医疗与人性系列（套装共4册）\",\n    \"author\": \"亨利・马什等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004365-27ce81?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国病\",\n    \"author\": \"伊丽莎白・罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的处方\",\n    \"author\": \"伊齐基尔・伊曼纽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病者生存\",\n    \"author\": \"沙龙・莫勒姆/乔纳森・普林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新药的故事\",\n    \"author\": \"梁贵柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的修炼\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024060-80fd78?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的精进\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑医疗史\",\n    \"author\": \"苏上豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密\",\n    \"author\": \"麦家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033438-7ed22e?p=8866\",\n    \"category\": \"解密\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿桑奇自传：不能不说的秘密\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009390-bd0480?p=8866\",\n    \"category\": \"解密\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维基解密：谁授权美国统管世界\",\n    \"author\": \"苏言/贺濒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866\",\n    \"category\": \"解密\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破圈：如何突破认知局限并实现终身成长\",\n    \"author\": \"顾及\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要做人生的甲方\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相与错觉\",\n    \"author\": \"塔莎・欧里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（原书第11版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习天性\",\n    \"author\": \"小沼势矢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051951-468fab?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界学习\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弥散的心智\",\n    \"author\": \"里卡多・曼佐蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度预测\",\n    \"author\": \"理查德·A·克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033822-1e355a?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知尺度\",\n    \"author\": \"魏坤琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知突围：做复杂时代的明白人\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知迭代\",\n    \"author\": \"卡罗琳・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当自我来敲门\",\n    \"author\": \"安东尼奥・达马西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017889-ef3bdf?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就好爸爸：男人一生最重要的工作\",\n    \"author\": \"格雷戈里・史雷顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017655-919009?p=8866\",\n    \"category\": \"爸爸\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明3：王阳明家训\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866\",\n    \"category\": \"家训\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1924：改变希特勒命运的一年\",\n    \"author\": \"彼得・罗斯・兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的兴亡\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：跃升年代\",\n    \"author\": \"福尔克尔・乌尔里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：从乞丐到元首\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从俾斯麦到希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你总说没事，但我知道你偷偷哭过很多次\",\n    \"author\": \"一禅小和尚诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赶路人\",\n    \"author\": \"李小晓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048240-d3013a?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间值得\",\n    \"author\": \"中村恒子/奥田弘美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情书\",\n    \"author\": \"岩井俊二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033849-0749ba?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘿，小家伙\",\n    \"author\": \"温酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四季，三餐，都随你\",\n    \"author\": \"简猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人3：无境之爱\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花园里的机器人\",\n    \"author\": \"黛博拉・因斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028026-01f454?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢来，反正也来不及\",\n    \"author\": \"囧叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017091-63be9e?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪安娜穿过漫漫长夜\",\n    \"author\": \"加瑞尔・萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅课\",\n    \"author\": \"汤姆・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱的猴子\",\n    \"author\": \"安东尼奥・加西亚・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866\",\n    \"category\": \"创投\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华生活经典系列（第一辑共11册）\",\n    \"author\": \"林洪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046236-5c0c2e?p=8866\",\n    \"category\": \"中华\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶之城\",\n    \"author\": \"大卫・贝瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037332-1f1148?p=8866\",\n    \"category\": \"阴谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家阴谋：复仇天使四部曲\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006003-518eb4?p=8866\",\n    \"category\": \"阴谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹集中营史（全2册）\",\n    \"author\": \"尼古劳斯・瓦克斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491625-c415d8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑\",\n    \"author\": \"罗伯特・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493383-9583c5?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别人的动物园\",\n    \"author\": \"扬・莫恩浩特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497574-d5742d?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不中用的狗（短经典精选）\",\n    \"author\": \"海因里希・伯尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499308-749147?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个物品中的德国历史\",\n    \"author\": \"赫尔曼・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500205-230f28?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大战：1914～1918年的世界（全2册）\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500367-921478?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的崛起\",\n    \"author\": \"约翰・马里奥特/格兰特・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508947-f67a76?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的五个德国\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人\",\n    \"author\": \"埃米尔・路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511845-4ad275?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁幕欧洲之新生\",\n    \"author\": \"卡尔・施勒格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的细节\",\n    \"author\": \"叶克飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000312-ad2cbf?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文化漫游\",\n    \"author\": \"鲁成文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖喱香肠的诞生\",\n    \"author\": \"乌韦・提姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000282-bf0d55?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审判希特勒\",\n    \"author\": \"大卫・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998536-d8c07b?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷之前的艾希曼\",\n    \"author\": \"贝蒂娜・施汤内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997453-459c45?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒与20世纪德国\",\n    \"author\": \"汉斯・莫姆森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997363-fc796f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主德国的秘密读者\",\n    \"author\": \"齐格弗里德・洛卡蒂斯/英格里德・宗塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996481-32da34?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年战争史：1618-1648\",\n    \"author\": \"塞缪尔・罗森・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国：一个国家的记忆\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗读者\",\n    \"author\": \"本哈德・施林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991900-b47bed?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（增订版）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当权的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的到来\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掘墓人\",\n    \"author\": \"吕迪格・巴特/豪克・弗里德里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985024-aa55e8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：世界大战的时代（全三册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日耳曼尼亚\",\n    \"author\": \"西蒙・温德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984622-8c00f4?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史\",\n    \"author\": \"克劳斯·P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052539-7f6be3?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑塞文集（全10卷）\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051813-4fbe8f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战（贝克知识丛书）\",\n    \"author\": \"弗尔克・贝克汉恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十世纪德国史（贝克知识丛书）\",\n    \"author\": \"安德烈亚斯・维尔申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051465-79abc2?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独异性社会\",\n    \"author\": \"安德雷亚斯・莱克维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050682-32415f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志公敌\",\n    \"author\": \"杰弗里・赫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂之死\",\n    \"author\": \"汉妮・明策尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彗星年代\",\n    \"author\": \"丹尼尔・舍恩普夫卢格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评家之死\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045375-92d933?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学史讲演录（4卷）\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与记忆中的第三帝国\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致后代\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林，亚历山大广场（译文经典）\",\n    \"author\": \"阿尔弗雷德・德布林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043308-cc3071?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时代的精神状况（译文经典）\",\n    \"author\": \"卡尔・雅斯贝斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042081-4c4aec?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵攻击（经典纪念版）\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史（全六卷）\",\n    \"author\": \"邢来顺/吴友达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041019-a506b4?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们与祖先交谈的夜晚\",\n    \"author\": \"萨沙・斯坦尼西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040701-145d11?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的文化\",\n    \"author\": \"克里斯蒂安・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香水（译文经典）\",\n    \"author\": \"帕特里克・聚斯金德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038457-f07ef8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恋爱中的男人\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037671-0d7dcf?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志文化（1945～2000年）\",\n    \"author\": \"赫尔曼・格拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034806-c7aa48?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第4卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第1卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊对德意志的暴政\",\n    \"author\": \"伊莉莎・玛丽安・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第2卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第3卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁？如果有我，有几个我？\",\n    \"author\": \"理查德・大卫・普列斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物，怎么办？（企鹅经典）\",\n    \"author\": \"汉斯・法拉达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033552-fc5367?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔山（企鹅经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033270-e62351?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德皇威廉二世回忆录\",\n    \"author\": \"威廉二世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背对世界\",\n    \"author\": \"埃尔克・海登莱希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031692-85e059?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国总参谋部\",\n    \"author\": \"斯宾塞・威尔金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林：一座城市的肖像\",\n    \"author\": \"罗里・麦克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与死的年代\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031077-d1a6b0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伙伴进行曲\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031065-ab7513?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西线无战事\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030507-dc3c15?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里斯本之夜\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030501-6ecfa7?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色方尖碑\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030498-51ee22?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国极简史\",\n    \"author\": \"詹姆斯・霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的艺术\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家和出版人\",\n    \"author\": \"西格弗里德・温塞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029769-5eb081?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国历史中的文化诱惑\",\n    \"author\": \"沃尔夫・勒佩尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力意志与永恒轮回（译文经典）\",\n    \"author\": \"弗里德里希·威廉·尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的影子帝国\",\n    \"author\": \"皮耶尔保罗・巴维里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死于威尼斯（译文经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026790-ec3dad?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国\",\n    \"author\": \"克劳斯・P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1924：改变希特勒命运的一年\",\n    \"author\": \"彼得・罗斯・兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丈量世界\",\n    \"author\": \"丹尼尔・凯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025011-988ba8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年维特的烦恼（读客经典）\",\n    \"author\": \"约翰・沃尔夫冈・冯・歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024237-1edddb?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥德国史\",\n    \"author\": \"玛丽・富布卢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022479-9288ae?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人的战争\",\n    \"author\": \"尼古拉斯・斯塔加特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"默克尔传：德国总理安格拉·默克尔和她的权力世界\",\n    \"author\": \"斯蒂凡・柯内琉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020523-ee7487?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯坦德1936\",\n    \"author\": \"福尔克尔・魏德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020391-a49d11?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉重的皇冠\",\n    \"author\": \"克里斯托弗・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金与铁：俾斯麦、布莱希罗德与德意志帝国的建立\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019062-89d9da?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不情愿的大师\",\n    \"author\": \"斯蒂芬・葛霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017631-5dd734?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自静默时刻的讯息\",\n    \"author\": \"亚历山大・克鲁格/格哈德・里希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015834-7f7b45?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时刻：希特勒、大屠杀与纳粹文化（上下册）\",\n    \"author\": \"单世联\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应许之地\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012585-de8060?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远去的胜利\",\n    \"author\": \"威廉・理查德森/西摩・弗雷德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《存在与时间》释义\",\n    \"author\": \"张汝伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011925-622b16?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志之魂\",\n    \"author\": \"特亚・多恩/里夏德・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011616-7a3f09?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的浩劫\",\n    \"author\": \"弗里德里希・迈内克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011484-6c4d96?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"席勒文集（全6册）\",\n    \"author\": \"席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011478-c63c69?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十个人的德意志\",\n    \"author\": \"孙世龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009267-7bdd51?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵进攻\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原狼\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009234-487551?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史：德国人的犹太恐惧症与大屠杀\",\n    \"author\": \"克劳斯・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国简史\",\n    \"author\": \"孟钟捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：跃升年代\",\n    \"author\": \"福尔克尔・乌尔里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史\",\n    \"author\": \"丁建弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国的腐败与反腐\",\n    \"author\": \"弗兰克・巴约尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从俾斯麦到希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山的那一边\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周易参同契（全本全注全译）\",\n    \"author\": \"章偉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866\",\n    \"category\": \"易学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅花易数\",\n    \"author\": \"邵康节/周浩良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009240-291b7b?p=8866\",\n    \"category\": \"易学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中11·宇宙之道，就在围棋\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866\",\n    \"category\": \"围棋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不得贪胜\",\n    \"author\": \"李昌镐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023190-b21759?p=8866\",\n    \"category\": \"围棋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周礼（全本全注全译）\",\n    \"author\": \"徐正英/常佩雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866\",\n    \"category\": \"礼学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖作品典藏书系全集（共31册）\",\n    \"author\": \"海明威/泰戈尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011121-5976eb?p=8866\",\n    \"category\": \"诺贝尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的午夜\",\n    \"author\": \"亚当・希金博特姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512130-738686?p=8866\",\n    \"category\": \"灾难\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝秦书：民国十八年饥馑\",\n    \"author\": \"张浩文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009609-b22205?p=8866\",\n    \"category\": \"灾难\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触：全球大型传染病探秘之旅\",\n    \"author\": \"大卫·奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866\",\n    \"category\": \"灾难\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光影里的梦幻与真实\",\n    \"author\": \"郑实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866\",\n    \"category\": \"影评\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何聊电影\",\n    \"author\": \"安・霍纳迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029709-5cea62?p=8866\",\n    \"category\": \"影评\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造和平：1919巴黎和会及其开启的战后世界\",\n    \"author\": \"玛格丽特・麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866\",\n    \"category\": \"巴黎和会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅者的初心\",\n    \"author\": \"铃木俊隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866\",\n    \"category\": \"禅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中9·禅的入门\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866\",\n    \"category\": \"禅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铃木大拙说禅\",\n    \"author\": \"铃木大拙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014136-19a5b6?p=8866\",\n    \"category\": \"禅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鱼解字\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511992-0df03b?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字的故事\",\n    \"author\": \"王铁钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050379-f02840?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澄衷蒙学堂字课图说（全8册）\",\n    \"author\": \"刘树屏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十六个汉字里的日本\",\n    \"author\": \"姜建强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031203-be379f?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字看我一生\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事经济学\",\n    \"author\": \"罗伯特・麦基/哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告争夺战\",\n    \"author\": \"肯・奥莱塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509673-5b5abf?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秒赞：文案女王20年创作技巧与心法\",\n    \"author\": \"林桂枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案功夫\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004422-027126?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微文案\",\n    \"author\": \"朱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华百万大奖赛案例集\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥格威谈广告\",\n    \"author\": \"杨名皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037881-a442a5?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告文案\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何把产品打造成有生命的品牌\",\n    \"author\": \"叶明桂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案一句话就够了\",\n    \"author\": \"川上徹也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抢占心智\",\n    \"author\": \"江南春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"计算广告\",\n    \"author\": \"刘鹏/王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖叫感\",\n    \"author\": \"马楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个广告人的自白\",\n    \"author\": \"大卫・奥格威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案圣经\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期表\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866\",\n    \"category\": \"化学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠化学\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031512-ccaaad?p=8866\",\n    \"category\": \"化学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在此时此刻\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866\",\n    \"category\": \"佛法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话\",\n    \"author\": \"学诚法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866\",\n    \"category\": \"佛法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈外编辑\",\n    \"author\": \"都筑响一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493812-a4c0be?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本色气\",\n    \"author\": \"九鬼周造/阿部次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497631-758154?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国茶文化（彩图修订本）\",\n    \"author\": \"王玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497658-a4bba9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本侘寂\",\n    \"author\": \"大西克礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497877-b3524b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京都漫步\",\n    \"author\": \"骆仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498195-a77d50?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奈川冲浪外\",\n    \"author\": \"南希・K. 斯托克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498489-286596?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本美学三部曲\",\n    \"author\": \"大西克礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499377-dc0d28?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凤凰：神鸟传奇\",\n    \"author\": \"约瑟夫・尼格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499722-63b477?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本社会变迁研究套书（全4卷）\",\n    \"author\": \"中国日本史学会东北师范大学东亚研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501510-03fea8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色雅典娜：古典文明的亚非之根（套装全3卷共5册）\",\n    \"author\": \"马丁・贝尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"川菜\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼米之乡\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知道咖啡系列（套装共3册）\",\n    \"author\": \"斯图尔德・李・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508371-3eb8b9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明：文化、野心，以及人与自然的伟大博弈\",\n    \"author\": \"菲利普・费尔南多-阿梅斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508923-b0e527?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单（全本全注全译）\",\n    \"author\": \"陈伟明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶经 续茶经（全本全注全译）\",\n    \"author\": \"杜斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现阴阳道\",\n    \"author\": \"山下克明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509379-3c5bbd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜间的战斗\",\n    \"author\": \"卡洛・金茨堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509478-1024cd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新文化运动史料丛编\",\n    \"author\": \"孙郁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510201-42c727?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现日本：60处日本最美古建筑之旅\",\n    \"author\": \"矶达雄/宫泽洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510525-107c20?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个成语中的古代生活史\",\n    \"author\": \"许晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神好多的日本\",\n    \"author\": \"山口谣司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师经典：王力先生的古代文化通识课\",\n    \"author\": \"王力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512367-d2614c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法老的宝藏\",\n    \"author\": \"约翰・高德特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512496-f7d5bd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华雅文化经典系列（套装共8册）\",\n    \"author\": \"陈敬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513279-73b746?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少时读书\",\n    \"author\": \"废名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野味读书\",\n    \"author\": \"孙犁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾小吃全书\",\n    \"author\": \"焦桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重寻巨浪\",\n    \"author\": \"神山典士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513675-542c4a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不哀之歌\",\n    \"author\": \"曹利群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513687-619e62?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮笑肉也笑\",\n    \"author\": \"典婆婆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004533-f9dbd4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这是真的，我在一本书里读到过\",\n    \"author\": \"巴斯卡尔・博尼法斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会设计\",\n    \"author\": \"笕裕介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自在京都\",\n    \"author\": \"库索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003879-27a2e4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度5\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归故里\",\n    \"author\": \"迪迪埃・埃里蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002355-543671?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化失忆\",\n    \"author\": \"克莱夫・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002394-6a02b6?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对欲望，绝对奇异\",\n    \"author\": \"马克弟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002109-90cc9f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饱食穷民\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001761-d44b46?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读：十周年特辑\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜色的故事\",\n    \"author\": \"加文・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类善恶小史\",\n    \"author\": \"策妄・阿拉布坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000900-ed1aca?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娱乐何为\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000798-72f1c7?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的细节\",\n    \"author\": \"叶克飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000312-ad2cbf?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文化漫游\",\n    \"author\": \"鲁成文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家海明威的生活剪贴簿\",\n    \"author\": \"迈克尔・卡塔基斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000297-a3eb2e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挥云而去：十张画里看中国\",\n    \"author\": \"韩涧明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999820-7f8c31?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津艺术史系列（第一辑）\",\n    \"author\": \"罗宾・奥斯本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"残酷剧场\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997615-258e96?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎注评\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的镜子（全新修订版）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大故宫六百年风云史\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人史纲\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之门\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"床的人类史\",\n    \"author\": \"布莱恩・费根/纳迪亚・杜兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安身立命\",\n    \"author\": \"许纪霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分身：新日本论\",\n    \"author\": \"李永晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993670-c0a10d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东言西语\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈仓天心东方美学三书\",\n    \"author\": \"冈仓天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991678-e1d2d9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊花王朝\",\n    \"author\": \"胡炜权\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991672-1fcdce?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民疯狂的欧洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不只中国木建筑\",\n    \"author\": \"赵广超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文精神的伟大冒险\",\n    \"author\": \"菲利普·E.毕肖普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中11·宇宙之道，就在围棋\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华文明史（全四卷）\",\n    \"author\": \"袁行霈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日47：源氏物语，一本满足！\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990349-816027?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"业余者说\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日53：好吃不过拉面\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990262-052cee?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溯洄\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990220-e56d20?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颂·雅·风\",\n    \"author\": \"徐迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989755-ec3df0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅、凤梨与穿山甲\",\n    \"author\": \"克莱尔・科克-斯塔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989284-df491a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日42：枯山水\",\n    \"author\": \"茶乌龙主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988927-f3482b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个李白\",\n    \"author\": \"王充闾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人与中国人\",\n    \"author\": \"许烺光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界音乐汇\",\n    \"author\": \"西蒙・布劳顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学法兰西\",\n    \"author\": \"普利西拉・帕克赫斯特・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扪虱谈鬼录（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡的山药粥\",\n    \"author\": \"徐佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周礼（全本全注全译）\",\n    \"author\": \"徐正英/常佩雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港味道1\",\n    \"author\": \"欧阳应霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985993-0ff83e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港味道2\",\n    \"author\": \"欧阳应霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986050-b290ba?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第四辑）\",\n    \"author\": \"弗吉尼亚・伍尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政论 昌言（全本全注全译）\",\n    \"author\": \"孙启治译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音调未定的传统（增订本）\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985084-f06396?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"留白：秋水堂文化随笔\",\n    \"author\": \"田晓菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984928-62a884?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海摩登（修订版）\",\n    \"author\": \"李欧梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世恒河\",\n    \"author\": \"乔治・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呻吟语（全本全注全译）\",\n    \"author\": \"吕坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之书\",\n    \"author\": \"余世存\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983830-3559ad?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀母的文化\",\n    \"author\": \"孙隆基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983671-269fff?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本风俗小物\",\n    \"author\": \"中川政七商店\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983593-3192f5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让木乃伊跳舞（新版）\",\n    \"author\": \"托马斯・霍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原宿牛仔\",\n    \"author\": \"W. 大卫・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053643-0a120a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人的画像\",\n    \"author\": \"李长声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053013-a69c08?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威大战DC\",\n    \"author\": \"里德・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景观社会\",\n    \"author\": \"居伊・德波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印尼Etc\",\n    \"author\": \"伊丽莎白・皮萨尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050922-272408?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影冷知识\",\n    \"author\": \"许立衡/张凯淯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化的江山·第一辑（全4册）\",\n    \"author\": \"刘刚/李冬君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西域余闻\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年（全新增订版）\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的隐秘角落\",\n    \"author\": \"陆波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金家族的最后一个王爷\",\n    \"author\": \"朱文楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"装腔指南\",\n    \"author\": \"托马斯· W. 霍奇金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048573-ba74e7?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日48：世上只有一个京都！\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047793-e18e51?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋穀梁传（全本全注全译）\",\n    \"author\": \"徐正英/邹皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋大义\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴人\",\n    \"author\": \"罗伯特・戴维斯/贝丝・琳达史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京风格\",\n    \"author\": \"都筑响一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047016-279986?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媚骨之书\",\n    \"author\": \"蒋蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超纲冷知识\",\n    \"author\": \"吉姆・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论文化\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046062-20408c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"占卜师的预言\",\n    \"author\": \"蒂齐亚诺・泰尔扎尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国常识全集（套装共10册）\",\n    \"author\": \"吴晗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045489-a1fa67?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度4\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说吧，叙利亚\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年悖论\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045231-d7d6f7?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南腔北调：在语言中重新发现中国\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典里的中国（套装共十册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊人\",\n    \"author\": \"伊迪丝・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵者不祥\",\n    \"author\": \"刘鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"节日之书\",\n    \"author\": \"余世存/老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044508-103e4d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民发呆的澳洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们最幸福\",\n    \"author\": \"芭芭拉・德米克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建筑改变日本\",\n    \"author\": \"伊东丰雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代唯心论简释\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适四十自述（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆书籍史话\",\n    \"author\": \"大卫・皮尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学治要（套装共三册）\",\n    \"author\": \"张文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光棍危机\",\n    \"author\": \"瓦莱丽・M. 赫德森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042783-f1c3cb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式诱惑\",\n    \"author\": \"伊莱恩・西奥利诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕\",\n    \"author\": \"阿敏・马卢夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失忆的爱丽丝\",\n    \"author\": \"莉安・莫利亚提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042543-545e28?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042417-58fafd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澄衷蒙学堂字课图说（全8册）\",\n    \"author\": \"刘树屏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八股新论\",\n    \"author\": \"金克木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040908-f77a1a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·家具篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·杂项篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·陶瓷篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039768-92e788?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·玉器篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039759-8e7733?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的没落（译林人文精选）\",\n    \"author\": \"奥斯瓦尔德・斯宾格勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会说脏话？\",\n    \"author\": \"埃玛・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方文明史：延续不断的遗产（第五版）\",\n    \"author\": \"马克・凯什岚斯基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"絕望者之歌\",\n    \"author\": \"杰德・凡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的肚脐\",\n    \"author\": \"迈克尔・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南京传\",\n    \"author\": \"叶兆言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038607-9ea609?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星条旗下的茶叶蛋\",\n    \"author\": \"方柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消费社会\",\n    \"author\": \"让・鲍德里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都嘟合集（套装共2册）\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037935-733bef?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征途美国\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035796-7503bb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字的力量\",\n    \"author\": \"马丁・普克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李开周说宋史套装（全3册）\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷家书（经典版）\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：众人受到召唤\",\n    \"author\": \"生活月刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈之书\",\n    \"author\": \"曼纽尔・利马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下巴黎\",\n    \"author\": \"洛朗・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕的金桃\",\n    \"author\": \"薛爱华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米开朗琪罗与教皇的天花板\",\n    \"author\": \"罗斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说中国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古江河\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化的精神\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶的国度\",\n    \"author\": \"戎新宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033186-d7f53e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"壶里春秋\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性文化简史\",\n    \"author\": \"李书崇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032655-45f763?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学简史\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中日之间：误解与错位\",\n    \"author\": \"李长声/贾葭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032559-447387?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本的细节\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032355-8598e5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文具盒里的时空漫游\",\n    \"author\": \"詹姆斯・沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032310-afb48d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通识：学问的门类\",\n    \"author\": \"茂木健一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032028-db8b7e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本名词故事\",\n    \"author\": \"新井一二三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初见卢浮宫\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十六个汉字里的日本\",\n    \"author\": \"姜建强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031203-be379f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风味人间\",\n    \"author\": \"陈晓卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030402-372ed3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的历史：诸神的踪迹\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一阅千年\",\n    \"author\": \"马克・科尔兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊与刀（精装插图版）\",\n    \"author\": \"伊恩・布鲁马/鲁思・本尼迪克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030060-8634c8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与古为徒和娟娟发屋\",\n    \"author\": \"白谦慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030021-8772c8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字里中国\",\n    \"author\": \"张素凤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029691-7b218d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深思与省悟\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人情、面子与权力的再生产（修订版）\",\n    \"author\": \"翟学伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029310-bc9143?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想的境界：历史真实中的山水画\",\n    \"author\": \"王平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029052-8dfc3b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那时的先生\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028962-13aa23?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国历史中的文化诱惑\",\n    \"author\": \"沃尔夫・勒佩尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学\",\n    \"author\": \"杰弗里・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗奇谭\",\n    \"author\": \"盛文强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028122-374cfe?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡王朝：翱翔欧洲700年的双头鹰\",\n    \"author\": \"卫克安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅心直指\",\n    \"author\": \"澄海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027864-99937c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"竞争的艺术\",\n    \"author\": \"塞巴斯蒂安・斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027540-ee0502?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大观茶论\",\n    \"author\": \"日月洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027285-051ff1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京百年史：从江户到昭和\",\n    \"author\": \"爱德华・赛登施蒂克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027168-a2ebb9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四朝高僧传（全5册）\",\n    \"author\": \"慧皎/道宣/赞宁/如惺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027009-b8f825?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空帝国\",\n    \"author\": \"徐刚/王燕平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027096-381168?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪的合众国\",\n    \"author\": \"帕梅拉・哈格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026259-12b415?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宴与家宴\",\n    \"author\": \"王宣一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街角的老北京\",\n    \"author\": \"卢文龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日28：和制汉语\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025533-3bbc70?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日05：猫\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025503-b1233d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日11：犬\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025488-384b95?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日20：燃\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025470-5edfce?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日09：森女\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025473-7a5674?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日12：断舍离\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025443-003ec0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日13：暴走\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025458-0c2c9e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日14：家宅\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025449-ebed98?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日06：铁道\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025431-1b9519?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日16：写真\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025425-cad07f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日22：向日本人学礼仪\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025404-566e2f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日25：手帐最高\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025383-82a719?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日08：妖怪\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025377-a89ac1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日18：设计力\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025413-980d01?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣的现象学\",\n    \"author\": \"鹫田清一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025359-4d71c5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日31：我们在喫茶店见吧\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025347-18317c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日29：偶像\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025353-47b33b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日30：怪谈\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025323-55c821?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日26：机甲\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025326-ff55a1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中1·山水\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025278-3cb446?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中4·民谣啊民谣\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025260-f23d1e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中5·竹林七贤\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中6·一本读懂！山海经\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025233-398c4e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中7·幸会！苏东坡\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中8·了不起的宋版书\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025230-9eef33?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中10·以侠之名\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025200-8de2ab?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中12·洋人\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025209-e89b77?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中14·中国茶的基本\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中15·再认识丰子恺\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025182-3c8f73?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中16·西南联大的遗产\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日17：了不起的推理\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025146-e84104?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的智人\",\n    \"author\": \"河森堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的意识\",\n    \"author\": \"约翰・巴奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集续编\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的儒家\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见日本\",\n    \"author\": \"徐静波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024732-43de40?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的哲学密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说敦煌二五四窟\",\n    \"author\": \"陈海涛/陈琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾想（套装共2册）\",\n    \"author\": \"贾樟柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024177-5dc26f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈飞文化手册\",\n    \"author\": \"帕蒂・麦考德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西之道\",\n    \"author\": \"汉斯・格奥尔格・梅勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何想到又做到\",\n    \"author\": \"肖恩・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做出正确决定\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"于丹：重温最美古诗词\",\n    \"author\": \"于丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023889-0d327d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匠人\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023748-9674dd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术馆里聊怪咖\",\n    \"author\": \"山田五郎/古山淳子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023745-138eaa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡征服世界\",\n    \"author\": \"安德鲁・劳勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山河小岁月\",\n    \"author\": \"李舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023418-3eafb8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔比恩的种子\",\n    \"author\": \"大卫・哈克特・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝话\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽然七日\",\n    \"author\": \"劳伦・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023253-db0f49?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街头巷尾\",\n    \"author\": \"领读文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023154-daa1de?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Jerusalem\",\n    \"author\": \"Simon Sebag Montefiore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023058-302eaa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐的极境\",\n    \"author\": \"爱德华·W.萨义德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022965-9d1e5c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的浏阳兄弟\",\n    \"author\": \"索文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第一集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022830-3ddcad?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品人录\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读城记\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022617-f7baf2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的男人和女人\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022629-7a5047?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲话中国人\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022614-e2ccf9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格调（修订第3版）\",\n    \"author\": \"保罗・福塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022470-f9a015?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日10：日本禅\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022464-0f5288?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日19：料理之魂\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022488-fcb817?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品读中国（套装共6册）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学起步\",\n    \"author\": \"邓晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022341-909e43?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之都\",\n    \"author\": \"拉纳・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁道之旅\",\n    \"author\": \"沃尔夫冈・希弗尔布施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列奥纳多·达·芬奇传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娱乐至死\",\n    \"author\": \"尼尔・波兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021261-711d62?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私想鲁迅\",\n    \"author\": \"刘春杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶席窥美\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021102-dfafb9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑微的套套\",\n    \"author\": \"安妮・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021051-972816?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国国民性演变历程\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020961-2b4f8d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑麋鹿如是说 ：生命与自然之诗\",\n    \"author\": \"尼古拉斯・黑麋鹿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020922-d80161?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本第一\",\n    \"author\": \"傅高义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020649-5d71fa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Illuminations\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020604-dce4aa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷信与暴力\",\n    \"author\": \"亨利・查尔斯・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020472-3eaa48?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现玛雅\",\n    \"author\": \"约翰・劳埃德・斯蒂芬斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020442-bd32ca?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本之镜：日本文化中的英雄与恶人\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020247-59edee?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知觉之门\",\n    \"author\": \"阿道斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019935-31f55b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度，漂浮的次大陆\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆窜行记\",\n    \"author\": \"顺手牵猴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019548-8a4e08?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至味在人间\",\n    \"author\": \"陈晓卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019104-e77006?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹梵高博物馆\",\n    \"author\": \"保拉・拉佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018915-b0ed02?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏在地理中的历史学（共3册）\",\n    \"author\": \"林肯・佩恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018519-e91091?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌鸦之城：伦敦，伦敦塔与乌鸦的故事\",\n    \"author\": \"博里亚・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸年轮：民国以来百年中国私人读本\",\n    \"author\": \"张冠生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017922-775184?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以客户为中心\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度2\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017880-5bd0da?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明之光（全三册）\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017397-aefe13?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类智慧小史\",\n    \"author\": \"特雷弗・科诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017340-a7f51c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些难忘的声音\",\n    \"author\": \"张稼峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017289-27536c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国缺什么，日本缺什么\",\n    \"author\": \"近藤大介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017190-d077f5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从黎明到衰落（上下册）\",\n    \"author\": \"雅克・巴尔赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代艺术150年\",\n    \"author\": \"威尔・贡培兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论摄影（插图珍藏本）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛊惑世界的力量：可卡因传奇\",\n    \"author\": \"多米尼克・斯特里特费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015042-67c9a9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014925-4b543e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书指南（国学经典精校版）\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014856-7dd474?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一把盐下饭菜\",\n    \"author\": \"左壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014430-7b97d6?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃的美德：餐桌上的哲学思考\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013992-1e7670?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本（套装共3册）\",\n    \"author\": \"黄亚南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013320-488041?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国式管理行为\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012855-72e7bc?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习\",\n    \"author\": \"本尼迪克特・凯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊与刀（增订版）\",\n    \"author\": \"鲁思・本尼迪克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012096-e918e2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录\",\n    \"author\": \"孟元老\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是台湾，这才是台湾\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011721-b791c3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化简史（套装共4册）\",\n    \"author\": \"王立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私人生活的变革\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，改变一生的旅行\",\n    \"author\": \"尼玛达娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈克尔·波伦“饮食觉醒”系列（套装共3册）\",\n    \"author\": \"迈克尔・波伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草原帝国（全译插图本）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲常识\",\n    \"author\": \"吕夏乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的精神\",\n    \"author\": \"辜鸿铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生取义\",\n    \"author\": \"吴飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趣味生活简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千面英雄\",\n    \"author\": \"约瑟夫・坎贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画精品集（修订版）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华传统文化大百科套装50册\",\n    \"author\": \"刘心莲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008472-a35cc3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变美国的时刻\",\n    \"author\": \"刘戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布大交换\",\n    \"author\": \"艾尔弗雷德・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫的风花雪月\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好色的哈姆雷特\",\n    \"author\": \"小白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫修文物\",\n    \"author\": \"萧寒/绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被劫持的私生活\",\n    \"author\": \"肉唐僧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008037-46dd88?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北大授课：中华文化四十七讲\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007980-4d8887?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾五百年\",\n    \"author\": \"戴维・考特莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意大利黑手党的历史\",\n    \"author\": \"约翰・迪基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007902-b4007c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血酬定律：中国历史中的生存游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学观止（上下册）\",\n    \"author\": \"贺兰特・凯查杜里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学五章\",\n    \"author\": \"江晓原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得读完的书\",\n    \"author\": \"聂震宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈：日本动漫中的传统妖怪\",\n    \"author\": \"周英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在汉朝不容易\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南渡北归（增订版）套装\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教科书里没有的历史细节\",\n    \"author\": \"王国华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人的故事：寻找失落的字符\",\n    \"author\": \"西门·沙马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米，面，鱼\",\n    \"author\": \"马特・古尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006654-03c347?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人与中国人\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006471-f2b909?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学、数术与政治\",\n    \"author\": \"陈侃理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006072-66be1f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉讲中国历史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005865-39afd4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的空白处\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年之痒\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简欧洲史\",\n    \"author\": \"约翰・赫斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的残渣\",\n    \"author\": \"冯峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重读甲午：中日国运大对决\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012939-c8481b?p=8866\",\n    \"category\": \"甲午战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我知道光在哪里\",\n    \"author\": \"安东尼・雷・辛顿/劳拉・洛夫・哈丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509493-31e3e9?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉多纳自传\",\n    \"author\": \"迭戈・阿曼多・马拉多纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999238-9530a8?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大梦无疆\",\n    \"author\": \"西蒙・佩雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"启与魅\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994519-34f572?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前半生（全本）\",\n    \"author\": \"爱新觉罗・溥仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适四十自述（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗3：童年岛屿\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040794-82ba8e?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Becoming\",\n    \"author\": \"Michelle Obama\",\n    \"link\": \"链接未找到\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"I Am, I Am, I Am\",\n    \"author\": \"Maggie O'Farrell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034404-5f9292?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生有罪\",\n    \"author\": \"特雷弗・诺亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不放弃\",\n    \"author\": \"唐纳德・特朗普/梅瑞迪斯・麦基沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我生有涯愿无尽\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020394-9d305d?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着为了讲述\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016920-233354?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林自传\",\n    \"author\": \"富兰克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014847-bd9379?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"28岁赚千万\",\n    \"author\": \"穷富弹指间\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨迹：留在生命和记忆中\",\n    \"author\": \"曾子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭火：美国金融危机及其教训\",\n    \"author\": \"本・伯南克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866\",\n    \"category\": \"危机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的心迟到了：佩索阿情诗\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493809-0d4478?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我将宇宙随身携带：佩索阿诗集\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493875-8ebc30?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月球家族三部曲\",\n    \"author\": \"伊恩・麦克唐纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497508-09b5df?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋元笔记小说大观（全35册）\",\n    \"author\": \"王应麟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（全三册）\",\n    \"author\": \"但丁・阿利格耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本短诗套装（共5册）\",\n    \"author\": \"松尾芭蕉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500349-0632a1?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的经典诗歌译丛1（套装共4册）\",\n    \"author\": \"戴维・赫伯特・劳伦斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500385-56b9bc?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的经典诗歌译丛2（套装共4册）\",\n    \"author\": \"露易丝・格丽克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500388-f84a0c?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫诗选（外国文学名著丛书）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡赋格：保罗·策兰诗精选\",\n    \"author\": \"保罗・策兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510972-2fc82c?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人与诗歌\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512106-566b82?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别去读诗\",\n    \"author\": \"斯蒂芬妮・伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512253-297890?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国作家朱自清作品典藏全集（套装共十六册）\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513285-ea02d5?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之殿\",\n    \"author\": \"但丁・罗塞蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004035-0d555d?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人音乐\",\n    \"author\": \"莱昂纳德・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003981-ba89b3?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗的引诱（大家读大家）\",\n    \"author\": \"宇文所安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003492-0ca141?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集\",\n    \"author\": \"赵崇祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003321-4f2249?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心有猛虎，细嗅蔷薇（果麦经典）\",\n    \"author\": \"西格夫里・萨松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗歌手册：诗歌阅读与创作指南\",\n    \"author\": \"玛丽・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002031-f4b308?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大山里的小诗人\",\n    \"author\": \"“是光”的孩子们\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001554-8c8cf0?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火焰\",\n    \"author\": \"莱昂纳德・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000321-1f47fc?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的焦虑是一束火花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999841-6b89b0?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桂花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗选注\",\n    \"author\": \"葛兆光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不三\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988819-9f6970?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗圣杜甫\",\n    \"author\": \"吕正惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986797-203237?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡的山药粥\",\n    \"author\": \"徐佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文诗集\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏与西伯利亚\",\n    \"author\": \"倪湛舸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠悠我心\",\n    \"author\": \"史杰鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人十四个\",\n    \"author\": \"黄晓丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052656-80a0a8?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（国学典藏）\",\n    \"author\": \"洪兴祖 补注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗排行榜\",\n    \"author\": \"王兆鹏/邵大为/张静/唐元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱啊美啊人生啊\",\n    \"author\": \"石川啄木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047964-020a7a?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛波斯卡诗选三部曲\",\n    \"author\": \"维斯拉瓦・辛波斯卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045282-d2f37d?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲古诗十九首\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044709-330c0b?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致后代\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"覆舟的愉悦\",\n    \"author\": \"朱塞培・翁加雷蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花与恶心\",\n    \"author\": \"卡洛斯・德鲁蒙德・德・安德拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽尔（果麦经典）\",\n    \"author\": \"西尔维娅・普拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我将敢于亲吻你\",\n    \"author\": \"阿方斯娜・斯托尔妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043794-7c46f5?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风景中的少年\",\n    \"author\": \"胡戈・冯・霍夫曼斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043686-99ceaf?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希尼三十年文选\",\n    \"author\": \"谢默斯・希尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特文集（全5卷）\",\n    \"author\": \"托・斯・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040791-73a240?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窥豹录\",\n    \"author\": \"胡亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035628-c24e75?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔诗选（名著名译丛书）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035529-81da8d?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象：劳伦斯诗集\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Goblin Market\",\n    \"author\": \"Rossetti, Christina; Rackham, Arthur;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我用古典的方式爱过你\",\n    \"author\": \"艾米莉・狄金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033786-700cbe?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧阳修词集（词系列）\",\n    \"author\": \"欧阳修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我愿意是急流\",\n    \"author\": \"裴多菲・山陀尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033246-a24a75?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第二辑（套装共12册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白雨斋词话（词系列）\",\n    \"author\": \"陈廷焯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十首情诗和一支绝望的歌\",\n    \"author\": \"巴勃罗・聂鲁达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词鉴赏辞典\",\n    \"author\": \"唐圭璋/钟振振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的歌\",\n    \"author\": \"余光中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032004-ffb2cf?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词里的趣事套装（全4册）\",\n    \"author\": \"王月亮/黄震/黄秀春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物归一\",\n    \"author\": \"君特・格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030096-2f337a?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桑德堡诗选\",\n    \"author\": \"卡尔・桑德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029511-e8bfc2?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金性尧选唐宋诗新注\",\n    \"author\": \"金性尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028893-8fd3a1?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是一百只眼睛的水面\",\n    \"author\": \"加布列拉・米斯特拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027525-6abbc5?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨牧诗选（1956-2013）\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026265-7f9451?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩画集（译文经典）\",\n    \"author\": \"兰波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024798-46febb?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子们的诗\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017097-fec3aa?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李太白全集\",\n    \"author\": \"李白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（译文名著精选）\",\n    \"author\": \"但丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005313-5d3225?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯吉斯野外生存系列（套装四册）\",\n    \"author\": \"桑顿・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866\",\n    \"category\": \"读物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有条喷火龙（第一辑）\",\n    \"author\": \"凯特・麦克马伦/比尔・巴索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866\",\n    \"category\": \"读物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏洛书屋电子书大套装（套装共27本）\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015618-ef6dd5?p=8866\",\n    \"category\": \"读物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（读客经典）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028821-f3f217?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（读客经典）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航3\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027561-bda2a4?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督山伯爵（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰小说精选（读客经典）\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河铁道之夜（读客经典）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022767-1f1a92?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶花女（读客经典）\",\n    \"author\": \"小仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022494-778de5?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏见\",\n    \"author\": \"珍妮弗・埃伯哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510933-ef0322?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿透：像社会学家一样思考\",\n    \"author\": \"严飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002463-b7f860?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有思想的世界\",\n    \"author\": \"富兰克林・福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的当下与未来\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧变\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（理想国新版）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988420-f2ca45?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控分寸\",\n    \"author\": \"珍妮・米勒/维多利亚・兰伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相与错觉\",\n    \"author\": \"塔莎・欧里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲世纪\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学原来很有趣\",\n    \"author\": \"刘帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052497-71e6ec?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使（见识丛书）\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖先的故事\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"议程\",\n    \"author\": \"埃里克・维亚尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039354-676672?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三千年来谁铸币\",\n    \"author\": \"王永生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个观点，不一定对\",\n    \"author\": \"黄章晋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱暗流\",\n    \"author\": \"简・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪勒索\",\n    \"author\": \"朱迪斯·P·西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021009-58665a?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现玛雅\",\n    \"author\": \"约翰・劳埃德・斯蒂芬斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020442-bd32ca?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的巴黎\",\n    \"author\": \"乔乔・莫伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050619-04e97f?p=8866\",\n    \"category\": \"巴黎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎美人\",\n    \"author\": \"珍妮・达玛斯/劳伦・巴斯蒂德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866\",\n    \"category\": \"巴黎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人在巴黎\",\n    \"author\": \"大卫・麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015738-b4c6cb?p=8866\",\n    \"category\": \"巴黎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不设限（中英双语版）\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866\",\n    \"category\": \"双语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐数学\",\n    \"author\": \"本・奥尔林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509988-85b379?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠扬的素数\",\n    \"author\": \"马库斯・杜・索托伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510315-8d1e4a?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉数学书\",\n    \"author\": \"杰森・威尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510984-d5459b?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑的力量\",\n    \"author\": \"郑乐隽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000540-cc1401?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学好数学并不难（套装共2册）\",\n    \"author\": \"孙亮朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990406-b55265?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学本来很简单\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学不简单\",\n    \"author\": \"吴悦辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985834-983ed5?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字起源\",\n    \"author\": \"凯莱布・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷小\",\n    \"author\": \"阿米尔・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的逻辑题\",\n    \"author\": \"亚历克斯・贝洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（果麦经典）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（果麦版）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简算法史\",\n    \"author\": \"吕克・德・布拉班迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简数学\",\n    \"author\": \"克里斯・韦林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036807-4542b9?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列（套装共7册）\",\n    \"author\": \"梅拉妮・米歇尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷茫的旅行商\",\n    \"author\": \"William J. Cook\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035454-7affdc?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10堂极简概率课\",\n    \"author\": \"佩尔西・戴康尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个逻辑学家去酒吧\",\n    \"author\": \"霍格尔・丹贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032730-cc30a1?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（完整精修珍藏译本）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的数字零\",\n    \"author\": \"查尔斯・塞弗\",\n    \"link\": \"链接未找到\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"码书：编码与解码的战争\",\n    \"author\": \"西蒙・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027210-1192ec?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统计学关我什么事\",\n    \"author\": \"小岛宽之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎曼猜想漫谈\",\n    \"author\": \"卢昌海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022899-88af93?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Princeton Companion to Mathematics\",\n    \"author\": \"Gowers, Timothy\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021243-933c06?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学简史\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021195-ee63f5?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学现场：另类世界史\",\n    \"author\": \"王雁斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019836-4f4794?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌神数学家\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费马大定理：一个困惑了世间智者358年的谜\",\n    \"author\": \"西蒙・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014706-602d01?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞大开的微积分\",\n    \"author\": \"刘祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013872-96990e?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度量：一首献给数学的情歌\",\n    \"author\": \"保罗・洛克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013179-ed1db5?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与数学\",\n    \"author\": \"爱德华・弗伦克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012663-712e79?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的乐趣：Matrix67数学笔记\",\n    \"author\": \"顾森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学沉思录\",\n    \"author\": \"Mario Livio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010926-6eb53d?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（全译插图本）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010761-329742?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学女孩\",\n    \"author\": \"结城浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010338-f745a3?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学女孩2：费马大定理\",\n    \"author\": \"结城浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010332-f2891c?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数理化通俗演义\",\n    \"author\": \"梁衡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008178-f506c2?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧几里得之窗\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006591-0ff2c9?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学那些事儿\",\n    \"author\": \"William Dunham\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于火星的一切\",\n    \"author\": \"李德范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的地外生命\",\n    \"author\": \"刘易斯・达特奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492573-a93ad2?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的奥秘\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497319-411984?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空居民\",\n    \"author\": \"克里斯托弗・万杰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宇宙大爆炸\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果宇宙可以伸缩\",\n    \"author\": \"凯莱布・沙夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508368-cf05f3?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的怪物\",\n    \"author\": \"克里斯・伊姆佩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508134-74bc4c?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的起源\",\n    \"author\": \"约翰・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508191-ec962a?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的结构\",\n    \"author\": \"斯蒂芬・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极观星指南\",\n    \"author\": \"鲍勃・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们身处的宇宙究竟有多古怪？\",\n    \"author\": \"伊拉・马克・爱格多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的最后三分钟\",\n    \"author\": \"保罗・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC夜空探索系列（套装全8册）\",\n    \"author\": \"BBC仰望夜空杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解宇宙的尺度\",\n    \"author\": \"金伯莉・阿坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512424-f9a069?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的未完成交响曲\",\n    \"author\": \"玛西亚・芭楚莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多云的宇宙\",\n    \"author\": \"小谷太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987340-afdf8f?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未解的宇宙\",\n    \"author\": \"汪诘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985645-e44e5a?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大图景\",\n    \"author\": \"肖恩・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"140亿年宇宙演化全史\",\n    \"author\": \"尼尔・德格拉斯・泰森/唐纳德・戈德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽之问\",\n    \"author\": \"弗兰克・维尔切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物起源\",\n    \"author\": \"格雷厄姆・劳顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空故事\",\n    \"author\": \"苏珊娜・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简天文学\",\n    \"author\": \"科林・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从一粒尘埃开始\",\n    \"author\": \"布莱恩・考克斯/杰夫・福修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叩响天堂之门\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弯曲的旅行\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022818-41a87e?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·宇宙系列（套装共6册）\",\n    \"author\": \"史蒂芬・霍金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022812-304b75?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空全书\",\n    \"author\": \"詹姆斯・特赖菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙：从起源到未来\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010935-644bd6?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越平行宇宙\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简宇宙史\",\n    \"author\": \"克里斯托弗・加尔法德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙简史：起源与归宿\",\n    \"author\": \"斯蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群星都是你们的世界\",\n    \"author\": \"乔恩・威利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006396-8de5aa?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给忙碌者的天体物理学\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖10：早餐，真的太重要了\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866\",\n    \"category\": \"早餐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，西藏！\",\n    \"author\": \"卡布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496611-f0aac2?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌金的牙齿\",\n    \"author\": \"万玛才旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048714-87e33e?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏传佛教极简史\",\n    \"author\": \"德昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，不止旅行\",\n    \"author\": \"周硚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘埃落定（十五周年纪念版）\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026241-e45527?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站，西藏\",\n    \"author\": \"山小\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈底斯遗书\",\n    \"author\": \"陈庆港\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011769-d9d5d5?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，改变一生的旅行\",\n    \"author\": \"尼玛达娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏生死书\",\n    \"author\": \"索甲仁波切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艽野尘梦\",\n    \"author\": \"陈渠珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地密码（珍藏版大全集）\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为可怕的自律人\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499233-71cb99?p=8866\",\n    \"category\": \"自律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健身笔记\",\n    \"author\": \"叔贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866\",\n    \"category\": \"自律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本减肥书\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866\",\n    \"category\": \"减脂\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去你的脂肪\",\n    \"author\": \"格兰特・斯科菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866\",\n    \"category\": \"减脂\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练减脂圣经\",\n    \"author\": \"尼克・特米勒罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033306-9ad46f?p=8866\",\n    \"category\": \"减脂\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能减脂\",\n    \"author\": \"张景琦/孟令超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866\",\n    \"category\": \"减脂\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三叉戟\",\n    \"author\": \"吕铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986530-0dddac?p=8866\",\n    \"category\": \"罪案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行实录\",\n    \"author\": \"徐浪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052968-eec90d?p=8866\",\n    \"category\": \"罪案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪6\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866\",\n    \"category\": \"罪案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五个目标\",\n    \"author\": \"白雾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037845-992b8d?p=8866\",\n    \"category\": \"罪案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始玩转抖音\",\n    \"author\": \"黑马唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051885-f479db?p=8866\",\n    \"category\": \"抖音\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新引爆点：抖音运营从0到1实战指南\",\n    \"author\": \"头条易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034614-ada148?p=8866\",\n    \"category\": \"抖音\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗：意志征服世界\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866\",\n    \"category\": \"成吉思汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国清流那些大师们（全四册）\",\n    \"author\": \"汪兆骞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010944-bdb64a?p=8866\",\n    \"category\": \"大师\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐页书城三部曲\",\n    \"author\": \"凯・迈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866\",\n    \"category\": \"理想国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"6点27分的朗读者\",\n    \"author\": \"让-保尔・迪迪耶洛朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033048-452f4a?p=8866\",\n    \"category\": \"理想国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治天皇：1852-1912\",\n    \"author\": \"唐纳德・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021156-b23e9c?p=8866\",\n    \"category\": \"理想国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Python爬虫框架Scrapy\",\n    \"author\": \"迪米特里奥斯 考奇斯-劳卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用Python写网络爬虫（第2版）\",\n    \"author\": \"Katharine Jarmul\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Scrapy网络爬虫\",\n    \"author\": \"刘硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019203-cea982?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python爬虫开发与项目实战\",\n    \"author\": \"范传辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018354-f08e57?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python网络数据采集\",\n    \"author\": \"Ryan Mitchell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要钱还是要生活\",\n    \"author\": \"维姬・罗宾/乔・多明格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493644-fd98ee?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为战略财务讲义\",\n    \"author\": \"何绍茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509100-205637?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"账簿与权力\",\n    \"author\": \"雅各布・索尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004521-f2651d?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报就像一本兵法书\",\n    \"author\": \"刘顺仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可撼动的财务自由\",\n    \"author\": \"托尼・罗宾斯/彼得・默劳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让财报说话\",\n    \"author\": \"郑永强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务诡计\",\n    \"author\": \"霍华德·M.施利特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂财报\",\n    \"author\": \"肖星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售进阶指南（套装共5册）\",\n    \"author\": \"埃尔默・惠勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最简单的会计书\",\n    \"author\": \"达雷尔・穆利斯/朱迪斯・奥洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027939-522929?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Money Master the Game\",\n    \"author\": \"Tony Robbins\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026346-d7e225?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理者14天看懂财务报表\",\n    \"author\": \"闫静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021048-ccb824?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔学述\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044370-525bea?p=8866\",\n    \"category\": \"黑格尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔哲学讲演集\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043905-0f7e12?p=8866\",\n    \"category\": \"黑格尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去他的巴西\",\n    \"author\": \"胡续冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866\",\n    \"category\": \"巴西\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无边的土地\",\n    \"author\": \"若热・亚马多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022407-bb2b7c?p=8866\",\n    \"category\": \"巴西\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"味似丁香、色如肉桂的加布里埃拉\",\n    \"author\": \"若热・亚马多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016035-85d4b9?p=8866\",\n    \"category\": \"巴西\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"党员、党权与党争\",\n    \"author\": \"王奇生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866\",\n    \"category\": \"国民党\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国民党高层的派系政治（修订本）\",\n    \"author\": \"金以林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866\",\n    \"category\": \"国民党\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲骨文有故事\",\n    \"author\": \"许进雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512556-901413?p=8866\",\n    \"category\": \"甲骨文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谜一样的清明上河图（精致版）\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035433-9e1141?p=8866\",\n    \"category\": \"甲骨文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情的革命\",\n    \"author\": \"乔伊斯・阿普尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866\",\n    \"category\": \"甲骨文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午两甲子：忆与思\",\n    \"author\": \"姜鸣/贾葭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866\",\n    \"category\": \"甲骨文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学经典课程分享（套装9册）\",\n    \"author\": \"哈佛大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866\",\n    \"category\": \"课程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统整的力量\",\n    \"author\": \"陈怡倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038664-3ab357?p=8866\",\n    \"category\": \"课程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪与玫瑰的使用方法\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023379-ac0f90?p=8866\",\n    \"category\": \"果壳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谣言粉碎机系列（套装共3册）\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866\",\n    \"category\": \"果壳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知道咖啡系列（套装共3册）\",\n    \"author\": \"斯图尔德・李・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508371-3eb8b9?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左手咖啡，右手世界\",\n    \"author\": \"马克・彭德格拉斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512196-0468bd?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡新零售\",\n    \"author\": \"场景实验室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰的咖啡馆\",\n    \"author\": \"佐拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡 咖啡\",\n    \"author\": \"齐鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015963-7019a0?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界咖啡学\",\n    \"author\": \"韩怀宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015366-f832b2?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡咖啡处处开\",\n    \"author\": \"杰里米・托茨/史蒂文・马卡东尼亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015165-adf5d0?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩全集（12册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050778-80555d?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的经济课\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨人的成圣之道：曾国藩\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩：又笨又慢平天下\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006087-c38b42?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值：难点、解决方案及相关案例（原书第3版）\",\n    \"author\": \"阿斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866\",\n    \"category\": \"估值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事与估值\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866\",\n    \"category\": \"估值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会估值，轻松投资\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866\",\n    \"category\": \"估值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿育王\",\n    \"author\": \"文森特・阿瑟・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996580-36df48?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度文明史\",\n    \"author\": \"常磐大定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995485-394351?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孟买：欲望丛林\",\n    \"author\": \"苏科图・梅塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991444-36c1f2?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世恒河\",\n    \"author\": \"乔治・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫卧儿帝国\",\n    \"author\": \"H.G.基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053571-9577f0?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犍陀罗文明史\",\n    \"author\": \"孙英刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045543-bc6145?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇位之争\",\n    \"author\": \"贾杜纳斯・萨卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043626-79ec52?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽暗国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：受伤的文明\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038451-62394a?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：百万叛变的今天\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季风帝国\",\n    \"author\": \"理查德・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度佛教史\",\n    \"author\": \"平川彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的印度通史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023724-9ae83b?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Association of Small Bombs\",\n    \"author\": \"Mahajan Karan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023568-86906f?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之都\",\n    \"author\": \"拉纳・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度，漂浮的次大陆\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西天到中土\",\n    \"author\": \"西天中土项目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甘地自传\",\n    \"author\": \"甘地\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008160-0e39e0?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推开红酒的门\",\n    \"author\": \"王胜寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502554-c90c21?p=8866\",\n    \"category\": \"葡萄酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把这瓶开了！\",\n    \"author\": \"玛德琳・帕克特/贾斯汀琳・海默克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866\",\n    \"category\": \"葡萄酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬功夫：助你精进的八大硬核技能\",\n    \"author\": \"崔诚靓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866\",\n    \"category\": \"心智\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变提问，改变人生（原书第3版）\",\n    \"author\": \"梅若李・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866\",\n    \"category\": \"心智\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化自我\",\n    \"author\": \"吉娜・聂夫/唐恩・娜芙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零起点Python大数据与量化交易\",\n    \"author\": \"何海群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小散逆袭：手把手教你做量化定投\",\n    \"author\": \"万磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益融合战法\",\n    \"author\": \"约翰・帕利卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜一切市场的人\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化投资策略\",\n    \"author\": \"理查德・托托里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读量化投资\",\n    \"author\": \"忻海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开量化投资的黑箱（原书第2版）\",\n    \"author\": \"里什・纳兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潮来潮去：海关与中国现代性的全球起源\",\n    \"author\": \"方德万\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866\",\n    \"category\": \"海关\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子夜（果麦经典）\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000102-ac0b0d?p=8866\",\n    \"category\": \"矛盾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人世间（全三册）\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038496-ed84a7?p=8866\",\n    \"category\": \"矛盾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然万物科普百科（套装共2册）\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866\",\n    \"category\": \"大自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命前夕的图书世界\",\n    \"author\": \"罗伯特・达恩顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498648-a7b92b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎陷落\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499338-db0284?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命史译丛（套装共六册）\",\n    \"author\": \"哈里・狄金森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506574-7351e2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西双皇后\",\n    \"author\": \"南希・戈德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与革命心理学\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为公民\",\n    \"author\": \"皮埃尔・罗桑瓦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511836-25cf44?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命和拿破仑\",\n    \"author\": \"林恩・亨特/杰克・R. 森瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512043-6f670b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨果文集（全12册）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513198-97bfd1?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西世界史\",\n    \"author\": \"帕特里克・布琼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513288-07aed4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弥补\",\n    \"author\": \"科隆布・施内克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002862-a99b5a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯卡与玫瑰奶奶\",\n    \"author\": \"埃里克-埃马纽埃尔·施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002568-5d28cc?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论爱美\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的爱\",\n    \"author\": \"埃里克-埃马纽埃尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002421-00aa03?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·德·莱斯案\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平静的风暴\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001590-272377?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不正经的卢浮宫\",\n    \"author\": \"西塞尔・巴隆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国文学经典译丛（共6本）\",\n    \"author\": \"乔治・桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997660-f91dd1?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与法兰西第一帝国\",\n    \"author\": \"威廉・奥康纳・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996736-b9c328?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红项圈\",\n    \"author\": \"让-克利斯托夫·吕芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996508-05afae?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地心游记（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色睡莲\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994783-a62041?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史性的体制\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰上斯芬克斯\",\n    \"author\": \"儒尔・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰传\",\n    \"author\": \"安德烈・莫洛亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫三部曲\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990385-be527b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可怕的孩子\",\n    \"author\": \"让・谷克多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990043-5f0e5f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个来自远方的故事（短经典）\",\n    \"author\": \"让-克利斯托夫・吕芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990028-c5cf11?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯科塔的太阳\",\n    \"author\": \"洛朗・戈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989932-49b7ce?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字传奇\",\n    \"author\": \"袁筱一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989881-f84d16?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜小说集（套装共4册）\",\n    \"author\": \"居斯塔夫・福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989761-e1636e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学法兰西\",\n    \"author\": \"普利西拉・帕克赫斯特・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与戛纳\",\n    \"author\": \"蒂耶里・福茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要塞（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985693-c622f6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的大地（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子（成为小王子系列）\",\n    \"author\": \"小王子（成为小王子系列）\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985462-e42ce2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活的隐喻（二十世纪西方哲学经典）\",\n    \"author\": \"保罗・利科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985294-b76e94?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方邮航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985288-11c68c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空军飞行员（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹病房\",\n    \"author\": \"朱利安・桑德勒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983974-3ed4fc?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德里达（牛津通识读本）\",\n    \"author\": \"西蒙・格伦迪宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的幽灵：文学与常识\",\n    \"author\": \"安托万・孔帕尼翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052251-1b4968?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空之蓝\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052230-fa9975?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗丹艺术论\",\n    \"author\": \"奥古斯特・罗丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052005-e1851b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙田全集（套装共4册）\",\n    \"author\": \"蒙田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051849-bb912e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群氓的狂欢\",\n    \"author\": \"塞奇・莫斯科维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能性\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火光之色\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051579-ec6e6c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗盘\",\n    \"author\": \"马蒂亚斯・埃纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051156-4846ed?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪念天使协奏曲\",\n    \"author\": \"埃里克-埃马纽埃尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050433-94333a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《荒岛》及其他文本\",\n    \"author\": \"吉尔・德勒兹/大卫・拉普雅德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"导体\",\n    \"author\": \"克洛德・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049389-41abeb?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枫丹白露宫\",\n    \"author\": \"蒂埃里・萨尔芒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴尔特文集（套装）\",\n    \"author\": \"罗兰・巴尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（果麦经典）\",\n    \"author\": \"普罗斯珀・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辫子\",\n    \"author\": \"莱蒂西娅・科隆巴尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047979-c242df?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃梅短篇小说精选\",\n    \"author\": \"马塞尔・埃梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046686-e8fde9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"居里夫人自传（果麦经典）\",\n    \"author\": \"玛丽・居里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046320-31d73f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（果麦经典）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046152-a5184c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别列津纳河\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命\",\n    \"author\": \"维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞纳河畔的一把椅子\",\n    \"author\": \"阿明・马洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式诱惑\",\n    \"author\": \"伊莱恩・西奥利诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名人传（译文经典）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042477-5d0e3f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困在宜家衣柜里的苦行僧\",\n    \"author\": \"罗曼・普埃尔多拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042039-20cc0f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的声音\",\n    \"author\": \"米歇尔・维诺克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041064-ba5df3?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义是一种人道主义（译文经典）\",\n    \"author\": \"让-保罗・萨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039642-f8eb49?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间的诗学（译文经典）\",\n    \"author\": \"加斯东・巴什拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"议程\",\n    \"author\": \"埃里克・维亚尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039354-676672?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自遗忘的最深处\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039075-4c44c6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样你就不会迷路\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039021-60295e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用主义和语用论\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消费社会\",\n    \"author\": \"让・鲍德里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎仗剑寻书记\",\n    \"author\": \"阿图罗・佩雷斯-雷维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035358-e49843?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡利古拉\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流亡与独立王国\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035040-722b2f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034953-de3083?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方之星\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034878-849ebc?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反与正·婚礼集·夏\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·布拉斯（名著名译丛书）\",\n    \"author\": \"勒萨日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034791-747b5e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034764-a88dde?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034710-aee0ac?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式优雅\",\n    \"author\": \"弗雷德里克・维塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都兰趣话（名著名译丛书）\",\n    \"author\": \"奥诺雷・德・巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034479-984c05?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下巴黎\",\n    \"author\": \"洛朗・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异乡人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033951-f2a1e6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类不平等的起源和基础（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"6点27分的朗读者\",\n    \"author\": \"让-保尔・迪迪耶洛朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033048-452f4a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与你重逢\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032469-49b649?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与毁灭\",\n    \"author\": \"彼得・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被诅咒的部分\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑三世与法兰西第二帝国\",\n    \"author\": \"皮埃尔・德・拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影是什么？\",\n    \"author\": \"安德烈・巴赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真汉\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029955-6e8063?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个火枪手（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028785-d4755a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（经典译林）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"链接未找到\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他跟我聊到樱桃树、灰尘以及一座山\",\n    \"author\": \"安东尼・帕耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028206-7f784d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴特文选（全6册）\",\n    \"author\": \"罗兰・巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜的草\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027684-2969f4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒谬的墙\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜月旅行\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027522-eb2fb2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米赫尔\",\n    \"author\": \"弗雷德里克・米斯特拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027495-1c4f2a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（读客经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月的星期天\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027435-819263?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地铁姑娘扎姬\",\n    \"author\": \"雷蒙・格诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027417-3b5646?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不乖的哲学家\",\n    \"author\": \"罗朗・古内尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027357-6fca3e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交际花盛衰记（企鹅经典）\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027228-7f0546?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流动的盛宴（果麦经典）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027051-6a3fc0?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包法利夫人\",\n    \"author\": \"福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026808-2efd7e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨人传（译文名著典藏）\",\n    \"author\": \"拉伯雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026739-9c8fe8?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当美拯救我们\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走，一堂哲学课\",\n    \"author\": \"弗里德里克・格鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（果麦经典）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窄门（果麦经典）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024099-8f56cf?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督山伯爵（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻影恐惧\",\n    \"author\": \"亚当・查莫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021573-27153d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶之花\",\n    \"author\": \"夏尔・波德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020898-48caea?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风沙星辰\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019329-972eda?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔之歌\",\n    \"author\": \"蕾拉・斯利玛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017928-dad628?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（译文名著精选）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017592-9191d1?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫Ⅲ：何谓永恒\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017004-62308e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫I：虔诚的回忆\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016569-c1efc9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫Ⅱ：北方档案\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016566-788ff4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非普通人系列（套装共6册）\",\n    \"author\": \"弗雷德里克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015228-fba95a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多拉・布吕代\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014472-b52db7?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十七度二（译文经典）\",\n    \"author\": \"菲利普・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013452-6e212b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家谱\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012681-1ffe87?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废墟的花朵\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012504-c2ae8c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷影子的人\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011811-525654?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天上再见\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010554-368938?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪全集（小说卷）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009885-1f723b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到那一天\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青春咖啡馆\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009726-977513?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008871-2380b6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（套装上中下册）\",\n    \"author\": \"雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八十天环游地球（译文名著精选）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007725-e9294d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十年后（套装上下册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007203-5ad2db?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众：大众心理研究（修订版）\",\n    \"author\": \"古斯塔夫·勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧院魅影（译文名著精选）\",\n    \"author\": \"卡斯顿・勒胡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006849-571d7d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你们再也不写了？（短经典）\",\n    \"author\": \"洛朗丝・柯赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006438-e0248f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫廷社会（译文经典）\",\n    \"author\": \"诺贝特・埃利亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代哲学的智慧（译文经典）\",\n    \"author\": \"皮埃尔・阿多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006372-3fb9a1?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国知识分子史\",\n    \"author\": \"吕一民/朱晓罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无尽的谈话\",\n    \"author\": \"莫里斯・布朗肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005043-e237a2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的池塘（短经典）\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004749-de3f5a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论美国的民主（全2册）\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997912-ae03bf?p=8866\",\n    \"category\": \"民主\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽签与民主、共和\",\n    \"author\": \"王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866\",\n    \"category\": \"民主\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾准文集\",\n    \"author\": \"顾准\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866\",\n    \"category\": \"民主\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主新论（套装2册）\",\n    \"author\": \"乔万尼・萨托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007968-d5ef21?p=8866\",\n    \"category\": \"民主\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命\",\n    \"author\": \"维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"33场革命\",\n    \"author\": \"卡内克・桑切斯・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034071-1f266c?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的转型\",\n    \"author\": \"诺姆・马格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛虻\",\n    \"author\": \"艾捷尔・丽莲・伏尼契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012474-cb8e19?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红岩\",\n    \"author\": \"罗广斌/杨益言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009657-7a2398?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凋零\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙子兵法青少版（作家榜经典文库）\",\n    \"author\": \"孙武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493158-bd5029?p=8866\",\n    \"category\": \"启蒙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：基础学习篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866\",\n    \"category\": \"Linux\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：服务器架设篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866\",\n    \"category\": \"Linux\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Linux就该这么学\",\n    \"author\": \"刘遄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020865-7cfd40?p=8866\",\n    \"category\": \"Linux\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Linux环境编程：从应用到内核\",\n    \"author\": \"高峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019278-91aa23?p=8866\",\n    \"category\": \"Linux\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯传\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866\",\n    \"category\": \"亚马逊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊编年史\",\n    \"author\": \"宁向东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866\",\n    \"category\": \"亚马逊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯的数字帝国\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866\",\n    \"category\": \"亚马逊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊效应\",\n    \"author\": \"娜塔莉・伯格/米娅・奈茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866\",\n    \"category\": \"亚马逊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度营养\",\n    \"author\": \"凯瑟琳・沙纳汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866\",\n    \"category\": \"营养\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是你吃出来的\",\n    \"author\": \"夏萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866\",\n    \"category\": \"营养\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总觉得饿？\",\n    \"author\": \"大卫. 路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866\",\n    \"category\": \"营养\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界奇幻地图\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501741-13c2f5?p=8866\",\n    \"category\": \"航海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海盗时代\",\n    \"author\": \"海盗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866\",\n    \"category\": \"航海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与情商\",\n    \"author\": \"张小宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866\",\n    \"category\": \"自信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信思考\",\n    \"author\": \"泉忠司著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866\",\n    \"category\": \"自信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为什么离开高盛\",\n    \"author\": \"格雷格・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866\",\n    \"category\": \"高盛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高盛帝国（套装上下册）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023976-b41d46?p=8866\",\n    \"category\": \"高盛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾小吃全书\",\n    \"author\": \"焦桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的24则运算\",\n    \"author\": \"林婉瑜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000729-a46ceb?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在台湾发现历史\",\n    \"author\": \"杨渡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982489-7f9cfb?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫中的恋人\",\n    \"author\": \"陈雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053472-87b733?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨狗空间\",\n    \"author\": \"卧斧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051516-baea86?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬将军来的夏天\",\n    \"author\": \"甘耀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033342-c27b37?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来前书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来后书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾风云（1368-1683）\",\n    \"author\": \"张嵚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029589-c7bec5?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有神的所在 ：私房阅读《金瓶梅》\",\n    \"author\": \"侯文咏\",\n    \"link\": \"链接未找到\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十三年梦\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027630-221dda?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邦查女孩\",\n    \"author\": \"甘耀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026436-0c6072?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷震传\",\n    \"author\": \"范泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞的游戏\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023985-064394?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由之魂\",\n    \"author\": \"刘台平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春灯公子\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016404-86542e?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的优雅\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014619-e2d4f6?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都市速写簿\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直航台海：我在台湾牢狱的日子\",\n    \"author\": \"张力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012021-e78d70?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾这些年所知道的祖国\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们台湾这些年\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011574-9729a0?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们台湾这些年2\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011571-5ec4cc?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是台湾，这才是台湾\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011721-b791c3?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老兵自述：我在台湾40年\",\n    \"author\": \"于秀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009210-bceb7c?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房思琪的初恋乐园\",\n    \"author\": \"林奕含\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008127-c9eeda?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统一大业（合订本）\",\n    \"author\": \"郭晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南渡北归（增订版）套装\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴立宁的传记与文集\",\n    \"author\": \"戴立宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴的故事（全六册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866\",\n    \"category\": \"文艺复兴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海都物语\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866\",\n    \"category\": \"文艺复兴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华方法\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键的少数\",\n    \"author\": \"乔恩・卡岑巴赫/詹姆斯・托马斯/格雷琴・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997447-983a7c?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫经营实录（共5册）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995602-63c5f5?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法（口袋版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轻战略：量子时代的敏捷决策\",\n    \"author\": \"许正\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健经营哲学系列（套装共3册）\",\n    \"author\": \"张小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王道的经营（套装共6册）\",\n    \"author\": \"施振荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义系列（共四册）\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米巴核能\",\n    \"author\": \"胡八一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027267-f8932f?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左脑思考，右脑执行\",\n    \"author\": \"罗森维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026472-343411?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服亚马孙\",\n    \"author\": \"埃德・斯塔福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅰ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅰ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬：极地求生700天\",\n    \"author\": \"阿尔弗雷德・兰辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫图腾（套装共5册）\",\n    \"author\": \"闫志洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理日记（套装1-9册）\",\n    \"author\": \"西西弗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生少年生存小说系列（全6册）\",\n    \"author\": \"贝尔·格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地密码（珍藏版大全集）\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教史（套装共2册）\",\n    \"author\": \"胡斯托・冈萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866\",\n    \"category\": \"基督教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代巨人：明末耶稣会士在中国的故事\",\n    \"author\": \"邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866\",\n    \"category\": \"基督\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（全4册）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014469-ed82dc?p=8866\",\n    \"category\": \"傅雷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雕刻大地\",\n    \"author\": \"林璎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499059-e0fff6?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清华建筑小史全系套装（套装共6册）\",\n    \"author\": \"孙大章等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500016-12c10e?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珞珈筑记\",\n    \"author\": \"刘文祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499812-bde5c1?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑与历史文化精选（套装共5本）\",\n    \"author\": \"汪荣祖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古寺巡礼\",\n    \"author\": \"和辻哲郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509676-6befb2?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界建筑漫游指南（套装共6册）\",\n    \"author\": \"陈文捷等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511977-1ed179?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的建筑有多重？\",\n    \"author\": \"迪耶・萨迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003549-268c81?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不只中国木建筑\",\n    \"author\": \"赵广超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构是什么\",\n    \"author\": \"詹姆斯・爱德华・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到你的世界\",\n    \"author\": \"莎拉・威廉姆斯・戈德哈根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的城墙与城门\",\n    \"author\": \"喜仁龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044700-c36d74?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建筑改变日本\",\n    \"author\": \"伊东丰雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邬达克\",\n    \"author\": \"卢卡・彭切里尼/尤利娅・切伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日14：家宅\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025449-ebed98?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八面来风\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014949-70bd3c?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晨钟暮鼓\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红墙黄瓦\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014904-b28aee?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反建筑\",\n    \"author\": \"伊东丰雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014718-1944d8?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方建筑小史\",\n    \"author\": \"陈杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报一看就懂\",\n    \"author\": \"薛兆亨/徐林宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509232-8957d6?p=8866\",\n    \"category\": \"财报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报就像一本兵法书\",\n    \"author\": \"刘顺仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866\",\n    \"category\": \"财报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让财报说话\",\n    \"author\": \"郑永强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866\",\n    \"category\": \"财报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂财报\",\n    \"author\": \"肖星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866\",\n    \"category\": \"财报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据资本时代\",\n    \"author\": \"Viktor Mayer-Schnberger\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据呈现之美\",\n    \"author\": \"凌祯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988333-c13fbe?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诚实的信号\",\n    \"author\": \"阿莱克斯・彭特兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用数据解决实际问题\",\n    \"author\": \"柏木吉基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984538-3d33ff?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化自我\",\n    \"author\": \"吉娜・聂夫/唐恩・娜芙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高阶运营\",\n    \"author\": \"龙共火火\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据的真相\",\n    \"author\": \"约翰・H. 约翰逊/迈克・格鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法霸权\",\n    \"author\": \"凯西・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利用Python进行数据分析\",\n    \"author\": \"Wes McKinney\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017943-1de00a?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能数据\",\n    \"author\": \"比约恩・布劳卿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用数据讲故事\",\n    \"author\": \"Cole Nussbaumer Knaflic\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016071-ab97a7?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信号与噪声\",\n    \"author\": \"纳特・西尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012051-590465?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林童话全集（套装共3册）\",\n    \"author\": \"格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006672-9efda3?p=8866\",\n    \"category\": \"格林童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听你的\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日郊外的旅店\",\n    \"author\": \"安娜-卡埃勒・雨昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038115-2ded2b?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而为猫挺好的\",\n    \"author\": \"猫小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪认知\",\n    \"author\": \"尹惟楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福需要等待\",\n    \"author\": \"安娜・戈华达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030705-407eec?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水经注套装全五册（全本全注全译）\",\n    \"author\": \"郦道元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491544-98a70b?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶经 续茶经（全本全注全译）\",\n    \"author\": \"杜斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十四史：文白对照版（全12册）\",\n    \"author\": \"《二十四史》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509637-6f1905?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明年谱长编（全四册）\",\n    \"author\": \"束景南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004326-b1739c?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书杂志\",\n    \"author\": \"王念孙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史学要籍丛刊\",\n    \"author\": \"左丘明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992179-55d354?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅微草堂笔记（全本全注全译）\",\n    \"author\": \"纪昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985663-f34ed2?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏子春秋校注（中华国学文库）\",\n    \"author\": \"张纯一撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拾遗记（全本全注全译）\",\n    \"author\": \"王兴芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983911-a2e9a3?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劝学篇（全本全注全译）\",\n    \"author\": \"张之洞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983266-6db10e?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳伽蓝记（全本全注全译）\",\n    \"author\": \"尚荣译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书五经（全本全注全译）\",\n    \"author\": \"陈晓芬/徐儒宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053883-1b6ff5?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古籍校勘方法论\",\n    \"author\": \"王瑞来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051468-1a95e2?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋穀梁传（全本全注全译）\",\n    \"author\": \"徐正英/邹皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经典古典名著套装20册\",\n    \"author\": \"司马迁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041949-2c728c?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澄衷蒙学堂字课图说（全8册）\",\n    \"author\": \"刘树屏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典藏书全套装（全61册）\",\n    \"author\": \"胡平生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038349-85eafc?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛弃疾词集（词系列）\",\n    \"author\": \"辛弃疾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029985-edf7ad?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕氏春秋译注（修订本）\",\n    \"author\": \"张双棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深海：探索寂静的未知\",\n    \"author\": \"詹姆斯・内斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866\",\n    \"category\": \"潜水\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语密码\",\n    \"author\": \"冶文彪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493707-543fdf?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樊登讲论语：先进\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502053-71d6f8?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语今读（增订版）\",\n    \"author\": \"李泽厚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语别裁\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透论语\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017736-fae163?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书讲义（中华国学文库）\",\n    \"author\": \"吕留良撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012750-bf36f4?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一座城市，一部历史\",\n    \"author\": \"李永石等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866\",\n    \"category\": \"韩国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"82年生的金智英\",\n    \"author\": \"赵南柱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039924-8e05df?p=8866\",\n    \"category\": \"韩国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可不知的朝韩史\",\n    \"author\": \"杨益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019653-a807c8?p=8866\",\n    \"category\": \"韩国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"素媛\",\n    \"author\": \"苏在沅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015792-2888ba?p=8866\",\n    \"category\": \"韩国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒品史：美国和墨西哥的百年恩怨\",\n    \"author\": \"卡门・博洛萨/迈克・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510021-718e77?p=8866\",\n    \"category\": \"毒品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你说的那个朋友是不是你自己\",\n    \"author\": \"山羊卡罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866\",\n    \"category\": \"搞笑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆笑校园（套装共12册）\",\n    \"author\": \"朱斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866\",\n    \"category\": \"搞笑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子4\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866\",\n    \"category\": \"搞笑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末代沙皇：尼古拉二世的最后503天\",\n    \"author\": \"罗伯特・瑟维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491478-017375?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（名著名译丛书）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死魂灵（名著名译丛书）\",\n    \"author\": \"果戈理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035190-455dfe?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上尉的女儿（企鹅经典）\",\n    \"author\": \"普希金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033594-5c7f0b?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代英雄（企鹅经典）\",\n    \"author\": \"米哈伊尔・莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032583-5401e7?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死屋手记（企鹅经典）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"链接未找到\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027531-e0ac8e?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼王\",\n    \"author\": \"维克托・阿斯塔菲耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008928-ed9c64?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变色龙（译文名著精选）\",\n    \"author\": \"安东・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007737-3fd6bc?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（译文名著精选）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005319-d938bf?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤川次郎作品系列（套装共五册）\",\n    \"author\": \"赤川次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048447-5436f5?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下倾歌（共2册）\",\n    \"author\": \"青林之初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045369-5592ba?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大雪无痕（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042507-28ce63?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅盾文学奖传世经典15部装（共33册）\",\n    \"author\": \"李国文等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041607-c640ec?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武志红经典作品合集（套装共4册）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被偷走的人生\",\n    \"author\": \"三七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035772-784a6d?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国著名作家的必读短篇小说集（套装8本）\",\n    \"author\": \"契诃夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035313-d1c72e?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"村上春树长篇代表作品集（套装共10册）\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034989-a89d3c?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"篇篇十万+：朋友圈的戎马江湖（套装共11册）\",\n    \"author\": \"咪蒙/张小娴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034755-6f1025?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学百年经典（套装三册）\",\n    \"author\": \"李朝全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"归乡\",\n    \"author\": \"尤凤伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034413-483475?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔维诺精选作品集（套装23册）\",\n    \"author\": \"伊塔洛・卡尔维诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034284-3a66b1?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朔文集（典藏版）\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"速求共眠\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033828-cbebcf?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"严歌苓小说精选（10册套装）\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033429-3c24c1?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"严歌苓长篇精品（套装共3册）\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031872-89a7fd?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈阁是座城\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031431-3b1b40?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石黑一雄中英双语作品集（套装共8册）\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031413-441a7b?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊恩·麦克尤恩作品集（套装共15册）\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030873-4d30db?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈希我疼痛小说三部曲\",\n    \"author\": \"陈希我\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030783-193739?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟藏\",\n    \"author\": \"老王子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030411-768a7d?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师精选典藏系列套装33册\",\n    \"author\": \"林徽因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李劼人文学作品合集（套装九册）\",\n    \"author\": \"李劼人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028308-3a0522?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街道江湖\",\n    \"author\": \"王占黑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028230-cbb04c?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郎骑竹马来\",\n    \"author\": \"半夏\",\n    \"link\": \"链接未找到\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027516-22199b?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿耐精选作品集（套装共5册）\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026907-4e8ab6?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薛忆沩作品（共6册）\",\n    \"author\": \"薛忆沩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024573-1a5905?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天黑得很慢\",\n    \"author\": \"周大新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022179-0f5935?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷失的军刺\",\n    \"author\": \"火狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019152-9eb6d7?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说部之乱\",\n    \"author\": \"朱岳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017805-d00a95?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲马\",\n    \"author\": \"默音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016590-59b466?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芳华\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015696-61e77a?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷崎润一郎精选集（套装共11册）\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014514-989557?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈悲\",\n    \"author\": \"路内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013974-4df8cd?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原上的摩西\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013002-6e48be?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫城七日\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012729-5d6efa?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天浴\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011631-d26689?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丙申故事集\",\n    \"author\": \"弋舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011514-e0566b?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桃之夭夭\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011418-b385c2?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏菲的世界（贾德名作系列三部曲）\",\n    \"author\": \"乔斯坦・贾德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011355-c8762d?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米奇·阿尔博姆作品系列套装（套装共5册）\",\n    \"author\": \"米奇・阿尔博姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011112-201397?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏威夷史诗(共2册）\",\n    \"author\": \"詹姆斯・米切纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010758-140387?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿游戏（套装共3册）\",\n    \"author\": \"苏珊・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010443-27b9b4?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妹头\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010377-d27ee2?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹·布朗作品系列（套装共6册）\",\n    \"author\": \"丹・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010287-e7276e?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出梁庄记\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等等灵魂\",\n    \"author\": \"李佩甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008343-34970f?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆作品系列套装（套装共13本）\",\n    \"author\": \"威廉・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007653-8459d0?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮躁\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005049-2a2f9d?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦腔\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005046-8b111a?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废都\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004731-02bb60?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED说话的力量\",\n    \"author\": \"阿卡什·P.卡里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866\",\n    \"category\": \"表达\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做一场精彩的演讲\",\n    \"author\": \"琼・戴兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866\",\n    \"category\": \"表达\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴演讲\",\n    \"author\": \"朱迪思・汉弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866\",\n    \"category\": \"表达\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效资产管理（典藏版）\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866\",\n    \"category\": \"资产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十分钟智商运动\",\n    \"author\": \"李永乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984940-6dc445?p=8866\",\n    \"category\": \"趣味\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全新万物简史\",\n    \"author\": \"鲍勃・伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866\",\n    \"category\": \"趣味\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中译经典文库•世界文学名著精选50册\",\n    \"author\": \"中国对外翻译出版公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译大师谈翻译：译家之言套装\",\n    \"author\": \"许渊冲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500748-930d1b?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丽声指南针英语名著分级读物高中版第三级（套装共6册）\",\n    \"author\": \"Joanna Davidson等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506067-2ec3d5?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布莱森英语简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001344-4ed33f?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱歌川英语学习大全（套装共5册）\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威超级英雄双语故事集（套装共10本）\",\n    \"author\": \"美国漫威公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053103-e6f1dc?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《自然》百年科学经典（第一卷）\",\n    \"author\": \"赫胥黎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津国际关系手册\",\n    \"author\": \"罗伯特・基欧汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（八）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043593-cd4e90?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（七）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043164-770743?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（三）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043062-c23c04?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王佐良全集（套装共12卷）\",\n    \"author\": \"王佐良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042960-41e26a?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（五）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042861-1cb1cb?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（二）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042696-3e0f87?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被解释的美\",\n    \"author\": \"金雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041943-2f0dec?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语写作手册：风格的要素\",\n    \"author\": \"威廉・斯特伦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语民族史（套装共4本）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023793-341588?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再会，契普斯先生\",\n    \"author\": \"詹姆斯・希尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021627-c108f7?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Sense of Style\",\n    \"author\": \"Steven Pinker\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021594-60f68e?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无聊的魅力\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1368个单词就够了\",\n    \"author\": \"王乐平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译的技巧\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015609-4aebb7?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语的故事\",\n    \"author\": \"戴维・克里斯特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013851-0cea4d?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功就靠这点破英语\",\n    \"author\": \"孙铁麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011910-c8a840?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟各国人都聊的来\",\n    \"author\": \"本尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外语是怎样学会的\",\n    \"author\": \"王初明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨提亚冥想\",\n    \"author\": \"约翰・贝曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866\",\n    \"category\": \"冥想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新情商\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866\",\n    \"category\": \"冥想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用安静改变世界\",\n    \"author\": \"拉塞尔・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023886-49af84?p=8866\",\n    \"category\": \"冥想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平面设计200年\",\n    \"author\": \"史蒂文・海勒/西摩・切瓦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510684-c22f94?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意选择\",\n    \"author\": \"肯・科钦达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我们阅读时，我们看到了什么\",\n    \"author\": \"彼得・门德尔桑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书籍形态艺术\",\n    \"author\": \"善本出版有限公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985075-19633a?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造境记\",\n    \"author\": \"曾仁臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构是什么\",\n    \"author\": \"詹姆斯・爱德华・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极计算\",\n    \"author\": \"拉斐尔·A.卡里罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽象城市\",\n    \"author\": \"克里斯托夫・尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计大师的商业课\",\n    \"author\": \"戴维・舍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Design Systems\",\n    \"author\": \"Alla Kholmatova\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031929-0301f2?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点艺术\",\n    \"author\": \"谭力勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日18：设计力\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025413-980d01?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益设计（第2版）\",\n    \"author\": \"Jeff Gothelf\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果首席设计师：乔纳森传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形式感+\",\n    \"author\": \"晋小彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计心理学（全四册）\",\n    \"author\": \"唐纳德・A・诺曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016626-0875e7?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计模式之禅（第2版）\",\n    \"author\": \"秦小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计冲刺\",\n    \"author\": \"杰克・纳普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众妙之门（精装插图版）\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009396-d57366?p=8866\",\n    \"category\": \"迷幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石全集：临川先生文集\",\n    \"author\": \"王水照主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866\",\n    \"category\": \"儒学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法言（全本全注全译）\",\n    \"author\": \"扬雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866\",\n    \"category\": \"儒学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学小史\",\n    \"author\": \"干春松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866\",\n    \"category\": \"儒学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾四书精讲（套装共11册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029571-16066b?p=8866\",\n    \"category\": \"儒学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战：繁荣的幻灭\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战（贝克知识丛书）\",\n    \"author\": \"弗尔克・贝克汉恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彗星年代\",\n    \"author\": \"丹尼尔・舍恩普夫卢格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国与第一次世界大战\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骄傲之塔\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡的灭亡\",\n    \"author\": \"杰弗里・瓦夫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032763-6ef5f4?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022260-f72b1c?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1913，一战前的世界\",\n    \"author\": \"查尔斯・埃默森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019293-a852b8?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩塌的世界\",\n    \"author\": \"梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013923-111e75?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯曼帝国的衰亡\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009525-0dfc4f?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战回忆录（全五卷）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争就是这么回事儿（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图和鸭嘴兽一起去酒吧\",\n    \"author\": \"托马斯・卡斯卡特/丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866\",\n    \"category\": \"冷笑话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海传：叶辛眼中的上海\",\n    \"author\": \"叶辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家肴\",\n    \"author\": \"唐颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁花\",\n    \"author\": \"金宇澄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027180-6130db?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长乐路\",\n    \"author\": \"史明智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Web安全之深度学习实战\",\n    \"author\": \"刘焱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027117-20aa4a?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Flask Web开发\",\n    \"author\": \"Miguel Grinberg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018324-e7bedb?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS禅意花园（修订版）\",\n    \"author\": \"Dave Shea/Mollv E\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通CSS（第2版）\",\n    \"author\": \"Andy Budd/Cameron Moll\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HTML5秘籍\",\n    \"author\": \"Matthew MacDonald\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006540-4fb712?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS设计指南（第3版）\",\n    \"author\": \"Charles Wyke-Smith\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱锺书选唐诗\",\n    \"author\": \"钱锺书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513468-25af5c?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（果麦经典）\",\n    \"author\": \"陈引驰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004200-106e00?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗选注\",\n    \"author\": \"葛兆光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗排行榜\",\n    \"author\": \"王兆鹏/邵大为/张静/唐元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的唐诗课\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043047-73180f?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040122-5a5f09?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说唐诗\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021003-a4fa60?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳大利亚史\",\n    \"author\": \"欧内斯特・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996043-23ee0f?p=8866\",\n    \"category\": \"澳大利亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民发呆的澳洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866\",\n    \"category\": \"澳大利亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸：适合全家人的健身与运动\",\n    \"author\": \"杨克新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051009-b7847b?p=8866\",\n    \"category\": \"拉伸\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸运动系统训练（全彩图解第2版）\",\n    \"author\": \"阿诺德·G.尼尔森/尤卡・科科宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866\",\n    \"category\": \"拉伸\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富是认知的变现\",\n    \"author\": \"舒泰峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490950-03b116?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中高净值人群财富管理的顶层设计（全5册）\",\n    \"author\": \"李升等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491427-50aa01?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资的十项核心原则\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491475-157297?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攻守：可转债投资实用手册\",\n    \"author\": \"饕餮海等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492006-a0e7e3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（原书第3版）（典藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492738-ab0390?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房价的逻辑\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493002-d88db9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级资管\",\n    \"author\": \"乔永远/孔祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为金融学\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497613-50ebe9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师3\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势投资\",\n    \"author\": \"丁圣元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498825-647703?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资者\",\n    \"author\": \"丹尼尔・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资三部曲\",\n    \"author\": \"杰弗里・肯尼迪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498966-b96f00?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识的力量\",\n    \"author\": \"梁宇峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期主义\",\n    \"author\": \"高德威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资核心资产\",\n    \"author\": \"王德伦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资攻略\",\n    \"author\": \"翁量\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资理财红宝书\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非凡的成功\",\n    \"author\": \"大卫・史文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499398-92a3da?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆精解证券分析\",\n    \"author\": \"杰森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499647-43f62c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街教父格雷厄姆传\",\n    \"author\": \"本杰明・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500121-c5ae86?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学4：理财篇\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500430-536636?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同基金常识（10周年纪念版）\",\n    \"author\": \"约翰・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500526-edcefa?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱的属性\",\n    \"author\": \"金胜镐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500652-0252d7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往财富自由之路\",\n    \"author\": \"阿什文・B. 查布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501078-233e0c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"预测：经济、周期与市场泡沫\",\n    \"author\": \"洪灝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、资本与投资\",\n    \"author\": \"丁昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复利信徒\",\n    \"author\": \"李杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509553-ecceff?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势的力量\",\n    \"author\": \"李迅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：嘉信理财持续创新之道\",\n    \"author\": \"查尔斯・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的逻辑与艺术\",\n    \"author\": \"陈侃迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则：成长股投资要义\",\n    \"author\": \"吉姆・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手利弗莫尔的交易精髓\",\n    \"author\": \"李路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的真相\",\n    \"author\": \"极地之鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴芒演义\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510399-e55bd3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高净值人士投资指南\",\n    \"author\": \"潘添礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510582-618a3b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资经典战例之中国恒大\",\n    \"author\": \"正合奇胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510600-59043f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们终将变富\",\n    \"author\": \"兰启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚守\",\n    \"author\": \"约翰・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511698-19f58e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险投资的逻辑与常识\",\n    \"author\": \"莱恩・巴特森/肯・弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512811-ca0121?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服市场的人\",\n    \"author\": \"格里高利・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513291-9c5177?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"方舟：数字经济创新史\",\n    \"author\": \"赵小兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513465-e21bc9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（上）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（下）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513720-6f59ab?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资者的朋友\",\n    \"author\": \"朱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513738-d81882?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特内部讲话\",\n    \"author\": \"孙力科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513780-5bfbe2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图方法（原书第2版）\",\n    \"author\": \"斯蒂芬·W. 比加洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004659-15d3f7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资者的敌人\",\n    \"author\": \"朱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004545-ac76c4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资策略实战分析（原书第4版·典藏版）\",\n    \"author\": \"詹姆斯・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（典藏版）\",\n    \"author\": \"格里高里・莫里斯/赖安・里奇菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为金融与投资心理学（原书第6版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004407-2a20bf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球创新投资\",\n    \"author\": \"睦大均\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆精选集\",\n    \"author\": \"珍妮特・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004341-efe06a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稳赚：提升理财收益的投资工具\",\n    \"author\": \"李红萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资的24堂必修课（典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值发现\",\n    \"author\": \"张靖东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004107-ba8cf8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货狙击手\",\n    \"author\": \"彼得 ·L. 勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004131-eff6fd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常赢投资系列（套装共5册）\",\n    \"author\": \"帕特・多尔西等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆经典投资策略\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、现代化、价值投资与中国\",\n    \"author\": \"李录\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003972-3db08b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒掉你的股票分析师（原书第2版）\",\n    \"author\": \"哈里・多马什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003948-063db9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资至简\",\n    \"author\": \"静逸投资\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003885-267ca3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资交易心理分析（典藏版）\",\n    \"author\": \"布雷特 N. 斯蒂恩博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭周期：自上而下的投资逻辑\",\n    \"author\": \"乔治・达格尼诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003702-297e59?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世风日上\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐远的投资课\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24堂财富课\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002823-f70963?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易圣经\",\n    \"author\": \"布伦特・奔富\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理财就是理生活：6个受益一生的财富思维\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001803-f962c9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富管理的行为金融\",\n    \"author\": \"迈克尔·M.庞皮恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001725-bf1b89?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由新思维\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000711-ebbf11?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值：难点、解决方案及相关案例（原书第3版）\",\n    \"author\": \"阿斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富思维\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000345-3f82f4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"并购估值：构建和衡量非上市公司价值（原书第3版）\",\n    \"author\": \"克里斯・梅林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000339-2527cd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值\",\n    \"author\": \"张磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特和查理·芒格内部讲话\",\n    \"author\": \"丹尼尔・佩科/科里・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999487-966255?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画投资学一看就懂\",\n    \"author\": \"武敬敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999472-902044?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾（珍藏版）\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998941-39104e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识投资（原书第10版）\",\n    \"author\": \"滋维・博迪/亚历克斯・凯恩/艾伦 J. 马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995317-3a8c8c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资21戒\",\n    \"author\": \"本・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数定投实现财务自由\",\n    \"author\": \"姬建东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可撼动的财务自由\",\n    \"author\": \"托尼・罗宾斯/彼得・默劳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"ETF全球投资指南\",\n    \"author\": \"王延巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994768-9ce779?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴比伦富翁新解\",\n    \"author\": \"乔治・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报背后的投资机会\",\n    \"author\": \"蒋豹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大钱细思\",\n    \"author\": \"乔尔・蒂林哈斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资从入门到精通\",\n    \"author\": \"老罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的怪圈\",\n    \"author\": \"贾森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家庭财富保卫攻略\",\n    \"author\": \"王昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直面不确定性\",\n    \"author\": \"大辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险自选手册\",\n    \"author\": \"许春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期投资\",\n    \"author\": \"弗朗西斯科・加西亚・帕拉梅斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991150-020ce0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房法典\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990313-a6a495?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房可以很简单\",\n    \"author\": \"子安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益2\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989473-64fb2e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投机者的告白（实战版）\",\n    \"author\": \"安纳金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券分析（原书第6版）\",\n    \"author\": \"本杰明・格雷厄姆/戴维・多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的常识\",\n    \"author\": \"布拉德福德・康纳尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性市场\",\n    \"author\": \"罗闻全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让财报说话\",\n    \"author\": \"郑永强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水库论坛欧神作品（共2册）\",\n    \"author\": \"欧成效\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无常的博弈\",\n    \"author\": \"陆一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985033-817187?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让时间陪你慢慢变富\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984862-b62e79?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏世民：我的经验与教训\",\n    \"author\": \"苏世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富可敌国（经典版）\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲\",\n    \"author\": \"阿莉森・施拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精明投资者的满分课\",\n    \"author\": \"孙旭东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析圣经\",\n    \"author\": \"理查德·W·夏巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读华尔街（原书第5版）\",\n    \"author\": \"杰弗里 B 利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051507-55c3ee?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易之路\",\n    \"author\": \"陈凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资心理学（原书第5版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人的逻辑\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权、期货及其他衍生产品（原书第9版）\",\n    \"author\": \"约翰・赫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效资产管理（典藏版）\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得懂的金融投资课\",\n    \"author\": \"向松祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资思想史（珍藏版）\",\n    \"author\": \"马克・鲁宾斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050625-389c43?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员\",\n    \"author\": \"杰克D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万富翁快车道\",\n    \"author\": \"MJ·德马科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050346-fb40ee?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的眼睛\",\n    \"author\": \"吴卫军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进我的交易室\",\n    \"author\": \"亚历山大・艾尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的护城河（新版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭交易（原书第2版）\",\n    \"author\": \"约翰・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金股博弈（第4版）\",\n    \"author\": \"弈樊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大熊市启示录（原书第4版）\",\n    \"author\": \"拉塞尔・纳皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书（第2版）\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向投资策略\",\n    \"author\": \"大卫・德雷曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"副业赚钱\",\n    \"author\": \"Angie\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048438-cb560b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易冠军\",\n    \"author\": \"马丁・舒华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个农民的亿万传奇\",\n    \"author\": \"傅海棠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融市场与金融机构（原书第7版）\",\n    \"author\": \"弗雷德里克 S. 米什金/斯坦利 G. 埃金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年一梦（修订版）\",\n    \"author\": \"青泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特波浪理论：研判股市底部与顶部的有效工具\",\n    \"author\": \"拉尔夫·N·艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权：就这么简单\",\n    \"author\": \"韩冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期（珍藏版）\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期2\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经Ⅱ\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046155-96b7bf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股权战争（全新升级版）\",\n    \"author\": \"苏龙飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新金融怪杰\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市遇见凯恩斯\",\n    \"author\": \"约翰 F. 瓦辛科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易（原书第2版）\",\n    \"author\": \"艾琳・奥尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的第一桶金\",\n    \"author\": \"格伦・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历巴菲特股东大会\",\n    \"author\": \"杰夫・马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我如何从股市赚了200万（珍藏版）\",\n    \"author\": \"尼古拉斯・达瓦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂黄金白银投资理财\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资入门与实战技巧\",\n    \"author\": \"王坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌：信息不足时如何做出高明决策\",\n    \"author\": \"安妮・杜克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小散逆袭：手把手教你做量化定投\",\n    \"author\": \"万磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看盘方法与技巧一本通\",\n    \"author\": \"老牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益融合战法\",\n    \"author\": \"约翰・帕利卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白矮星：交易员的心理与交易体系\",\n    \"author\": \"赛博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043554-fc98f2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸系列全集（套装共32册）\",\n    \"author\": \"罗伯特・清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043707-53aa09?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特与索罗斯的投资习惯（纪念版）\",\n    \"author\": \"马克・泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑马波段操盘术（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独立，从财富开始\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌（纪念版）\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"振荡指标MACD（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿过迷雾\",\n    \"author\": \"任俊杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在苍茫中传灯\",\n    \"author\": \"姚斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生Ⅱ\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易员\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市场真相\",\n    \"author\": \"杰克D.施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大破局\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042051-f213e9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步华尔街（原书第11版）\",\n    \"author\": \"伯顿G.马尔基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密硅谷\",\n    \"author\": \"米歇尔 E. 梅西纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定投十年财务自由\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球投资\",\n    \"author\": \"林起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险，高回报\",\n    \"author\": \"皮姆・万・弗利特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041322-fd0d46?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特高收益投资策略\",\n    \"author\": \"吉瓦・拉玛斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债券投资实战\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12年20倍\",\n    \"author\": \"唐彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（原书第3版）\",\n    \"author\": \"格里高里・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的投资组合（珍藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票作手回忆录\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索罗斯传（白金珍藏版）\",\n    \"author\": \"罗伯特・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量价分析\",\n    \"author\": \"安娜・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票基本面分析清单\",\n    \"author\": \"迈克尔・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039261-a095a3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背离技术分析\",\n    \"author\": \"江南小隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中投资\",\n    \"author\": \"艾伦・卡尔普・波尼洛等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事（全新升级版）\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃伦·巴菲特如是说\",\n    \"author\": \"珍妮特・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038517-e8a9af?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的智慧（原书第2版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038406-87e81f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎杀黑马\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038283-074510?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过顶擒龙\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038112-a98e13?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期录\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力K线擒大牛\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极型资产配置指南\",\n    \"author\": \"马丁 J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员（典藏版）\",\n    \"author\": \"杰克 D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇的成功投资（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金怪杰（典藏版）\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市大崩溃前抛出的人（典藏版）\",\n    \"author\": \"伯纳德・巴鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第4版·典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036117-c98548?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨市场交易策略（典藏版）\",\n    \"author\": \"约翰 J. 墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035916-7ada89?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜华尔街（典藏版）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解（典藏版）\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向格雷厄姆学思考，向巴菲特学投资\",\n    \"author\": \"劳伦斯・坎宁安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透股权架构\",\n    \"author\": \"李利威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客户的游艇在哪里（典藏版）\",\n    \"author\": \"小弗雷德・施韦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035148-7cc8c3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特阴谋\",\n    \"author\": \"余治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球证券投资经典译丛（共16卷）\",\n    \"author\": \"拉尔夫・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034941-5999f0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢得输家的游戏（原书第6版）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理财就是理生活\",\n    \"author\": \"艾玛・沈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034665-bb12ef?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务诡计\",\n    \"author\": \"霍华德·M.施利特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活用理财金三角\",\n    \"author\": \"方士维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033393-0eaf41?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚定不移\",\n    \"author\": \"保罗・沃尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢变富\",\n    \"author\": \"张居营\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033147-38eae6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越金融（纪念版）\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透IPO\",\n    \"author\": \"沈春晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂生活中的金融常识\",\n    \"author\": \"陈思进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准投资\",\n    \"author\": \"管清友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032097-a4efc4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养（增订版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴维斯王朝\",\n    \"author\": \"约翰・罗斯柴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031242-bfcf62?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜一切市场的人\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美林传奇\",\n    \"author\": \"小温斯洛普 H.史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好赚钱\",\n    \"author\": \"简七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030909-335fc1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人穷口袋，富人富脑袋\",\n    \"author\": \"曾驿翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济增长的迷雾\",\n    \"author\": \"威廉・伊斯特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事与估值\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企业生命周期\",\n    \"author\": \"伊查克・爱迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股的智慧（第四版）\",\n    \"author\": \"陈江挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029619-c30e77?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务危机\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资的秘密\",\n    \"author\": \"Joel Greenblatt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028044-74e8a0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅱ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027984-a043c5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌金者：长期资本管理公司的升腾与陨落\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027954-43ce5e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的投资思想\",\n    \"author\": \"戴维・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅲ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期论\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信：投资原则篇\",\n    \"author\": \"杰里米・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027714-2bcfdf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势戒律\",\n    \"author\": \"柯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人思维\",\n    \"author\": \"贾森・卡拉卡尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的财富帝国\",\n    \"author\": \"彼得・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Money Master the Game\",\n    \"author\": \"Tony Robbins\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026346-d7e225?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧2\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（学习篇）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师2\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势交易\",\n    \"author\": \"安德烈亚斯 F. 克列诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的玫瑰（全新升级版）\",\n    \"author\": \"但斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022164-b67987?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022098-fc2d5f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私募的进化\",\n    \"author\": \"格上研究中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手回忆录\",\n    \"author\": \"埃德文・拉斐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手操盘术\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股民的眼泪\",\n    \"author\": \"张华桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最富足的投资\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020763-38a84b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亿万：围剿华尔街大白鲨\",\n    \"author\": \"茜拉・科尔哈特卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年（第2版）\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020628-097a89?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：金融之王卡尔·伊坎传\",\n    \"author\": \"马克・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020559-859f48?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的估值逻辑\",\n    \"author\": \"林安霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击败庄家\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融投资400年\",\n    \"author\": \"查尔斯・马凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020064-c7c756?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影子银行内幕：下一个次贷危机的源头（修订版）\",\n    \"author\": \"张化桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的规则\",\n    \"author\": \"张巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019746-4daf20?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值\",\n    \"author\": \"埃斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019614-245776?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"King of Capital\",\n    \"author\": \"David Carey/John E. Morris\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析（原书第10版）\",\n    \"author\": \"罗伯特 D. 爱德华兹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"并购估值\",\n    \"author\": \"克里斯 M. 梅林/弗兰克 C. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019248-0fcfaa?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密交易人的圣杯 &#8211; 卡玛利拉方程\",\n    \"author\": \"何塞・曼纽尔・莫雷拉・巴蒂斯塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018888-a3598c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（原书第4版）\",\n    \"author\": \"沃伦・巴菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018366-414491?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资指南\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3G资本帝国\",\n    \"author\": \"克里斯蒂娜・柯利娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的原则\",\n    \"author\": \"特兰・格里芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017835-758d98?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Momentum Masters\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017724-0cf662?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级强势股：如何投资小盘价值成长股（珍藏版）\",\n    \"author\": \"肯尼斯・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017625-c61710?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报2\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷查理宝典：查理·芒格智慧箴言录\",\n    \"author\": \"查理・芒格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017781-abd324?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"您厉害，您赚得多\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（原书第3版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017424-7fb305?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股的智慧\",\n    \"author\": \"陈江挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017415-1f1d36?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邓普顿教你逆向投资\",\n    \"author\": \"劳伦・邓普顿/斯科特・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017418-95c7db?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲刺白马股\",\n    \"author\": \"启明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30年后，你拿什么养活自己？2\",\n    \"author\": \"高得诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017409-fba58b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Principles\",\n    \"author\": \"Ray Dalio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017202-d00a86?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资中不简单的事\",\n    \"author\": \"邱国鹭等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017031-9bb190?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资中最简单的事\",\n    \"author\": \"邱国鹭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017019-676d89?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌神数学家\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳着踢踏舞去上班\",\n    \"author\": \"卡萝尔・卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的投资者\",\n    \"author\": \"本杰明・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016575-efb66d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得林奇投资经典全集（共3册）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱永不眠：资本世界的暗流涌动和金融逻辑\",\n    \"author\": \"香帅无花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货市场技术分析\",\n    \"author\": \"约翰・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特幕后智囊：查理·芒格传\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作前5年，决定你一生的财富\",\n    \"author\": \"三公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014817-68b046?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌（2017全新修订版）\",\n    \"author\": \"陈楫宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014739-d21b56?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资学手册\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014502-344441?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不落俗套的成功\",\n    \"author\": \"大卫・斯文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球系列（套装共6册）\",\n    \"author\": \"唐朝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013536-91355d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化投资策略\",\n    \"author\": \"理查德・托托里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A股赚钱必修课\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012393-e3ca99?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战上海：决胜股市未来三十年\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读量化投资\",\n    \"author\": \"忻海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开量化投资的黑箱（原书第2版）\",\n    \"author\": \"里什・纳兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特传（纪念版）\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资哲学：保守主义的智慧之灯\",\n    \"author\": \"刘军宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012027-429b8e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货大作手风云录\",\n    \"author\": \"刘强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易：高手训练营\",\n    \"author\": \"埃德・蓬西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：一部历史\",\n    \"author\": \"诺顿・雷默/杰西・唐宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011655-2f93f9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟交易法则（珍藏版）\",\n    \"author\": \"柯蒂斯・费思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贼巢\",\n    \"author\": \"詹姆斯・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会估值，轻松投资\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小花的投资魔法书\",\n    \"author\": \"小花小花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010716-f4a679?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱的爸爸教你实现财务自由\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010704-c5de17?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菜场经济学\",\n    \"author\": \"财上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010680-4deff8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资异类\",\n    \"author\": \"王利杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宽客人生：从物理学家到数量金融大师的传奇\",\n    \"author\": \"伊曼纽尔・德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街幽灵\",\n    \"author\": \"阿瑟・辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随机漫步的傻瓜\",\n    \"author\": \"戴纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"套利的常识\",\n    \"author\": \"章文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009060-a4097b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街潜规则\",\n    \"author\": \"乔舒亚・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非富不可：曹仁超给年轻人的投资忠告\",\n    \"author\": \"曹仁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007572-2aa1dc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"操盘手Ⅰ：自由救赎\",\n    \"author\": \"花荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最需要的理财常识书\",\n    \"author\": \"王华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大牛市・股殇系列（全两册）\",\n    \"author\": \"诸葛就是不亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百箭穿杨\",\n    \"author\": \"小小辛巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非赚不可\",\n    \"author\": \"袁园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股怎能不懂波段\",\n    \"author\": \"宋建文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱（套装全2册）\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克米伦谈期权\",\n    \"author\": \"劳伦斯G.麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金奇才\",\n    \"author\": \"杰克·施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市长线法宝（原书第5版）\",\n    \"author\": \"杰里米J. 西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸穷爸爸\",\n    \"author\": \"罗伯特.T.清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读私募股权基金\",\n    \"author\": \"周炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（精华篇）\",\n    \"author\": \"L·J·瑞德豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街头智慧\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007074-d9d1d7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从20万到30亿：特朗普自传\",\n    \"author\": \"唐纳德・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩根财团\",\n    \"author\": \"罗恩·彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦想与浮沉：A股十年上市博弈（2004～2014）\",\n    \"author\": \"王骥跃/班妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是部金融史（全新修订典藏版）\",\n    \"author\": \"陈雨露/杨栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产江湖\",\n    \"author\": \"肖宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006465-0c5bcc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金到底是什么？\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由选择（珍藏版）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005688-284601?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则\",\n    \"author\": \"吉姆·斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安东尼·波顿的成功投资\",\n    \"author\": \"安东尼·波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短线交易秘诀（原书第2版）\",\n    \"author\": \"拉里·威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门口的野蛮人\",\n    \"author\": \"布赖恩・伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球「岛」系列・投资入门套装（共七册）\",\n    \"author\": \"雪球用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005484-765294?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·聂夫的成功投资（珍藏版）\",\n    \"author\": \"约翰・聂夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生（珍藏版）\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通向财务自由之路（原书第2版·珍藏版）\",\n    \"author\": \"范・撒普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的雪球\",\n    \"author\": \"吕波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样选择成长股\",\n    \"author\": \"菲利普·A·费舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第四版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风生水起：水皮股市创富录\",\n    \"author\": \"水皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004770-b214ba?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些滚雪球的人\",\n    \"author\": \"王星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在此时此刻\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866\",\n    \"category\": \"禅修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅者的初心\",\n    \"author\": \"铃木俊隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866\",\n    \"category\": \"禅修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和繁重的工作一起修行\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029163-8fb11a?p=8866\",\n    \"category\": \"禅修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿布鞋的马云：决定阿里巴巴生死的27个节点\",\n    \"author\": \"王利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866\",\n    \"category\": \"马云\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑大脑回路\",\n    \"author\": \"亚历克斯・科布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052773-076a3d?p=8866\",\n    \"category\": \"抑郁\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去的理由\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866\",\n    \"category\": \"抑郁\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年井上靖\",\n    \"author\": \"宫崎润一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507408-d785fd?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩田先生\",\n    \"author\": \"HOBO日刊ITOI新闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509361-e4316e?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雨琳琅\",\n    \"author\": \"陈新华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509841-8c539e?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书合集（套装共8册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510048-990016?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索恩人物传记生而为王（全13册）\",\n    \"author\": \"汉内斯・默林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传：现代的发明者\",\n    \"author\": \"理查德・芒森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510540-98d20d?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马名人传（全五册）\",\n    \"author\": \"普鲁塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不畏：陆克文自传\",\n    \"author\": \"陆克文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510705-549377?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文\",\n    \"author\": \"泷井一博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴高乐将军（全二册）\",\n    \"author\": \"朱利安・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513408-b5f76e?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找卡夫卡\",\n    \"author\": \"拉德克・马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513639-141090?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常之人\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999418-3ae058?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡：十年二十人\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定人物论\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟南山传\",\n    \"author\": \"叶依\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049332-254452?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾志所向\",\n    \"author\": \"孙中山/许仕廉编著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永久记录\",\n    \"author\": \"爱德华・斯诺登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046221-17fc18?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说说十大日本侵华人物\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045075-ebfb55?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国人物传记（全4册）\",\n    \"author\": \"罗志田/娄岙菲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044847-db4f81?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格调崔永元\",\n    \"author\": \"白安娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042573-8c69e3?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的一生略小于美国现代史\",\n    \"author\": \"凯瑟琳・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039954-7c2c91?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆里尼奥传：葡萄牙制造（修订版）\",\n    \"author\": \"路易斯・洛伦索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师书系（全6册）\",\n    \"author\": \"梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧太后\",\n    \"author\": \"菲利普・威廉姆斯・萨金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找寻真实的蒋介石（套装共2册）\",\n    \"author\": \"杨天石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033129-0da7f4?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猛兽总是独行：鲁迅与他的朋友圈\",\n    \"author\": \"孙玉祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033105-83d7cd?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列一共8册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋经国传\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邬达克\",\n    \"author\": \"卢卡・彭切里尼/尤利娅・切伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生有罪\",\n    \"author\": \"特雷弗・诺亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关羽：神化的《三国志》英雄\",\n    \"author\": \"渡边义浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉：帝国重臣的人生起落\",\n    \"author\": \"范军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027960-c3f3a3?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健传\",\n    \"author\": \"周桦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中2·再认识李小龙\",\n    \"author\": \"约翰・里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025305-200ba5?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家、水手、士兵、间谍\",\n    \"author\": \"尼古拉斯・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟爱华传：洋医生的中国心\",\n    \"author\": \"约翰・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金庸传（修订版）\",\n    \"author\": \"傅国涌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023109-66a0ea?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息，折腾不止\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先知三部曲（套装共三册）\",\n    \"author\": \"伊萨克・多伊彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019818-fab788?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格经典作品集\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019506-ec53cc?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Open\",\n    \"author\": \"Andre Agassi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019482-94cced?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的兴亡\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴敬琏传\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018321-53a373?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠传\",\n    \"author\": \"贝尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017298-68c107?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致所有疯狂的家伙\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章（全三册）\",\n    \"author\": \"张鸿福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的局座：悄悄话\",\n    \"author\": \"张召忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李世民权力的逻辑（全4册）\",\n    \"author\": \"陈唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015375-ee641f?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁思成、林徽因与我\",\n    \"author\": \"林洙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014934-8a35b4?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠的正面与背面\",\n    \"author\": \"徐志频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014202-e625fe?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪与傅斯年（全新修订版）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俾斯麦传\",\n    \"author\": \"艾密尔・鲁特维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013704-70c38a?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张学良的政治生涯\",\n    \"author\": \"傅虹霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人心至上：杜月笙\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米尔·汗：我行我素\",\n    \"author\": \"克里斯蒂娜・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009441-d75778?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫漫自由路\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009420-a23ae5?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾伦・图灵传\",\n    \"author\": \"安德鲁・霍奇斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009402-9c2f8a?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的烤火者：杨绛传\",\n    \"author\": \"慕容素衣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009006-32c036?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坐天下：张宏杰解读中国帝王\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野寒山\",\n    \"author\": \"何善蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天正传\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在火星上退休：伊隆・马斯克传\",\n    \"author\": \"亚当・杰佛逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡斯特罗传\",\n    \"author\": \"克劳迪娅・福丽娅蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007353-db4a05?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库克：苹果的后乔布斯时代\",\n    \"author\": \"冷湖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一战神：韩信\",\n    \"author\": \"姜狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007233-0e5888?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明晚清三部曲\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大变局\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本·拉登传\",\n    \"author\": \"简·萨森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006387-47e6ef?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年袁家\",\n    \"author\": \"王碧蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪的最后二十年\",\n    \"author\": \"陆键东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006321-90dcb0?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战神粟裕\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大太监李莲英全传\",\n    \"author\": \"王牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的正面与侧面\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡雪岩（全三册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国误会了袁世凯\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人译文全集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044202-ce9b41?p=8866\",\n    \"category\": \"译文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇石：来自东西方的报道\",\n    \"author\": \"彼得·海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866\",\n    \"category\": \"译文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣殿骑士团：从神坛跌落尘埃\",\n    \"author\": \"迈克尔・克里根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493314-61cf2a?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑士团九百年\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501162-ae68dd?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪与蛆虫\",\n    \"author\": \"卡洛・金茨堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509391-1e6f1a?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金犀牛\",\n    \"author\": \"富威尔-艾玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次十字军东征\",\n    \"author\": \"彼得・弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱德华一世\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑死病\",\n    \"author\": \"弗朗西斯・艾丹・加斯凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032304-c5b139?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪欧洲\",\n    \"author\": \"理查・威廉・丘奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：中世纪盛期的欧洲\",\n    \"author\": \"威廉・乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪人\",\n    \"author\": \"艾琳・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025578-a85503?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝腓特烈二世的故事（全2册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023466-0fbdd9?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲中世纪史\",\n    \"author\": \"朱迪斯・M・本内特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017151-2a3e9a?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明破晓的世界\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读23：破碎之家\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001347-5914af?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来三十年（修订版）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986467-d00263?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖11：美食漫画万岁\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·与书私奔\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日13：暴走\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025458-0c2c9e?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些消失的文明\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡土中国、江村经济套装\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866\",\n    \"category\": \"乡村\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"望春风\",\n    \"author\": \"格非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008655-3a2be5?p=8866\",\n    \"category\": \"乡村\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股权战争（全新升级版）\",\n    \"author\": \"苏龙飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透股权架构\",\n    \"author\": \"李利威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合伙人制度\",\n    \"author\": \"郑指梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"King of Capital\",\n    \"author\": \"David Carey/John E. Morris\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读私募股权基金\",\n    \"author\": \"周炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为何结婚，又为何不忠\",\n    \"author\": \"海伦・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500571-d4970f?p=8866\",\n    \"category\": \"恋爱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖3\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985279-dd3b48?p=8866\",\n    \"category\": \"魔术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖2\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049356-1b7e9b?p=8866\",\n    \"category\": \"魔术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大魔术师\",\n    \"author\": \"张海帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047799-4641cf?p=8866\",\n    \"category\": \"魔术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866\",\n    \"category\": \"魔术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏执乐观\",\n    \"author\": \"李思拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七次转型\",\n    \"author\": \"罗伯特 A. 伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长五线\",\n    \"author\": \"王赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轻战略：量子时代的敏捷决策\",\n    \"author\": \"许正\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略几何学\",\n    \"author\": \"罗伯特・凯德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能战略\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破现实的困境\",\n    \"author\": \"克里斯・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌22律\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论大战略\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：一部历史\",\n    \"author\": \"劳伦斯・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赚钱的逻辑\",\n    \"author\": \"钱伯鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027744-0af2ee?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：从思维到行动\",\n    \"author\": \"刘学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好战略，坏战略\",\n    \"author\": \"理查德・鲁梅尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商战\",\n    \"author\": \"杰克・特劳特 / 阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是战略\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈允斌顺时生活的智慧（全12册）\",\n    \"author\": \"陈允斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498798-9bff2a?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活蒙太奇\",\n    \"author\": \"天然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饭太稀个人绘本画集合辑\",\n    \"author\": \"饭太稀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼米之乡\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人超会吃\",\n    \"author\": \"王恺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508890-237674?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃和远方\",\n    \"author\": \"程磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509802-3be4da?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简主义改变了我\",\n    \"author\": \"乔舒亚・贝克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511542-2d95fe?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海风电影院\",\n    \"author\": \"吴忠全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513090-0c3561?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠什么都知道\",\n    \"author\": \"海带\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513681-e01d68?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美顺与长生\",\n    \"author\": \"毛建军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513723-731852?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众的反叛\",\n    \"author\": \"何塞・奥尔特加・伊・加塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002775-9ae93e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上收纳\",\n    \"author\": \"蚂小蚁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001383-d555a4?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画生活哲学一看就懂\",\n    \"author\": \"李静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒原来是这么回事儿\",\n    \"author\": \"吉雷克・奥贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡尾酒原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多/亚尼斯・瓦卢西克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪原来是这么回事儿\",\n    \"author\": \"特里斯坦・西卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活需要界限感\",\n    \"author\": \"景天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995263-2bc9b2?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画预防常见病\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金缮生活法\",\n    \"author\": \"坎迪斯・熊井\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995173-3a3c44?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食生活新提案系列（套装共5册）\",\n    \"author\": \"特里斯坦・西卡尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993028-2b5773?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是个年轻人，请你好好生活\",\n    \"author\": \"吕不同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991471-8feb15?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默感\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界竞争\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人生活\",\n    \"author\": \"谷川俊太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989908-bc769a?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人张灯结彩\",\n    \"author\": \"田耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988828-6d4776?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名区+1\",\n    \"author\": \"匿名用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986368-d69b14?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩的就是规则\",\n    \"author\": \"伊恩・伯格斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果没有明天\",\n    \"author\": \"余耕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983716-ce8642?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本风俗小物\",\n    \"author\": \"中川政七商店\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983593-3192f5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄小厨的春夏秋冬\",\n    \"author\": \"黄磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控分寸\",\n    \"author\": \"珍妮・米勒/维多利亚・兰伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准购买\",\n    \"author\": \"塔拉・巴顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053505-96c3ff?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱器皿\",\n    \"author\": \"祥见知生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052851-3d9768?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公园生活\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052704-8e3824?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动的人生整理魔法\",\n    \"author\": \"近藤麻理惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052008-1e4ed5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动的人生整理魔法2\",\n    \"author\": \"近藤麻理惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美之地图\",\n    \"author\": \"米哈埃拉・诺洛茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也要认真穿\",\n    \"author\": \"黎贝卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"久坐不伤身\",\n    \"author\": \"哈丽特・格里菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身创造力\",\n    \"author\": \"斯科特・科克伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡个好觉\",\n    \"author\": \"迈尔・克利格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风格的练习\",\n    \"author\": \"艾莉森・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046617-f68956?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生十二法则\",\n    \"author\": \"乔丹・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精彩人生的一分钟小习惯\",\n    \"author\": \"冲幸子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍谈吃\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044742-1db99f?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖21：酒的全事典\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家的书\",\n    \"author\": \"考薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖19：下午茶时间到\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买买买的乐趣\",\n    \"author\": \"山内麻里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043890-8d74b4?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖17：蔬菜多好吃啊\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖16：大满足！就爱锅料理\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖13：腐的品格\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖14：小聚会教科书\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖10：早餐，真的太重要了\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖11：美食漫画万岁\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖12：厨房，治愈人生的避难所\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖08：自给自足指南书\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖04：肉!肉!肉!\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖05：全宇宙都在吃甜品\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖03：食鲜最高\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大杯咖啡经济学\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041637-5af127?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"26城记\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康零食：知道这些就够了\",\n    \"author\": \"戴尔・沃勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤博士的啤酒札记\",\n    \"author\": \"太空精酿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Unfu*k Yourself\",\n    \"author\": \"Gary John Bishop\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书Ⅱ\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039144-9df9ca?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶与茶器\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10分钟扫除术\",\n    \"author\": \"贝基・拉平竺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036390-b0f5e3?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎美人\",\n    \"author\": \"珍妮・达玛斯/劳伦・巴斯蒂德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李开周说宋史套装（全3册）\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式优雅\",\n    \"author\": \"弗雷德里克・维塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会吃饭\",\n    \"author\": \"珍・克里斯特勒/艾莉莎・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列的诞生（全四册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断网生活\",\n    \"author\": \"贾健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033096-f85ae2?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何畅享啤酒\",\n    \"author\": \"约翰・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032259-138919?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩儿\",\n    \"author\": \"于谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就想开间小小咖啡馆\",\n    \"author\": \"王森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031806-c9aa38?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就想开间自己的小店\",\n    \"author\": \"夏小暖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031782-511b94?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰的咖啡馆\",\n    \"author\": \"佐拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读蒙田，是为了生活\",\n    \"author\": \"萨拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小野兽\",\n    \"author\": \"艾明雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030312-d9a911?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和谐两性：从了解对方到相互吸引（套装共3册）\",\n    \"author\": \"埃德蒙・沙夫茨伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029880-48513c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做二休五\",\n    \"author\": \"大原扁理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029772-21cd6b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一怒之下\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029214-6346e3?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You Are a Badass at Making Money\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再忙也要用心生活\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基本穿搭\",\n    \"author\": \"大山旬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028179-6a7a86?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些伤不起的年轻人\",\n    \"author\": \"二白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027111-bfde42?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑林广记（作家榜经典文库）\",\n    \"author\": \"游戏主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有风吹过厨房\",\n    \"author\": \"食家饭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025518-067637?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日12：断舍离\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025443-003ec0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日24：杂货\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025368-2d5b91?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耕种 食物 爱情\",\n    \"author\": \"克里斯汀・金博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的哲学\",\n    \"author\": \"朱尔斯・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回答不了\",\n    \"author\": \"匡扶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福的完美睡眠法\",\n    \"author\": \"西野精致\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024213-e8d4ce?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四维人类\",\n    \"author\": \"劳伦斯・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明年更年轻\",\n    \"author\": \"克里斯・克劳利/亨利・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话2\",\n    \"author\": \"马薇薇/黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明天我要去冰岛\",\n    \"author\": \"嘉倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简\",\n    \"author\": \"乔舒亚・贝克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023433-7c8ffb?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活上瘾指南\",\n    \"author\": \"姚瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·鱼鸟篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼翅与花椒\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不太多，不太少\",\n    \"author\": \"罗拉・A.阿克斯特伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021063-bc15d6?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命最后的读书会\",\n    \"author\": \"威尔・施瓦尔贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019641-a06ea5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命中最美好的事都是免费的\",\n    \"author\": \"尼尔・帕斯理查\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019473-2bce99?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒健身全集（共4册）\",\n    \"author\": \"保罗・威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019035-5dda2c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Furiously Happy\",\n    \"author\": \"Jenny Lawson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018477-7d1e06?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑幸福：如何活成你想要的模样\",\n    \"author\": \"马克・曼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018303-5054fe?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代艺术150年\",\n    \"author\": \"威尔・贡培兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上来信\",\n    \"author\": \"胡子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，小确幸\",\n    \"author\": \"加肥猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016305-40563d?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡 咖啡\",\n    \"author\": \"齐鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015963-7019a0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把这瓶开了！\",\n    \"author\": \"玛德琳・帕克特/贾斯汀琳・海默克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界咖啡学\",\n    \"author\": \"韩怀宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015366-f832b2?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡咖啡处处开\",\n    \"author\": \"杰里米・托茨/史蒂文・马卡东尼亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015165-adf5d0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻的意义\",\n    \"author\": \"提摩太・凯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014898-c319af?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代的互联网\",\n    \"author\": \"汤姆・斯坦迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹麦人为什么幸福\",\n    \"author\": \"迈克・维金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断舍离\",\n    \"author\": \"山下英子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014298-651b59?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡康永的说话之道\",\n    \"author\": \"蔡康永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014031-30040b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡眠革命\",\n    \"author\": \"尼克・利特尔黑尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：厦门\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的驼峰之旅\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013344-7beb9e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的世外桃源\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013326-79c181?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的狂欢\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013329-02ec90?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去，你的旅行\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013356-e5707c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这书能让你戒烟\",\n    \"author\": \"亚伦・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011292-5c7edf?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪咖的自我修养\",\n    \"author\": \"闫景歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖食：质朴的味道，家的味道\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人时代\",\n    \"author\": \"克莱・舍基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009798-cd52c6?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简主义：活出生命真意\",\n    \"author\": \"乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趣味生活简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在底层的生活\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背包十年\",\n    \"author\": \"小鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上午咖啡下午茶\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的女孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话\",\n    \"author\": \"学诚法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经：我跑故我在\",\n    \"author\": \"乔治・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽烟喝酒防癌书\",\n    \"author\": \"柳垂亮/李万瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007020-4eeab1?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白说\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乖，摸摸头\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙发上的心理学\",\n    \"author\": \"菲利帕・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497946-e0bf91?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"入夜识\",\n    \"author\": \"FL-ZC小花/何敬尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498510-74f5f2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抱住棒棒的自己\",\n    \"author\": \"徐慢慢心理话\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只猫的存在主义思考\",\n    \"author\": \"卡尔・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活蒙太奇\",\n    \"author\": \"天然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝暮集\",\n    \"author\": \"呼葱觅蒜/白落梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的天工开物·绘本版（全三册）\",\n    \"author\": \"一页书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你说的那个朋友是不是你自己\",\n    \"author\": \"山羊卡罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忍不住想打扰你\",\n    \"author\": \"bibi园长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500922-1b9c21?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高木直子系列（套装共4册）\",\n    \"author\": \"高木直子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503232-de6e88?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饭太稀个人绘本画集合辑\",\n    \"author\": \"饭太稀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第2部：卷7~卷12）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508347-d4d29b?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海怪兽\",\n    \"author\": \"彭磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511941-7ee0fe?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的老板不苛责摸鱼的人\",\n    \"author\": \"哎呀我兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513525-565ebf?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠什么都知道\",\n    \"author\": \"海带\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513681-e01d68?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爸爸妈妈，这就是我自己喜欢的！\",\n    \"author\": \"阿斯特丽德・戴斯博尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513690-7699b6?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃郡往事\",\n    \"author\": \"杰夫・勒米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000252-e32b66?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊与狸的四季之旅\",\n    \"author\": \"帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999634-e42cb4?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我离开之后\",\n    \"author\": \"苏西・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第七部：卷37-卷42）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998470-967b6a?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第八部：卷43-卷45）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997591-eabcd8?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第五部：卷25-卷30）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997618-932079?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第六部：卷31-卷36）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997519-73ae65?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第三部：卷13-卷18）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997318-46ced3?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第四部：卷19-卷24）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996397-964930?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第一部：卷1-卷6）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第二部：卷7-卷12）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996145-6743c1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BEASTARS 动物狂想曲（第2部：卷9~卷15）\",\n    \"author\": \"板垣巴留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994582-4fd0a8?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BEASTARS 动物狂想曲（第1部：卷1~卷8）\",\n    \"author\": \"板垣巴留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993796-d76c26?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从早“茫”到晚\",\n    \"author\": \"西沃恩・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990868-fddced?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫兽谱\",\n    \"author\": \"小海/夏雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫海错图\",\n    \"author\": \"夏雪著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫鸟谱\",\n    \"author\": \"小海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990010-138e10?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你总说没事，但我知道你偷偷哭过很多次\",\n    \"author\": \"一禅小和尚诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妖怪大全\",\n    \"author\": \"孙见坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第11部：卷81~卷88）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054771-56c4aa?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第12部：卷89~卷95）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054726-43235d?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第8部：卷57~卷64）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054645-c4772c?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第9部：卷65~卷72）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054474-d26884?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第10部：卷73~卷80）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054366-0dccb2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第5部：卷33~卷40）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054279-6954ac?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第6部：卷41~卷48）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054189-c343d7?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第7部：卷49~卷56）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053856-fdbd3f?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第1部：卷1~卷8）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053607-cae7ea?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第2部：卷9~卷16）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053487-daf28b?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第3部：卷17~卷24）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053508-e33a08?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第4部：卷25~卷32）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053445-22ed13?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造境记\",\n    \"author\": \"曾仁臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装者：巴黎往事\",\n    \"author\": \"蚕蚕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053010-bfbea0?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一见你就好心情\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可怕的中年\",\n    \"author\": \"贾森・黑兹利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052275-fe05f1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅都市生存指南（套装全9册）\",\n    \"author\": \"贾森・黑兹利/乔尔・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜见女皇陛下（套装10册）\",\n    \"author\": \"ZCloud\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050091-232091?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"才不要让你知道\",\n    \"author\": \"方小孬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049062-ca8818?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三分钟漫画汽车史\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第10部：卷65~卷72）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049263-5b61c1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（外传：宇智波莎罗娜）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048198-844218?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第8部：卷49~卷56）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048327-ad09a2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第9部：卷57~卷64）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048300-dcb294?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第5部：卷28~卷34）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047895-7c9166?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第6部：卷35~卷41）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047679-80d7b1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第7部：卷42~卷48）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047649-541ed0?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第3部：卷15~卷21）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047475-b30d93?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第4部：卷22~卷27）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047292-9a2d01?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子（果麦经典）\",\n    \"author\": \"埃·奥·卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046836-36864d?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第1部：卷1~卷7）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第2部：卷8~卷14）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047043-883e2e?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事的开始\",\n    \"author\": \"幾米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆笑校园（套装共12册）\",\n    \"author\": \"朱斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们林地里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们迷人的鸟：猫头鹰\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅与其他海鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱歌的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗小黑战记1\",\n    \"author\": \"MTJJ\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039825-7c8219?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌是我的调色盘\",\n    \"author\": \"夏威夷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034944-4e1c17?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子4\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粗糙食堂\",\n    \"author\": \"莲小兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画古诗文\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而为猫挺好的\",\n    \"author\": \"猫小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的聪明人太多了，我必须为笨蛋争口气！\",\n    \"author\": \"书单狗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子3\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032709-0558a6?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子2\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032409-a7c4f5?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也吸收了猫能量\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰的咖啡馆\",\n    \"author\": \"佐拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪医杜立德（果麦经典）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回答不了\",\n    \"author\": \"匡扶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：苏州·杭州\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站，西藏\",\n    \"author\": \"山小\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·鱼鸟篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·异兽篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021321-ab85f8?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·人神篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡了吗？摘颗星星给你\",\n    \"author\": \"LOST7\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020397-464256?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡不着：Tango一日一画\",\n    \"author\": \"Tango\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017952-e205a1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尾文字鱼\",\n    \"author\": \"伍肆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013374-cb4cf7?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪咖的自我修养\",\n    \"author\": \"闫景歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你今天真好看\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我可以咬一口吗？\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006363-81268e?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我所有的朋友都死了（套装共2册）\",\n    \"author\": \"艾弗里・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"策略：如何在复杂的世界里成为高手\",\n    \"author\": \"江潮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866\",\n    \"category\": \"激励\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三道门\",\n    \"author\": \"亚历克斯・班纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866\",\n    \"category\": \"激励\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不懂员工激励，如何做管理\",\n    \"author\": \"肖祥银\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030405-968764?p=8866\",\n    \"category\": \"激励\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级激励者\",\n    \"author\": \"西蒙・斯涅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866\",\n    \"category\": \"激励\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见野兔的那一年\",\n    \"author\": \"阿托・帕西林纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013932-463f69?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评官员的尺度\",\n    \"author\": \"安东尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生有何意义\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们能做什么\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下铁道\",\n    \"author\": \"科尔森・怀特黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以武论道：李小龙的功夫心法（套装共5册）\",\n    \"author\": \"李小龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866\",\n    \"category\": \"武术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据如何误导了我们\",\n    \"author\": \"桑内・布劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女士品茶\",\n    \"author\": \"戴维・萨尔斯伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512682-fdee18?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原因与结果的经济学\",\n    \"author\": \"中室牧子/津川友介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052284-b4a58c?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据的真相\",\n    \"author\": \"约翰・H. 约翰逊/迈克・格鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单统计学\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤裸裸的统计学\",\n    \"author\": \"查尔斯・惠伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱革命\",\n    \"author\": \"安妮・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490917-6f069c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智造中国\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491232-200000?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则：应对变化中的世界秩序\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492075-4f7b4c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的力量\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492024-2f20d3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·罗杰斯的大预测\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房价的逻辑\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493002-d88db9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温铁军套装（共5册）\",\n    \"author\": \"温铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493437-a29263?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量4\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493833-c77a73?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芯片陷阱\",\n    \"author\": \"马克・拉叙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495186-db8ef2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级资管\",\n    \"author\": \"乔永远/孔祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国资本市场变革\",\n    \"author\": \"肖钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497634-635389?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小白经济学：带你欢快地进入经济学的大门\",\n    \"author\": \"大墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497655-f6b05a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动荡时代\",\n    \"author\": \"白川方明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497670-93f060?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年论中国系列（套装6册）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂碳中和\",\n    \"author\": \"中国长期低碳发展战略与转型路径研究课题组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498108-447de0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：个人、组织如何与风险共舞\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利益相关者\",\n    \"author\": \"克劳斯・施瓦布/彼得・万哈姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498156-b93f87?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条前夜的繁荣与疯狂\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造性破坏的力量\",\n    \"author\": \"菲利普・阿吉翁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498252-63196c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口大逆转\",\n    \"author\": \"查尔斯・古德哈特/马诺杰・普拉丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资者\",\n    \"author\": \"丹尼尔・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大侦探经济学\",\n    \"author\": \"李井奎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499014-c19e74?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业革命前的欧洲社会与经济\",\n    \"author\": \"卡洛·M. 奇波拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国货币史（精校本）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国经济风暴\",\n    \"author\": \"张昕冉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499353-a57622?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资理财红宝书\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹤老师说经济\",\n    \"author\": \"鹤老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499413-bdea83?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球化简史\",\n    \"author\": \"杰弗里・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499440-2ab9ca?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的选择\",\n    \"author\": \"马凯硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厉以宁经济史文集套装\",\n    \"author\": \"厉以宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500088-41a814?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作、消费主义和新穷人\",\n    \"author\": \"齐格蒙特・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500127-368b0a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊群的共识\",\n    \"author\": \"肖小跑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500187-e6d4a0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"置身事内\",\n    \"author\": \"兰小欢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500901-c3b7ff?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪声：人类判断的缺陷\",\n    \"author\": \"丹尼尔・卡尼曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济金融学专业核心课（套装共8册）\",\n    \"author\": \"王文寅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501984-beaef1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"预测：经济、周期与市场泡沫\",\n    \"author\": \"洪灝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储\",\n    \"author\": \"威廉・格雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502575-8350f8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、资本与投资\",\n    \"author\": \"丁昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界钱币2000年\",\n    \"author\": \"伯恩德・克鲁格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503277-39fb14?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事经济学\",\n    \"author\": \"罗伯特・麦基/哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论与生活\",\n    \"author\": \"兰・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507066-43abdb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元真相\",\n    \"author\": \"达尔辛妮・大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的经济学\",\n    \"author\": \"张夏准\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509256-c1030a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链实战：从技术创新到商业模式\",\n    \"author\": \"冒志鸿/陈俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势的力量\",\n    \"author\": \"李迅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变中国\",\n    \"author\": \"张军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509850-d9c207?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩盘：全球金融危机如何重塑世界\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510096-bd2d0a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手利弗莫尔的交易精髓\",\n    \"author\": \"李路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切皆契约\",\n    \"author\": \"聂辉华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510423-f1d70c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"透过经济看国学\",\n    \"author\": \"翁礼华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510531-3f4603?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新增点\",\n    \"author\": \"管清友等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510843-826852?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们终将变富\",\n    \"author\": \"兰启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济2020\",\n    \"author\": \"王德培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511185-ea4e0f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国陷阱\",\n    \"author\": \"诺埃尔・毛雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海星式组织\",\n    \"author\": \"奥瑞・布莱福曼/罗德・贝克斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云上的中国\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511269-087c56?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越财富\",\n    \"author\": \"赵晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511332-7490f1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大营销哲学\",\n    \"author\": \"陈军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511335-35eeb4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从绿到金\",\n    \"author\": \"丹尼尔・埃斯蒂/安德鲁・温斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511350-277a7e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱的千年兴衰史\",\n    \"author\": \"金菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本5000年\",\n    \"author\": \"彭兴庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512352-c23aa4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与中国经济\",\n    \"author\": \"盛松成等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512808-94f8bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金的故事\",\n    \"author\": \"詹姆斯・莱德贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513099-a6d2c2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷搅局者\",\n    \"author\": \"莱斯利・柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美的正义\",\n    \"author\": \"熊秉元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513342-6d19a6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义增长\",\n    \"author\": \"马丁・R.斯塔奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513630-010be2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融激荡300年\",\n    \"author\": \"瀛洲客\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513660-81fac3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513711-251b40?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国怎么了\",\n    \"author\": \"安妮・凯斯/安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端经济\",\n    \"author\": \"理查德・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513786-ca7531?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"账簿与权力\",\n    \"author\": \"雅各布・索尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004521-f2651d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量3\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004476-186d31?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香帅财富报告\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球创新投资\",\n    \"author\": \"睦大均\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资的24堂必修课（典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油的时代\",\n    \"author\": \"王能全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"票据革命\",\n    \"author\": \"张立洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003528-1640ad?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年变局\",\n    \"author\": \"王文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003465-977d4c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争\",\n    \"author\": \"詹姆斯・里卡兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003357-d4da5a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与贫困\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002337-9bd116?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济情操论\",\n    \"author\": \"艾玛・罗斯柴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002307-c67bdb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国出行\",\n    \"author\": \"王千马/何丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002166-292e8e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流媒体时代\",\n    \"author\": \"迈克尔·D.史密斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002094-d7ffa9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易圣经\",\n    \"author\": \"布伦特・奔富\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聚焦\",\n    \"author\": \"布兰登・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001644-216a13?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从工业化到城市化\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001290-856734?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉：AI如何通过数据挖掘误导我们\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技新时代\",\n    \"author\": \"伊夫・埃奥内/埃尔维・芒斯龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的贸易\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的悖论\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（经济篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构性改革\",\n    \"author\": \"黄奇帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997597-3d930f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国真相\",\n    \"author\": \"約瑟夫・斯蒂格利茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新基建：全球大变局下的中国经济新引擎\",\n    \"author\": \"任泽平/马家进/连一席\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣与金融危机（第二版）\",\n    \"author\": \"罗伯特・席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995335-19a9c7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富千年史\",\n    \"author\": \"辛西娅・克罗森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别施舍\",\n    \"author\": \"格里高利・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995314-0d2cae?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价格的发现\",\n    \"author\": \"保尔・米格罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995308-ba31df?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激进市场\",\n    \"author\": \"埃里克·A.波斯纳/E.格伦·韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995302-d77728?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后谷歌时代\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业实战三部曲\",\n    \"author\": \"唐纳德・米勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商从商朝来\",\n    \"author\": \"傅奕群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994669-267453?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴比伦富翁新解\",\n    \"author\": \"乔治・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资从入门到精通\",\n    \"author\": \"老罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响商业的50本书\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻：新全球化时代的中国韧性与创新\",\n    \"author\": \"秦朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖峰对话区块链\",\n    \"author\": \"王峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992212-9a31a5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒经济学\",\n    \"author\": \"约翰・思文/德文・布里斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反直觉\",\n    \"author\": \"理查德・肖顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好奇心杂货铺\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991786-260d2f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识创造管理\",\n    \"author\": \"野中郁次郎/绀野登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991759-1130f2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链浪潮\",\n    \"author\": \"贾英昊/江泽武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991633-222d1d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长危机\",\n    \"author\": \"丹比萨・莫约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险的未来\",\n    \"author\": \"王和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991489-b536e1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球贸易摩擦与大国兴衰\",\n    \"author\": \"任泽平/罗志恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991219-d430c3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球不平等逸史\",\n    \"author\": \"布兰科・米兰诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991216-73f59c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丝绸到硅\",\n    \"author\": \"杰弗里・加滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新货币战争\",\n    \"author\": \"诺伯特・海林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990925-93e06e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代谢增长论\",\n    \"author\": \"陈平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990715-9d84b3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来站在中国这一边\",\n    \"author\": \"宁南山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的经济学\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网四大\",\n    \"author\": \"斯科特・加洛韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国货币史\",\n    \"author\": \"彭信威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事经济学\",\n    \"author\": \"罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基本收入·鹈鹕丛书\",\n    \"author\": \"盖伊・斯坦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990058-b0a6de?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂区块链\",\n    \"author\": \"王腾鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989131-40f05d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（理想国新版）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988420-f2ca45?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球房地产\",\n    \"author\": \"夏磊/任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八次危机\",\n    \"author\": \"温铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987595-1cd401?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李光耀观天下\",\n    \"author\": \"李光耀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券分析（原书第6版）\",\n    \"author\": \"本杰明・格雷厄姆/戴维・多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的处方\",\n    \"author\": \"伊齐基尔・伊曼纽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院时间管理课（修订版）\",\n    \"author\": \"穆然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985804-d73c79?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性市场\",\n    \"author\": \"罗闻全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据驱动的智能城市\",\n    \"author\": \"史蒂芬・戈德史密斯/苏珊・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水库论坛欧神作品（共2册）\",\n    \"author\": \"欧成效\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界不是平的\",\n    \"author\": \"简世勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐铁论（全本全注全译）\",\n    \"author\": \"陈桐生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985165-67a2d3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无霸主的世界经济\",\n    \"author\": \"彼得・特明/戴维・瓦因斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985009-8b5974?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会与经济\",\n    \"author\": \"马克・格兰诺维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984793-a39f61?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是怎么割韭菜的\",\n    \"author\": \"查尔斯・庞兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984592-f438eb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商务思维工具箱系列（套装共3册）\",\n    \"author\": \"HRInstitute\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984514-700431?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）新版\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983944-d80749?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆流行\",\n    \"author\": \"德里克・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处不在\",\n    \"author\": \"中国邮政快递报社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（金融危机完结篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054291-a6d1dc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本经济如何走出迷失\",\n    \"author\": \"三木谷浩史/三木谷良一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054201-9f5f9e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡：十年二十人\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔弗格森谈经济（共3册）\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053535-d2aa30?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与改革：厉以宁文选（套装共4册）\",\n    \"author\": \"厉以宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053469-e816bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量2\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052989-6d9cbb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一学就会的经济学\",\n    \"author\": \"张彩彩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052974-9a4739?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢：有钱人和你想的不一样\",\n    \"author\": \"塞缪尔・斯迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精明投资者的满分课\",\n    \"author\": \"孙旭东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用图表看懂世界经济\",\n    \"author\": \"宫崎勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052677-8ce5f4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拯救资本主义\",\n    \"author\": \"罗伯特・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052308-144997?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原因与结果的经济学\",\n    \"author\": \"中室牧子/津川友介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052284-b4a58c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球金融体系\",\n    \"author\": \"黄海洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051942-839ed7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类网络\",\n    \"author\": \"马修・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱从哪里来\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明斯基时刻\",\n    \"author\": \"兰德尔・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051318-a2c092?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色的羁绊\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人的逻辑\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简斯维尔\",\n    \"author\": \"艾米・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明世界经济史\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051012-e71f74?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家、经济与大分流\",\n    \"author\": \"皮尔・弗里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得懂的金融投资课\",\n    \"author\": \"向松祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与权力\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐秘战争\",\n    \"author\": \"阿里・拉伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币围城\",\n    \"author\": \"约翰・莫尔丁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国经济下半场（套装共25册）\",\n    \"author\": \"陈元/钱颖一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币之惑\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的经济课\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭火：美国金融危机及其教训\",\n    \"author\": \"本・伯南克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币变局\",\n    \"author\": \"巴里・艾肯格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞行为学6\",\n    \"author\": \"丹・艾瑞里/马特・R.特劳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048546-c8fffc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就业、利息与货币通论（去梯言系列）\",\n    \"author\": \"约翰・梅纳德・凯恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047628-8cc56b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“芯”想事成\",\n    \"author\": \"陈芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的起源\",\n    \"author\": \"埃里克・拜因霍克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047400-b0091e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币金融学（原书第2版）\",\n    \"author\": \"弗雷德里克S.米什金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融市场与金融机构（原书第7版）\",\n    \"author\": \"弗雷德里克 S. 米什金/斯坦利 G. 埃金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超脑行为金融学\",\n    \"author\": \"薛冰岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047115-117230?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权：就这么简单\",\n    \"author\": \"韩冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期（珍藏版）\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣与衰退\",\n    \"author\": \"艾伦・格林斯潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油战争\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：中国周边\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市遇见凯恩斯\",\n    \"author\": \"约翰 F. 瓦辛科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火枪与账簿\",\n    \"author\": \"李伯重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有（新版）\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞行为学（全5册）\",\n    \"author\": \"丹・艾瑞里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045105-dcaec5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一个欧洲\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本财经大腕谈中国\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044982-a1df0d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互惠资本主义\",\n    \"author\": \"布鲁诺・罗奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044532-bf397f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人缺什么\",\n    \"author\": \"古古\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈耶克作品（共6册）\",\n    \"author\": \"弗里德里希・奥古斯特・哈耶克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质套装（全3册）\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤老板自述三十年\",\n    \"author\": \"老五/劲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043788-51d196?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林斯潘传\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方经济学说史教程\",\n    \"author\": \"晏智杰编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043584-8bd3af?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从雇佣到自由人\",\n    \"author\": \"吕廷杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（金融危机篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043179-7c4aeb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"振荡指标MACD（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的冲突\",\n    \"author\": \"道格拉斯・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业冒险\",\n    \"author\": \"约翰・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要害怕中国\",\n    \"author\": \"菲利普・巴莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市隐秩序\",\n    \"author\": \"刘春成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042336-7a14a0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"购物凶猛\",\n    \"author\": \"孙骁骥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打造消费天堂\",\n    \"author\": \"连玲玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大破局\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042051-f213e9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大杯咖啡经济学\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041637-5af127?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无论如何都想告诉你的世界史\",\n    \"author\": \"玉木俊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040368-13eaaa?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济2019\",\n    \"author\": \"王德培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040161-184485?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的本质（修订版）\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂营销上\",\n    \"author\": \"戈非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的真谛\",\n    \"author\": \"路易吉・津加莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王道的经营（套装共6册）\",\n    \"author\": \"施振荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的与看不见的\",\n    \"author\": \"巴斯夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038388-dd5409?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期录\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（生活常识篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大浪潮\",\n    \"author\": \"斯蒂芬・拉德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037386-86cf50?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压力测试\",\n    \"author\": \"蒂莫西・盖特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极型资产配置指南\",\n    \"author\": \"马丁 J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债：第一个5000年\",\n    \"author\": \"大卫・格雷伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037263-d306b9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银的故事\",\n    \"author\": \"威廉・L.西尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037239-ead4cb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卧底经济学（套装共4册）\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037194-590484?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与城市发展\",\n    \"author\": \"陈杰/陆铭/黄益平/潘英丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的真相\",\n    \"author\": \"丹尼・罗德里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037065-bd5341?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇的成功投资（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嚣张的特权\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"50人的二十年\",\n    \"author\": \"樊纲/易纲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶大盗\",\n    \"author\": \"萨拉・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由\",\n    \"author\": \"托马斯・斯坦利/萨拉斯坦利・弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掉队的拉美\",\n    \"author\": \"塞巴斯蒂安・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么不平等至关重要\",\n    \"author\": \"托马斯・斯坎伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特阴谋\",\n    \"author\": \"余治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不平等社会\",\n    \"author\": \"沃尔特・沙伊德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的终结\",\n    \"author\": \"安妮・罗瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033516-85ae36?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚定不移\",\n    \"author\": \"保罗・沃尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨变：当代政治与经济的起源\",\n    \"author\": \"卡尔・波兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郁金香热\",\n    \"author\": \"迈克・达什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低增长社会\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032994-77e8ac?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越金融（纪念版）\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化：顶级企业家自述40年成长心法\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的帝国\",\n    \"author\": \"约翰.S.戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画理财课\",\n    \"author\": \"八宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力密码\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032886-a0070a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透信贷\",\n    \"author\": \"何华平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现价格\",\n    \"author\": \"姜洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新规则\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易打造的世界\",\n    \"author\": \"彭慕兰/史蒂文・托皮克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂生活中的金融常识\",\n    \"author\": \"陈思进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济史\",\n    \"author\": \"钱穆/叶龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美林传奇\",\n    \"author\": \"小温斯洛普 H.史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释：王福重金融学通识课\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030924-fca2c3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙特公司\",\n    \"author\": \"埃伦·R.沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史：从货币的起源到货币的未来\",\n    \"author\": \"苗延波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030525-dfd919?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁统治美国？公司富豪的胜利\",\n    \"author\": \"威廉・多姆霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被掩盖的原罪\",\n    \"author\": \"爱德华・巴普蒂斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒：如何用价值观创造价值\",\n    \"author\": \"弗雷德・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廉价的代价\",\n    \"author\": \"拉杰・帕特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029697-5b7480?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国陷阱\",\n    \"author\": \"弗雷德里克・皮耶鲁齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革三部曲\",\n    \"author\": \"吴敬琏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉花帝国\",\n    \"author\": \"斯文・贝克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029418-eec041?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"较量：乐观的经济学与悲观的生态学\",\n    \"author\": \"保罗・萨宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从困境走向成功\",\n    \"author\": \"Pepe Nummi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029271-694df0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞经济\",\n    \"author\": \"蔡湫雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029121-564941?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非商业的逻辑\",\n    \"author\": \"申辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029109-348519?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学的思维方式（套装共2册）\",\n    \"author\": \"托马斯・索维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028518-678150?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过剩之地\",\n    \"author\": \"莫妮卡・普拉萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激情创业\",\n    \"author\": \"于刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富豪的心理\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028158-e90c4b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务危机\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识经济\",\n    \"author\": \"迪恩・卡尔兰/乔纳森・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028074-3310e2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八〇年代\",\n    \"author\": \"柳红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027843-4ff995?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期论\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效管理\",\n    \"author\": \"乔纳森・莱蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不颠覆，就会被淘汰\",\n    \"author\": \"杰・萨米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技\",\n    \"author\": \"张健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026967-ef96b8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小趋势²\",\n    \"author\": \"马克・佩恩/梅勒迪斯・法恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026817-44ce10?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅（原书第2版）\",\n    \"author\": \"皮厄特拉・里佛利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026250-f993f8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈层效应\",\n    \"author\": \"托马斯・科洛波洛斯/丹・克尔德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025653-5dccf9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国增长的起落\",\n    \"author\": \"罗伯特・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025557-5fe21b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贪婪的七宗罪\",\n    \"author\": \"斯图尔特・西姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025005-486788?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币大师\",\n    \"author\": \"埃里克・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024936-eb9734?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值规律\",\n    \"author\": \"水木然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024876-c08f98?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读中国经济（增订版）\",\n    \"author\": \"林毅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"订阅：数字时代的商业变现路径\",\n    \"author\": \"罗伯特・金奇尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024594-662d48?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为什么离开高盛\",\n    \"author\": \"格雷格・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅沟通力系列合集\",\n    \"author\": \"马丁・曼瑟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024171-e3e647?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨大的鸿沟\",\n    \"author\": \"约瑟夫・斯蒂格利茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024129-2ba25b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底特律往事\",\n    \"author\": \"比尔・弗拉斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高盛帝国（套装上下册）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023976-b41d46?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧元的思想之争\",\n    \"author\": \"马库斯・布伦纳迈耶等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023955-ebc85a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的陷阱\",\n    \"author\": \"阿里尔・扎拉奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡土中国、江村经济套装\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识商业\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国风云录（共5册）\",\n    \"author\": \"茜拉・科尔哈特卡等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023586-f64635?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大而不倒\",\n    \"author\": \"安德鲁・罗斯・索尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数文明\",\n    \"author\": \"涂子沛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解增长\",\n    \"author\": \"道格拉斯・洛西科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023250-ff1bb1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学关我什么事\",\n    \"author\": \"文安德・冯・彼特尔斯多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022896-9538ae?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择的悖论\",\n    \"author\": \"巴里・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤裸裸的统计学\",\n    \"author\": \"查尔斯・惠伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的玫瑰（全新升级版）\",\n    \"author\": \"但斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022164-b67987?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年轮回（第三版）\",\n    \"author\": \"沈联涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022110-935967?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022098-fc2d5f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑石的选择\",\n    \"author\": \"彼得・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021963-e5f1f3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的发现\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021693-d754a0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见未来商业（套装共4册）\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义简史\",\n    \"author\": \"于尔根・科卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后日本经济史\",\n    \"author\": \"野口悠纪雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021297-512a7a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济的律动\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021153-d537b4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众经济学\",\n    \"author\": \"帕萨・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021042-91492b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济的本质\",\n    \"author\": \"简·雅各布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021006-706a67?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"比赛中的行为经济学\",\n    \"author\": \"托拜厄斯・莫斯科维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020904-4868bc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崛起大战略\",\n    \"author\": \"新玉言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020853-23b46a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储的诞生\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击败庄家\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动的勇气\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020406-9e3f24?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的时代\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020283-d423d5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薛兆丰经济学讲义\",\n    \"author\": \"薛兆丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020289-11672c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈与社会\",\n    \"author\": \"张维迎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020199-4cd873?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搞定（全三册）\",\n    \"author\": \"戴维・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020034-d97493?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错误的行为+助推+赢家的诅咒\",\n    \"author\": \"理查德・塞勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019986-7e603f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横越未知\",\n    \"author\": \"周健工\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019683-4e86be?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱：7步创造终身收入\",\n    \"author\": \"托尼・罗宾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019368-76a1cb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国财政史十六讲\",\n    \"author\": \"刘守刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019311-2e842e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条与罗斯福新政\",\n    \"author\": \"埃里克・劳赫威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融可以颠覆历史\",\n    \"author\": \"王巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的代价\",\n    \"author\": \"托德·G·布赫霍尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019242-46e661?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功与运气\",\n    \"author\": \"罗伯特・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019080-7e8875?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞经济学\",\n    \"author\": \"温义飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018693-2f6ae5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅\",\n    \"author\": \"皮翠拉・瑞沃莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的中国工业革命\",\n    \"author\": \"文一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018393-aa4452?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨缪尔森经济学精选套装（第19版共4册）\",\n    \"author\": \"保罗・萨缪尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018045-002052?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一盘大棋？中国新命运解析\",\n    \"author\": \"罗思义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017718-94ee07?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级强势股：如何投资小盘价值成长股（珍藏版）\",\n    \"author\": \"肯尼斯・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当音乐停止之后\",\n    \"author\": \"艾伦・布林德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017622-dcb745?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与中国打交道\",\n    \"author\": \"亨利・鲍尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡十年，水大鱼大\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017037-4de889?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Business Adventures\",\n    \"author\": \"John Brooks\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能数据\",\n    \"author\": \"比约恩・布劳卿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国雄心\",\n    \"author\": \"马丁・雅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016716-d4f605?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级版图\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016413-98fcdd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"松下幸之助三书（套装共3本）\",\n    \"author\": \"松下幸之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016254-1869c5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Fintech：全球金融科技权威指南\",\n    \"author\": \"苏珊娜・奇斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑组织\",\n    \"author\": \"弗雷德里克・莱卢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016041-672fb1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱永不眠：资本世界的暗流涌动和金融逻辑\",\n    \"author\": \"香帅无花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容经济\",\n    \"author\": \"谢利明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济思想简史\",\n    \"author\": \"海因茨・库尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015903-3a8b81?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富足：改变人类未来的4大力量\",\n    \"author\": \"彼得・戴曼迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015900-a0dfb0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（全译本）\",\n    \"author\": \"亚当・斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015849-0975d2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策的智慧\",\n    \"author\": \"大卫・亨德森/查尔斯・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学通识课\",\n    \"author\": \"尼尔・基什特尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015651-08daff?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大拐点\",\n    \"author\": \"袁剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015597-bc638c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济解释（四卷本）\",\n    \"author\": \"张五常\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015558-88b6f3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济奇点\",\n    \"author\": \"史蒂文・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015492-0b15f1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新制造时代\",\n    \"author\": \"王千马/梁冬梅/何丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015264-52fd08?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术的终结\",\n    \"author\": \"默文・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015246-2b570e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币野史\",\n    \"author\": \"菲利克斯・马汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人时代\",\n    \"author\": \"马丁・福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015234-30ae0c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的本质\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简GDP史\",\n    \"author\": \"黛安娜・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015075-588dba?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史\",\n    \"author\": \"卡比尔・塞加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银资本：重视经济全球化中的东方\",\n    \"author\": \"贡德・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014439-33d3c7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一大亨（套装共2册）\",\n    \"author\": \"斯泰尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014319-72a8ef?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助推\",\n    \"author\": \"理查德・泰勒/卡斯・桑斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014280-c17c13?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众创新\",\n    \"author\": \"埃里克・冯・希佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妙趣横生博弈论（珍藏版）\",\n    \"author\": \"阿维纳什・迪克西特/巴里・奈尔伯夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014160-37866b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用博弈的思维看世界\",\n    \"author\": \"蒋文华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014109-0ed381?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯粹经济学\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013980-1ffdbe?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“错误”的行为\",\n    \"author\": \"理查德・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013920-5d454d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论的诡计\",\n    \"author\": \"王春永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论平话\",\n    \"author\": \"王则柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的财政密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的博弈\",\n    \"author\": \"约翰・斯蒂尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无价\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济大萧条还有多远\",\n    \"author\": \"刘军洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012900-3ec719?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国富人为何变穷\",\n    \"author\": \"张庭宾/艾经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降维攻击：未来互联网商业的三体法则\",\n    \"author\": \"高德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012711-3075ba?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻璃笼子\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品没有秘密\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃离不平等\",\n    \"author\": \"安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012318-a4fae0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本金融入门书\",\n    \"author\": \"邹一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012303-007194?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力与繁荣\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012258-603067?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信号与噪声\",\n    \"author\": \"纳特・西尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012051-590465?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物精神\",\n    \"author\": \"乔治・阿克洛夫/罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011916-aa3741?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务和魔鬼\",\n    \"author\": \"阿代尔・特纳勋爵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011802-eff8c4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国大城\",\n    \"author\": \"陆铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011787-8e42f4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本社会的17个矛盾\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011637-aacc42?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史2\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岛经济学\",\n    \"author\": \"彼得・希夫/安德鲁・希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011544-598357?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的逻辑\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011373-733a50?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国大趋势：新社会的八大支柱\",\n    \"author\": \"约翰・奈斯比特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011295-ef8ccd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克要买大杯咖啡\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年金融史\",\n    \"author\": \"威廉・戈兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的先知\",\n    \"author\": \"托马斯・麦克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010812-0d5497?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链社会\",\n    \"author\": \"龚鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菜场经济学\",\n    \"author\": \"财上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010680-4deff8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的皮球\",\n    \"author\": \"辉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010674-bc3805?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・像管理者一样思考（全15册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势研判：经济、政策与资本市场\",\n    \"author\": \"任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系力\",\n    \"author\": \"蒂姆・邓普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争（套装共5册）\",\n    \"author\": \"宋鸿兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾听全球的声音（全10册）\",\n    \"author\": \"经济学人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010230-dfe349?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑天鹅：如何应对不可预知的未来（升级版）\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信任\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009633-ce67ee?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资异类\",\n    \"author\": \"王利杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱不能买什么\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009447-bec7f0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革中国：市场经济的中国之路\",\n    \"author\": \"罗纳德・哈里・科斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009333-847c6a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类货币史\",\n    \"author\": \"戴维・欧瑞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是红的：看懂中国经济格局的一本书\",\n    \"author\": \"白云先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家兴衰\",\n    \"author\": \"鲁奇尔・夏尔马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大揭秘：庞氏骗局的前世今生\",\n    \"author\": \"柯琳・克罗丝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008772-79825d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性乐观派：一部人类经济进步史\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008781-b8b9ad?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜厅\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008706-d0afd8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能\",\n    \"author\": \"李开复/王咏刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学的思维方式\",\n    \"author\": \"保罗・海恩/彼得・勃特克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008682-5efea1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活学活用博弈论\",\n    \"author\": \"詹姆斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风口上的猪：一本书看懂互联网金融\",\n    \"author\": \"肖璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的兴衰（套装共2册）\",\n    \"author\": \"保罗・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆点：如何制造流行\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可思议的年代\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本读通10位经济学大师\",\n    \"author\": \"菲尔・桑顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007854-f5a6d5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非富不可：曹仁超给年轻人的投资忠告\",\n    \"author\": \"曹仁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新一轮产业革命\",\n    \"author\": \"亚力克・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年河东：权力市场经济的困境\",\n    \"author\": \"杨继绳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱有术\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌舵三部曲（掌舵＋掌舵2+舵手）\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最需要的理财常识书\",\n    \"author\": \"王华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稀缺：我们是如何陷入贫穷与忙碌的\",\n    \"author\": \"塞德希尔・穆来纳森 / 埃尔德・沙菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德鲁克的最后忠告\",\n    \"author\": \"伊丽莎白・哈斯・埃德莎姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进步时代\",\n    \"author\": \"张国庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郎咸平说：新经济颠覆了什么\",\n    \"author\": \"郎咸平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007194-87eec7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集装箱改变世界（修订版）\",\n    \"author\": \"马克・莱文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻资本\",\n    \"author\": \"凯文·鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市长线法宝（原书第5版）\",\n    \"author\": \"杰里米J. 西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸穷爸爸\",\n    \"author\": \"罗伯特.T.清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（缩译全彩插图本）\",\n    \"author\": \"亚当·斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩根财团\",\n    \"author\": \"罗恩·彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟爱上管理学\",\n    \"author\": \"姚余梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006891-f90357?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草民经济学\",\n    \"author\": \"南勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006894-56ae7d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓愚：操纵与欺骗的经济学\",\n    \"author\": \"乔治·阿克洛夫/罗伯特·席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国：美国金融霸权的来源和基础\",\n    \"author\": \"迈克尔·赫德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦想与浮沉：A股十年上市博弈（2004～2014）\",\n    \"author\": \"王骥跃/班妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED竞争心理学\",\n    \"author\": \"玛格丽特·赫夫南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时寒冰说：未来二十年，经济大趋势（合集）\",\n    \"author\": \"时寒冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是部金融史（全新修订典藏版）\",\n    \"author\": \"陈雨露/杨栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上帝国\",\n    \"author\": \"萝莉·安·拉罗科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006567-e71694?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"还原真实的美联储\",\n    \"author\": \"王健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产江湖\",\n    \"author\": \"肖宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006465-0c5bcc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿什么拯救中国经济？\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴立宁的传记与文集\",\n    \"author\": \"戴立宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融之王\",\n    \"author\": \"利雅卡特・艾哈迈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006060-6d6043?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"豪门兴衰：百年香港商业\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣氏百年：中国商业第一家族\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由选择（珍藏版）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005688-284601?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活中的经济学\",\n    \"author\": \"吉蒂・贝克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005685-e57087?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长的极限\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘活：中国民间金融百年风云\",\n    \"author\": \"王千马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历代经济变革得失\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005394-6e2c3b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跌荡一百年：中国企业1870-1977（纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩荡两千年：中国企业公元前7世纪-1869年\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集体行动的逻辑\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才的回声\",\n    \"author\": \"托德・布赫霍尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005325-8061fd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学常识1000问（超值金版）\",\n    \"author\": \"孙豆豆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005202-d6a781?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的雪球\",\n    \"author\": \"吕波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福极简经济学\",\n    \"author\": \"蒂莫西・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大江东去（全3册）\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005040-5558e2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大败局（十周年套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反脆弱：从不确定性中获益\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾十五年\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡三十年（套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼经济学\",\n    \"author\": \"史蒂芬・列维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004776-64c28d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大流感\",\n    \"author\": \"约翰 M.巴里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866\",\n    \"category\": \"流感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命流感\",\n    \"author\": \"杰里米・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866\",\n    \"category\": \"流感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新史学&#038;多元对话系列（第一辑）\",\n    \"author\": \"陈怀宇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509076-0c1223?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国名家史学典藏系列（共14册）\",\n    \"author\": \"吕思勉/郑振铎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989620-4f5379?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：康有为与章太炎（全二册）\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放言有忌\",\n    \"author\": \"虞云国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042660-f57275?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"資治通鑑·繁體豎排版（胡三省注）\",\n    \"author\": \"司馬光編集/胡三省輯注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030630-44c1c2?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝那些事儿（1-9）\",\n    \"author\": \"当年明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古埃及女性\",\n    \"author\": \"克里斯蒂安・雅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512898-c00ee5?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃及四千年\",\n    \"author\": \"乔安・弗莱彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029427-79b57f?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃及神话\",\n    \"author\": \"加里·J.肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025149-2a44c7?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开罗埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀金字塔\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008451-7b089f?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漠法则\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008442-61c5a4?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首相的正义\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008430-839940?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三体秘密\",\n    \"author\": \"田加刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508785-577194?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《三体》中的物理学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Three-Body Problem\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013644-82ce19?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Dark Forest\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013641-7de59a?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Death&#8217;s End\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013638-dd39ad?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一旦能放声嘲笑自己，你就自由了\",\n    \"author\": \"梅丽莎・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499704-86a34e?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的沟通力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无压力社交\",\n    \"author\": \"吉莉恩・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512292-5b84b2?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朋友圈的人际高手\",\n    \"author\": \"诸葛思远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997123-04d286?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效沟通的100种方法\",\n    \"author\": \"王利利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向心理学\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲切的艺术\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界没有陌生人\",\n    \"author\": \"洪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990346-669e7d?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诚实的信号\",\n    \"author\": \"阿莱克斯・彭特兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有意识的社交\",\n    \"author\": \"肯・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简社交\",\n    \"author\": \"莫拉格・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓情商高，就是会说话\",\n    \"author\": \"佐佐木圭一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通赢家\",\n    \"author\": \"徐丽丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049902-070654?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津式高效沟通\",\n    \"author\": \"冈田昭人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受益一生的六本书（套装六册）\",\n    \"author\": \"鬼谷子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会说脏话？\",\n    \"author\": \"埃玛・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何结交比你更优秀的人\",\n    \"author\": \"康妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从受欢迎到被需要\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10秒沟通\",\n    \"author\": \"荒木真理子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话第一步\",\n    \"author\": \"麦克▪P.尼可斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话2\",\n    \"author\": \"马薇薇/黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑说服力\",\n    \"author\": \"陈浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020013-f61abe?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"披着羊皮的狼\",\n    \"author\": \"乔治.K.西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018948-a7cfe4?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何实现有效社交\",\n    \"author\": \"凯伦・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018606-3ed13e?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至关重要的关系\",\n    \"author\": \"里德・霍夫曼/本・卡斯诺瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018369-4bb227?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再也不怕跟人打交道\",\n    \"author\": \"莉尔・朗兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交的本质\",\n    \"author\": \"兰迪・扎克伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交天性\",\n    \"author\": \"马修・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡康永的说话之道\",\n    \"author\": \"蔡康永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014031-30040b?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决冲突的关键技巧\",\n    \"author\": \"达纳・卡斯帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼搭讪学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼约会学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008952-8a6737?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通的艺术\",\n    \"author\": \"罗纳德・阿德勒/拉塞尔・普罗克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力四射：如何打动、亲近和影响他人\",\n    \"author\": \"帕特里克・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都聊得来\",\n    \"author\": \"迈克・贝克特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生的中国人\",\n    \"author\": \"杨猛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005721-fc7d62?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰小说精选（读客经典）\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866\",\n    \"category\": \"伏尔泰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生自传\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042621-63bfda?p=8866\",\n    \"category\": \"丹麦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹麦女孩\",\n    \"author\": \"大卫・埃贝尔舍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019593-1352dc?p=8866\",\n    \"category\": \"丹麦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹麦人为什么幸福\",\n    \"author\": \"迈克・维金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866\",\n    \"category\": \"丹麦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866\",\n    \"category\": \"丹麦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通天人物\",\n    \"author\": \"李佩甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023817-c140d9?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参谋助手论\",\n    \"author\": \"王怀志/郭政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015459-a2ef41?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在大清官场30年\",\n    \"author\": \"黄云凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011568-9f64c1?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幕僚\",\n    \"author\": \"黄晓阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008985-7da4cb?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大哥：流血的商战1-3\",\n    \"author\": \"庹政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008979-6d092b?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二号首长\",\n    \"author\": \"黄晓阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008580-78b9e7?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳谋为上\",\n    \"author\": \"夏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007908-6e6069?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌舵三部曲（掌舵＋掌舵2+舵手）\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯卫东官场笔记（1-8册+巴国侯氏）\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006186-fed3db?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗塞塔夫人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493737-177581?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤汤奇幻童年故事本（套装6册）\",\n    \"author\": \"汤汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐王子（译文经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042723-bfc360?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空故事\",\n    \"author\": \"苏珊娜・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘿，小家伙\",\n    \"author\": \"温酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公主走进黑森林\",\n    \"author\": \"吕旭亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032340-822a73?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺与玫瑰（读客经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028629-d7c7bb?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子（作家榜经典文库）\",\n    \"author\": \"圣-埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027807-091fea?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔斯骑鹅历险记（作家榜经典文库）\",\n    \"author\": \"塞尔玛・拉格洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林童话（果麦经典）\",\n    \"author\": \"格林兄弟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027186-65bb3b?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽丝漫游奇境（作家榜经典文库）\",\n    \"author\": \"刘易斯・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027171-b9c3bc?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·潘\",\n    \"author\": \"詹姆斯・马修・巴利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024849-4284ce?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞男孩\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024714-b9a35e?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊索寓言\",\n    \"author\": \"伊索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022137-b00931?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尔德·达尔作品典藏（共13册）\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好心眼儿巨人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词里的趣事套装（全4册）\",\n    \"author\": \"王月亮/黄震/黄秀春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866\",\n    \"category\": \"词曲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰教育全球第一的秘密（珍藏版）\",\n    \"author\": \"陈之华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866\",\n    \"category\": \"芬兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰人的噩梦\",\n    \"author\": \"卡罗利娜・科尔霍宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866\",\n    \"category\": \"芬兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊朗四千年\",\n    \"author\": \"霍昌・纳哈万迪/伊夫・博马提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499314-26cba2?p=8866\",\n    \"category\": \"伊朗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中原大战：民国军阀的终极逐鹿\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006606-dd3be8?p=8866\",\n    \"category\": \"中原大战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的战斗：美国人眼中的朝鲜战争（修订版）\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008763-ceb9cf?p=8866\",\n    \"category\": \"朝鲜战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借钱：利息、债务和资本的故事\",\n    \"author\": \"查尔斯・盖斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866\",\n    \"category\": \"借贷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝定居指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝穿越指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉（增订版）\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984574-129632?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5000年文明启示录\",\n    \"author\": \"威廉·H.麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982480-ddd078?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的误区\",\n    \"author\": \"韦恩・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051744-d5fffa?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的心理学\",\n    \"author\": \"G. 尼尔・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035829-d36c8b?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣重说晚清民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009573-2a5b19?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哇，历史原来可以这样学（套装共2册）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸神的黄昏\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反战之战\",\n    \"author\": \"乌娜·A. 海瑟薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495162-eff7e1?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬与狮\",\n    \"author\": \"兰晓龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498414-f46279?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔登战役\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代兵器大百科（套装共12册）\",\n    \"author\": \"《深度军事》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争艺术史（全4卷）\",\n    \"author\": \"汉斯・德尔布吕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502593-9217ce?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王树增战争系列（全5册）\",\n    \"author\": \"王树增\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506748-bc1f58?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西线无战事（果麦经典）\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509091-e5d1af?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滔天洪水\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战的终结：1985-1991\",\n    \"author\": \"罗伯特・瑟维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510135-274388?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上谈兵\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与革命心理学\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高清一战全史（套装全3册）\",\n    \"author\": \"特霍兰・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511767-d6f291?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空王冠\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511281-8b102c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍与叛徒\",\n    \"author\": \"本・麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512889-07541d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚汉双雄\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄山：穿插\",\n    \"author\": \"徐贵祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513300-ed86c6?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汗之怒\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004506-1bb50d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的抵抗\",\n    \"author\": \"宿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004233-6220df?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪战争论\",\n    \"author\": \"克里斯托弗・科克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002808-69f5f4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的本质\",\n    \"author\": \"A.C.葛瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（041-050）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空军飞行员（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影师的妻子\",\n    \"author\": \"苏珊・乔伊森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争论（全三册）\",\n    \"author\": \"克劳塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争哀歌\",\n    \"author\": \"保宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052341-f29a44?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中法海战\",\n    \"author\": \"陈悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052590-a0f649?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最残酷的夏天：美国人眼中的越南战争\",\n    \"author\": \"菲利普・卡普托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1683维也纳之战\",\n    \"author\": \"安德鲁・惠克罗夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战火家园\",\n    \"author\": \"卡米拉・夏姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042651-db3e89?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵攻击（经典纪念版）\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国抗日战争史（四卷套装）\",\n    \"author\": \"张宪文/左用章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战完整历史实录（套装共38册）\",\n    \"author\": \"马夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球使命\",\n    \"author\": \"亨利・H・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国与拿破仑的决战\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牵风记\",\n    \"author\": \"徐怀中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034086-23a522?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口气读完的大国战史系列\",\n    \"author\": \"郭强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033447-bee645?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史（修订珍藏版）\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西线无战事\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030507-dc3c15?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利维亚日记\",\n    \"author\": \"切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战风云：史上最大规模战争的伤痛（全3册）\",\n    \"author\": \"杨少丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争系列\",\n    \"author\": \"青梅煮酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命的倔强\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029979-766e1f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争\",\n    \"author\": \"赫克特·C. 拜沃特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永别了，武器（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029100-d7f57e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丹药到枪炮\",\n    \"author\": \"欧阳泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅲ：血战长津湖\",\n    \"author\": \"何楚舞/凤鸣/陆宏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天：美国人眼中的朝鲜战争\",\n    \"author\": \"大卫・哈伯斯塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争\",\n    \"author\": \"儿岛襄\",\n    \"link\": \"链接未找到\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷山\",\n    \"author\": \"查尔斯・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025053-beeeae?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的面目\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赫尔曼·沃克作品集（共9册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024753-9ab4e4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国创世记：埃利斯建国史系列（套装共4册）\",\n    \"author\": \"约瑟夫·J.埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凛冬\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我从战场归来\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典特辑\",\n    \"author\": \"李湖光/王子午/宋毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023829-119ac1?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（001-040）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024885-e1f1b0?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克里米亚战争\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023688-1a0b47?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里的黎明静悄悄……\",\n    \"author\": \"鲍・瓦西里耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年战争简史\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争风云（全2册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020166-6166b7?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与回忆（全2册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020172-35770b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史上的南京之战（套装共2册）\",\n    \"author\": \"王洪光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019944-5497a4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的内战\",\n    \"author\": \"胡素珊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019377-b3f66d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨人的对决：日德兰海战中的主力舰\",\n    \"author\": \"张宇翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019386-bcedf2?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无敌舰队\",\n    \"author\": \"加勒特・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血性军人：百年中国战争亲历纪（共13册）\",\n    \"author\": \"全国政协文史和学习委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滇西抗战三部曲\",\n    \"author\": \"余戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015765-b0be9b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012468-207f9d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新派遣\",\n    \"author\": \"菲尔・克莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012450-4c35c5?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争简史（套装共2册）\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012003-13f38f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲的陨落\",\n    \"author\": \"马克思・加罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦刻尔克\",\n    \"author\": \"沃尔特・劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人眼中最真实的越南战争\",\n    \"author\": \"卡尔・马兰提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010791-35d8b5?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：中国八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1943黄金大争战\",\n    \"author\": \"岩波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008448-f2a49c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越南密战：1950-1954中国援越战争纪实\",\n    \"author\": \"钱江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵贩子（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008028-fba137?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪峰山决战（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008007-bd9450?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难一日：海豹六队击毙本・拉登行动亲历\",\n    \"author\": \"马克・欧文/凯文・莫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的分裂：美国独立战争的起源\",\n    \"author\": \"郑非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战太平洋（HBO官方完整版）\",\n    \"author\": \"休·安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪孽的报应\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天行健（套装全7册）\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006582-7f3c57?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青铜时代：五百年的大局观（套装共5册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵军（译文经典）\",\n    \"author\": \"伊萨克・巴别尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006369-d34b18?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006264-a3a0da?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争2\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎部队：国民党抗日王牌七十四军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一只眼看鸦片战争\",\n    \"author\": \"瞿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005928-95ec0a?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战回忆录（全五卷）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战回忆录（全六卷）\",\n    \"author\": \"温斯顿·丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年乱局：争霸东北亚（套装共二册）\",\n    \"author\": \"方俞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005217-0b648c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清日战争\",\n    \"author\": \"宗泽亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004950-0d79b6?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争就是这么回事儿（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可退的战士\",\n    \"author\": \"杰克·希金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004932-962a95?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国式英雄\",\n    \"author\": \"杰克·希金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004926-351dc3?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争从未如此热血：二战美日太平洋大对决（全四册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李小龙：不朽的东方传奇（图文版）\",\n    \"author\": \"郑杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029616-f92b6d?p=8866\",\n    \"category\": \"李小龙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我所有的朋友都死了（套装共2册）\",\n    \"author\": \"艾弗里・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866\",\n    \"category\": \"孤独感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡的视线\",\n    \"author\": \"刘易斯・M.科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002592-e3895f?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法学讲义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宪法学讲义（第三版）\",\n    \"author\": \"林来梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990535-066ef2?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈正义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲人奥里翁\",\n    \"author\": \"龚祥瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028482-369eaa?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司法的细节\",\n    \"author\": \"刘仁文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022755-7efa0d?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法格言的展开（第三版）\",\n    \"author\": \"张明楷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威士忌原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866\",\n    \"category\": \"威士忌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：苏州·杭州\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866\",\n    \"category\": \"苏州\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主的不满\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的多角度解读（套装共20册）\",\n    \"author\": \"蒋廷黻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑麋鹿如是说 ：生命与自然之诗\",\n    \"author\": \"尼古拉斯・黑麋鹿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020922-d80161?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草原帝国（全译插图本）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的精神\",\n    \"author\": \"辜鸿铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合理的怀疑\",\n    \"author\": \"德肖维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独裁者手册\",\n    \"author\": \"布鲁斯・布鲁诺・德・梅斯奎塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的天\",\n    \"author\": \"子日山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰糖炖雪梨（全两册）\",\n    \"author\": \"酒小七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053997-27d41f?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野\",\n    \"author\": \"巫哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪案迷城\",\n    \"author\": \"张瑞兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，旧时光（全三册）\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016317-8d59ff?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤鹰（全2册）\",\n    \"author\": \"邵雪城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046029-a3ef29?p=8866\",\n    \"category\": \"缉毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无夜边境\",\n    \"author\": \"田浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038571-bea58f?p=8866\",\n    \"category\": \"缉毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破冰行动\",\n    \"author\": \"千羽之城\",\n    \"link\": \"链接未找到\",\n    \"category\": \"缉毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工不智能\",\n    \"author\": \"梅瑞狄斯・布鲁萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491643-5332a8?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能学习的未来\",\n    \"author\": \"罗斯玛丽・卢金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511113-9bb24f?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能的本质\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029304-4060a7?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命3.0\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021120-2c89e2?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点临近\",\n    \"author\": \"雷・库兹韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017070-174382?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能数据\",\n    \"author\": \"比约恩・布劳卿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能浪潮\",\n    \"author\": \"布雷特・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015984-23b495?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在中国大地上\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的柠檬\",\n    \"author\": \"海伦娜・阿特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文化漫游\",\n    \"author\": \"鲁成文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大吉岭到克什米尔\",\n    \"author\": \"闻中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沿坟墓而行\",\n    \"author\": \"纳韦德・凯尔曼尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去他的巴西\",\n    \"author\": \"胡续冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午6：旧山河，新故事\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和伊壁鸠鲁一起旅行\",\n    \"author\": \"丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日46：东京就是日本！\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047952-aa1e1c?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘境\",\n    \"author\": \"乔舒亚・福尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅰ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅰ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠峰史诗\",\n    \"author\": \"荣赫鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国环岛之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045783-b17647?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯是一条鱼\",\n    \"author\": \"提齐安诺・斯卡帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航西飞\",\n    \"author\": \"柏瑞尔・马卡姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山旅书札\",\n    \"author\": \"伊莎贝拉・博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说吧，叙利亚\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨西哥湾千里徒步行\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前往阿姆河之乡\",\n    \"author\": \"罗伯特・拜伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老巴塔哥尼亚快车\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别列津纳河\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国深南之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往印度次大陆\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨天炎天\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边境·近境\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下巴黎\",\n    \"author\": \"洛朗・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方的鼓声\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔\",\n    \"author\": \"埃布鲁・宝雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，不止旅行\",\n    \"author\": \"周硚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡苦不苦\",\n    \"author\": \"陈丹燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明天我要去冰岛\",\n    \"author\": \"嘉倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：苏州·杭州\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这世界啊，随他去吧\",\n    \"author\": \"李沐泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017355-7f8a21?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机场里的小旅行\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016749-ca198e?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与爱之地：入以色列记\",\n    \"author\": \"云也退\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014499-251f20?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：厦门\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的驼峰之旅\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013344-7beb9e?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的世外桃源\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013326-79c181?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的狂欢\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013329-02ec90?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去，你的旅行\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013356-e5707c?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣地亚哥朝圣之路\",\n    \"author\": \"王赛男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011304-11a0bb?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，改变一生的旅行\",\n    \"author\": \"尼玛达娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的朝圣\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009921-87bfcb?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们最幸福\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背包十年\",\n    \"author\": \"小鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进入空气稀薄地带\",\n    \"author\": \"乔恩・克拉考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旅行与读书\",\n    \"author\": \"詹宏志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生：面对冰封的海洋\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好吗好的\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007014-27f7a8?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅与摩托车维修艺术\",\n    \"author\": \"罗伯特·M.波西格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是尘埃也是光\",\n    \"author\": \"梁子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乖，摸摸头\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芭比：一个娃娃风靡世界的秘密\",\n    \"author\": \"罗宾・格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866\",\n    \"category\": \"芭比\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧：冰与火之地的寻真之旅\",\n    \"author\": \"迈克尔・布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498264-40e9d6?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的材料\",\n    \"author\": \"艾妮莎・拉米雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506454-00e823?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常人文课（共5册）\",\n    \"author\": \"泰吉万・帕丁格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506901-fb7ee6?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代人的日常生活2\",\n    \"author\": \"王磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509049-84a6b4?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人论（果麦经典）\",\n    \"author\": \"恩斯特・卡西尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513714-66cf91?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生只为守敦煌\",\n    \"author\": \"叶文玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004449-d3ed62?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这是真的，我在一本书里读到过\",\n    \"author\": \"巴斯卡尔・博尼法斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后望书（最终修订本）\",\n    \"author\": \"朱幼棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003348-6516f4?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妆束：大唐女儿行\",\n    \"author\": \"左丘萌/末春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁豫有约：说出你的故事（共5册）\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫六百年\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001329-12e528?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不让生育的社会\",\n    \"author\": \"小林美希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文精神的伟大冒险\",\n    \"author\": \"菲利普·E.毕肖普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无神论（牛津通识读本）\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轴心时代\",\n    \"author\": \"凯伦・阿姆斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才为何成群地来\",\n    \"author\": \"王汎森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简哲学史\",\n    \"author\": \"莱斯莉・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学是怎样炼成的\",\n    \"author\": \"蒂莫西・威廉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我心归处是敦煌\",\n    \"author\": \"樊锦诗口述/顾春芳撰写\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史：从上古传说到1949\",\n    \"author\": \"邓广铭/田余庆/戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘境\",\n    \"author\": \"乔舒亚・福尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪思想史：从弗洛伊德到互联网\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037851-de25ea?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC艺术经典三部曲\",\n    \"author\": \"肯尼斯・克拉克/罗伯特・休斯/西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033444-1d3101?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字人文\",\n    \"author\": \"安妮·博迪克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳朵借我\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明大传：知行合一的心学智慧（全新修订版）\",\n    \"author\": \"冈田武彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029652-25187b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅山的交往和应酬（增订本）\",\n    \"author\": \"白谦慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028113-e9791a?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛读书札记\",\n    \"author\": \"赵一凡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027321-89ad70?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叶礼庭作品集（套装共3册）\",\n    \"author\": \"叶礼庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026292-6b6467?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集续编\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开一颗心\",\n    \"author\": \"斯蒂芬・韦斯塔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜威选集（5卷本）\",\n    \"author\": \"刘放桐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓶花谱 瓶史\",\n    \"author\": \"张谦德/袁宏道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020061-e5ca31?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明大历史\",\n    \"author\": \"伊恩・克夫顿/杰里米・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019500-4367ef?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾柯谈美丑（套装共2册）\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019590-c15b80?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后物欲时代的来临\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019419-3b77fe?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只名叫鲍勃的流浪猫\",\n    \"author\": \"詹姆斯・鲍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018270-7946fb?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珍物：中国文艺百人物语\",\n    \"author\": \"生活月刊编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018216-c353d3?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的智慧（套装共6册）\",\n    \"author\": \"赵丽荣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017973-981516?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本精选集（第一辑共58册）\",\n    \"author\": \"雷蒙德・瓦克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016143-e41d19?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协和医事\",\n    \"author\": \"常青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界佛教通史（套装共14卷）\",\n    \"author\": \"周贵华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活过\",\n    \"author\": \"南方人物周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014892-297fa9?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十里红妆\",\n    \"author\": \"吴瑞贤/吴静波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014310-ce95e8?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗物质与恐龙\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都市速写簿\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书（套装共6册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间地图\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011370-deef54?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师讲国学经典文库（套装共5册）\",\n    \"author\": \"季风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011094-ca367b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识大融通：21世纪的科学与人文\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009588-edfc82?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴阳五要奇书\",\n    \"author\": \"郭璞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009429-d6e794?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传记文学书系（套装共4册）\",\n    \"author\": \"唐德刚/梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008748-e9f5e7?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾五百年\",\n    \"author\": \"戴维・考特莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些消失的文明\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯庸笑翻中国简史\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈话录\",\n    \"author\": \"王安忆/张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866\",\n    \"category\": \"访谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己作为方法\",\n    \"author\": \"项飙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002262-18b150?p=8866\",\n    \"category\": \"访谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁豫有约：说出你的故事（共5册）\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866\",\n    \"category\": \"访谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表演者言\",\n    \"author\": \"电影频道《今日影评》栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866\",\n    \"category\": \"访谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦格纳事件\",\n    \"author\": \"弗雷德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028971-e22892?p=8866\",\n    \"category\": \"尼采\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教育家叔本华\",\n    \"author\": \"韦启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009453-72d4ea?p=8866\",\n    \"category\": \"尼采\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效清单工作法\",\n    \"author\": \"达蒙・扎哈里亚德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866\",\n    \"category\": \"清单\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力清单\",\n    \"author\": \"吉恩・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866\",\n    \"category\": \"清单\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在人间：肿瘤科女医生亲历记录\",\n    \"author\": \"沈琳/戴志悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498033-dfa046?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体由我\",\n    \"author\": \"希拉・德利兹/路易莎・施托默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林病人\",\n    \"author\": \"娜塔莉亚・霍尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498453-ee35c9?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学简史\",\n    \"author\": \"杰克琳・杜芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499506-2cac2b?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告2\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499542-190a47?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狡猾的细胞\",\n    \"author\": \"雅典娜・阿克蒂皮斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500322-b11884?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解国医典藏系列套装（全6册）\",\n    \"author\": \"张仲景等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500892-16aa17?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外科的诞生\",\n    \"author\": \"大卫・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500703-c0710c?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"药物简史\",\n    \"author\": \"德劳因・伯奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500718-9137b0?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耐药菌小史\",\n    \"author\": \"穆罕默德·H.扎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500787-4ece60?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·免疫与治愈\",\n    \"author\": \"迈克尔・金奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张文鹤护肤指南\",\n    \"author\": \"张文鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21个被“淘汰”的人体器官\",\n    \"author\": \"坂井建雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509247-6918f2?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命敌人\",\n    \"author\": \"迈克尔·T.奥斯特霍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类大瘟疫\",\n    \"author\": \"马克・霍尼斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手术刀下的历史\",\n    \"author\": \"阿诺德・范德拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510960-26a6f8?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当死亡化作生命\",\n    \"author\": \"书亚・梅兹里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史·中国篇\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512193-724ebd?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血液循环\",\n    \"author\": \"弗朗索瓦・布斯塔尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512286-58e5e6?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午之魔\",\n    \"author\": \"安德鲁・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病的文化史\",\n    \"author\": \"洛伊斯·N.玛格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染\",\n    \"author\": \"亚当・库哈尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003660-c8d8ff?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远的现在时\",\n    \"author\": \"苏珊・科金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003021-92ad62?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中西医的博弈\",\n    \"author\": \"皮国立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎药师\",\n    \"author\": \"唐纳德・R・基尔希/奥吉・奥加斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000702-1890cd?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薄世宁医学通识讲义\",\n    \"author\": \"薄世宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999703-5d8070?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触（第二版）\",\n    \"author\": \"大卫・奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何睡个好觉\",\n    \"author\": \"劳伦斯·J. 爱泼斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大流感\",\n    \"author\": \"约翰 M.巴里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口一口“吃掉”你\",\n    \"author\": \"生命时报\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命流感\",\n    \"author\": \"杰里米・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《新科学家》杂志轻科普系列（套装全3册）\",\n    \"author\": \"新科学家杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新型冠状病毒感染防护\",\n    \"author\": \"何剑峰/宋铁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级潜能\",\n    \"author\": \"亚当・皮奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自愈力的真相\",\n    \"author\": \"乔・马钱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045252-1206fc?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同的生命线\",\n    \"author\": \"约翰・苏尔斯顿/乔治娜・费里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产科男医生手记\",\n    \"author\": \"田吉顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病者生存\",\n    \"author\": \"沙龙・莫勒姆/乔纳森・普林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12个我\",\n    \"author\": \"安定医院郝医生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040833-aa12b3?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"免疫\",\n    \"author\": \"尤拉・比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的遗传学\",\n    \"author\": \"伯顿・格特曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新药的故事\",\n    \"author\": \"梁贵柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的法庭科学\",\n    \"author\": \"杰伊・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体2\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对笑喷之弃业医生日志\",\n    \"author\": \"亚当・凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌群大脑\",\n    \"author\": \"戴维・珀尔马特/克里斯廷・洛伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"急救，比医生快一步\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破解生死大数据\",\n    \"author\": \"杰瑞米・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的意识\",\n    \"author\": \"约翰・巴奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开一颗心\",\n    \"author\": \"斯蒂芬・韦斯塔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的精进\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西1\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史\",\n    \"author\": \"莉迪亚・康/内特・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑医疗史\",\n    \"author\": \"苏上豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学的真相\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的微生物\",\n    \"author\": \"马丁・布莱泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020871-3d589b?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安慰剂效应\",\n    \"author\": \"莉萨・兰金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020814-39b49a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒防御和心理复原力三部曲\",\n    \"author\": \"内森・沃尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020532-469146?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿图医生（第一季）\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020301-9a986a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿图医生（第二季）\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020292-b5bcc6?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的战争\",\n    \"author\": \"大卫・塞尔旺・施莱伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020205-f17668?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们应当行走\",\n    \"author\": \"戴维・M. 奥辛斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017937-987b61?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越人类\",\n    \"author\": \"伊芙・赫洛尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017697-b3e68f?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症科普（套装共2册）\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协和医事\",\n    \"author\": \"常青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湛庐文化医学人文经典书系（套装共5册）\",\n    \"author\": \"阿图・葛文德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012834-c2175e?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的抉择\",\n    \"author\": \"杰尔姆・格罗普曼/帕米拉・哈茨班德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012789-a455a7?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的故事：进化、健康与疾病\",\n    \"author\": \"丹尼尔・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈克尔·波伦“饮食觉醒”系列（套装共3册）\",\n    \"author\": \"迈克尔・波伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触：全球大型传染病探秘之旅\",\n    \"author\": \"大卫·奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·真相\",\n    \"author\": \"菠萝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众病之王：癌症传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不敢懈怠\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866\",\n    \"category\": \"南非\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南非的启示\",\n    \"author\": \"秦晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012105-8052a4?p=8866\",\n    \"category\": \"南非\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有宽恕就没有未来\",\n    \"author\": \"德斯蒙德・图图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866\",\n    \"category\": \"南非\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有人必须死\",\n    \"author\": \"李非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051657-e02af4?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅的忧郁\",\n    \"author\": \"安德烈・库尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045798-191757?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034809-9dfcdb?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红拂夜奔\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032253-de9ad1?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万寿寺\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030480-1e074b?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙超度指南\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长安客\",\n    \"author\": \"北溟鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995563-0b6444?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝定居指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝穿越指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐兴亡三百年\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023952-0cff73?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贞观幽明谭\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023625-5e1243?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝那些事儿（套装共7册）\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐这二百九十年1：贞观之路\",\n    \"author\": \"吃青菜的蜗牛\",\n    \"link\": \"链接未找到\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐这二百九十年2：天皇天后\",\n    \"author\": \"吃青菜的蜗牛\",\n    \"link\": \"链接未找到\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界性的帝国：唐朝\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009291-f01621?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝绝对很邪乎\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009138-deec69?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日落九世纪：大唐帝国的衰亡\",\n    \"author\": \"赵益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐太宗（全三卷）\",\n    \"author\": \"赵扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007050-bb3026?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录2：长安鬼迹\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐的四张面孔（套装共四册）\",\n    \"author\": \"东江月明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005238-f97e96?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血腥的盛唐大全集（珍藏版）\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005133-8ad8de?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑书系（套装7册）\",\n    \"author\": \"吉姆・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497502-218ca7?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们星球上的生命\",\n    \"author\": \"大卫・爱登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503952-5bd190?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界自然文学经典：博物图鉴版（共12册）\",\n    \"author\": \"伊迪丝・霍尔登等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505827-9f090e?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳台人的植物生活\",\n    \"author\": \"伊藤正幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508935-c37c4a?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极观星指南\",\n    \"author\": \"鲍勃・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津大学自然史博物馆的寻宝之旅\",\n    \"author\": \"凯特・迪思顿/佐薇・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510750-5b4a2a?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方草木之美\",\n    \"author\": \"西莉亚・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然界的印象（作家榜经典文库）\",\n    \"author\": \"儒勒・列那尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511644-242e91?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达尔文的战争\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步的艺术（果麦经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004617-10c91b?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳗鱼的旅行\",\n    \"author\": \"帕特里克・斯文松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水的密码\",\n    \"author\": \"特里斯坦・古利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004038-2e1bbb?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的故事\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海鸟的哭泣\",\n    \"author\": \"亚当・尼科尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000207-89a275?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与达尔文共进晚餐\",\n    \"author\": \"乔纳森・西尔弗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然的音符\",\n    \"author\": \"自然科研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之源\",\n    \"author\": \"尼克・連恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨：一部自然与文化的历史\",\n    \"author\": \"辛西娅・巴内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造物记：人与树的故事\",\n    \"author\": \"罗伯特・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052899-8745d3?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《科学美国人》精选系列科学全景套装（共14册）\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉鲨\",\n    \"author\": \"莫腾・安德雷亚斯・斯特罗克奈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山之四季（果麦经典）\",\n    \"author\": \"高村光太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠峰史诗\",\n    \"author\": \"荣赫鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在西伯利亚森林中\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二堂经典科普课\",\n    \"author\": \"吴京平/汪诘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045681-e1cc56?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一道曙光下的真实\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的事情\",\n    \"author\": \"苇岸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听客溪的朝圣\",\n    \"author\": \"安妮・迪拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们花园里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们林地里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱歌的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC自然探索系列（套装共7册）\",\n    \"author\": \"阿拉斯泰尔・福瑟吉尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035511-2fd3b9?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一想到还有95%的问题留给人类，我就放心了\",\n    \"author\": \"豪尔赫・陈/丹尼尔・怀特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟类的天赋\",\n    \"author\": \"珍妮弗・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"起源：万物大历史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029259-608e4e?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有极限的科学\",\n    \"author\": \"周建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029220-f6becc?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的历程（修订第4版）\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缤纷的生命\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云彩收集者手册\",\n    \"author\": \"加文・普雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024291-bd3b5c?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的法则\",\n    \"author\": \"肖恩·B·卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道生命的答案\",\n    \"author\": \"丹尼尔・查莫维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好！植物（全彩）\",\n    \"author\": \"喵喵植物控\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造自然\",\n    \"author\": \"安德烈娅・武尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017490-5b557e?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土：文明的侵蚀\",\n    \"author\": \"戴维·R. 蒙哥马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016863-fce466?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞鸟记\",\n    \"author\": \"欧仁・朗贝尔/保罗・罗贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016632-58b036?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅定荒野\",\n    \"author\": \"加里・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理学与生活：全彩插图第11版\",\n    \"author\": \"阿瑟・格蒂斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的森林\",\n    \"author\": \"戴维・哈斯凯尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的精神生活\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳底下的新鲜事\",\n    \"author\": \"约翰・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"森林的奇妙旅行\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006462-24745a?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大自然的社交网络\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006459-66ad57?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"磨坊信札（作家榜经典文库）\",\n    \"author\": \"阿尔封斯・都德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491025-903fa5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年百部红色经典系列：第一辑（套装共20册）\",\n    \"author\": \"周梅森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491169-00db51?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代作品集\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491061-7ee4c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读29：当代剧作选\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491283-25cf73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名利场（作家榜经典文库）\",\n    \"author\": \"萨克雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491325-e911e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长岛小记\",\n    \"author\": \"郭红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491448-bef079?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不定的荣耀\",\n    \"author\": \"胡安・萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491469-ed6e5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别的声音，别的房间\",\n    \"author\": \"杜鲁门・卡波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491487-56594b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读28：明亮的时刻-女导演特辑\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491529-ab13d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水经注套装全五册（全本全注全译）\",\n    \"author\": \"郦道元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491544-98a70b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一把刀，千个字\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491508-43620c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身着狮皮\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491568-737c21?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伍尔夫经典作品集\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491682-d32ac0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我和我的命\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491784-b14e76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感知•理知•自我认知\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491952-add17f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿川有许多粪\",\n    \"author\": \"李沧东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492009-7adb9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃动物\",\n    \"author\": \"乔纳森・萨福兰・弗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492030-8fffdb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不对称\",\n    \"author\": \"莉萨・哈利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492102-378845?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱这哭不出来的浪漫\",\n    \"author\": \"严明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492279-da9a63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联文史新论（套装21册）\",\n    \"author\": \"王家范等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492912-36485b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毓老师说系列（共十八册）\",\n    \"author\": \"爱新觉罗・毓鋆讲述\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492564-bdeea5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪念碑\",\n    \"author\": \"王小鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492576-fe1eda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗来见我\",\n    \"author\": \"李修文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492600-2ff9d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借山而居（珍藏版）\",\n    \"author\": \"张二冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492669-bdbbd4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事便利店\",\n    \"author\": \"骆以军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492792-7294cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的边界\",\n    \"author\": \"滕肖澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493026-02c981?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"躺平\",\n    \"author\": \"贝恩德・布伦纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493068-3a03e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她来自马里乌波尔\",\n    \"author\": \"娜塔莎・沃丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"糜骨之壤\",\n    \"author\": \"奥尔加・托卡尔丘克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493194-10dea4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸在夜晚来临\",\n    \"author\": \"塞斯・诺特博姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493197-9582ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太多值得思考的事物\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493218-ba0ce5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破晓时分\",\n    \"author\": \"朱西甯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493230-5de6c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声誉\",\n    \"author\": \"唐诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡夫卡中短篇德文直译全集（套装共6册）\",\n    \"author\": \"弗朗茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493329-993645?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨夜\",\n    \"author\": \"詹姆斯・索特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493422-c08ce3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里约折叠\",\n    \"author\": \"米沙・格兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493452-eb3a63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攀登尼采\",\n    \"author\": \"约翰・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493479-e7baa8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李佩甫作品全集（共16册）\",\n    \"author\": \"李佩甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493590-629a68?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰烬的光辉：保罗策兰诗选\",\n    \"author\": \"保罗・策兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493716-834b61?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮木\",\n    \"author\": \"杨本芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493731-a2dea1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗塞塔夫人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493737-177581?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇妙的盘算社团\",\n    \"author\": \"高井浩章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493755-6d2ec3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天吾手记\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493800-6736c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的心迟到了：佩索阿情诗\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493809-0d4478?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上校的大衣\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493869-0cd243?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我将宇宙随身携带：佩索阿诗集\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493875-8ebc30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美好时代的背后\",\n    \"author\": \"凯瑟琳・布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495399-0e9e0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新冠时代的我们\",\n    \"author\": \"保罗・乔尔达诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚的自由\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496479-715b72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第三辑）\",\n    \"author\": \"唐克扬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496881-d79a75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原狼\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497058-c79f7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学的读法\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497127-2181e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文经典·第一辑（套装共20册）\",\n    \"author\": \"福楼拜等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497409-47086f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生必读之书：文景古典·名译插图本\",\n    \"author\": \"埃斯库罗斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497523-e093d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联苏俄文学经典译著（套装15册）\",\n    \"author\": \"高尔基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497571-7a9471?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文城\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497568-d87c4f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读水浒\",\n    \"author\": \"押沙龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497586-5c95ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唱吧！未安葬的魂灵\",\n    \"author\": \"杰丝米妮・瓦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497583-c26717?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找不到工作的一年\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497619-b0a991?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著名家经典译本·译文40（套装共40册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497904-e167f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏童作品精选集（套装共13册）\",\n    \"author\": \"苏童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497748-a7ae4a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦本三步的喜爱之物\",\n    \"author\": \"住野夜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497886-afc031?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中译经典文库•世界文学名著精选50册\",\n    \"author\": \"中国对外翻译出版公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文心理分析作品集（套装共12册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韦伯作品集（套装9册）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498366-dfd378?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋元笔记小说大观（全35册）\",\n    \"author\": \"王应麟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以鸟兽之名\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498450-91d7f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电视人\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498462-448cc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕飞宇经典套装（共19册）\",\n    \"author\": \"毕飞宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498528-823d87?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜利特医生的历险故事（套装共12册）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498603-bd23d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史前一万年（套装共6册）\",\n    \"author\": \"琼・奥尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498657-c6133a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东大教授世界文学讲义系列（套装全5册）\",\n    \"author\": \"沼野充义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498672-8a6511?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去中国的小船\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498675-d23546?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说六讲\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498696-3bd541?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的孩子\",\n    \"author\": \"迈克尔・乔莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498705-4c11d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芥川龙之介妄想者手记\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498792-06a460?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日三秋\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498819-4d3d6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐谷路\",\n    \"author\": \"罗伯特・科尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498873-def7c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇到百分之百的女孩\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498864-6cca63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫罗博士岛（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498885-f259b0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳马作品集（套装共4册）\",\n    \"author\": \"劳马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498891-72407b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马尼亚三部曲\",\n    \"author\": \"赫塔・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498903-726c74?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普希金经典文选小集\",\n    \"author\": \"普希金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498909-3f9a1a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长眠不醒（作家榜经典文库）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498939-95f078?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（全三册）\",\n    \"author\": \"但丁・阿利格耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华丽人生\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498960-0cf371?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石天金山\",\n    \"author\": \"米兰迪・里沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498972-06d8ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（作家榜经典文库）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498984-f45284?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要把读书当回事\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499101-3b0d57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张医生与王医生\",\n    \"author\": \"伊险峰/杨樱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499125-925a06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲的眼泪（短经典精选）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499179-428891?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲人石珍藏版第一辑（套装6册）\",\n    \"author\": \"约翰・巴里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499248-e688f8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴翳礼赞（作家榜经典文库）\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499281-c94bb8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基文集套装（全八册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499341-f43d73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谎言守护人\",\n    \"author\": \"埃马努埃尔・伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499326-19c32c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀疑者年鉴\",\n    \"author\": \"伊桑・卡宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499344-721099?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的巴黎\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499392-a3a61b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绞河镇的最后一夜\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499416-98145b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牙买加旅馆\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499431-9c1104?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间词话：叶嘉莹讲评本\",\n    \"author\": \"叶嘉莹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499446-d9ea31?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇山飘香（短经典精选）\",\n    \"author\": \"罗伯特・奥伦・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499500-13bb69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷漠的人\",\n    \"author\": \"阿尔贝托・莫拉维亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499545-626d92?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四先生（短经典精选）\",\n    \"author\": \"贡萨洛・曼努埃尔・塔瓦雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499566-0f75c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啼笑因缘\",\n    \"author\": \"张恨水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499575-45e4fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活出最乐观的自己\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499620-1feacf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的局限性\",\n    \"author\": \"塞缪尔・约翰生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499611-c45040?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房间里的阿尔及尔女人（短经典精选）\",\n    \"author\": \"阿西娅・吉巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499626-02d858?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶稣之死（库切文集）\",\n    \"author\": \"J.M. 库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499638-c627d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群星灿烂的年代\",\n    \"author\": \"伊・伊・巴纳耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499674-569481?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变色龙（作家榜经典文库）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499692-2e4742?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来艺术丛书（全7册）\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499785-9d1eba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波拉尼奥的肖像\",\n    \"author\": \"莫妮卡・马里斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499713-7eebf4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明图传（全新注释本）\",\n    \"author\": \"冯梦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499725-989ddd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物小说大王沈石溪·品藏书系（升级版）（套装36册）\",\n    \"author\": \"沈石溪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499866-7f7659?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熔炉\",\n    \"author\": \"孔枝泳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500031-1ac20c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的饥渴\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500154-231e6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙马特遗书\",\n    \"author\": \"邱妙津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500163-f3a93e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我从哪里来\",\n    \"author\": \"萨沙・斯坦尼西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500220-b2442f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文传记作品系列（套装共15册）\",\n    \"author\": \"斯特凡・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500337-e1be2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦图机\",\n    \"author\": \"萨曼塔・施维伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500316-5cb7e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽的约定（作家榜经典文库）\",\n    \"author\": \"阿兰・傅尼埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500358-f4641f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉玲珑（全三册）\",\n    \"author\": \"十四夜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500328-54bba2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新手死神五部曲\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500334-03aa1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺纪念文集水墨珍藏版套装全六册\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500346-c90acd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本短诗套装（共5册）\",\n    \"author\": \"松尾芭蕉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500349-0632a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吹牛大王历险记（作家榜经典文库）\",\n    \"author\": \"埃・拉斯伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500382-8e5f6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的经典诗歌译丛1（套装共4册）\",\n    \"author\": \"戴维・赫伯特・劳伦斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500385-56b9bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的经典诗歌译丛2（套装共4册）\",\n    \"author\": \"露易丝・格丽克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500388-f84a0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喜剧\",\n    \"author\": \"陈彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500394-78b974?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃生路线\",\n    \"author\": \"石黑直美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500397-35f789?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归家庭\",\n    \"author\": \"沙尼・奥加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500403-34b60f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单向街（作家榜经典文库）\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500412-ae61d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博雅文丛（全11册）\",\n    \"author\": \"蔡彦峰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500472-bc6cfa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桤木王\",\n    \"author\": \"米歇尔・图尼埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500547-eeac56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失业白领的职场漂流\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500553-5edab3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身人（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500565-7bdbb5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国知识·信仰·制度研究书系（全11册）\",\n    \"author\": \"仇鹿鸣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501066-c19ce4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七座空屋\",\n    \"author\": \"萨曼塔・施维伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500610-8edd47?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海蒂（果麦经典）\",\n    \"author\": \"约翰娜・斯比丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500616-d44508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙曼精选套装（共9册）\",\n    \"author\": \"蒙曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500643-e84655?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读26：全球真实故事集\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500649-4348f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷路员\",\n    \"author\": \"沈大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500664-558ad3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名人传（作家榜经典文库）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500694-85d5d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁庄十年\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500706-b2fafd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳄鱼手记\",\n    \"author\": \"邱妙津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500712-a64c03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代大师林语堂作品全新修订版（全25册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500832-ce5662?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译大师谈翻译：译家之言套装\",\n    \"author\": \"许渊冲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500748-930d1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余秋雨学术四卷（套装共4册）\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500850-128583?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受戒：汪曾祺小说精选（读客经典文库）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500805-5cbab0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大江健三郎人生成长系列（套装共4册）\",\n    \"author\": \"大江健三郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500874-a07323?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林格雷的画像（作家榜经典文库）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500937-3c3b07?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉译世界学术名著丛书（120册精选大合集）\",\n    \"author\": \"黑格尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501654-989079?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的接力棒\",\n    \"author\": \"濑尾麻衣子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500955-1f1827?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安之夜\",\n    \"author\": \"玛丽克・卢卡斯・莱纳菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501039-f8d924?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞选（古典文学大字本）\",\n    \"author\": \"陆侃如/龚克昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501081-311ef3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"S.A.阿列克谢耶维奇作品集（套装共五册）\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501123-bc5f17?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间清醒\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501171-da5945?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"素食者\",\n    \"author\": \"韩江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501180-b1e098?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达摩流浪者\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501198-87ebe7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有人比你更属于这里\",\n    \"author\": \"米兰达・裘丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501216-582372?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏天空\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501315-32622d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六神磊磊读金庸\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501339-8defa2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（读客经典文库）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501381-675b76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿来经典作品集（共36册）\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501711-956da5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本文学之美（套装共5册）\",\n    \"author\": \"紫式部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501609-456bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂旅行团\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501435-2b3e87?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的柠檬\",\n    \"author\": \"海伦娜・阿特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501474-62c218?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经选（古典文学大字本）\",\n    \"author\": \"褚斌杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501477-e31d54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼克·霍恩比作品集（套装共6册）\",\n    \"author\": \"尼克・霍恩比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501483-fd26c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克拉多克太太（毛姆文集）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501519-463e06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑的人\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501522-67f7bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原上的城市\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501537-1986a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词选（古典文学大字本）\",\n    \"author\": \"刘石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501546-485495?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清洁女工手册\",\n    \"author\": \"露西亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501630-adf775?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海边的房间\",\n    \"author\": \"黄丽群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501639-43e02e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛弃疾词选（古典文学大字本）\",\n    \"author\": \"刘扬忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501651-12c86d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画《论语》\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501885-a28305?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库：悬疑冒险书系（套装共67本）\",\n    \"author\": \"卡罗尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502272-aa3e15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱光潜全集\",\n    \"author\": \"朱光潜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501777-4c22d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（古典文学大字本）\",\n    \"author\": \"孙洙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501939-d54a1c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历代名家词集精华录（全22册）\",\n    \"author\": \"温庭筠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502101-12a823?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克尔凯郭尔文集10册大全集\",\n    \"author\": \"索伦・克尔凯郭尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502005-543a3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樊登讲论语：先进\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502053-71d6f8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樊登讲论语：学而\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502065-aaa0f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆短篇小说全集（读客经典文库）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502116-5455c0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元曲三百首（古典文学大字本）\",\n    \"author\": \"张燕瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502113-fcbdaa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫作品系列（全7册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502164-c23087?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聚斯金德文集（套装共5册）\",\n    \"author\": \"帕特里克・聚斯金德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502188-2f2edc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下骏马\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502305-27ec50?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古文观止（古典文学大字本）\",\n    \"author\": \"吴楚材/吴调侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502311-70f080?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强蚁\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502317-8ffcba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳永词选（古典文学大字本）\",\n    \"author\": \"柳永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502314-b5e7e4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学名家选集（全17册）\",\n    \"author\": \"王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502398-fe5b0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库：西方文学社科经典大套装（套装194本）\",\n    \"author\": \"劳伦斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503094-de74e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨照作品集（套装9册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502629-9ef10e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千家诗（古典文学大字本）\",\n    \"author\": \"谷一然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503001-f69279?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·社会文化书系（套装共61本）\",\n    \"author\": \"杰罗姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503208-381270?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈彦经典代表作品合集\",\n    \"author\": \"陈彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503118-785d73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸侦探系列（3册）\",\n    \"author\": \"弗朗齐斯卡・比尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503268-1bec63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词三百首（古典文学大字本）\",\n    \"author\": \"武玉成/顾丛龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503301-c03e33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯癫亚当三部曲\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503436-886cdc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华学人丛书（第二辑）（套种共十六册）\",\n    \"author\": \"李伯杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503694-ac5276?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳田国男文集（套装共十册）\",\n    \"author\": \"柳田国男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503697-8daafb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草婴译列夫·托尔斯泰中短篇小说全集\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503823-cc7f6a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李白诗选（古典文学大字本）\",\n    \"author\": \"熊礼汇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503748-0bb90d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明（全三册）\",\n    \"author\": \"许葆云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503904-76511f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未被摧毁的生活\",\n    \"author\": \"李伟长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503928-467c01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照词选（古典文学大字本）\",\n    \"author\": \"陈祖美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503934-42bda0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖得主莫言文集（套装共26册）\",\n    \"author\": \"莫言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504021-e0068c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狮子之家的点心日\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504180-50d4c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成年人的谎言生活\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504189-ca8d83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白居易诗选（古典文学大字本）\",\n    \"author\": \"孙明君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504276-543fa0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恩古吉·瓦·提安哥文集（全7册）\",\n    \"author\": \"恩古吉・瓦・提安哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504327-8ea788?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外文大家小藏本（全17册）\",\n    \"author\": \"弗吉尼亚・吴尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504330-6dce17?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时空摆渡人\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504369-0e8e24?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜甫诗选（古典文学大字本）\",\n    \"author\": \"杜甫/谢思炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504429-062f6a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著大师课合集（套装全7册）\",\n    \"author\": \"柳鸣九等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词选（古典文学大字本）\",\n    \"author\": \"韩经太/王维若\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504993-b34598?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕慕克别样的色彩系列\",\n    \"author\": \"奥尔罕・帕慕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505356-3bb734?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学鉴赏辞典大系（套装共17部22册）\",\n    \"author\": \"上海辞书出版社文学鉴赏辞典编纂中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506529-6d5879?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄、情人、势利鬼、恶人\",\n    \"author\": \"塞巴斯蒂安・福克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505842-7f6488?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字与图像间的重庆（套装3册）\",\n    \"author\": \"杨宇振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506388-3c8521?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河铁道之夜（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506277-c17653?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生答案之书\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506391-6ca6c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓶梅的艺术\",\n    \"author\": \"孙述宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506652-ddc7ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏蛋与大象（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506616-7f1f34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木心路遥年谱套装（全2册）\",\n    \"author\": \"夏春锦/王刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506673-e8d422?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在最后一页等我\",\n    \"author\": \"索菲亚・蕾依\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506712-efdf8e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李商隐诗选（古典文学大字本）\",\n    \"author\": \"董乃斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506757-ccee5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书店日记套装（全2册）\",\n    \"author\": \"肖恩・白塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506799-7d0cc6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜降临前抵达\",\n    \"author\": \"刘子超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506844-8f9979?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃浮沉录\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506922-9eeba1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫中短篇小说全集（全8册）\",\n    \"author\": \"安东・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507030-e46ffb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李煜诗词全集（作家榜经典文库）\",\n    \"author\": \"李煜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507048-37f6d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重走：在公路、河流和驿道上寻找西南联大\",\n    \"author\": \"杨潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507096-34bbb4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原典书坊合辑（全八册）\",\n    \"author\": \"鲁迅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青梅竹马·樋口一叶选集（作家榜经典文库）\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507315-77109b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪事务所（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507474-204cb6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第3部：卷13~卷18）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509205-71e3f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国诗人徐志摩作品典藏全集\",\n    \"author\": \"徐志摩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英诗经典名家名译全集（套装共21本）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508305-0fc203?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（全四册）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508653-1087bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国通俗文学大家张恨水小说全集（套装共37册）\",\n    \"author\": \"张恨水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508677-137d11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神鬼奇兽夜读装（全5册）\",\n    \"author\": \"刘星等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508746-96e162?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学纪念译丛（套装共五册）\",\n    \"author\": \"利季娅・丘可夫斯卡娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508689-868443?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康德文集（注释版）\",\n    \"author\": \"伊曼努尔・康德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508737-9992e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫大合集（全10册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508854-9a7e1f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国文学史全系（套装共5本）\",\n    \"author\": \"李赋宁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508770-b38c29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想家和思想导读丛书精选（套装共5册）\",\n    \"author\": \"雷克斯・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·初中部分·全49种\",\n    \"author\": \"儒勒・凡尔纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508971-dab70d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆传：全本\",\n    \"author\": \"赛琳娜・黑斯廷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508869-f773e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘心武妙品红楼梦\",\n    \"author\": \"刘心武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508878-a5cdd8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·高中部分·全56种\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509052-6ba338?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叶芝：真人与假面\",\n    \"author\": \"理查德・艾尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508917-dea401?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柴纳·米耶维“新怪谭”奇幻文学系列（套装5册）\",\n    \"author\": \"柴纳・米耶维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508938-52b065?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学读本丛书典藏（第二辑全15册）\",\n    \"author\": \"王起主等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508965-0eb459?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯原版作品大合集（套装共70册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508989-b952cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抚顺故事集\",\n    \"author\": \"赵松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508974-9040b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文白对照四书五经全本（精注全译）\",\n    \"author\": \"李伯钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学纪念碑豆瓣高分套装（共十册）\",\n    \"author\": \"尼古拉・别尔嘉耶夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509055-03be36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫典藏作品九部\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509082-f028fe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫诗选（外国文学名著丛书）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西线无战事（果麦经典）\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509091-e5d1af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫禁色作品集（套装共15册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509106-9bcd46?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代文学批评史（全八卷）\",\n    \"author\": \"雷纳・韦勒克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509199-0aab12?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格中短篇小说选（外国文学名著丛书）\",\n    \"author\": \"斯・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509109-d38600?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字套装全五册（全本全注全译）\",\n    \"author\": \"许慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509451-f7225a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·小学部分·全27册\",\n    \"author\": \"格林兄弟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509292-20cf9c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草婴译列夫·托尔斯泰·全3种6册\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509229-b42707?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宁美文精选（全3册）\",\n    \"author\": \"伊凡・阿列克谢耶维奇・布宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509214-c671f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有本事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509241-f5b13a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯至译文全集（共四册）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509274-6808a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去年的树（果麦经典）\",\n    \"author\": \"新美南吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509280-4384dd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建党百年百篇文学短经典（全5册）\",\n    \"author\": \"贺绍俊等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509304-7fb398?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大书院（套装40册）\",\n    \"author\": \"孙武等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509625-852982?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐才子传（作家榜经典文库 ）\",\n    \"author\": \"辛文房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509463-4e9ff9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社博雅文库大全集（套装共24本）\",\n    \"author\": \"费孝通等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509547-14b151?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我知道光在哪里\",\n    \"author\": \"安东尼・雷・辛顿/劳拉・洛夫・哈丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509493-31e3e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝物录\",\n    \"author\": \"尤迪特・沙朗斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晴日木屐\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509502-0e8b9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的复出\",\n    \"author\": \"姜立涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509511-655a97?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无知\",\n    \"author\": \"迈克・詹姆斯・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509577-8fec76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅奖作家短经典（全14册）\",\n    \"author\": \"陈忠实等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509631-093196?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯文集·逝世150周年纪念版\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509703-27e896?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大城北京\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509667-8e85ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新中国70年长篇小说典藏（全38种50册）\",\n    \"author\": \"陈忠实等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509979-a70d0a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻小说的人\",\n    \"author\": \"比目鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509745-085174?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢生命根底里的宁静\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文与社会译丛·精选集（套装20册）\",\n    \"author\": \"汉娜・阿伦特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509832-1b9259?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录（全本全注全译）\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509775-46c4c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对着天空散漫射击\",\n    \"author\": \"李柳杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509805-142d19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁斯特的百万横财\",\n    \"author\": \"乔治・巴尔・麦克奇翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509847-3f5a73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第二季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典散文精选注译（套装共8册）\",\n    \"author\": \"傅璇琮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生因孤独而丰盛\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509907-f0c5ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尔·杜兰特经典系列（套装共4册）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509931-1e8eab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桶川跟踪狂杀人事件\",\n    \"author\": \"清水洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509955-7d12b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琉璃棺\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509976-f774f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云没有回答\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510006-ca0590?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木心上海往事\",\n    \"author\": \"铁戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510105-8d778a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜（果麦经典）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510144-7fa451?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳如是别传全三册\",\n    \"author\": \"陈寅恪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510150-87600a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被嫌弃的松子的一生（2021版）\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510186-029168?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漱石日记\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510213-f80a7f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自世界的消息\",\n    \"author\": \"波莱特・吉尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510216-bd22d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好结局\",\n    \"author\": \"伍子豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510261-53d911?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死之间\",\n    \"author\": \"汤姆・克兰西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510270-5965ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫客\",\n    \"author\": \"平出隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510357-6f1a60?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武汉女孩阿念日记\",\n    \"author\": \"吴尚哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510366-230d26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藤泽周平作品集（共5册）\",\n    \"author\": \"藤泽周平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510396-639bff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的个天\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510420-ff10a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理要在本格前\",\n    \"author\": \"谷崎润一郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510438-80e787?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华章同人重现经典（套装24册）\",\n    \"author\": \"安・兰德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510513-78819a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性的时刻\",\n    \"author\": \"梅琳达・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午后四点\",\n    \"author\": \"阿梅丽・诺冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510534-18488f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的编年史\",\n    \"author\": \"苔菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510567-c874f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给青年诗人的十封信\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510591-1f0423?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张荫麟作品集（套装共四册）\",\n    \"author\": \"张荫麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510609-e084e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基作品集（套装共9册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510720-d03973?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"围炉夜话（作家榜经典文库）\",\n    \"author\": \"王永彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510696-9e23ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明文选\",\n    \"author\": \"赵伯陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510711-3cd429?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凶年\",\n    \"author\": \"大卫・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆文学课：如何阅读与写作（作家榜经典文库）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510771-e7d7c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清文选\",\n    \"author\": \"刘世南/刘松来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510765-68d5d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敲响密室之门2\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510768-eb84c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑豹红狼\",\n    \"author\": \"马龙・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510780-2bb087?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借命而生\",\n    \"author\": \"石一枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510786-72ad5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的朋友阿波罗\",\n    \"author\": \"西格丽德・努涅斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510783-f66375?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（读客经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510825-94b6a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克拉拉与太阳\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510816-45d617?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骗子来到南方\",\n    \"author\": \"阿乙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510810-153214?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桑切斯的孩子们\",\n    \"author\": \"奥斯卡・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510819-58d021?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天地人丛书（全8册）\",\n    \"author\": \"周敦颐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510834-84e3cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小窗幽记（作家榜经典文库）\",\n    \"author\": \"陈继儒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510867-7b596f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学读本丛书典藏全集（共23册）\",\n    \"author\": \"薛天纬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510990-2cbfc9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经（锁线图文版）\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510882-3771c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉语四千年\",\n    \"author\": \"黎锦熙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510942-d4292c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录（全本全注全译）\",\n    \"author\": \"杨春俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"处世三大奇书（套装共3册）\",\n    \"author\": \"洪应明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510918-b3a5ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉魏六朝文选\",\n    \"author\": \"刘文忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510924-186bf2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好兵帅克（精美收藏版）\",\n    \"author\": \"雅・哈谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510987-790bec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂：足本（全三册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510981-38511d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋文选\",\n    \"author\": \"丁放等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510966-7feb6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔船\",\n    \"author\": \"西格弗里德・伦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510969-3e51f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡赋格：保罗·策兰诗精选\",\n    \"author\": \"保罗・策兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510972-2fc82c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溪山琴况 琴声十六法（全本全注全译）\",\n    \"author\": \"陈忱译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511044-5300d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人知晓的真由子\",\n    \"author\": \"今村夏子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511020-cf968e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独东京\",\n    \"author\": \"三浦紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511023-1cdc53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度光阴的人\",\n    \"author\": \"苏辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511038-a9bf9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑磨坊\",\n    \"author\": \"孙浩元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511041-59df79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦魇\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511050-520d2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典小白书（全14册）\",\n    \"author\": \"戴维・布朗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511128-49e429?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古物记\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511083-8bffd6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝范 臣轨 庭训格言（全本全注全译）\",\n    \"author\": \"王双怀等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511086-2c38d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的图书馆\",\n    \"author\": \"苏珊・奥尔琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511101-21bf23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死一只知更鸟（图像小说）\",\n    \"author\": \"哈珀・李/弗雷德哈珀・李福德姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511326-6ffb36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京百景\",\n    \"author\": \"又吉直树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511176-08526d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉家天下（1-4册）\",\n    \"author\": \"清秋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请照顾好我妈妈\",\n    \"author\": \"申京淑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511275-55c4a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为波伏瓦\",\n    \"author\": \"凯特・柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511278-68fad7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大真探赵赶鹅\",\n    \"author\": \"赵赶鹅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511287-36a95e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绅士肖像：毛姆短篇小说全集4\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511293-da7703?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返暗夜\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511299-1f11b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你学会独处\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511314-f0d8b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆记忆\",\n    \"author\": \"玛丽亚・斯捷潘诺娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511308-7680dd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的用途与滥用\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变形记（作家榜经典文库）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511323-ecb5b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚·希普洛斯套装（共6本）\",\n    \"author\": \"维多利亚・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511380-def7da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话（读客经典文库）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511362-ce4957?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匡超人\",\n    \"author\": \"骆以军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511404-a45907?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻人的国文课\",\n    \"author\": \"张一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511407-8e7f3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人笔记（作家榜经典文库）\",\n    \"author\": \"伊万・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511440-340449?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永隔一江水\",\n    \"author\": \"邓安庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511416-be1bd8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜之孤城\",\n    \"author\": \"辻村深月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511485-ef75a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步神保町\",\n    \"author\": \"鹿岛茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511500-50bc66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生处处是修行\",\n    \"author\": \"鬼脚七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511509-cd8ae1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（果麦经典）\",\n    \"author\": \"刘向/刘歆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511605-ee4d4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国特工阿申登：毛姆短篇小说全集3\",\n    \"author\": \"威廉・毛姆萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511611-1db5b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘大道\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511629-3fbd6f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好嘴杨巴\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511635-6f1834?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和日本文豪一起漫游老东京\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511725-b74903?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（作家榜经典文库）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511782-eaea45?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记（2020全新编校精美插图典藏本）\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511932-7b6bb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季羡林全集（套装全套三十卷）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511971-8fd3a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从山贼到水寇\",\n    \"author\": \"侯会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511998-036e05?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿：一部身体的回忆录\",\n    \"author\": \"罗克珊・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512007-c856a9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著丛书（第二辑）\",\n    \"author\": \"托尔斯泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512160-ee215b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原（果麦经典）\",\n    \"author\": \"托・斯・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512013-24591d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影意志\",\n    \"author\": \"王小鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512109-561eca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人与诗歌\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512106-566b82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个青年艺术家的画像（果麦经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512145-efc308?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应向花园安放灵魂\",\n    \"author\": \"达蒙・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512184-8c90b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李自成（全10册）\",\n    \"author\": \"姚雪垠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512232-b61f9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷心书店\",\n    \"author\": \"卡塔琳娜・碧瓦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512223-e07962?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"停靠，一座城\",\n    \"author\": \"李婧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512250-e4c3ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别去读诗\",\n    \"author\": \"斯蒂芬妮・伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512253-297890?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著丛书（第一辑）\",\n    \"author\": \"斯威夫特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512493-553b6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游荡集\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐收藏者\",\n    \"author\": \"娜塔莎・所罗门斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512265-2cf8be?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗境浅说\",\n    \"author\": \"俞陛云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512271-003d58?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咏叹生死\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512277-397e33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐媚记\",\n    \"author\": \"涩泽龙彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512298-9c9af8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋之星\",\n    \"author\": \"约瑟夫・奥康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512376-10a1f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女佣的故事\",\n    \"author\": \"斯蒂芬妮・兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512379-69c390?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士的故事\",\n    \"author\": \"克里斯蒂・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（作家榜经典文库）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512541-3dc7db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独小说家（作家榜经典文库）\",\n    \"author\": \"郁达夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512583-7a6408?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一瓣河川\",\n    \"author\": \"雨楼清歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512562-a90f94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学的形式与历史\",\n    \"author\": \"小森阳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512571-eb5773?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的天\",\n    \"author\": \"子日山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的丁一之旅\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512586-6d307a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星期天早上的远足\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512592-37f965?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗夜与黎明（全2册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512589-2157f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放熊归山\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512667-507cc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡波蒂作品集（套装共5册）\",\n    \"author\": \"杜鲁门・卡波蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512718-934d53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菜根谭（作家榜经典文库）\",\n    \"author\": \"洪应明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512730-2183ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺绘画鲁迅小说\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512835-de753e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚熟的人\",\n    \"author\": \"莫言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513048-bdef9c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和你一起读卡佛\",\n    \"author\": \"唐颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513054-4656f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎评论·女性作家访谈\",\n    \"author\": \"《巴黎评论》编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513063-257efa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有关品味\",\n    \"author\": \"彼得・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513072-dd4998?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海风电影院\",\n    \"author\": \"吴忠全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513090-0c3561?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真情\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513105-4d53e4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煮海时光\",\n    \"author\": \"白睿文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513129-02d351?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨夜短文\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513132-48b671?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来也不会好过现在\",\n    \"author\": \"基兰・塞蒂亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513138-ab2d02?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球上最后的夜晚\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513141-f4a8bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小约翰\",\n    \"author\": \"弗雷德里克・凡・伊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513147-416841?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨果文集（全12册）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513198-97bfd1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙语文学译丛（套装十册）\",\n    \"author\": \"皮格利亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513252-b17d34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挚友\",\n    \"author\": \"川端康成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513282-fc82c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄山：穿插\",\n    \"author\": \"徐贵祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513300-ed86c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄山：伏击\",\n    \"author\": \"徐贵祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513306-316b55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之间\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513309-1f761f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲利普·罗斯美国三部曲\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513318-997eb1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异乡记\",\n    \"author\": \"苏方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513339-7c356b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们深陷泥潭\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513357-b71e8f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无岸之岛\",\n    \"author\": \"维舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513354-8d56d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗5：雨必将落下\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513363-ea608c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平凹四书\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513396-3afcd4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈丹燕上海七部曲\",\n    \"author\": \"陈丹燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513546-381b04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金枝（全两册）\",\n    \"author\": \"詹姆斯・乔治・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513420-73750d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿勒颇养蜂人\",\n    \"author\": \"克里丝蒂・莱夫特里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513432-097de6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电子脑叶\",\n    \"author\": \"野崎惑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513429-a35151?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如空气般存在的我\",\n    \"author\": \"中田永一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513438-f251a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姥爷，我们天上见\",\n    \"author\": \"蒋雯丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513441-514038?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱锺书选唐诗\",\n    \"author\": \"钱锺书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513468-25af5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十侠\",\n    \"author\": \"邱华栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513444-b5cc64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第一季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午之魔\",\n    \"author\": \"安德鲁・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常看电影的人们\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513504-810102?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗4：在黑暗中舞蹈\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513585-9dcc19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突然死亡\",\n    \"author\": \"阿尔瓦罗・恩里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513627-aa9aba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的原野盛宴\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513663-a26536?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缘缘堂随笔：足本\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513684-7de20d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏杨曰（套装共3册）\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513699-311696?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美顺与长生\",\n    \"author\": \"毛建军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513723-731852?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女生徒（果麦经典）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513747-3ea885?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斑斓志\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513771-700ab7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛虻（果麦经典）\",\n    \"author\": \"埃塞尔・丽莲・伏尼契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513789-ea804a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到找到你\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004641-24f42b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步的艺术（果麦经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004617-10c91b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通向往昔之旅\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004584-516cd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸子的声音\",\n    \"author\": \"史一棋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004572-5c43ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张先生说\",\n    \"author\": \"张五毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004569-4fbbb6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛天赐传（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004530-ae8ca6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶人三部曲\",\n    \"author\": \"王旭烽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004542-8e6eba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术家们\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004527-7eb6bd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪假日\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004509-22c040?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本雅明作品集（套装共六册）\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004428-bf2da4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安德鲁不想孤独终老\",\n    \"author\": \"理查德・罗珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004413-c89f5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灿若黎明\",\n    \"author\": \"艾米・哈蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004398-f7de17?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的枷锁（作家榜经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004386-bd9f54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张炜中篇八部\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004383-06f415?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年曾祺：1920-2020\",\n    \"author\": \"梁由之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004320-812970?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先知：纪伯伦散文诗选（果麦经典）\",\n    \"author\": \"纪伯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004314-4501b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明年谱长编（全四册）\",\n    \"author\": \"束景南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004326-b1739c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风声（全新修订版）\",\n    \"author\": \"麦家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004296-d38126?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漠\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004275-783fd7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受害者\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004227-e12147?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神在人间的时光（修订版）\",\n    \"author\": \"陈喜辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004272-ae9f00?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弃猫\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004212-808499?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第二辑）\",\n    \"author\": \"詹姆斯・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004257-24dc6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"送行\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004179-a1ebc2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈话录\",\n    \"author\": \"王安忆/张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的姐姐住在壁炉上\",\n    \"author\": \"安娜贝尔・皮彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004167-6ca4ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文精选散文系列（全6册）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布莱希特作品集（套装共四册）\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004098-26f5ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年维特之烦恼（果麦经典）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004071-6309ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕边书\",\n    \"author\": \"帕梅拉・保罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004080-533237?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对着水牛唱歌的女孩\",\n    \"author\": \"肯特・奈尔本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004050-79200f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之殿\",\n    \"author\": \"但丁・罗塞蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004035-0d555d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典诗文之美（共13册）\",\n    \"author\": \"徐中玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004032-266b3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一间只属于自己的房间（果麦经典）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004002-2acb0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我去那花花世界\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003999-efb1ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墓志铭图书馆\",\n    \"author\": \"萨缪尔・法努斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003990-425456?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海百灵\",\n    \"author\": \"王新禧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004023-a305af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人音乐\",\n    \"author\": \"莱昂纳德・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003981-ba89b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清叙事文学中的城市与生活（大家读大家）\",\n    \"author\": \"胡晓真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003978-424fb6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热爱生命\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003963-6c71c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果萨莉没离开\",\n    \"author\": \"丽贝卡・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003960-ba3f4b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生文集（纪念版·全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003975-a3b5c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的病人\",\n    \"author\": \"亚历克斯・麦克利兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第一辑）\",\n    \"author\": \"詹姆斯・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003933-43e390?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003906-785783?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪击而不沉\",\n    \"author\": \"原田舞叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003864-ca2f3c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细读的乐趣（大家读大家）\",\n    \"author\": \"孙康宜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003852-6e5fd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流溪\",\n    \"author\": \"林棹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003843-927dda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵的焦灼（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003828-b5debe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名字之歌\",\n    \"author\": \"诺曼・莱布雷希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003795-864162?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"体验日本艺术和文学之美（套装共8册）\",\n    \"author\": \"叶渭渠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004164-e0848c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋汊子（全两册）\",\n    \"author\": \"董均伦/江源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003747-87ed89?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能人\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003732-389f14?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文本与阐释（大家读大家）\",\n    \"author\": \"夏志清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003720-c4af7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺散文全编（全6卷）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人鼠之间（果麦经典）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003681-64a126?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学不死（大家读大家）\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003597-028466?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧纸\",\n    \"author\": \"李沧东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003585-2b3e75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光明共和国\",\n    \"author\": \"安德烈斯・巴尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003576-2ca280?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七发（大家读大家）\",\n    \"author\": \"田晓菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003573-58cef2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返美丽新世界\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003570-70aa54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碎片\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003567-532213?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦因·西域游历丛书（15卷本）\",\n    \"author\": \"奥雷尔・斯坦因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003783-1b5133?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋灯琐忆（果麦经典）\",\n    \"author\": \"蒋坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003561-7f6be6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟道：周梦蝶世纪诗选\",\n    \"author\": \"周梦蝶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003564-b99874?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日之东·月之西：北欧故事集\",\n    \"author\": \"彼得・克利斯登・亚柏容森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003552-8f56f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"项塔兰（套装全三册）\",\n    \"author\": \"格里高利・大卫・罗伯兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003516-7758a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她们\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003504-32b574?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小手\",\n    \"author\": \"安德烈斯・巴尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003498-5cabcf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗的引诱（大家读大家）\",\n    \"author\": \"宇文所安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003492-0ca141?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯坦德的梦想家\",\n    \"author\": \"埃里克-埃马纽埃尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003474-2b56d5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间机器（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003399-288485?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"露水的世\",\n    \"author\": \"文泉子/小林一茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003459-74a562?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦二画集：春夏秋冬（全四册）\",\n    \"author\": \"竹久梦二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003501-1f3a89?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥拉·泼泥翁\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003300-429a97?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮城\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003294-d41047?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好狗朱迪\",\n    \"author\": \"达米恩・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003291-6710c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞巴尔德作品集\",\n    \"author\": \"温弗里德・塞巴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003279-53f936?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬崖边的树（大家读大家）\",\n    \"author\": \"王德威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003186-dd0d38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日食之后\",\n    \"author\": \"萨拉・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003177-593f47?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰猎犬号\",\n    \"author\": \"C.S.佛瑞斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003174-b32007?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尼亚传奇（果麦经典）\",\n    \"author\": \"C. S. 刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003126-d6c87d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逍遥游\",\n    \"author\": \"班宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003105-860ab0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸳鸯六七四\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003099-a7036d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市是件花衣裳（大家读大家）\",\n    \"author\": \"张小虹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003096-533f9d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看护杀人\",\n    \"author\": \"每日新闻大阪社会部采访组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003012-070566?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空下的两万条街道（果麦经典）\",\n    \"author\": \"帕特里克・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002991-2be3d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尼亚传奇全集（套装共7册）\",\n    \"author\": \"C.S.路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002988-6b8b50?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（作家榜经典文库）\",\n    \"author\": \"蘅塘退士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002970-071756?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"停车暂借问\",\n    \"author\": \"钟晓阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002892-c12e94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代志怪小说鉴赏辞典\",\n    \"author\": \"上海辞书出版社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002868-8633d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生未完成（增订新版）\",\n    \"author\": \"于娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁光文集（全七卷）\",\n    \"author\": \"鲁光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002922-4d0e34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的卫星\",\n    \"author\": \"刘子超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002802-e743e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文章家与先知\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002784-df3f39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庸人自扰（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002778-5d4c54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿（读客经典）\",\n    \"author\": \"尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002727-32bf78?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师周作人作品大全集（套装七十八册）\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002694-d93afe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史诗\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002601-f15366?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天命（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002598-5f628b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非虚构的艺术\",\n    \"author\": \"特雷西・基德尔/理查德・托德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002583-d3c7fb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时（果麦经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002574-f02fe9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生\",\n    \"author\": \"刘汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯卡与玫瑰奶奶\",\n    \"author\": \"埃里克-埃马纽埃尔·施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002568-5d28cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地孤旅（纪念版）\",\n    \"author\": \"村郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002541-35ef19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短篇小说家与作品\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002460-fcb78c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光天化日\",\n    \"author\": \"埃里克・安布勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002457-f1a8f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心有猛虎，细嗅蔷薇（果麦经典）\",\n    \"author\": \"西格夫里・萨松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"路内·追随三部曲\",\n    \"author\": \"路内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002436-983fb0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的爱\",\n    \"author\": \"埃里克-埃马纽埃尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002421-00aa03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李娃\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002409-e39509?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海边小屋\",\n    \"author\": \"梅・萨藤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002400-bbe7a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛尔戈王后\",\n    \"author\": \"亚历山大・仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002424-836ef4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌以言志\",\n    \"author\": \"周毅/舒明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002397-3d9575?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顿悟的时刻\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002361-5fc211?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化失忆\",\n    \"author\": \"克莱夫・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002394-6a02b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧作家与戏剧\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002349-c2d4cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷泉港（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002343-3176c0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九月寓言\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002331-a9f1f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食，祈祷，恋爱\",\n    \"author\": \"伊丽莎白・吉尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旅程结束时\",\n    \"author\": \"张其鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002322-049cce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格非先锋文学精选（全套7册）\",\n    \"author\": \"格非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002298-e16dd6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说家与小说\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002274-876831?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（果麦经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾经典合集（共24册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002232-b29b6a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方正典\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002175-1336fb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脚客\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002142-08a9b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五魁\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002136-93e7f1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山本\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002145-c287a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·德·莱斯案\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的夏天还好吗？\",\n    \"author\": \"金爱烂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002130-affe9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗歌手册：诗歌阅读与创作指南\",\n    \"author\": \"玛丽・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002031-f4b308?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋带\",\n    \"author\": \"多梅尼科・斯塔尔诺内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002025-658d6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜晚的潜水艇\",\n    \"author\": \"陈春成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001971-6b549b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事（果麦经典）\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001968-e8ada4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃醋的人生\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001887-dba4a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的池塘\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001884-f17b91?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"误读全书\",\n    \"author\": \"萧萧树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001878-58c86e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人笔记（果麦经典）\",\n    \"author\": \"伊凡・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001815-50efa3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曼哈顿的中国杂技\",\n    \"author\": \"李尤松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001836-8e306e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐透\",\n    \"author\": \"雪莉・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001788-f28c88?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舞台音乐\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001740-f3e084?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格作品集（套装共9册）\",\n    \"author\": \"斯特凡・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001710-78d962?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马科斯与猫科动物\",\n    \"author\": \"莫瓦西尔・斯克利亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001650-610d1d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·情感故事书系（套装共66本）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岁月的针脚\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001560-cd381e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大山里的小诗人\",\n    \"author\": \"“是光”的孩子们\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001554-8c8cf0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（作家榜经典文库）\",\n    \"author\": \"但丁・阿利吉耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001539-6e9215?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家们\",\n    \"author\": \"巴里・吉福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001497-2f3153?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古事记（果麦经典）\",\n    \"author\": \"安万侣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001485-8d7c2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪客美食家\",\n    \"author\": \"久住昌之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001461-2bebba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集评注\",\n    \"author\": \"李冰若\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001446-d19d15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁实秋经典作品雅致生活系列（套装共5册）\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001419-010171?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思恩格斯文集1~10卷（套装共10册）\",\n    \"author\": \"中共中央马克思恩格斯列宁斯大林著作编译局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001404-2469af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李健吾译文集（套装共14册）\",\n    \"author\": \"福楼拜等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001437-81e8a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读23：破碎之家\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001347-5914af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银汤匙（果麦经典）\",\n    \"author\": \"中勘助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001314-314d93?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读：十周年特辑\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南货店\",\n    \"author\": \"张忌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001296-9000ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凌乱的床\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001293-92ab13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情的逻辑\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001287-7558eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传统应该这样读系列（套装共6册）\",\n    \"author\": \"叶嘉莹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001284-6eca82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉檀迦利（果麦经典）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001179-3f0045?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为我自己：欧文·亚隆回忆录\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001128-9e4690?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（作家榜经典文库）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001044-27b101?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉萨河女神\",\n    \"author\": \"马原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001026-91a00f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄罗斯文学（牛津通识读本）\",\n    \"author\": \"卡特里奥娜・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000954-afc95e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李洱精选集（全八册）\",\n    \"author\": \"李洱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000927-e9ba0b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读20：新新新青年\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000882-338614?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木心全集（典藏套装十六册）\",\n    \"author\": \"木心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000903-881927?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的24则运算\",\n    \"author\": \"林婉瑜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000729-a46ceb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不属于我们的世纪（修订版）\",\n    \"author\": \"马修・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000720-d0d47d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（读客经典）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000699-3c0b68?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事的本质\",\n    \"author\": \"罗伯特・斯科尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000672-1aa743?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明前说我爱你\",\n    \"author\": \"彼得・加尔多什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000621-4328cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐贩卖机\",\n    \"author\": \"凯蒂・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色俄罗斯系列（第二辑）\",\n    \"author\": \"普希金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000600-533ea6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春潮（作家榜经典文库）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000564-12b502?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵魂有香气的女子\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000549-02c63e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达摩流浪者（作家榜经典文库）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000387-669fb4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活力\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000384-b839c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个基本\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000378-a3882f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗心\",\n    \"author\": \"米・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000375-39b101?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字的思考\",\n    \"author\": \"张克敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000396-76b5eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"觉醒\",\n    \"author\": \"凯特・肖邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000351-1aaa04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安之书\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000333-bab6a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活（读客经典）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000327-3b980c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回到故乡的陌生人\",\n    \"author\": \"莫欣・哈米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000318-567b63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火焰\",\n    \"author\": \"莱昂纳德・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000321-1f47fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖喱香肠的诞生\",\n    \"author\": \"乌韦・提姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000282-bf0d55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柄谷行人文集（套装六册）\",\n    \"author\": \"柄谷行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000243-dc2d0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群雄逐鹿：彩绘三国演义\",\n    \"author\": \"金协中绘/成长著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000246-278283?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自深深处（果麦经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000213-ef7333?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海鸟的哭泣\",\n    \"author\": \"亚当・尼科尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000207-89a275?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年中国记忆·文艺大家系列丛书（全十册）\",\n    \"author\": \"李苦禅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000171-232908?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子夜（果麦经典）\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000102-ac0b0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲（读客经典）\",\n    \"author\": \"卡伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999988-a065d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证言\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999934-d6daab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的四十条法则\",\n    \"author\": \"艾丽芙・沙法克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999928-5cb3a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快意江湖：彩绘水浒传\",\n    \"author\": \"张琳绘/张睿著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999922-583382?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（作家榜经典文库）\",\n    \"author\": \"费奥多尔・米哈伊洛维奇・陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999847-be2ddd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的焦虑是一束火花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999841-6b89b0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桂花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降魔修心：彩绘西游记\",\n    \"author\": \"林遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000642-780a39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培根随笔全集（作家榜经典文库）\",\n    \"author\": \"弗朗西斯・培根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余事勿取\",\n    \"author\": \"魏思孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999541-42eaff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说精选（果麦经典）\",\n    \"author\": \"安东・巴甫洛维奇・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999523-d0d9cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林人（作家榜经典文库）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999451-b07ef2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的孤独\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999223-931baf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"订书匠\",\n    \"author\": \"布里奇特・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999211-bda260?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"济公传奇（套装9册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999598-b81231?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初恋（作家榜经典文库）\",\n    \"author\": \"伊凡・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999073-2cb9f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知晓我姓名\",\n    \"author\": \"香奈儿・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒凉山庄（插图珍藏版）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999151-c700d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（果麦经典）\",\n    \"author\": \"屈原等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999010-1d65d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性本恶\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998977-2d9306?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋园\",\n    \"author\": \"杨本芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998932-5bad21?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（果麦经典）\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998860-dbddd1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩灭之赋\",\n    \"author\": \"四方田犬彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998827-81b786?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书杂志\",\n    \"author\": \"王念孙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘世梦影：彩绘红楼梦\",\n    \"author\": \"孙温/王典弋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999178-c5dc11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草枕（果麦经典）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998569-850adf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三人\",\n    \"author\": \"格雷厄姆・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998491-6dbde1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聋哑时代\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998479-a545ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查拉图斯特拉如是说（果麦经典）\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997918-4ecd27?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把地上的事往天上聊\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997897-ff709e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼魂的盛宴\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997819-57a1d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱的桥\",\n    \"author\": \"马库斯・苏萨克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997768-6031fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗雷德蒙德·马利克作品集（全套6册）\",\n    \"author\": \"弗雷德蒙德・马利克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997756-56b1da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书与行走\",\n    \"author\": \"陈忠实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997663-5f95e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废墟曾经辉煌\",\n    \"author\": \"张翎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997651-35de85?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国文学经典译丛（共6本）\",\n    \"author\": \"乔治・桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997660-f91dd1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（作家榜经典文库）2020版\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997672-b67be3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙乡年鉴（经典译林）\",\n    \"author\": \"奥尔多・利奥波德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997633-c1cc0f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终于\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997603-36513e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记丛书\",\n    \"author\": \"沈复/陈裴之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诺“读书四部曲”\",\n    \"author\": \"唐诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996982-7a2e32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏辽兹回忆录\",\n    \"author\": \"埃克托尔・柏辽兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996952-cf4c12?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈忠实文集（全10册）\",\n    \"author\": \"陈忠实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996946-fc37da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算了\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996913-f147a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下町火箭4\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996895-a2928b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗吉尼亚·伍尔夫作品集（套装共6册）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996826-c6f60d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"觉醒（2020年精装版）\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996625-acb6fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花园中的处子\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996616-1be3ff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红项圈\",\n    \"author\": \"让-克利斯托夫·吕芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996508-05afae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词境浅说\",\n    \"author\": \"俞陛云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996517-e39145?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里\",\n    \"author\": \"石钟山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996502-a07470?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十月国度\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996484-1dafee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噩耗\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996463-7a111b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎注评\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶稣的学生时代（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995869-614b2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽暗之地（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995590-9c1e13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄\",\n    \"author\": \"斯蒂芬・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995575-9cd60e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季羡林精选集（套装共8册）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995536-2bdb8c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪伯伦大全集名家译著经典套装（全七册）\",\n    \"author\": \"纪伯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995524-a19e30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无愁河的浪荡汉子：朱雀城·八年（全12卷）\",\n    \"author\": \"黄永玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995611-ef385a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此时此地（库切文集）\",\n    \"author\": \"保罗・奥斯特/J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995512-7d1912?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神话\",\n    \"author\": \"斯蒂芬・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995473-1daa2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995452-005b32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河系边缘的小失常\",\n    \"author\": \"埃特加・凯雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995446-9b276f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶稣的童年（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995413-aa1656?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草婴译著全集（套装共21册）\",\n    \"author\": \"草婴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995386-861aa3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列那狐的故事（作家榜经典文库）\",\n    \"author\": \"威廉・卡克斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995368-9b04db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏珊·桑塔格文集套装（套装共16册）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995377-7fe3c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴老师魔性诗词课\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995359-399e21?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（作家榜经典文库）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995341-51019b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迪伦马特戏剧集（全2册）\",\n    \"author\": \"弗里德里希・迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995305-1b9e72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话（果麦经典）\",\n    \"author\": \"汉斯・克里斯汀・安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995311-bfdc72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"施尼茨勒作品集（全3册）\",\n    \"author\": \"阿图尔・施尼茨勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995290-617c79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎评论（套装共7册）\",\n    \"author\": \"《巴黎评论》编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995236-9e2014?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克小说集（傅雷译文经典）\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995194-58db5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一次真相\",\n    \"author\": \"赤蝶飞飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995176-68895f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番石榴飘香\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995158-d063ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"葡萄牙的高山\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995155-2caaad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相约星期二\",\n    \"author\": \"米奇・阿尔博姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995149-c4bf6c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记（读客经典文库）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995134-d8eeaf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张洁文集（九卷本）\",\n    \"author\": \"张洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随大全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995206-7fee3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象（短经典）\",\n    \"author\": \"斯拉沃米尔・姆罗热克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995086-94f6de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪夜来客\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995071-9ecd56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地心游记（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅的都市漫游\",\n    \"author\": \"藤井省三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995002-8ac38e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祈念守护人\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994984-d37bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交错的世界\",\n    \"author\": \"詹姆斯・冈恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994981-3f09d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"因为性别\",\n    \"author\": \"吉莉恩・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994912-c2c6df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发明小说的人\",\n    \"author\": \"威廉・埃金顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994825-34c441?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"比尔·波特全集（共8册）\",\n    \"author\": \"比尔・波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994852-852931?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血殇\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牧羊少年奇迹之书大全集（12册）\",\n    \"author\": \"保罗・柯艾略\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994774-be21cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学与人：20世纪西方哲学精选（套装共5本）\",\n    \"author\": \"卡尔・雅斯贝斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在别人的句子里\",\n    \"author\": \"陈以侃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994660-ef8591?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基：作家与他的时代\",\n    \"author\": \"玛丽・彼得鲁塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994630-9c340a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廷巴克图\",\n    \"author\": \"约书亚・哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写在身体上\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994540-f64a45?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保罗·奥斯特作品集（套装共8册）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994537-3a23e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲人之歌\",\n    \"author\": \"卡洛斯・富恩特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994528-250ca1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见马戏团\",\n    \"author\": \"伊坂幸太郎/曼努埃尔・菲奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994525-225149?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿条纹睡衣的男孩\",\n    \"author\": \"约翰・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993655-b05aae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到婚礼去\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993640-c1034d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗忘通论\",\n    \"author\": \"若泽・爱德华多・阿瓜卢萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992440-d7256d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大小谎言\",\n    \"author\": \"莉安・莫里亚蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992374-c85ca5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勃朗特姐妹\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992371-22ab0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要和你妈争辩\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下町火箭3\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992200-402e14?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八十天环游地球（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992194-dd571f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生删除事务所\",\n    \"author\": \"本多孝好\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992101-c22289?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在雨中等你\",\n    \"author\": \"加思・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992038-e92926?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史学要籍丛刊\",\n    \"author\": \"左丘明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992179-55d354?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的奥尔加\",\n    \"author\": \"本哈德・施林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991903-a21efe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰下的人\",\n    \"author\": \"侯磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991882-f6f0a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种死法（读客版）\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991855-3d9ab3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陆王\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991852-a7e2da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰上斯芬克斯\",\n    \"author\": \"儒尔・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（博集天卷）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，我是接体员\",\n    \"author\": \"大师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日永别\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991768-6563a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假作真时\",\n    \"author\": \"黄昱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯（全3册）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991588-669fa5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大名著（彩皮版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（作家榜经典文库）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991585-a3b4c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民王\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991564-4f72db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十部小说及其作者\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991540-89a5e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（果麦经典）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991528-1cf2cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同体的焚毁\",\n    \"author\": \"希利斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991525-c08881?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰传\",\n    \"author\": \"安德烈・莫洛亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯友兰三松堂全集\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991363-e10961?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八千里路云和月\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光阴似剪\",\n    \"author\": \"达娜・斯皮奥塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991126-9b7881?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乔治·西默农作品精华选\",\n    \"author\": \"乔治・西默农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991147-dca421?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短经典系列（套装共15册）\",\n    \"author\": \"路易吉・马莱巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991078-23a4a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们不是虹城人\",\n    \"author\": \"王苏辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990964-b8afd7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五重塔\",\n    \"author\": \"幸田露伴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991000-d7b7e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的孤独者\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990946-509c94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪者（读客经典）\",\n    \"author\": \"卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990928-0ab20b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死玛丽苏\",\n    \"author\": \"乙一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990913-f79fa7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（作家榜经典文库）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990895-2603f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人行世界\",\n    \"author\": \"七马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990592-949566?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间与河流\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990580-4bae0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的人生歌单\",\n    \"author\": \"格雷姆・辛浦生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的思想（中英双语版·全48册）\",\n    \"author\": \"马可・波罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万有引力之虹（全译修订本）\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990430-11e25b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫三部曲\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990385-be527b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的安吉维拉\",\n    \"author\": \"奇玛曼达・恩戈兹・阿迪契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990373-e61286?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天平之甍\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990343-181c26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"N个国王和他的疆土\",\n    \"author\": \"李浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990331-428bda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要问我\",\n    \"author\": \"东西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990325-750d79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个人的车站\",\n    \"author\": \"埃・韦・布拉金斯基/埃・亚・梁赞诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不回家的诱惑\",\n    \"author\": \"山本文绪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990292-643c61?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两地书（套装共三册）\",\n    \"author\": \"鲁迅/景宋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990286-f28c56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不一样的文学史\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之路（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990163-9fe5c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈扎尔绅士\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990151-0b2e68?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的茶话会\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990148-18dd3b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一次将是烈火\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见毕加索\",\n    \"author\": \"让・科克托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990127-c4de9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非正常死亡事件簿\",\n    \"author\": \"上野正彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990121-2cc599?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷2）\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990103-846409?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光狂想曲\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三言二拍插图典藏版（全六册）\",\n    \"author\": \"冯梦龙等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990106-7735f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟往来书信集\",\n    \"author\": \"梁培宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可怕的孩子\",\n    \"author\": \"让・谷克多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990043-5f0e5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔桶（短经典）\",\n    \"author\": \"伯纳德・马拉默德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990034-7cb146?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青梅竹马\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990031-2346b0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗选注\",\n    \"author\": \"葛兆光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日45：这就是三岛由纪夫\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990112-b7b25e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国游戏\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989977-a49ce1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下町火箭2\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989959-18c2d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十三夜\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989941-4ca418?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯科塔的太阳\",\n    \"author\": \"洛朗・戈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989932-49b7ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京二十三区女子\",\n    \"author\": \"长江俊和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989896-b88cb7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字传奇\",\n    \"author\": \"袁筱一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989881-f84d16?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十六陂烟水\",\n    \"author\": \"刘荒田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989779-84dc83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颂·雅·风\",\n    \"author\": \"徐迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989755-ec3df0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韦力芷兰斋书店寻访三部曲\",\n    \"author\": \"韦力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990037-71fc2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜小说集（套装共4册）\",\n    \"author\": \"居斯塔夫・福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989761-e1636e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等伯：金与墨\",\n    \"author\": \"安部龙太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989644-6d8faf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拍卖第四十九批\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989599-5f3577?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见你之前\",\n    \"author\": \"乔乔・莫伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989596-f44ddf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野果\",\n    \"author\": \"亨利・大卫・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989572-668ed4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国往事1905-1949（共四册）\",\n    \"author\": \"赵柏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989617-e19045?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷1）\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家训（全本全注全译）\",\n    \"author\": \"檀作文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989560-a0570d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔山（读客经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989524-5ccc77?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如比尔街可以作证\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989149-9bb539?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全面战争·日式三国（套装共5册）\",\n    \"author\": \"吉川英治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989020-6eb90a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大吉岭到克什米尔\",\n    \"author\": \"闻中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞万提斯全集（全八卷）\",\n    \"author\": \"米格尔・德・塞万提斯・萨阿维德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988813-dff794?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的面孔\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988498-04aa6e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国·点评本（全11册）\",\n    \"author\": \"孙皓晖/谢有顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988537-4ac278?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无颜者\",\n    \"author\": \"平野启一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988444-bd6c9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风暴眼\",\n    \"author\": \"帕特里克・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988402-cf5517?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二代目归来\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988351-2d0fbe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全7册）\",\n    \"author\": \"伊万谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对不在场证明\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988114-a2c7ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日蚀\",\n    \"author\": \"平野启一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988099-05a34a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝的驿站\",\n    \"author\": \"夏坚勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988093-4ba392?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大话西方艺术史\",\n    \"author\": \"意公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988072-ecbb42?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啸天说诗（全6册）\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987703-41f27c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手绘儒生\",\n    \"author\": \"金龠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987880-6e72c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系度假指南\",\n    \"author\": \"奥莉维亚・科斯基/加纳・格鲁赛维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学法兰西\",\n    \"author\": \"普利西拉・帕克赫斯特・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说药丸\",\n    \"author\": \"埃拉・伯绍德/苏珊・埃尔德金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987217-831e84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"童年兽\",\n    \"author\": \"陆源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987160-9de6e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣懒汉的冒险\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987163-633c4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余秋雨作品全集（套装共12册）\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987538-9bf3bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣家族\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987097-c13163?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳与少女\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987055-66c73f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默书房丛书（套装共8册）\",\n    \"author\": \"J.K.杰罗姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986989-a243cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗圣杜甫\",\n    \"author\": \"吕正惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986797-203237?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水妖\",\n    \"author\": \"内森・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986659-c94878?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情就是堆积如山的笔记\",\n    \"author\": \"苏美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使的孩子\",\n    \"author\": \"丹尼尔・斯蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986575-694e6f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学课\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986485-1c1bd5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的虚构\",\n    \"author\": \"劳拉・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986272-57d69c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚风如诉\",\n    \"author\": \"肯特・哈鲁夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986068-b1f20b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小文艺口袋文库·知人系列（全7册）\",\n    \"author\": \"安妮・海勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985999-ba1691?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周锐幽默三国、西游记、水浒传、红楼梦系列套装4本\",\n    \"author\": \"周锐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985975-9f41e8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第五辑）\",\n    \"author\": \"蒲松龄等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985930-aed100?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听你的\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌蒙山记\",\n    \"author\": \"雷平阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与戛纳\",\n    \"author\": \"蒂耶里・福茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学履途\",\n    \"author\": \"纽约时报主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985852-f9ca35?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶的肉身\",\n    \"author\": \"伊夫林・沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985819-c6fc66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方百年学术经典著作（套装共30品38册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985768-ab1baa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们失去的光\",\n    \"author\": \"吉尔・桑托波罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985711-f7b9ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮尔士论符号 （二十世纪西方哲学经典）\",\n    \"author\": \"查尔斯・皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要塞（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985693-c622f6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奢侈贫穷\",\n    \"author\": \"森茉莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985675-b44dc3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·伯格作品13册套装\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985822-e14dbb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅微草堂笔记（全本全注全译）\",\n    \"author\": \"纪昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985663-f34ed2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第四辑）\",\n    \"author\": \"弗吉尼亚・伍尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（中英双语典藏版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯德哥尔摩情人\",\n    \"author\": \"陆俊文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985576-dc8c8a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的音乐笔记\",\n    \"author\": \"肖复兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声色野记\",\n    \"author\": \"侯磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神性的温柔\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的大地（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我们阅读时，我们看到了什么\",\n    \"author\": \"彼得・门德尔桑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流放的老国王\",\n    \"author\": \"阿尔诺・盖格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985414-66b2dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石全集：临川先生文集\",\n    \"author\": \"王水照主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"充闾文集（套装共21册）\",\n    \"author\": \"王充闾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985405-cbee79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜氏家训（全本全注全译）\",\n    \"author\": \"檀作文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985381-82364d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是什么\",\n    \"author\": \"戴夫・艾格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985360-030e8e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智利之夜\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985345-9f6534?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小报戏梦\",\n    \"author\": \"罗伯特・奥伦・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985342-fd9e50?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚经典作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后来的事\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985330-0cbe3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四月女友\",\n    \"author\": \"川村元气\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985327-88b7a9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韦启昌译叔本华系列（共6册）\",\n    \"author\": \"叔本华/尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985312-e66849?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方邮航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985288-11c68c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护身符\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985258-000242?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋水堂论金瓶梅\",\n    \"author\": \"田晓菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985261-d50df1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死96小时\",\n    \"author\": \"冯韵娴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985246-d27bd2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俗世奇人全本\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985231-a9ccfe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狩猎游戏\",\n    \"author\": \"M·A·本内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985216-54d753?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙田随笔全集（共3册）\",\n    \"author\": \"米歇尔・德・蒙田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985171-fc3c5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佩恩先生\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985156-46b0f6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人设\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985153-a9d04a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野侦探\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985138-fcc4c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫作品（共15册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985132-9232ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我余生的第一天\",\n    \"author\": \"维尔吉妮・格里马尔蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985000-fd55f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺全集（全十二卷）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984991-c81bdf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐霞客游记（全本全注全译）\",\n    \"author\": \"朱惠荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984961-6859f1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"留白：秋水堂文化随笔\",\n    \"author\": \"田晓菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984928-62a884?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海摩登（修订版）\",\n    \"author\": \"李欧梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文诗集\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是孤独的旅程\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实：一个小说家的自传\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984871-7df3e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦蛇\",\n    \"author\": \"冯达·N.麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984835-beb8f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漏做招牌的疗养院\",\n    \"author\": \"布鲁诺・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984817-29e172?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集校注（中华国学文库）\",\n    \"author\": \"赵崇祚编/杨景龙校注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984802-9d5c8d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文选（全本全注全译）\",\n    \"author\": \"萧统\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球编年史（套装全七册）\",\n    \"author\": \"撒迦利亚・西琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善心女神\",\n    \"author\": \"乔纳森・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984781-170459?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影师的妻子\",\n    \"author\": \"苏珊・乔伊森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昭明文选（套装共五册）\",\n    \"author\": \"萧统\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984763-46c527?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人幸免\",\n    \"author\": \"奥马尔・阿卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛格丽特·杜拉斯作品（共16册）\",\n    \"author\": \"玛格丽特・杜拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984718-62127c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏子春秋校注（中华国学文库）\",\n    \"author\": \"张纯一撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马家辉家行散记（共3册）\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984712-10fe3b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我和这个世界不熟\",\n    \"author\": \"城迟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984640-5ee8f4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坟场之书\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984631-c99749?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人，做得到任何事\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984625-a03251?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李娟阿勒泰系列（共4册）\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚全集（套装共10本）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984475-8c8d8a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搜神记（全本全注全译）\",\n    \"author\": \"马银琴译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984313-21a38c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界英雄史诗译丛（套装14册）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984031-b9ecb5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾行者\",\n    \"author\": \"路内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983968-99377d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的一瞬间\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983962-13cbc9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴尔夫文集（全6册）\",\n    \"author\": \"艾德琳・弗吉尼亚・伍尔芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983956-3901fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月球房地产推销员\",\n    \"author\": \"李唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983935-c8e067?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨贵妃\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983926-a15f34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏与西伯利亚\",\n    \"author\": \"倪湛舸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢你，像风走了八千里\",\n    \"author\": \"末那大叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拾遗记（全本全注全译）\",\n    \"author\": \"王兴芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983911-a2e9a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕碧城著作（上下册）\",\n    \"author\": \"会闲/鈡锦/李保民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984652-1b7978?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热带\",\n    \"author\": \"李唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983884-d6578c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠悠我心\",\n    \"author\": \"史杰鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年灯火要人归\",\n    \"author\": \"陆蓓容\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983866-8a5362?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹·布朗作品系列新版（套装共7册）\",\n    \"author\": \"丹・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983848-1b6061?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫游者\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983791-958502?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血与火：坦格利安王朝史\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983806-ec2271?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周大新文集（全18册）\",\n    \"author\": \"周大新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983764-c45416?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目漱石作品（共15册）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983740-02e528?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"路遥作品（新版典藏）\",\n    \"author\": \"路遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983668-b0b836?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想我苦哈哈的一生\",\n    \"author\": \"詹姆斯・瑟伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983644-9228c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忏悔录（上下册）\",\n    \"author\": \"卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文字发展史（套装共5册）\",\n    \"author\": \"臧克和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983776-60f56e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身外之海\",\n    \"author\": \"李唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983404-123992?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐祈诗全编\",\n    \"author\": \"唐祈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983401-76fd36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正的接纳，就是爱上不完美的自己\",\n    \"author\": \"爱丽丝・博伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983356-42cd5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹈鹕丛书（共6册）\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劝学篇（全本全注全译）\",\n    \"author\": \"张之洞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983266-6db10e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作的诞生\",\n    \"author\": \"多萝西娅・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983179-258589?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想我眷村的兄弟们\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983164-66ee40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕哈萨帕之歌\",\n    \"author\": \"肯特・纳尔本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983140-a2a003?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睿文馆系列（共十五册）\",\n    \"author\": \"贾雷德・戴蒙德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983122-3c98aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉戈萨手稿\",\n    \"author\": \"扬・波托茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982513-606bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦溪笔谈（全本全注全译）\",\n    \"author\": \"沈括\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982498-8c1213?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（读客经典）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982507-7418ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坡道上的家\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982486-16b5cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的桌子\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982483-fa4e5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去圣伯多禄的路上\",\n    \"author\": \"吴文君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982468-74bc82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小文65\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982444-87cc64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲情偶寄（全本全注全译）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982435-f2b94d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何爱会伤人（珍藏版）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾作品（共21册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982492-7bf040?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对决人生：解读海明威\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054528-4f1dae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一片树叶的颤动\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054492-7e8119?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐之屋\",\n    \"author\": \"哈拉・艾兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054483-84cfa5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华古典文库典藏（共40册）\",\n    \"author\": \"李汝珍等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054597-4de0db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔战时文集\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国四大名著（插图典藏版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054390-341814?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样写故事\",\n    \"author\": \"莉萨・克龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中产阶级看月亮\",\n    \"author\": \"萧耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054210-33aec6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切特立独行的人都意味着强大\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053730-614dee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迁徙的间隙\",\n    \"author\": \"董劼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053526-6e3a84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历滇缅公路（套装共4本）\",\n    \"author\": \"内维尔・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文学（牛津通识读本）\",\n    \"author\": \"尼古拉斯・博伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与神对话（全五卷）\",\n    \"author\": \"尼尔・唐纳德・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫中的恋人\",\n    \"author\": \"陈雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053472-87b733?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柠檬\",\n    \"author\": \"梶井基次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053202-8991a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岛西岸的来信\",\n    \"author\": \"洛丽・施皮尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053124-ef774c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性盲症患者的爱情\",\n    \"author\": \"张天翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053070-b8c727?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重逢\",\n    \"author\": \"弗雷德・乌尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳台上\",\n    \"author\": \"任晓雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053022-ae07ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰的预言\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053016-dca2af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午5：有人送我西兰花\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052992-b766ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写出娱乐的力量\",\n    \"author\": \"貴志祐介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052950-ffb7f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午6：旧山河，新故事\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午7：我们的生活\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052818-d04d83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午2：此地不宜久留\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052698-caedb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人十四个\",\n    \"author\": \"黄晓丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052656-80a0a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走：Green和张早故事集\",\n    \"author\": \"司屠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052647-06ffd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午3：到海底去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052620-5a8fe8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字里行间读鲁迅\",\n    \"author\": \"黄乔生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052611-2c45de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国网络文学二十年\",\n    \"author\": \"欧阳友权\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052599-e1d803?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证词\",\n    \"author\": \"斯科特・特罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052581-58983f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴建业作品集（套装共9册）\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052557-227327?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午4：我的黎明骊歌\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052587-a22353?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火车大巴扎\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052536-571f79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的儿子\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052317-472f57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也是鲁迅的遗物：朱安传\",\n    \"author\": \"乔丽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午1：我穿墙过去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的幽灵：文学与常识\",\n    \"author\": \"安托万・孔帕尼翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052251-1b4968?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空之蓝\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052230-fa9975?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去洞庭\",\n    \"author\": \"郑小驴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052212-1322ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静物\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052191-7b68a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金宇澄作品集\",\n    \"author\": \"金宇澄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052182-8d46f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁宗岱译集（套装共8册）\",\n    \"author\": \"梁宗岱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051921-b46f2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日将至\",\n    \"author\": \"朱利安・费罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051855-91f788?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙田全集（套装共4册）\",\n    \"author\": \"蒙田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051849-bb912e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐页书城三部曲\",\n    \"author\": \"凯・迈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不是来演讲的\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051756-7d2dc4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那时上帝是只兔子\",\n    \"author\": \"莎拉・韦曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051723-905b0e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米格尔在智利的地下行动\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051711-d0d758?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能性\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑塞文集（全10卷）\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051813-4fbe8f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（国学典藏）\",\n    \"author\": \"洪兴祖 补注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生姜头，你疯了\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051588-88d28b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火光之色\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051579-ec6e6c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追逐新月的人\",\n    \"author\": \"森绘都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051576-507427?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等待\",\n    \"author\": \"哈金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051564-255e15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦脂评汇校本\",\n    \"author\": \"吴铭恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051549-30467b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失聪宣判\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051540-75c665?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林语堂传\",\n    \"author\": \"钱锁桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051534-d8c6fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙刑\",\n    \"author\": \"莫琳・派森・吉莉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051519-fb7329?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃勒里·奎因（30本合集）\",\n    \"author\": \"埃勒里・奎因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051606-c33e83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出防空洞\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051501-efedaf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉祥纹莲花楼（套装4册）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051408-db1302?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低地\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051336-a76694?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第三辑）\",\n    \"author\": \"简・奥斯汀等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051342-44a7e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赖床的男人\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051324-774754?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮色将至\",\n    \"author\": \"凯蒂・洛芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051303-448c94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法外套\",\n    \"author\": \"迪诺・布扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051177-97588d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11字谜案\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051162-6633d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗盘\",\n    \"author\": \"马蒂亚斯・埃纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051156-4846ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情和其他魔鬼\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051126-9665e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二十二条军规\",\n    \"author\": \"约瑟夫・海勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051087-ca589a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞芳心小姐（守望者经典）\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051063-a08447?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茧\",\n    \"author\": \"青山七恵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051060-bdf1d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景恒街\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051015-aa2384?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的世界\",\n    \"author\": \"莉兹・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051006-6c5df6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果戈理文集（全7册）\",\n    \"author\": \"果戈理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051000-119a99?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上大教堂\",\n    \"author\": \"伊德方索・法孔内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050892-c80017?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红字（果麦经典）\",\n    \"author\": \"纳撒尼尔・霍桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050886-37cf4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天将会不一样\",\n    \"author\": \"玛利亚・森普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050877-93c812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式婚姻\",\n    \"author\": \"塔亚莉・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050862-f21a03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食货《金瓶梅》\",\n    \"author\": \"侯会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050868-bb8823?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚瑟王之死（果麦经典）\",\n    \"author\": \"托马斯・马洛礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生（名著名译丛书）\",\n    \"author\": \"帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050841-ba42c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美人生的解答书（套装8册）\",\n    \"author\": \"陈海贤等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050835-a3af55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗读者Ⅱ（全3册）\",\n    \"author\": \"董卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050823-8e7bc0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家肴\",\n    \"author\": \"唐颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白驯鹿的九叉犄角\",\n    \"author\": \"张云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050748-d01060?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曹雪芹大传（共14册）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050604-976667?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观音在远远的山上\",\n    \"author\": \"伊沙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050556-84c9cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫（影子经典）\",\n    \"author\": \"加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050511-978701?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生（果麦经典）\",\n    \"author\": \"鲍里斯・帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050505-1511fe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"村上春树和我\",\n    \"author\": \"杰伊・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050466-f3b436?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回不去的旅人\",\n    \"author\": \"杰西・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050415-6b055d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰风谷三部曲\",\n    \"author\": \"R.A.萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050406-705d67?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字的故事\",\n    \"author\": \"王铁钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050379-f02840?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴别塔\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050370-722d26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丘\",\n    \"author\": \"石田衣良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050361-ede86b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江南三部曲\",\n    \"author\": \"格非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050136-657c5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全怪谈：扶桑鬼话（套装共6册）\",\n    \"author\": \"小泉八云等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050130-bed007?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说4）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我离开你\",\n    \"author\": \"艾米莉・布勒克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049989-793bfd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野（木小瓷作品）\",\n    \"author\": \"木小瓷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049983-aec537?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野\",\n    \"author\": \"巫哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生\",\n    \"author\": \"鲍里斯・帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049863-602d2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哪吒\",\n    \"author\": \"奚淞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049710-0661df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大夏教育文存（全11卷）\",\n    \"author\": \"杜成宪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049830-9cf21a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加西亚·马尔克斯访谈录\",\n    \"author\": \"加西亚・马尔克斯/吉恩・贝尔-维亚达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049599-516265?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"E.M.福斯特文集（套装共8册）\",\n    \"author\": \"E.M.福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049557-ddb05b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外出偷马\",\n    \"author\": \"佩尔・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困惑的三文鱼\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创水记\",\n    \"author\": \"赛斯・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《荒岛》及其他文本\",\n    \"author\": \"吉尔・德勒兹/大卫・拉普雅德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"导体\",\n    \"author\": \"克洛德・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049389-41abeb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅格时空大冒险（套装全5册）\",\n    \"author\": \"马德琳・英格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语别裁\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力思维\",\n    \"author\": \"安东尼・塔斯加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书大全套\",\n    \"author\": \"朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细说民国大文人系列（增订版）\",\n    \"author\": \"民国文林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049203-a57f9d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂之死\",\n    \"author\": \"汉妮・明策尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少林很忙\",\n    \"author\": \"马修・波利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049068-7ff5e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（纪念版）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴尔特文集（套装）\",\n    \"author\": \"罗兰・巴尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的迷途\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌金的牙齿\",\n    \"author\": \"万玛才旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048714-87e33e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格练习曲\",\n    \"author\": \"兹旦内克・斯维拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048654-840616?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青青校树\",\n    \"author\": \"兹旦内克・斯维拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048651-3c2d76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰克·凯鲁亚克作品集（套装共13册）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048672-0f790e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词排行榜\",\n    \"author\": \"王兆鹏/郁玉英/郭红欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗排行榜\",\n    \"author\": \"王兆鹏/邵大为/张静/唐元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"装腔指南\",\n    \"author\": \"托马斯· W. 霍奇金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048573-ba74e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷场\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048561-99f922?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲茨杰拉德作品全集（套装共10册）\",\n    \"author\": \"菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048531-da8069?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书店\",\n    \"author\": \"佩内洛普・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048501-57d0d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蓝花\",\n    \"author\": \"佩内洛普・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048498-7b3dc7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤川次郎作品系列（套装共五册）\",\n    \"author\": \"赤川次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048447-5436f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非典十年祭\",\n    \"author\": \"何建明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048432-7a243d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾娃·拉文德奇异而美丽的忧伤\",\n    \"author\": \"蕾丝莱・沃顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048315-3325ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金蔷薇（果麦经典）\",\n    \"author\": \"康・帕乌斯托夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048282-b6e283?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂的奥兰多\",\n    \"author\": \"卢多维科・阿里奥斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世理发馆\",\n    \"author\": \"式亭三马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048219-f2fc1e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉鲨\",\n    \"author\": \"莫腾・安德雷亚斯・斯特罗克奈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公孙龙子（全本全注全译）\",\n    \"author\": \"黄克剑译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（果麦经典）\",\n    \"author\": \"普罗斯珀・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酒鬼与圣徒\",\n    \"author\": \"劳伦斯・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管子（全本全注全译）\",\n    \"author\": \"李山/轩新丽译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离婚（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱啊美啊人生啊\",\n    \"author\": \"石川啄木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047964-020a7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女观众\",\n    \"author\": \"兹旦内克・斯维拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047907-ccdbb7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错失之爱\",\n    \"author\": \"兹旦内克・斯维拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047901-7edab4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔纪实作品全集（套装共3册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大树小虫\",\n    \"author\": \"池莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047805-44bd73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡在汽车里的女孩\",\n    \"author\": \"珍妮弗・克莱门特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047661-1ca554?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独梦想家\",\n    \"author\": \"戴维・巴尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047646-c1f65b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小彩虹（第一辑）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047529-50899a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（果麦经典）\",\n    \"author\": \"爱米丽・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047481-49fc2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恐妻家\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047436-da2420?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲与哀矜\",\n    \"author\": \"张定浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047418-fe398a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些忧伤的年轻人\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（果麦经典）\",\n    \"author\": \"尼古拉・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047319-612f67?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小城畸人\",\n    \"author\": \"舍伍德・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047148-e62f8e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从捕鲸船上一路走来\",\n    \"author\": \"孙康宜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047139-072e6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大河深处\",\n    \"author\": \"东来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047136-68689e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔小说全集（套装共6册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047130-74f0d5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔雅（全本全注全译）\",\n    \"author\": \"管锡华译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德谈话录（果麦经典）\",\n    \"author\": \"爱克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047061-9b3ce0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第84封情书\",\n    \"author\": \"骆淑景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨浪下的小学\",\n    \"author\": \"理查德・劳埃德・帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046986-bb9508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅰ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅱ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强风吹拂\",\n    \"author\": \"三浦紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046827-b2725e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三个警察\",\n    \"author\": \"弗兰・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046809-668e12?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"返朴\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046800-b689fb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝲蛄吟唱的地方\",\n    \"author\": \"迪莉娅・欧文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046752-6d776b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不识字的人\",\n    \"author\": \"雅歌塔・克里斯多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046671-ef211b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷谈艺录及其他\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的晃荡的青春\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046584-e51f3a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波动\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046539-3edfdf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾年度套装（共56册）\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046530-4e40c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力的胎动\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046440-06c86c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋公羊传（全本全注全译）\",\n    \"author\": \"孔子/公羊寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046404-436973?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（果麦经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046398-388e26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二次吸引\",\n    \"author\": \"“小鹿情感”专家组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅰ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开市大吉（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲民间故事\",\n    \"author\": \"保罗・拉丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046212-6c1ced?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草莓人生\",\n    \"author\": \"荻原浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046182-614108?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（果麦经典）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046152-a5184c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被弃养的女孩\",\n    \"author\": \"多娜泰拉・迪皮耶特兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046107-0c342f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九功舞系列（套装9册）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046071-f8bd41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异（全校会注集评）\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046074-8abd51?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤鹰（全2册）\",\n    \"author\": \"邵雪城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046029-a3ef29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠峰史诗\",\n    \"author\": \"荣赫鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（读客经典）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045993-9650b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家书（全本全注全译）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045999-309b55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"整个巴黎属于我\",\n    \"author\": \"莱斯利·M.M.布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡子有脸\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045900-ac03ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Trust Exercise\",\n    \"author\": \"Susan Choi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045894-05a1ea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅的忧郁\",\n    \"author\": \"安德烈・库尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045798-191757?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国环岛之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045783-b17647?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝版民国小书馆\",\n    \"author\": \"叶鋆生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045771-730497?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖马的女人\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045738-eb7bec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在西伯利亚森林中\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾城之恋（2019版）\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045720-2b6e2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（全本全注全译）\",\n    \"author\": \"方韬译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故都的秋（果麦经典）\",\n    \"author\": \"郁达夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045714-445e3b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萝西与苹果酒\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵魂漫长而黑暗的茶点时间\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045672-dda13f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神仙传（全本全注全译）\",\n    \"author\": \"葛洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有一个人生\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华生活经典系列（第一辑共11册）\",\n    \"author\": \"林洪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046236-5c0c2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸽羽（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045633-3b7458?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航西飞\",\n    \"author\": \"柏瑞尔・马卡姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣洁百合（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045435-80896e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运与狂怒\",\n    \"author\": \"劳伦・格罗夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045408-c43a32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评家之死\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045375-92d933?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著名译典藏（套装共50册）\",\n    \"author\": \"亚历山大・仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045579-8eb63c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古都\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045330-d9a79d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山旅书札\",\n    \"author\": \"伊莎贝拉・博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特（果麦经典）\",\n    \"author\": \"米・阿・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045261-32db15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去海拉尔\",\n    \"author\": \"王咸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045237-1155f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土之界\",\n    \"author\": \"希拉莉・乔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑白\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045204-4b1239?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白牙（果麦经典）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045189-be69e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子富了\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045186-124685?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前往阿姆河之乡\",\n    \"author\": \"罗伯特・拜伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨房太平记\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045153-e2431a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书（果麦经典）\",\n    \"author\": \"鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045132-c19a7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子歇了\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045129-8b542b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国精神读本\",\n    \"author\": \"王蒙/王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日升之处\",\n    \"author\": \"A.W.金莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒海妖船\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045072-9ea87c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经点醒\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子，跑吧\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045000-71d22e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老巴塔哥尼亚快车\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛兰德镜子\",\n    \"author\": \"dome\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044964-66fcfd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张爱玲作品精选（共8册）\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044931-653d40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子归来\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044880-adae9d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果木桌子及其他简记\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044877-c7b3c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒海救援\",\n    \"author\": \"凯西・谢尔曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044832-8b760f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长眠不醒（读客版）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044850-14a642?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间值得\",\n    \"author\": \"中村恒子/奥田弘美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多瑙河之旅\",\n    \"author\": \"克劳迪欧・马格里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱风堂书店\",\n    \"author\": \"村山早纪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044775-82e48b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（果麦经典）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044751-279929?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲古诗十九首\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044709-330c0b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老先生\",\n    \"author\": \"周实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044673-2e0611?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陶渊明集（作家榜经典文库）\",\n    \"author\": \"陶渊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰夫·戴尔作品套装（共5册）\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044583-471d7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（作家榜经典文库）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海译文TOP30名家名作大套装（套装共30本·2019年版）\",\n    \"author\": \"贾雷德・戴蒙德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045210-c6ded3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，吾爱（读客经典）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044367-02fe4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐大脑\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044223-76e5dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致后代\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶馆（作家榜经典文库）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张岪与木心\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人译文全集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044202-ce9b41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（作家榜经典文库）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044055-3a2105?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你当像鸟飞往你的山\",\n    \"author\": \"塔拉・韦斯特弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"覆舟的愉悦\",\n    \"author\": \"朱塞培・翁加雷蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日一善（套装全4册）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笠翁对韵（作家榜经典文库）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球无应答\",\n    \"author\": \"王诺诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043929-c25390?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威诞辰120周年图文珍藏版文集（全18卷）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044511-3d087b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花与恶心\",\n    \"author\": \"卡洛斯・德鲁蒙德・德・安德拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽尔（果麦经典）\",\n    \"author\": \"西尔维娅・普拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的事情\",\n    \"author\": \"苇岸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米沃什词典\",\n    \"author\": \"切斯瓦夫・米沃什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043800-b2c0ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我将敢于亲吻你\",\n    \"author\": \"阿方斯娜・斯托尔妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043794-7c46f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的中国历史故事（作家榜经典文库）\",\n    \"author\": \"汤芸畦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康德《纯粹理性批判》句读\",\n    \"author\": \"邓晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043740-d2094f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代唯心论简释\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风景中的少年\",\n    \"author\": \"胡戈・冯・霍夫曼斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043686-99ceaf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏天、烟火和我的尸体\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043674-f51d72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照诗词全集（作家榜经典文集）\",\n    \"author\": \"李清照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敌人的名字是宫本武藏\",\n    \"author\": \"木下昌辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043602-ae92e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典普及文库（精选共15种20册）\",\n    \"author\": \"中华书局编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉本家的猫咪们\",\n    \"author\": \"春野宵子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043533-a39c3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧书（作家榜经典文库）\",\n    \"author\": \"巴尔塔萨尔・格拉西安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从诗经到红楼梦\",\n    \"author\": \"一条课堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043464-ad95e4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听客溪的朝圣\",\n    \"author\": \"安妮・迪拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威作品精选系列（套装共6册）\",\n    \"author\": \"欧内斯特・米勒尔・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043368-29e606?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦理学知性改进论\",\n    \"author\": \"斯宾诺莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林，亚历山大广场（译文经典）\",\n    \"author\": \"阿尔弗雷德・德布林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043308-cc3071?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎（全本全注全译）\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043302-be1cec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适19堂文学课（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043251-5f125a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡的百年史\",\n    \"author\": \"吉田茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043236-c78d00?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你老去\",\n    \"author\": \"伊塔洛・斯韦沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043218-37b8f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李白传\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风之影四部曲\",\n    \"author\": \"卡洛斯・鲁依兹・萨丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043113-dd5324?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忍不住的新努力（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043095-cf02bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宪益中译作品集（全五卷）\",\n    \"author\": \"阿里斯托芬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043053-24a2f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希尼三十年文选\",\n    \"author\": \"谢默斯・希尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格拉斯医生（译文经典）\",\n    \"author\": \"雅尔玛尔・瑟德尔贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042873-c12a32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异（全本全注全译）\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042888-47daec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（作家榜经典文库）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042867-c3483f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粉笔人\",\n    \"author\": \"C.J.图德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042825-f56dbd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉思录（译文经典）\",\n    \"author\": \"马可・奥勒留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画梁春尽落香尘\",\n    \"author\": \"刘心武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042753-f657fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐王子（译文经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042723-bfc360?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战火家园\",\n    \"author\": \"卡米拉・夏姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042651-db3e89?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金蔷薇（译文经典）\",\n    \"author\": \"帕乌斯托夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042630-5634d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕\",\n    \"author\": \"阿敏・马卢夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简世界神话\",\n    \"author\": \"马克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰冻时光之窗\",\n    \"author\": \"尤里・维尼楚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042510-b9497c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大雪无痕（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042507-28ce63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名人传（译文经典）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042477-5d0e3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格兰贝的年轻人\",\n    \"author\": \"科林・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042450-f7cc4e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042417-58fafd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉被（译文经典）\",\n    \"author\": \"田山花袋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042351-df86cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的独角兽\",\n    \"author\": \"彼得・毕格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042258-61b812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"省委书记（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042276-7487a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔的交易\",\n    \"author\": \"克劳斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042216-d97448?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24个比利\",\n    \"author\": \"丹尼尔・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042204-b0cec2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大脑\",\n    \"author\": \"苏珊娜・卡哈兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042210-b00ec5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸽子隧道\",\n    \"author\": \"约翰・勒卡雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041985-d82b4b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆流（译文经典）\",\n    \"author\": \"于斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041973-baab99?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫年纪事（译文经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041763-ddc224?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅盾文学奖传世经典15部装（共33册）\",\n    \"author\": \"李国文等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041607-c640ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱迪克\",\n    \"author\": \"克丽丝・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041391-026711?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳王与海妖\",\n    \"author\": \"冯达·N.麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041379-6263bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星一号\",\n    \"author\": \"朱个\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041376-a5c0bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔杂文全集（全2册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我在一个仲夏清晨出走\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041316-13ceb7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大河恋\",\n    \"author\": \"诺曼・麦克林恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041232-aec3d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被涂污的鸟\",\n    \"author\": \"耶日・科辛斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041022-bb6b72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眩晕\",\n    \"author\": \"祁媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040989-c5fa85?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵、自我与社会（译文经典）\",\n    \"author\": \"米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无麂岛之夜\",\n    \"author\": \"池上\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040830-a8c559?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特文集（全5卷）\",\n    \"author\": \"托・斯・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040791-73a240?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们与祖先交谈的夜晚\",\n    \"author\": \"萨沙・斯坦尼西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040701-145d11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方与北方（名著名译丛书）\",\n    \"author\": \"盖斯凯尔夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040674-6dd07a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城堡（名著名译丛书）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040650-b9b5bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最深的水是泪水\",\n    \"author\": \"鲍尔吉・原野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040617-eb3c15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃普萧纪事\",\n    \"author\": \"约翰・契弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040563-3844e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界少年文学经典文库·中国经典篇（全套30册）\",\n    \"author\": \"吴承恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040800-945097?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兔\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040452-a92efa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奔跑的查理\",\n    \"author\": \"查理・恩格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040404-94e03c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过（2019全新修订）\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040293-137a08?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不锈时光\",\n    \"author\": \"任曙林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040479-46f77b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安娜表哥\",\n    \"author\": \"余静如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040278-6816f4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识与通识（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拔蒲歌\",\n    \"author\": \"沈书枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯日记\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039990-dbfb2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅毅说中华英雄史（全10册）\",\n    \"author\": \"梅毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040140-0d274d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只胳膊的拳击\",\n    \"author\": \"庞羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039870-60c650?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃普萧丑闻\",\n    \"author\": \"约翰・契弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039864-fe0768?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第二辑）\",\n    \"author\": \"奥斯卡・王尔德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039732-4d4163?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老舍经典作品集（套装共10册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039705-ce0174?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义是一种人道主义（译文经典）\",\n    \"author\": \"让-保罗・萨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039642-f8eb49?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终止\",\n    \"author\": \"樱木紫乃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039603-f961ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静\",\n    \"author\": \"艾林・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说的八百万种写法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039474-4b3e24?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间的诗学（译文经典）\",\n    \"author\": \"加斯东・巴什拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同名人\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039456-5cef3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骂观众\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039432-b8a3ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第一辑）\",\n    \"author\": \"薄伽丘等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海浪（译文经典）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039228-13707b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨必将落下\",\n    \"author\": \"米歇尔・法柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039216-164527?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海浪（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039150-6a4545?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自遗忘的最深处\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039075-4c44c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何，以及如何谋划一场火灾\",\n    \"author\": \"杰西・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039045-ac9204?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗生门（译文经典）\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039024-fbf276?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样你就不会迷路\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039021-60295e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤城闭\",\n    \"author\": \"米兰Lady\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039006-1aa3c4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳船上的孩子\",\n    \"author\": \"雅丝米娜・米哈伊洛维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖大师作品集（套装共19册）\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038964-9471dd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥兰多（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038967-31be31?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细雪\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038934-2fa053?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第四只手\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038940-7b7b24?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"田园交响曲（译文经典）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038904-bcb0b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小丑之花\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038895-3f3d8d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的新生\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038802-5275a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国典藏小钩沉系列（套装书共7册）\",\n    \"author\": \"芥川龙之介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038805-48bea2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缓慢的归乡\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038769-f672c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左撇子女人\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038766-406e59?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔特手记（译文经典）\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038694-91674f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨齿鲨\",\n    \"author\": \"斯蒂夫・奥顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038691-82187b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗勒希（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038658-5b950b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"残雪经典作品集（24本套装）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038718-2c72e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末世之城（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038598-b6383b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多余的人（果麦经典）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038595-0cf589?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽暗国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在地图结束的地方（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038514-a54c28?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人世间（全三册）\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038496-ed84a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：受伤的文明\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038451-62394a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惜别\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038448-089ef0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隔壁的女人\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038424-52f601?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球飞船\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小说与小说家（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038409-cb997a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为奴十二年（译文经典）\",\n    \"author\": \"所罗门・诺瑟普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038358-15a854?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：百万叛变的今天\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守门员面对罚点球时的焦虑\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038346-ef6963?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失控的地球\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038337-71ff2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"津轻\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038310-49be36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世间之路\",\n    \"author\": \"V. S. 奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038304-7876a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日郊外的旅店\",\n    \"author\": \"安娜-卡埃勒・雨昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038115-2ded2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡瓦利与克雷的神奇冒险\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038055-ad70de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起连环绑架案的新闻\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037893-b383ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯通与骑士伙伴\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037887-c76d6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室中的旅行（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037878-b5f9c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗1：父亲的葬礼\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037839-6b7aa9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂消息\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037815-c1d2ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜巴士\",\n    \"author\": \"梅雷迪斯・梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037812-224f59?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶人传\",\n    \"author\": \"约翰・班扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿吽\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037725-ba9a2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恋爱中的男人\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037671-0d7dcf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弃儿汤姆·琼斯史（全2册）\",\n    \"author\": \"亨利・菲尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037641-305812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"模仿者\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037554-1eae8b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民选举\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037491-26ed83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人经典作品合集（套装共9册）\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037461-7d9d06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河界区三部曲\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037371-702f6f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给大人的睡前故事\",\n    \"author\": \"陈谌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037335-23997b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕司沃斯先生的房子\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037305-c3a875?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊甸园（译文经典）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037275-21f613?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发条橙（全新译本）\",\n    \"author\": \"安东尼・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037221-aea276?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方视野里的中国合集（共10册）\",\n    \"author\": \"庄士敦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武志红经典作品合集（套装共4册）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八部半\",\n    \"author\": \"黄昱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037161-fb1ee6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏油娃娃\",\n    \"author\": \"托妮・莫里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037164-700704?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫怪兽（套装共3册）\",\n    \"author\": \"常怡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037149-71d4a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（译文经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子不语（果麦经典）\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036864-3b3707?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈保尔家书\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐宋传奇集（精装典藏版）\",\n    \"author\": \"蔡义江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036696-49672a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊天记录\",\n    \"author\": \"萨莉・鲁尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036489-b8b57d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被猜死的人\",\n    \"author\": \"田耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036468-e0797b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安吾人生谈（坂口安吾系列作品）\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036459-ecdec0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不连续杀人事件（坂口安吾系列作品）\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036450-e44554?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈里·戈贝尔事件的真相（全两册）\",\n    \"author\": \"若埃尔・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036234-8b66ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100：小小说百篇\",\n    \"author\": \"乔治・曼加内利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036240-367630?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第三辑）\",\n    \"author\": \"圣埃克苏佩里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036372-54fcf2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"T.S.艾略特传\",\n    \"author\": \"林德尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第四辑）\",\n    \"author\": \"大仲马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱书单\",\n    \"author\": \"格雷迪・亨德里克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036225-7848b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（名著名译丛书）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第一辑）\",\n    \"author\": \"莫泊桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪传\",\n    \"author\": \"赫伯特・R.洛特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字的力量\",\n    \"author\": \"马丁・普克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第二辑）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔诗选（名著名译丛书）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035529-81da8d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑铁时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035502-811759?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼作家\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035496-5bc64f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学小史\",\n    \"author\": \"干春松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噩梦巷\",\n    \"author\": \"威廉・林赛・格雷沙姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035349-f24c2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皆大欢喜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱桃园（名著名译丛书）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035322-e80b3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴间神探（套装6册）\",\n    \"author\": \"道门老九\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035340-f48b63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时灯火（读客版）\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035298-2002db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愤怒的葡萄\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035292-fafe32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被释放的祖克曼\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035274-ec6a81?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说选（名著名译丛书）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035244-18370e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格狂欢\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035217-ccde38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像雪一样温暖\",\n    \"author\": \"王大进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035193-47ab0e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死魂灵（名著名译丛书）\",\n    \"author\": \"果戈理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035190-455dfe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"垂死的肉身\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035178-cb8804?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035160-d37674?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是开豆腐店的，我只做豆腐\",\n    \"author\": \"小津安二郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035157-62d9ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡利古拉\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米德尔马契（名著名译丛书）\",\n    \"author\": \"乔治・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035091-250be1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退场的鬼魂\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035064-53a301?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找无双\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035061-224a42?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克白（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035055-a52df3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流亡与独立王国\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035040-722b2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著名译丛书）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035043-4a5759?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的阴阳两界\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035031-a60fc1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖课\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035028-a2b7ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评论文集\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035013-9a2b5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老妇还乡（名著名译丛书）\",\n    \"author\": \"迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035007-9dda46?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日的世界\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方之星\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034878-849ebc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反抗者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034860-79f647?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲望教授\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034836-976ed6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034809-9dfcdb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾《传记文学》珍藏系列（全15册）\",\n    \"author\": \"梁实秋/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·布拉斯（名著名译丛书）\",\n    \"author\": \"勒萨日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034791-747b5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乳房\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行记\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034770-67707c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034764-a88dde?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034776-4f89d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034710-aee0ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Lost Hero\",\n    \"author\": \"Rick Riordan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034704-83b347?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Son of Neptune\",\n    \"author\": \"Riordan, Rick\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034701-12ce38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Blood of Olympus\",\n    \"author\": \"Rick Riordan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034686-547a10?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Year of the Flood\",\n    \"author\": \"Margaret Atwood\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034677-627783?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有人给他写信的上校\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034659-dfacc3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈克贝利·费恩历险记（读客经典）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034635-bafac9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学巨匠老舍作品珍藏集（套装53册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034650-848b00?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳舞女郎\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034623-126b75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯癫亚当\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034611-1bb945?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学百年经典（套装三册）\",\n    \"author\": \"李朝全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特（名著名译丛书）\",\n    \"author\": \"布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034545-231c0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洪水之年\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034530-12e063?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"既生魄\",\n    \"author\": \"张广天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034497-a955e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都兰趣话（名著名译丛书）\",\n    \"author\": \"奥诺雷・德・巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034479-984c05?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"源氏物语（全译彩插绝美版）\",\n    \"author\": \"紫式部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034587-717afe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强盗新娘\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034449-93c7ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（果麦经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034425-ba996e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Thousand Years of Good Prayers\",\n    \"author\": \"Yiyun Li\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034410-7818fe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是你爸爸\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034359-948c8d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034326-c79462?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上\",\n    \"author\": \"徐则臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034275-7ee0c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说选（名著名译丛书）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034254-5ce4c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国婉约（套装7本）\",\n    \"author\": \"江晓英/林杉/臧宪柱/李婍/牧来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朔文集（典藏版）\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应物兄（全2册）\",\n    \"author\": \"李洱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034098-e62c03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和电风扇一起摇头\",\n    \"author\": \"大岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034092-9f46c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牵风记\",\n    \"author\": \"徐怀中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034086-23a522?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致女儿书\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033981-f30b64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异乡人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033951-f2a1e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲兹杰拉德小说精选（套装共4册）\",\n    \"author\": \"弗朗西斯・司各特・菲兹杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033936-250a7b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看上去很美\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书就是一个喷嚏\",\n    \"author\": \"杰克・格罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033873-d0d32c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的访谈系列（套装共6册）\",\n    \"author\": \"欧内斯特・米勒尔・海明威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"速求共眠\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033828-cbebcf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典咏流传诗词曲赋集（套装21册）\",\n    \"author\": \"李白/王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从月亮来的男孩\",\n    \"author\": \"安德鲁・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033777-207e83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（名著名译丛书）\",\n    \"author\": \"赫尔曼・梅尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033726-6ae4d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飘（企鹅经典）\",\n    \"author\": \"玛格丽特・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033714-39755f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（企鹅经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033651-3000d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词集（词系列）\",\n    \"author\": \"姜夔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌本纪\",\n    \"author\": \"叶舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033609-6e7d3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上尉的女儿（企鹅经典）\",\n    \"author\": \"普希金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033594-5c7f0b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不分心\",\n    \"author\": \"亚历克斯・索勇－金・庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033558-d65235?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物，怎么办？（企鹅经典）\",\n    \"author\": \"汉斯・法拉达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033552-fc5367?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶意之山\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033504-13c2d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写小说最重要的十件事\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033486-6785a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧阳修词集（词系列）\",\n    \"author\": \"欧阳修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（果麦经典）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独是一朵莲花（作家榜经典文库）\",\n    \"author\": \"郁达夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033468-53acb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜色温柔（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033453-716b81?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛蛙\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033435-2bd061?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐宋词格律（词系列）\",\n    \"author\": \"龙榆生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033402-d9e7be?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚特兰蒂斯之心\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033399-aedb1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词集（词系列）\",\n    \"author\": \"苏轼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬将军来的夏天\",\n    \"author\": \"甘耀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033342-c27b37?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔山（企鹅经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033270-e62351?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸骨袋\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033264-2ab845?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏殊词集·晏幾道词集（词系列）\",\n    \"author\": \"晏殊/晏几道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我愿意是急流\",\n    \"author\": \"裴多菲・山陀尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033246-a24a75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰在黄昏起飞\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033234-b6cfcb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生：苏珊·桑塔格日记与笔记（1947-1963）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC经典文化纪录片配套著作精选合集\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033249-7df812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说选（企鹅经典）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033195-5988c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香山帮\",\n    \"author\": \"朱宏梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033168-09c55f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊镇2\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033165-9e1f41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第一辑（套装共16册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033171-09f6c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短篇小说写作指南\",\n    \"author\": \"美国《作家文摘》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间里的痴人\",\n    \"author\": \"珍妮弗・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033180-e2b5a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茵梦湖（企鹅经典）\",\n    \"author\": \"施托姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033138-01b7da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第二辑（套装共12册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食家\",\n    \"author\": \"陆文夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033072-217156?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单：应对复杂世界的高级思维\",\n    \"author\": \"木鱼/柳白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033039-6a69db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周邦彦词集（词系列）\",\n    \"author\": \"周邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033030-271dc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被封印的唐史\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033009-fa3de9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贺铸词集（词系列）\",\n    \"author\": \"贺铸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032997-d1ca33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗昭昭（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032988-e8826f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陆游词集（词系列）\",\n    \"author\": \"陆游\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"IT84\",\n    \"author\": \"张辛欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032934-09488a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教堂尖塔（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032922-ca9637?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李煜词集（词系列）\",\n    \"author\": \"李煜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032910-cc40de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的人（企鹅经典）\",\n    \"author\": \"拉尔夫・艾里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032838-8e346a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘以鬯经典三部曲\",\n    \"author\": \"刘以鬯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032823-8e9769?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独角兽\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032814-2310b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第五辑）\",\n    \"author\": \"雅各布・布克哈特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坟墓的闯入者（企鹅经典）\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032805-2fdf34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘿，小家伙\",\n    \"author\": \"温酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑王子\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032775-2d8d02?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京女子图鉴\",\n    \"author\": \"王欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032742-fb8407?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十五条狗\",\n    \"author\": \"安德烈・亚历克西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032739-cd5508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花雨枪\",\n    \"author\": \"夏生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间鲁迅\",\n    \"author\": \"林贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"修道院纪事\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032682-f9c457?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无名指\",\n    \"author\": \"李陀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032643-ea6a01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代英雄（企鹅经典）\",\n    \"author\": \"米哈伊尔・莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032583-5401e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海，大海\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032586-efa32a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美婚姻\",\n    \"author\": \"米歇尔・里奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦文学小史\",\n    \"author\": \"埃洛伊丝・米勒/萨姆・乔迪森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法定幸福\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032517-74cfb2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖得主石黑一雄作品集（套装共8册）\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032526-985657?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蠹鱼文丛系列（套装10册）\",\n    \"author\": \"陈子善/叶瑜荪/李辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电厂之夜\",\n    \"author\": \"爱德华多・萨切里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032484-941c2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔血案\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032475-a3eb97?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡的故事\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032478-145139?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四季，三餐，都随你\",\n    \"author\": \"简猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国病人（企鹅经典）\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032424-c5dfca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编舟记\",\n    \"author\": \"三浦紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032418-a424c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十首情诗和一支绝望的歌\",\n    \"author\": \"巴勃罗・聂鲁达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小于一\",\n    \"author\": \"约瑟夫・布罗茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布隆夫曼脱单历险记\",\n    \"author\": \"丹尼尔・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小丑\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽丝旅馆\",\n    \"author\": \"小川洋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032292-1db373?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾拉·格雷的歌\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱桃的滋味\",\n    \"author\": \"阿巴斯・基阿鲁斯达米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032268-b0e557?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忧郁的热带\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红拂夜奔\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032253-de9ad1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林的雨\",\n    \"author\": \"卡尔・盖瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032241-04972e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟随周恩来过草地\",\n    \"author\": \"张文宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032232-26530e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造梦师（套装共4册）\",\n    \"author\": \"陈佳同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032256-0c0e76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棋王（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032205-bbe80d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岗村40年\",\n    \"author\": \"贾鸿彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的大多数\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032169-8cecf3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾米丽的一朵玫瑰\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032145-b37d53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗生门（读客经典）\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032109-6ad93e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲话闲说（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032094-c45426?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词鉴赏辞典\",\n    \"author\": \"唐圭璋/钟振振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的答案\",\n    \"author\": \"卢思浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032070-1c4c86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七侯笔录\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032064-f516e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打字机上的缪斯\",\n    \"author\": \"杰西・波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032046-bcf6eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感悟文学大师经典100册套装\",\n    \"author\": \"萧枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愤怒的葡萄（译文名著精选）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032013-d0d355?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三杯茶\",\n    \"author\": \"葛瑞格・摩顿森/大卫・奥利佛・瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032001-2bc835?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学荟萃（全36册）\",\n    \"author\": \"沈复/吴楚材/吴调侯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032133-b8e344?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（作家榜经典文库）\",\n    \"author\": \"弗・司各特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031977-f1c06b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生如夏花（作家榜经典文库）\",\n    \"author\": \"拉宾德拉纳特・泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生是我吗\",\n    \"author\": \"刘苇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师精品（套装三十册）\",\n    \"author\": \"鲁迅/徐志摩/朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031935-49b0cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"17岁，成为星或兽的季节\",\n    \"author\": \"最果夕日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031896-68686f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游泳回家\",\n    \"author\": \"德博拉・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031884-0e53c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下：东京地铁沙林毒气事件实录（套装共2册）\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031869-499ce7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩5：遗失的羽毛\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物农场（译文经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031764-29356d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031746-95d746?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"素年锦时\",\n    \"author\": \"安妮宝贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031728-e066c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煎饼坪（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031713-7bf0a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小红马（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银茶匙\",\n    \"author\": \"中勘助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031662-02c1ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿野仙踪全集（全14册）\",\n    \"author\": \"莱曼・弗兰克・鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031788-1a3b36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交错的场景\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031620-109a71?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英格兰，英格兰\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031614-a56b26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凝视太阳\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031605-7148b5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典文学名著四师深度解读推荐版（套装七册）\",\n    \"author\": \"威廉・福克纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的外国文学经典（套装35册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烦恼的冬天（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031449-a7ec38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罐头厂街（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031428-357e47?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冒牌人生\",\n    \"author\": \"陈思安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031416-d3e501?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选剧本集（套装21册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031395-dbf371?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍作品全集（套装五十五册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031389-1fea08?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮下去了（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031368-763178?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人，岁月，生活\",\n    \"author\": \"爱伦堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031377-705e7b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮\",\n    \"author\": \"库尔齐奥・马拉巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031356-2f3f74?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为妮可\",\n    \"author\": \"艾米・埃利斯・纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来前书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来后书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师与玛格丽特\",\n    \"author\": \"布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031275-8620c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍代表作作品集（套装九册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人鼠之间（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031245-271805?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结的感觉\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031236-897f5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢学\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031233-027c9c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（果麦经典）\",\n    \"author\": \"弗朗西斯・司各特・菲兹杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031194-680961?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著名译化境文库（套装共9册）\",\n    \"author\": \"化境文库编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁克林的荒唐事（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031161-0663b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审判（果麦经典）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031086-d0d0f1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与死的年代\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031077-d1a6b0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伙伴进行曲\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031065-ab7513?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山月记（果麦经典）\",\n    \"author\": \"中岛敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031062-5d4286?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他从凤凰来：沈从文传\",\n    \"author\": \"金介甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030948-655c86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有人在周围走动\",\n    \"author\": \"胡里奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030918-9751a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被占的宅子\",\n    \"author\": \"胡里奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030912-f6d256?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞑靼人沙漠\",\n    \"author\": \"迪诺・布扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030852-8f4137?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装六十册）\",\n    \"author\": \"奥斯丁/勃朗特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031182-92bef5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阁楼上的疯女人\",\n    \"author\": \"桑德拉・吉尔伯特/苏珊・古芭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030792-df1d6e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈希我疼痛小说三部曲\",\n    \"author\": \"陈希我\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030783-193739?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说稗类\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030765-dedc99?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦灰堆 美人计\",\n    \"author\": \"萧耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030711-cffcd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸短情长，民国大师们的最美情书（全6册套装）\",\n    \"author\": \"朱生豪/鲁迅/闻一多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文豆瓣高分必读经典套装\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030654-cbc641?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦（修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学、通俗文化和社会\",\n    \"author\": \"利奥・洛文塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030576-bd1f90?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生三部曲\",\n    \"author\": \"派特・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030570-38049c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山月记\",\n    \"author\": \"中岛敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030540-cf1f19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不焦虑了\",\n    \"author\": \"安藤俊介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030516-b637e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网与石（套装共2册）\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030513-f4512b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色方尖碑\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030498-51ee22?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单独中的洞见\",\n    \"author\": \"张方宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间词话（作家榜经典文库）\",\n    \"author\": \"王国维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030492-572067?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学大师经典必读（套装100册）\",\n    \"author\": \"鲁迅/徐志摩/朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030450-b187cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟藏\",\n    \"author\": \"老王子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030411-768a7d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘震云经典文集\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030384-476010?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Red, White &#038; Royal Blue\",\n    \"author\": \"Casey McQuiston\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030360-475186?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三毛典藏全集（14本套装）\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030303-88ee37?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师精选典藏系列套装33册\",\n    \"author\": \"林徽因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找更明亮的天空\",\n    \"author\": \"古尔瓦力・帕萨雷/娜德纳・古力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030261-83d050?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果能重来，我想做熊孩\",\n    \"author\": \"左手韩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030297-38302e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（果麦经典）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030258-b58d79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有终点的列车\",\n    \"author\": \"劳拉・麦克维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030246-4da254?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"念楼学短\",\n    \"author\": \"锺叔河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总统先生\",\n    \"author\": \"米盖尔・安赫尔・阿斯图里亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030231-1af550?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玉米人\",\n    \"author\": \"米盖尔・安赫尔・阿斯图里亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030225-70b6ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危地马拉传说\",\n    \"author\": \"米盖尔・安赫尔・阿斯图里亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030228-0809f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的幽默家\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜空总有最大密度的蓝色\",\n    \"author\": \"最果夕日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030162-20452d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字十二讲\",\n    \"author\": \"万献初/刘会龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030201-30e984?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时震\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030117-9f931a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在新疆\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030111-69f33f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装共50册）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物归一\",\n    \"author\": \"君特・格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030096-2f337a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的村庄\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030066-8b5d8b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翁贝托·埃科作品系列套装（共6册）\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030105-3621bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古云霄\",\n    \"author\": \"陈之藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030048-2b15f8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一叶秋\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030045-dffd66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家书（果麦经典）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030027-90dc35?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国诗歌选集（珍藏版）（套装上下册）\",\n    \"author\": \"王佐良等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030003-5f317b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头是北京\",\n    \"author\": \"绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029982-4d17b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一朵桔梗花\",\n    \"author\": \"连城三纪彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029967-d5cad4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真汉\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029955-6e8063?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秀才的手表\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029946-9676a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨\",\n    \"author\": \"黄锦树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029928-6f83f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长崎\",\n    \"author\": \"埃里克・法伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029961-dd1cae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"示弱的勇气\",\n    \"author\": \"田口佳史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029919-38941e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣的事实\",\n    \"author\": \"亚当・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029871-ef5328?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对岸的她\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029859-6cc541?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凹凸相对论\",\n    \"author\": \"傅首尔/吴瑟斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029856-671c30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪闪发光的人生\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029838-3b3f7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万有引力之虹\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029823-fa6ccd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·时间胶囊\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029820-93da62?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·与书私奔\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·文艺青年\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029814-7a5327?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·旅馆\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029808-80bff1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·匿名作家\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029811-0cd352?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"童年（名著译林）\",\n    \"author\": \"马克西姆・高尔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029802-95cf59?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著译林）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（名著译林）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029796-8ad781?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（名著译林）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029787-13d237?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（名著译林）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向着光明\",\n    \"author\": \"太田治子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029775-bfc8a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家和出版人\",\n    \"author\": \"西格弗里德・温塞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029769-5eb081?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Saga of Gunnlaug Serpent-tongue\",\n    \"author\": \"Anon Anon\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029748-cd4b3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅古复仇记\",\n    \"author\": \"欧仁・勒儒瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029712-35b82d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样读经典\",\n    \"author\": \"王宁/彭林/孙钦善\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029706-559436?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咒语\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029688-251b45?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·写作课\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029592-8f188f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生海海\",\n    \"author\": \"麦家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029568-bb14ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃科谈文学\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029565-dea3c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正本清源说红楼\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029559-e08768?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脚步，是文化的刻度\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029556-27c945?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒旦探戈\",\n    \"author\": \"克拉斯诺霍尔卡伊・拉斯洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029538-ece48b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人岛生存十六人\",\n    \"author\": \"须川邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长长的回家路\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029496-883d15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"足球往事\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029478-ccc720?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洋相\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029469-3e7113?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林自传（译文名著精选）\",\n    \"author\": \"本杰明・富兰克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029466-e938e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四个春天\",\n    \"author\": \"陆庆屹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029481-41006d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新刻绣像批评金瓶梅\",\n    \"author\": \"兰陵笑笑生\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑箱：日本之耻\",\n    \"author\": \"伊藤诗织\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029460-1e1c60?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞之井\",\n    \"author\": \"拉德克利夫・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029445-062f0e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的文艺复兴\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029421-adc6a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失乐园（全新林译本）\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029388-72e790?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（作家榜经典文库）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029385-ae493f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒先生\",\n    \"author\": \"亚伦・锡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029370-2862a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深思与省悟\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方高速\",\n    \"author\": \"胡里奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029331-edca3c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日熄\",\n    \"author\": \"閻連科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029322-0f8d7b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚人船（典藏本）\",\n    \"author\": \"塞巴斯蒂安・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029340-24d8b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱德华·巴纳德的堕落：毛姆短篇小说全集1\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029307-46c4ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周国平尼采译著系列\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029268-e62a4a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情、疯狂和死亡的故事\",\n    \"author\": \"奥拉西奥・基罗加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029241-fe0943?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏洛克是我的名字\",\n    \"author\": \"霍华德・雅各布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029223-e61818?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何研究中国（增订本）\",\n    \"author\": \"曹锦清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029193-76f098?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱理群作品精编（共8册）\",\n    \"author\": \"钱理群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029190-be6f44?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（果麦经典）\",\n    \"author\": \"曹雪芹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（果麦经典）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（果麦经典）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029133-504b14?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（果麦经典）\",\n    \"author\": \"施耐庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纽约三部曲（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029091-7d5ea9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有神的所在 ：私房阅读《金瓶梅》\",\n    \"author\": \"侯文咏\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捎话\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029082-d44a5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗地母的礼物（下）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029073-348075?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群山回唱\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029064-c691c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（修订典藏本）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029007-403416?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普通读者\",\n    \"author\": \"西闪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窃天书\",\n    \"author\": \"逆水行舸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028977-26b93c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我知道你们又来这一套\",\n    \"author\": \"罗杰・伊伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028974-b269a9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与父辈\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028956-93737c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要快乐，不必正常\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美的真空\",\n    \"author\": \"斯坦尼斯拉夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028944-66d399?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六里庄遗事\",\n    \"author\": \"东东枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028917-a4cf2d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金性尧选唐宋诗新注\",\n    \"author\": \"金性尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028893-8fd3a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金圣叹批评本西厢记\",\n    \"author\": \"王实甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028926-90d03b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猴子·罗汉池\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028848-ed714f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高尔基自传三部曲（读客经典）\",\n    \"author\": \"玛克西姆・高尔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028830-4eb235?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028860-2bbd11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裂\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028737-811323?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疼\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028722-09f04e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮与六便士（读客经典）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028707-7117d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底两万里（读客经典）\",\n    \"author\": \"凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028590-8917cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随风飘舞的塑料布\",\n    \"author\": \"森绘都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028566-77b8a6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木星的卫星\",\n    \"author\": \"艾丽丝・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028542-203e6c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗地母的礼物（上）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028494-c2546a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻衣神探（套装4册）\",\n    \"author\": \"御风楼主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028446-56fb55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空响炮\",\n    \"author\": \"王占黑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028413-0d58b2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库蒙的食人兽\",\n    \"author\": \"吉姆・科比特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028389-9bc0c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到灯塔去（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028380-bf539a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苦儿流浪记（果麦经典）\",\n    \"author\": \"埃克多・马洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028341-fbd188?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老虎的妻子\",\n    \"author\": \"蒂亚・奥布莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028332-33c1fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李劼人文学作品合集（套装九册）\",\n    \"author\": \"李劼人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028308-3a0522?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（权威全译典藏版）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028281-88645a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（经典译林）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（世界十大文学名著）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（作家榜经典文库）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028299-c59dc2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罐头厂街\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028224-9cdc07?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"濹东绮谭\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028218-eb6279?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"竞艳\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028212-1dd394?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱之花\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028209-66a767?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余生\",\n    \"author\": \"黎紫书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028194-692d38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无可无不可的王国\",\n    \"author\": \"汪若\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028152-bb43b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独及其所创造的（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028131-874bba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪医杜立德（果麦经典）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龟背上的世界\",\n    \"author\": \"约翰・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028080-60ab23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"见字如来\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028047-c7408c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜饼人\",\n    \"author\": \"詹姆斯・帕特里克・唐利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028035-cacb46?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊\",\n    \"author\": \"奥古斯托・蒙特罗索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028038-89760c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花园里的机器人\",\n    \"author\": \"黛博拉・因斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028026-01f454?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴山夜雨\",\n    \"author\": \"张恨水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028020-cdc0f8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大树\",\n    \"author\": \"贝尔纳・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027990-fdb107?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿努比斯之门\",\n    \"author\": \"提姆・鲍尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027972-26c9ea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉万象记\",\n    \"author\": \"毛晓雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都会中的孤岛\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027945-d6bfc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利维尔和我\",\n    \"author\": \"罗伯特・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027951-0e0d4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"试论疲倦\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027906-d5f6a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世间的名字都是秘密\",\n    \"author\": \"苏缨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027894-123174?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去往第九王国\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027882-f1d960?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凄凉别墅\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027876-9c32a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春时樱，秋时叶\",\n    \"author\": \"德富芦花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027903-12eb42?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被遗忘的花园\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027867-edef3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保龄球的意识流\",\n    \"author\": \"陆源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027822-5f8f1a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（作家榜经典文库）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027870-72fe86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔斯骑鹅历险记（作家榜经典文库）\",\n    \"author\": \"塞尔玛・拉格洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威精选集（套装共4册）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027795-430894?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴特文选（全6册）\",\n    \"author\": \"罗兰・巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找邓巴\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027765-9137a9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的小梨窝\",\n    \"author\": \"唧唧的猫\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿为西南风\",\n    \"author\": \"闻人可轻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027759-a931a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠游小说林\",\n    \"author\": \"安贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027741-c5060a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个市民的自白\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027729-f9c575?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"殷红的花朵\",\n    \"author\": \"约翰・高尔斯华绥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027726-5b41c4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个女人\",\n    \"author\": \"艾斯特哈兹・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027705-4c0ba5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的遭遇\",\n    \"author\": \"肖洛霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027708-872d37?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸存者回忆录\",\n    \"author\": \"多丽丝・莱辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027693-2cafef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荨麻开花\",\n    \"author\": \"哈瑞・马丁松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027696-7f9578?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜的草\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027684-2969f4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"365夜故事：春夏秋冬（套装共4册）\",\n    \"author\": \"叶圣陶/赵冰波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027690-6c12c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老残游记（作家榜经典文库）\",\n    \"author\": \"刘鹗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027681-26f941?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水滴的音乐\",\n    \"author\": \"阿尔多斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027666-cf6538?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿山墙的安妮（作家榜经典文库）\",\n    \"author\": \"露西・莫德・蒙格玛丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骆驼祥子（作家榜经典文库）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027672-0c6153?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菩萨蛮\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向日葵\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛇为什么会飞\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神女峰\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死屋手记（企鹅经典）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喂喂下北泽\",\n    \"author\": \"吉本芭娜娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027651-fd0eab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十三年梦\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027630-221dda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使，望故乡\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027621-312a39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处还乡（套装共2册）\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027618-b08e33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书籍的世界\",\n    \"author\": \"赫尔曼黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027612-b2d143?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喜剧作家\",\n    \"author\": \"止庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027600-a9ddae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包法利夫人\",\n    \"author\": \"居斯达夫・福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027603-cfcf3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（读客经典）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读17：人的困境\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027582-858cfb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读18：都市一无所有\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027570-69e4e0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读19：到未来去\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027576-7935d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒谬的墙\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛非虚构写作课：怎样讲好一个故事\",\n    \"author\": \"马克・克雷默/温迪・考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027537-a21903?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静静的顿河（名著名译丛书）\",\n    \"author\": \"米・肖洛霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027588-0583b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027531-e0ac8e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密西西比\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027534-c6bd4e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是一百只眼睛的水面\",\n    \"author\": \"加布列拉・米斯特拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027525-6abbc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027516-22199b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖梦\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027507-c137e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人的食指\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027498-8a4dd7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米赫尔\",\n    \"author\": \"弗雷德里克・米斯特拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027495-1c4f2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平家物语\",\n    \"author\": \"郑清茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027519-13da66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林家铺子\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027486-d72605?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妻妾成群\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的帝王生涯\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红粉\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（果麦经典）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027510-2f2be5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迸涌的流泉\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027471-98fa46?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（读客经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（作家榜经典文库）\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027480-eb7b21?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伤心咖啡馆之歌（作家榜经典文库）\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027462-3af9cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（作家榜经典文库）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027459-37a5f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春天与阿修罗\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027450-e73925?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痴儿西木传\",\n    \"author\": \"格里美尔斯豪森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痴人之爱\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027447-870701?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草叶集\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027444-42197e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搏击俱乐部\",\n    \"author\": \"恰克・帕拉尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027441-67fe4b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月的星期天\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027435-819263?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反叛者\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027423-a2e18f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地铁姑娘扎姬\",\n    \"author\": \"雷蒙・格诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027417-3b5646?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书\",\n    \"author\": \"鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027414-2e39b2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斗牛士之名\",\n    \"author\": \"路易斯・塞普尔维达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027405-82e241?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国轶闻\",\n    \"author\": \"费尔南多・德尔帕索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027411-d99e3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多情客游记\",\n    \"author\": \"劳伦斯・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027396-557075?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三言二拍典藏版套装（作家榜经典文库）\",\n    \"author\": \"冯梦龙/凌濛初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027468-fe4fe6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯（读客经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027420-0f8297?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赴宴之前\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027378-2b2b27?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨之夜（译文经典）\",\n    \"author\": \"海因里希・海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027390-c641ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰饶与贫瘠\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027381-2af7f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分手在布达\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027363-6c9da6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不乖的哲学家\",\n    \"author\": \"罗朗・古内尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027357-6fca3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独家记忆\",\n    \"author\": \"木浮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027354-a1ded4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青鸟故事集\",\n    \"author\": \"李敬泽\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地铁上读书的女孩\",\n    \"author\": \"克里斯蒂娜・费雷-弗勒里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027249-327cf8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交际花盛衰记（企鹅经典）\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027228-7f0546?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅青少年文学经典系列（套装共10册）\",\n    \"author\": \"刘易斯・卡罗尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027315-5cf5f6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁花\",\n    \"author\": \"金宇澄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027180-6130db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城南旧事\",\n    \"author\": \"林海音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027150-9fa4ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋（果麦经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027141-8e7a86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食人魔花园\",\n    \"author\": \"蕾拉・斯利玛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027132-121fe8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽丝漫游奇境（作家榜经典文库）\",\n    \"author\": \"刘易斯・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027171-b9c3bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的小孩\",\n    \"author\": \"露西・狄伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027099-2e54b5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词三百首（作家榜经典文库）\",\n    \"author\": \"上彊村民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027120-8ec566?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻中的陌生人\",\n    \"author\": \"埃米尔・库斯图里卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027054-9b8a7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落论\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027048-a40738?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白天的房子，夜晚的房子\",\n    \"author\": \"奥尔加・托卡尔丘克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027042-2e68ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流动的盛宴（果麦经典）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027051-6a3fc0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太古和其他的时间\",\n    \"author\": \"奥尔加・托卡尔丘克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027003-d5d748?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世说新语译注\",\n    \"author\": \"刘义庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026997-7dd4f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男女有别\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026973-55e3ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶之路\",\n    \"author\": \"格拉齐娅・黛莱达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026976-20eadc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老中医\",\n    \"author\": \"高满堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026979-4cd157?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘埃之书\",\n    \"author\": \"布劳姆・普里瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026961-941833?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻影书（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026946-7a477b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的丫头\",\n    \"author\": \"柯继铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026934-41b6dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巧克力时代（全3册）\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026931-f13515?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失物之书\",\n    \"author\": \"约翰・康诺利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026871-7e2ade?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲍勃·迪伦：诗人之歌\",\n    \"author\": \"让-多米尼克·布里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我弥留之际\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026847-d105d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的妹妹\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026841-1d5453?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包法利夫人\",\n    \"author\": \"福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026808-2efd7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上几个人渣\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死于威尼斯（译文经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026790-ec3dad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（李卓吾批评本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026781-f18846?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（译文名著典藏）\",\n    \"author\": \"但丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026799-5090ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十日谈（译文名著典藏）\",\n    \"author\": \"卜伽丘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026835-513c66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（译文名著典藏）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026787-5f99fe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叶甫盖尼·奥涅金（译文名著典藏）\",\n    \"author\": \"普希金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026778-6025bd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（译文名著典藏）\",\n    \"author\": \"雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026766-fe791a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事（译文名著典藏）\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026763-3a2c91?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮士德（译文名著典藏）\",\n    \"author\": \"约翰・沃尔夫冈・歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026772-9e30ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（译文名著典藏）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026754-a8199f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（译文名著典藏）\",\n    \"author\": \"艾米莉・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026745-cb9946?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（译文名著典藏）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026733-0e7678?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（译文名著典藏）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026730-bb23d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安娜·卡列尼娜（译文名著典藏）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026712-2d67fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眼之壁\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026703-ce4abd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找死亡的男人\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026691-082508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我发现了（完全修订版）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026475-c6b3d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邦查女孩\",\n    \"author\": \"甘耀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026436-0c6072?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"官场现形记\",\n    \"author\": \"李宝嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026424-31227d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情迷佛罗伦萨\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026394-fb0c3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的枷锁\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026397-998dcb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙主题变奏\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026391-dafb28?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随性而至\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026382-2185ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国特工\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026379-aeed5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木麻黄树\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026430-c550f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在中国屏风上\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026370-6f3490?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家笔记\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026373-6fd2ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰贝斯的丽莎\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026367-8e7126?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过去和现在\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026361-f7520e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨匠与杰作\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026352-cee4c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观点\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026349-f8a587?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧院风情\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026340-c12b43?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笔花钗影录\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026343-6052b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚四大悲剧（译文名著典藏）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026406-61388c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨牧诗选（1956-2013）\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026265-7f9451?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航船\",\n    \"author\": \"张岱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐人小说\",\n    \"author\": \"汪辟疆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026247-8f16c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘埃落定（十五周年纪念版）\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026241-e45527?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂与远雷\",\n    \"author\": \"恩田陆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026211-53c0b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可爱的骨头\",\n    \"author\": \"艾丽斯・西伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026208-fdf6e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海胆\",\n    \"author\": \"雷晓宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇手记（珍藏版）\",\n    \"author\": \"达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚土\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025698-a4bd7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（绘图珍藏本）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐队女孩\",\n    \"author\": \"金・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻圣光的人\",\n    \"author\": \"玛蒂娜・莱维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025641-a9e803?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苔丝（译文名著典藏）\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025656-f77567?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫术师\",\n    \"author\": \"约翰・福尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025632-4de61f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一遍老爷\",\n    \"author\": \"朱川凑人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025620-d6e0fa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传声筒\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025599-9a708c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪音\",\n    \"author\": \"梁文道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025527-55faa6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵心小史\",\n    \"author\": \"小德兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025500-9364d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒火焰（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025335-aad644?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京女子会\",\n    \"author\": \"柚木麻子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025272-9473aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Book of Ebenezer Le Page\",\n    \"author\": \"Edwards\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025245-f5258d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马神话\",\n    \"author\": \"菲利普・马蒂塞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025155-94a814?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧神话\",\n    \"author\": \"卡罗琳・拉灵顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（果麦经典）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"种玫瑰的男人\",\n    \"author\": \"奥杜・阿娃・奥拉夫斯多蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025083-feb78a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025074-44fa95?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张居正：全4册\",\n    \"author\": \"熊召政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025059-cac065?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷山\",\n    \"author\": \"查尔斯・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025053-beeeae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必须牺牲卡米尔\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025026-1615ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城堡\",\n    \"author\": \"卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025014-46844e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书（读客经典）\",\n    \"author\": \"约瑟夫・鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024987-cfbbc7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全6册）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025002-6ad075?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个青年艺术家的画像（读客经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024966-4ddb18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵军\",\n    \"author\": \"伊萨克・巴别尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024948-2a7089?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耕种 食物 爱情\",\n    \"author\": \"克里斯汀・金博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不执着，叫看破 不完美，是生活\",\n    \"author\": \"莫妮卡・拉米雷斯・巴斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴\",\n    \"author\": \"塞尔希奥・拉米雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024861-a5cc92?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小偷家族\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024855-a4d8aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·潘\",\n    \"author\": \"詹姆斯・马修・巴利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024849-4284ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最危险的书\",\n    \"author\": \"凯文・伯明翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024819-d1aa94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词史\",\n    \"author\": \"刘毓盘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024807-5e3b7f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩画集（译文经典）\",\n    \"author\": \"兰波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024798-46febb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沧浪诗话\",\n    \"author\": \"严羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿堂风\",\n    \"author\": \"曹文轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024801-ced57d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"往事与随想（共3册）\",\n    \"author\": \"赫尔岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翅鬼\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024771-35d4c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女勇士\",\n    \"author\": \"汤亭亭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024768-569cc0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血色子午线\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024720-04f5eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列那狐的故事（读客经典）\",\n    \"author\": \"玛特・艾・季罗夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024705-152cdc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬妮·希尔\",\n    \"author\": \"约翰・克利兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024696-f27937?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爷爷一定要离婚\",\n    \"author\": \"帕斯卡・鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024636-095fcc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞芳心小姐\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024618-6365f1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大鳄三部曲\",\n    \"author\": \"仇晓慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024561-f0ec75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯纳黛特，你要去哪\",\n    \"author\": \"玛利亚・森普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024531-bf243b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日终曲\",\n    \"author\": \"安德烈・艾西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024519-7dbbd6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在另一个宇宙的1003天\",\n    \"author\": \"张春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国十大禁毁小说文库\",\n    \"author\": \"雪樵主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024510-63968c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（果麦经典）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024498-232c2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乞力马扎罗的雪（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024483-1cc6ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光边缘的男人\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024444-7f3cf5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美，看不见的竞争力\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024381-dc676d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼叫助产士\",\n    \"author\": \"珍妮弗・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024336-bc2744?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断代\",\n    \"author\": \"郭强生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024321-3e4d24?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬泳\",\n    \"author\": \"班宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024318-af87d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代文学大师林语堂逝世40周年纪念典藏版（全18册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024327-391a41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文全传\",\n    \"author\": \"张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024288-a2737b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿毛水怪\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024270-c14537?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天边一星子\",\n    \"author\": \"邓安庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024252-c13ed1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞女孩\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二个圣诞故事\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024231-15cc1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（插图珍藏版）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024228-8bc84a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身失忆人\",\n    \"author\": \"卢克・迪特里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024192-0076c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊镇\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024174-567c22?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄代表作\",\n    \"author\": \"河合隼雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间回旋\",\n    \"author\": \"罗伯特・威尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024120-f2c94d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（读客经典）\",\n    \"author\": \"艾米莉・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024126-44fd04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窄门（果麦经典）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024099-8f56cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故园风雨后\",\n    \"author\": \"伊夫林・沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024093-fba3b7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲（果麦经典）\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024081-b60289?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（作家榜经典文库）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024075-de0a5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追忆似水年华（徐和瑾译本全4卷）\",\n    \"author\": \"马塞尔・普鲁斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024090-3f610e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"依赖共生\",\n    \"author\": \"巴里・温霍尔德/贾内・温霍尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024069-b92767?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我忏悔\",\n    \"author\": \"乔莫・卡夫雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024045-21af78?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野性的呼唤（读客经典）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024048-f76d1c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛夏方程式\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024042-17c929?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木匠手记\",\n    \"author\": \"尼娜・麦克劳林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞的游戏\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023985-064394?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追忆似水年华（套装全7册）\",\n    \"author\": \"马塞尔・普鲁斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023958-e0af26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北回归线\",\n    \"author\": \"亨利・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023901-5575f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南回归线\",\n    \"author\": \"亨利・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023904-244b91?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂收音机\",\n    \"author\": \"伊藤正幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023868-5e0097?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我只知道人是什么\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（读客经典）\",\n    \"author\": \"弗・司各特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023826-c18ccc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语民族史（套装共4本）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023793-341588?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼兰河传（完整版插图本）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023718-574708?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学常识\",\n    \"author\": \"郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启人：终结篇\",\n    \"author\": \"艾米・亭特拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023604-fdee86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无理时代\",\n    \"author\": \"奥田英朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023589-934cb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Association of Small Bombs\",\n    \"author\": \"Mahajan Karan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023568-86906f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后假期\",\n    \"author\": \"保丽娜・弗洛雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023508-b0db4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经楚辞鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023427-f856e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春琴抄（果麦经典）\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023364-b46653?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感2\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023358-da9edb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为生命而阅读\",\n    \"author\": \"威尔・施瓦尔贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023328-a9e738?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使节\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023319-c926c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才的编辑\",\n    \"author\": \"司各特・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023316-2d09bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大纲\",\n    \"author\": \"汪震/王正己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023292-710c34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独抒己见\",\n    \"author\": \"弗拉基米尔・纳博科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023283-fe22ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（完整版）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（果麦经典）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023229-b94dc3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与黑暗的故事\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023226-44689c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱变\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023220-c8b441?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不过，一场生活\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作这门手艺\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023196-9d8958?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡村生活图景\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023187-1ce16f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的米海尔\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023184-f8dc9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费玛\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023181-dd9e49?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事开始了\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023169-13fbb8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙海无澜\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023166-3f7b75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯丁全集（英文版）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023130-faa3ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九个人\",\n    \"author\": \"张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023121-e03fbf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑林广记\",\n    \"author\": \"游戏主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023100-3e0c16?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们一无所有\",\n    \"author\": \"安东尼・马拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023091-47cf9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的早年岁月\",\n    \"author\": \"苏尔坦・本・穆罕默德・卡西米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只过必要生活\",\n    \"author\": \"匠久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023070-774ca6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间喜剧（读客经典）\",\n    \"author\": \"奥诺雷・德・巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023082-d9ba2c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命冒险\",\n    \"author\": \"闪米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023085-ade96e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"箱男\",\n    \"author\": \"安部公房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023010-1946e0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿野仙踪\",\n    \"author\": \"莱曼・弗兰克・鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023013-03a6a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事：材质、结构、风格和银幕剧作的原理\",\n    \"author\": \"罗伯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022953-524f05?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天长地久：给美君的信\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不知道该说什么，关于死亡还是爱情\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022905-60dc96?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的浏阳兄弟\",\n    \"author\": \"索文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为你洒下月光\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022869-d5741b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第二集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个海难幸存者的故事\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022824-01cd68?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白轮船\",\n    \"author\": \"钦吉斯・·艾特玛托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022752-04c29a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一瞬一生\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022680-a83bd2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的名字叫红（新版）\",\n    \"author\": \"奥尔罕・帕慕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022632-2bebcc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿山墙的安妮（全译本）\",\n    \"author\": \"露西・莫德・蒙格玛利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022590-0d58d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野性的呼唤\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022581-919f29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到灯塔去\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022578-1cdcd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙之书\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022560-fb10c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一念桃花源\",\n    \"author\": \"比尔・波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022563-9a7313?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云边有个小卖部\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022539-f60fa4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是孤独的行路人\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022542-cf4133?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类灭绝\",\n    \"author\": \"高野和明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022524-d31fba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜长梦多\",\n    \"author\": \"赵兰振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022518-85acd6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破狱\",\n    \"author\": \"李重民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022503-eaf459?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无尽世界（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022506-8a2088?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（读客经典）\",\n    \"author\": \"普罗斯佩・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022485-c0ed82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与你（果麦经典）\",\n    \"author\": \"马丁・布伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022446-f472b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜阳（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022434-822828?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潘多拉之匣（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022431-d56ce6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的妻子\",\n    \"author\": \"卡洛琳・艾瑞克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022428-864380?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同情者\",\n    \"author\": \"阮清越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022422-07238e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无边的土地\",\n    \"author\": \"若热・亚马多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022407-bb2b7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世上最美的溺水者\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022392-ea1ebf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五朝宰相\",\n    \"author\": \"姜狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022383-05455f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世事如刀，我来领教\",\n    \"author\": \"房昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022374-2e403d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遮蔽的天空\",\n    \"author\": \"保罗・鲍尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022362-ff57cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"族长的秋天\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022356-073aeb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品读中国（套装共6册）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到孤独尽头\",\n    \"author\": \"贝内迪克特・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022347-89429b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林达作品集（套装共10册）\",\n    \"author\": \"林达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背影\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我牙齿的故事\",\n    \"author\": \"瓦莱里娅・路易塞利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022296-a08525?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处停歇\",\n    \"author\": \"杰米・阿滕贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022275-8a9145?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛系：如何成为一个快乐的人\",\n    \"author\": \"草薙龙瞬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022269-176d06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大雪将至\",\n    \"author\": \"罗伯特・泽塔勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022254-844fb9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物既伟大又渺小\",\n    \"author\": \"吉米・哈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022239-aef96c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔集（全六册）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司汤达集（全四册）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫集（套装共2册）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022194-6adc55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左拉集（全四册）\",\n    \"author\": \"左拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍夫曼集（套装共2册）\",\n    \"author\": \"霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022191-d724ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜集（套装共3册）\",\n    \"author\": \"福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022185-594952?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的教育\",\n    \"author\": \"艾德蒙多・德・亚米契斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忆往谈旧录\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长翅膀的女孩\",\n    \"author\": \"苏・蒙克・基德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022125-11fbcf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间便利店\",\n    \"author\": \"村田沙耶香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022116-1d4596?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹唱片行\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022113-7cd057?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯特的选择\",\n    \"author\": \"安・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022047-60243c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯集（套装共10册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈察洛夫集（全四册）\",\n    \"author\": \"冈察洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代集（共五册）\",\n    \"author\": \"哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德集（全五册）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪德集（全五册）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德莱塞集（全四册）\",\n    \"author\": \"德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫集（全二册）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托尔斯泰集（共6册）\",\n    \"author\": \"托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格集（全2册）\",\n    \"author\": \"茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马集（共八册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯集（共5册）\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科绅士\",\n    \"author\": \"埃默・托尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021897-2b0983?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山茶文具店\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021900-38dea3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潦草\",\n    \"author\": \"贾行家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021888-5f25ff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝那些事儿（套装共7册）\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鸟之歌\",\n    \"author\": \"巴勃罗・卡萨尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021879-f9153e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许子东现代文学课\",\n    \"author\": \"许子东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021855-47d98d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命清单\",\n    \"author\": \"洛里・斯皮尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021849-9bd33d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份\",\n    \"author\": \"米兰・昆德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021843-019c3a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣橱里的女孩\",\n    \"author\": \"弗朗丝・盖兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021819-929df9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021816-c6992a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的天使\",\n    \"author\": \"瓦・勃留索夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021813-6662d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔谢尼耶夫的一生\",\n    \"author\": \"伊万・布宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021804-a41a4f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊神话故事集\",\n    \"author\": \"纳撒尼尔・霍桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021801-b47cf4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有如候鸟\",\n    \"author\": \"周晓枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列奥纳多·达·芬奇传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫武士首部曲（套装共6册）\",\n    \"author\": \"艾琳・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021747-2318d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生梦\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021705-6e4f6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸男孩\",\n    \"author\": \"米拉・巴尔托克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021681-5ea59b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青苔不会消失\",\n    \"author\": \"袁凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的生活\",\n    \"author\": \"艾丽丝・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021654-2b4ee2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再会，契普斯先生\",\n    \"author\": \"詹姆斯・希尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021627-c108f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禹域鸿爪\",\n    \"author\": \"内藤湖南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021618-f78c8b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船山遗书\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如父如子\",\n    \"author\": \"是枝裕和/佐野晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021579-c017d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国梦\",\n    \"author\": \"斯塔兹・特克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃离\",\n    \"author\": \"艾丽丝・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021558-5fd9e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基度山伯爵（全2册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021567-8fdb13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦卡勒斯作品系列（套装共6册）\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021537-c2fc56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神枪手迪克\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021288-92f5e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜光的阶梯\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021294-fc9a03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣殿春秋（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021252-8a62ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间食粮\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021168-e7d281?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人之妻\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我和厄尔以及将死的女孩\",\n    \"author\": \"杰西・安德鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021093-451af6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（风雅颂三卷）\",\n    \"author\": \"骆玉明/细井徇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021144-d46886?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的自然史\",\n    \"author\": \"戴安娜・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021021-362752?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说唐诗\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021003-a4fa60?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥吉和我\",\n    \"author\": \"帕拉西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020976-b53ede?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（完整版插图本）\",\n    \"author\": \"菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020946-7648ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼辞典\",\n    \"author\": \"安布罗斯・比尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020925-e0b984?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶之花\",\n    \"author\": \"夏尔・波德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020898-48caea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北野武的小酒馆\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020850-7ed159?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那个不为人知的故事\",\n    \"author\": \"Twentine\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020829-f14985?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的告白\",\n    \"author\": \"莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020826-fb6b6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗网\",\n    \"author\": \"杰米・巴特利特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020808-518d1f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文章皆岁月\",\n    \"author\": \"萧乾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020781-294c5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喧哗与骚动\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020775-4c22b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高山上的小邮局\",\n    \"author\": \"安赫莱斯・多尼亚特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020757-97f09e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三毛作品精选（共6册）\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020745-33663b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果酒屋的规则\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020694-be7e51?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜神科尔内尔\",\n    \"author\": \"汪玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020679-f90668?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光下的旅人\",\n    \"author\": \"瑟尔伯・昂托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020676-aff023?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与罗摩相会\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020670-98bbf9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也有过小时候\",\n    \"author\": \"任溶溶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020673-497c78?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰激凌家族\",\n    \"author\": \"恩斯特・凡德奎斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020658-1a3b66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大裂\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020646-4d4fca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密金鱼\",\n    \"author\": \"大卫・米恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020652-6cea44?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"V.S.奈保尔作品精选（共8册）\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020655-78a379?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉马戈：复明症漫记\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020637-70e547?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉马戈：失明症漫记\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020634-20292b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜的鹦鹉\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020619-8713f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别对我温柔\",\n    \"author\": \"玛丽・库比卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020508-bbe9ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以读攻读\",\n    \"author\": \"但汉松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020502-f49829?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机村史诗（六部曲）\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020427-e079e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯坦德1936\",\n    \"author\": \"福尔克尔・魏德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020391-a49d11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把你交给时间\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020520-c95774?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"换心\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020223-e95fa1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇风岁月\",\n    \"author\": \"罗伯特・麦卡蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020187-d7c04c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星星上的人\",\n    \"author\": \"卡罗琳・帕克丝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020163-0016df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫子旁\",\n    \"author\": \"朱赢椿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020127-6ae8cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影绘\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020091-2dc43f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风格感觉：21世纪写作指南\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020082-efde84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小书馆系列第一辑（共8册）\",\n    \"author\": \"冯友兰/瞿蜕园/俞剑华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020055-b5b7a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟雾弥漫你的眼\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020016-418bb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十一月的此刻\",\n    \"author\": \"约瑟芬・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019962-e22cb4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海的那一边\",\n    \"author\": \"梅丽莎・弗莱明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019899-e0deb6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水云（果麦经典）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"源泉\",\n    \"author\": \"安・兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019848-36d967?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹\",\n    \"author\": \"是枝裕和/中村航\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019839-d71f93?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾约堡秘史\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019698-04d6ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得堡\",\n    \"author\": \"安德列・别雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019671-73434e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫士唐望的教诲\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019626-626739?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解离的真实\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019611-2b333c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前往伊斯特兰的旅程\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019608-b17024?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡短篇小说集\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019605-f1d5f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小小小小的火\",\n    \"author\": \"伍绮诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019566-1aaf84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚来寂静\",\n    \"author\": \"李海鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019530-323af2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛丽·安妮\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东瀛文人·印象中国（套装共5册）\",\n    \"author\": \"芥川龙之介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019443-64d478?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅经典全集全四册\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019455-217bae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盖普眼中的世界\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清单人生\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019404-6cba1f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"染匠之手\",\n    \"author\": \"奥登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019410-f0261a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（果麦经典）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019365-ccc402?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风沙星辰\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019329-972eda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的习俗\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019323-98e502?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子三部曲\",\n    \"author\": \"埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019302-5cad9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"比海更深\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019257-c13005?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白噪音\",\n    \"author\": \"唐・德里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019245-efeee7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩4：末日风暴\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019206-354ef9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛开的樱花林下\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019194-9c60da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商市街（果麦经典）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019179-fa4281?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如丧\",\n    \"author\": \"高晓松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长乐路\",\n    \"author\": \"史明智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在未来等你\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019131-e9de0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多湾\",\n    \"author\": \"周瑄璞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019128-e0d1aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不要你死于一事无成\",\n    \"author\": \"法齐娅・库菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与绝迹之鸟的短暂邂逅\",\n    \"author\": \"本・方登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018930-3b2cac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌克兰拖拉机简史\",\n    \"author\": \"玛琳娜・柳薇卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018897-8c9b10?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢愉\",\n    \"author\": \"莉莉・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018687-bbe3c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜巡\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018639-a3c4cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一度青春\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018636-633616?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高兴死了！！！\",\n    \"author\": \"珍妮・罗森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018624-333039?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝鸟\",\n    \"author\": \"詹姆斯・麦克布莱德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018618-407d9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼河岸小店\",\n    \"author\": \"西加奈子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018603-716606?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅全集（全20册）\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018621-414c16?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色皮革手册\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018501-e054d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方有乔木（纪念版）\",\n    \"author\": \"小狐濡尾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018402-84c931?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万火归一\",\n    \"author\": \"胡利奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018396-97fb5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李敖混世宝典三部曲\",\n    \"author\": \"李敖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018234-614afb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嬉笑怒骂李敖大全集（套装10本）\",\n    \"author\": \"李敖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018222-00f809?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔之歌\",\n    \"author\": \"蕾拉・斯利玛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017928-dad628?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗店街\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017823-461c0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赫拉巴尔之书\",\n    \"author\": \"艾斯特哈兹・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017838-f75e41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"环城大道\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017817-222f39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星形广场\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017814-a3504b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克罗诺皮奥与法玛的故事\",\n    \"author\": \"胡利奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017775-747156?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥杜邦的祈祷\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017745-73b9e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传家之物：艾丽丝·门罗自选集\",\n    \"author\": \"艾丽丝・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017661-ec171d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意写作书系·走进大师（套装18册全）\",\n    \"author\": \"杰里・克利弗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017733-0f8010?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（译文名著精选）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017592-9191d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寓言\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017493-1b3020?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眠\",\n    \"author\": \"村上春树\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是人间四月天\",\n    \"author\": \"林徽因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017307-901fb8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呐喊彷徨故事新编\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017259-271898?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼克·亚当斯故事集\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017073-0fe1ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七十二堂写作课\",\n    \"author\": \"夏丏尊/叶圣陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017064-cd4bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子们的诗\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017097-fec3aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫Ⅲ：何谓永恒\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017004-62308e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔种\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016932-d3cb9a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯乐\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016926-0073c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人之彼岸\",\n    \"author\": \"郝景芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016878-0a3553?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗澡\",\n    \"author\": \"杨绛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016821-12754d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯子记\",\n    \"author\": \"苏童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016812-99d2d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪安娜穿过漫漫长夜\",\n    \"author\": \"加瑞尔・萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫I：虔诚的回忆\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016569-c1efc9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被仰望与被遗忘的\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016455-8ba51c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的职业是小说家\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016446-df464d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追风筝的人\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016443-983457?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅定荒野\",\n    \"author\": \"加里・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春灯公子\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016404-86542e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯吉斯野外生存系列（套装四册）\",\n    \"author\": \"桑顿・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫中的将军\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016203-716374?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情人\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016200-5669ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波吉亚家族\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016059-1a1324?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地裂三百年（下）\",\n    \"author\": \"覃仕勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016044-4b2a48?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜漫漫路迢迢\",\n    \"author\": \"尤金・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016038-fb4be7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫（果麦经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016017-b4cf30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李太白全集\",\n    \"author\": \"李白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王蒙作品精选集（套装16本）\",\n    \"author\": \"王蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015960-48f0af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群鸟飞舞的世界末日\",\n    \"author\": \"查莉・简・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015921-312cfa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苦妓回忆录\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015906-0e3416?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国中尉的女人\",\n    \"author\": \"约翰・福尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015723-9b3d26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芳华\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015696-61e77a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有条喷火龙（第一辑）\",\n    \"author\": \"凯特・麦克马伦/比尔・巴索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒悬的地平线\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015582-34e2c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记（全本全译全注插图珍藏版）\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015576-cbd161?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲的失乐园\",\n    \"author\": \"阿里埃勒・萨巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柒\",\n    \"author\": \"文珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015498-d668fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶童安伦\",\n    \"author\": \"吉姆・谢泼德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015462-c0e6e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去，并且要记住\",\n    \"author\": \"拉斯普京\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015465-8edfc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被伤害与侮辱的人们（译文名著精选）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015438-1fdc43?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达洛卫夫人（译文名著精选）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015435-2a37de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头的图书馆\",\n    \"author\": \"费莉希蒂・海斯-麦科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015411-92cba0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解说疾病的人\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015408-005737?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的枷锁\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015369-cdc221?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遥远的星辰\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015288-0eebf3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不成问题的问题\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015252-eb9267?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人2：重返荒原\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015192-9058db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的中场休息\",\n    \"author\": \"本・方登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015132-9c1e9a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不畅销小说写作指南\",\n    \"author\": \"大头马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015129-764c03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说文学之美（全5册修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015126-9255a6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天过得怎么样\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015108-00eb73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠，从牛A到牛C\",\n    \"author\": \"大脸撑在小胸上\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015081-08667c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到大地尽头\",\n    \"author\": \"大卫・格罗斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015066-bcbe3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通灵的按摩师\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015030-38e4bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不适之地\",\n    \"author\": \"裘帕・拉希利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014985-9e6283?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜之子\",\n    \"author\": \"萨曼・鲁西迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014967-759eef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林孤谍\",\n    \"author\": \"约瑟夫・卡农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复明症漫记\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014748-8511f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间停止的那一天\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014655-debad3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字看我一生\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查拉图斯特拉如是说\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014622-0410f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上流法则\",\n    \"author\": \"埃默・托尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014616-694625?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悉达多（果麦经典）\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014601-c70ef2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读是一座随身携带的避难所\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014526-6e422e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（译文经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014481-bc2114?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物凶猛\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014457-a7030d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼兰河传（1940年初刊还原版）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014454-6db54f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王小波作品大全集（15册）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014463-323335?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲刺客\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014304-350e20?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萝卜和难挑的鳄梨\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014292-185e18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁小历史系列（全三册）\",\n    \"author\": \"詹姆斯・韦斯特・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014289-4430ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不允许自己难过太久\",\n    \"author\": \"凯茜・苏丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014112-37b6b5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫里哀先生传\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013956-e85b77?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃亡\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013950-1259d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南十字星共和国\",\n    \"author\": \"费・索洛古勃/瓦・勃留索夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013944-a6bd04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013971-811c23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见野兔的那一年\",\n    \"author\": \"阿托・帕西林纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013932-463f69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲情偶寄（果麦经典）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013896-9da2db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新选组血风录\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013905-3e7df8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文稿拾零\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013854-de3eab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君士坦丁堡最后之恋\",\n    \"author\": \"米洛拉德・帕维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013839-6df24f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（译文名著典藏）\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013803-9f3bf0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长日留痕\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013677-6e7b44?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平民之宴\",\n    \"author\": \"林真理子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013668-46916b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别名格蕾丝\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013734-95fbc6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深入北方的小路\",\n    \"author\": \"理查德・弗兰纳根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013632-920634?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯万的一次爱情\",\n    \"author\": \"马塞尔・普鲁斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013623-896944?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被掩埋的巨人\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013614-0c53d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世画家\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013608-834a7f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无可慰藉\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013617-d81e38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远山淡影\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013599-85090f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小夜曲\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013602-a6afe2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今昔物语（浮世绘插图珍藏版）\",\n    \"author\": \"不详\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013569-1d2e80?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六神磊磊读唐诗\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013521-bdd110?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"居山而行\",\n    \"author\": \"雲姑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013512-eda5a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗读者Ⅰ（全3册）\",\n    \"author\": \"董卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013494-19c678?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十七度二（译文经典）\",\n    \"author\": \"菲利普・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013452-6e212b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形同陌路的时刻\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013440-fec756?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛百年经典（01-38卷）\",\n    \"author\": \"伊索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013542-8c1815?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我谈跑步时，我谈些什么\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013386-6178c4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不属于我们的世纪\",\n    \"author\": \"马修・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013275-4a608c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅课\",\n    \"author\": \"汤姆・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让时间停止的女孩\",\n    \"author\": \"罗伯特・富兰克林・杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013245-4e6466?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞行家\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013146-61b96e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1984\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013032-d786be?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马爱经（企鹅经典）\",\n    \"author\": \"奥维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布登勃洛克一家\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013014-8c13d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无欲的悲歌\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013011-411202?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原上的摩西\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013002-6e48be?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同栖生活\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012996-143f82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛苦的中国人\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012993-90c384?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝇王（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012984-413b5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原\",\n    \"author\": \"毕飞宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012975-9d2262?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"葛亮小说集（共四册）\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012978-46d74d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爸爸（短经典）\",\n    \"author\": \"瓦西利斯・亚历克萨基斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012786-703c7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发条橙\",\n    \"author\": \"安东尼・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012759-69a04a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本小说\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012762-cfdccc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本文学书\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012756-430541?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨周翰作品集（全6卷）\",\n    \"author\": \"杨周翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012693-67e2e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家谱\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012681-1ffe87?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平家物语（译文名著精选）\",\n    \"author\": \"佚名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012687-34135a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的悲鸣\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给青年诗人的信\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012636-064601?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳄鱼街\",\n    \"author\": \"林蔚昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012648-211e67?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中营的舞者\",\n    \"author\": \"保罗・格拉泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012684-e07dca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜘蛛女之吻\",\n    \"author\": \"曼努埃尔・普伊格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012618-4143a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书之书\",\n    \"author\": \"福尔克尔・魏德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012615-56e5ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管家\",\n    \"author\": \"玛丽莲・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012600-1fdf69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摘星星的男孩\",\n    \"author\": \"约翰・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应许之地\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012585-de8060?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的进化论\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗样的春天\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012612-81d19d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺旋之谜\",\n    \"author\": \"圣地亚哥・帕哈雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012579-c32ac7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生最美是清欢\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012576-33020b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流浪者史诗\",\n    \"author\": \"詹姆斯・米切纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012555-1f6116?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平凡的世界（套装共3册）\",\n    \"author\": \"路遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012519-dcdb11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废墟的花朵\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012504-c2ae8c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012480-bb6ba7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012498-08c134?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012468-207f9d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉吟（短经典）\",\n    \"author\": \"梅尔塞・罗多雷达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012465-2aeabb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从此以后\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012462-214ab8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新派遣\",\n    \"author\": \"菲尔・克莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012450-4c35c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如明天来临\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012417-3590de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆斯林的葬礼\",\n    \"author\": \"霍达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012387-7d3306?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寓言集\",\n    \"author\": \"胡安・何塞・阿雷奥拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012381-3d0134?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小妹妹\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012345-2556ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长眠不醒\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012336-5ebd47?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012330-ad272f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的国\",\n    \"author\": \"寇研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半轮黄日\",\n    \"author\": \"奇玛曼达・恩戈兹・阿迪契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012108-afced2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物集\",\n    \"author\": \"胡安・何塞・阿雷奥拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012090-8ddb82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀的简约之道\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012057-9e177a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等你呼唤我的名字\",\n    \"author\": \"阿尔伯特・埃斯皮诺萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿条纹衣服的男孩\",\n    \"author\": \"约翰・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011964-f9985f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京一年\",\n    \"author\": \"蒋方舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011895-9ac584?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡暗黑故事全集（下册）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011853-51ba43?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷影子的人\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011811-525654?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尼\",\n    \"author\": \"安德鲁・麦克尔・赫尔利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011778-9792d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上的最后一天\",\n    \"author\": \"卡米尔・佩简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011763-477c20?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗处\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩托日记\",\n    \"author\": \"埃内斯托・切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多斯的城堡\",\n    \"author\": \"露西・蒙哥马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011712-fe2f13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"围城\",\n    \"author\": \"钱钟书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011688-6b9ffc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤儿列车\",\n    \"author\": \"克里斯蒂娜・贝克・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011670-4e3c98?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份的焦虑\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011703-4d4366?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有女人的男人们\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011598-891967?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步履不停\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011592-cde9e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦刻尔克\",\n    \"author\": \"沃尔特・劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡暗黑故事全集（上册）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011532-a09ea4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丙申故事集\",\n    \"author\": \"弋舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011514-e0566b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠夫十字镇\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011511-06936a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：02陪伴\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011460-0422ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：03分离\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011451-c5bdd9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日走过山间（果麦经典）\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一千零一夜（果麦经典）\",\n    \"author\": \"邓嘉宛译\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011433-69e0ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（全本全注全译）\",\n    \"author\": \"王秀梅译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自深深处\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011409-a27899?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"席勒文集（全6册）\",\n    \"author\": \"席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011478-c63c69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生插图版经典作品选（全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部招妻\",\n    \"author\": \"马宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舞姬\",\n    \"author\": \"森鸥外\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011316-ad1e18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍遗珠\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由\",\n    \"author\": \"乔纳森・弗兰岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011283-cb0e40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡未冷前\",\n    \"author\": \"川口俊和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011202-0121ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只特立独行的猪（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011154-36b895?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖作品典藏书系全集（共31册）\",\n    \"author\": \"海明威/泰戈尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011121-5976eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情节与人物\",\n    \"author\": \"杰夫・格尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011055-c9592f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"依偎\",\n    \"author\": \"丁捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010914-197d3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独居的一年\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010776-6affa0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦田里的守望者\",\n    \"author\": \"杰罗姆・大卫・塞林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010602-c11552?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍乱时期的爱情\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010596-537f33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明破晓的世界\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯通纳\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010497-2da934?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿百年\",\n    \"author\": \"罗伟章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010440-50916d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的河山：抗日正面战场全纪实（套装共3册）\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦文体与话语方式研究\",\n    \"author\": \"过常宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：01相遇\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010389-32ec03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妹头\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010377-d27ee2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒木圣经\",\n    \"author\": \"芭芭拉・金索沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010254-370a86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文集（套装共7册）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·奥斯丁小说全集\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010251-5f85e0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡拉马佐夫兄弟\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010242-7facf4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还是想你，妈妈\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010209-11eeec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，萤火虫小巷\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010206-82872c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人与永恒\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找阿拉斯加\",\n    \"author\": \"约翰・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010146-a65cb5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四十个房间\",\n    \"author\": \"奥尔加・格鲁辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010137-2f066d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙头凤尾\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010032-914b4e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮和六便士\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010029-35b91e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的技艺：塔奇曼论历史\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典人物原型45种\",\n    \"author\": \"维多利亚・林恩・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009954-f64d06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的朝圣2：奎妮的情歌\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009930-818355?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷\",\n    \"author\": \"徐则臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009918-2c00da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高的火柴\",\n    \"author\": \"张楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009900-0ac672?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪全集（小说卷）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009885-1f723b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国趣读系列（共5册）\",\n    \"author\": \"编辑组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009972-90b3b7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚鸟\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009828-d819d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是女兵，也是女人\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2666\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009816-01607a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白先勇细说红楼梦\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009822-88e0d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偶发空缺\",\n    \"author\": \"J.K.罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009801-91629b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漂亮朋友\",\n    \"author\": \"莫泊桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009795-28962c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茵梦湖：施托姆抒情小说选\",\n    \"author\": \"施托姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009780-5324ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009786-616590?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝴蝶梦\",\n    \"author\": \"达夫妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009771-997a5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曼德施塔姆夫人回忆录\",\n    \"author\": \"娜杰日达・曼德施塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009744-9ce9e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努门诺尔与中洲之未完的传说\",\n    \"author\": \"J.R.R.托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009759-306ebf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青春咖啡馆\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009726-977513?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Stoner\",\n    \"author\": \"John Williams\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009696-f1deec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克精选集16册\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像我这样的一个读者\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红岩\",\n    \"author\": \"罗广斌/杨益言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009657-7a2398?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余华长篇小说（套装共4册）\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009645-718a5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇动物在哪里\",\n    \"author\": \"J.K.罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009636-41157c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有你，什么都不甜蜜\",\n    \"author\": \"约恩・卡尔曼・斯特凡松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009612-883618?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩智慧精髓大合集（套装共三册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江城\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009462-96eec5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看，这个世界\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009435-6a6ded?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞忆旧集\",\n    \"author\": \"杜鲁门・卡坡蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009408-7c05b5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔作品集（套装共9册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳科幻经典（套装11册）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009561-49bf9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"H档案\",\n    \"author\": \"伊斯梅尔・卡达莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009339-12c917?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船夫日记\",\n    \"author\": \"凯尔泰斯・伊姆莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009303-181850?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徒步中国\",\n    \"author\": \"雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009309-befe4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一半是火焰，一半是海水\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009294-b318d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲洛梅娜\",\n    \"author\": \"马丁・西克史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009285-3f7aa9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈默手稿\",\n    \"author\": \"列奥纳多・达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原狼\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009234-487551?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着本来单纯：丰子恺散文漫画精品集\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界史纲：生物和人类的简明史\",\n    \"author\": \"吴文藻/冰心等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009207-280a2c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守望之心\",\n    \"author\": \"哈珀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009153-c9ba37?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词大会：品味古文人的“八卦”人生（套装共4册）\",\n    \"author\": \"张觅/郭瑞祥/江晓英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009096-8baf10?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生于一九八四\",\n    \"author\": \"郝景芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009078-efa13f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009066-01e1b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009063-7f3a81?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"容忍比自由更重要\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009045-8da7c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生有何意义\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们能做什么\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息\",\n    \"author\": \"凯特・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009015-52993b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮光之城（豪华珍藏套装）\",\n    \"author\": \"斯蒂芬妮・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008949-e8803d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼王\",\n    \"author\": \"维克托・阿斯塔菲耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008928-ed9c64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"树号\",\n    \"author\": \"维克托・阿斯塔菲耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008916-7b913a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失乐园（中英插图珍藏本）\",\n    \"author\": \"约翰・弥尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008913-ba5a39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008871-2380b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡罗尔\",\n    \"author\": \"帕特里夏・海史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008898-271551?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子共和国（果麦经典）\",\n    \"author\": \"理查德・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008853-deb5e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新名字的故事\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008784-b8943f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡夫卡全集（插图本）全9卷\",\n    \"author\": \"叶廷芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008856-95c871?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死一只知更鸟\",\n    \"author\": \"哈珀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008760-83b113?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们仨\",\n    \"author\": \"杨绛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反乌托邦三部曲\",\n    \"author\": \"扎米亚京/阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008736-24eb0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独小说家\",\n    \"author\": \"石田衣良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008721-33de84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河流之声\",\n    \"author\": \"乔莫・卡夫雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008703-83cb6f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"望春风\",\n    \"author\": \"格非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008655-3a2be5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁克林有棵树\",\n    \"author\": \"贝蒂・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008640-fcdadb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓶梅（崇祯本）\",\n    \"author\": \"兰陵笑笑生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008631-0b6df9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（校注本）\",\n    \"author\": \"施耐庵/罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（校注本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（校注本）\",\n    \"author\": \"曹雪芹/高鹗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（校注本）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008598-ec27d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师们的写作课：好文笔是读出来的\",\n    \"author\": \"舒明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008586-9602d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鹿原\",\n    \"author\": \"陈忠实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008565-f635ea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾准文集\",\n    \"author\": \"顾准\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文选\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008550-543725?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晃来晃去的人\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008463-5b54a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你：与冯唐聊天\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008421-7af3cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（套装上中下册）\",\n    \"author\": \"雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追问\",\n    \"author\": \"丁捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当尼采哭泣\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008346-a7d90b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等等灵魂\",\n    \"author\": \"李佩甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008343-34970f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东亚近代文明史上的梁启超\",\n    \"author\": \"狭间直树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东周列国志（上下）\",\n    \"author\": \"蔡元放/冯梦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008370-900bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天局\",\n    \"author\": \"矫健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008208-18ccc8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一百个人的十年\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下铁道\",\n    \"author\": \"科尔森・怀特黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十层地狱\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008106-e60331?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿Q生命中的六个瞬间\",\n    \"author\": \"汪晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008061-a92e4b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野寒山\",\n    \"author\": \"何善蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年孤独\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008040-9c2191?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把生命浪费在美好的事物上\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008034-2d080f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤独是一座花园\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007998-862b6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻欢作乐\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008001-2f0063?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苔丝（果麦经典）\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007950-e22210?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张德芬身心灵四部曲（套装共4册）\",\n    \"author\": \"张德芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上午咖啡下午茶\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪满洲国（套装共三册）\",\n    \"author\": \"迟子建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007920-212a9c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的读书计划\",\n    \"author\": \"克里夫顿・费迪曼/约翰・S・梅杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫小巷\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007914-abfad4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正全集：王阳明全集\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北鸢\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007899-24deaf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先谋生，再谋爱\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙应台“人生三书”（套装共3册）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十日谈（译文名著精选）\",\n    \"author\": \"卜伽丘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007794-cbc429?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科雷马故事\",\n    \"author\": \"瓦尔拉姆・沙拉莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺与玫瑰\",\n    \"author\": \"王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007755-dc10b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙乡年鉴（果麦经典）\",\n    \"author\": \"奥尔多・利奥波德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007749-a6a55e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变色龙（译文名著精选）\",\n    \"author\": \"安东・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007737-3fd6bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当呼吸化为空气\",\n    \"author\": \"保罗・卡拉尼什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马丁·伊登（译文名著精选）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007722-8c323e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声告白\",\n    \"author\": \"伍绮诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007752-de9648?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊神话故事\",\n    \"author\": \"古斯塔夫・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓鱼的男孩\",\n    \"author\": \"奇戈希・奥比奥玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007668-848bf7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的天才女友\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007614-1518ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棋王\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007548-c1b611?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年一叹\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读小说\",\n    \"author\": \"安德烈・布林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007539-6200aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师细说中国历史（套装共12册）\",\n    \"author\": \"吕思勉/吴晗/傅斯年等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比\",\n    \"author\": \"斯科特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007428-711e86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮囊\",\n    \"author\": \"蔡崇达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说故事的人\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007407-3d5566?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿甘正传\",\n    \"author\": \"温斯顿・葛詹姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007395-34fe2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚四大悲剧（译文名著精选）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007458-01f132?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一地鸡毛\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007380-c504ff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白宫岁月：基辛格回忆录（套装共4册）\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一句顶一万句\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007404-3f81af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十年后（套装上下册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007203-5ad2db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不是潘金莲\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007218-272acd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾中回忆\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轮\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007125-fc1448?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子\",\n    \"author\": \"安托万・德・圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007098-6d08d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好心眼儿巨人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目送（插图版）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行者：一念一生\",\n    \"author\": \"六小龄童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007038-8367b2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡关何处\",\n    \"author\": \"土家野夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006978-c20038?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上书店\",\n    \"author\": \"加布瑞埃拉·泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006963-ca71a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水手比利·巴德\",\n    \"author\": \"赫尔曼・梅尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006942-b622ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的大多数（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧院魅影（译文名著精选）\",\n    \"author\": \"卡斯顿・勒胡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006849-571d7d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘鸟（修订版）\",\n    \"author\": \"考琳·麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见\",\n    \"author\": \"柴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记\",\n    \"author\": \"保罗·奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不能承受的生命之轻\",\n    \"author\": \"米兰·昆德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006690-905dbd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎乐美（译文经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006588-7b673f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你永远都无法叫醒一个装睡的人\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你们再也不写了？（短经典）\",\n    \"author\": \"洛朗丝・柯赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006438-e0248f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四先生（短经典）\",\n    \"author\": \"贡萨洛・曼努埃尔・塔瓦雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006435-b445a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变形的陶醉（译文经典）\",\n    \"author\": \"斯台芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006381-1473bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵军（译文经典）\",\n    \"author\": \"伊萨克・巴别尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006369-d34b18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说选（经典译林）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006429-a8db77?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲三万里\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华的智慧\",\n    \"author\": \"刘笑敢等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006306-708bf4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤单，我的自我\",\n    \"author\": \"丽贝卡・特雷斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（经典译林）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨迹：留在生命和记忆中\",\n    \"author\": \"曾子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邯郸记\",\n    \"author\": \"汤显祖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教父三部曲（典藏版套装）\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地海传奇六部曲\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白门柳（套装共3册）\",\n    \"author\": \"刘斯奋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006099-ca9e83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红顶商人胡雪岩珍藏版大全集（套装共6册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有个性的人\",\n    \"author\": \"罗伯特・穆齐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005946-b00b64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果我们的语言是威士忌\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005961-43a508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005907-b6423c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜半蜘蛛猴\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005913-712f9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触摸历史与进入五四\",\n    \"author\": \"陈平原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船夫日记2\",\n    \"author\": \"凯尔泰斯・伊姆莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005754-20f950?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷尔蒙夜谈\",\n    \"author\": \"鲁敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005748-131ca5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字通论\",\n    \"author\": \"陆宗达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005763-d13af3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症楼\",\n    \"author\": \"亚历山大・索尔仁尼琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005730-e81dcc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的26部欧美人文经典译丛（套装26册）\",\n    \"author\": \"尼采/柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005814-2644a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个孤独漫步者的遐想（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005694-ef74ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿弥陀佛么么哒\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005679-dc7332?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的我们\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要活的有尊严\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005640-fbc1a6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜色人生\",\n    \"author\": \"丹尼斯・勒翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005625-b10eda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿（经典译林）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005643-ae482c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的阿勒泰\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005583-4653e8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查令十字街84号\",\n    \"author\": \"海莲·汉芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005511-6ba615?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妩媚航班\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005385-b07161?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宵待草夜情\",\n    \"author\": \"连城三纪彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005346-8b2d5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找时间的人\",\n    \"author\": \"凯特・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005340-cf1021?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的西部\",\n    \"author\": \"雪漠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005343-8070a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万英镑（译文名著精选）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005322-1058e0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（译文名著精选）\",\n    \"author\": \"但丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005313-5d3225?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世说新语\",\n    \"author\": \"刘义庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005316-e1c6a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勃朗宁夫人十四行诗\",\n    \"author\": \"伊丽莎白・芭蕾特・勃朗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005118-5abcfc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国知识分子史\",\n    \"author\": \"吕一民/朱晓罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无尽的谈话\",\n    \"author\": \"莫里斯・布朗肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005043-e237a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"修配工\",\n    \"author\": \"伯纳德・马拉默德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004899-b12544?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜的苦楚\",\n    \"author\": \"考琳・麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004812-31eee0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的池塘（短经典）\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004749-de3f5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们这个时代的怕和爱\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004716-7b334c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越财富\",\n    \"author\": \"赵晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511332-7490f1?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香帅财富报告\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富千年史\",\n    \"author\": \"辛西娅・克罗森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢：有钱人和你想的不一样\",\n    \"author\": \"塞缪尔・斯迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱从哪里来\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人的逻辑\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万富翁快车道\",\n    \"author\": \"MJ·德马科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050346-fb40ee?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的起源\",\n    \"author\": \"埃里克・拜因霍克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047400-b0091e?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人缺什么\",\n    \"author\": \"古古\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由\",\n    \"author\": \"托马斯・斯坦利/萨拉斯坦利・弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7分钟理财\",\n    \"author\": \"罗元裳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034965-f28528?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人穷口袋，富人富脑袋\",\n    \"author\": \"曾驿翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑优势（第二版）\",\n    \"author\": \"奈德・赫曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富豪的心理\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028158-e90c4b?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Fifth Discipline Fieldbook\",\n    \"author\": \"Peter M. Senge/et al\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021675-47e500?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国富人为何变穷\",\n    \"author\": \"张庭宾/艾经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方现代思想家精品译丛（18卷）\",\n    \"author\": \"哈耶克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498924-4e23e7?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想家和思想导读丛书精选（套装共5册）\",\n    \"author\": \"雷克斯・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖无聊\",\n    \"author\": \"马克・金维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（果麦经典）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的用途与滥用\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术师时代\",\n    \"author\": \"沃尔夫拉姆・艾伦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003984-f36531?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲思与海\",\n    \"author\": \"戴维・法雷尔・克雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有思想的世界\",\n    \"author\": \"富兰克林・福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制造儒家\",\n    \"author\": \"詹启华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992017-ecbdd9?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的思想（中英双语版·全48册）\",\n    \"author\": \"马可・波罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋玄学史（第二版）\",\n    \"author\": \"余敦康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判理论（牛津通识读本）\",\n    \"author\": \"斯蒂芬・埃里克・布朗纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053451-652219?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语今读（增订版）\",\n    \"author\": \"李泽厚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学是怎样炼成的\",\n    \"author\": \"蒂莫西・威廉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类的认识（校勘全译本）\",\n    \"author\": \"约翰・洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的迷途\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越哈佛\",\n    \"author\": \"马克·H.麦考梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046038-9c7a11?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪思想史：从弗洛伊德到互联网\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆的思想家\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化与人生\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：自由与财产\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的启蒙运动\",\n    \"author\": \"吉隆・・奥哈拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"壶里春秋\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第六辑）\",\n    \"author\": \"乔治・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第三辑）\",\n    \"author\": \"爱德华・吉本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032616-894226?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第一辑）\",\n    \"author\": \"亨利・戴维・梭罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032496-a4b82d?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第二辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032466-45f355?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的故事\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030186-7ef3cf?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（理想国新版）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本论（套装共3册）\",\n    \"author\": \"中共中央马克思恩格斯列宁斯大林著作编译局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029451-0ebaad?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的启蒙\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027996-39914b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小宣言\",\n    \"author\": \"马格努斯・林奎斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027162-16e6c5?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界哲学简史\",\n    \"author\": \"罗伯特·C·所罗门等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026994-8f39ae?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《人权宣言》在晚清中国的旅行\",\n    \"author\": \"程梦婧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019650-a84eeb?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想史：从火到弗洛伊德（全二册）\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想的力量\",\n    \"author\": \"布鲁克・诺埃尔・穆尔/肯尼思・布鲁德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019563-28ba63?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义咖啡馆\",\n    \"author\": \"莎拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019089-4e2eda?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治传统：近代自由主义之发展\",\n    \"author\": \"弗雷德里克・沃特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义：一场思辨之旅\",\n    \"author\": \"迈可・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012036-0c58f8?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（上卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（下卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想本质\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西天到中土\",\n    \"author\": \"西天中土项目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾准文集\",\n    \"author\": \"顾准\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿Q生命中的六个瞬间\",\n    \"author\": \"汪晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008061-a92e4b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想丰满\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国知识分子史\",\n    \"author\": \"吕一民/朱晓罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上丝绸之路\",\n    \"author\": \"罗德里希・普塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002505-7e6ed9?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲思与海\",\n    \"author\": \"戴维・法雷尔・克雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海权：海洋帝国与今日世界\",\n    \"author\": \"詹姆斯・斯塔夫里迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997723-fe76ef?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上帝国：现代航运世界的故事\",\n    \"author\": \"洛丽・安・拉罗科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995551-55cc18?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端生存\",\n    \"author\": \"史蒂芬・帕鲁比/安东尼・帕鲁比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深海：探索寂静的未知\",\n    \"author\": \"詹姆斯・内斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群\",\n    \"author\": \"弗兰克・施茨廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025491-553cf5?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋与文明\",\n    \"author\": \"林肯・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简海洋文明史\",\n    \"author\": \"菲利普・德・索萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上帝国\",\n    \"author\": \"萝莉·安·拉罗科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006567-e71694?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对比Excel，轻松学习Python数据分析\",\n    \"author\": \"张俊红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866\",\n    \"category\": \"Excel\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是Excel控\",\n    \"author\": \"熊野整\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015744-ec5cf7?p=8866\",\n    \"category\": \"Excel\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别怕，Excel VBA其实很简单\",\n    \"author\": \"罗国发\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005424-36e2bc?p=8866\",\n    \"category\": \"Excel\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大头侃人：任正非\",\n    \"author\": \"于立坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从偶然到必然\",\n    \"author\": \"夏忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熵减：华为活力之源\",\n    \"author\": \"华为大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003804-77cb09?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为增长法\",\n    \"author\": \"胡赛雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994717-50ac38?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为管理变革\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036516-884b3b?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为方法论\",\n    \"author\": \"周锡冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033705-5ef0ea?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非传\",\n    \"author\": \"孙力科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值为纲：华为公司财经管理纲要\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017811-05f4eb?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为没有秘密\",\n    \"author\": \"吴春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库：西方文学社科经典大套装（套装194本）\",\n    \"author\": \"劳伦斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503094-de74e2?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·社会文化书系（套装共61本）\",\n    \"author\": \"杰罗姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503208-381270?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德里达（牛津通识读本）\",\n    \"author\": \"西蒙・格伦迪宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔的精神现象学\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052602-06e6fe?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《荒岛》及其他文本\",\n    \"author\": \"吉尔・德勒兹/大卫・拉普雅德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学史讲演录（4卷）\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代西方哲学讲演集\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044244-278ff8?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方哲学常识\",\n    \"author\": \"菲利普・斯托克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032880-081e2d?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一神论的影子\",\n    \"author\": \"赵汀阳/阿兰・乐比雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被诅咒的部分\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开：周濂的100堂西方哲学课\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简西方哲学史\",\n    \"author\": \"杰瑞米・斯坦格鲁/詹姆斯・加维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024156-e74da6?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性、美德和灵魂的声音\",\n    \"author\": \"西塞罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023961-69cf76?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的人（译文经典）\",\n    \"author\": \"威廉・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的快乐\",\n    \"author\": \"罗伯特・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019143-2bee90?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名家名译·大师人生智慧精华丛书\",\n    \"author\": \"柏拉图/叔本华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018189-56ffc0?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙娜拉之剑（全3册）\",\n    \"author\": \"特里・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014520-838f52?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方建筑小史\",\n    \"author\": \"陈杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方哲学史（套装共2册）\",\n    \"author\": \"弗兰克・梯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009582-0a04b7?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史\",\n    \"author\": \"特奥多尔・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HR转型突破\",\n    \"author\": \"康志军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016836-d313c3?p=8866\",\n    \"category\": \"人力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激活个体\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866\",\n    \"category\": \"人力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代朝鲜与日本\",\n    \"author\": \"赵景达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000528-ff6dab?p=8866\",\n    \"category\": \"朝鲜\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅲ：血战长津湖\",\n    \"author\": \"何楚舞/凤鸣/陆宏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866\",\n    \"category\": \"朝鲜\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天：美国人眼中的朝鲜战争\",\n    \"author\": \"大卫・哈伯斯塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866\",\n    \"category\": \"朝鲜\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代政治的正当性基础\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491484-c06fa6?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏特加政治\",\n    \"author\": \"马克・劳伦斯・施拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495120-2dd6c4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力\",\n    \"author\": \"德博拉・格林菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498009-cbe216?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘擎西方现代思想讲义\",\n    \"author\": \"刘擎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498162-6d669a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份政治\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499002-9f16d0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的选择\",\n    \"author\": \"马凯硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精英的傲慢\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500601-accc90?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破茧\",\n    \"author\": \"施展\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500925-acb6ff?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国际政治精品文库精选套装（套装11册）\",\n    \"author\": \"塞缪尔・亨廷顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509124-80f0aa?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹劾\",\n    \"author\": \"戴维・E.凯卫格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐观而不绝望\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510429-5ca9fe?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六论自发性\",\n    \"author\": \"詹姆斯·C. 斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承认：一部欧洲观念史\",\n    \"author\": \"阿克塞尔・霍耐特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为公民\",\n    \"author\": \"皮埃尔・罗桑瓦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511836-25cf44?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秩序与历史（套装全五卷）\",\n    \"author\": \"埃里克・沃格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513159-e66ba2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么是中国\",\n    \"author\": \"金一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘政治三部曲\",\n    \"author\": \"罗伯特·D.卡普兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513753-cc4d25?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国不平等的起源\",\n    \"author\": \"伊莎贝尔・威尔克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧盟的危机\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济情操论\",\n    \"author\": \"艾玛・罗斯柴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002307-c67bdb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（果麦经典）\",\n    \"author\": \"尼科洛・马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治哲学\",\n    \"author\": \"乔纳森・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999835-300928?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"右派国家（新版）\",\n    \"author\": \"约翰・米克尔思韦特/阿德里安・伍尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国霸权\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"誓言：白宫与最高法院\",\n    \"author\": \"杰弗里・图宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国会（牛津通识读本）\",\n    \"author\": \"唐纳德・A.里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义的未来\",\n    \"author\": \"保罗・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997324-2dab97?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的视角\",\n    \"author\": \"詹姆斯·C.斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996523-b7c691?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰斐逊总统\",\n    \"author\": \"约翰・托里・莫尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国真相\",\n    \"author\": \"約瑟夫・斯蒂格利茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨兽：工厂与现代世界的形成\",\n    \"author\": \"乔舒亚・B.弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力与反暴力\",\n    \"author\": \"谭旋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994615-7c3ab4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代中国学术思想史（套装共19卷）\",\n    \"author\": \"成一农等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会政体\",\n    \"author\": \"伍德罗・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国治理\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的当下与未来\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国政治思想史（套装共3册）\",\n    \"author\": \"刘泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港社会三部曲\",\n    \"author\": \"刘兆佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观念的力量\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学术与政治（理想国新版）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988129-ec950b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李光耀观天下\",\n    \"author\": \"李光耀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政论 昌言（全本全注全译）\",\n    \"author\": \"孙启治译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界不是平的\",\n    \"author\": \"简世勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人民共和国\",\n    \"author\": \"文扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985249-14c66e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败（牛津通识读本）\",\n    \"author\": \"莱斯利・霍姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984613-d3354c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败：人性与文化\",\n    \"author\": \"克里斯・肖尔/迪特尔・哈勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治动物\",\n    \"author\": \"里克・申克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"士大夫政治演生史稿\",\n    \"author\": \"阎步克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的决裂\",\n    \"author\": \"汤姆斯·F. 密勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国政党与选举（牛津通识读本）\",\n    \"author\": \"桑迪・梅塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群氓的狂欢\",\n    \"author\": \"塞奇・莫斯科维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何故为敌\",\n    \"author\": \"卡罗琳・艾姆克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051798-658124?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"化蝶：一个滇南小镇的政治史\",\n    \"author\": \"刘永刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051804-1856d3?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的危机\",\n    \"author\": \"斯科特・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2020：用数据看懂中国发展\",\n    \"author\": \"谢伏瞻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大外交\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖们（全译修订版）\",\n    \"author\": \"理查德・尼克松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与权力\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独霸中东\",\n    \"author\": \"雅科夫・卡茨/阿米尔・鲍博特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐秘战争\",\n    \"author\": \"阿里・拉伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩护的政治\",\n    \"author\": \"陈肖生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049620-9477eb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（拿破仑批注版）\",\n    \"author\": \"马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049287-a0aa34?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史（套装15册）\",\n    \"author\": \"哈罗德坦珀利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋大义\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的自信\",\n    \"author\": \"陈曙光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046188-7efacb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"党员、党权与党争\",\n    \"author\": \"王奇生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治学通识\",\n    \"author\": \"包刚升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油战争\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：中国周边\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马基雅维利语录\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045288-8aa412?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国精神读本\",\n    \"author\": \"王蒙/王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运攸关的抉择\",\n    \"author\": \"伊恩・克肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家安全局\",\n    \"author\": \"克劳德・德莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇宫日落（全2册）\",\n    \"author\": \"姜建强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043920-9d3751?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国在巴蜀\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的冲突\",\n    \"author\": \"道格拉斯・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自愿为奴（译文经典）\",\n    \"author\": \"艾蒂安・德・拉・波埃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝希摩斯\",\n    \"author\": \"托马斯・霍布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注定一战\",\n    \"author\": \"格雷厄姆・艾利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新马克思主义导引\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038226-094d97?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚政进行曲\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大浪潮\",\n    \"author\": \"斯蒂芬・拉德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037386-86cf50?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民粹主义大爆炸\",\n    \"author\": \"约翰・朱迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：公民到领主\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力的教训\",\n    \"author\": \"弗朗索瓦・奥朗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：自由与财产\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"50人的二十年\",\n    \"author\": \"樊纲/易纲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大趋势\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九月的十三天\",\n    \"author\": \"劳伦斯・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么不平等至关重要\",\n    \"author\": \"托马斯・斯坎伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理与世界霸权\",\n    \"author\": \"詹姆斯・费尔格里夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀戮与文化\",\n    \"author\": \"维克托・戴维斯・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不平等社会\",\n    \"author\": \"沃尔特・沙伊德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处可藏\",\n    \"author\": \"格伦・格林沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：一部历史\",\n    \"author\": \"劳伦斯・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨变：当代政治与经济的起源\",\n    \"author\": \"卡尔・波兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴政\",\n    \"author\": \"提摩希・史奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033231-d43b3e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总统班底\",\n    \"author\": \"卡尔・伯恩斯坦/鲍勃・伍德沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物农场（果麦经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032811-2781ba?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国民党高层的派系政治（修订本）\",\n    \"author\": \"金以林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力：思无所限\",\n    \"author\": \"理查德·J.伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小丑\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙特公司\",\n    \"author\": \"埃伦·R.沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首届国会\",\n    \"author\": \"弗格斯·M.博德韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿登纳回忆录（套装共4册）\",\n    \"author\": \"康拉德・阿登纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不敢懈怠\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁统治美国？公司富豪的胜利\",\n    \"author\": \"威廉・多姆霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔的正义\",\n    \"author\": \"琳达・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会理论的核心问题\",\n    \"author\": \"安东尼・吉登斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029886-fe1bf2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华夏传统政治文明书系（全四册）\",\n    \"author\": \"马平安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029841-addcd2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天降之任：学术与政治\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029682-d3a753?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（理想国新版）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞缪尔·亨廷顿经典著作集（套装4册）\",\n    \"author\": \"塞缪尔・亨廷顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029049-0daa60?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔霍恩文集（上、下）\",\n    \"author\": \"约翰·C.卡尔霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗盘与风向标\",\n    \"author\": \"雷蒙德・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028383-8bed41?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的帝国\",\n    \"author\": \"波波・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽签与民主、共和\",\n    \"author\": \"王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史学的境界\",\n    \"author\": \"高华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寡头\",\n    \"author\": \"戴维・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅（原书第2版）\",\n    \"author\": \"皮厄特拉・里佛利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叶礼庭作品集（套装共3册）\",\n    \"author\": \"叶礼庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026292-6b6467?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国秩序的根基\",\n    \"author\": \"拉塞尔・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的对面是你\",\n    \"author\": \"傅莹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024765-1f9c07?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式幸福\",\n    \"author\": \"亚瑟·C.布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"椰壳碗外的人生\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论美国的民主（套装共4册）\",\n    \"author\": \"亚力克西·德·托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024132-df8a85?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱暗流\",\n    \"author\": \"简・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"How Democracies Die\",\n    \"author\": \"Levitsky Steven\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023883-93d110?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞跃5000年\",\n    \"author\": \"克里昂・斯考森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Coddling of the American Mind\",\n    \"author\": \"Greg Lukianoff/Jonathan Haidt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022932-efa525?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放战争（套装共6册）\",\n    \"author\": \"刘统等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"峰会：影响20世纪的六场元首会谈\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无政府、国家和乌托邦\",\n    \"author\": \"罗伯特・诺齐克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022605-61758e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宪法学说（修订译本）\",\n    \"author\": \"卡尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022602-de44b4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Fifth Risk\",\n    \"author\": \"Michael Lewis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022572-e36b2f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现民众\",\n    \"author\": \"林红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021852-b5cbe5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义简史\",\n    \"author\": \"于尔根・科卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"档案：一部个人史\",\n    \"author\": \"蒂莫西・加顿艾什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Our Kids\",\n    \"author\": \"Robert D. Putnam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争、枪炮与选票\",\n    \"author\": \"保罗・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021162-f86e9b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家构建\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021159-d86f25?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别霸权!\",\n    \"author\": \"蒙・赖克/理查德・内德・勒博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020550-3cfb43?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国独行：西方世界的末日\",\n    \"author\": \"马克・斯坦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020337-7905c5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两面之词：关于革命问题的通信\",\n    \"author\": \"雷吉斯・德布雷/赵汀阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020256-b9bfc5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国之弧\",\n    \"author\": \"乔良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020010-32ddc9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困顿与突围\",\n    \"author\": \"田文林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019911-f7637f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条与罗斯福新政\",\n    \"author\": \"埃里克・劳赫威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用地图看懂世界格局\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019215-fc1753?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的兴衰\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019092-d58e9a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实改变之后\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下的当代性\",\n    \"author\": \"赵汀阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017931-313da6?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代政治得失\",\n    \"author\": \"钱穆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017871-5874f6?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国王的两个身体\",\n    \"author\": \"恩斯特・康托洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界秩序\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017367-b1f56a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与中国打交道\",\n    \"author\": \"亨利・鲍尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国雄心\",\n    \"author\": \"马丁・雅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016716-d4f605?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联邦论：美国宪法评述\",\n    \"author\": \"亚历山大・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治传统：近代自由主义之发展\",\n    \"author\": \"弗雷德里克・沃特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物庄园\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013113-3cbe8f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力与繁荣\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012258-603067?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南非的启示\",\n    \"author\": \"秦晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012105-8052a4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘大战略\",\n    \"author\": \"丁力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往大国之路：中国的知识重建和文明复兴\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011517-f964c0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的后人类未来\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（上卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（下卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普京政治\",\n    \"author\": \"李鸿谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009723-3b1f21?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝与黄金\",\n    \"author\": \"沃尔特・拉塞尔・米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国事机密档（全10册）\",\n    \"author\": \"凤凰周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009705-558073?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有宽恕就没有未来\",\n    \"author\": \"德斯蒙德・图图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序的起源\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序与政治衰败\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的终结与最后的人\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲洛梅娜\",\n    \"author\": \"马丁・西克史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009285-3f7aa9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家兴衰\",\n    \"author\": \"鲁奇尔・夏尔马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开放社会及其敌人（全二卷）\",\n    \"author\": \"卡尔・波普尔爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩论：美国制宪会议记录\",\n    \"author\": \"詹姆斯・麦迪逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗伯特议事规则\",\n    \"author\": \"袁天鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008811-e8cf3b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论中国\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧制度与大革命\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大法官说了算\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的兴衰（套装共2册）\",\n    \"author\": \"保罗・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坐天下：张宏杰解读中国帝王\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公正：该如何做是好\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008139-f61de9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天“帝国与共和”三部曲\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可思议的年代\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"C形包围：内忧外患下的中国突围\",\n    \"author\": \"戴旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007992-9f9eb2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主新论（套装2册）\",\n    \"author\": \"乔万尼・萨托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007968-d5ef21?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人民的名义\",\n    \"author\": \"周梅森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007896-f02fcd?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年河东：权力市场经济的困境\",\n    \"author\": \"杨继绳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联的最后一天\",\n    \"author\": \"康纳・奥克莱利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白宫岁月：基辛格回忆录（套装共4册）\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬球：政治是这样玩的\",\n    \"author\": \"克里斯·马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年看中国系列（共8本）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006609-d621da?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人以什么理由来记忆\",\n    \"author\": \"徐贲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006453-f30ed5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个大国的崛起与崩溃\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的应许之地\",\n    \"author\": \"阿里・沙维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独裁者手册\",\n    \"author\": \"布鲁斯・布鲁诺・德・梅斯奎塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集体行动的逻辑\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治学通识\",\n    \"author\": \"包刚升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866\",\n    \"category\": \"入门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给投资新手的极简股票课\",\n    \"author\": \"lip师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866\",\n    \"category\": \"入门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学要义\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044937-083bb7?p=8866\",\n    \"category\": \"入门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"团队赋能\",\n    \"author\": \"迈克・布伦特/菲奥娜・爱尔莎・丹特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：如何打造高联动团队\",\n    \"author\": \"马克・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义系列（共四册）\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义团队\",\n    \"author\": \"拉斯洛・博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我这就跟你走\",\n    \"author\": \"科里・鲍克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024180-eaf889?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动的人生整理魔法2\",\n    \"author\": \"近藤麻理惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866\",\n    \"category\": \"收纳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲人与权臣\",\n    \"author\": \"詹姆斯・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491652-6fd685?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国与蛮族\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史纲\",\n    \"author\": \"李筠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498807-cf24d9?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国统治的逻辑\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马文学史（全3册）\",\n    \"author\": \"江澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506940-b655c7?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人们的故事（套装3册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512532-808aae?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵帝国拜占庭\",\n    \"author\": \"理查德・菲德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝：一座罗马城市的生与死\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001596-3c92ea?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马三巨头\",\n    \"author\": \"查尔斯・梅里维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995458-5d95b6?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌徒恺撒\",\n    \"author\": \"马丁・耶内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津古罗马史\",\n    \"author\": \"约翰・博德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马技术史（贝克知识丛书）\",\n    \"author\": \"赫尔穆特・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典时代的终结（贝克知识丛书）\",\n    \"author\": \"哈特温・布兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的复辟\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国兴亡史三部曲\",\n    \"author\": \"罗伯特・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047541-286b5b?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的命运\",\n    \"author\": \"凯尔・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040251-bcd0df?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的崛起\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039726-2352c5?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迦太基必须毁灭\",\n    \"author\": \"理查德・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033276-eb158a?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高卢战记\",\n    \"author\": \"盖乌斯・尤利乌斯・恺撒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030762-72487f?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的梦魇\",\n    \"author\": \"刘衍钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029178-61ff6d?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马共和国的衰落\",\n    \"author\": \"A.H.比斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027213-bd8c70?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全译罗马帝国衰亡史（全12册）\",\n    \"author\": \"爱德华・吉本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022686-8c5d14?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥古斯都\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019974-84c627?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马：一座城市的兴衰史\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019185-aa4682?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代的希腊和罗马\",\n    \"author\": \"吴于廑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017154-8d701b?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马爱经（企鹅经典）\",\n    \"author\": \"奥维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的陨落\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010386-84b362?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马人的故事（套装共15册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史\",\n    \"author\": \"特奥多尔・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马灭亡后的地中海世界（上下册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本最危险的书\",\n    \"author\": \"克里斯托夫·克里布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规划最好的一年\",\n    \"author\": \"迈克尔・海亚特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512514-02047a?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新城市科学\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995401-9787ba?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职业通道\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是我要的工作\",\n    \"author\": \"克里斯・吉耶博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习：10个你必须掌握的未来生存法则\",\n    \"author\": \"丹・苏利文/凯瑟琳・野村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转行：发现一个未知的自己\",\n    \"author\": \"埃米尼亚・伊瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30年后，你拿什么养活自己？\",\n    \"author\": \"高得诚/郑成镇/崔秉熙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017421-191d50?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：如何规划职业生涯3大阶段\",\n    \"author\": \"布赖恩・费瑟斯通豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生命有什么可能\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化：顶级企业家自述40年成长心法\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866\",\n    \"category\": \"企业家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健传\",\n    \"author\": \"周桦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866\",\n    \"category\": \"企业家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript函数式编程\",\n    \"author\": \"Michael Fogus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS重构：样式表性能调优\",\n    \"author\": \"Steve Lindstrom\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017682-29904e?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锋利的jQuery（第2版）\",\n    \"author\": \"单东林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016728-3282f4?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通CSS（第2版）\",\n    \"author\": \"Andy Budd/Cameron Moll\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript权威指南（第6版）\",\n    \"author\": \"David Flanagan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骂观众\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039432-b8a3ae?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缓慢的归乡\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038769-f672c1?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左撇子女人\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038766-406e59?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔特手记（译文经典）\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038694-91674f?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以上帝和恺撒之名\",\n    \"author\": \"理查德・巴塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个女人一生中的二十四小时（企鹅经典）\",\n    \"author\": \"斯台芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033507-fe6b8e?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形同陌路的时刻\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013440-fec756?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捍卫隐私\",\n    \"author\": \"凯文・米特尼克/罗伯特・瓦摩西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866\",\n    \"category\": \"隐私\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"并购估值：构建和衡量非上市公司价值（原书第3版）\",\n    \"author\": \"克里斯・梅林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000339-2527cd?p=8866\",\n    \"category\": \"并购\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她来自马里乌波尔\",\n    \"author\": \"娜塔莎・沃丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹猎人\",\n    \"author\": \"安德鲁・纳戈尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499107-ffa76f?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被隔绝的女孩\",\n    \"author\": \"巴尔特・范埃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501051-01d0ce?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本1941：导向深渊的决策\",\n    \"author\": \"堀田江理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502557-d83fcc?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反败为胜\",\n    \"author\": \"威廉・斯利姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510168-994493?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战东线全史（套装全13卷）\",\n    \"author\": \"朱世巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513234-e38f4b?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰猎犬号\",\n    \"author\": \"C.S.佛瑞斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003174-b32007?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大洋\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服的怒潮\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000099-60af65?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国史\",\n    \"author\": \"郑寅达/陈旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998593-2b2916?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盟友\",\n    \"author\": \"琳恩・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战：黑暗的年代\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995848-9bb1c2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯维辛的文身师\",\n    \"author\": \"希瑟・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991558-daf390?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（增订版）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当权的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的到来\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战解放三部曲系列（套装共6册）\",\n    \"author\": \"里克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986572-e0e277?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身大师\",\n    \"author\": \"萨拉・卡明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空军飞行员（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失去名字的女孩\",\n    \"author\": \"玛莎・霍尔・凯莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984901-789579?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善心女神\",\n    \"author\": \"乔纳森・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984781-170459?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重逢\",\n    \"author\": \"弗雷德・乌尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进攻日本\",\n    \"author\": \"雷蒙德・戴维斯/丹・温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051780-7e58b0?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争时期日本精神史\",\n    \"author\": \"鹤见俊辅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049854-91db68?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂之死\",\n    \"author\": \"汉妮・明策尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与记忆中的第三帝国\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自纳粹地狱的报告\",\n    \"author\": \"米克洛斯・尼斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运攸关的抉择\",\n    \"author\": \"伊恩・克肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人为何选择了战争\",\n    \"author\": \"加藤阳子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043608-500337?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中途岛奇迹\",\n    \"author\": \"戈登・普兰奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲（珍藏版）\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开往伊斯坦布尔的最后列车\",\n    \"author\": \"艾雪・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043023-4cbbe6?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被涂污的鸟\",\n    \"author\": \"耶日・科辛斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041022-bb6b72?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轰炸东京\",\n    \"author\": \"詹姆斯·M.斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039969-7b615d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隆美尔战时文件\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪击英雄\",\n    \"author\": \"海因茨・威廉・古德里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史迪威与美国在中国的经验（1911-1945）\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1944阿登战役\",\n    \"author\": \"安东尼・比弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第4卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎烧了吗？\",\n    \"author\": \"拉莱・科林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第1卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第2卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第3卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮大陆\",\n    \"author\": \"基思・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生幸存者\",\n    \"author\": \"温迪・霍尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033942-f423d9?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的试毒者\",\n    \"author\": \"罗塞拉・波斯托里诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战爆发前十天\",\n    \"author\": \"理查德・奥弗里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战在亚洲及太平洋的起源\",\n    \"author\": \"入江昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032592-58ba06?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞行战犬\",\n    \"author\": \"达米恩・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031125-c70223?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力与文化\",\n    \"author\": \"入江昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031056-457560?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里斯本之夜\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030501-6ecfa7?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战风云：史上最大规模战争的伤痛（全3册）\",\n    \"author\": \"杨少丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争系列\",\n    \"author\": \"青梅煮酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情之战\",\n    \"author\": \"约翰·W.道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029877-ef77af?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎拉的钥匙\",\n    \"author\": \"塔季雅娜・德・罗斯奈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029079-199577?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兄弟连（译林纪念版）\",\n    \"author\": \"斯蒂芬•E．安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当图书进入战争\",\n    \"author\": \"莫里・古皮提尔・曼宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猩红色的天空下\",\n    \"author\": \"马克・苏利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026145-807343?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战中的巴黎\",\n    \"author\": \"提拉・马奇奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025701-0b1776?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国\",\n    \"author\": \"克劳斯・P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹医生\",\n    \"author\": \"罗伯特・杰伊・利夫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025107-90ecdb?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简二战史\",\n    \"author\": \"奈杰尔・考索恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023217-136ca3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅尔塔：改变世界格局的八天\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022569-a065df?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人\",\n    \"author\": \"杨·T.格罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022545-465fc9?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里的黎明静悄悄……\",\n    \"author\": \"鲍・瓦西里耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人的战争\",\n    \"author\": \"尼古拉斯・斯塔加特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教宗与墨索里尼\",\n    \"author\": \"大卫·I.科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赎罪\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021276-1a6b77?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五个人的战争\",\n    \"author\": \"马克・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020868-e951f3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科战役1941\",\n    \"author\": \"尼克拉斯・泽特林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019668-09e230?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审问欧洲：二战时期的合作、抵抗与报复\",\n    \"author\": \"伊斯特万・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着回来的男人\",\n    \"author\": \"小熊英二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018474-680890?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Book Thief\",\n    \"author\": \"Markus Zusak\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017181-5f6d27?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾希曼在耶路撒冷\",\n    \"author\": \"汉娜・阿伦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015621-ee315c?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩瀚大洋是赌场（全3册）\",\n    \"author\": \"俞天任\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015387-cec59e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战纵横录（套装二十四册）\",\n    \"author\": \"胡元斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015495-8bfeee?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深入北方的小路\",\n    \"author\": \"理查德・弗兰纳根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013632-920634?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后日本史\",\n    \"author\": \"王新生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013008-9417f2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而有罪\",\n    \"author\": \"彼得・西施罗夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012927-e5aba8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山顶上的男孩\",\n    \"author\": \"约翰・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012744-79efb3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中营的舞者\",\n    \"author\": \"保罗・格拉泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012684-e07dca?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查无此人\",\n    \"author\": \"凯瑟琳・克莱斯曼・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012564-30c377?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被淹没和被拯救的\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012249-55fbc8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远去的胜利\",\n    \"author\": \"威廉・理查德森/西摩・弗雷德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿条纹衣服的男孩\",\n    \"author\": \"约翰・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011964-f9985f?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"All the Light We Cannot See\",\n    \"author\": \"Anthony Doerr\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011754-cffc1b?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵蒂冈的乱世抉择（1922-1945）\",\n    \"author\": \"段琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010149-afb62f?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻关注：二战经典战役纪实（套装共10册）\",\n    \"author\": \"二战经典战役编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是女兵，也是女人\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的最后十四天\",\n    \"author\": \"约阿希姆·・费斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009762-976759?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯维辛\",\n    \"author\": \"劳伦斯・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009495-02ded5?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零年：1945\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的岛群\",\n    \"author\": \"宋宜昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009099-e8b13b?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南京大屠杀\",\n    \"author\": \"张纯如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008697-eb4356?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（全三册）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风暴岛\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007962-abffe2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：跃升年代\",\n    \"author\": \"福尔克尔・乌尔里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呐喊-大屠杀回忆录\",\n    \"author\": \"曼尼・斯坦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞虎队在桂林\",\n    \"author\": \"赵平/韦芳/蒋桂英/苏晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007470-7a5427?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战太平洋（HBO官方完整版）\",\n    \"author\": \"休·安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪孽的报应\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驼峰航线\",\n    \"author\": \"刘小童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战秘密档案\",\n    \"author\": \"鲍里斯・瓦季莫维奇・索科洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有一类战犯叫参谋\",\n    \"author\": \"俞天任\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006147-fac58d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的二战史（上下卷）\",\n    \"author\": \"肖石忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006273-4b1128?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔的饱食：日本731细菌战部队揭秘\",\n    \"author\": \"森村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱绝杀：当关东军遇上苏联红军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005877-d8ae7b?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山的那一边\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战回忆录（全六卷）\",\n    \"author\": \"温斯顿·丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一寸河山一寸血（套装全五册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争就是这么回事儿（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可退的战士\",\n    \"author\": \"杰克·希金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004932-962a95?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国式英雄\",\n    \"author\": \"杰克·希金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004926-351dc3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国之翼\",\n    \"author\": \"格雷戈里・克劳奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004914-6aa3a6?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争从未如此热血：二战美日太平洋大对决（全四册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秒赞：文案女王20年创作技巧与心法\",\n    \"author\": \"林桂枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案写作指南\",\n    \"author\": \"李洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案的基本修养\",\n    \"author\": \"东东枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案会说话\",\n    \"author\": \"梅田悟司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能学会的刷屏文案写作技巧\",\n    \"author\": \"吕白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案基本功\",\n    \"author\": \"苏芯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微文案\",\n    \"author\": \"朱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告文案\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案变现\",\n    \"author\": \"叶小鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10W+走心文案是怎样炼成的\",\n    \"author\": \"卢建彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029916-76a0fe?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体文案创作与传播\",\n    \"author\": \"秋叶/叶小鱼/勾俊伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案一句话就够了\",\n    \"author\": \"川上徹也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案创作完全手册\",\n    \"author\": \"罗伯特・布莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的16个关键词\",\n    \"author\": \"叶茂中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案\",\n    \"author\": \"关健明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017604-0d7b9e?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖叫感\",\n    \"author\": \"马楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案圣经\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么长这样\",\n    \"author\": \"爱丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达尔文的战争\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇葩进化论（套装共7册）\",\n    \"author\": \"玛拉·J. 哈尔特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513783-2e2ad9?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的故事\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进化的跃升\",\n    \"author\": \"尼克・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与达尔文共进晚餐\",\n    \"author\": \"乔纳森・西尔弗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类成功统治地球的秘密\",\n    \"author\": \"约瑟夫・亨里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类起源的故事\",\n    \"author\": \"大卫・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的算法\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯化\",\n    \"author\": \"艾丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼安德特人\",\n    \"author\": \"斯万特・帕博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美的进化\",\n    \"author\": \"理查德·O.普鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲眼钟表匠\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未完成的进化\",\n    \"author\": \"凯文・拉兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五次开始\",\n    \"author\": \"罗伯特・L .凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何活出生命的意义\",\n    \"author\": \"杰西・贝林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019359-395102?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们人类的进化\",\n    \"author\": \"亚历山大・哈考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球上最伟大的表演\",\n    \"author\": \"理查德・毛姆道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智探奇\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神似祖先\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏惧：颠覆你内心的脆弱\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510027-601beb?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当爱变成了情感操纵\",\n    \"author\": \"佐治·K.西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995245-aa31a6?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见了，伊藤君\",\n    \"author\": \"柚木麻子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991435-181d4c?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名区+1\",\n    \"author\": \"匿名用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986368-d69b14?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯德哥尔摩情人\",\n    \"author\": \"陆俊文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985576-dc8c8a?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巧合制造师\",\n    \"author\": \"约夫・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984553-fa83dc?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何爱会伤人（珍藏版）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我离开你\",\n    \"author\": \"艾米莉・布勒克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049989-793bfd?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赶路人\",\n    \"author\": \"李小晓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048240-d3013a?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二次吸引\",\n    \"author\": \"“小鹿情感”专家组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的我\",\n    \"author\": \"尼古拉斯・斯帕克思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032226-eda2d2?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感勒索\",\n    \"author\": \"苏珊・福沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021204-0a1bfc?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偶遇\",\n    \"author\": \"陈鲁豫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017523-714fb8?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱到绝处便逢生\",\n    \"author\": \"卢悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013566-43e5ee?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱，不释手\",\n    \"author\": \"琳・斯蒂格・斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010044-9bddf2?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莉莉和章鱼\",\n    \"author\": \"史蒂文・罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009783-3b87ff?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人来自火星，女人来自金星（套装共4册）\",\n    \"author\": \"约翰・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外婆的道歉信\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008808-17d5d1?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别天堂\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008511-0969ee?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芙蓉如面柳如眉\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008502-5170e3?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先谋生，再谋爱\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权、期货及其他衍生产品（原书第9版）\",\n    \"author\": \"约翰・赫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866\",\n    \"category\": \"期权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权：就这么简单\",\n    \"author\": \"韩冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866\",\n    \"category\": \"期权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"期权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克米伦谈期权\",\n    \"author\": \"劳伦斯G.麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866\",\n    \"category\": \"期权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马来群岛自然考察记Ⅰ\",\n    \"author\": \"阿尔弗雷德・R.华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046353-0dfadd?p=8866\",\n    \"category\": \"马来西亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马来群岛自然考察记Ⅱ\",\n    \"author\": \"阿尔弗雷德・R.华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046371-066493?p=8866\",\n    \"category\": \"马来西亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂碳中和\",\n    \"author\": \"中国长期低碳发展战略与转型路径研究课题组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498108-447de0?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂碳中和\",\n    \"author\": \"安永碳中和课题组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507366-f36283?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候经济与人类未来\",\n    \"author\": \"比尔・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟囱与进步人士\",\n    \"author\": \"大卫・斯特拉德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512436-c178c9?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的春天（四师推荐精装版）\",\n    \"author\": \"蕾切尔・卡森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032802-2197eb?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的明天\",\n    \"author\": \"席里尔・迪翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废物星球：从中国到世界的天价垃圾之旅\",\n    \"author\": \"亚当・明特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014730-c288c9?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小彩虹（第一辑）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866\",\n    \"category\": \"企鹅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅与其他海鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866\",\n    \"category\": \"企鹅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第一辑）\",\n    \"author\": \"薄伽丘等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866\",\n    \"category\": \"企鹅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第六辑）\",\n    \"author\": \"乔治・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866\",\n    \"category\": \"企鹅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的秘密\",\n    \"author\": \"耶尔・阿德勒/卡佳・施皮策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003708-5ef7a9?p=8866\",\n    \"category\": \"人体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866\",\n    \"category\": \"人体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级潜能\",\n    \"author\": \"亚当・皮奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866\",\n    \"category\": \"人体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的情绪生活\",\n    \"author\": \"理查德・戴维森/莎朗・伯格利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的故事\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033396-0dc284?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑与意识\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大脑自由\",\n    \"author\": \"约翰・梅迪纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015795-94cb6e?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑的阅读：破解人类阅读之谜\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑开发指南（全3册）\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008388-ce451a?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息技术简史\",\n    \"author\": \"吕廷杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043158-2c151c?p=8866\",\n    \"category\": \"信息\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息背后的信息\",\n    \"author\": \"马克斯・巴泽曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028227-08a419?p=8866\",\n    \"category\": \"信息\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息简史\",\n    \"author\": \"詹姆斯·格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866\",\n    \"category\": \"信息\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生少年生存小说系列（全6册）\",\n    \"author\": \"贝尔·格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866\",\n    \"category\": \"求生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元真相\",\n    \"author\": \"达尔辛妮・大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866\",\n    \"category\": \"美元\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元病\",\n    \"author\": \"叶冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998812-5c6954?p=8866\",\n    \"category\": \"美元\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866\",\n    \"category\": \"美元\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港社会三部曲\",\n    \"author\": \"刘兆佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港味道1\",\n    \"author\": \"欧阳应霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985993-0ff83e?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港味道2\",\n    \"author\": \"欧阳应霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986050-b290ba?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上几个人渣\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙头凤尾\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010032-914b4e?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港电影史记\",\n    \"author\": \"魏君子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006993-4a082b?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"豪门兴衰：百年香港商业\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经（第2版）\",\n    \"author\": \"赫尔伯特・史迪凡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493785-dc64ee?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懒惰脑科学\",\n    \"author\": \"鲍里斯・薛瓦勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骨骼跑步法\",\n    \"author\": \"铃木清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学跑步\",\n    \"author\": \"罗炜樑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姿势跑法\",\n    \"author\": \"尼古拉斯・罗曼诺夫/约翰・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜值和身材一个都不能少（套装共10册）\",\n    \"author\": \"森拓郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983329-e2252e?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无伤跑法\",\n    \"author\": \"戴剑松/郑家轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电增肌\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"久坐不伤身\",\n    \"author\": \"哈丽特・格里菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会呼吸\",\n    \"author\": \"帕特里克・麦基翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网：阿加西自传\",\n    \"author\": \"安德烈・阿加西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025626-a758c0?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当体育遇上商业\",\n    \"author\": \"乌尔里克・瓦格纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025614-d87bae?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郝鹏飞极简派健身\",\n    \"author\": \"郝鹏飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024366-198ca6?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，健身房\",\n    \"author\": \"高宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太极跑：不费力、无伤害的革命性跑步法\",\n    \"author\": \"丹尼・德雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练套装\",\n    \"author\": \"马克・瑞比拖/安迪・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你可以跑得更快\",\n    \"author\": \"徐国峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸运动系统训练（全彩图解第2版）\",\n    \"author\": \"阿诺德·G.尼尔森/尤卡・科科宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"施瓦辛格健身全书\",\n    \"author\": \"阿诺德・施瓦辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021087-b4c0c0?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准拉伸\",\n    \"author\": \"克里斯蒂安・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020916-4b8c4a?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能减脂\",\n    \"author\": \"张景琦/孟令超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹尼尔斯经典跑步训练法\",\n    \"author\": \"杰克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤身绝壁\",\n    \"author\": \"亚历克斯・汉诺尔德/大卫・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011652-90caa3?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉松终极训练指南（原书第4版）\",\n    \"author\": \"霍尔・希格登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的一代：中国的上山下乡运动1968-1980\",\n    \"author\": \"潘鸣啸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经：我跑故我在\",\n    \"author\": \"乔治・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维（原书第10版）\",\n    \"author\": \"布鲁克·诺埃尔·摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866\",\n    \"category\": \"批判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维工具（原书第3版）\",\n    \"author\": \"理查德·保罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006525-573ffd?p=8866\",\n    \"category\": \"批判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林童话全集（套装共3册）\",\n    \"author\": \"格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006672-9efda3?p=8866\",\n    \"category\": \"英语读物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪晶的重量\",\n    \"author\": \"索瓦尔德・斯蒂恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513150-bd79a9?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗5：雨必将落下\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513363-ea608c?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗4：在黑暗中舞蹈\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513585-9dcc19?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蟑螂\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外出偷马\",\n    \"author\": \"佩尔・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗3：童年岛屿\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040794-82ba8e?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静\",\n    \"author\": \"艾林・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗2：恋爱中的男人\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038484-c5673e?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复仇者\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦渴\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五芒星\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032607-6ae82c?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪人\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金：权力与财富的世界简史\",\n    \"author\": \"伯德・史蒂芬・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491481-144bc0?p=8866\",\n    \"category\": \"黄金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色的羁绊\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866\",\n    \"category\": \"黄金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：如何打造高联动团队\",\n    \"author\": \"马克・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866\",\n    \"category\": \"协同\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"修道院纪事\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032682-f9c457?p=8866\",\n    \"category\": \"葡萄牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服者：葡萄牙帝国崛起\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018390-117462?p=8866\",\n    \"category\": \"葡萄牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书（第2版）\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866\",\n    \"category\": \"债券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债券投资实战\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866\",\n    \"category\": \"债券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙刑\",\n    \"author\": \"莫琳・派森・吉莉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051519-fb7329?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格拉斯医生（译文经典）\",\n    \"author\": \"雅尔玛尔・瑟德尔贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042873-c12a32?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥瑟罗（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔灯（全译本）\",\n    \"author\": \"英格玛・伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊镇2\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033165-9e1f41?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色地址簿\",\n    \"author\": \"苏菲亚・伦德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032307-65c5a3?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔斯骑鹅历险记（作家榜经典文库）\",\n    \"author\": \"塞尔玛・拉格洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不太多，不太少\",\n    \"author\": \"罗拉・A.阿克斯特伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021063-bc15d6?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作的意义\",\n    \"author\": \"詹姆斯・苏兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497598-753d90?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个工作基本\",\n    \"author\": \"松浦弥太郎/野尻哲也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512118-2798e5?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效清单工作法\",\n    \"author\": \"达蒙・扎哈里亚德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卓越工作\",\n    \"author\": \"莫滕·T·汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思考\",\n    \"author\": \"迈克・费廖洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法\",\n    \"author\": \"弗朗西斯科・西里洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突管理\",\n    \"author\": \"大卫・里德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡图表工作法\",\n    \"author\": \"齐藤显一/竹内里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米巴经营\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034248-76ecaf?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法：职场问题解决篇\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12个工作的基本\",\n    \"author\": \"大久保幸夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使命必达：百分之百实现目标的行为科学管理法\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何管好自己（第五版）\",\n    \"author\": \"约翰・康特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒工作\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效整理信息\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰田一页纸极简思考法\",\n    \"author\": \"浅田卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020367-535edd?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘书工作手记\",\n    \"author\": \"像玉的石头\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017100-e77e05?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作颂歌\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016866-d1189f?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作是最好的修行\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR工作法\",\n    \"author\": \"克里斯蒂娜・沃特克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简工作Ⅰ\",\n    \"author\": \"约根・库尔兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015267-2b86bb?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请给我结果\",\n    \"author\": \"姜汝祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015060-25a31d?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度工作\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012528-0a8a94?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作DNA\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的实践（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007080-44a05a?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法图解\",\n    \"author\": \"诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇传：自由的心灵\",\n    \"author\": \"查尔斯・尼科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491400-800bfb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯大林传\",\n    \"author\": \"德米特里・安东诺维奇・沃尔科戈诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491829-e707fa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基传\",\n    \"author\": \"安德里亚斯・古斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498042-d0a3d3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国浮沉：关于拿破仑一世的私人回忆（全2册）\",\n    \"author\": \"克劳德・梅尼瓦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498120-b235b7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文：近代日本奠基人\",\n    \"author\": \"伊藤之雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498831-0dc067?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志理想主义的诞生：席勒传\",\n    \"author\": \"吕迪格尔・萨弗兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499365-050061?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛顿传\",\n    \"author\": \"詹姆斯・格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499524-4bd6cf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绯闻艺术史\",\n    \"author\": \"林微云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499971-4d8b4d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·拉格斐传\",\n    \"author\": \"洛朗・阿朗-卡龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500028-a96942?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文传记作品系列（套装共15册）\",\n    \"author\": \"斯特凡・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500337-e1be2a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利瓦尔\",\n    \"author\": \"玛丽・阿拉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500586-2ba984?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯传\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术的故事（共12册）\",\n    \"author\": \"林家治等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503403-e9d087?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄德罗与自由思考的艺术\",\n    \"author\": \"安德鲁·S.柯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506505-4ae859?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年井上靖\",\n    \"author\": \"宫崎润一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507408-d785fd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方学者眼中的东方伟人（套装共三册）\",\n    \"author\": \"迪克・威尔逊/迪克・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508434-a870e5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩田先生\",\n    \"author\": \"HOBO日刊ITOI新闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509361-e4316e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克斯·韦伯：跨越时代的人生\",\n    \"author\": \"于尔根・考伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509481-7f34ec?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传奇之家：托马斯·曼一家的故事\",\n    \"author\": \"蒂尔曼・拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509748-852c52?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雨琳琅\",\n    \"author\": \"陈新华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509841-8c539e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书合集（套装共8册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510048-990016?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索恩人物传记生而为王（全13册）\",\n    \"author\": \"汉内斯・默林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘与荣耀\",\n    \"author\": \"马寅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510381-a861bf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传：现代的发明者\",\n    \"author\": \"理查德・芒森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510540-98d20d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马名人传（全五册）\",\n    \"author\": \"普鲁塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不畏：陆克文自传\",\n    \"author\": \"陆克文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510705-549377?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文\",\n    \"author\": \"泷井一博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛顿传（修订版）\",\n    \"author\": \"迈克尔・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511131-b2fcc1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勒布朗·詹姆斯的商业帝国\",\n    \"author\": \"布赖恩・文霍斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511371-8604c1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦室：大卫·林奇传\",\n    \"author\": \"大卫・林奇/克里斯汀・麦肯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511773-8b51cb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列二共13册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511929-1ff7f2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从头开始\",\n    \"author\": \"霍华德・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512121-a7c05d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴高乐将军（全二册）\",\n    \"author\": \"朱利安・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513408-b5f76e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇：500年纪念版\",\n    \"author\": \"马汀・坎普/法比奥・斯卡莱蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513528-1ecffb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺回忆录\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513501-daa881?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过得刚好\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513618-32fba3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找卡夫卡\",\n    \"author\": \"拉德克・马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513639-141090?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿诺德·汤因比传\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003873-4b5f8b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码女王\",\n    \"author\": \"贾森・法戈内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理查德·费曼传\",\n    \"author\": \"劳伦斯・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001806-54b61b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁豫有约：说出你的故事（共5册）\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为我自己：欧文·亚隆回忆录\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001128-9e4690?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有点意思\",\n    \"author\": \"黄渤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000483-0f32e7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕竟战功谁第一（修订典藏本）\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999745-d06b6f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知晓我姓名\",\n    \"author\": \"香奈儿・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普京：权力的逻辑\",\n    \"author\": \"胡贝特・塞佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997114-7f3bf3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一往无前\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国第一夫人回忆录\",\n    \"author\": \"塔夫脱总统夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰斐逊总统\",\n    \"author\": \"约翰・托里・莫尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎评论（套装共7册）\",\n    \"author\": \"《巴黎评论》编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995236-9e2014?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大梦无疆\",\n    \"author\": \"西蒙・佩雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国外风云人物传记精选集（全10册）\",\n    \"author\": \"太田治子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995083-774357?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡新传\",\n    \"author\": \"李一冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994948-24d8ca?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生由我\",\n    \"author\": \"梅耶・马斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基：作家与他的时代\",\n    \"author\": \"玛丽・彼得鲁塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994630-9c340a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安身立命\",\n    \"author\": \"许纪霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲鸿生命\",\n    \"author\": \"范迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994642-86e3db?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"启与魅\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994519-34f572?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前半生（全本）\",\n    \"author\": \"爱新觉罗・溥仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的旅程\",\n    \"author\": \"罗伯特・艾格/乔尔・洛弗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌徒恺撒\",\n    \"author\": \"马丁・耶内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏执乐观\",\n    \"author\": \"李思拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰传\",\n    \"author\": \"安德烈・莫洛亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的情报与外交生涯\",\n    \"author\": \"熊向晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅特涅：帝国与世界（全2册）\",\n    \"author\": \"沃尔弗拉姆・希曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空无界\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟往来书信集\",\n    \"author\": \"梁培宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙正义传\",\n    \"author\": \"杉本贵司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989806-2063fb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌的故事\",\n    \"author\": \"戴维・怀斯/马克・摩西德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装的艺术\",\n    \"author\": \"本・雅格达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏珊·桑塔格全传\",\n    \"author\": \"卡尔・罗利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986275-a21ab1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身大师\",\n    \"author\": \"萨拉・卡明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后叹息\",\n    \"author\": \"路易斯・布努艾尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子的故事（全彩美绘本）\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985696-3603c8?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子的故事\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985597-1b96e0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搜历史\",\n    \"author\": \"易小荷/曲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985588-42c02a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方画家及其作品套装（全4册）\",\n    \"author\": \"王月亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是落花生的女儿\",\n    \"author\": \"许燕吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984751-7442f4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫本武藏全传（套装共5册）\",\n    \"author\": \"吉川英治/小山胜清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983713-9b788f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忏悔录（上下册）\",\n    \"author\": \"卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏世民：我的经验与教训\",\n    \"author\": \"苏世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美孚石油公司史\",\n    \"author\": \"艾达・塔贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平如美棠：我俩的故事\",\n    \"author\": \"饶平如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西太后：薇薇安·威斯特伍德\",\n    \"author\": \"薇薇安・威斯特伍德/伊恩・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054321-5d3b9d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑大帝（全2册）\",\n    \"author\": \"安德鲁・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元好问传\",\n    \"author\": \"朱东润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053739-812d98?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡：十年二十人\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱锺书交游考\",\n    \"author\": \"谢泳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053523-510bb0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物：我和父亲乔布斯\",\n    \"author\": \"丽莎・布伦南・乔布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威大战DC\",\n    \"author\": \"里德・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至暗时刻\",\n    \"author\": \"安东尼・麦卡滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052338-7e11b2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也是鲁迅的遗物：朱安传\",\n    \"author\": \"乔丽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·马克思：生平与环境\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林语堂传\",\n    \"author\": \"钱锁桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051534-d8c6fd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米塞斯评传\",\n    \"author\": \"伊斯雷尔·M·柯兹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋大传\",\n    \"author\": \"陈梧桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝多芬传：扼住命运咽喉的英雄\",\n    \"author\": \"费利克斯・胡赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051042-dc8d6b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芭比：一个娃娃风靡世界的秘密\",\n    \"author\": \"罗宾・格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见莫扎特\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050742-52e166?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖们（全译修订版）\",\n    \"author\": \"理查德・尼克松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟南山传\",\n    \"author\": \"叶依\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049332-254452?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚女王：帝国女统治者的秘密传记（全2册）\",\n    \"author\": \"茱莉娅・贝尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我心归处是敦煌\",\n    \"author\": \"樊锦诗口述/顾春芳撰写\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实科比\",\n    \"author\": \"罗兰・拉赞比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048894-1929bd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾志所向\",\n    \"author\": \"孙中山/许仕廉编著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金家族的最后一个王爷\",\n    \"author\": \"朱文楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创始人手记\",\n    \"author\": \"季琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界皆营销\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫的人生哲学\",\n    \"author\": \"北康利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"居里夫人自传（果麦经典）\",\n    \"author\": \"玛丽・居里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046320-31d73f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永久记录\",\n    \"author\": \"爱德华・斯诺登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046221-17fc18?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"整个巴黎属于我\",\n    \"author\": \"莱斯利·M.M.布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事的开始\",\n    \"author\": \"幾米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毫无保留\",\n    \"author\": \"小比尔・马里奥特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045708-dae6d9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同的生命线\",\n    \"author\": \"约翰・苏尔斯顿/乔治娜・费里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜尚传（第二版）\",\n    \"author\": \"王瑞芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044862-f93665?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国人物传记（全4册）\",\n    \"author\": \"罗志田/娄岙菲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044847-db4f81?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一道曙光下的真实\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银元时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦传（全2册）\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪五大传记书系（全5册）\",\n    \"author\": \"吴晗/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044160-869a78?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马其顿的亚历山大\",\n    \"author\": \"彼得・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林斯潘传\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代的她们\",\n    \"author\": \"杰奎琳・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李白传\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞纳河畔的一把椅子\",\n    \"author\": \"阿明・马洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格调崔永元\",\n    \"author\": \"白安娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042573-8c69e3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生自传\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042621-63bfda?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大脑\",\n    \"author\": \"苏珊娜・卡哈兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042210-b00ec5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝托尔特·布莱希特\",\n    \"author\": \"雅恩・克诺普夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040365-b4e7a4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的一生略小于美国现代史\",\n    \"author\": \"凯瑟琳・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039954-7c2c91?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索罗斯传（白金珍藏版）\",\n    \"author\": \"罗伯特・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆里尼奥传：葡萄牙制造（修订版）\",\n    \"author\": \"路易斯・洛伦索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗2：恋爱中的男人\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038484-c5673e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗1：父亲的葬礼\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037839-6b7aa9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Benjamin Franklin\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036897-1a5d9e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Believe Me\",\n    \"author\": \"Eddie Izzard\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037281-40eeb7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力的教训\",\n    \"author\": \"弗朗索瓦・奥朗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"T.S.艾略特传\",\n    \"author\": \"林德尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Facebook诞生记\",\n    \"author\": \"本・麦兹里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035721-c40b04?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪传\",\n    \"author\": \"赫伯特・R.洛特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正大传\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035448-d271fe?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师书系（全6册）\",\n    \"author\": \"梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是风口\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未了中国缘\",\n    \"author\": \"约翰・帕顿・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034959-e448e1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾《传记文学》珍藏系列（全15册）\",\n    \"author\": \"梁实秋/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Becoming\",\n    \"author\": \"Michelle Obama\",\n    \"link\": \"链接未找到\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第1卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔灯（全译本）\",\n    \"author\": \"英格玛・伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦勃朗1642\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧太后\",\n    \"author\": \"菲利普・威廉姆斯・萨金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人自编集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的访谈系列（套装共6册）\",\n    \"author\": \"欧内斯特・米勒尔・海明威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大儒：王阳明\",\n    \"author\": \"周明河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国才子（套装3本）\",\n    \"author\": \"李克/沈燕/李平/孙琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033495-4c7802?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找寻真实的蒋介石（套装共2册）\",\n    \"author\": \"杨天石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033129-0da7f4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猛兽总是独行：鲁迅与他的朋友圈\",\n    \"author\": \"孙玉祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033105-83d7cd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常年代\",\n    \"author\": \"多莉丝・基恩斯・古德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列一共8册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化：顶级企业家自述40年成长心法\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋经国传\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安南回忆录\",\n    \"author\": \"科菲・安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032844-1da8c4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆拿破仑\",\n    \"author\": \"布里昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恺撒：巨人的一生\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间鲁迅\",\n    \"author\": \"林贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒切尔夫人\",\n    \"author\": \"乔纳森・艾特肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032679-f97385?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥古斯都：从革命者到皇帝\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊莎贝拉\",\n    \"author\": \"克斯汀・唐尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯的劳伦斯\",\n    \"author\": \"斯科特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年变革者\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊丽莎白女王\",\n    \"author\": \"艾莉森・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒂姆·库克传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德皇威廉二世回忆录\",\n    \"author\": \"威廉二世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一帝秦始皇（上下全2册）\",\n    \"author\": \"王立群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐悲鸿\",\n    \"author\": \"杨先让\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031851-179b0e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国清流系列（全七册）\",\n    \"author\": \"汪兆骞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031422-474dd4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往权力之路：叶卡捷琳娜大帝\",\n    \"author\": \"罗伯特·K·迈锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来后书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱彼迎传\",\n    \"author\": \"利・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邬达克\",\n    \"author\": \"卢卡・彭切里尼/尤利娅・切伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴维斯王朝\",\n    \"author\": \"约翰・罗斯柴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031242-bfcf62?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他从凤凰来：沈从文传\",\n    \"author\": \"金介甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030948-655c86?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传\",\n    \"author\": \"哈米什・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明评点曾国藩家书\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030825-08c459?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子大历史\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平衡的智慧\",\n    \"author\": \"帕特・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030681-682c4a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿登纳回忆录（套装共4册）\",\n    \"author\": \"康拉德・阿登纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我曾走在崩溃的边缘\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非传\",\n    \"author\": \"孙力科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔的正义\",\n    \"author\": \"琳达・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋朝政坛319年系列丛书\",\n    \"author\": \"江永红/周宗奇/毕宝魁/郭晓晔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030120-a49339?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗\",\n    \"author\": \"杰克・威泽弗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030057-ad67d7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家书（果麦经典）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030027-90dc35?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险地活着\",\n    \"author\": \"汉斯・舒茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊本·赫勒敦\",\n    \"author\": \"罗伯特・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李小龙：不朽的东方传奇（图文版）\",\n    \"author\": \"郑杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029616-f92b6d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向前一步\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林自传（译文名著精选）\",\n    \"author\": \"本杰明・富兰克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029466-e938e1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜迪奥拉：胜利的另一种道路\",\n    \"author\": \"吉列姆・巴拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢创之旅：科勒百年传奇\",\n    \"author\": \"《敢创之旅》编写组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029376-1a0ae7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑传（果麦经典）\",\n    \"author\": \"埃米尔・路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029262-51cdbd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊万卡·特朗普\",\n    \"author\": \"伊万卡・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚历克斯·弗格森：我的自传\",\n    \"author\": \"亚历克斯・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029226-e94552?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲人奥里翁\",\n    \"author\": \"龚祥瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028482-369eaa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林肯传\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028323-24d764?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱迪生：创新之源与商业成就的秘密\",\n    \"author\": \"里昂纳多・迪格拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028344-204c61?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威之父斯坦·李\",\n    \"author\": \"鲍勃・巴彻勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028266-25f260?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大学与大师\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028077-546989?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特立斯非虚构经典著作\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027792-68778f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识分子\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027738-44fa7b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香农传\",\n    \"author\": \"吉米・索尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗素传（全2册）\",\n    \"author\": \"瑞・蒙克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027564-a1949f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种走法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027432-29294c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗与今日世界之形成\",\n    \"author\": \"杰克・威泽弗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027153-72f4c4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她是天使误入人间：奥黛丽·赫本传\",\n    \"author\": \"布可小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027087-9bc2f6?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健\",\n    \"author\": \"先燕云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026892-ff2ed7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健传\",\n    \"author\": \"周桦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲍勃·迪伦：诗人之歌\",\n    \"author\": \"让-多米尼克·布里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之轮\",\n    \"author\": \"伊丽莎白・库伯勒-罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐队女孩\",\n    \"author\": \"金・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网：阿加西自传\",\n    \"author\": \"安德烈・阿加西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025626-a758c0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中2·再认识李小龙\",\n    \"author\": \"约翰・里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025305-200ba5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中7·幸会！苏东坡\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为\",\n    \"author\": \"米歇尔・罗宾逊・奥巴马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025125-c91f09?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生真相\",\n    \"author\": \"彼得・斯莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025128-9ada14?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯南日记\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姚明传\",\n    \"author\": \"杨毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025023-0d966b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩传\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024924-c79780?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断头王后：玛丽·安托瓦内特传\",\n    \"author\": \"斯・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024828-0ecc23?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷震传\",\n    \"author\": \"范泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的儒家\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家、水手、士兵、间谍\",\n    \"author\": \"尼古拉斯・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗斯玛丽：肯尼迪家族隐藏的女儿\",\n    \"author\": \"凯特・克里福・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024627-9a0631?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂的真实人生\",\n    \"author\": \"安娜・马丁内蒂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024306-ad80e4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋徽宗\",\n    \"author\": \"伊沛霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我钻进了金字塔\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023844-04f9b7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己对话：曼德拉自传\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023478-a73738?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"IBM帝国缔造者：小沃森自传\",\n    \"author\": \"小托马斯・约翰・沃森/彼得・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才的编辑\",\n    \"author\": \"司各特・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023316-2d09bb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由之魂\",\n    \"author\": \"刘台平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不得贪胜\",\n    \"author\": \"李昌镐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023190-b21759?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果首席设计师：乔纳森传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃兹传：与苹果一起疯狂\",\n    \"author\": \"吉娜・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023163-c9e4da?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟爱华传：洋医生的中国心\",\n    \"author\": \"约翰・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强人治国：普京传\",\n    \"author\": \"安格斯・罗克斯伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023151-211707?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咏远有李\",\n    \"author\": \"李咏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023193-112edb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金庸传（修订版）\",\n    \"author\": \"傅国涌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023109-66a0ea?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的早年岁月\",\n    \"author\": \"苏尔坦・本・穆罕默德・卡西米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖：一项心理史学研究\",\n    \"author\": \"查尔斯・B．斯特罗齐尔/丹尼尔・奥弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个定理的诞生\",\n    \"author\": \"塞德里克・维拉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022608-e6a289?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运：文在寅自传\",\n    \"author\": \"文在寅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022554-9440d1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李嘉诚全传\",\n    \"author\": \"陈美华/辛磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022467-d6cebc?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年斯大林\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022413-7e0d2c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子传\",\n    \"author\": \"张远山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022350-a02974?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Short Nights of the Shadow Catcher\",\n    \"author\": \"Egan, Timothy\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022299-6675d1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息，折腾不止\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列奥纳多·达·芬奇传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明2：四句话读懂阳明心学\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Leonardo da Vinci\",\n    \"author\": \"Walter Isaacson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021798-d76fb3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国梦\",\n    \"author\": \"斯塔兹・特克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚤满华袍：张爱玲后半生\",\n    \"author\": \"伊北\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020742-af9458?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卢作孚套装（全三册）\",\n    \"author\": \"鲁/张湛昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020706-3dfc66?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和国科学拓荒者传记（套装共9册）\",\n    \"author\": \"许鹿希等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020856-bcb915?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉密尔顿传\",\n    \"author\": \"罗恩・彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020625-ed77e3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"默克尔传：德国总理安格拉·默克尔和她的权力世界\",\n    \"author\": \"斯蒂凡・柯内琉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020523-ee7487?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我生有涯愿无尽\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020394-9d305d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我身在历史何处\",\n    \"author\": \"埃米尔・库斯图里卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019992-bd477d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个瑜伽行者的自传\",\n    \"author\": \"帕拉宏撒・尤迦南达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019968-e117f9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力之路：林登·约翰逊传\",\n    \"author\": \"罗伯特・A.卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先知三部曲（套装共三册）\",\n    \"author\": \"伊萨克・多伊彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019818-fab788?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张作霖大传\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019716-3c1ec2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格经典作品集\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019506-ec53cc?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Open\",\n    \"author\": \"Andre Agassi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019482-94cced?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天5：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019326-871ffb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉重的皇冠\",\n    \"author\": \"克里斯托弗・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的创业史\",\n    \"author\": \"方兴东/刘强东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019182-1f9b4c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不要你死于一事无成\",\n    \"author\": \"法齐娅・库菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辣道至简：老干妈陶华碧的经营智慧\",\n    \"author\": \"李琦晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019074-0c0d6b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的兴亡\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滚雪球：巴菲特和他的财富人生（套装共2册）\",\n    \"author\": \"艾丽斯・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴敬琏传\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018321-53a373?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"My Brief History\",\n    \"author\": \"Stephen Hawking\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018171-0525fe?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋介石后传\",\n    \"author\": \"师永刚/方旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017532-586f77?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赵匡胤：乱世枭雄开启文治盛世\",\n    \"author\": \"陈红晓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017484-9dba70?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘邦：汉民族文化的伟大开拓者\",\n    \"author\": \"洪亮亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017478-cb43ff?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠传\",\n    \"author\": \"贝尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017298-68c107?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠：帝国最后的“鹰派”\",\n    \"author\": \"徐志频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017196-e60417?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“雅众·影事”之日本导演系列（套装共4册）\",\n    \"author\": \"今敏/大岛渚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017130-8dc1b4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄河青山：黄仁宇回忆录\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016971-0cdd42?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着为了讲述\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016920-233354?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致所有疯狂的家伙\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘人偶记\",\n    \"author\": \"徐国琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016278-c6fdd0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚕丝：钱学森传\",\n    \"author\": \"张纯如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015879-9f8145?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章传\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的局座：悄悄话\",\n    \"author\": \"张召忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李世民权力的逻辑（全4册）\",\n    \"author\": \"陈唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015375-ee641f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁思成、林徽因与我\",\n    \"author\": \"林洙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014934-8a35b4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩：唐浩明钦定版\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014871-07622b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林自传\",\n    \"author\": \"富兰克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014847-bd9379?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆者：周鸿祎自传\",\n    \"author\": \"周鸿祎/范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014796-d33909?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个广告人的自白\",\n    \"author\": \"大卫・奥格威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孵化皮克斯\",\n    \"author\": \"劳伦斯・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠的正面与背面\",\n    \"author\": \"徐志频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014202-e625fe?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高传（全三部）\",\n    \"author\": \"史蒂文・奈菲/格雷戈里・怀特・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪与傅斯年（全新修订版）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大道当然\",\n    \"author\": \"王石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俾斯麦传\",\n    \"author\": \"艾密尔・鲁特维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013704-70c38a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别逗了，费曼先生\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11枚戒指禅：师菲尔·杰克逊自传\",\n    \"author\": \"菲尔・杰克逊/休・迪里汉提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013530-adcbea?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非偶然\",\n    \"author\": \"埃利奥特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海滩大亨黄金荣\",\n    \"author\": \"雅瑟/海华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012954-39abe5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国灯笼\",\n    \"author\": \"格蕾丝・汤普森・西登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢问路在何方\",\n    \"author\": \"杨洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012768-569107?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗兰克尔自传：活出生命的意义\",\n    \"author\": \"维克多・弗兰克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012507-1ce2f9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特传（纪念版）\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在绝望中寻找希望\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩托日记\",\n    \"author\": \"埃内斯托・切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011676-e33838?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣格自传：回忆・梦・思考\",\n    \"author\": \"卡尔・古斯塔夫・荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011127-2e5b54?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道金斯传（全2册）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010911-d31838?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张学良的政治生涯\",\n    \"author\": \"傅虹霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰臣秀吉（套装共6册）\",\n    \"author\": \"吉川英治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010482-f30192?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岳飞传\",\n    \"author\": \"邓广铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010176-918d2c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曼德施塔姆夫人回忆录\",\n    \"author\": \"娜杰日达・曼德施塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009744-9ce9e3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人心至上：杜月笙\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米尔·汗：我行我素\",\n    \"author\": \"克里斯蒂娜・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009441-d75778?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫漫自由路\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009420-a23ae5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿桑奇自传：不能不说的秘密\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009390-bd0480?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾伦・图灵传\",\n    \"author\": \"安德鲁・霍奇斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009402-9c2f8a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宽客人生：从物理学家到数量金融大师的传奇\",\n    \"author\": \"伊曼纽尔・德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仁者无敌：林肯的政治天才\",\n    \"author\": \"尤以丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009171-407c48?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的烤火者：杨绛传\",\n    \"author\": \"慕容素衣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009006-32c036?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章时代（1870-1895）\",\n    \"author\": \"王鼎杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008859-c5c5f2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"為了活下去：脫北女孩朴研美\",\n    \"author\": \"朴研美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008844-4ce616?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆小屋\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008715-f6ea28?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甘地自传\",\n    \"author\": \"甘地\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008160-0e39e0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天正传\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在火星上退休：伊隆・马斯克传\",\n    \"author\": \"亚当・杰佛逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个美国记者眼中的真实民国\",\n    \"author\": \"哈雷特・阿班\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希拉里传（纪念版）\",\n    \"author\": \"卡尔・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007839-6bdb2b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：从乞丐到元首\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还年轻，我还可以重新出发\",\n    \"author\": \"唐骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大历史的角度读蒋介石日记\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭德怀自传\",\n    \"author\": \"彭德怀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师细说中国历史（套装共12册）\",\n    \"author\": \"吕思勉/吴晗/傅斯年等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈大传\",\n    \"author\": \"王宏甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人当国：慈禧太后与晚清五十年\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰盛人生：安利创始人理查・狄维士自传\",\n    \"author\": \"理查・狄维士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双脑记：认知神经科学之父加扎尼加自传\",\n    \"author\": \"迈克尔・加扎尼加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里传：这是阿里巴巴的世界\",\n    \"author\": \"波特・埃里斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产狂人许家印\",\n    \"author\": \"魏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡斯特罗传\",\n    \"author\": \"克劳迪娅・福丽娅蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007353-db4a05?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库克：苹果的后乔布斯时代\",\n    \"author\": \"冷湖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一战神：韩信\",\n    \"author\": \"姜狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007233-0e5888?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南渡北归（增订版）套装\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红圈：海豹突击队前狙击手总教练回忆录\",\n    \"author\": \"布兰登・韦伯/约翰・大卫・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从20万到30亿：特朗普自传\",\n    \"author\": \"唐纳德・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛并快乐着\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明晚清三部曲\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行者：一念一生\",\n    \"author\": \"六小龄童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007038-8367b2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷军：创业没有时间表\",\n    \"author\": \"胡以贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆自传\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独自上场\",\n    \"author\": \"李娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三大名臣发迹史（套装共6册）\",\n    \"author\": \"汪衍振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006798-f5d92b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出轨的盛唐：武后（套装共3册）\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006789-16cd14?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宗庆后：万有引力原理\",\n    \"author\": \"迟宇宙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨人的成圣之道：曾国藩\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记\",\n    \"author\": \"保罗·奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上半场\",\n    \"author\": \"刘建宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006687-7d3e9b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清相国\",\n    \"author\": \"王跃文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻觉师\",\n    \"author\": \"悲伤感应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006555-2ab14e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭大将军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艽野尘梦\",\n    \"author\": \"陈渠珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本·拉登传\",\n    \"author\": \"简·萨森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006387-47e6ef?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年袁家\",\n    \"author\": \"王碧蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝王师：张居正\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006345-151672?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝王师：刘伯温\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006339-c15817?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗：意志征服世界\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪的最后二十年\",\n    \"author\": \"陆键东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006321-90dcb0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣氏百年：中国商业第一家族\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红顶商人胡雪岩珍藏版大全集（套装共6册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个皇帝：袁世凯传\",\n    \"author\": \"陶菊隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005958-558d42?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿布鞋的马云：决定阿里巴巴生死的27个节点\",\n    \"author\": \"王利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五大传奇权谋人物传记（套装共5册）\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大谋小计五十年：诸葛亮传\",\n    \"author\": \"若虚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005889-9b8514?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃隆·马斯克传：用特斯拉撬动世界\",\n    \"author\": \"邱恒明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005745-0f69ba?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史玉柱自述：我的营销心得\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战神粟裕\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧全传\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国总理段祺瑞\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个曾国藩\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个袁世凯\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个李鸿章\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着就为征服世界\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝一哥王阳明\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005256-ea4e88?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因你不同：李开复自传\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005244-a5ac8a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大太监李莲英全传\",\n    \"author\": \"王牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲南怀瑾\",\n    \"author\": \"南一鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005178-1fd0b7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米内幕\",\n    \"author\": \"吴帝聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋介石与现代中国\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005121-9824a2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂夫·乔布斯传\",\n    \"author\": \"沃尔特·艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的正面与侧面\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷钢铁侠\",\n    \"author\": \"阿什利・万斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德川家康大全集\",\n    \"author\": \"山冈庄八\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004860-5761a5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的汪精卫\",\n    \"author\": \"林思云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡雪岩（全三册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国误会了袁世凯\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师3\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的逻辑与艺术\",\n    \"author\": \"陈侃迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的真相\",\n    \"author\": \"极地之鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（下）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513720-6f59ab?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭交易（原书第3版）\",\n    \"author\": \"约翰·F.卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004470-5ede53?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资交易心理分析（典藏版）\",\n    \"author\": \"布雷特 N. 斯蒂恩博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易之路\",\n    \"author\": \"陈凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员\",\n    \"author\": \"杰克D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进我的交易室\",\n    \"author\": \"亚历山大・艾尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭交易（原书第2版）\",\n    \"author\": \"约翰・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易冠军\",\n    \"author\": \"马丁・舒华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个农民的亿万传奇\",\n    \"author\": \"傅海棠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年一梦（修订版）\",\n    \"author\": \"青泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特波浪理论：研判股市底部与顶部的有效工具\",\n    \"author\": \"拉尔夫·N·艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新金融怪杰\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易（原书第2版）\",\n    \"author\": \"艾琳・奥尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我如何从股市赚了200万（珍藏版）\",\n    \"author\": \"尼古拉斯・达瓦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生Ⅱ\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背离技术分析\",\n    \"author\": \"江南小隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴维·朗德里波段交易法则\",\n    \"author\": \"戴维・朗德里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037992-dbffa0?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员（典藏版）\",\n    \"author\": \"杰克 D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券混沌操作法（典藏版）\",\n    \"author\": \"比尔・威廉斯/贾丝廷・格雷戈里-威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势戒律\",\n    \"author\": \"柯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势交易\",\n    \"author\": \"安德烈亚斯 F. 克列诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗池\",\n    \"author\": \"帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密交易人的圣杯 &#8211; 卡玛利拉方程\",\n    \"author\": \"何塞・曼纽尔・莫雷拉・巴蒂斯塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018888-a3598c?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Momentum Masters\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017724-0cf662?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威科夫操盘法\",\n    \"author\": \"孟洪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开量化投资的黑箱（原书第2版）\",\n    \"author\": \"里什・纳兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易的10堂必修课\",\n    \"author\": \"贾里德・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟交易法则（珍藏版）\",\n    \"author\": \"柯蒂斯・费思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街幽灵\",\n    \"author\": \"阿瑟・辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"套利的常识\",\n    \"author\": \"章文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009060-a4097b?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克米伦谈期权\",\n    \"author\": \"劳伦斯G.麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金奇才\",\n    \"author\": \"杰克·施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸奔的钱\",\n    \"author\": \"沈良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短线交易秘诀（原书第2版）\",\n    \"author\": \"拉里·威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生（珍藏版）\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866\",\n    \"category\": \"简史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化简史（套装共4册）\",\n    \"author\": \"王立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866\",\n    \"category\": \"简史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简美国史\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866\",\n    \"category\": \"简史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唤醒创作力\",\n    \"author\": \"朱莉娅・卡梅伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命向前\",\n    \"author\": \"迈克尔・海厄特/丹尼尔・哈卡维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗压力：逆境重生法则\",\n    \"author\": \"久世浩司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020541-463985?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形人格\",\n    \"author\": \"海伦・麦格拉斯/哈泽尔・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020031-123343?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微习惯\",\n    \"author\": \"斯蒂芬・盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向管理\",\n    \"author\": \"埃米尼亚・伊贝拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007590-ce7cce?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清单革命\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的本质（修订版）\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866\",\n    \"category\": \"贫穷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断裂的阶梯\",\n    \"author\": \"基思・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866\",\n    \"category\": \"贫穷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国落日：晚清大变局\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018723-5c346e?p=8866\",\n    \"category\": \"晚期\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失稳的帝国\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866\",\n    \"category\": \"晚期\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天浴\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011631-d26689?p=8866\",\n    \"category\": \"小说文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一弦琴\",\n    \"author\": \"宫尾登美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011628-8b7d59?p=8866\",\n    \"category\": \"小说文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天上再见\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010554-368938?p=8866\",\n    \"category\": \"小说文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时装（牛津通识读本）\",\n    \"author\": \"丽贝卡・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001443-1e6b5d?p=8866\",\n    \"category\": \"服装\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与神对话（全五卷）\",\n    \"author\": \"尼尔・唐纳德・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唤醒创作力\",\n    \"author\": \"朱莉娅・卡梅伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶人传\",\n    \"author\": \"约翰・班扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜加油站遇见苏格拉底\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无量之网\",\n    \"author\": \"格里格．布莱登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意识光谱\",\n    \"author\": \"肯・威尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油的时代\",\n    \"author\": \"王能全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866\",\n    \"category\": \"能源\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙特公司\",\n    \"author\": \"埃伦·R.沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866\",\n    \"category\": \"能源\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逢考必过\",\n    \"author\": \"布里特・本尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491946-02547b?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆宫殿\",\n    \"author\": \"石伟华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍学校\",\n    \"author\": \"丹尼斯・布金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000366-6508f7?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效记忆（原书第2版）\",\n    \"author\": \"肯尼思・希格比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991930-4a8ea6?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提高记忆的100种方法\",\n    \"author\": \"王小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985825-3dd88d?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是记性差，只是没找对方法\",\n    \"author\": \"池田义博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆\",\n    \"author\": \"卢龙斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身失忆人\",\n    \"author\": \"卢克・迪特里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024192-0076c9?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆魔法师\",\n    \"author\": \"袁文魁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022029-89926d?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何记忆\",\n    \"author\": \"罗恩・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020949-e41027?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"52周记忆魔法实战手册\",\n    \"author\": \"多米尼克・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004722-bce77e?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最想要的记忆魔法书\",\n    \"author\": \"多米尼克・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004725-2e954b?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑鄙的圣人：曹操（套装共10册）\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866\",\n    \"category\": \"曹操\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佩拉宫的午夜\",\n    \"author\": \"查尔斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498822-cf18fd?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国之衰\",\n    \"author\": \"王三义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046941-f63985?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔三城记\",\n    \"author\": \"贝塔妮・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔\",\n    \"author\": \"埃布鲁・宝雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯曼帝国六百年\",\n    \"author\": \"帕特里克・贝尔福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023592-246a21?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的自我\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500376-01a4ec?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样用脑不会累\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑大脑回路\",\n    \"author\": \"亚历克斯・科布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052773-076a3d?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑训练手册\",\n    \"author\": \"塔拉・斯瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051024-e3c24d?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉心理学\",\n    \"author\": \"博・洛托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046674-506c48?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触感引擎\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042108-97942a?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜脑：在睡眠中自动学习的秘密\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笛卡尔的错误\",\n    \"author\": \"安东尼奥・达马西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018066-8ad3a0?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED思想的力量系列（套装共11册）\",\n    \"author\": \"奇普・基德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012561-cc2ad1?p=8866\",\n    \"category\": \"系列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，西藏！\",\n    \"author\": \"卡布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496611-f0aac2?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学履途\",\n    \"author\": \"纽约时报主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985852-f9ca35?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘境\",\n    \"author\": \"乔舒亚・福尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多瑙河之旅\",\n    \"author\": \"克劳迪欧・马格里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民发呆的澳洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站，西藏\",\n    \"author\": \"山小\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徒步中国\",\n    \"author\": \"雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009309-befe4d?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难一日：海豹六队击毙本・拉登行动亲历\",\n    \"author\": \"马克・欧文/凯文・莫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866\",\n    \"category\": \"本拉登\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反溺爱\",\n    \"author\": \"罗恩・利伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866\",\n    \"category\": \"财商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20堂商业思维进阶课\",\n    \"author\": \"环球人物新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866\",\n    \"category\": \"财商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱意识\",\n    \"author\": \"沈诱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866\",\n    \"category\": \"财商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"延禧攻略\",\n    \"author\": \"周末\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028005-0b5b91?p=8866\",\n    \"category\": \"宫斗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离凰（套装共3册）\",\n    \"author\": \"猗兰霓裳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017595-0449e5?p=8866\",\n    \"category\": \"宫斗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我用古典的方式爱过你\",\n    \"author\": \"艾米莉・狄金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033786-700cbe?p=8866\",\n    \"category\": \"狄金森\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝶变：澳门博彩业田野叙事\",\n    \"author\": \"刘昭瑞/霍志钊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866\",\n    \"category\": \"澳门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳门往事之孤注一掷\",\n    \"author\": \"左四右五\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023019-0e273f?p=8866\",\n    \"category\": \"澳门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳门史1557-1999\",\n    \"author\": \"杰弗里・冈恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019521-94c448?p=8866\",\n    \"category\": \"澳门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡新传\",\n    \"author\": \"李一冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994948-24d8ca?p=8866\",\n    \"category\": \"苏轼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词集（词系列）\",\n    \"author\": \"苏轼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866\",\n    \"category\": \"苏轼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛极简中国史\",\n    \"author\": \"阿尔伯特・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015678-11afee?p=8866\",\n    \"category\": \"哈佛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在哈佛的最后一堂课\",\n    \"author\": \"艾瑞克・赛诺威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866\",\n    \"category\": \"哈佛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：私募风云\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034311-81e387?p=8866\",\n    \"category\": \"私募\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：一个影子私募基金经理的自白\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033699-597e93?p=8866\",\n    \"category\": \"私募\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读私募股权基金\",\n    \"author\": \"周炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866\",\n    \"category\": \"私募\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之王\",\n    \"author\": \"戴维・凯里/约翰・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005829-d05ccb?p=8866\",\n    \"category\": \"私募\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午7：我们的生活\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052818-d04d83?p=8866\",\n    \"category\": \"非虚构\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"To Be a Machine\",\n    \"author\": \"Mark O'Connell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027078-09d6c7?p=8866\",\n    \"category\": \"非虚构\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘上之夜\",\n    \"author\": \"宫内悠介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499317-6f647b?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼灭之刃（第三部：卷16-卷23）\",\n    \"author\": \"吾峠呼世晴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995521-6d41fc?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全7册）\",\n    \"author\": \"伊万谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说4）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三口棺材\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031353-c23149?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星尘\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022449-2e132d?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜阳（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖丛谈（注音注释插图本）\",\n    \"author\": \"连阔如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984292-077343?p=8866\",\n    \"category\": \"江湖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866\",\n    \"category\": \"江湖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你坏\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022809-a0e444?p=8866\",\n    \"category\": \"江湖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸血鬼之女\",\n    \"author\": \"阿曼达・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028350-88de58?p=8866\",\n    \"category\": \"吸血鬼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸血鬼王系列（套装共3册）\",\n    \"author\": \"J.R.沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017319-773723?p=8866\",\n    \"category\": \"吸血鬼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平杂说\",\n    \"author\": \"潘旭澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之痒\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之秋\",\n    \"author\": \"裴士锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015171-03bda3?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失稳的帝国\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1856：纠结的大清、天国与列强\",\n    \"author\": \"陶短房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极乐诱惑：太平天国的兴亡\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异详注新评\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030834-021d30?p=8866\",\n    \"category\": \"聊斋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录2：长安鬼迹\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866\",\n    \"category\": \"聊斋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"条条大路通书法\",\n    \"author\": \"寇克让\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987247-df4df8?p=8866\",\n    \"category\": \"书法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永字八法\",\n    \"author\": \"周汝昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053631-407cc1?p=8866\",\n    \"category\": \"书法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动的人生整理魔法2\",\n    \"author\": \"近藤麻理惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866\",\n    \"category\": \"整理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10分钟扫除术\",\n    \"author\": \"贝基・拉平竺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036390-b0f5e3?p=8866\",\n    \"category\": \"整理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没时间休息的休息法\",\n    \"author\": \"荻野淳也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510219-79ad9b?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断舍离（全3册）\",\n    \"author\": \"山下英子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510945-54d643?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少有人走的路（1-8全套）\",\n    \"author\": \"斯科特・派克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000219-cda644?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"差异优势\",\n    \"author\": \"约翰·C. 马克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是失败，只是差一点成功\",\n    \"author\": \"萨拉・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受益一生的六本书（套装六册）\",\n    \"author\": \"鬼谷子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技巧：如何用一年时间获得十年的经验\",\n    \"author\": \"郝培强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人不可以穷\",\n    \"author\": \"正经婶儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对自控\",\n    \"author\": \"瑞安・霍利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020094-358288?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功，动机与目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在绝望中寻找希望\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意学习\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力法则：用一年时间积累一生财富（套装共3册）\",\n    \"author\": \"拿破仑・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷军：创业没有时间表\",\n    \"author\": \"胡以贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷禁书\",\n    \"author\": \"查尔斯・哈尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的真谛\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃隆·马斯克传：用特斯拉撬动世界\",\n    \"author\": \"邱恒明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005745-0f69ba?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米内幕\",\n    \"author\": \"吴帝聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普京：权力的逻辑\",\n    \"author\": \"胡贝特・塞佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997114-7f3bf3?p=8866\",\n    \"category\": \"普京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强人治国：普京传\",\n    \"author\": \"安格斯・罗克斯伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023151-211707?p=8866\",\n    \"category\": \"普京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普京政治\",\n    \"author\": \"李鸿谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009723-3b1f21?p=8866\",\n    \"category\": \"普京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：让所有事情都能正确入手\",\n    \"author\": \"凯茜・拉舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866\",\n    \"category\": \"学习方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的升级\",\n    \"author\": \"约翰・库奇/贾森・汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866\",\n    \"category\": \"学习方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民族的重建\",\n    \"author\": \"蒂莫西・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511398-d8e38f?p=8866\",\n    \"category\": \"东欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客居己乡\",\n    \"author\": \"哲尔吉・康拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866\",\n    \"category\": \"东欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军骑士（名著名译丛书）\",\n    \"author\": \"亨利克・显克维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034416-c53e79?p=8866\",\n    \"category\": \"东欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回访历史\",\n    \"author\": \"伊娃・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023670-9aac87?p=8866\",\n    \"category\": \"东欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文明史（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866\",\n    \"category\": \"文明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生如夏花（作家榜经典文库）\",\n    \"author\": \"拉宾德拉纳特・泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866\",\n    \"category\": \"泰戈尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有你，什么都不甜蜜\",\n    \"author\": \"约恩・卡尔曼・斯特凡松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009612-883618?p=8866\",\n    \"category\": \"冰岛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的商学课\",\n    \"author\": \"路骋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866\",\n    \"category\": \"MBA\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30天精读MBA（套装共3册）\",\n    \"author\": \"科林・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866\",\n    \"category\": \"MBA\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"MBA十日读（第四版）\",\n    \"author\": \"史蒂文・西尔比格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866\",\n    \"category\": \"MBA\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我心归处是敦煌\",\n    \"author\": \"樊锦诗口述/顾春芳撰写\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866\",\n    \"category\": \"自述\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁血蒙元\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋革新\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023322-d132ff?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石变法\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023325-383dbd?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风流南宋\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品人录\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天中华史：先秦到隋唐\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008340-6d454f?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的科学哲学\",\n    \"author\": \"杰弗里・戈勒姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866\",\n    \"category\": \"世界观\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从头开始\",\n    \"author\": \"霍华德・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512121-a7c05d?p=8866\",\n    \"category\": \"星巴克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克要买大杯咖啡\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866\",\n    \"category\": \"星巴克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克遇见德鲁克\",\n    \"author\": \"李麦可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011139-8f0e63?p=8866\",\n    \"category\": \"星巴克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋南北朝简史\",\n    \"author\": \"劳榦先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990064-033d75?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋之际的政治权力与家族网络\",\n    \"author\": \"仇鹿鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989743-9081ea?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人物志（全本全注全译）\",\n    \"author\": \"刘劭/梁满仓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬崖边的名士\",\n    \"author\": \"大生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035499-d66334?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后三国战争史\",\n    \"author\": \"陈峰韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地裂三百年（上）\",\n    \"author\": \"覃仕勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016053-8fc9ae?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地裂三百年（下）\",\n    \"author\": \"覃仕勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016044-4b2a48?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世家的天下（全3册）\",\n    \"author\": \"潘彦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009249-56da80?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社百科通识文库（世界万象大套装共114本）\",\n    \"author\": \"伏尔泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502542-168165?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫兽谱\",\n    \"author\": \"小海/夏雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫鸟谱\",\n    \"author\": \"小海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990010-138e10?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊林经典科普小丛书（套装4册）\",\n    \"author\": \"伊林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985759-492e78?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然万物科普百科（套装共2册）\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航船\",\n    \"author\": \"张岱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希利尔儿童世界地理\",\n    \"author\": \"希利尔/休伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国儿科学会育儿百科（第6版）\",\n    \"author\": \"斯蒂文・谢尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华传统文化大百科套装50册\",\n    \"author\": \"刘心莲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008472-a35cc3?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定本育儿百科\",\n    \"author\": \"松田道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志公敌\",\n    \"author\": \"杰弗里・赫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自纳粹地狱的报告\",\n    \"author\": \"米克洛斯・尼斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪潮\",\n    \"author\": \"托德・斯特拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015600-55b4aa?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时刻：希特勒、大屠杀与纳粹文化（上下册）\",\n    \"author\": \"单世联\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史：德国人的犹太恐惧症与大屠杀\",\n    \"author\": \"克劳斯・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（全三册）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国的腐败与反腐\",\n    \"author\": \"弗兰克・巴约尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"责任病毒\",\n    \"author\": \"罗杰・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革的力量\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001737-a8b420?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：天才创造世界\",\n    \"author\": \"水木然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041298-4d7a2c?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高绩效团队\",\n    \"author\": \"琳达・亨曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034740-89cf01?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个天才团队的故事\",\n    \"author\": \"沃伦・本尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的领导力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017184-25e82f?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿景领导者\",\n    \"author\": \"迪帕克・乔普拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011211-07999a?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导梯队（原书第2版）\",\n    \"author\": \"拉姆・查兰/斯蒂芬・德罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新：重新发现商业与未来\",\n    \"author\": \"萨提亚・纳德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017295-014e5b?p=8866\",\n    \"category\": \"微软\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代兵器大百科（套装共12册）\",\n    \"author\": \"《深度军事》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866\",\n    \"category\": \"武器\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵器史\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866\",\n    \"category\": \"武器\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯大林传\",\n    \"author\": \"德米特里・安东诺维奇・沃尔科戈诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491829-e707fa?p=8866\",\n    \"category\": \"斯大林\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年斯大林\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022413-7e0d2c?p=8866\",\n    \"category\": \"斯大林\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放你的大脑\",\n    \"author\": \"伊德里斯・阿贝尔坎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866\",\n    \"category\": \"大脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耐心的资本\",\n    \"author\": \"维多利亚・伊凡希娜/乔希・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495492-4e8778?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借钱：利息、债务和资本的故事\",\n    \"author\": \"查尔斯・盖斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透IPO\",\n    \"author\": \"沈春晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007572-2aa1dc?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的年代：1848～1875\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸奔的钱\",\n    \"author\": \"沈良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜伏在资本市场\",\n    \"author\": \"仇子明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006531-bbfae7?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿什么拯救中国经济？\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭2\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866\",\n    \"category\": \"逆袭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说话体现格局，决定结局\",\n    \"author\": \"凌岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866\",\n    \"category\": \"逆袭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年河东：权力市场经济的困境\",\n    \"author\": \"杨继绳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866\",\n    \"category\": \"权利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深海：探索寂静的未知\",\n    \"author\": \"詹姆斯・内斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866\",\n    \"category\": \"深海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词品（词系列）\",\n    \"author\": \"杨慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033549-efac50?p=8866\",\n    \"category\": \"词话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白雨斋词话（词系列）\",\n    \"author\": \"陈廷焯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866\",\n    \"category\": \"词话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（李卓吾批评本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026781-f18846?p=8866\",\n    \"category\": \"西游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煮酒探西游\",\n    \"author\": \"吴闲云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020517-dfd08e?p=8866\",\n    \"category\": \"西游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript函数式编程\",\n    \"author\": \"Michael Fogus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866\",\n    \"category\": \"WEB开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Node即学即用\",\n    \"author\": \"Tom Hughes-Croucher/Mike Wilson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019341-c051bb?p=8866\",\n    \"category\": \"WEB开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"PHP和MySQL Web开发（原书第4版）\",\n    \"author\": \"Luke Welling\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866\",\n    \"category\": \"WEB开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后宫·甄嬛传（全7册）\",\n    \"author\": \"流潋紫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006210-d08087?p=8866\",\n    \"category\": \"后宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后宫·如懿传（套装全六册）\",\n    \"author\": \"流潋紫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006000-6ed972?p=8866\",\n    \"category\": \"后宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周礼（全本全注全译）\",\n    \"author\": \"徐正英/常佩雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仪礼（全本全注全译）\",\n    \"author\": \"彭林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985543-fb5537?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜夫论（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983326-206879?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼记（全本全注全译）\",\n    \"author\": \"胡平生译注/张萌译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"义疏学衰亡史论\",\n    \"author\": \"乔秀岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054387-22b652?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从六艺到十三经（上下册）\",\n    \"author\": \"程苏东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051807-3757fe?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：康有为与章太炎（全二册）\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋穀梁传（全本全注全译）\",\n    \"author\": \"徐正英/邹皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国（套装共2册）\",\n    \"author\": \"萧然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866\",\n    \"category\": \"大汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不忍细看的大汉史\",\n    \"author\": \"墨竹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008358-9b1891?p=8866\",\n    \"category\": \"大汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏殊词集·晏幾道词集（词系列）\",\n    \"author\": \"晏殊/晏几道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866\",\n    \"category\": \"词集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温庭筠词集·韦庄词集（词系列）\",\n    \"author\": \"温庭筠/韦庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866\",\n    \"category\": \"词集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未解之谜（套装共2册）\",\n    \"author\": \"克雷格·P·鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029346-23a41e?p=8866\",\n    \"category\": \"探索\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外星人已潜伏地球5000年\",\n    \"author\": \"吉姆・马尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007305-7428fc?p=8866\",\n    \"category\": \"探索\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节：如何轻松影响他人\",\n    \"author\": \"罗伯特・西奥迪尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866\",\n    \"category\": \"影响\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑来（22-28册）出版精校版\",\n    \"author\": \"烽火戏诸侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498294-5c9904?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖\",\n    \"author\": \"华发生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499257-a4fc63?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑来（1-14册）出版精校版\",\n    \"author\": \"烽火戏诸侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510003-9e4751?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白羽经典武侠小说（套装十五册）\",\n    \"author\": \"宫白羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513273-1d4daa?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条草鱼\",\n    \"author\": \"哈欠丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002037-f32c42?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人8\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048456-50027e?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人9\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鹤三绝\",\n    \"author\": \"二斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晋江大神Priest经典作品合集（套装10册）\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035787-47378b?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有匪（套装共4册）\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035424-611fd0?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千劫眉（套装5册）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034515-d69375?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五大贼王（全七册）\",\n    \"author\": \"张海帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033582-332d11?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人7\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032982-676f27?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁羽生作品集（全104册）\",\n    \"author\": \"梁羽生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031665-bac15f?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古龙作品文集（精装72册）\",\n    \"author\": \"古龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031251-1ca81d?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十六骑\",\n    \"author\": \"念远怀人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028368-c78c0c?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人5\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025581-ba94a5?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中10·以侠之名\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025200-8de2ab?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽明录\",\n    \"author\": \"卢隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024369-db1a0a?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺局（全六册）\",\n    \"author\": \"圆太极\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024114-fe0171?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖外史\",\n    \"author\": \"王怜花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023484-659443?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Hero Born\",\n    \"author\": \"金庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023235-ad50ef?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七杀碑\",\n    \"author\": \"朱贞木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022245-87f674?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人3\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022377-a26652?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁羽生天山系列武侠小说系列（套装共38册）\",\n    \"author\": \"梁羽生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020217-7a53db?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020004-6236a2?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金庸作品全集（新修版）（全36册）\",\n    \"author\": \"金庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015666-836a9a?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪中悍刀行（1-20册）全集\",\n    \"author\": \"烽火戏诸侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010569-63d2d4?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻秦记（套装全6卷）\",\n    \"author\": \"黄易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006882-2ead58?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866\",\n    \"category\": \"皮肤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮肤的秘密\",\n    \"author\": \"耶尔・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866\",\n    \"category\": \"皮肤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力思维\",\n    \"author\": \"珍妮弗・加维・伯格/基斯・约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866\",\n    \"category\": \"想读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维也纳艺术史博物馆\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018669-686c5d?p=8866\",\n    \"category\": \"维也纳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈：远野物语\",\n    \"author\": \"柳田国男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994702-793d65?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全怪谈：扶桑鬼话（套装共6册）\",\n    \"author\": \"小泉八云等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050130-bed007?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半妖司藤\",\n    \"author\": \"尾鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016350-8e1316?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录1：苗乡巫祖\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006627-77614f?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录2：清河鬼戏\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006624-d57c2b?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录3：血海鬼船\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006621-9caf12?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录4：亡魂列车\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006618-334515?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录5：赌城妖灵\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006615-c3e5c9?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录6：无边冥界\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006612-8ac654?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异域密码大全集（套装共四册）\",\n    \"author\": \"羊行屮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传古奇术（套装共四册）\",\n    \"author\": \"未六羊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经史百家杂钞套装共8册（全本全注全译）\",\n    \"author\": \"余兴安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491943-3f0e5a?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙子兵法青少版（作家榜经典文库）\",\n    \"author\": \"孙武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493158-bd5029?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大书院（套装40册）\",\n    \"author\": \"孙武等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509625-852982?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"透过经济看国学\",\n    \"author\": \"翁礼华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510531-3f4603?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王蒙写给年轻人的中国智慧（全四册）\",\n    \"author\": \"王蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513588-2fdf16?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟大师学国学系列第一辑（套装共7册）\",\n    \"author\": \"梁启超等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513594-7db32f?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师周作人作品大全集（套装七十八册）\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002694-d93afe?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随大全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995206-7fee3d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周礼（全本全注全译）\",\n    \"author\": \"徐正英/常佩雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国策（全本全注全译）\",\n    \"author\": \"缪文远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985609-204824?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政论 昌言（全本全注全译）\",\n    \"author\": \"孙启治译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仪礼（全本全注全译）\",\n    \"author\": \"彭林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985543-fb5537?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜氏家训（全本全注全译）\",\n    \"author\": \"檀作文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985381-82364d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新序（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坛经（全本全注全译）\",\n    \"author\": \"尚荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文选（全本全注全译）\",\n    \"author\": \"萧统\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴越春秋（全本全注全译）\",\n    \"author\": \"崔冶译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏子春秋校注（中华国学文库）\",\n    \"author\": \"张纯一撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人物志（全本全注全译）\",\n    \"author\": \"刘劭/梁满仓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾作品（共21册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982492-7bf040?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子（全本全注全译）\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼记（全本全注全译）\",\n    \"author\": \"胡平生译注/张萌译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六韬（全本全注全译）\",\n    \"author\": \"陈曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语今读（增订版）\",\n    \"author\": \"李泽厚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：康有为与章太炎（全二册）\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书（全本全注全译）\",\n    \"author\": \"张建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公孙龙子（全本全注全译）\",\n    \"author\": \"黄克剑译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法言（全本全注全译）\",\n    \"author\": \"扬雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔雅（全本全注全译）\",\n    \"author\": \"管锡华译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家书（全本全注全译）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045999-309b55?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩全集（全31册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从鹏扶摇到蝶蹁跹\",\n    \"author\": \"崔宜明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典里的中国（套装共十册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从诗经到红楼梦\",\n    \"author\": \"一条课堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043464-ad95e4?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平经（全本全注全译）\",\n    \"author\": \"杨寄林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的唐诗课\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043047-73180f?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学梯级公开课（套装共6册）\",\n    \"author\": \"摩罗/杨帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036837-519673?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡志忠经典解密系列6本\",\n    \"author\": \"蔡志忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035520-653d63?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾《传记文学》珍藏系列（全15册）\",\n    \"author\": \"梁实秋/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾著作全收录\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字十二讲\",\n    \"author\": \"万献初/刘会龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030201-30e984?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透王阳明《传习录》\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029910-ae3bf9?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾人生精讲系列（套装共5册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029634-7b17a3?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的儒家\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大纲\",\n    \"author\": \"汪震/王正己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023292-710c34?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船山遗书\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：诸子百家（上册）\",\n    \"author\": \"陈耀南男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019713-a62b5d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：诸子百家（下册）\",\n    \"author\": \"趙善軒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019707-ed5d95?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书直解\",\n    \"author\": \"张居正整理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017934-78ec02?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透论语\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017736-fae163?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透孟子\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017730-33bfc2?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书指南（国学经典精校版）\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014856-7dd474?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（全本全注全译）\",\n    \"author\": \"王秀梅译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师讲国学经典文库（套装共5册）\",\n    \"author\": \"季风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011094-ca367b?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾颉刚国史讲话全本（三册）\",\n    \"author\": \"顾颉刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010383-dcf10f?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文集（套装共7册）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白话精编二十四史（全10册）\",\n    \"author\": \"龚书铎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010236-610f9d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三大师谈国学\",\n    \"author\": \"梁启超/章太炎/朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009111-4abd60?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传记文学书系（套装共4册）\",\n    \"author\": \"唐德刚/梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008748-e9f5e7?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北大授课：中华文化四十七讲\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007980-4d8887?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群书治要译注\",\n    \"author\": \"魏徵等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006303-52769e?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都是数据分析师\",\n    \"author\": \"刘红阁/王淑娟/温融冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866\",\n    \"category\": \"数据可视化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裂变增长\",\n    \"author\": \"施襄/杨嘉伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866\",\n    \"category\": \"营运\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益转型\",\n    \"author\": \"约翰・涂尚徳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051252-2f48cb?p=8866\",\n    \"category\": \"营运\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章传\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866\",\n    \"category\": \"李鸿章\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章（全三册）\",\n    \"author\": \"张鸿福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866\",\n    \"category\": \"李鸿章\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呻吟语（全本全注全译）\",\n    \"author\": \"吕坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书（全本全注全译）\",\n    \"author\": \"张建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年颠沛与千年往复\",\n    \"author\": \"王家范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027825-d31c6f?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清之际士大夫研究\",\n    \"author\": \"赵园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023301-4261b5?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康熙盛世与帝王心术\",\n    \"author\": \"姚念慈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017247-df3930?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘心武妙品红楼梦\",\n    \"author\": \"刘心武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508878-a5cdd8?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘世梦影：彩绘红楼梦\",\n    \"author\": \"孙温/王典弋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999178-c5dc11?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦脂评汇校本\",\n    \"author\": \"吴铭恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051549-30467b?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曹雪芹大传（共14册）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050604-976667?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼十二层：周汝昌妙解红楼\",\n    \"author\": \"周汝昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044889-ec39c7?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三春争及初春景（全三册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031890-2d8f96?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦（修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正本清源说红楼\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029559-e08768?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005907-b6423c?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙宝瑄日记\",\n    \"author\": \"孙宝瑄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866\",\n    \"category\": \"史料\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋人轶事汇编\",\n    \"author\": \"周勋初/葛渭君/周子来/王华宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866\",\n    \"category\": \"史料\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第二集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866\",\n    \"category\": \"史料\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择生命\",\n    \"author\": \"池田大作/阿诺德・约瑟夫・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054378-95bb9a?p=8866\",\n    \"category\": \"对谈录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开挂扩张\",\n    \"author\": \"卢诗翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511560-66cc54?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷之火（第3版）\",\n    \"author\": \"迈克尔・斯韦因/保罗・弗赖伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘网飞\",\n    \"author\": \"马克・伦道夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不拘一格\",\n    \"author\": \"里德・哈斯廷斯/艾琳・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯唐成事心法\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一往无前\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞轮效应\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去规模化\",\n    \"author\": \"赫曼特・塔内佳/凯文・梅尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扛住就是本事\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为超级创业英雄\",\n    \"author\": \"提姆・德瑞普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984295-7fd163?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品的101个新零售细节\",\n    \"author\": \"张桓/杨永朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢于不同：商业巨头白手起家的秘诀\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050898-fc81cd?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆炸式增长\",\n    \"author\": \"克里夫・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049836-66e2fa?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创始人手记\",\n    \"author\": \"季琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业突围\",\n    \"author\": \"郑旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045927-57d9d5?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电式扩张\",\n    \"author\": \"里德 · 霍夫曼/叶嘉新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇才\",\n    \"author\": \"梅利莎・席林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像开创者一样思考\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密硅谷\",\n    \"author\": \"米歇尔 E. 梅西纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20堂商业思维进阶课\",\n    \"author\": \"环球人物新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线创新\",\n    \"author\": \"李善友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西贝的服务员为什么总爱笑\",\n    \"author\": \"贾林男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的定位\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业头条\",\n    \"author\": \"兰德尔・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败课\",\n    \"author\": \"周磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透股权架构\",\n    \"author\": \"李利威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是风口\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的任务\",\n    \"author\": \"克莱顿・克里斯坦森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出版人\",\n    \"author\": \"艾伦・布里克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险创业\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就想开间自己的小店\",\n    \"author\": \"夏小暖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031782-511b94?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我曾走在崩溃的边缘\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能商业\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来，相信而看见\",\n    \"author\": \"星野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028395-7e1c0c?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激情创业\",\n    \"author\": \"于刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里铁军销售课\",\n    \"author\": \"李立恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不颠覆，就会被淘汰\",\n    \"author\": \"杰・萨米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人思维\",\n    \"author\": \"贾森・卡拉卡尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触点管理\",\n    \"author\": \"安妮·M·许勒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025596-850ca8?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业在路上\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025302-5c18dc?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走红：如何打造个人品牌\",\n    \"author\": \"杰瑞米・戈德曼/阿里・扎格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯长\",\n    \"author\": \"肖恩・阿美拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新理解创业\",\n    \"author\": \"周航\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌创业帮\",\n    \"author\": \"王丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉你的商业计划书\",\n    \"author\": \"卡尔·J. 施拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合伙人制度\",\n    \"author\": \"郑指梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来2：更为简单高效的远程工作方式\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业维艰\",\n    \"author\": \"本・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠创业家\",\n    \"author\": \"金伯莉・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Lean Startup\",\n    \"author\": \"Eric Ries\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019344-110690?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的创业史\",\n    \"author\": \"方兴东/刘强东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019182-1f9b4c?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大象飞\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一键下单：杰夫·贝佐斯与亚马逊的崛起\",\n    \"author\": \"理查德・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业36条军规\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离经叛道\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016914-9a3963?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致所有疯狂的家伙\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你凭什么做好互联网\",\n    \"author\": \"曹政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖故事：实践版\",\n    \"author\": \"高朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经营战略全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业就是要细分垄断\",\n    \"author\": \"李开复/汪华/傅盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众创新\",\n    \"author\": \"埃里克・冯・希佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数型组织\",\n    \"author\": \"萨利姆・伊斯梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑客与画家\",\n    \"author\": \"保罗・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012513-5443cb?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的方法\",\n    \"author\": \"内森・弗尔/杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的基因\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜利的法则\",\n    \"author\": \"铃木博毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国快递桐庐帮\",\n    \"author\": \"孙侃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011220-4eeecf?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"28岁赚千万\",\n    \"author\": \"穷富弹指间\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Elon Musk\",\n    \"author\": \"Ashlee Vance\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资异类\",\n    \"author\": \"王利杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在火星上退休：伊隆・马斯克传\",\n    \"author\": \"亚当・杰佛逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腾讯传1998-2016\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的解答\",\n    \"author\": \"克莱顿・克里斯坦森/迈克尔・雷纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业 : 新创企业的成长思维\",\n    \"author\": \"埃里克・莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宗庆后：万有引力原理\",\n    \"author\": \"迟宇宙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全中国最穷的小伙子发财日记\",\n    \"author\": \"重庆老康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维：商业颠覆与重构\",\n    \"author\": \"陈光锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业时，我们在知乎聊什么？\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周鸿祎自述：我的互联网方法论\",\n    \"author\": \"周鸿祎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创京东\",\n    \"author\": \"李志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005544-0bce57?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷钢铁侠\",\n    \"author\": \"阿什利・万斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1：开启商业与未来的秘密\",\n    \"author\": \"彼得・蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：创业公司的用户与收入增长秘籍\",\n    \"author\": \"范冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004839-80eb34?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说魂儿（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866\",\n    \"category\": \"志怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录3：大结局\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022287-27301b?p=8866\",\n    \"category\": \"志怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奠基者：独立战争那一代\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032793-3eb972?p=8866\",\n    \"category\": \"美国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之夏：美国独立的起源\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866\",\n    \"category\": \"美国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿山墙的安妮（作家榜经典文库）\",\n    \"author\": \"露西・莫德・蒙格玛丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866\",\n    \"category\": \"童书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希利尔儿童世界地理\",\n    \"author\": \"希利尔/休伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866\",\n    \"category\": \"童书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华民国专题史（套装共18册）\",\n    \"author\": \"王川等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513258-eca3f0?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国名家史学典藏系列（共14册）\",\n    \"author\": \"吕思勉/郑振铎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989620-4f5379?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋案重审\",\n    \"author\": \"尚小明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985948-5c1a66?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的逻辑\",\n    \"author\": \"胡悦晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985243-9b3e36?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细说民国大文人系列（增订版）\",\n    \"author\": \"民国文林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049203-a57f9d?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝版民国小书馆\",\n    \"author\": \"叶鋆生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045771-730497?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨天的中国\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾围城（全两册）\",\n    \"author\": \"匪我思存\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035541-d08688?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师书系（全6册）\",\n    \"author\": \"梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出帝制\",\n    \"author\": \"秦晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033669-f94efa?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国才子（套装3本）\",\n    \"author\": \"李克/沈燕/李平/孙琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033495-4c7802?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国逸史（全2册）\",\n    \"author\": \"王习耕/梅振田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033477-6c0e82?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史深处的民国（全3册）\",\n    \"author\": \"江城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国清流系列（全七册）\",\n    \"author\": \"汪兆骞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031422-474dd4?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1943：中国在十字路口\",\n    \"author\": \"周锡瑞/李皓天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忆往谈旧录\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗逻辑\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021993-ee1b86?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卢作孚套装（全三册）\",\n    \"author\": \"鲁/张湛昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020706-3dfc66?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋风云人物\",\n    \"author\": \"董尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020238-6652c1?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海魂国殇\",\n    \"author\": \"肖璞韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020121-e8411c?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京，1912\",\n    \"author\": \"穆儒丐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017358-eeec31?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和十年（套装共2册）\",\n    \"author\": \"郑曦原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014727-5ab666?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华民国史（16册套装）\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012918-26053f?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国灯笼\",\n    \"author\": \"格蕾丝・汤普森・西登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国清流那些大师们（全四册）\",\n    \"author\": \"汪兆骞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010944-bdb64a?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走向共和\",\n    \"author\": \"张建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010215-9eb25f?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣重说晚清民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缠斗：方生与未死\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋大时代\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北鸢\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007899-24deaf?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱雀堂\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个美国记者眼中的真实民国\",\n    \"author\": \"哈雷特・阿班\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师细说中国历史（套装共12册）\",\n    \"author\": \"吕思勉/吴晗/傅斯年等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1933：聆听民国\",\n    \"author\": \"林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀1905大合集（共3册）\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋军阀史话\",\n    \"author\": \"丁中江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006738-a84f44?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录2：最后的复辟挣扎\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"败因：蒋介石为什么败退台湾？\",\n    \"author\": \"武更斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和中的帝制\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005838-df5318?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：角落里的民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005808-4cd3c9?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武夫当权：军阀集团的游戏规则\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005778-e952c5?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国总理段祺瑞\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005451-392314?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：摇晃的中国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005151-2a156e?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1927·谁主沉浮\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大变局1911\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会现场：1911—1928\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004872-0a13ad?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的汪精卫\",\n    \"author\": \"林思云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国就是这么生猛（全四册）\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004713-b94ab1?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国误会了袁世凯\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空居民\",\n    \"author\": \"克里斯托弗・万杰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在太空的一年\",\n    \"author\": \"斯科特 · 凯利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050355-16803e?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类为什么要探索太空\",\n    \"author\": \"克里斯・英庇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"揭秘太空\",\n    \"author\": \"张天蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043209-6575f3?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空全书\",\n    \"author\": \"詹姆斯・特赖菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论与生活\",\n    \"author\": \"兰・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507066-43abdb?p=8866\",\n    \"category\": \"博弈论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"角斗士、海盗与信任博弈\",\n    \"author\": \"哈伊姆・夏皮拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050799-329cef?p=8866\",\n    \"category\": \"博弈论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们被偷走的注意力\",\n    \"author\": \"斯特凡・范德斯蒂格谢尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五维思考法\",\n    \"author\": \"爱德华・伯格/迈克尔・斯塔伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510294-3b55d2?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像火箭科学家一样思考\",\n    \"author\": \"奥赞・瓦罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：透过表面看本质的六步思考法\",\n    \"author\": \"萧亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004149-6c477b?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喧哗的大多数\",\n    \"author\": \"艾伦・雅各布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995443-5d0afe?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案会说话\",\n    \"author\": \"梅田悟司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做出明智判断的10个方法\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的艺术（原书第11版）\",\n    \"author\": \"文森特・赖安・拉吉罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986845-3183cd?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"视觉笔记术\",\n    \"author\": \"卢慈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985774-afd8b0?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的技术\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用性思考的艺术\",\n    \"author\": \"小理查德・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985549-b0053e?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑：让选择变简单的方法\",\n    \"author\": \"欧文・瑟维斯/罗里・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何系统思考\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的策略\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向思考\",\n    \"author\": \"迈克尔・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的思考武器\",\n    \"author\": \"安宅和人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：让所有事情都能正确入手\",\n    \"author\": \"凯茜・拉舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读\",\n    \"author\": \"藤原和博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：不断逼近问题的本质\",\n    \"author\": \"莫琳・希凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻省理工深度思考法\",\n    \"author\": \"平井孝志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六顶思考帽：如何简单而高效的思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信思考\",\n    \"author\": \"泉忠司著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像间谍一样思考\",\n    \"author\": \"卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020934-24a0ae?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的灵魂\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你永远都无法叫醒一个装睡的人\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离婚（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866\",\n    \"category\": \"讽刺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（名著名译丛书）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035391-f2f31c?p=8866\",\n    \"category\": \"讽刺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊脂球（读客经典）\",\n    \"author\": \"莫泊桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028713-de3407?p=8866\",\n    \"category\": \"讽刺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万英镑（译文名著精选）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005322-1058e0?p=8866\",\n    \"category\": \"讽刺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售经理的22条军规\",\n    \"author\": \"仲崇玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511158-7a7bd5?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快速成交\",\n    \"author\": \"俞赛前\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511488-43d314?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级话题\",\n    \"author\": \"肖大侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾客心理战\",\n    \"author\": \"菲利普・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从对抗到共赢\",\n    \"author\": \"杨杜泽/沈莉娟/王赛/范松璐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧②\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧①\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发式赢单\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探的救赎\",\n    \"author\": \"顾溪亭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053478-fd88a8?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意志力销售法\",\n    \"author\": \"杨朝福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售畅销秘籍\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045615-2e3e93?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是销售力\",\n    \"author\": \"余尚祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售铁军\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级营销必修课（套装全8册）\",\n    \"author\": \"帕科・昂德希尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售圣经\",\n    \"author\": \"杰弗里・吉特黙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"25%的回头客创造75%的利润\",\n    \"author\": \"高田靖久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密日本零售业（套装共4册）\",\n    \"author\": \"增田明子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：掌握直线销售的艺术\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售进阶指南（套装共5册）\",\n    \"author\": \"埃尔默・惠勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人岛生存十六人\",\n    \"author\": \"须川邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成交：如何实现可持续性销售\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027513-d2ebed?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑西游\",\n    \"author\": \"绯红色眼泪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025137-84c2d0?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极速成交\",\n    \"author\": \"吉尔・康耐斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024138-4ecf7d?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售脑\",\n    \"author\": \"帕特里克・任瓦茨/克里斯托弗・莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022623-017333?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要玩转情商\",\n    \"author\": \"科林・斯坦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要搞定人\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005031-3463fc?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑：看清这个世界的底牌\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何证明你不是僵尸\",\n    \"author\": \"杰里米・斯特朗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维与说服性写作\",\n    \"author\": \"路易丝・卡茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501387-c9409e?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给职场人的5堂逻辑思考课\",\n    \"author\": \"深泽真太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效论证\",\n    \"author\": \"大卫・莫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗辑思维（全5册）\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004005-539071?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金岳霖哲学三书\",\n    \"author\": \"金岳霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001944-360496?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑的力量\",\n    \"author\": \"郑乐隽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000540-cc1401?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑新引·怎样判别是非\",\n    \"author\": \"殷海光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000414-fe83d1?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的批判性思维\",\n    \"author\": \"莎伦・M. 凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春蚕吐丝\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本口才书\",\n    \"author\": \"陈慕妤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？\",\n    \"author\": \"朱利安・巴吉尼/杰里米・斯唐鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？2\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身边的逻辑学\",\n    \"author\": \"伯纳・派顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985057-68506c?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（原书第11版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼识破真相的思考力\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学原来很有趣\",\n    \"author\": \"齐露露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑演讲\",\n    \"author\": \"大卫祁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学入门很简单\",\n    \"author\": \"兰晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的逻辑题\",\n    \"author\": \"亚历克斯・贝洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑\",\n    \"author\": \"黑格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043518-deed3d?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的写作武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的谈判武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的思考武器\",\n    \"author\": \"安宅和人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惯性思维\",\n    \"author\": \"任白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12堂趣味逻辑课\",\n    \"author\": \"阿里・阿莫萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040821-2fd4bd?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性动物\",\n    \"author\": \"道格拉斯・肯里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11堂极简系统思维课\",\n    \"author\": \"史蒂文・舒斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037311-961ac9?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个逻辑学家去酒吧\",\n    \"author\": \"霍格尔・丹贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032730-cc30a1?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑思维与诡辩\",\n    \"author\": \"张晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030423-4cac61?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲（美国新思想运动之父的逻辑学入门读物）\",\n    \"author\": \"威廉・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有用的逻辑学（第2版）\",\n    \"author\": \"梅森・皮里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025659-255f15?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑工作法\",\n    \"author\": \"西村克己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲\",\n    \"author\": \"威廉姆・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐性逻辑\",\n    \"author\": \"卡尔・诺顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012783-6ffa1c?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的蓝色逻辑书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构思考力\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔原理\",\n    \"author\": \"芭芭拉・明托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007536-e10bf4?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神逻辑：不讲道理的人怎么总有理\",\n    \"author\": \"阿里·阿莫萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007029-6c71ef?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维（原书第10版）\",\n    \"author\": \"布鲁克·诺埃尔·摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Leonardo da Vinci\",\n    \"author\": \"Walter Isaacson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021798-d76fb3?p=8866\",\n    \"category\": \"达芬奇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈默手稿\",\n    \"author\": \"列奥纳多・达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866\",\n    \"category\": \"达芬奇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宪法学讲义（第三版）\",\n    \"author\": \"林来梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990535-066ef2?p=8866\",\n    \"category\": \"宪法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难的一跃\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866\",\n    \"category\": \"宪法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大酋长伊丽莎白\",\n    \"author\": \"贾尔斯・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491760-3ce9b1?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津欧洲史\",\n    \"author\": \"威廉·多伊尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495393-244d19?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的十字军东征\",\n    \"author\": \"奈杰尔・克利夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格：欧洲的十字路口\",\n    \"author\": \"德里克・塞耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497352-fa1e56?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：古典时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497439-2b024e?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：帝国时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497445-985dca?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：转型时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497463-481df6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国与蛮族\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业革命前的欧洲社会与经济\",\n    \"author\": \"卡洛·M. 奇波拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诅咒之塔\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499152-78edc0?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第三辑（套装共10册）\",\n    \"author\": \"汉娜・韦斯特莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499902-209173?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第一辑（套装共10册）\",\n    \"author\": \"乔恩・怀特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500310-1289b6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第二辑（套装共10册）\",\n    \"author\": \"艾米・贝斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500640-a5b55f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大帝国兴衰史（套装共4册）\",\n    \"author\": \"塞西尔・詹金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500286-2a28e0?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代\",\n    \"author\": \"马丁·J. 多尔蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501063-141e2f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服，1016-1130西西里的诺曼王朝Ⅰ\",\n    \"author\": \"约翰・朱利叶斯・诺威奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501414-844f43?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王国，1130-1194西西里的诺曼王朝Ⅱ\",\n    \"author\": \"约翰・朱利叶斯・诺威奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501453-a22ed4?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京时代与英格兰\",\n    \"author\": \"埃莉诺・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的五个德国\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：欧洲文明如何塑造现代世界\",\n    \"author\": \"胡里奥・克雷斯波・麦克伦南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512004-f37e6f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的战争（1618-1648）\",\n    \"author\": \"约翰内斯・布克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003393-26399e?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包罗万象中外历史精选集（套装共20册）\",\n    \"author\": \"汤姆・利文等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000627-ea3343?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争三部曲\",\n    \"author\": \"唐纳德・卡根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998965-3139a8?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年战争史：1618-1648\",\n    \"author\": \"塞缪尔・罗森・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国：一个国家的记忆\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺曼征服\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之门\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民疯狂的欧洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祸起1914\",\n    \"author\": \"克斯・黑斯廷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989533-0de9f7?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的世界史套装（全15卷）\",\n    \"author\": \"肖石忠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙史（贝克知识丛书）\",\n    \"author\": \"瓦尔特·L.伯尔奈克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才时代\",\n    \"author\": \"A.C.格雷林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的复辟\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：从古代源头到20世纪（全3册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲一万年（全三册）\",\n    \"author\": \"J.M.罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048477-099fc8?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马故事\",\n    \"author\": \"阿尔贝托・莫拉维亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045699-a7a41a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲之门\",\n    \"author\": \"谢尔希・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045066-209a47?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一个欧洲\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1848：革命之年\",\n    \"author\": \"迈克・拉波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊与灰鹰（套装共3册）\",\n    \"author\": \"丽贝卡・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1683维也纳之战\",\n    \"author\": \"安德鲁・惠克罗夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧罗巴一千年\",\n    \"author\": \"伊恩・莫蒂默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040827-7ff413?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁古典欧洲怪诞生活志\",\n    \"author\": \"伊丽莎白・阿奇博尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039012-b15b5d?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔干百年简史\",\n    \"author\": \"马细谱/余志和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038772-ae31dc?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以上帝和恺撒之名\",\n    \"author\": \"理查德・巴塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝圆舞曲\",\n    \"author\": \"高林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方之镜\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯教授讲世界历史（全6册）\",\n    \"author\": \"菲利普・范・内斯・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036933-5ae1e2?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴的故事（全六册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美第奇家族的兴衰\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1945：大国博弈下的世界秩序新格局\",\n    \"author\": \"迈克・内伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲与没有历史的人\",\n    \"author\": \"埃里克·R.沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潘帕蓝调\",\n    \"author\": \"罗尔夫・拉佩特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031257-c06207?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：中世纪盛期的欧洲\",\n    \"author\": \"威廉・乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国极简史\",\n    \"author\": \"詹姆斯・霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我未尽的苦难\",\n    \"author\": \"帕特里克・金斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028959-1f1f0f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡王朝：翱翔欧洲700年的双头鹰\",\n    \"author\": \"卫克安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：基督教欧洲的巨变\",\n    \"author\": \"马克・格林格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026463-94526e?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：竞逐权力\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026442-f6a633?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京传奇\",\n    \"author\": \"拉尔斯・布朗沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025038-59b85c?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲中世纪三部曲+燃烧的远征（套装共4册）\",\n    \"author\": \"拉尔斯・布朗沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023808-852d17?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的背影系列（套装共3册）\",\n    \"author\": \"诺曼・斯通等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019785-2a75d6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲现代史：从文艺复兴到现在（套装共2册）\",\n    \"author\": \"约翰・梅里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019770-f8308f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国命运（套装共3册）\",\n    \"author\": \"席勒/基佐/米涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019497-15bf57?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审问欧洲：二战时期的合作、抵抗与报复\",\n    \"author\": \"伊斯特万・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军的故事（全四册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018033-c0a564?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Sea Wolves\",\n    \"author\": \"Lars Brownworth\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017679-c5a00a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲中世纪史\",\n    \"author\": \"朱迪斯・M・本内特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017151-2a3e9a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从黎明到衰落（上下册）\",\n    \"author\": \"雅克・巴尔赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的背影（套装共2册）\",\n    \"author\": \"彼得・贾德森/诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013590-8235a7?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金雀花王朝\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲的陨落\",\n    \"author\": \"马克思・加罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信历史的镜像系列（套装共10本）\",\n    \"author\": \"理查德・埃文斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国通史（套装共6册）\",\n    \"author\": \"钱乘旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后欧洲史（套装共4册）\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011190-f4b570?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从这里读懂第三帝国（套装共8册）\",\n    \"author\": \"齐格蒙・鲍曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：四天、三支大军和三场战役的历史\",\n    \"author\": \"伯纳德・康沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马人的故事（套装共15册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：1453年以来的争霸之途\",\n    \"author\": \"布伦丹・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马灭亡后的地中海世界（上下册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军东征简史（插图本）\",\n    \"author\": \"米肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫廷社会（译文经典）\",\n    \"author\": \"诺贝特・埃利亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：欧洲八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海史诗三部曲\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简欧洲史\",\n    \"author\": \"约翰・赫斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866\",\n    \"category\": \"萌宠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挖历史（套装共2册）\",\n    \"author\": \"私家野史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039153-c70834?p=8866\",\n    \"category\": \"野史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清朝野史大观（全三册）\",\n    \"author\": \"小横香室主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020262-2939f2?p=8866\",\n    \"category\": \"野史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守望先锋（第一卷）\",\n    \"author\": \"美国暴雪娱乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866\",\n    \"category\": \"美漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠侠手记：超人类绝密档案\",\n    \"author\": \"S.D.佩里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985720-975708?p=8866\",\n    \"category\": \"美漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威大战DC\",\n    \"author\": \"里德・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866\",\n    \"category\": \"美漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰盛人生：安利创始人理查・狄维士自传\",\n    \"author\": \"理查・狄维士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866\",\n    \"category\": \"安利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物的追问（二十世纪西方哲学经典）\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985936-6e200a?p=8866\",\n    \"category\": \"现象学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现象学的方法（二十世纪西方哲学经典）\",\n    \"author\": \"埃德蒙德・胡塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985603-202a69?p=8866\",\n    \"category\": \"现象学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒂姆·库克传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果首席设计师：乔纳森传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃兹传：与苹果一起疯狂\",\n    \"author\": \"吉娜・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023163-c9e4da?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库克：苹果的后乔布斯时代\",\n    \"author\": \"冷湖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂夫·乔布斯传\",\n    \"author\": \"沃尔特·艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很高兴认识“我”\",\n    \"author\": \"比尔・沙利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因蓝图\",\n    \"author\": \"罗伯特・普罗明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994126-6e174f?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因与命运\",\n    \"author\": \"斯蒂芬·J.海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的旅程\",\n    \"author\": \"斯宾塞・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同的生命线\",\n    \"author\": \"约翰・苏尔斯顿/乔治娜・费里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命密码\",\n    \"author\": \"尹烨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（40周年增订版）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023907-8aa3e0?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新设计生命\",\n    \"author\": \"约翰・帕林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因魔剪\",\n    \"author\": \"日本NHK“基因组编辑”采访组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020022-f75244?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的手术刀\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因组：人类自传\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多极亚洲中的唐朝\",\n    \"author\": \"王贞平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512703-66fba9?p=8866\",\n    \"category\": \"唐代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：十二种唐朝人生\",\n    \"author\": \"魏泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513810-ba6f6d?p=8866\",\n    \"category\": \"唐代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎（全本全注全译）\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043302-be1cec?p=8866\",\n    \"category\": \"唐代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镀金时代\",\n    \"author\": \"夏清影\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032676-8550ac?p=8866\",\n    \"category\": \"留学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫眼看美国\",\n    \"author\": \"聂平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866\",\n    \"category\": \"留学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周鸿祎自述：我的互联网方法论\",\n    \"author\": \"周鸿祎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866\",\n    \"category\": \"周鸿祎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要把读书当回事\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499101-3b0d57?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读变现\",\n    \"author\": \"山口周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499122-5f9eef?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少时读书\",\n    \"author\": \"废名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野味读书\",\n    \"author\": \"孙犁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会读书\",\n    \"author\": \"叶圣陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003942-ca36b7?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂一本书\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸说经典作品集（套装共4册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星条旗下的茶叶蛋\",\n    \"author\": \"方柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用Kindle高效学习\",\n    \"author\": \"直树桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032121-9975ae?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书毁了我\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030408-4ed360?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样读经典\",\n    \"author\": \"王宁/彭林/孙钦善\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029706-559436?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深阅读\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准表达：让你的方案在最短的时间内打动人心\",\n    \"author\": \"高田贵久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022005-8ea54a?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洋葱阅读法\",\n    \"author\": \"彭小六\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021639-2cdecd?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书都不会读，你还想成功\",\n    \"author\": \"二志成/郑会一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019692-41d226?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命最后的读书会\",\n    \"author\": \"威尔・施瓦尔贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019641-a06ea5?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读一本书\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书是一辈子的事\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017013-d5b280?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旅行与读书\",\n    \"author\": \"詹宏志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的匠人（全20册套装）\",\n    \"author\": \"知了青年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007389-02fb3c?p=8866\",\n    \"category\": \"艺术文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷之火（第3版）\",\n    \"author\": \"迈克尔・斯韦因/保罗・弗赖伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光刻巨人\",\n    \"author\": \"瑞尼・雷吉梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"程序员编程语言经典合集（共5册）\",\n    \"author\": \"兰斯・尼塞斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996589-3e3123?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能机器如何思考\",\n    \"author\": \"肖恩・格里什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Excel 2019公式、函数应用大全\",\n    \"author\": \"张明真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053154-079bbd?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动手学深度学习\",\n    \"author\": \"阿斯顿・张等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python高性能编程\",\n    \"author\": \"戈雷利克/欧日沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技与和平\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047055-d0635a?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变未来的九大算法\",\n    \"author\": \"约翰・麦考密克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字人文\",\n    \"author\": \"安妮·博迪克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能的进化\",\n    \"author\": \"赫克托・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础读懂云计算\",\n    \"author\": \"纳扬・鲁帕拉里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028467-7f62ed?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香农传\",\n    \"author\": \"吉米・索尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码朋克\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的乐趣\",\n    \"author\": \"王晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用Python写网络爬虫（第2版）\",\n    \"author\": \"Katharine Jarmul\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：基础学习篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：服务器架设篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推荐系统实践\",\n    \"author\": \"项亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通正则表达式：第3版\",\n    \"author\": \"Jeffrey E·F·Friedl\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络是怎样连接的\",\n    \"author\": \"户根勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从Python开始学编程\",\n    \"author\": \"Vamei\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java程序员修炼之道\",\n    \"author\": \"Benjamin J. Evans/Martijn Verburg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Vim实用技巧\",\n    \"author\": \"Drew Neil\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020997-2ff693?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Linux就该这么学\",\n    \"author\": \"刘遄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020865-7cfd40?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Cloud微服务实战\",\n    \"author\": \"翟永超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020250-1e5ad7?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是数字的\",\n    \"author\": \"Brian W·Kernighan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019173-51d646?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Kubernetes实战（套装共2册）\",\n    \"author\": \"吴龙辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019200-6c0097?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"计算广告\",\n    \"author\": \"刘鹏/王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"GitHub入门与实践\",\n    \"author\": \"大塚弘记\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018630-3c62a1?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第3版）\",\n    \"author\": \"Wesley Chun\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大教堂与集市\",\n    \"author\": \"Eric S. Raymond\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017643-c49df8?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程：从入门到实践\",\n    \"author\": \"埃里克・马瑟斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计模式之禅（第2版）\",\n    \"author\": \"秦小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS禅意花园（修订版）\",\n    \"author\": \"Dave Shea/Mollv E\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习\",\n    \"author\": \"伊恩・古德费洛/约书亚・本吉奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013449-ede60c?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一本Docker书（修订版）\",\n    \"author\": \"詹姆斯・特恩布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013125-e87194?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极算法\",\n    \"author\": \"佩德罗・多明戈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解HTTP\",\n    \"author\": \"上野宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"iOS编程（第4版）\",\n    \"author\": \"Christian Keur/Aaron Hillegass\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法图解\",\n    \"author\": \"Aditya Bhargava\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程快速上手\",\n    \"author\": \"Al Sweigart\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法神探\",\n    \"author\": \"杰瑞米・库比卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009255-fb075f?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链\",\n    \"author\": \"长铗/韩锋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第二版）\",\n    \"author\": \"丘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子的编程之旅\",\n    \"author\": \"Warren Sande\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别怕，Excel VBA其实很简单\",\n    \"author\": \"罗国发\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005424-36e2bc?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近视怎么办：眼科医生教你正确配镜和治疗\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007638-12f9a2?p=8866\",\n    \"category\": \"近视\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上岸：一个海淀妈妈的重点学校闯关记\",\n    \"author\": \"安柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493359-744141?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子的品格\",\n    \"author\": \"彭凯平/闫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493764-ff4380?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是微学习\",\n    \"author\": \"罗宾・德费利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500091-56a0ca?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔玉涛自然养育法\",\n    \"author\": \"崔玉涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501618-4b43b7?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·小学部分·全27册\",\n    \"author\": \"格林兄弟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509292-20cf9c?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的悔过书\",\n    \"author\": \"李柳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510222-3ee66f?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡前育儿法\",\n    \"author\": \"李永爱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510288-757ee6?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵程序设计丛书：Java进阶高手（套装共8册）\",\n    \"author\": \"沃伯顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往未来之路\",\n    \"author\": \"赵昂/任国荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半熟家庭\",\n    \"author\": \"金义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511065-6c9ffd?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让孩子像哲学家一样会思考\",\n    \"author\": \"张玮/沈文婕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教育的常识\",\n    \"author\": \"尹建莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511668-05c413?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然界的印象（作家榜经典文库）\",\n    \"author\": \"儒勒・列那尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511644-242e91?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小舍得\",\n    \"author\": \"鲁引弓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512214-5dda71?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顽童小番茄\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的学区房是你家的书房\",\n    \"author\": \"佐藤亮子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真希望我父母读过这本书\",\n    \"author\": \"菲利帕・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000732-ac2b7d?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"准备\",\n    \"author\": \"黛安娜・塔文纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998926-07fdc2?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大壮的信\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996169-ca0701?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们今天怎样做父亲\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995407-79bcac?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡骏24堂写作课\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995332-e2f2c1?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育女孩（成长版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994843-6e6be3?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪孩子终身成长\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991630-eba848?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学好数学并不难（套装共2册）\",\n    \"author\": \"孙亮朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990406-b55265?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生非此\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作力\",\n    \"author\": \"高语罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发展心理学套装（第10版）\",\n    \"author\": \"戴安娜・帕帕拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050526-22b5f0?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大夏教育文存（全11卷）\",\n    \"author\": \"杜成宪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049830-9cf21a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的语言\",\n    \"author\": \"达娜・萨斯金德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童教育心理学\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反溺爱\",\n    \"author\": \"罗恩・利伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎妈战歌\",\n    \"author\": \"蔡美儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21招，让孩子独立\",\n    \"author\": \"叶壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040317-3e999a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"园丁与木匠\",\n    \"author\": \"艾莉森・高普尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039465-e654bf?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统整的力量\",\n    \"author\": \"陈怡倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038664-3ab357?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不管教的勇气\",\n    \"author\": \"岸见一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035196-6f1a79?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰教育全球第一的秘密（珍藏版）\",\n    \"author\": \"陈之华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的升级\",\n    \"author\": \"约翰・库奇/贾森・汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画古诗文\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理营养\",\n    \"author\": \"林文采/伍娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子全集（作家榜经典文库）\",\n    \"author\": \"埃・奥・卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高分智囊团\",\n    \"author\": \"郑书豪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030951-f6b083?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给所有人的编程思维\",\n    \"author\": \"吉姆・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作课\",\n    \"author\": \"叶开\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030036-d3ec1e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正面管教\",\n    \"author\": \"简・尼尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029700-2aae5a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给父母的未来之书\",\n    \"author\": \"童行学院教研团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大学的精神\",\n    \"author\": \"蒲实/陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026901-285fb4?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一流的教养\",\n    \"author\": \"杰瑞米・克拉克/乔若莎・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025281-72dc34?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄代表作\",\n    \"author\": \"河合隼雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身幼儿园\",\n    \"author\": \"米切尔・雷斯尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希利尔儿童世界地理\",\n    \"author\": \"希利尔/休伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的教育\",\n    \"author\": \"艾德蒙多・德・亚米契斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别的女生萨哈拉\",\n    \"author\": \"爱斯米・科德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022122-a16d36?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛通识教育红皮书\",\n    \"author\": \"哈佛委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020907-daf2ca?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子是脚，教育是鞋\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020505-1ae1af?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"0～12岁，给孩子一个好性格\",\n    \"author\": \"葛安妮/葛碧建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018738-0a0c03?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爸爸军团\",\n    \"author\": \"布鲁斯・费勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017754-627360?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让学校重生\",\n    \"author\": \"肯・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017646-ec3f15?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼老大，天使老二\",\n    \"author\": \"诸葛越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017640-9ed028?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么被霸凌？\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015261-36ff57?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的觉醒\",\n    \"author\": \"沙法丽・萨巴瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014697-afca27?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正的蒙氏教育在家庭精选（套装共三册）\",\n    \"author\": \"白玛琳/骆思洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014703-24621f?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏力\",\n    \"author\": \"劳伦斯・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014142-23eb93?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Between Parent and Child\",\n    \"author\": \"Haim G Ginott\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013977-185e23?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度量：一首献给数学的情歌\",\n    \"author\": \"保罗・洛克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013179-ed1db5?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湛庐文化心视界分心系列（套装共4册）\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012798-3a30e1?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾国教育病理\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本趣味数理化书（套装共三册）\",\n    \"author\": \"韩垒/田梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育男孩（典藏版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱智书系(套装共7册)\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011070-3f1f08?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾徳哲学启蒙少儿书系（套装6册）\",\n    \"author\": \"乔斯坦・贾德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009585-93bc28?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的绵羊\",\n    \"author\": \"威廉・德雷谢维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见孩子，遇见更好的自己\",\n    \"author\": \"赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"P.E.T.父母效能训练\",\n    \"author\": \"托马斯・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的男孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007704-26fa9e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的女孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱（套装全2册）\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理日记（套装1-9册）\",\n    \"author\": \"西西弗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小别离\",\n    \"author\": \"鲁引弓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼看懂小孩子\",\n    \"author\": \"王勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完整的成长：儿童生命的自我创造\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱和自由：孙瑞雪幼儿教育演讲录\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁拿走了孩子的幸福\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·幼儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006141-816059?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西尔斯育儿经\",\n    \"author\": \"西尔斯夫妇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定本育儿百科\",\n    \"author\": \"松田道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你慢慢长大\",\n    \"author\": \"刘瑜/周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005649-79868f?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像梁启超那样做父亲\",\n    \"author\": \"俞祖华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005115-40ae6c?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六韬（全本全注全译）\",\n    \"author\": \"陈曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866\",\n    \"category\": \"谋略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬球：政治是这样玩的\",\n    \"author\": \"克里斯·马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866\",\n    \"category\": \"谋略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦制两千年\",\n    \"author\": \"谌旭彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509367-728e53?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦谜：重新发现秦始皇（插图增订版）\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511506-fe2b0a?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜夫论（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983326-206879?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一看就懂的大汉史（修订版）\",\n    \"author\": \"朱真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053139-fdde88?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邂逅秦始皇\",\n    \"author\": \"中信出版·大方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049749-255362?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦谜：重新发现秦始皇\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014271-174e75?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早期中华帝国：秦与汉\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009264-03cc70?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东汉的豪族\",\n    \"author\": \"杨联陛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006837-a944f1?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈允斌顺时生活的智慧（全12册）\",\n    \"author\": \"陈允斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498798-9bff2a?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起来粉碎朋友圈养生谣言\",\n    \"author\": \"好奇博士团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优雅老去\",\n    \"author\": \"杰罗尔德・温特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990655-a922dd?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨提亚冥想\",\n    \"author\": \"约翰・贝曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很老很老的老偏方大全集（共10册）\",\n    \"author\": \"胡丽娟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会呼吸\",\n    \"author\": \"帕特里克・麦基翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是你吃出来的\",\n    \"author\": \"夏萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食療聖經\",\n    \"author\": \"Michael Greger, MD\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031794-797945?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷物大脑\",\n    \"author\": \"戴维・珀尔马特/戴维・珀尔马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食的迷思\",\n    \"author\": \"蒂姆・斯佩克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破解生死大数据\",\n    \"author\": \"杰瑞米・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西1\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱：失眠、抑郁、焦虑（套装共3册）\",\n    \"author\": \"凯特・米德尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019281-098512?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与毁灭\",\n    \"author\": \"彼得・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866\",\n    \"category\": \"法国大革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑与法兰西第一帝国（全2册）\",\n    \"author\": \"约瑟夫・富歇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031704-299c68?p=8866\",\n    \"category\": \"法国大革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大外交\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866\",\n    \"category\": \"外交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力的教训\",\n    \"author\": \"弗朗索瓦・奥朗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866\",\n    \"category\": \"外交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗盘与风向标\",\n    \"author\": \"雷蒙德・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028383-8bed41?p=8866\",\n    \"category\": \"外交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"峰会：影响20世纪的六场元首会谈\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866\",\n    \"category\": \"外交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知工具\",\n    \"author\": \"塞西莉亚・海耶斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491715-7dc597?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙（白金升级版）\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不必太用力\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿智者的法则\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维与说服性写作\",\n    \"author\": \"路易丝・卡茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501387-c9409e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的一天·鹈鹕丛书\",\n    \"author\": \"苏珊・格林菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501504-478cce?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九宫格写作法\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁：心理学实证研究社会思维\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509499-e67aab?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五维思考法\",\n    \"author\": \"爱德华・伯格/迈克尔・斯塔伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510294-3b55d2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给职场人的5堂逻辑思考课\",\n    \"author\": \"深泽真太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的世界\",\n    \"author\": \"许奔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大产品思维\",\n    \"author\": \"王雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放空\",\n    \"author\": \"曼诺诗・左莫若迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511116-f9cceb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交谈的要素\",\n    \"author\": \"N.J.恩菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511476-4db402?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗（青少版）\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511956-44780a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商2\",\n    \"author\": \"保罗·G.史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511989-b7bf29?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有钱人和你想的不一样\",\n    \"author\": \"哈维・艾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512172-8e2586?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费曼学习法\",\n    \"author\": \"尹红心/李伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512211-79ec46?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：一本故事丰富的决策行为指南\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧大脑\",\n    \"author\": \"艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513534-db2475?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明哲学逻辑思维读本（套装共5册）\",\n    \"author\": \"威廉姆・韦斯利・库克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513669-9bcbcb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"责任病毒\",\n    \"author\": \"罗杰・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常生活中的发明原理\",\n    \"author\": \"高木芳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果人类是整个宇宙的大脑\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003759-1d9daf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢思考\",\n    \"author\": \"特奥・康普诺利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003558-4cb404?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿透：像社会学家一样思考\",\n    \"author\": \"严飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002463-b7f860?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构化写作\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波斯公主选驸马\",\n    \"author\": \"帕维尔・莫托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆宫殿\",\n    \"author\": \"石伟华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闭环思维\",\n    \"author\": \"智俊启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2轴思维\",\n    \"author\": \"木部智之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999532-427444?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别想那只大象\",\n    \"author\": \"乔治・莱考夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999469-0222ec?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大器晚成\",\n    \"author\": \"里奇・卡尔加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的批判性思维\",\n    \"author\": \"莎伦・M. 凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的互联网思维\",\n    \"author\": \"伯纳多・A. 胡伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级个体\",\n    \"author\": \"徐大维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考\",\n    \"author\": \"樱田润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997600-d2665d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知红利\",\n    \"author\": \"谢春霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何不切实际地解决实际问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效迭代\",\n    \"author\": \"冯起升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式学习\",\n    \"author\": \"周林文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级大脑的七个习惯\",\n    \"author\": \"菅原道仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995182-38b399?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讲好一个故事\",\n    \"author\": \"默里・诺塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995053-9ef98f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？\",\n    \"author\": \"朱利安・巴吉尼/杰里米・斯唐鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？2\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好思考\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何形成清晰的观点\",\n    \"author\": \"查尔斯·S.皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何启动黄金圈思维\",\n    \"author\": \"西蒙・斯涅克/戴维・米德/彼得・多克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992221-a4d256?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反直觉\",\n    \"author\": \"理查德・肖顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直面不确定性\",\n    \"author\": \"大辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默感\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"允许被说服\",\n    \"author\": \"艾尔・比坦帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中11·宇宙之道，就在围棋\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会决断（原书第2版）\",\n    \"author\": \"苏・哈德菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界竞争\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维魔方\",\n    \"author\": \"陈波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图攻略\",\n    \"author\": \"王健文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样用脑不会累\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服\",\n    \"author\": \"邝大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的本质\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987280-13909c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维：关于决策、问题解决与预测的新科学\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987145-752493?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的方式\",\n    \"author\": \"阿尔弗雷德・诺思・怀特海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987088-319fee?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图完整手册\",\n    \"author\": \"东尼・博赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987073-f54ce6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是谁出的题这么难，到处都是正确答案\",\n    \"author\": \"邱天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考法\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非对称风险\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧与魔咒\",\n    \"author\": \"塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的艺术（原书第11版）\",\n    \"author\": \"文森特・赖安・拉吉罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986845-3183cd?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破天性\",\n    \"author\": \"布赖恩・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考与表达的20堂课\",\n    \"author\": \"久恒启一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985939-5f27b0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是动机控\",\n    \"author\": \"池田贵将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用性思考的艺术\",\n    \"author\": \"小理查德・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985549-b0053e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我们阅读时，我们看到了什么\",\n    \"author\": \"彼得・门德尔桑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课2：答的艺术\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985396-3ff85c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课1：说的艺术\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985207-998a83?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力清单\",\n    \"author\": \"吉恩・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（30周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生新算法\",\n    \"author\": \"矢野和男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用数据解决实际问题\",\n    \"author\": \"柏木吉基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984538-3d33ff?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商务思维工具箱系列（套装共3册）\",\n    \"author\": \"HRInstitute\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984514-700431?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新情商\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治动物\",\n    \"author\": \"里克・申克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相与错觉\",\n    \"author\": \"塔莎・欧里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找爽点\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学统治世界（全三册）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052998-895117?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（原书第11版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知·情感·意志\",\n    \"author\": \"詹姆斯・马克・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深奥的简洁\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重构\",\n    \"author\": \"村西边老王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学原来很有趣\",\n    \"author\": \"齐露露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑演讲\",\n    \"author\": \"大卫祁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专家之死\",\n    \"author\": \"托马斯・尼科尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052356-47c0eb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理如何改变商业模式\",\n    \"author\": \"卡拉・欧戴尔/辛迪・休伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的策略\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力迁移\",\n    \"author\": \"乔治・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简社交\",\n    \"author\": \"莫拉格・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界学习\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学入门很简单\",\n    \"author\": \"兰晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的逻辑题\",\n    \"author\": \"亚历克斯・贝洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡入职培训第一课\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西成功定律\",\n    \"author\": \"拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡笔记思考法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键提问\",\n    \"author\": \"詹姆斯·E.瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俞军产品方法论\",\n    \"author\": \"俞军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹性\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟沟通课\",\n    \"author\": \"鱼住理英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱共情\",\n    \"author\": \"保罗・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力思维\",\n    \"author\": \"安东尼・塔斯加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑\",\n    \"author\": \"张羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导就是让人追随\",\n    \"author\": \"约翰・科特/霍尔格・拉斯格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险认知\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维与陷阱\",\n    \"author\": \"史蒂夫・卡斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"模型思维\",\n    \"author\": \"斯科特・佩奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048045-63863d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度说服\",\n    \"author\": \"梁秋阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挫折复原力\",\n    \"author\": \"丹尼斯・穆蓝纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反套路\",\n    \"author\": \"大卫・迪萨沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046386-816bad?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被左右的独立思维\",\n    \"author\": \"塔利・沙罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物思维\",\n    \"author\": \"查尔斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简捷启发式：有限理性让我们更聪明\",\n    \"author\": \"格尔德・吉仁泽等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电式扩张\",\n    \"author\": \"里德 · 霍夫曼/叶嘉新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略几何学\",\n    \"author\": \"罗伯特・凯德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆天才\",\n    \"author\": \"弗朗西斯卡・吉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为未知而教，为未来而学\",\n    \"author\": \"戴维・珀金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶馆（作家榜经典文库）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌：信息不足时如何做出高明决策\",\n    \"author\": \"安妮・杜克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智识的冒险\",\n    \"author\": \"潘启雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043764-78293a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧书（作家榜经典文库）\",\n    \"author\": \"巴尔塔萨尔・格拉西安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而不凡\",\n    \"author\": \"维申・拉克雅礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像开创者一样思考\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡图表工作法\",\n    \"author\": \"齐藤显一/竹内里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的创造力类型\",\n    \"author\": \"梅塔・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惯性思维\",\n    \"author\": \"任白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人极简图表工作法\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要输在思维方法上\",\n    \"author\": \"夏欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040785-53d198?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12堂趣味逻辑课\",\n    \"author\": \"阿里・阿莫萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040821-2fd4bd?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔原理2\",\n    \"author\": \"芭芭拉・明托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040257-8090ee?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反常识\",\n    \"author\": \"邓肯·J. 瓦茨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038859-8c613f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用主义和语用论\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性动物\",\n    \"author\": \"道格拉斯・肯里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学习\",\n    \"author\": \"斯科特・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何结交比你更优秀的人\",\n    \"author\": \"康妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11堂极简系统思维课\",\n    \"author\": \"史蒂文・舒斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037311-961ac9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败课\",\n    \"author\": \"周磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技巧：如何用一年时间获得十年的经验\",\n    \"author\": \"郝培强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生涯线\",\n    \"author\": \"戴维・范鲁伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035568-93b2da?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么\",\n    \"author\": \"朱迪亚・珀尓/达纳・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论大战略\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰度决策\",\n    \"author\": \"小约瑟夫・巴达拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极速写作\",\n    \"author\": \"剑飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控关系\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大潜能\",\n    \"author\": \"肖恩・埃科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034437-0178db?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：让所有事情都能正确入手\",\n    \"author\": \"凯茜・拉舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变提问，改变人生（原书第3版）\",\n    \"author\": \"梅若李・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失误：为什么我们总爱犯错？\",\n    \"author\": \"凯瑟琳・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转变：应对复杂新世界的思维方式\",\n    \"author\": \"弗雷德蒙德・马利克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何创建天才团队\",\n    \"author\": \"里奇・卡尔加德/迈克尔・马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么需要生物学思维\",\n    \"author\": \"塞缪尔・阿贝斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲从与叛逆\",\n    \"author\": \"米歇尔・巴德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的升级\",\n    \"author\": \"约翰・库奇/贾森・汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑与意识\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞奔的物种\",\n    \"author\": \"大卫・伊格曼/安东尼・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道\",\n    \"author\": \"芭芭拉・奥克利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033018-b16bf2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道（第2版）\",\n    \"author\": \"乔希・维茨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法：职场问题解决篇\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险创业\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进2：解锁万物的心智进化法\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自下而上\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲点：为什么我们易被偏见左右\",\n    \"author\": \"约瑟夫・哈利南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031374-2ecc9a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"升维：让你人生出众的另类通道\",\n    \"author\": \"褚明宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放你的大脑\",\n    \"author\": \"伊德里斯・阿贝尔坎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商：我们该如何应对坏事件\",\n    \"author\": \"保罗・史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知尺度\",\n    \"author\": \"魏坤琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·心灵篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030789-52e5c2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表象与本质\",\n    \"author\": \"侯世达/桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消极情绪的力量\",\n    \"author\": \"托德・卡什丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给所有人的编程思维\",\n    \"author\": \"吉姆・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实\",\n    \"author\": \"汉斯・罗斯林/欧拉・罗斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众（作家榜经典文库）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑思维与诡辩\",\n    \"author\": \"张晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030423-4cac61?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高阶运营\",\n    \"author\": \"龙共火火\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会创新\",\n    \"author\": \"罗德・贾金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030234-48a5cc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的艺术\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有你的计划，世界另有计划\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029721-72fca7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的哲学\",\n    \"author\": \"彼得・卡夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You are a Badass\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲（美国新思想运动之父的逻辑学入门读物）\",\n    \"author\": \"威廉・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞大作战（套装三册）\",\n    \"author\": \"玛特・富尼耶等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028755-fd2efe?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界精英的带人术\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027900-f1558d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习：用更短的时间达到更佳效果和更好成绩\",\n    \"author\": \"亚当・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知突围：做复杂时代的明白人\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高手：精英的见识和我们的时代\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：如何有效利用注意力做出理性决策\",\n    \"author\": \"川上浩司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027192-709fbf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果我们错了呢？\",\n    \"author\": \"查克・克洛斯特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027147-aafe1f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力变现\",\n    \"author\": \"林宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单统计学\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知迭代\",\n    \"author\": \"卡罗琳・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性之谜\",\n    \"author\": \"雨果・梅西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思维\",\n    \"author\": \"S.J. Scott/Barrie Davenport\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思辨与立场\",\n    \"author\": \"理查德・保罗/琳达・埃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知升级\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025041-559d0c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑力升级手册\",\n    \"author\": \"杰夫・布朗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024762-dccfd0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉泵和其他思考工具\",\n    \"author\": \"丹尼尔・丹尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变世界\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023787-eebab9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超意识\",\n    \"author\": \"菲尔图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错不在我\",\n    \"author\": \"卡罗尔・塔夫里斯/艾略特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023679-7893fe?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与原生家庭和解\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体赋能\",\n    \"author\": \"YouCore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售进化论\",\n    \"author\": \"陈欢/陈澄波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思维\",\n    \"author\": \"叶修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023460-34d28e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：不断逼近问题的本质\",\n    \"author\": \"莫琳・希凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单的逻辑学\",\n    \"author\": \"麦克伦尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知天性\",\n    \"author\": \"彼得・布朗/亨利・勒迪格三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象思维\",\n    \"author\": \"帕甘・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同感\",\n    \"author\": \"吉姆・西诺雷利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经的逻辑\",\n    \"author\": \"埃利泽・斯滕伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"态度\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023064-924c58?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在革命：一本关于成长的书\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好奇心：保持对未知世界永不停息的热情\",\n    \"author\": \"伊恩・莱斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022995-3678fc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深阅读\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终有一天你会懂\",\n    \"author\": \"琢磨先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么总是看错人\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022611-49a550?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：从思维到行动\",\n    \"author\": \"刘学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万万没想到：用理工科思维理解世界\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生总会有办法 : 用逆向思维解决难题\",\n    \"author\": \"戴维・尼文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"延展：释放有限资源的无限潜能\",\n    \"author\": \"斯科特・索南沙因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒思考：像麦肯锡精英一样思考\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021822-d42b59?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今日简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六顶思考帽：如何简单而高效的思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时机管理：完美时机的隐秘模式\",\n    \"author\": \"丹尼尔・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变人生\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法之美：指导工作与生活的算法\",\n    \"author\": \"布莱恩・克里斯汀/汤姆・格里菲思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021150-6920ac?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X的奇幻之旅\",\n    \"author\": \"史蒂夫・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何记忆\",\n    \"author\": \"罗恩・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020949-e41027?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知心理学（原书第5版）\",\n    \"author\": \"凯瑟琳・加洛蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020787-06bc90?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Thinking, Fast and Slow\",\n    \"author\": \"Daniel Kahneman\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020733-b4e6fa?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度案例思考法\",\n    \"author\": \"井上达彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020535-71effc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度模仿\",\n    \"author\": \"井上达彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020490-8e6c68?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有序：关于心智效率的认知科学\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020190-284690?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡思维\",\n    \"author\": \"洛威茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大创意的诞生\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019743-14b1f9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当机立断\",\n    \"author\": \"出口治明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝佳提问：探询改变商业与生活\",\n    \"author\": \"沃伦・贝格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功与运气\",\n    \"author\": \"罗伯特・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019080-7e8875?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压榨式提问\",\n    \"author\": \"布莱恩・格雷泽/查尔斯・菲什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018912-d6e59c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识的错觉\",\n    \"author\": \"史蒂文・斯洛曼/菲利普・费恩巴赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018315-259ab2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台革命：改变世界的商业模式\",\n    \"author\": \"杰奥夫雷 G. 帕克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不过低配的人生\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017898-288643?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效学习\",\n    \"author\": \"乌尔里希・伯泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗火\",\n    \"author\": \"史蒂芬・科特勒/杰米・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017394-61ea85?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能\",\n    \"author\": \"卫蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017163-f4def7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书是一辈子的事\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017013-d5b280?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决断力\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效提问\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016725-e622b1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（第十版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016674-f06b5d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆转\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016524-460c47?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸工作整理术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016548-7f5190?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸创意思考术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷恋：如何制造持久的吸引力\",\n    \"author\": \"莎莉・霍格斯黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016335-64929d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事思维\",\n    \"author\": \"安妮特・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维与创造性思维\",\n    \"author\": \"加里・R・卡比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016056-730262?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲\",\n    \"author\": \"威廉姆・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理的迷宫\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策的智慧\",\n    \"author\": \"大卫・亨德森/查尔斯・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性的非理性\",\n    \"author\": \"郑毓煌/苏丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015717-410de3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与理性\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015546-5d6351?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非天赋\",\n    \"author\": \"斯科特・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015531-e896f7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒的困境\",\n    \"author\": \"威廉姆・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的大猩猩\",\n    \"author\": \"克里斯托弗・查布利斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交天性\",\n    \"author\": \"马修・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们如何正确思维\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人溺水\",\n    \"author\": \"拉里莎・麦克法夸尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请停止无效努力\",\n    \"author\": \"孙圈圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与判断\",\n    \"author\": \"斯科特・普劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规则颠覆者\",\n    \"author\": \"内田和成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015054-0bd70a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第七感\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助推\",\n    \"author\": \"理查德・泰勒/卡斯・桑斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014280-c17c13?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑匣子思维：我们如何更理性地犯错\",\n    \"author\": \"马修・萨伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014211-1c5f9b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何打造你的独特观点\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014178-6adf58?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新自信力\",\n    \"author\": \"戴维・凯利/汤姆・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破自我的标签\",\n    \"author\": \"陈虎平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗时间\",\n    \"author\": \"刘未鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Stealing Fire\",\n    \"author\": \"Steven Kotler / Jamie Wheal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013662-bcb2e6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论的诡计\",\n    \"author\": \"王春永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论平话\",\n    \"author\": \"王则柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"系统之美\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跃迁：成为高手的技术\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013161-eaef0d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"U型理论（全新升级版）\",\n    \"author\": \"奥托・夏莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013143-40fa8b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追时间的人\",\n    \"author\": \"阳志平等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013005-f92fca?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐性逻辑\",\n    \"author\": \"卡尔・诺顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012783-6ffa1c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先发影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012780-a20378?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顿悟：捕捉灵感的艺术\",\n    \"author\": \"查尔斯・基弗/马尔科姆・康斯特布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012723-eac5ab?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的蓝色逻辑书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼数学\",\n    \"author\": \"乔丹・艾伦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012669-8145da?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微创新\",\n    \"author\": \"德鲁・博迪/雅各布・戈登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福商业决策课\",\n    \"author\": \"卡尔・斯佩茨勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的方法\",\n    \"author\": \"内森・弗尔/杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的基因\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才源自刻意练习\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012300-54ef8d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粘住\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011994-36d924?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的乐趣：Matrix67数学笔记\",\n    \"author\": \"顾森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是思维\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011256-cc5193?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提问的力量\",\n    \"author\": \"弗兰克・赛斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010539-958825?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"习惯的力量（图文精编版）\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维力：高效的系统思维\",\n    \"author\": \"王世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的本能：类比思维的力量\",\n    \"author\": \"约翰・波拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑天鹅：如何应对不可预知的未来（升级版）\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜意识：控制你行为的秘密\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009711-44b0d1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最重要的事，只有一件\",\n    \"author\": \"加里・凯勒/杰伊・帕帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智行动的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009012-b48f59?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冥想5分钟，等于熟睡一小时\",\n    \"author\": \"里克・汉森/理查德・蒙迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008994-681a13?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些古怪又让人忧心的问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008988-3e59d8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学的思维方式\",\n    \"author\": \"保罗・海恩/彼得・勃特克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008682-5efea1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精要主义\",\n    \"author\": \"格雷戈・麦吉沃恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008661-c552a6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活学活用博弈论\",\n    \"author\": \"詹姆斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构思考力\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来：更为简单有效的商业思维\",\n    \"author\": \"贾森・弗里德/大卫・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷读术（白金珍藏版）\",\n    \"author\": \"石真语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔原理\",\n    \"author\": \"芭芭拉・明托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007536-e10bf4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稀缺：我们是如何陷入贫穷与忙碌的\",\n    \"author\": \"塞德希尔・穆来纳森 / 埃尔德・沙菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡工具\",\n    \"author\": \"保罗・弗里嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要自学\",\n    \"author\": \"张玳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆谱：身份的潜规则\",\n    \"author\": \"余不讳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考，快与慢\",\n    \"author\": \"丹尼尔・卡尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清单革命\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决问题最简单的方法\",\n    \"author\": \"达伦・布里奇/戴维・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神逻辑：不讲道理的人怎么总有理\",\n    \"author\": \"阿里·阿莫萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007029-6c71ef?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进：如何成为一个很厉害的人\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险与好的决策\",\n    \"author\": \"格尔德·吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷禁书\",\n    \"author\": \"查尔斯・哈尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维（原书第10版）\",\n    \"author\": \"布鲁克·诺埃尔·摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维工具（原书第3版）\",\n    \"author\": \"理查德·保罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006525-573ffd?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台战略\",\n    \"author\": \"陈威如/余卓轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院最受欢迎的思维课\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行在宽处\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗辑思维合集（套装共5册）\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006180-058c85?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维：商业颠覆与重构\",\n    \"author\": \"陈光锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（20周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长的极限\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化思维\",\n    \"author\": \"凯文・韦巴赫/丹・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆力训练法\",\n    \"author\": \"刘志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005052-7a59fb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攻守：可转债投资实用手册\",\n    \"author\": \"饕餮海等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492006-a0e7e3?p=8866\",\n    \"category\": \"可转债\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书（第2版）\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866\",\n    \"category\": \"可转债\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866\",\n    \"category\": \"可转债\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三个警察\",\n    \"author\": \"弗兰・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046809-668e12?p=8866\",\n    \"category\": \"爱尔兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个青年艺术家的画像（读客经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024966-4ddb18?p=8866\",\n    \"category\": \"爱尔兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林人\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020115-886df2?p=8866\",\n    \"category\": \"爱尔兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013971-811c23?p=8866\",\n    \"category\": \"爱尔兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤汤奇幻童年故事本（套装6册）\",\n    \"author\": \"汤汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事经济学\",\n    \"author\": \"罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样写故事\",\n    \"author\": \"莉萨・克龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的大脑失控了\",\n    \"author\": \"银教授/温酒/英国报姐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032685-82f30e?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你坏\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022809-a0e444?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事思维\",\n    \"author\": \"安妮特・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲出一个精彩故事\",\n    \"author\": \"麦成辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样写出好故事\",\n    \"author\": \"詹姆斯・斯科特・贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011034-28e8b6?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尔德·达尔作品典藏（共13册）\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照诗词全集（作家榜经典文集）\",\n    \"author\": \"李清照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳永词集（词系列）\",\n    \"author\": \"柳永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033708-dc7a4b?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词集（词系列）\",\n    \"author\": \"姜夔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陆游词集（词系列）\",\n    \"author\": \"陆游\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词三百首（作家榜经典文库）\",\n    \"author\": \"上彊村民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027120-8ec566?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知乎一小时「补课系列」套装\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011235-8d096d?p=8866\",\n    \"category\": \"知乎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近视怎么办：眼科医生教你正确配镜和治疗\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007638-12f9a2?p=8866\",\n    \"category\": \"知乎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱有术\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866\",\n    \"category\": \"知乎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业时，我们在知乎聊什么？\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866\",\n    \"category\": \"知乎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长危机\",\n    \"author\": \"丹比萨・莫约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改革者\",\n    \"author\": \"深圳创新发展研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032715-7f3498?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岗村40年\",\n    \"author\": \"贾鸿彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革三部曲\",\n    \"author\": \"吴敬琏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本维新六十年\",\n    \"author\": \"樱雪丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026166-909097?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两面之词：关于革命问题的通信\",\n    \"author\": \"雷吉斯・德布雷/赵汀阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020256-b9bfc5?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1打造个人品牌\",\n    \"author\": \"王一九\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级标签\",\n    \"author\": \"闫跃龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997891-01926e?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新品牌\",\n    \"author\": \"高端训\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2小时品牌素养\",\n    \"author\": \"邓德隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可口可乐传\",\n    \"author\": \"马克・彭德格拉斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌洗脑（珍藏版）\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一往无前\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866\",\n    \"category\": \"小米\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米逻辑\",\n    \"author\": \"吴正炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018564-06c2df?p=8866\",\n    \"category\": \"小米\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米生态链战地笔记\",\n    \"author\": \"小米生态链谷仓学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866\",\n    \"category\": \"小米\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧烤怪谈\",\n    \"author\": \"蔡必贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866\",\n    \"category\": \"烧脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本书书名无法描述本书内容\",\n    \"author\": \"埃里克・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866\",\n    \"category\": \"烧脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎鲨游戏之十重人格女孩\",\n    \"author\": \"王健霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866\",\n    \"category\": \"烧脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昭奚旧草（套装共2册）\",\n    \"author\": \"书海沧生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009678-61145d?p=8866\",\n    \"category\": \"古言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"临渊（全2册）\",\n    \"author\": \"尤四姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007251-590cf4?p=8866\",\n    \"category\": \"古言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新食货志\",\n    \"author\": \"杜君立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866\",\n    \"category\": \"经济史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情的革命\",\n    \"author\": \"乔伊斯・阿普尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866\",\n    \"category\": \"经济史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族、土地与祖先\",\n    \"author\": \"易劳逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866\",\n    \"category\": \"经济史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济增长的迷雾\",\n    \"author\": \"威廉・伊斯特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866\",\n    \"category\": \"经济史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事：材质、结构、风格和银幕剧作的原理\",\n    \"author\": \"罗伯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022953-524f05?p=8866\",\n    \"category\": \"创作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转化率实战技巧从入门到精通\",\n    \"author\": \"营销铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510741-6aef3c?p=8866\",\n    \"category\": \"电子商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"揭秘跨境电商\",\n    \"author\": \"李鹏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028146-739f5b?p=8866\",\n    \"category\": \"电子商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨境电商宝典（套装共2册）\",\n    \"author\": \"孙韬/老魏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021741-39f857?p=8866\",\n    \"category\": \"电子商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一键下单：杰夫·贝佐斯与亚马逊的崛起\",\n    \"author\": \"理查德・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866\",\n    \"category\": \"电子商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖24：啊！又想吃零食了\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖21：酒的全事典\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖22：多谢款待！\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044475-b4a83f?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖19：下午茶时间到\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖17：蔬菜多好吃啊\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖18：真的，烤箱什么都能做\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖15：便当灵感集\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖16：大满足！就爱锅料理\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖13：腐的品格\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖14：小聚会教科书\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖10：早餐，真的太重要了\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖12：厨房，治愈人生的避难所\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖09：了不起的面包\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042822-a3f181?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖05：全宇宙都在吃甜品\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝者之书\",\n    \"author\": \"法医秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998971-364375?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗冤集录注评\",\n    \"author\": \"宋慈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053118-be8da5?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法醫·屍體·解剖室（套装共3册）\",\n    \"author\": \"道格拉斯．萊爾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034428-aee5f1?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024783-34b504?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈大传\",\n    \"author\": \"王宏甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑背鱼之谜\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医手记系列套装（全四册）\",\n    \"author\": \"刘真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之尸体加工厂\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之活体贩卖者\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之骨头收藏家\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸存者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清道夫\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一根手指\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声的证词\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸语者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你的肥胖自愈\",\n    \"author\": \"刘松景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004044-0541d7?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥胖代码\",\n    \"author\": \"冯子新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本减肥书\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样减肥不反弹\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭情绪的力量\",\n    \"author\": \"珍妮弗・泰兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会发胖\",\n    \"author\": \"盖里・陶比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去你的脂肪\",\n    \"author\": \"格兰特・斯科菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总觉得饿？\",\n    \"author\": \"大卫. 路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能减脂\",\n    \"author\": \"张景琦/孟令超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像火箭科学家一样思考\",\n    \"author\": \"奥赞・瓦罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果人类是整个宇宙的大脑\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003759-1d9daf?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘾：让人上瘾的产品、广告与创意背后的秘密\",\n    \"author\": \"吴文芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意选择\",\n    \"author\": \"肯・科钦达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微文案\",\n    \"author\": \"朱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆流行\",\n    \"author\": \"德里克・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和毕加索一起淋浴\",\n    \"author\": \"克里斯蒂安・斯塔迪尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的创造力类型\",\n    \"author\": \"梅塔・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞\",\n    \"author\": \"马修・桑托罗/杰克・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029172-3654fd?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象思维\",\n    \"author\": \"帕甘・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形式感+\",\n    \"author\": \"晋小彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸创意思考术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏着：一个西班牙人的33年内战人生\",\n    \"author\": \"罗纳德・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001866-8ba183?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞万提斯全集（全八卷）\",\n    \"author\": \"米格尔・德・塞万提斯・萨阿维德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988813-dff794?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙史（贝克知识丛书）\",\n    \"author\": \"瓦尔特·L.伯尔奈克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙无敌舰队\",\n    \"author\": \"加勒・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎仗剑寻书记\",\n    \"author\": \"阿图罗・佩雷斯-雷维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035358-e49843?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马俱乐部\",\n    \"author\": \"阿图罗・佩雷斯-雷维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035409-35f8e0?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊莎贝拉\",\n    \"author\": \"克斯汀・唐尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的影子帝国\",\n    \"author\": \"皮耶尔保罗・巴维里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙内战：真相、疯狂与死亡\",\n    \"author\": \"阿曼达・维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020454-d9c2eb?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉吟（短经典）\",\n    \"author\": \"梅尔塞・罗多雷达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012465-2aeabb?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河流之声\",\n    \"author\": \"乔莫・卡夫雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008703-83cb6f?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高卢战记\",\n    \"author\": \"盖乌斯・尤利乌斯・恺撒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030762-72487f?p=8866\",\n    \"category\": \"古代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：重说中国古代史\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005799-2834e7?p=8866\",\n    \"category\": \"古代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌与钢铁（修订版）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金泽：江南民间祭祀探源\",\n    \"author\": \"李天纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西成功定律\",\n    \"author\": \"拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘型人格障碍\",\n    \"author\": \"兰迪・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（译文经典）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口浪潮\",\n    \"author\": \"保罗・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观从何而来\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才在左，疯子在右\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类不平等的起源和基础（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"色情\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"链接未找到\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的西方（译文经典）\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图绘暹罗\",\n    \"author\": \"通猜・威尼差恭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族、土地与祖先\",\n    \"author\": \"易劳逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德浪女\",\n    \"author\": \"朵思.伊斯頓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃在拂晓\",\n    \"author\": \"克里斯托弗・莱恩/卡西尔达・杰萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸猿三部曲（裸猿+人类动物园+亲密行为）\",\n    \"author\": \"德斯蒙德·莫利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"PHP和MySQL Web开发（原书第4版）\",\n    \"author\": \"Luke Welling\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866\",\n    \"category\": \"MYSQL\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场第一课（套装共5册）\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866\",\n    \"category\": \"商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样发言\",\n    \"author\": \"久久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李诞脱口秀工作手册\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时这样说就好了\",\n    \"author\": \"伊庭正康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带货王\",\n    \"author\": \"李瑛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本口才书\",\n    \"author\": \"陈慕妤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场谈判经典书系（套装共3册）\",\n    \"author\": \"德雷克・阿顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课3\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED说话的力量\",\n    \"author\": \"阿卡什·P.卡里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判的艺术\",\n    \"author\": \"于反\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986518-9ea72b?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服力：如何让沟通充满逻辑与技巧\",\n    \"author\": \"白丽洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986359-ce2061?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服力：如何让沟通充满逻辑（全新升级版）\",\n    \"author\": \"白丽洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985729-c3f598?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓情商高，就是会说话\",\n    \"author\": \"佐佐木圭一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马云的说话之道（2019版）\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不怯场\",\n    \"author\": \"译夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042144-f8796b?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不会拒绝上\",\n    \"author\": \"李劲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准表达：开口就能说重点\",\n    \"author\": \"牛津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026985-8d194b?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌（纪念版）\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：掌握直线销售的艺术\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的财富帝国\",\n    \"author\": \"彼得・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大而不倒\",\n    \"author\": \"安德鲁・罗斯・索尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020553-c64dc1?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的博弈\",\n    \"author\": \"约翰・斯蒂尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街潜规则\",\n    \"author\": \"乔舒亚・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大空头\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻资本\",\n    \"author\": \"凯文·鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门口的野蛮人\",\n    \"author\": \"布赖恩・伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英殖民帝国\",\n    \"author\": \"阿尔弗雷德・考尔德科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866\",\n    \"category\": \"全球史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东言西语\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866\",\n    \"category\": \"方言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南腔北调：在语言中重新发现中国\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866\",\n    \"category\": \"方言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道地球的奥秘\",\n    \"author\": \"戴维・比尔林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499872-69554e?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖动植物图鉴\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方草木之美\",\n    \"author\": \"西莉亚・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌物志\",\n    \"author\": \"斑斑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的浪漫史\",\n    \"author\": \"诺曼・C.埃尔斯特兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512688-2974e3?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法布尔植物记：手绘珍藏版（套装共2册）\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040536-bfadef?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之美：奇异植物的生存智慧\",\n    \"author\": \"林十之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031011-6d2792?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道生命的答案\",\n    \"author\": \"丹尼尔・查莫维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好！植物（全彩）\",\n    \"author\": \"喵喵植物控\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物文库精美丛书\",\n    \"author\": \"约瑟夫・胡克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017430-ca5c6c?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的森林\",\n    \"author\": \"戴维・哈斯凯尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript权威指南（第6版）\",\n    \"author\": \"David Flanagan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866\",\n    \"category\": \"开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险地活着\",\n    \"author\": \"汉斯・舒茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866\",\n    \"category\": \"记录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢问路在何方\",\n    \"author\": \"杨洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012768-569107?p=8866\",\n    \"category\": \"记录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾雷德·戴蒙德作品集（套装共4册）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛雅三千年\",\n    \"author\": \"西尔韦纳斯・莫利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499653-c0d007?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落文明系列（套装共7卷）\",\n    \"author\": \"克里斯蒂娜・里格斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轴心时代\",\n    \"author\": \"凯伦・阿姆斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明（套装共2册）\",\n    \"author\": \"玛丽・比尔德/戴维・奥卢索加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年文明史\",\n    \"author\": \"勒尔・兹威克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的历史（全5册）\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联结：通向未来的文明史\",\n    \"author\": \"詹姆斯・伯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典遗产：希腊的遗产+罗马的遗产\",\n    \"author\": \"M.I.芬利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029247-2b7b69?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的故事（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗失的姆大陆之谜\",\n    \"author\": \"詹姆斯・乔治瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝路回响-文明的交融（套装共7册)\",\n    \"author\": \"三联生活周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020697-bb72e0?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国原生文明启示录\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些惊心动魄的人类文明史（套装共18册）\",\n    \"author\": \"曹胜高等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简欧洲史\",\n    \"author\": \"约翰・赫斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技新时代\",\n    \"author\": \"伊夫・埃奥内/埃尔维・芒斯龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866\",\n    \"category\": \"银行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天我们怎样做银行\",\n    \"author\": \"陈琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990358-270f5d?p=8866\",\n    \"category\": \"银行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣的金融\",\n    \"author\": \"董希淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044286-e08e10?p=8866\",\n    \"category\": \"银行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信贷的逻辑与常识\",\n    \"author\": \"刘元庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866\",\n    \"category\": \"银行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅\",\n    \"author\": \"皮翠拉・瑞沃莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866\",\n    \"category\": \"国际\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争哀歌\",\n    \"author\": \"保宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052341-f29a44?p=8866\",\n    \"category\": \"越南\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越南密战：1950-1954中国援越战争纪实\",\n    \"author\": \"钱江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866\",\n    \"category\": \"越南\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱革命\",\n    \"author\": \"安妮・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490917-6f069c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富是认知的变现\",\n    \"author\": \"舒泰峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490950-03b116?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耐心的资本\",\n    \"author\": \"维多利亚・伊凡希娜/乔希・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495492-4e8778?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级资管\",\n    \"author\": \"乔永远/孔祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为金融学\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497613-50ebe9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新金融帝国\",\n    \"author\": \"田中道昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497616-4a5b13?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国资本市场变革\",\n    \"author\": \"肖钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497634-635389?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资者\",\n    \"author\": \"丹尼尔・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资核心资产\",\n    \"author\": \"王德伦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国货币史（精校本）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非凡的成功\",\n    \"author\": \"大卫・史文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499398-92a3da?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街教父格雷厄姆传\",\n    \"author\": \"本杰明・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500121-c5ae86?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊群的共识\",\n    \"author\": \"肖小跑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500187-e6d4a0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学4：理财篇\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500430-536636?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"预测：经济、周期与市场泡沫\",\n    \"author\": \"洪灝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储\",\n    \"author\": \"威廉・格雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502575-8350f8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、资本与投资\",\n    \"author\": \"丁昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CFA协会金融前沿译丛（套装共5册）\",\n    \"author\": \"杰弗里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504405-6fda6c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元真相\",\n    \"author\": \"达尔辛妮・大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链实战：从技术创新到商业模式\",\n    \"author\": \"冒志鸿/陈俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势的力量\",\n    \"author\": \"李迅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：嘉信理财持续创新之道\",\n    \"author\": \"查尔斯・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的逻辑与艺术\",\n    \"author\": \"陈侃迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩盘：全球金融危机如何重塑世界\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510096-bd2d0a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的真相\",\n    \"author\": \"极地之鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴芒演义\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510399-e55bd3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新增点\",\n    \"author\": \"管清友等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510843-826852?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产是部金融史\",\n    \"author\": \"黄立坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱的千年兴衰史\",\n    \"author\": \"金菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险投资的逻辑与常识\",\n    \"author\": \"莱恩・巴特森/肯・弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512811-ca0121?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金的故事\",\n    \"author\": \"詹姆斯・莱德贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513099-a6d2c2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服市场的人\",\n    \"author\": \"格里高利・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513291-9c5177?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融激荡300年\",\n    \"author\": \"瀛洲客\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513660-81fac3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（上）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资者的朋友\",\n    \"author\": \"朱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513738-d81882?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图方法（原书第2版）\",\n    \"author\": \"斯蒂芬·W. 比加洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004659-15d3f7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资者的敌人\",\n    \"author\": \"朱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004545-ac76c4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资策略实战分析（原书第4版·典藏版）\",\n    \"author\": \"詹姆斯・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（典藏版）\",\n    \"author\": \"格里高里・莫里斯/赖安・里奇菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为金融与投资心理学（原书第6版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004407-2a20bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稳赚：提升理财收益的投资工具\",\n    \"author\": \"李红萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常赢投资系列（套装共5册）\",\n    \"author\": \"帕特・多尔西等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆经典投资策略\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、现代化、价值投资与中国\",\n    \"author\": \"李录\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003972-3db08b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资交易心理分析（典藏版）\",\n    \"author\": \"布雷特 N. 斯蒂恩博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭周期：自上而下的投资逻辑\",\n    \"author\": \"乔治・达格尼诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003702-297e59?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"票据革命\",\n    \"author\": \"张立洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003528-1640ad?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世风日上\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争\",\n    \"author\": \"詹姆斯・里卡兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003357-d4da5a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐远的投资课\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24堂财富课\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002823-f70963?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像读悬疑小说一样读懂会计学\",\n    \"author\": \"田中靖浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002445-d51d8d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易圣经\",\n    \"author\": \"布伦特・奔富\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富管理的行为金融\",\n    \"author\": \"迈克尔·M.庞皮恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001725-bf1b89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技新时代\",\n    \"author\": \"伊夫・埃奥内/埃尔维・芒斯龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富思维\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000345-3f82f4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画投资学一看就懂\",\n    \"author\": \"武敬敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999472-902044?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元病\",\n    \"author\": \"叶冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998812-5c6954?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构性改革\",\n    \"author\": \"黄奇帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997597-3d930f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资21戒\",\n    \"author\": \"本・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"ETF全球投资指南\",\n    \"author\": \"王延巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994768-9ce779?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大钱细思\",\n    \"author\": \"乔尔・蒂林哈斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的怪圈\",\n    \"author\": \"贾森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家庭财富保卫攻略\",\n    \"author\": \"王昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借钱：利息、债务和资本的故事\",\n    \"author\": \"查尔斯・盖斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期投资\",\n    \"author\": \"弗朗西斯科・加西亚・帕拉梅斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991150-020ce0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新货币战争\",\n    \"author\": \"诺伯特・海林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990925-93e06e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天我们怎样做银行\",\n    \"author\": \"陈琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990358-270f5d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事经济学\",\n    \"author\": \"罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益2\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989473-64fb2e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G金融\",\n    \"author\": \"莫开伟/陈名银/邱泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988384-74644e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球房地产\",\n    \"author\": \"夏磊/任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非对称风险\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投机者的告白（实战版）\",\n    \"author\": \"安纳金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的常识\",\n    \"author\": \"布拉德福德・康纳尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性市场\",\n    \"author\": \"罗闻全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水库论坛欧神作品（共2册）\",\n    \"author\": \"欧成效\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无常的博弈\",\n    \"author\": \"陆一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985033-817187?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是怎么割韭菜的\",\n    \"author\": \"查尔斯・庞兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984592-f438eb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富可敌国（经典版）\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲\",\n    \"author\": \"阿莉森・施拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精明投资者的满分课\",\n    \"author\": \"孙旭东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个金融大鳄2\",\n    \"author\": \"邓荣栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052422-c462a6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球金融体系\",\n    \"author\": \"黄海洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051942-839ed7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个金融大鳄\",\n    \"author\": \"邓荣栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051852-ff30a4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析圣经\",\n    \"author\": \"理查德·W·夏巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读华尔街（原书第5版）\",\n    \"author\": \"杰弗里 B 利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051507-55c3ee?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资心理学（原书第5版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱从哪里来\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明斯基时刻\",\n    \"author\": \"兰德尔・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051318-a2c092?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色的羁绊\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权、期货及其他衍生产品（原书第9版）\",\n    \"author\": \"约翰・赫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得懂的金融投资课\",\n    \"author\": \"向松祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资思想史（珍藏版）\",\n    \"author\": \"马克・鲁宾斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050625-389c43?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员\",\n    \"author\": \"杰克D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的眼睛\",\n    \"author\": \"吴卫军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进我的交易室\",\n    \"author\": \"亚历山大・艾尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的护城河（新版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭交易（原书第2版）\",\n    \"author\": \"约翰・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币围城\",\n    \"author\": \"约翰・莫尔丁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国经济下半场（套装共25册）\",\n    \"author\": \"陈元/钱颖一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币之惑\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金股博弈（第4版）\",\n    \"author\": \"弈樊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大熊市启示录（原书第4版）\",\n    \"author\": \"拉塞尔・纳皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭火：美国金融危机及其教训\",\n    \"author\": \"本・伯南克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python金融大数据分析\",\n    \"author\": \"伊夫・希尔皮斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币变局\",\n    \"author\": \"巴里・艾肯格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向投资策略\",\n    \"author\": \"大卫・德雷曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战（典藏版）\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048705-a6c49c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给年轻人的极简金融课\",\n    \"author\": \"童哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047652-cac8d7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就业、利息与货币通论（去梯言系列）\",\n    \"author\": \"约翰・梅纳德・凯恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047628-8cc56b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零起点Python大数据与量化交易\",\n    \"author\": \"何海群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易冠军\",\n    \"author\": \"马丁・舒华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币金融学（原书第2版）\",\n    \"author\": \"弗雷德里克S.米什金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个农民的亿万传奇\",\n    \"author\": \"傅海棠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融市场与金融机构（原书第7版）\",\n    \"author\": \"弗雷德里克 S. 米什金/斯坦利 G. 埃金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来之路：金融的力量与责任\",\n    \"author\": \"贲圣林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046938-1c5b3e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特波浪理论：研判股市底部与顶部的有效工具\",\n    \"author\": \"拉尔夫·N·艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权：就这么简单\",\n    \"author\": \"韩冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期（珍藏版）\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期2\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣与衰退\",\n    \"author\": \"艾伦・格林斯潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经Ⅱ\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046155-96b7bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股权战争（全新升级版）\",\n    \"author\": \"苏龙飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新金融怪杰\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市遇见凯恩斯\",\n    \"author\": \"约翰 F. 瓦辛科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给投资新手的极简股票课\",\n    \"author\": \"lip师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易（原书第2版）\",\n    \"author\": \"艾琳・奥尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有（新版）\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗斯柴尔德家族（套装上中下册）\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044967-b617e0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本圈\",\n    \"author\": \"熊昌烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044658-bf19ba?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历巴菲特股东大会\",\n    \"author\": \"杰夫・马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣的金融\",\n    \"author\": \"董希淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044286-e08e10?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我如何从股市赚了200万（珍藏版）\",\n    \"author\": \"尼古拉斯・达瓦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂黄金白银投资理财\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资入门与实战技巧\",\n    \"author\": \"王坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看盘方法与技巧一本通\",\n    \"author\": \"老牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林斯潘传\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益融合战法\",\n    \"author\": \"约翰・帕利卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白矮星：交易员的心理与交易体系\",\n    \"author\": \"赛博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043554-fc98f2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸系列全集（套装共32册）\",\n    \"author\": \"罗伯特・清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043707-53aa09?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特与索罗斯的投资习惯（纪念版）\",\n    \"author\": \"马克・泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑马波段操盘术（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌（纪念版）\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"振荡指标MACD（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（一）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042762-ba6b8b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业冒险\",\n    \"author\": \"约翰・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在苍茫中传灯\",\n    \"author\": \"姚斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生Ⅱ\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易员\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市场真相\",\n    \"author\": \"杰克D.施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步华尔街（原书第11版）\",\n    \"author\": \"伯顿G.马尔基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球投资\",\n    \"author\": \"林起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特高收益投资策略\",\n    \"author\": \"吉瓦・拉玛斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债券投资实战\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12年20倍\",\n    \"author\": \"唐彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的投资组合（珍藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本炒股书\",\n    \"author\": \"杨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索罗斯传（白金珍藏版）\",\n    \"author\": \"罗伯特・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量价分析\",\n    \"author\": \"安娜・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的真谛\",\n    \"author\": \"路易吉・津加莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事（全新升级版）\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的与看不见的\",\n    \"author\": \"巴斯夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038388-dd5409?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的智慧（原书第2版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038406-87e81f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被平均的风险\",\n    \"author\": \"萨姆・萨维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038088-8edfbb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期录\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力K线擒大牛\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压力测试\",\n    \"author\": \"蒂莫西・盖特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极型资产配置指南\",\n    \"author\": \"马丁 J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债：第一个5000年\",\n    \"author\": \"大卫・格雷伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037263-d306b9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卧底经济学（套装共4册）\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037194-590484?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员（典藏版）\",\n    \"author\": \"杰克 D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界金融危机史经典丛书共6册\",\n    \"author\": \"约翰・莫尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037032-23759e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券混沌操作法（典藏版）\",\n    \"author\": \"比尔・威廉斯/贾丝廷・格雷戈里-威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嚣张的特权\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金怪杰（典藏版）\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"50人的二十年\",\n    \"author\": \"樊纲/易纲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第4版·典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036117-c98548?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨市场交易策略（典藏版）\",\n    \"author\": \"约翰 J. 墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035916-7ada89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜华尔街（典藏版）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解（典藏版）\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向格雷厄姆学思考，向巴菲特学投资\",\n    \"author\": \"劳伦斯・坎宁安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客户的游艇在哪里（典藏版）\",\n    \"author\": \"小弗雷德・施韦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035148-7cc8c3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特阴谋\",\n    \"author\": \"余治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢得输家的游戏（原书第6版）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：私募风云\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034311-81e387?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转变：应对复杂新世界的思维方式\",\n    \"author\": \"弗雷德蒙德・马利克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：一个影子私募基金经理的自白\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033699-597e93?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务诡计\",\n    \"author\": \"霍华德·M.施利特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：危险交易\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚定不移\",\n    \"author\": \"保罗・沃尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越金融（纪念版）\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透信贷\",\n    \"author\": \"何华平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现价格\",\n    \"author\": \"姜洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透IPO\",\n    \"author\": \"沈春晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂生活中的金融常识\",\n    \"author\": \"陈思进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济史\",\n    \"author\": \"钱穆/叶龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养（增订版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂财报\",\n    \"author\": \"肖星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜一切市场的人\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美林传奇\",\n    \"author\": \"小温斯洛普 H.史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释：王福重金融学通识课\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030924-fca2c3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔经济学奖的逻辑\",\n    \"author\": \"阿夫纳・奥弗尔/加布里埃尔・索德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030366-30de9b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事与估值\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务危机\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌金者：长期资本管理公司的升腾与陨落\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027954-43ce5e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的投资思想\",\n    \"author\": \"戴维・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期论\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本保险指南\",\n    \"author\": \"槽叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技\",\n    \"author\": \"张健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026967-ef96b8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的财富帝国\",\n    \"author\": \"彼得・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧2\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗钱内幕\",\n    \"author\": \"姚耀/秋叶良和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025722-0dbcb6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从众危机\",\n    \"author\": \"路德维希 B. 钦塞瑞尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025674-a4b790?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币大师\",\n    \"author\": \"埃里克・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024936-eb9734?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（学习篇）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大鳄三部曲\",\n    \"author\": \"仇晓慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024561-f0ec75?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为什么离开高盛\",\n    \"author\": \"格雷格・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师2\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧元的思想之争\",\n    \"author\": \"马库斯・布伦纳迈耶等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023955-ebc85a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国风云录（共5册）\",\n    \"author\": \"茜拉・科尔哈特卡等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023586-f64635?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大而不倒\",\n    \"author\": \"安德鲁・罗斯・索尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理美元\",\n    \"author\": \"船桥洋一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023124-73dd6d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人2\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022887-a6b83d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人3\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022890-b575df?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势交易\",\n    \"author\": \"安德烈亚斯 F. 克列诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本全球化\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑石的选择\",\n    \"author\": \"彼得・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021963-e5f1f3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私募的进化\",\n    \"author\": \"格上研究中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济的律动\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021153-d537b4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手回忆录\",\n    \"author\": \"埃德文・拉斐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理者14天看懂财务报表\",\n    \"author\": \"闫静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021048-ccb824?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股民的眼泪\",\n    \"author\": \"张华桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最富足的投资\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020763-38a84b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亿万：围剿华尔街大白鲨\",\n    \"author\": \"茜拉・科尔哈特卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：金融之王卡尔·伊坎传\",\n    \"author\": \"马克・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020559-859f48?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020553-c64dc1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储的诞生\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的估值逻辑\",\n    \"author\": \"林安霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动的勇气\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020406-9e3f24?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融投资400年\",\n    \"author\": \"查尔斯・马凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020064-c7c756?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国之弧\",\n    \"author\": \"乔良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020010-32ddc9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影子银行内幕：下一个次贷危机的源头（修订版）\",\n    \"author\": \"张化桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的规则\",\n    \"author\": \"张巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019746-4daf20?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗池\",\n    \"author\": \"帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值\",\n    \"author\": \"埃斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019614-245776?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"King of Capital\",\n    \"author\": \"David Carey/John E. Morris\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析（原书第10版）\",\n    \"author\": \"罗伯特 D. 爱德华兹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融可以颠覆历史\",\n    \"author\": \"王巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"并购估值\",\n    \"author\": \"克里斯 M. 梅林/弗兰克 C. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019248-0fcfaa?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3G资本帝国\",\n    \"author\": \"克里斯蒂娜・柯利娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的原则\",\n    \"author\": \"特兰・格里芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017835-758d98?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁金服：从支付宝到新金融生态圈\",\n    \"author\": \"廉薇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017802-c45526?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当音乐停止之后\",\n    \"author\": \"艾伦・布林德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017622-dcb745?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷查理宝典：查理·芒格智慧箴言录\",\n    \"author\": \"查理・芒格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017781-abd324?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"您厉害，您赚得多\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邓普顿教你逆向投资\",\n    \"author\": \"劳伦・邓普顿/斯科特・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017418-95c7db?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲刺白马股\",\n    \"author\": \"启明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资中不简单的事\",\n    \"author\": \"邱国鹭等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017031-9bb190?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资中最简单的事\",\n    \"author\": \"邱国鹭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017019-676d89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Business Adventures\",\n    \"author\": \"John Brooks\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌神数学家\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳着踢踏舞去上班\",\n    \"author\": \"卡萝尔・卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的投资者\",\n    \"author\": \"本杰明・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016575-efb66d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得林奇投资经典全集（共3册）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Fintech：全球金融科技权威指南\",\n    \"author\": \"苏珊娜・奇斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱永不眠：资本世界的暗流涌动和金融逻辑\",\n    \"author\": \"香帅无花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术的终结\",\n    \"author\": \"默文・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015246-2b570e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币野史\",\n    \"author\": \"菲利克斯・马汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的本质\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特幕后智囊：查理·芒格传\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史\",\n    \"author\": \"卡比尔・塞加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威科夫操盘法\",\n    \"author\": \"孟洪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资学手册\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014502-344441?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不落俗套的成功\",\n    \"author\": \"大卫・斯文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯粹经济学\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013980-1ffdbe?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球系列（套装共6册）\",\n    \"author\": \"唐朝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013536-91355d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化投资策略\",\n    \"author\": \"理查德・托托里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的博弈\",\n    \"author\": \"约翰・斯蒂尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济大萧条还有多远\",\n    \"author\": \"刘军洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012900-3ec719?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国富人为何变穷\",\n    \"author\": \"张庭宾/艾经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本金融入门书\",\n    \"author\": \"邹一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012303-007194?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读量化投资\",\n    \"author\": \"忻海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资哲学：保守主义的智慧之灯\",\n    \"author\": \"刘军宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012027-429b8e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银帝国\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物精神\",\n    \"author\": \"乔治・阿克洛夫/罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011916-aa3741?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货大作手风云录\",\n    \"author\": \"刘强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易：高手训练营\",\n    \"author\": \"埃德・蓬西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易的10堂必修课\",\n    \"author\": \"贾里德・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务和魔鬼\",\n    \"author\": \"阿代尔・特纳勋爵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011802-eff8c4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：一部历史\",\n    \"author\": \"诺顿・雷默/杰西・唐宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011655-2f93f9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链革命\",\n    \"author\": \"唐塔普斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011610-23b769?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史2\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟交易法则（珍藏版）\",\n    \"author\": \"柯蒂斯・费思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贼巢\",\n    \"author\": \"詹姆斯・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会估值，轻松投资\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年金融史\",\n    \"author\": \"威廉・戈兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链社会\",\n    \"author\": \"龚鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势研判：经济、政策与资本市场\",\n    \"author\": \"任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争（套装共5册）\",\n    \"author\": \"宋鸿兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱商\",\n    \"author\": \"阿瑟・黑利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009600-e4c107?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类货币史\",\n    \"author\": \"戴维・欧瑞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宽客人生：从物理学家到数量金融大师的传奇\",\n    \"author\": \"伊曼纽尔・德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街幽灵\",\n    \"author\": \"阿瑟・辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随机漫步的傻瓜\",\n    \"author\": \"戴纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁金服\",\n    \"author\": \"由曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008874-46e181?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大揭秘：庞氏骗局的前世今生\",\n    \"author\": \"柯琳・克罗丝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008772-79825d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜厅\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008706-d0afd8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街潜规则\",\n    \"author\": \"乔舒亚・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风口上的猪：一本书看懂互联网金融\",\n    \"author\": \"肖璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦教你的10堂理财课\",\n    \"author\": \"朱国凤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007884-57754e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非富不可：曹仁超给年轻人的投资忠告\",\n    \"author\": \"曹仁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专业投机原理（珍藏版）\",\n    \"author\": \"维克托・斯波朗迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱有术\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"操盘手Ⅰ：自由救赎\",\n    \"author\": \"花荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大牛市・股殇系列（全两册）\",\n    \"author\": \"诸葛就是不亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大空头\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国是个大公司\",\n    \"author\": \"闵纬国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻资本\",\n    \"author\": \"凯文·鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克米伦谈期权\",\n    \"author\": \"劳伦斯G.麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金奇才\",\n    \"author\": \"杰克·施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市长线法宝（原书第5版）\",\n    \"author\": \"杰里米J. 西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读私募股权基金\",\n    \"author\": \"周炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（精华篇）\",\n    \"author\": \"L·J·瑞德豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街头智慧\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007074-d9d1d7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩根财团\",\n    \"author\": \"罗恩·彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国：美国金融霸权的来源和基础\",\n    \"author\": \"迈克尔·赫德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时寒冰说：未来二十年，经济大趋势（合集）\",\n    \"author\": \"时寒冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是部金融史（全新修订典藏版）\",\n    \"author\": \"陈雨露/杨栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大猎杀\",\n    \"author\": \"庄欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006630-919838?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"还原真实的美联储\",\n    \"author\": \"王健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜伏在资本市场\",\n    \"author\": \"仇子明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006531-bbfae7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白手套\",\n    \"author\": \"陈楫宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006468-79d6ba?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴立宁的传记与文集\",\n    \"author\": \"戴立宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融之王\",\n    \"author\": \"利雅卡特・艾哈迈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006060-6d6043?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之王\",\n    \"author\": \"戴维・凯里/约翰・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005829-d05ccb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金到底是什么？\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘活：中国民间金融百年风云\",\n    \"author\": \"王千马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则\",\n    \"author\": \"吉姆·斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安东尼·波顿的成功投资\",\n    \"author\": \"安东尼·波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门口的野蛮人\",\n    \"author\": \"布赖恩・伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·聂夫的成功投资（珍藏版）\",\n    \"author\": \"约翰・聂夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生（珍藏版）\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通向财务自由之路（原书第2版·珍藏版）\",\n    \"author\": \"范・撒普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样选择成长股\",\n    \"author\": \"菲利普·A·费舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福极简经济学\",\n    \"author\": \"蒂莫西・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信贷的逻辑与常识\",\n    \"author\": \"刘元庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第四版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些滚雪球的人\",\n    \"author\": \"王星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（六）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043296-42eb15?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（四）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（一）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042762-ba6b8b?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Warnings\",\n    \"author\": \"Richard A. Clarke/R.P. Eddy\",\n    \"link\": \"链接未找到\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Saga of Gunnlaug Serpent-tongue\",\n    \"author\": \"Anon Anon\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029748-cd4b3f?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Machines Like Me\",\n    \"author\": \"Ian McEwan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029739-328612?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Then She Was Gone\",\n    \"author\": \"Lisa Jewell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023349-f937e5?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Fifth Risk\",\n    \"author\": \"Michael Lewis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022572-e36b2f?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Killing Floor\",\n    \"author\": \"Child, Lee\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020754-1c2d0f?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Wonder\",\n    \"author\": \"R. J. Palacio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017160-80e85a?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Morning Star\",\n    \"author\": \"Pierce Brown\",\n    \"link\": \"链接未找到\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Three-Body Problem\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013644-82ce19?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Dark Forest\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013641-7de59a?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Death&#8217;s End\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013638-dd39ad?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Never Let Me Go\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013593-c4885e?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Remains of the Day\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013581-23b14c?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"101 Classic Short Stories\",\n    \"author\": \"Henry\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013203-22727d?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Winter of the World\",\n    \"author\": \"Ken Follett\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013173-f5d994?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Lolita\",\n    \"author\": \"Vladimir Nabokov\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009768-8023b1?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子疏解\",\n    \"author\": \"黄克剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051570-dc56d2?p=8866\",\n    \"category\": \"老子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么：一部教你做得道之人的生命学宝典\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866\",\n    \"category\": \"老子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866\",\n    \"category\": \"老子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多卖三倍\",\n    \"author\": \"弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491256-088984?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事经济学\",\n    \"author\": \"罗伯特・麦基/哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"催化：让一切加速改变\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510570-5a6471?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1打造个人品牌\",\n    \"author\": \"王一九\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级参与者\",\n    \"author\": \"杰里米・海曼斯/亨利・蒂姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511710-5d87a4?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好视频一秒抓住人心\",\n    \"author\": \"高桥弘树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化营销\",\n    \"author\": \"胡华成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秒赞：文案女王20年创作技巧与心法\",\n    \"author\": \"林桂枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开家书店，顺便赚钱\",\n    \"author\": \"徐智明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512910-991799?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力变现\",\n    \"author\": \"徐悦佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Z世代营销\",\n    \"author\": \"杰夫・弗若姆/安吉・瑞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513471-fe46fd?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案功夫\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004422-027126?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识顾客（原书第13版）\",\n    \"author\": \"戴维·L.马瑟斯博等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004203-857c83?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致零售\",\n    \"author\": \"杜凤林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘾：让人上瘾的产品、广告与创意背后的秘密\",\n    \"author\": \"吴文芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级标签\",\n    \"author\": \"闫跃龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997891-01926e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级话题\",\n    \"author\": \"肖大侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾客心理战\",\n    \"author\": \"菲利普・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带货王\",\n    \"author\": \"李瑛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抖音营销系统\",\n    \"author\": \"刘大贺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案的基本修养\",\n    \"author\": \"东东枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外卖超级运营术\",\n    \"author\": \"饿了么\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的行动\",\n    \"author\": \"乔舒亚・甘斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新品牌\",\n    \"author\": \"高端训\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能学会的刷屏文案写作技巧\",\n    \"author\": \"吕白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服\",\n    \"author\": \"邝大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微文案\",\n    \"author\": \"朱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧②\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧①\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户画像\",\n    \"author\": \"赵宏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式4.0\",\n    \"author\": \"梁宇亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆流行\",\n    \"author\": \"德里克・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发式赢单\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的商学课\",\n    \"author\": \"路骋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长五线\",\n    \"author\": \"王赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意志力销售法\",\n    \"author\": \"杨朝福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始玩转抖音\",\n    \"author\": \"黑马唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051885-f479db?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让顾客都成为回头客\",\n    \"author\": \"安部修仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑞幸闪电战\",\n    \"author\": \"沈帅波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品的101个新零售细节\",\n    \"author\": \"张桓/杨永朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归商业常识\",\n    \"author\": \"麦克・霍夫林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡新零售\",\n    \"author\": \"场景实验室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆炸式增长\",\n    \"author\": \"克里夫・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049836-66e2fa?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级转化率\",\n    \"author\": \"陈勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质（珍藏版）\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华百万大奖赛案例集\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界皆营销\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命3.0（轻携版）\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046362-c6312f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命4.0\",\n    \"author\": \"菲利普・科特勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良性增长\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是销售力\",\n    \"author\": \"余尚祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新定位\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂营销上\",\n    \"author\": \"戈非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级营销必修课（套装全8册）\",\n    \"author\": \"帕科・昂德希尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥格威谈广告\",\n    \"author\": \"杨名皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037881-a442a5?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告文案\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新引爆点：抖音运营从0到1实战指南\",\n    \"author\": \"头条易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034614-ada148?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"获客\",\n    \"author\": \"何润/张艳琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031698-1c4d3d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密日本零售业（套装共4册）\",\n    \"author\": \"增田明子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：掌握直线销售的艺术\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷蓝图\",\n    \"author\": \"雅各・范德库伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案变现\",\n    \"author\": \"叶小鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售\",\n    \"author\": \"范鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028200-21484f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微信营销与运营\",\n    \"author\": \"秦阳/秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025686-646e79?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销实战手册\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销概论\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何把产品打造成有生命的品牌\",\n    \"author\": \"叶明桂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常青：如何持久吸引客户\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走红：如何打造个人品牌\",\n    \"author\": \"杰瑞米・戈德曼/阿里・扎格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度粉销\",\n    \"author\": \"丁丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案一句话就够了\",\n    \"author\": \"川上徹也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感驱动\",\n    \"author\": \"维尔・桑切斯・拉米拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒循环\",\n    \"author\": \"亚当・潘恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：零成本改变\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023532-18abb2?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：打造峰值体验\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同感\",\n    \"author\": \"吉姆・西诺雷利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抢占心智\",\n    \"author\": \"江南春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售脑\",\n    \"author\": \"帕特里克・任瓦茨/克里斯托弗・莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022623-017333?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷启动：零成本做营销\",\n    \"author\": \"高臻臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销圣经\",\n    \"author\": \"加里・维纳查克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020331-3d803b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接：顾客价值时代的营销战略\",\n    \"author\": \"施炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020277-549efc?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案创作完全手册\",\n    \"author\": \"罗伯特・布莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的16个关键词\",\n    \"author\": \"叶茂中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销与运营\",\n    \"author\": \"秋叶/秦阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"视觉锤\",\n    \"author\": \"劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019587-9bb3b2?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流量池\",\n    \"author\": \"杨飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热点：引爆内容营销的6个密码\",\n    \"author\": \"马克・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019395-c60176?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不做无效的营销\",\n    \"author\": \"王泽蕴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018744-787c46?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全栈市场人\",\n    \"author\": \"Lydia\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生定位：特劳特教你营销自己\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案\",\n    \"author\": \"关健明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017604-0d7b9e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与感\",\n    \"author\": \"黎万强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：如何低成本实现爆发式成长\",\n    \"author\": \"Sean Ellis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2小时品牌素养\",\n    \"author\": \"邓德隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小群效应\",\n    \"author\": \"徐志斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖故事：实践版\",\n    \"author\": \"高朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售心理战\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015999-2d2d27?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回头客战略\",\n    \"author\": \"谢家华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆品战略\",\n    \"author\": \"金错刀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个广告人的自白\",\n    \"author\": \"大卫・奥格威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样卖龙虾\",\n    \"author\": \"比尔・毕晓普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新物种爆炸\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014184-7e8d0a?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆势销售：UGG创始人自述\",\n    \"author\": \"布莱恩・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AsK.反直觉询问\",\n    \"author\": \"莱恩・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无价\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粘住\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011994-36d924?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌洗脑（珍藏版）\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案圣经\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系力\",\n    \"author\": \"蒂姆・邓普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户力：需求驱动的产品、运营和商业模式\",\n    \"author\": \"郝志中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告+我的广告生涯\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要玩转情商\",\n    \"author\": \"科林・斯坦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董事会里的战争\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆点：如何制造流行\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与众不同\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定位（珍藏版）\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定位\",\n    \"author\": \"杰克・特劳特/阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底捞你学不会\",\n    \"author\": \"黄铁鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨越鸿沟：颠覆性产品营销圣经\",\n    \"author\": \"杰弗里・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商战\",\n    \"author\": \"杰克・特劳特 / 阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是战略\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"22条商规\",\n    \"author\": \"艾・里斯 / 杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯传：让你的产品、思想、行为像病毒一样入侵\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史玉柱自述：我的营销心得\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作，打造个人IP，成就企业品牌\",\n    \"author\": \"陈志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HTML5秘籍\",\n    \"author\": \"Matthew MacDonald\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006540-4fb712?p=8866\",\n    \"category\": \"前端开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS设计指南（第3版）\",\n    \"author\": \"Charles Wyke-Smith\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866\",\n    \"category\": \"前端开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口大逆转\",\n    \"author\": \"查尔斯・古德哈特/马诺杰・普拉丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙王的嬗变\",\n    \"author\": \"杨德爱/杨跃雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509319-b9f6e6?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空荡荡的地球\",\n    \"author\": \"达雷尔・布里克/约翰・伊比特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口浪潮\",\n    \"author\": \"保罗・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国空巢\",\n    \"author\": \"易富贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008244-1d0cc5?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作力\",\n    \"author\": \"高语罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866\",\n    \"category\": \"语文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样学习文言文\",\n    \"author\": \"张中行著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866\",\n    \"category\": \"语文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滚雪球：巴菲特和他的财富人生（套装共2册）\",\n    \"author\": \"艾丽斯・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866\",\n    \"category\": \"滚雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋南北朝史十二讲\",\n    \"author\": \"周一良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989491-004df4?p=8866\",\n    \"category\": \"南北朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南北战争三百年\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021018-29e73a?p=8866\",\n    \"category\": \"南北朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后三国战争史\",\n    \"author\": \"陈峰韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866\",\n    \"category\": \"南北朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的帝国：南北朝\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009144-7f2fef?p=8866\",\n    \"category\": \"南北朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代兵器大百科（套装共12册）\",\n    \"author\": \"《深度军事》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866\",\n    \"category\": \"兵器\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆者\",\n    \"author\": \"畀愚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510285-84f4ea?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色\",\n    \"author\": \"徐兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023499-da43d2?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗战时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的河山：抗日正面战场全纪实（套装共3册）\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅰ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅱ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驼峰航线\",\n    \"author\": \"刘小童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争2\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎部队：国民党抗日王牌七十四军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗日战争的细节大全集（共4册）\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一寸河山一寸血（套装全五册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋帝国的崛起\",\n    \"author\": \"安东・范德伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅特涅：帝国与世界（全2册）\",\n    \"author\": \"沃尔弗拉姆・希曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：决定欧洲命运的四天\",\n    \"author\": \"蒂姆・克莱顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枫丹白露宫\",\n    \"author\": \"蒂埃里・萨尔芒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次十字军东征\",\n    \"author\": \"彼得・弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝物语（套装全四册）\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造大英帝国\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骄傲之塔\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮大陆\",\n    \"author\": \"基思・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡的灭亡\",\n    \"author\": \"杰弗里・瓦夫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032763-6ef5f4?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪欧洲\",\n    \"author\": \"理查・威廉・丘奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：古典欧洲的诞生\",\n    \"author\": \"西蒙・普莱斯/彼得・索恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031152-135022?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：罗马帝国的遗产\",\n    \"author\": \"克里斯・威克姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗大陆：20世纪的欧洲\",\n    \"author\": \"马克・马佐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029334-f32666?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：追逐荣耀\",\n    \"author\": \"蒂莫西・布莱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026451-3049ac?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔制\",\n    \"author\": \"胡国栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491937-798132?p=8866\",\n    \"category\": \"海尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔是海：张瑞敏随笔选录\",\n    \"author\": \"张瑞敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866\",\n    \"category\": \"海尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔转型：人人都是CEO\",\n    \"author\": \"曹仰锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014961-4d7acd?p=8866\",\n    \"category\": \"海尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站火星\",\n    \"author\": \"克里斯蒂安・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866\",\n    \"category\": \"航天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿波罗\",\n    \"author\": \"扎克・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024600-7d239d?p=8866\",\n    \"category\": \"航天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简主义：活出生命真意\",\n    \"author\": \"乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866\",\n    \"category\": \"修养\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年一梦（修订版）\",\n    \"author\": \"青泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票作手回忆录\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手操盘术\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟交易法则（珍藏版）\",\n    \"author\": \"柯蒂斯・费思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专业投机原理（珍藏版）\",\n    \"author\": \"维克托・斯波朗迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大空头\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推荐系统实践\",\n    \"author\": \"项亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866\",\n    \"category\": \"系统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"系统之美\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866\",\n    \"category\": \"系统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维力：高效的系统思维\",\n    \"author\": \"王世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866\",\n    \"category\": \"系统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读心神探：FBI心理侧写术\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866\",\n    \"category\": \"FBI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺顿音乐断代史丛书（套装共4册）\",\n    \"author\": \"菲利普・唐斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余下只有噪音\",\n    \"author\": \"亚历克斯・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509967-ee6928?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星船与大树\",\n    \"author\": \"马慧元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有意义就没有摇摆\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511080-f945a2?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不哀之歌\",\n    \"author\": \"曹利群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513687-619e62?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏辽兹回忆录\",\n    \"author\": \"埃克托尔・柏辽兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996952-cf4c12?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何假装懂音乐\",\n    \"author\": \"王硕/储智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992167-7c7309?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界音乐汇\",\n    \"author\": \"西蒙・布劳顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的音乐笔记\",\n    \"author\": \"肖复兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游艺黑白（全四册）\",\n    \"author\": \"焦元溥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982555-e57eb3?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝多芬传：扼住命运咽喉的英雄\",\n    \"author\": \"费利克斯・胡赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051042-dc8d6b?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见莫扎特\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050742-52e166?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日52：BGM之魂\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047412-210b95?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爵士乐群英谱\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046266-bc8656?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下乡愁蓝调\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031992-c6a7a5?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日书\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳朵借我\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛丰年音乐文集（套装共六册）\",\n    \"author\": \"辛丰年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030315-421cb1?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱\",\n    \"author\": \"叶三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027609-3c8930?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐符号\",\n    \"author\": \"塔拉斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐队女孩\",\n    \"author\": \"金・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中4·民谣啊民谣\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025260-f23d1e?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐的极境\",\n    \"author\": \"爱德华·W.萨义德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022965-9d1e5c?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹唱片行\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022113-7cd057?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老灵魂\",\n    \"author\": \"韩松落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020712-1dcbf2?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论巴赫\",\n    \"author\": \"阿尔贝特・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018666-493f7e?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简音乐史\",\n    \"author\": \"冈田晓生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用手机拍一部电影\",\n    \"author\": \"英国Little White Lies编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866\",\n    \"category\": \"拍摄\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亿万：围剿华尔街大白鲨\",\n    \"author\": \"茜拉・科尔哈特卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866\",\n    \"category\": \"商场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创水记\",\n    \"author\": \"赛斯・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866\",\n    \"category\": \"环保\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与荒原同行\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866\",\n    \"category\": \"环保\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让数字说话：审计，就这么简单\",\n    \"author\": \"孙含晖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866\",\n    \"category\": \"审计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜脑：在睡眠中自动学习的秘密\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866\",\n    \"category\": \"焦虑症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新定位\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的定位\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生定位：特劳特教你营销自己\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定位（珍藏版）\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定位\",\n    \"author\": \"杰克・特劳特/阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是战略\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"22条商规\",\n    \"author\": \"艾・里斯 / 杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默就是说话让人舒服\",\n    \"author\": \"王荣华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993952-7eaaf2?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"会说话的人运气都不会太差\",\n    \"author\": \"矢野香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好接话\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话第一步\",\n    \"author\": \"麦克▪P.尼可斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话：新鲜有趣的话术精进技巧\",\n    \"author\": \"马东/马薇薇/黄执中等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话\",\n    \"author\": \"学诚法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦想与浮沉：A股十年上市博弈（2004～2014）\",\n    \"author\": \"王骥跃/班妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866\",\n    \"category\": \"上市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案基本功\",\n    \"author\": \"苏芯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866\",\n    \"category\": \"策划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10W+走心文案是怎样炼成的\",\n    \"author\": \"卢建彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029916-76a0fe?p=8866\",\n    \"category\": \"策划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度粉销\",\n    \"author\": \"丁丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866\",\n    \"category\": \"策划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Brief Answers to the Big Questions\",\n    \"author\": \"Stephen Hawking\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023337-520d53?p=8866\",\n    \"category\": \"霍金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"My Brief History\",\n    \"author\": \"Stephen Hawking\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018171-0525fe?p=8866\",\n    \"category\": \"霍金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙简史：起源与归宿\",\n    \"author\": \"斯蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866\",\n    \"category\": \"霍金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规训、惩罚与征服\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503931-6e6be2?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隳三都\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507117-ec7ad5?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国的世界征服\",\n    \"author\": \"约西姆・巴克汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512010-b9109b?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古历史拼图\",\n    \"author\": \"邹进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984655-a06873?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游牧民的世界史（修订版）\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国中亚征服史\",\n    \"author\": \"G. D.古拉提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053502-bdd0ab?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金家族的最后一个王爷\",\n    \"author\": \"朱文楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国\",\n    \"author\": \"易强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Genghis Khan and the Making of the Modern World\",\n    \"author\": \"Jack Weatherford\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022176-fe3719?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史上的蒙古征服\",\n    \"author\": \"梅天穆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020139-2566c0?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着就为征服世界\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列：伽利略的手指\",\n    \"author\": \"彼得・阿特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学物理化学大师经典系列（16册套装）\",\n    \"author\": \"薛定谔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505011-15ac5f?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的结构\",\n    \"author\": \"斯蒂芬・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们身处的宇宙究竟有多古怪？\",\n    \"author\": \"伊拉・马克・爱格多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响历史进程的九大科学家代表作图释书（套装9册）\",\n    \"author\": \"阿尔伯特・爱因斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510252-9e4341?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的最后三分钟\",\n    \"author\": \"保罗・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费曼的彩虹\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511389-9a7177?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六极物理\",\n    \"author\": \"严伯钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511584-57f21d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的六件事\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗意的宇宙\",\n    \"author\": \"斯特凡・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513624-bf8549?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：活细胞的物理观\",\n    \"author\": \"埃尔温・薛定谔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子空间\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的未完成交响曲\",\n    \"author\": \"玛西亚・芭楚莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相对论之路\",\n    \"author\": \"哈诺赫・古特弗罗因德/于尔根・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦语录（终极版）\",\n    \"author\": \"阿尔伯特・爱因斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000372-db0ba3?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何不切实际地解决实际问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质是什么\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《三体》中的物理学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课\",\n    \"author\": \"凯瑟琳・玛丽・布伦德尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱布尼茨、牛顿与发明时间\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·彭罗斯作品集（套装共4册）\",\n    \"author\": \"罗杰・彭罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988642-62c533?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我想多了吗？\",\n    \"author\": \"新科学家杂志/邱涛涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系简史\",\n    \"author\": \"约翰・钱伯斯/杰奎琳・米顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟物理套装\",\n    \"author\": \"中科院物理所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985375-1c626d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理学的进化\",\n    \"author\": \"阿尔伯特・爱因斯坦/利奥波德・英费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深奥的简洁\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简量子力学\",\n    \"author\": \"张天蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050145-239ab3?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与爱因斯坦共进早餐\",\n    \"author\": \"查德・奥泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费恩曼物理学讲义（新千年版）（套装共3册）\",\n    \"author\": \"费恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类为什么要探索太空\",\n    \"author\": \"克里斯・英庇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽之问\",\n    \"author\": \"弗兰克・维尔切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（果麦版）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦传（全2册）\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗？（升级版）\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039567-9b107f?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共9册）\",\n    \"author\": \"布莱恩・格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给好奇者的暗黑物理学\",\n    \"author\": \"罗兰・勒乌克/文森特・博滕斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036114-dbe6f4?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·诺贝尔奖得主作品（新版套装共8册）\",\n    \"author\": \"基普·S.索恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036132-d2b94c?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无中生有的世界\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的秩序\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邀你共进量子早餐\",\n    \"author\": \"索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一想到还有95%的问题留给人类，我就放心了\",\n    \"author\": \"豪尔赫・陈/丹尼尔・怀特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠物理\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031503-32fac0?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑洞之书\",\n    \"author\": \"史蒂文・古布泽/弗兰斯・比勒陀利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空的琴弦\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶杯里的风暴\",\n    \"author\": \"海伦・切尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从一粒尘埃开始\",\n    \"author\": \"布莱恩・考克斯/杰夫・福修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质的秘密\",\n    \"author\": \"埃蒂安・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叩响天堂之门\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共7册）\",\n    \"author\": \"罗伯特・劳克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022836-5a2cdc?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲量子力学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间重生\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柔软的宇宙\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实不似你所见\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学起源课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的温度\",\n    \"author\": \"吉诺・格塞雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019803-f6c866?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗意的原子\",\n    \"author\": \"科特・施塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017949-15be38?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的形状：相对论史话\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲宇宙\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016302-ce02e5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子大唠嗑\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016011-0b3bbf?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰道尔宇宙三部曲\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015930-649116?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引力波\",\n    \"author\": \"珍娜・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014196-53b378?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际穿越\",\n    \"author\": \"基普・索恩/基普・索恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014238-883094?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七堂极简物理课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013917-9f1be2?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗物质与恐龙\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别逗了，费曼先生\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越平行宇宙\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极客物理学：地球上最有趣的问题和最出人意料的答案\",\n    \"author\": \"瑞特・阿莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界奇遇记\",\n    \"author\": \"伽莫夫/斯坦纳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的宇宙\",\n    \"author\": \"加来道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005760-1c0736?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书大全套\",\n    \"author\": \"朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866\",\n    \"category\": \"评论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窥豹录\",\n    \"author\": \"胡亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035628-c24e75?p=8866\",\n    \"category\": \"评论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评论文集\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035013-9a2b5c?p=8866\",\n    \"category\": \"评论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前行笔记之耕耘心田\",\n    \"author\": \"希阿荣博堪布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491703-fada1f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感知•理知•自我认知\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491952-add17f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毓老师说系列（共十八册）\",\n    \"author\": \"爱新觉罗・毓鋆讲述\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492564-bdeea5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛系：中国人的生活智慧\",\n    \"author\": \"果麦文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493296-11aa38?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攀登尼采\",\n    \"author\": \"约翰・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493479-e7baa8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第一卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘擎西方现代思想讲义\",\n    \"author\": \"刘擎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498162-6d669a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学100问（套装共3册）\",\n    \"author\": \"书杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498444-830a41?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方现代思想家精品译丛（18卷）\",\n    \"author\": \"哈耶克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498924-4e23e7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如猫狗会说话\",\n    \"author\": \"拉斯・弗雷德里克·H.史文德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499347-09c400?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的局限性\",\n    \"author\": \"塞缪尔・约翰生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499611-c45040?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈鼓应著作精选合集（套装共6册）\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499644-a23b2a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作、消费主义和新穷人\",\n    \"author\": \"齐格蒙特・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500127-368b0a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优雅变老的艺术\",\n    \"author\": \"奥特弗里德・赫费\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500535-92fecd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何证明你不是僵尸\",\n    \"author\": \"杰里米・斯特朗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501417-ad432d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明心学口诀\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503745-b8ddbc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生答案之书\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506391-6ca6c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄德罗与自由思考的艺术\",\n    \"author\": \"安德鲁·S.柯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506505-4ae859?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康德文集（注释版）\",\n    \"author\": \"伊曼努尔・康德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508737-9992e1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想家和思想导读丛书精选（套装共5册）\",\n    \"author\": \"雷克斯・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只是眷恋这人间烟火（全新修订版）\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508929-c650ea?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"也许你该找个人聊聊\",\n    \"author\": \"洛莉・戈特利布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508959-595ed0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文白对照四书五经全本（精注全译）\",\n    \"author\": \"李伯钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖无聊\",\n    \"author\": \"马克・金维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚无时代\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图哲学作品集（套装6册）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509394-d47210?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子\",\n    \"author\": \"和辻哲郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509535-569088?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（果麦经典）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢生命根底里的宁静\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜托，哲学没有那么难\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509877-4157bd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尔·杜兰特经典系列（套装共4册）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509931-1e8eab?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由主义被遗忘的历史\",\n    \"author\": \"海伦娜・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510303-b7bcd2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天谈美\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510363-f6a67e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于痛苦的七堂哲学课\",\n    \"author\": \"斯科特・塞缪尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510948-7b1f45?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识世界：古代与中世纪哲学\",\n    \"author\": \"理查德・大卫・普莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511017-ad42d5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超现实主义宣言\",\n    \"author\": \"安德烈・布勒东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511032-8e425b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承认：一部欧洲观念史\",\n    \"author\": \"阿克塞尔・霍耐特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你学会独处\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511314-f0d8b4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的用途与滥用\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让孩子像哲学家一样会思考\",\n    \"author\": \"张玮/沈文婕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做一个清醒的现代人\",\n    \"author\": \"刘擎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511419-5571b1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯林传\",\n    \"author\": \"叶礼庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512067-e53a08?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应向花园安放灵魂\",\n    \"author\": \"达蒙・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512184-8c90b3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值的理由\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512478-959447?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和狗狗的十二次哲学漫步\",\n    \"author\": \"安东尼・麦高恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512505-d10692?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来也不会好过现在\",\n    \"author\": \"基兰・塞蒂亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513138-ab2d02?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明哲学逻辑思维读本（套装共5册）\",\n    \"author\": \"威廉姆・韦斯利・库克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513669-9bcbcb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人论（果麦经典）\",\n    \"author\": \"恩斯特・卡西尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513714-66cf91?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众哲学\",\n    \"author\": \"艾思奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004557-14bc8a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明及其不满（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004269-ea87b0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳗鱼的旅行\",\n    \"author\": \"帕特里克・斯文松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯友兰哲思录\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004101-553863?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布莱希特作品集（套装共四册）\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004098-26f5ec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣的存在\",\n    \"author\": \"米尔恰・伊利亚德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术师时代\",\n    \"author\": \"沃尔夫拉姆・艾伦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003984-f36531?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形而上学俱乐部\",\n    \"author\": \"路易斯・梅南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003579-09071b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧盟的危机\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍勒作品集（套装共七册）\",\n    \"author\": \"马克思・舍勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003123-717cf7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主的不满\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众的反叛\",\n    \"author\": \"何塞・奥尔特加・伊・加塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002775-9ae93e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论爱美\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲思与海\",\n    \"author\": \"戴维・法雷尔・克雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·德·莱斯案\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金岳霖哲学三书\",\n    \"author\": \"金岳霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001944-360496?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目光\",\n    \"author\": \"陶勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性的边界\",\n    \"author\": \"诺桑・亚诺夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001614-cc8dce?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性经验史（3卷本）\",\n    \"author\": \"米歇尔・福柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001113-170e8b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娱乐何为\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000798-72f1c7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安之书\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000333-bab6a5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码时间\",\n    \"author\": \"阿德里安・巴登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他者的消失\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000279-32504e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治哲学\",\n    \"author\": \"乔纳森・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999835-300928?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倦怠社会\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999751-ac5097?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德哲学\",\n    \"author\": \"乔纳森・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999415-d9e5bb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书与书籍\",\n    \"author\": \"叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999265-48afc3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的认识论\",\n    \"author\": \"罗伯特・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999046-10db8e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见：从科学到哲学，打开人类的认知真相\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999022-8e84da?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的批判性思维\",\n    \"author\": \"莎伦・M. 凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的美学\",\n    \"author\": \"查尔斯・塔利亚费罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998848-bdbcb5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查拉图斯特拉如是说（果麦经典）\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997918-4ecd27?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春蚕吐丝\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊雍：自性现象学研究\",\n    \"author\": \"C. G. 荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995866-2fee9e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"移情心理学\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995587-b19864?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的智慧\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出唯一真理观\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995503-31ccb1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炼金术之梦\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相约星期二\",\n    \"author\": \"米奇・阿尔博姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995149-c4bf6c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学（作家榜经典文库）\",\n    \"author\": \"H. A. 丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？\",\n    \"author\": \"朱利安・巴吉尼/杰里米・斯唐鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？2\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心：稻盛和夫的一生嘱托\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学与人：20世纪西方哲学精选（套装共5本）\",\n    \"author\": \"卡尔・雅斯贝斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何形成清晰的观点\",\n    \"author\": \"查尔斯·S.皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩波：日本社会写实精选系列\",\n    \"author\": \"森冈孝二等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993460-3e8452?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制造儒家\",\n    \"author\": \"詹启华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992017-ecbdd9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学100问\",\n    \"author\": \"书杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991753-47c268?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的思想（中英双语版·全48册）\",\n    \"author\": \"马可・波罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的智慧（全译本）\",\n    \"author\": \"伯特兰・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990757-a6caa2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人生哲学\",\n    \"author\": \"方东美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990337-fd3773?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界边缘的秘密\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基本收入·鹈鹕丛书\",\n    \"author\": \"盖伊・斯坦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990058-b0a6de?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍勒作品系列（全七册）\",\n    \"author\": \"马克思・舍勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990016-2b1ab0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维魔方\",\n    \"author\": \"陈波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概念与范畴\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989650-26d77f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷1）\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家训（全本全注全译）\",\n    \"author\": \"檀作文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989560-a0570d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱布尼茨、牛顿与发明时间\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学术与政治（理想国新版）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988129-ec950b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧与魔咒\",\n    \"author\": \"塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物的追问（二十世纪西方哲学经典）\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985936-6e200a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维特根斯坦说逻辑与语言\",\n    \"author\": \"维特根斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985915-d52a79?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理与人（二十世纪西方哲学经典）\",\n    \"author\": \"德里克・帕菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985840-14e9cf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏菲的哲学课\",\n    \"author\": \"多米尼克・贾尼科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985762-968eb9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮尔士论符号 （二十世纪西方哲学经典）\",\n    \"author\": \"查尔斯・皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心、脑与科学（二十世纪西方哲学经典）\",\n    \"author\": \"约翰・塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现象学的方法（二十世纪西方哲学经典）\",\n    \"author\": \"埃德蒙德・胡塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985603-202a69?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神性的温柔\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客观知识（二十世纪西方哲学经典）\",\n    \"author\": \"卡尔・波普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985501-f55e56?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的大地（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像哲学家一样生活\",\n    \"author\": \"威廉·B.欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与真理（二十世纪西方哲学经典）\",\n    \"author\": \"保罗・利科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985459-26b47c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"享乐主义宣言\",\n    \"author\": \"米歇尔・翁福雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985336-4cdc66?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活的隐喻（二十世纪西方哲学经典）\",\n    \"author\": \"保罗・利科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985294-b76e94?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猜想与反驳（二十世纪西方哲学经典）\",\n    \"author\": \"卡尔・波普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985108-70772e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坛经（全本全注全译）\",\n    \"author\": \"尚荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简朴的哲学\",\n    \"author\": \"埃默里斯・韦斯特科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984784-db9149?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷的开始\",\n    \"author\": \"戴维・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲散的哲学\",\n    \"author\": \"布莱恩・奥康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983638-36d26e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的指引\",\n    \"author\": \"马西莫・匹格里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982504-6a843c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么2\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982450-7b0f04?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学\",\n    \"author\": \"丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982453-5594f6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子（全本全注全译）\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异端：进击的哲学现场\",\n    \"author\": \"史蒂文・纳德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择生命\",\n    \"author\": \"池田大作/阿诺德・约瑟夫・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054378-95bb9a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六韬（全本全注全译）\",\n    \"author\": \"陈曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子现代版（最新修订版）\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053886-547f3d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书五经（全本全注全译）\",\n    \"author\": \"陈晓芬/徐儒宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053883-1b6ff5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德里达（牛津通识读本）\",\n    \"author\": \"西蒙・格伦迪宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文学（牛津通识读本）\",\n    \"author\": \"尼古拉斯・博伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与神对话（全五卷）\",\n    \"author\": \"尼尔・唐纳德・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋玄学史（第二版）\",\n    \"author\": \"余敦康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判理论（牛津通识读本）\",\n    \"author\": \"斯蒂芬・埃里克・布朗纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053451-652219?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无神论（牛津通识读本）\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的底色\",\n    \"author\": \"提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053025-11c135?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景观社会\",\n    \"author\": \"居伊・德波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔的精神现象学\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052602-06e6fe?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052539-7f6be3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学原来很有趣\",\n    \"author\": \"刘帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052497-71e6ec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的亚里士多德\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051708-d0a98b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能性\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语今读（增订版）\",\n    \"author\": \"李泽厚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子疏解\",\n    \"author\": \"黄克剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051570-dc56d2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·马克思：生平与环境\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学入门很简单\",\n    \"author\": \"兰晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和伊壁鸠鲁一起旅行\",\n    \"author\": \"丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国问题\",\n    \"author\": \"伯特兰・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简哲学史\",\n    \"author\": \"莱斯莉・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学是怎样炼成的\",\n    \"author\": \"蒂莫西・威廉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩护的政治\",\n    \"author\": \"陈肖生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049620-9477eb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱共情\",\n    \"author\": \"保罗・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（果麦经典）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最神奇的24堂课\",\n    \"author\": \"查尔斯・哈奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《荒岛》及其他文本\",\n    \"author\": \"吉尔・德勒兹/大卫・拉普雅德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类的认识（校勘全译本）\",\n    \"author\": \"约翰・洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴尔特文集（套装）\",\n    \"author\": \"罗兰・巴尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的迷途\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺爱\",\n    \"author\": \"罗伯特・纳伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱默生和中国\",\n    \"author\": \"钱满素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048462-5cb91a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果敢力\",\n    \"author\": \"蒋齐仕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开哲学家的正确方式\",\n    \"author\": \"畠山创\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047841-67f2ce?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法言（全本全注全译）\",\n    \"author\": \"扬雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫的人生哲学\",\n    \"author\": \"北康利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被左右的独立思维\",\n    \"author\": \"塔利・沙罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力拓扑学\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045756-006b45?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生十二法则\",\n    \"author\": \"乔丹・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（全本全注全译）\",\n    \"author\": \"方韬译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从鹏扶摇到蝶蹁跹\",\n    \"author\": \"崔宜明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪思想史：从弗洛伊德到互联网\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学史讲演录（4卷）\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思博士论文\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044634-5ea046?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个行业都离不开心理学（套装共5册）\",\n    \"author\": \"王梓等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔学述\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044370-525bea?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代西方哲学讲演集\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044244-278ff8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五十年来的中国哲学\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044184-1eb4a5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔早期神学著作\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044037-106386?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日一善（套装全4册）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔哲学讲演集\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043905-0f7e12?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆的思想家\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈耶克作品（共6册）\",\n    \"author\": \"弗里德里希・奥古斯特・哈耶克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康德《纯粹理性批判》句读\",\n    \"author\": \"邓晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043740-d2094f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代唯心论简释\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑\",\n    \"author\": \"黑格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043518-deed3d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧书（作家榜经典文库）\",\n    \"author\": \"巴尔塔萨尔・格拉西安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦理学知性改进论\",\n    \"author\": \"斯宾诺莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉思录（译文经典）\",\n    \"author\": \"马可・奥勒留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自愿为奴（译文经典）\",\n    \"author\": \"艾蒂安・德・拉・波埃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时代的精神状况（译文经典）\",\n    \"author\": \"卡尔・雅斯贝斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042081-4c4aec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格拉底之死（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵、自我与社会（译文经典）\",\n    \"author\": \"米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（译文经典）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我与本我（译文经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的没落（译林人文精选）\",\n    \"author\": \"奥斯瓦尔德・斯宾格勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲与文明（译文经典）\",\n    \"author\": \"赫伯特・马尔库塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039576-5787a8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静\",\n    \"author\": \"艾林・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间的诗学（译文经典）\",\n    \"author\": \"加斯东・巴什拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁冬说庄子（套装共九册）\",\n    \"author\": \"梁冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039057-19d5a8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新马克思主义导引\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038226-094d97?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意会时刻\",\n    \"author\": \"克里斯琴・马兹比尔格/米凯尔・拉斯马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用主义和语用论\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037851-de25ea?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消费社会\",\n    \"author\": \"让・鲍德里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗素哲学概论\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037785-1e18fb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构主义\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037434-aff26f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福哲学书\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036993-8eb226?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼采经典著作及研究丛书（四册全）\",\n    \"author\": \"尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036969-f5e56d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图和鸭嘴兽一起去酒吧\",\n    \"author\": \"托马斯・卡斯卡特/丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：公民到领主\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（四）\",\n    \"author\": \"约翰・布鲁德斯・华生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035742-b3a5b1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的启蒙运动\",\n    \"author\": \"吉隆・・奥哈拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的科学哲学\",\n    \"author\": \"杰弗里・戈勒姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学小史\",\n    \"author\": \"干春松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（三）\",\n    \"author\": \"开普勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因何美妙而优雅地运行\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能梦的解析\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035280-e7c7d0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（一）\",\n    \"author\": \"摩尔根等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（二）\",\n    \"author\": \"玛丽・居里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类心理学\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035106-50ba06?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034953-de3083?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反抗者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034860-79f647?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾著作全收录\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁？如果有我，有几个我？\",\n    \"author\": \"理查德・大卫・普列斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么：一部教你做得道之人的生命学宝典\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大儒：王阳明\",\n    \"author\": \"周明河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的秩序\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜加油站遇见苏格拉底\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在群中\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033090-248e22?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲之死\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033084-abadc2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精神政治学\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033087-6bd310?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类不平等的起源和基础（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方哲学常识\",\n    \"author\": \"菲利普・斯托克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032880-081e2d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第五辑）\",\n    \"author\": \"雅各布・布克哈特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第六辑）\",\n    \"author\": \"乔治・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第三辑）\",\n    \"author\": \"爱德华・吉本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032616-894226?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学简史\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第四辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生学校：阿兰·德波顿的生活哲学课（套装共5册）\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032523-3b4094?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第一辑）\",\n    \"author\": \"亨利・戴维・梭罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032496-a4b82d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第二辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032466-45f355?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一神论的影子\",\n    \"author\": \"赵汀阳/阿兰・乐比雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"色情\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"链接未找到\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被诅咒的部分\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁冬说庄子系列（套装共六册）\",\n    \"author\": \"梁冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031500-73ab77?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类愚蠢辞典\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表象与本质\",\n    \"author\": \"侯世达/桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叔本华哲学经典（套装共5册）\",\n    \"author\": \"叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030699-1c8a13?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学经典必读系列（套装共5册）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读蒙田，是为了生活\",\n    \"author\": \"萨拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单独中的洞见\",\n    \"author\": \"张方宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开：周濂的100堂西方哲学课\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会创新\",\n    \"author\": \"罗德・贾金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030234-48a5cc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瞩望新轴心时代\",\n    \"author\": \"汤一介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030210-9be232?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的故事\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030186-7ef3cf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的艺术\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翁贝托·埃科作品系列套装（共6册）\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030105-3621bc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直面人生的困惑\",\n    \"author\": \"郭继承\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029922-c7333c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透王阳明《传习录》\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029910-ae3bf9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸书院（套装共8册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029850-c5adf5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明大传：知行合一的心学智慧（全新修订版）\",\n    \"author\": \"冈田武彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029652-25187b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书写的疗愈力量（原书第3版）\",\n    \"author\": \"詹姆斯・彭尼贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029613-545650?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子的领悟\",\n    \"author\": \"周保松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029604-147daf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝笑了99次\",\n    \"author\": \"彼得・凯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029406-b5a217?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（理想国新版）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本论（套装共3册）\",\n    \"author\": \"中共中央马克思恩格斯列宁斯大林著作编译局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029451-0ebaad?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周国平尼采译著系列\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029268-e62a4a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的哲学\",\n    \"author\": \"彼得・卡夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的智慧（作家榜经典文库）\",\n    \"author\": \"阿图尔・叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029181-2bb63c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思与《资本论》\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029055-50e394?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美学讲稿\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029019-43518f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦格纳事件\",\n    \"author\": \"弗雷德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028971-e22892?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔霍恩文集（上、下）\",\n    \"author\": \"约翰·C.卡尔霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲（美国新思想运动之父的逻辑学入门读物）\",\n    \"author\": \"威廉・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼采哲学经典（套装共5册）\",\n    \"author\": \"尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028356-b09317?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"箭术与禅心\",\n    \"author\": \"奥根・赫立格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028221-f5198d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的爱情\",\n    \"author\": \"陈果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027975-a6a097?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二性（合卷本）\",\n    \"author\": \"西蒙娜・德・波伏瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的启蒙\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027996-39914b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单向度的人\",\n    \"author\": \"赫伯特・马尔库塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027930-c2ca75?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴特文选（全6册）\",\n    \"author\": \"罗兰・巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平常的恶\",\n    \"author\": \"朱迪丝·N.施克莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027648-d9850c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗素传（全2册）\",\n    \"author\": \"瑞・蒙克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027564-a1949f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力意志与永恒轮回（译文经典）\",\n    \"author\": \"弗里德里希·威廉·尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想国（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027216-6c81c9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐符号\",\n    \"author\": \"塔拉斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界哲学简史\",\n    \"author\": \"罗伯特·C·所罗门等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026994-8f39ae?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自立\",\n    \"author\": \"拉尔夫・瓦尔多・爱默生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026919-bdb3e9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界观（原书第2版）\",\n    \"author\": \"理查德・德威特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026505-be18f3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撼动世界史的思想家格斗\",\n    \"author\": \"茂木诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026415-5855e5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们时代的精神状况\",\n    \"author\": \"海因里希・盖瑟尔伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026277-82d739?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之轮\",\n    \"author\": \"伊丽莎白・库伯勒-罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当美拯救我们\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走，一堂哲学课\",\n    \"author\": \"弗里德里克・格鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福，一次哲学之旅\",\n    \"author\": \"弗雷德里克・勒诺瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025566-82e0dc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界第一好懂的哲学课（修订版）\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025569-9209ca?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中9·禅的入门\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学三论（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024942-0c5d1b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天幕红尘\",\n    \"author\": \"豆豆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024933-e961b6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意识光谱\",\n    \"author\": \"肯・威尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的哲学\",\n    \"author\": \"朱尔斯・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜威选集（5卷本）\",\n    \"author\": \"刘放桐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的哲学密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学·科学·常识\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024279-dcadb0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简西方哲学史\",\n    \"author\": \"杰瑞米・斯坦格鲁/詹姆斯・加维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024156-e74da6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉泵和其他思考工具\",\n    \"author\": \"丹尼尔・丹尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西之道\",\n    \"author\": \"汉斯・格奥尔格・梅勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性、美德和灵魂的声音\",\n    \"author\": \"西塞罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023961-69cf76?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学常识\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023640-fe3bfc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，我是正经哲学书\",\n    \"author\": \"富增章成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023448-35b5d1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单的逻辑学\",\n    \"author\": \"麦克伦尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝话\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实主义者的乌托邦\",\n    \"author\": \"鲁特格尔・布雷格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023271-cc8268?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学之美\",\n    \"author\": \"艾克哈特・玛腾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023118-bb94c1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级智能\",\n    \"author\": \"尼克・波斯特洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶的科学\",\n    \"author\": \"西蒙・巴伦-科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无政府、国家和乌托邦\",\n    \"author\": \"罗伯特・诺齐克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022605-61758e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宪法学说（修订译本）\",\n    \"author\": \"卡尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022602-de44b4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与你（果麦经典）\",\n    \"author\": \"马丁・布伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022446-f472b6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学起步\",\n    \"author\": \"邓晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022341-909e43?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本书书名无法描述本书内容\",\n    \"author\": \"埃里克・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的人（译文经典）\",\n    \"author\": \"威廉・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间重生\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知三部曲\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明2：四句话读懂阳明心学\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明3：王阳明家训\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类存在的意义\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的博弈\",\n    \"author\": \"约翰・戈特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021213-4c529b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中西方哲学史（套装共2册）\",\n    \"author\": \"冯友兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021030-097825?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Illuminations\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020604-dce4aa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卸下心头重担\",\n    \"author\": \"阿鲁老和尚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020496-159444?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看，这是哲学\",\n    \"author\": \"唐纳德・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020112-4d9cd4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小书馆系列第一辑（共8册）\",\n    \"author\": \"冯友兰/瞿蜕园/俞剑华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020055-b5b7a8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学学习：斯坦福黄金学习法则\",\n    \"author\": \"丹尼尔 L. 施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020025-038e41?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个瑜伽行者的自传\",\n    \"author\": \"帕拉宏撒・尤迦南达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019968-e117f9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想史：从火到弗洛伊德（全二册）\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想的力量\",\n    \"author\": \"布鲁克・诺埃尔・穆尔/肯尼思・布鲁德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019563-28ba63?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾柯谈美丑（套装共2册）\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019590-c15b80?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学家们都干了些什么？（2015年全新修订版）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019287-bbfe16?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：哲学宗教（上册）\",\n    \"author\": \"周锡䪖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019221-2ec92b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：哲学宗教（下册）\",\n    \"author\": \"杨祖汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019209-42a853?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Why Buddhism is True\",\n    \"author\": \"Robert Wright\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019161-b5bee8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的快乐\",\n    \"author\": \"罗伯特・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019143-2bee90?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义咖啡馆\",\n    \"author\": \"莎拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019089-4e2eda?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的智慧：如何才能幸福度过一生\",\n    \"author\": \"阿图尔・叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018105-7725a4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名家名译·大师人生智慧精华丛书\",\n    \"author\": \"柏拉图/叔本华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018189-56ffc0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的智慧（套装共6册）\",\n    \"author\": \"赵丽荣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017973-981516?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实验是如何终结的？\",\n    \"author\": \"彼得・伽里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017994-a7216f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下的当代性\",\n    \"author\": \"赵汀阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017931-313da6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的孤独\",\n    \"author\": \"陈果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017451-8689ec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国王的两个身体\",\n    \"author\": \"恩斯特・康托洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活法（修订版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016905-37a500?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给无神论者\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016830-fff7c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的慰藉\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016734-154cfc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就要很独特\",\n    \"author\": \"西蒙・布莱克本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016554-bec7cf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静冥想的力量（十册套装）\",\n    \"author\": \"帕拉宏撒・尤迦南达等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016377-d348d3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维与创造性思维\",\n    \"author\": \"加里・R・卡比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016056-730262?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲\",\n    \"author\": \"威廉姆・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国的智慧（全2册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015927-98a2b1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界哲学史\",\n    \"author\": \"汉斯・约阿西姆・施杜里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015684-127350?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们如何正确思维\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人溺水\",\n    \"author\": \"拉里莎・麦克法夸尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术的本质\",\n    \"author\": \"布莱恩・阿瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015207-84ea05?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红书\",\n    \"author\": \"荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015039-8a6091?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学的40项研究（第7版）\",\n    \"author\": \"罗杰・R・霍克博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014838-650722?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查拉图斯特拉如是说\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014622-0410f5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悉达多（果麦经典）\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014601-c70ef2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铃木大拙说禅\",\n    \"author\": \"铃木大拙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014136-19a5b6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界顶级思维\",\n    \"author\": \"沧海满月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013860-8e324d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书译馆系列（套装10本）\",\n    \"author\": \"尼采等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013554-def23e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本哲学书\",\n    \"author\": \"托马斯・内格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012999-032fe2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顿悟：捕捉灵感的艺术\",\n    \"author\": \"查尔斯・基弗/马尔科姆・康斯特布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012723-eac5ab?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的蓝色逻辑书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学家们都干了些什么？\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012042-46b91e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义：一场思辨之旅\",\n    \"author\": \"迈可・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012036-0c58f8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《存在与时间》释义\",\n    \"author\": \"张汝伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011925-622b16?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你会杀死那个胖子吗？\",\n    \"author\": \"戴维・埃德蒙兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪漫主义的根源\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011475-a98679?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁是谁的太阳：尼采随笔\",\n    \"author\": \"弗里德里希・威廉・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011469-72eb20?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太傻天书\",\n    \"author\": \"太傻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱智书系(套装共7册)\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011070-3f1f08?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界的本质\",\n    \"author\": \"亚瑟・斯坦利・爱丁顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010893-b337b8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果没有今天，明天会不会有昨天？\",\n    \"author\": \"伊夫・博萨尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010665-9c2c9a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德景观\",\n    \"author\": \"萨姆・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考中医\",\n    \"author\": \"刘力红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010455-725a39?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的灵魂\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的后人类未来\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗洛伊德经典作品集\",\n    \"author\": \"弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010278-e9d59e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人与永恒\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的艺术\",\n    \"author\": \"艾里希・弗洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010122-1f898c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"控制论与科学方法论\",\n    \"author\": \"金观涛/华国凡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009942-8968ed?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方哲学史（套装共2册）\",\n    \"author\": \"弗兰克・梯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009582-0a04b7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎贝尔生活美学\",\n    \"author\": \"戴安娜・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009570-bbd908?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西天到中土\",\n    \"author\": \"西天中土项目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教育家叔本华\",\n    \"author\": \"韦启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009453-72d4ea?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大断裂\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009438-2a63df?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴阳五要奇书\",\n    \"author\": \"郭璞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009429-d6e794?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的解析\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009282-2232c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开放社会及其敌人（全二卷）\",\n    \"author\": \"卡尔・波普尔爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：华夏世界的历史建构\",\n    \"author\": \"刘仲敬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞穴奇案\",\n    \"author\": \"萨伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008175-d08cdd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公正：该如何做是好\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008139-f61de9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正全集：王阳明全集\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞利格曼幸福五部曲\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是食人族\",\n    \"author\": \"克劳德・列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学究竟是什么（第3版）\",\n    \"author\": \"A.F.查尔默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当道家统治中国\",\n    \"author\": \"林嘉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（30周年纪念版）\",\n    \"author\": \"理查德·道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不能承受的生命之轻\",\n    \"author\": \"米兰·昆德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006690-905dbd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅与摩托车维修艺术\",\n    \"author\": \"罗伯特·M.波西格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的权利（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006564-636a09?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你永远都无法叫醒一个装睡的人\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代哲学的智慧（译文经典）\",\n    \"author\": \"皮埃尔・阿多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006372-3fb9a1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华的智慧\",\n    \"author\": \"刘笑敢等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006306-708bf4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（经典译林）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厚黑学大全集\",\n    \"author\": \"李宗吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005253-80c12a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十四史：文白对照版（全12册）\",\n    \"author\": \"《二十四史》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509637-6f1905?p=8866\",\n    \"category\": \"史书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递1\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866\",\n    \"category\": \"国漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人9\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866\",\n    \"category\": \"国漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鹤三绝\",\n    \"author\": \"二斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866\",\n    \"category\": \"国漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会幸福\",\n    \"author\": \"陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866\",\n    \"category\": \"幸福\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们最幸福\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866\",\n    \"category\": \"幸福\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫与黑：K.J.帕克短篇小说集\",\n    \"author\": \"K.J.帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498744-f6d482?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界奇幻地图\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501741-13c2f5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一律法三部曲\",\n    \"author\": \"乔・阿克罗比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504495-3b4c30?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都市异闻录\",\n    \"author\": \"烟萝萤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510576-c3a618?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长日尽处\",\n    \"author\": \"斯蒂芬妮・加伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512178-3ce912?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟与镜\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512340-683bae?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古王国传奇五部曲\",\n    \"author\": \"加思・尼克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513600-9434c9?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"订书匠\",\n    \"author\": \"布里奇特・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999211-bda260?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刚多林的陷落（插图本）\",\n    \"author\": \"J. R. R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995080-a6b324?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐骨\",\n    \"author\": \"天涯野草\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991843-ed92a9?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人行世界\",\n    \"author\": \"七马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990592-949566?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一月物语\",\n    \"author\": \"平野启一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989392-a006fe?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有顶天家族\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988357-5975f0?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二代目归来\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988351-2d0fbe?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶力量：超自然生物图鉴\",\n    \"author\": \"提姆・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985678-c429a7?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兽国\",\n    \"author\": \"戴夫・艾格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985486-dcca8d?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破战者\",\n    \"author\": \"布兰登・桑德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985150-3bb1ea?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谭恩美作品集（套装共3本）\",\n    \"author\": \"谭恩美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985123-02ba5b?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漏做招牌的疗养院\",\n    \"author\": \"布鲁诺・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984817-29e172?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坟场之书\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984631-c99749?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血与火：坦格利安王朝史\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983806-ec2271?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉戈萨手稿\",\n    \"author\": \"扬・波托茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982513-606bac?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血之遗产\",\n    \"author\": \"理查德˙A.纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054489-624f55?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略级天使\",\n    \"author\": \"白伯欢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052299-3d2050?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐页书城三部曲\",\n    \"author\": \"凯・迈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇想博物志\",\n    \"author\": \"涩泽龙彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051621-c26076?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇物语·噩梦\",\n    \"author\": \"宁航一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051531-fb4a6f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚瑟王之死（果麦经典）\",\n    \"author\": \"托马斯・马洛礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰风谷三部曲\",\n    \"author\": \"R.A.萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050406-705d67?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说3）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051225-10a03f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说1）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050733-ce5a62?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗物质三部曲\",\n    \"author\": \"菲利普・普尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说2）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050352-c86d54?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡林的子女（插图本）\",\n    \"author\": \"J.R.R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044868-5b0ca5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空中城\",\n    \"author\": \"夏芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043191-5eb35a?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（作家榜经典文库）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042867-c3483f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳王与海妖\",\n    \"author\": \"冯达·N.麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041379-6263bc?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜袭动物园\",\n    \"author\": \"比尔・布龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039288-50ece6?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子不语（果麦经典）\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036864-3b3707?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝魂\",\n    \"author\": \"布兰登・桑德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036789-63a21f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亡者归来\",\n    \"author\": \"詹森・莫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035871-b3b323?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Lost Hero\",\n    \"author\": \"Rick Riordan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034704-83b347?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Son of Neptune\",\n    \"author\": \"Riordan, Rick\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034701-12ce38?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Blood of Olympus\",\n    \"author\": \"Rick Riordan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034686-547a10?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（果麦经典）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿里\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌有乡\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033015-db0e92?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Season of Storms\",\n    \"author\": \"Sapkowski/Andrzej\",\n    \"link\": \"链接未找到\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖得主石黑一雄作品集（套装共8册）\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032526-985657?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九州缥缈录\",\n    \"author\": \"江南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032490-b7d958?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七侯笔录\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032064-f516e5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪物比利·迪恩的真实故事\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031716-c957b8?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英伦魔法拾遗\",\n    \"author\": \"苏珊娜・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029736-2034c2?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十六骑\",\n    \"author\": \"念远怀人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028368-c78c0c?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地疤\",\n    \"author\": \"柴纳・米耶维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027942-9566c1?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能预警\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027366-bb5633?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未亡日\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027129-0db3f5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（插图珍藏版）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024228-8bc84a?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘与白骨的王国（全4册）\",\n    \"author\": \"格里格・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023694-8bd945?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贞观幽明谭\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023625-5e1243?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗精灵三部曲\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022644-fd884f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧众神\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022500-26f71b?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星尘\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022449-2e132d?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸男孩\",\n    \"author\": \"米拉・巴尔托克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021681-5ea59b?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死灵之书\",\n    \"author\": \"洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021267-6d09de?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迦梨之歌\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021000-5d08a4?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无根之木\",\n    \"author\": \"娜奥米・诺维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018459-bda9be?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫川（全五册）\",\n    \"author\": \"老猪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017499-3d0e79?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵血脉01：血脉\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017235-f0c794?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵血脉02：无星之夜\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017223-2c3fc2?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵血脉03：暗军突袭\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017217-b9f9f5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵血脉04：破晓之路\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017214-545592?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妖猫传（全4册）\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015699-96e7ca?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵宝钻\",\n    \"author\": \"托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015567-02c2c7?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上牧云记\",\n    \"author\": \"今何在\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015468-1af3e8?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：魔法的颜色\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015024-5ce406?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：异光\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015021-76665f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：平等权利\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015015-402a9f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：死神学徒\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015012-4369ec?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：大法\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015006-a1b497?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：金字塔\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014994-1dde5b?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：卫兵！卫兵！\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015009-cfd897?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014685-b41a25?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩2：沉默之歌\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014682-90a977?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙娜拉之剑（全3册）\",\n    \"author\": \"特里・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014520-838f52?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：猫和少年魔笛手\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014460-bde9de?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四海鲸骑（套装共2册）\",\n    \"author\": \"马伯庸/驰骋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014385-34f7fa?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法活船1：魔法之船\",\n    \"author\": \"罗宾・霍布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011976-488bf7?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法活船2：疯狂之船\",\n    \"author\": \"罗宾・霍布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011961-e632a9?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法活船3：命运之船\",\n    \"author\": \"罗宾・霍布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011949-ace384?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝伦与露西恩（插图本）\",\n    \"author\": \"托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011979-e75e80?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰龙\",\n    \"author\": \"乔治・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011706-1a3d77?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"觉醒日（套装共4册）\",\n    \"author\": \"唐缺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010131-879962?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金沙古卷（套装全4册）\",\n    \"author\": \"鱼离泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009879-c71aec?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努门诺尔与中洲之未完的传说\",\n    \"author\": \"J.R.R.托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009759-306ebf?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安珀志系列（1-10册）\",\n    \"author\": \"罗杰・泽拉兹尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009735-823f6f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇动物在哪里\",\n    \"author\": \"J.K.罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009636-41157c?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悟空传（完美纪念版）\",\n    \"author\": \"今何在\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009351-e1b571?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狼的恩赐\",\n    \"author\": \"安妮・赖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008847-6c1eed?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国众神（十周年作者修订版）\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008802-e10699?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪屋女孩\",\n    \"author\": \"兰萨姆・里格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008331-4ae033?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪屋女孩2：空城\",\n    \"author\": \"兰萨姆・里格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008328-d243c1?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光明王系列（套装共2册）\",\n    \"author\": \"罗杰・泽拉兹尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008265-d3532c?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴阳师典藏合集（共5册）\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007383-629588?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙族（共5册）\",\n    \"author\": \"江南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007161-bed205?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天赋者\",\n    \"author\": \"林洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007005-788784?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录2：长安鬼迹\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之一·入唐\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006813-c02669?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之二·咒俑\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006810-5335bf?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之三·胡术\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006801-6964e4?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之四·不空\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006795-b95cc7?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天行健（套装全7册）\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006582-7f3c57?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地海传奇六部曲\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光之轮全集\",\n    \"author\": \"罗伯特·乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006192-45f890?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌1-5卷（全15册）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005802-26b297?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"殷商舰队玛雅征服史\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005349-29bb67?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：企业数字化生存指南\",\n    \"author\": \"尤尔根・梅菲特/沙莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866\",\n    \"category\": \"数字化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好视频一秒抓住人心\",\n    \"author\": \"高桥弘树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866\",\n    \"category\": \"视频\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷屏\",\n    \"author\": \"凯文・阿洛卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866\",\n    \"category\": \"视频\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华遗韵\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华心影\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老北京的记忆\",\n    \"author\": \"张善培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051321-5b328c?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的隐秘角落\",\n    \"author\": \"陆波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再会，老北京\",\n    \"author\": \"迈克尔・麦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022461-d6df24?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京，1912\",\n    \"author\": \"穆儒丐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017358-eeec31?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八面来风\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014949-70bd3c?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晨钟暮鼓\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红墙黄瓦\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014904-b28aee?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观念的力量\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866\",\n    \"category\": \"柏林\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林：一座城市的肖像\",\n    \"author\": \"罗里・麦克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866\",\n    \"category\": \"柏林\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡尾酒原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多/亚尼斯・瓦卢西克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866\",\n    \"category\": \"鸡尾酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔制\",\n    \"author\": \"胡国栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491937-798132?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的力量\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492024-2f20d3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来呼啸而来\",\n    \"author\": \"彼得・戴曼迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496473-11e887?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生生不息\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497664-326a21?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识的力量\",\n    \"author\": \"梁宇峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期主义\",\n    \"author\": \"高德威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑：看清这个世界的底牌\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样解决问题\",\n    \"author\": \"伯纳德・加雷特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500307-6d78d2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力：全新升级版\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯传\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往财富自由之路\",\n    \"author\": \"阿什文・B. 查布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501078-233e0c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊编年史\",\n    \"author\": \"宁向东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯致股东的信\",\n    \"author\": \"史蒂夫・安德森/卡伦・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502302-565477?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网口述历史第1辑（全8册）\",\n    \"author\": \"方兴东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503886-a36268?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509649-bb9c5c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光环效应\",\n    \"author\": \"罗森维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509661-105edd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告争夺战\",\n    \"author\": \"肯・奥莱塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509673-5b5abf?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"副业赚钱之道\",\n    \"author\": \"安晓辉/程涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509718-cf4b4b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：嘉信理财持续创新之道\",\n    \"author\": \"查尔斯・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡&#038;波士顿解决问题方法和创造价值技巧\",\n    \"author\": \"名和高司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509916-d4a822?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来3\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森（\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁军团队\",\n    \"author\": \"欧德张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510093-23e3eb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大头侃人：任正非\",\n    \"author\": \"于立坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬核晋升\",\n    \"author\": \"朱莉・卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的世界\",\n    \"author\": \"许奔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资经典战例之中国恒大\",\n    \"author\": \"正合奇胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510600-59043f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产是部金融史\",\n    \"author\": \"黄立坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本质：贝佐斯的商业逻辑与领导力法则\",\n    \"author\": \"海伦娜・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511119-ae55f7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共创对话\",\n    \"author\": \"林小桢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511161-a37ad3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海星式组织\",\n    \"author\": \"奥瑞・布莱福曼/罗德・贝克斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大营销哲学\",\n    \"author\": \"陈军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511335-35eeb4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从绿到金\",\n    \"author\": \"丹尼尔・埃斯蒂/安德鲁・温斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511350-277a7e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勒布朗·詹姆斯的商业帝国\",\n    \"author\": \"布赖恩・文霍斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511371-8604c1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学危机管理课\",\n    \"author\": \"伦纳德・马库斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511461-c57e66?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级参与者\",\n    \"author\": \"杰里米・海曼斯/亨利・蒂姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511710-5d87a4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好视频一秒抓住人心\",\n    \"author\": \"高桥弘树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造差异\",\n    \"author\": \"斯科特・麦克凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512001-af91e6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密Instagram\",\n    \"author\": \"莎拉・弗莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无止之境\",\n    \"author\": \"秦朔/陈天翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512349-8a08a2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化营销\",\n    \"author\": \"胡华成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售冠军是如何炼成的\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512427-0c8976?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷搅局者\",\n    \"author\": \"莱斯利・柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力变现\",\n    \"author\": \"徐悦佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘网飞\",\n    \"author\": \"马克・伦道夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"方舟：数字经济创新史\",\n    \"author\": \"赵小兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513465-e21bc9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁道之心\",\n    \"author\": \"水户冈锐治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513615-da47d3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义增长\",\n    \"author\": \"马丁・R.斯塔奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513630-010be2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工具，还是武器？\",\n    \"author\": \"布拉德・史密斯/卡罗尔・安・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工匠哲学\",\n    \"author\": \"马修・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004671-7199ef?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从偶然到必然\",\n    \"author\": \"夏忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不拘一格\",\n    \"author\": \"里德・哈斯廷斯/艾琳・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是茅台\",\n    \"author\": \"张小军/马玥/熊玥伽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004500-5515a4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富管理与传承\",\n    \"author\": \"云大慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004485-01b160?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球创新投资\",\n    \"author\": \"睦大均\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉模式\",\n    \"author\": \"迈克尔・瓦伦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004248-9ec263?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识顾客（原书第13版）\",\n    \"author\": \"戴维·L.马瑟斯博等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004203-857c83?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转机\",\n    \"author\": \"萨拉・罗布・奥黑根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯唐成事心法\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世风日上\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国出行\",\n    \"author\": \"王千马/何丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002166-292e8e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被看见的力量\",\n    \"author\": \"快手研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001092-9126ac?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值：难点、解决方案及相关案例（原书第3版）\",\n    \"author\": \"阿斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案写作指南\",\n    \"author\": \"李洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的贸易\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对坦率\",\n    \"author\": \"金・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光刻巨人\",\n    \"author\": \"瑞尼・雷吉梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华方法\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革性创新\",\n    \"author\": \"加里・皮萨诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的悖论\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越寒冬\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998776-90be10?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级话题\",\n    \"author\": \"肖大侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智转向\",\n    \"author\": \"奥马尔・阿布什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾客心理战\",\n    \"author\": \"菲利普・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激进市场\",\n    \"author\": \"埃里克·A.波斯纳/E.格伦·韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995302-d77728?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业之巅\",\n    \"author\": \"周导\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995260-2128f8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞轮效应\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业实战三部曲\",\n    \"author\": \"唐纳德・米勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心：稻盛和夫的一生嘱托\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为增长法\",\n    \"author\": \"胡赛雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994717-50ac38?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去规模化\",\n    \"author\": \"赫曼特・塔内佳/凯文・梅尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商从商朝来\",\n    \"author\": \"傅奕群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994669-267453?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的旅程\",\n    \"author\": \"罗伯特・艾格/乔尔・洛弗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的实践\",\n    \"author\": \"野中郁次郎/西原文乃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻：新全球化时代的中国韧性与创新\",\n    \"author\": \"秦朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒经济学\",\n    \"author\": \"约翰・思文/德文・布里斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从对抗到共赢\",\n    \"author\": \"杨杜泽/沈莉娟/王赛/范松璐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏执乐观\",\n    \"author\": \"李思拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优步：算法重新定义工作\",\n    \"author\": \"亚力克斯・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的经济学\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网四大\",\n    \"author\": \"斯科特・加洛韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事经济学\",\n    \"author\": \"罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界竞争\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扛住就是本事\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯的数字帝国\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七次转型\",\n    \"author\": \"罗伯特 A. 伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢的答案（尊享版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式4.0\",\n    \"author\": \"梁宇亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处不在\",\n    \"author\": \"中国邮政快递报社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发式赢单\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏世民：我的经验与教训\",\n    \"author\": \"苏世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美孚石油公司史\",\n    \"author\": \"艾达・塔贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的行为\",\n    \"author\": \"托马斯・科洛波洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的商学课\",\n    \"author\": \"路骋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长五线\",\n    \"author\": \"王赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：数字化时代组织效率的本质\",\n    \"author\": \"陈春花/朱丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053076-87dade?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无印良品世界观\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052854-1168e3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无印良品笔记术\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052794-d169d9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理如何改变商业模式\",\n    \"author\": \"卡拉・欧戴尔/辛迪・休伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门到门时代\",\n    \"author\": \"Edward Humes\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让顾客都成为回头客\",\n    \"author\": \"安部修仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑞幸闪电战\",\n    \"author\": \"沈帅波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品的101个新零售细节\",\n    \"author\": \"张桓/杨永朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芭比：一个娃娃风靡世界的秘密\",\n    \"author\": \"罗宾・格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢于不同：商业巨头白手起家的秘诀\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050898-fc81cd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉新\",\n    \"author\": \"加布里埃尔・温伯格/贾斯汀・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗经济学\",\n    \"author\": \"彼得・里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050655-a3539f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归商业常识\",\n    \"author\": \"麦克・霍夫林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理是个技术活\",\n    \"author\": \"芭芭拉・米切尔/科妮莉亚・甘伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡新零售\",\n    \"author\": \"场景实验室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹性\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：经济增长新引擎\",\n    \"author\": \"孙松林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华百万大奖赛案例集\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创始人手记\",\n    \"author\": \"季琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“芯”想事成\",\n    \"author\": \"陈芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超脑行为金融学\",\n    \"author\": \"薛冰岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047115-117230?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界皆营销\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫的人生哲学\",\n    \"author\": \"北康利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期2\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命4.0\",\n    \"author\": \"菲利普・科特勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越哈佛\",\n    \"author\": \"马克·H.麦考梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046038-9c7a11?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业突围\",\n    \"author\": \"郑旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045927-57d9d5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良性增长\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电式扩张\",\n    \"author\": \"里德 · 霍夫曼/叶嘉新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30天精读MBA（套装共3册）\",\n    \"author\": \"科林・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能战略\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽：风口上的独角兽\",\n    \"author\": \"陈歆磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互惠资本主义\",\n    \"author\": \"布鲁诺・罗奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044532-bf397f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和毕加索一起淋浴\",\n    \"author\": \"克里斯蒂安・斯塔迪尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质套装（全3册）\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱的猴子\",\n    \"author\": \"安东尼奥・加西亚・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像开创者一样思考\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独立，从财富开始\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破之道\",\n    \"author\": \"基思 R. 麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的写作武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的逻辑思维\",\n    \"author\": \"高杉尚伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业冒险\",\n    \"author\": \"约翰・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密硅谷\",\n    \"author\": \"米歇尔 E. 梅西纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20堂商业思维进阶课\",\n    \"author\": \"环球人物新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来版图\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极限创新\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来工作\",\n    \"author\": \"泰勒・皮尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040533-619ca7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破现实的困境\",\n    \"author\": \"克里斯・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售铁军\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线创新\",\n    \"author\": \"李善友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西贝的服务员为什么总爱笑\",\n    \"author\": \"贾林男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反常识\",\n    \"author\": \"邓肯·J. 瓦茨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038859-8c613f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级营销必修课（套装全8册）\",\n    \"author\": \"帕科・昂德希尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意会时刻\",\n    \"author\": \"克里斯琴・马兹比尔格/米凯尔・拉斯马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷帝国\",\n    \"author\": \"露西・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的定位\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的国度\",\n    \"author\": \"詹姆斯・布雷丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从颠覆到创新\",\n    \"author\": \"长江商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业头条\",\n    \"author\": \"兰德尔・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌22律\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Facebook诞生记\",\n    \"author\": \"本・麦兹里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035721-c40b04?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售圣经\",\n    \"author\": \"杰弗里・吉特黙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透股权架构\",\n    \"author\": \"李利威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是风口\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰度决策\",\n    \"author\": \"小约瑟夫・巴达拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌方法\",\n    \"author\": \"比尔・基尔迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的路径\",\n    \"author\": \"斯蒂芬・温克尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"25%的回头客创造75%的利润\",\n    \"author\": \"高田靖久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化：顶级企业家自述40年成长心法\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出版人\",\n    \"author\": \"艾伦・布里克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险创业\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计大师的商业课\",\n    \"author\": \"戴维・舍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生存\",\n    \"author\": \"李凯旋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032421-4c536f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒂姆·库克传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互动\",\n    \"author\": \"詹妮弗・杜尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031617-5f50a6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱彼迎传\",\n    \"author\": \"利・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传\",\n    \"author\": \"哈米什・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售的本质\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷蓝图\",\n    \"author\": \"雅各・范德库伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不放弃\",\n    \"author\": \"唐纳德・特朗普/梅瑞迪斯・麦基沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线：跨越“S型曲线”的二次增长\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时空内爆\",\n    \"author\": \"常政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030543-02217e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃\",\n    \"author\": \"克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事与估值\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企业生命周期\",\n    \"author\": \"伊查克・爱迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户的本质\",\n    \"author\": \"史蒂文・范・贝莱格姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米哲学\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030237-138f5e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒：如何用价值观创造价值\",\n    \"author\": \"弗雷德・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Trillion Dollar Coach\",\n    \"author\": \"Eric Schmidt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029766-d3bd25?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国陷阱\",\n    \"author\": \"弗雷德里克・皮耶鲁齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏血：一个硅谷巨头的秘密与谎言\",\n    \"author\": \"约翰・卡雷鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能商业\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本质\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029286-80bcf0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊万卡·特朗普\",\n    \"author\": \"伊万卡・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站火星\",\n    \"author\": \"克里斯蒂安・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是OKR\",\n    \"author\": \"约翰・杜尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028263-0178b7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密无印良品\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028110-182231?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识经济\",\n    \"author\": \"迪恩・卡尔兰/乔纳森・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028074-3310e2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的七个秘密\",\n    \"author\": \"戴维・奥德兹/埃里克・莱曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027957-1bbf09?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是执行力\",\n    \"author\": \"赵伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027924-49edb9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性创新\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027912-c374f8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里铁军销售课\",\n    \"author\": \"李立恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成交：如何实现可持续性销售\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027513-d2ebed?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不颠覆，就会被淘汰\",\n    \"author\": \"杰・萨米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HBO的内容战略\",\n    \"author\": \"小比尔・梅西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026886-3c5154?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人思维\",\n    \"author\": \"贾森・卡拉卡尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小趋势²\",\n    \"author\": \"马克・佩恩/梅勒迪斯・法恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026817-44ce10?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业在路上\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025302-5c18dc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革的基因\",\n    \"author\": \"杨国安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024687-a63a0b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Bad Blood\",\n    \"author\": \"John Carreyrou\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024663-88d5e5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"订阅：数字时代的商业变现路径\",\n    \"author\": \"罗伯特・金奇尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024594-662d48?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常青：如何持久吸引客户\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义团队\",\n    \"author\": \"拉斯洛・博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义公司\",\n    \"author\": \"埃里克・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯长\",\n    \"author\": \"肖恩・阿美拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度粉销\",\n    \"author\": \"丁丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈飞文化手册\",\n    \"author\": \"帕蒂・麦考德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛决策课\",\n    \"author\": \"迈克尔・罗伯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024012-dc6cf8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底特律往事\",\n    \"author\": \"比尔・弗拉斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光电帝国\",\n    \"author\": \"吉尔・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023925-f4200b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的陷阱\",\n    \"author\": \"阿里尔・扎拉奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新理解创业\",\n    \"author\": \"周航\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感驱动\",\n    \"author\": \"维尔・桑切斯・拉米拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识商业\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒循环\",\n    \"author\": \"亚当・潘恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售进化论\",\n    \"author\": \"陈欢/陈澄波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"IBM帝国缔造者：小沃森自传\",\n    \"author\": \"小托马斯・约翰・沃森/彼得・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同感\",\n    \"author\": \"吉姆・西诺雷利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数文明\",\n    \"author\": \"涂子沛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢（纪念版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌创业帮\",\n    \"author\": \"王丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抢占心智\",\n    \"author\": \"江南春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新法则：名企破局秘笈\",\n    \"author\": \"理查德・科克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI·未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众媒时代\",\n    \"author\": \"腾讯传媒研究\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Fifth Discipline Fieldbook\",\n    \"author\": \"Peter M. Senge/et al\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021675-47e500?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见未来商业（套装共4册）\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉你的商业计划书\",\n    \"author\": \"卡尔·J. 施拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远的零售\",\n    \"author\": \"厉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021438-4c2d0b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资源革命\",\n    \"author\": \"斯蒂芬・赫克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变人生\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"MBA十日读（第四版）\",\n    \"author\": \"史蒂文・西尔比格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合伙人制度\",\n    \"author\": \"郑指梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷启动：零成本做营销\",\n    \"author\": \"高臻臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴与四十大道\",\n    \"author\": \"赵先超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020613-0c1a46?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的16个关键词\",\n    \"author\": \"叶茂中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡思维\",\n    \"author\": \"洛威茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智力：商业奇迹的底层思维\",\n    \"author\": \"李中莹/舒瀚霆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019779-447881?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一网打尽：贝佐斯与亚马逊时代\",\n    \"author\": \"布拉德・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019773-9e4c6d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横越未知\",\n    \"author\": \"周健工\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019683-4e86be?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"视觉锤\",\n    \"author\": \"劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019587-9bb3b2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本制造\",\n    \"author\": \"盛田昭夫/下村满子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019545-1177bd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝佳提问：探询改变商业与生活\",\n    \"author\": \"沃伦・贝格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史\",\n    \"author\": \"杨旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大象飞\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞氏企业：设计未来组织新模式\",\n    \"author\": \"里卡多・塞姆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019056-a8bb99?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不做无效的营销\",\n    \"author\": \"王泽蕴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018744-787c46?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米逻辑\",\n    \"author\": \"吴正炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018564-06c2df?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链项目开发指南\",\n    \"author\": \"纳拉扬・普鲁斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018585-e3a2cc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Under New Management\",\n    \"author\": \"David Burkus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018441-015a18?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群思维：精神商业时代的创新创业法\",\n    \"author\": \"付岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018435-120347?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台革命：改变世界的商业模式\",\n    \"author\": \"杰奥夫雷 G. 帕克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺基亚总裁自述：重压之下\",\n    \"author\": \"约玛・奥利拉/哈利・沙库马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017967-f37367?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决战大数据（升级版）\",\n    \"author\": \"车品觉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017913-52f044?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3G资本帝国\",\n    \"author\": \"克里斯蒂娜・柯利娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业36条军规\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与感\",\n    \"author\": \"黎万强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交的本质\",\n    \"author\": \"兰迪・扎克伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质\",\n    \"author\": \"杰克・韦尔奇/苏西・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017043-68bb69?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017052-d7e7bd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡十年，水大鱼大\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017037-4de889?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离经叛道\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016914-9a3963?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Business Adventures\",\n    \"author\": \"John Brooks\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR：源于英特尔和谷歌的目标管理利器\",\n    \"author\": \"保罗・尼文/本・拉莫尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共赢\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016227-aa004f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小群效应\",\n    \"author\": \"徐志斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球风口\",\n    \"author\": \"王煜全/薛兆丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016092-2982cb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容经济\",\n    \"author\": \"谢利明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经营战略全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极复制\",\n    \"author\": \"李智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势红利\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新制造时代\",\n    \"author\": \"王千马/梁冬梅/何丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015264-52fd08?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激活个体\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光变：一个企业及其工业史\",\n    \"author\": \"路风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规则颠覆者\",\n    \"author\": \"内田和成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015054-0bd70a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回头客战略\",\n    \"author\": \"谢家华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔转型：人人都是CEO\",\n    \"author\": \"曹仰锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014961-4d7acd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HR+三支柱\",\n    \"author\": \"彭剑锋/马海刚/西楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014970-7e75ae?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为没有秘密\",\n    \"author\": \"吴春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富甲美国\",\n    \"author\": \"山姆・沃尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014853-c66266?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆品战略\",\n    \"author\": \"金错刀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌（2017全新修订版）\",\n    \"author\": \"陈楫宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014739-d21b56?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公司的概念（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014736-217047?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孵化皮克斯\",\n    \"author\": \"劳伦斯・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业就是要细分垄断\",\n    \"author\": \"李开复/汪华/傅盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样卖龙虾\",\n    \"author\": \"比尔・毕晓普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新物种爆炸\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014184-7e8d0a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆势销售：UGG创始人自述\",\n    \"author\": \"布莱恩・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健管理法\",\n    \"author\": \"张小军/马玥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013983-1e34a0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大道当然\",\n    \"author\": \"王石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精酿啤酒革命\",\n    \"author\": \"史蒂夫・欣迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪潮之巅\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AsK.反直觉询问\",\n    \"author\": \"莱恩・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数型组织\",\n    \"author\": \"萨利姆・伊斯梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无价\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CEO说：像企业家一样思考\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012924-0396bc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微创新\",\n    \"author\": \"德鲁・博迪/雅各布・戈登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品没有秘密\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福商业决策课\",\n    \"author\": \"卡尔・斯佩茨勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的方法\",\n    \"author\": \"内森・弗尔/杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为工作法\",\n    \"author\": \"黄继伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012357-a75698?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜利的法则\",\n    \"author\": \"铃木博毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可口可乐传\",\n    \"author\": \"马克・彭德格拉斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅2\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活的日本财阀\",\n    \"author\": \"陈霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011748-a353c5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售时代三部曲（套装共三册）\",\n    \"author\": \"杰弗里・米勒/大卫・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的皮球\",\n    \"author\": \"辉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010674-bc3805?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・职场那些事（全10册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010470-365bbf?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・像管理者一样思考（全15册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帮你省时间！替你划重点！教你学管理！\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·道森优势谈判系列\",\n    \"author\": \"罗杰・道森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维独孤九剑\",\n    \"author\": \"赵大伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾\",\n    \"author\": \"尼尔・埃亚尔/瑞安・胡佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级IP：互联网新物种方法论\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱商\",\n    \"author\": \"阿瑟・黑利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009600-e4c107?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十亿美金的教训\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米生态链战地笔记\",\n    \"author\": \"小米生态链谷仓学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能\",\n    \"author\": \"李开复/王咏刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董事会里的战争\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风口上的猪：一本书看懂互联网金融\",\n    \"author\": \"肖璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂到位\",\n    \"author\": \"亚当・施特尔茨/威廉・帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好战略，坏战略\",\n    \"author\": \"理查德・鲁梅尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与众不同\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来：更为简单有效的商业思维\",\n    \"author\": \"贾森・弗里德/大卫・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在火星上退休：伊隆・马斯克传\",\n    \"author\": \"亚当・杰佛逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定位（珍藏版）\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英的48个工作习惯\",\n    \"author\": \"户塚隆将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007767-d82cd1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·柯林斯成就卓越系列（套装共4册）\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新一轮产业革命\",\n    \"author\": \"亚力克・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳问：柳传志的管理三要素\",\n    \"author\": \"张涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007566-7946b7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰盛人生：安利创始人理查・狄维士自传\",\n    \"author\": \"理查・狄维士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴晓波细说商业史（套装共5册）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007437-79d20a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里传：这是阿里巴巴的世界\",\n    \"author\": \"波特・埃里斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底捞你学不会\",\n    \"author\": \"黄铁鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的解答\",\n    \"author\": \"克莱顿・克里斯坦森/迈克尔・雷纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨越鸿沟：颠覆性产品营销圣经\",\n    \"author\": \"杰弗里・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联想风云三十年\",\n    \"author\": \"赵雪/姜美芝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007260-d642e2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商战\",\n    \"author\": \"杰克・特劳特 / 阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集装箱改变世界（修订版）\",\n    \"author\": \"马克・莱文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达工作法\",\n    \"author\": \"万达集团企业文化中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"22条商规\",\n    \"author\": \"艾・里斯 / 杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售哲学系列：7-11便利店创始人自述（套装共2册）\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯传：让你的产品、思想、行为像病毒一样入侵\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从20万到30亿：特朗普自传\",\n    \"author\": \"唐纳德・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业 : 新创企业的成长思维\",\n    \"author\": \"埃里克・莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大是熬出来的\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达哲学：王健林首次自述经营之道\",\n    \"author\": \"王健林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白手套\",\n    \"author\": \"陈楫宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006468-79d6ba?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台战略\",\n    \"author\": \"陈威如/余卓轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行在宽处\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想丰满\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生长（权威未删节）\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"豪门兴衰：百年香港商业\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣氏百年：中国商业第一家族\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一个倒下的会不会是华为\",\n    \"author\": \"吴春波/田涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005934-356c47?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门口的野蛮人\",\n    \"author\": \"布赖恩・伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历代经济变革得失\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005394-6e2c3b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跌荡一百年：中国企业1870-1977（纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩荡两千年：中国企业公元前7世纪-1869年\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网新商业时代（套装共三册）\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化思维\",\n    \"author\": \"凯文・韦巴赫/丹・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大败局（十周年套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1：开启商业与未来的秘密\",\n    \"author\": \"彼得・蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾十五年\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡三十年（套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间词话：叶嘉莹讲评本\",\n    \"author\": \"叶嘉莹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499446-d9ea31?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画必背古诗词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499623-bea742?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙曼精选套装（共9册）\",\n    \"author\": \"蒙曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500643-e84655?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千家诗（古典文学大字本）\",\n    \"author\": \"谷一然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503001-f69279?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗境浅说\",\n    \"author\": \"俞陛云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512271-003d58?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典诗文之美（共13册）\",\n    \"author\": \"徐中玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004032-266b3e?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴老师魔性诗词课\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995359-399e21?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集校注（中华国学文库）\",\n    \"author\": \"赵崇祚编/杨景龙校注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984802-9d5c8d?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠悠我心\",\n    \"author\": \"史杰鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年灯火要人归\",\n    \"author\": \"陆蓓容\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983866-8a5362?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐祈诗全编\",\n    \"author\": \"唐祈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983401-76fd36?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词排行榜\",\n    \"author\": \"王兆鹏/郁玉英/郭红欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经点醒\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陶渊明集（作家榜经典文库）\",\n    \"author\": \"陶渊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（作家榜经典文库）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笠翁对韵（作家榜经典文库）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典咏流传诗词曲赋集（套装21册）\",\n    \"author\": \"李白/王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳永词集（词系列）\",\n    \"author\": \"柳永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033708-dc7a4b?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词集（词系列）\",\n    \"author\": \"姜夔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词学通论（词系列）\",\n    \"author\": \"吴梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033588-ce609f?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词品（词系列）\",\n    \"author\": \"杨慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033549-efac50?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧阳修词集（词系列）\",\n    \"author\": \"欧阳修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄庭坚词集（词系列）\",\n    \"author\": \"黄庭坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033456-e77dbf?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐宋词格律（词系列）\",\n    \"author\": \"龙榆生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033402-d9e7be?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词集（词系列）\",\n    \"author\": \"苏轼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏殊词集·晏幾道词集（词系列）\",\n    \"author\": \"晏殊/晏几道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词集（词系列）\",\n    \"author\": \"张草纫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033222-a4ae5e?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温庭筠词集·韦庄词集（词系列）\",\n    \"author\": \"温庭筠/韦庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦观词集（词系列）\",\n    \"author\": \"秦观\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033132-aa3b54?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白雨斋词话（词系列）\",\n    \"author\": \"陈廷焯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周邦彦词集（词系列）\",\n    \"author\": \"周邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033030-271dc5?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贺铸词集（词系列）\",\n    \"author\": \"贺铸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032997-d1ca33?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陆游词集（词系列）\",\n    \"author\": \"陆游\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词鉴赏辞典\",\n    \"author\": \"唐圭璋/钟振振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛弃疾词集（词系列）\",\n    \"author\": \"辛弃疾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029985-edf7ad?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋诗鉴赏辞典\",\n    \"author\": \"缪钺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029934-f3d31f?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小山词\",\n    \"author\": \"晏几道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026337-eedc64?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国诗词大会第二季（上册）\",\n    \"author\": \"栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015846-9ab93d?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国诗词大会第二季（下册）\",\n    \"author\": \"栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015822-5a5bf1?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词大会：品味古文人的“八卦”人生（套装共4册）\",\n    \"author\": \"张觅/郭瑞祥/江晓英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009096-8baf10?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰烬的光辉：保罗策兰诗选\",\n    \"author\": \"保罗・策兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493716-834b61?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新冠时代的我们\",\n    \"author\": \"保罗・乔尔达诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切境\",\n    \"author\": \"庆山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498237-63e633?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫里的中国\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498681-511b6c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万个明天\",\n    \"author\": \"秦萤亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498915-531f5e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的巴黎\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499392-a3a61b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间清醒\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501171-da5945?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国诗人徐志摩作品典藏全集\",\n    \"author\": \"徐志摩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只是眷恋这人间烟火（全新修订版）\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508929-c650ea?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡澜生活美学系列（套装共9册）\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509004-95a6e4?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢生命根底里的宁静\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第二季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典散文精选注译（套装共8册）\",\n    \"author\": \"傅璇琮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生因孤独而丰盛\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509907-f0c5ef?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉魏六朝文选\",\n    \"author\": \"刘文忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510924-186bf2?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度光阴的人\",\n    \"author\": \"苏辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511038-a9bf9b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书鱼知小\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511173-ce7dc0?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白沙：来自外部世界的经历\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511329-9cfa6d?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生处处是修行\",\n    \"author\": \"鬼脚七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511509-cd8ae1?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱天下一切狗\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511947-976f66?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥肉（增订版）\",\n    \"author\": \"朱赢椿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512190-f52a7f?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游荡集\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和狗狗的十二次哲学漫步\",\n    \"author\": \"安东尼・麦高恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512505-d10692?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨夜短文\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513132-48b671?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国作家朱自清作品典藏全集（套装共十六册）\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513285-ea02d5?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第一季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书读完了\",\n    \"author\": \"金克木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513549-f99712?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的原野盛宴\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513663-a26536?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张先生说\",\n    \"author\": \"张五毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004569-4fbbb6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此刻的温柔\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004431-6e97cd?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文精选散文系列（全6册）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺散文全编（全6卷）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋灯琐忆（果麦经典）\",\n    \"author\": \"蒋坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003561-7f6be6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"露水的世\",\n    \"author\": \"文泉子/小林一茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003459-74a562?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生未完成（增订新版）\",\n    \"author\": \"于娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生\",\n    \"author\": \"刘汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌以言志\",\n    \"author\": \"周毅/舒明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002397-3d9575?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祝你快乐勇敢\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废墟曾经辉煌\",\n    \"author\": \"张翎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997651-35de85?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记丛书\",\n    \"author\": \"沈复/陈裴之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张洁文集（九卷本）\",\n    \"author\": \"张洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯骥才记述文化五十年（全四册）\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994882-c8931c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善哉善哉，就你话多\",\n    \"author\": \"明安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，我是接体员\",\n    \"author\": \"大师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假作真时\",\n    \"author\": \"黄昱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八千里路云和月\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一次将是烈火\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大吉岭到克什米尔\",\n    \"author\": \"闻中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的面孔\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988498-04aa6e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝的驿站\",\n    \"author\": \"夏坚勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988093-4ba392?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡的山药粥\",\n    \"author\": \"徐佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986113-258fce?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评说历史系列丛书（套装共7册）\",\n    \"author\": \"夏坚勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的美的世界\",\n    \"author\": \"森茉莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985480-47ad93?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的寻根记\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985477-568b84?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李娟阿勒泰系列（共4册）\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身外之海\",\n    \"author\": \"李唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983404-123992?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切特立独行的人都意味着强大\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053730-614dee?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长皱了的小孩\",\n    \"author\": \"严明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052575-e2c228?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有人必须死\",\n    \"author\": \"李非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051657-e02af4?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书大全套\",\n    \"author\": \"朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书（全本全注全译）\",\n    \"author\": \"张建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山之四季（果麦经典）\",\n    \"author\": \"高村光太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有一个人生\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰夫·戴尔作品套装（共5册）\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044583-471d7c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的事情\",\n    \"author\": \"苇岸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国深南之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拔蒲歌\",\n    \"author\": \"沈书枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"津轻\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038310-49be36?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搭子\",\n    \"author\": \"张忌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037710-a0a7d8?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（译文经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的善良必须有点锋利\",\n    \"author\": \"拉尔夫・沃尔多・爱默生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035928-db8b0b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反与正·婚礼集·夏\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨天炎天\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韩寒的杂文们（套装共4册）\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食家\",\n    \"author\": \"陆文夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033072-217156?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢人生快活的样子\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蠹鱼文丛系列（套装10册）\",\n    \"author\": \"陈子善/叶瑜荪/李辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉住气，吃硬饭\",\n    \"author\": \"王路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪认知\",\n    \"author\": \"尹惟楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小于一\",\n    \"author\": \"约瑟夫・布罗茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩儿\",\n    \"author\": \"于谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日书\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生是我吗\",\n    \"author\": \"刘苇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱你就像爱生命\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清欢三卷（唯美珍藏版）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寥寥中年事\",\n    \"author\": \"秋色连波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一个蛋开始\",\n    \"author\": \"徐则臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031023-96e5b6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸短情长，民国大师们的最美情书（全6册套装）\",\n    \"author\": \"朱生豪/鲁迅/闻一多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿皮火车（精装增补图文版）\",\n    \"author\": \"周云蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030276-97ed20?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的幽默家\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的村庄\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030066-8b5d8b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古云霄\",\n    \"author\": \"陈之藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030048-2b15f8?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·与书私奔\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·文艺青年\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029814-7a5327?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书贩笑忘录\",\n    \"author\": \"陈晓维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029508-bfbc07?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"足球往事\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029478-ccc720?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林清玄经典作品合集（套装共十二册）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029175-3e7510?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普通读者\",\n    \"author\": \"西闪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与父辈\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028956-93737c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林中水滴\",\n    \"author\": \"米・普里什文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028419-0eee62?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古文辞类纂（全2册）\",\n    \"author\": \"姚鼐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028095-524f25?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（作家榜经典文库）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027870-72fe86?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水滴的音乐\",\n    \"author\": \"阿尔多斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027666-cf6538?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒谬的墙\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击壤歌\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027555-f77b84?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖梦\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027507-c137e1?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草叶集\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027444-42197e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青鸟故事集\",\n    \"author\": \"李敬泽\",\n    \"link\": \"链接未找到\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自在独行\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026964-7741e7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自立\",\n    \"author\": \"拉尔夫・瓦尔多・爱默生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026919-bdb3e9?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚土\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025698-a4bd7e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走，一堂哲学课\",\n    \"author\": \"弗里德里克・格鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福，一次哲学之旅\",\n    \"author\": \"弗雷德里克・勒诺瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025566-82e0dc?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出荒野\",\n    \"author\": \"谢丽尔・斯特雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我讲个笑话，你可别哭啊\",\n    \"author\": \"囧叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024642-ca56cb?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在另一个宇宙的1003天\",\n    \"author\": \"张春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人爱我\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢煮生活\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023556-6ec377?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不过，一场生活\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天长地久：给美君的信\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林达作品集（套装共10册）\",\n    \"author\": \"林达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背影\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有如候鸟\",\n    \"author\": \"周晓枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一瓢纽约\",\n    \"author\": \"张北海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021135-c37724?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有时\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020499-b76fe6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水云（果麦经典）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东瀛文人·印象中国（套装共5册）\",\n    \"author\": \"芥川龙之介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019443-64d478?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间卧底\",\n    \"author\": \"马良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019188-c5a941?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商市街（果麦经典）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019179-fa4281?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人是一根会思考的芦苇\",\n    \"author\": \"帕斯卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018051-3c51aa?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是人间四月天\",\n    \"author\": \"林徽因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017307-901fb8?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无聊的魅力\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱逝水年华\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016731-8427f1?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知道分子\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014475-8625ba?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"居山而行\",\n    \"author\": \"雲姑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013512-eda5a3?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生最美是清欢\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012576-33020b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你与这世界温暖相拥\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012573-78aa7b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深山夏牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012348-5be301?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前山夏牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012354-ef6a56?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012315-5f2f15?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒哈拉的故事\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011679-8f3c6e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日走过山间（果麦经典）\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生插图版经典作品选（全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍遗珠\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间世\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010728-b43c36?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿司匹林博物馆\",\n    \"author\": \"赵越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊次郎与佐纪\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009915-10ba80?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国趣读系列（共5册）\",\n    \"author\": \"编辑组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009972-90b3b7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像我这样的一个读者\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔作品集（套装共9册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着本来单纯：丰子恺散文漫画精品集\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上午咖啡下午茶\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当呼吸化为空气\",\n    \"author\": \"保罗・卡拉尼什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得读完的书\",\n    \"author\": \"聂震宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年一叹\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮囊\",\n    \"author\": \"蔡崇达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清的角落\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目送（插图版）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1933：聆听民国\",\n    \"author\": \"林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是爬行者小江\",\n    \"author\": \"江一燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006828-cf34d0?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（经典译林）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打回原形\",\n    \"author\": \"朱新建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的阿勒泰\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005583-4653e8?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意短视频策划、推广、引流、爆粉与变现全能攻略\",\n    \"author\": \"肖恩・卡内尔/本吉・特拉维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"催化：让一切加速改变\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510570-5a6471?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转化率实战技巧从入门到精通\",\n    \"author\": \"营销铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510741-6aef3c?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"点亮视频号\",\n    \"author\": \"刘兴亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511014-d8a952?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无止之境\",\n    \"author\": \"秦朔/陈天翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512349-8a08a2?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"得粉丝者得天下\",\n    \"author\": \"佐伊・弗拉德・布拉纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004536-baa43e?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抖音营销系统\",\n    \"author\": \"刘大贺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外卖超级运营术\",\n    \"author\": \"饿了么\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据呈现之美\",\n    \"author\": \"凌祯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988333-c13fbe?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"15秒的商机\",\n    \"author\": \"胡涵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051903-88c85f?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉新\",\n    \"author\": \"加布里埃尔・温伯格/贾斯汀・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级转化率\",\n    \"author\": \"陈勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破之道\",\n    \"author\": \"基思 R. 麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首席增长官\",\n    \"author\": \"张溪梦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高阶运营\",\n    \"author\": \"龙共火火\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户的本质\",\n    \"author\": \"史蒂文・范・贝莱格姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微博营销与运营\",\n    \"author\": \"秋叶/萧秋水/刘勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025710-bd18ec?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微信营销与运营\",\n    \"author\": \"秦阳/秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025686-646e79?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销实战手册\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体写作平台策划与运营\",\n    \"author\": \"哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025650-823a65?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯长\",\n    \"author\": \"肖恩・阿美拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新理解创业\",\n    \"author\": \"周航\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作是最好的自我投资\",\n    \"author\": \"Spenser\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023547-075742?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷屏\",\n    \"author\": \"凯文・阿洛卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷启动：零成本做营销\",\n    \"author\": \"高臻臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销与运营\",\n    \"author\": \"秋叶/秦阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网下半场\",\n    \"author\": \"李光斗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017361-0a5786?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光2.0\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11.11如何卖到一个亿\",\n    \"author\": \"陈炉均/陈威/马国良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户力：需求驱动的产品、运营和商业模式\",\n    \"author\": \"郝志中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始做运营进阶篇\",\n    \"author\": \"张亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010224-4cbecb?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始做运营入门篇\",\n    \"author\": \"张亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009843-bcf808?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛点：挖掘小数据满足用户需求\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的读书计划\",\n    \"author\": \"克里夫顿・费迪曼/约翰・S・梅杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866\",\n    \"category\": \"书单\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读水浒\",\n    \"author\": \"押沙龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497586-5c95ce?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜之家\",\n    \"author\": \"殳俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511095-b66fd2?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理分析\",\n    \"author\": \"张蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的骑士男孩\",\n    \"author\": \"金・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989767-a100a8?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果没有明天\",\n    \"author\": \"余耕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983716-ce8642?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使（见识丛书）\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（名著名译丛书）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束（理想国）\",\n    \"author\": \"丹尼尔・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海鲸梦\",\n    \"author\": \"伊恩・麦奎尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033870-13a526?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十五条狗\",\n    \"author\": \"安德烈・亚历克西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032739-cd5508?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日尽处\",\n    \"author\": \"荷曼・柯赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030960-3f8658?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028746-af85fd?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高老头（作家榜经典文库）\",\n    \"author\": \"奥诺雷·德·巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027474-27cba5?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛德勒名单（译文经典）\",\n    \"author\": \"托马斯・基尼利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027282-8e342c?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原谅我红尘颠倒\",\n    \"author\": \"慕容雪村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019941-47b45f?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追风筝的人\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016443-983457?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从此以后\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012462-214ab8?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香蕉的低语\",\n    \"author\": \"伊切・泰玛尔库兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011982-494983?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以诈止诈\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011319-2fc00d?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小心，无良是一种病\",\n    \"author\": \"玛莎・斯托特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010494-d80680?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到那一天\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝秦书：民国十八年饥馑\",\n    \"author\": \"张浩文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009609-b22205?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的烽塔\",\n    \"author\": \"卡伊斯・阿克巴尔・奥马尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008757-f55e62?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓鱼的男孩\",\n    \"author\": \"奇戈希・奥比奥玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007668-848bf7?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哪吒：业火红莲\",\n    \"author\": \"马御\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051309-a8695f?p=8866\",\n    \"category\": \"哪吒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哪吒\",\n    \"author\": \"奚淞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049710-0661df?p=8866\",\n    \"category\": \"哪吒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销与运营\",\n    \"author\": \"秋叶/秦阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866\",\n    \"category\": \"社群\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群思维：精神商业时代的创新创业法\",\n    \"author\": \"付岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018435-120347?p=8866\",\n    \"category\": \"社群\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后谷歌时代\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网四大\",\n    \"author\": \"斯科特・加洛韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌的故事\",\n    \"author\": \"戴维・怀斯/马克・摩西德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌方法\",\n    \"author\": \"比尔・基尔迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计冲刺\",\n    \"author\": \"杰克・纳普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人三千年简史\",\n    \"author\": \"雷蒙德・P.谢德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"&#8216;犹&#8217;钱的思维\",\n    \"author\": \"蓝龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000435-849e35?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史\",\n    \"author\": \"克劳斯·P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太文明\",\n    \"author\": \"S.N.艾森斯塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人的故事：寻找失落的字符\",\n    \"author\": \"西门·沙马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守望先锋（第一卷）\",\n    \"author\": \"美国暴雪娱乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866\",\n    \"category\": \"暴雪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血之遗产\",\n    \"author\": \"理查德˙A.纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054489-624f55?p=8866\",\n    \"category\": \"暴雪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么不平等至关重要\",\n    \"author\": \"托马斯・斯坎伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866\",\n    \"category\": \"不平等\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断裂的阶梯\",\n    \"author\": \"基思・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866\",\n    \"category\": \"不平等\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"整个巴黎属于我\",\n    \"author\": \"莱斯利·M.M.布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866\",\n    \"category\": \"海明威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866\",\n    \"category\": \"海明威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在此时此刻\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866\",\n    \"category\": \"正念\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会吃饭\",\n    \"author\": \"珍・克里斯特勒/艾莉莎・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866\",\n    \"category\": \"正念\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码时间\",\n    \"author\": \"阿德里安・巴登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间观\",\n    \"author\": \"西蒙・加菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054399-46d739?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造时间\",\n    \"author\": \"杰克・纳普/约翰・泽拉茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的秩序\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之问\",\n    \"author\": \"汪波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031944-64d9c3?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天最重要的2小时\",\n    \"author\": \"乔西・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的礼物\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029586-943dca?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Order of Time\",\n    \"author\": \"Carlo Rovelli\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023880-1dbfad?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是时间控\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间不存在\",\n    \"author\": \"韩松/刘宇昆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022311-2d6973?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来时间使用手册\",\n    \"author\": \"松冈真宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020493-4cfaea?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇特的一生\",\n    \"author\": \"格拉宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019428-6d23f0?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把时间当作朋友（第3版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一年的8760小时\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效15法则\",\n    \"author\": \"凯文・克鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015645-a8ae79?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗时间\",\n    \"author\": \"刘未鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别再用勤奋掩饰你的懒惰\",\n    \"author\": \"阿何\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自制力\",\n    \"author\": \"高原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法图解\",\n    \"author\": \"诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大历史的角度读蒋介石日记\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866\",\n    \"category\": \"蒋介石\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"败因：蒋介石为什么败退台湾？\",\n    \"author\": \"武更斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866\",\n    \"category\": \"蒋介石\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大灭绝时代：一部反常的自然史\",\n    \"author\": \"伊丽莎白·科尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866\",\n    \"category\": \"自然科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋带\",\n    \"author\": \"多梅尼科・斯塔尔诺内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002025-658d6b?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马的日常生活\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法外套\",\n    \"author\": \"迪诺・布扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051177-97588d?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂的奥兰多\",\n    \"author\": \"卢多维科・阿里奥斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被弃养的女孩\",\n    \"author\": \"多娜泰拉・迪皮耶特兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046107-0c342f?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马故事\",\n    \"author\": \"阿尔贝托・莫拉维亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045699-a7a41a?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上威尼斯\",\n    \"author\": \"亚历山德罗・马尔佐・马尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"覆舟的愉悦\",\n    \"author\": \"朱塞培・翁加雷蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你老去\",\n    \"author\": \"伊塔洛・斯韦沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043218-37b8f5?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看懂艺术2\",\n    \"author\": \"翁昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042954-894e44?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100：小小说百篇\",\n    \"author\": \"乔治・曼加内利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036240-367630?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美第奇家族的兴衰\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八山\",\n    \"author\": \"保罗・科涅蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032958-286774?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期表\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮\",\n    \"author\": \"库尔齐奥・马拉巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031356-2f3f74?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞑靼人沙漠\",\n    \"author\": \"迪诺・布扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030852-8f4137?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Mrs Rosie and the Priest\",\n    \"author\": \"Giovanni Boccaccio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029754-27a45a?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃科谈文学\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029565-dea3c1?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶之路\",\n    \"author\": \"格拉齐娅・黛莱达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026976-20eadc?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十日谈（译文名著典藏）\",\n    \"author\": \"卜伽丘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026835-513c66?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥意大利史\",\n    \"author\": \"克里斯托弗・达根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022665-152e48?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵萨包达美术馆\",\n    \"author\": \"弗朗西斯卡・萨尔瓦多里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022152-0c3bb2?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨圣母百花大教堂博物馆\",\n    \"author\": \"蒂莫西・弗登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯国家考古博物馆\",\n    \"author\": \"迪雷塔・哥伦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马博尔盖塞美术馆\",\n    \"author\": \"弗朗切斯卡・卡丝特丽雅・马尔凯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰波尔迪·佩佐利博物馆\",\n    \"author\": \"玛利亚·特蕾莎·巴尔博尼·布雷萨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯卡波迪蒙特博物馆\",\n    \"author\": \"马蒂亚・盖塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教宗与墨索里尼\",\n    \"author\": \"大卫·I.科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰斯福尔扎古堡博物馆\",\n    \"author\": \"马蒂诺・阿斯托尔菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019149-58301b?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯学院美术馆\",\n    \"author\": \"露琪亚・伊姆佩鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019119-338773?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热那亚新街博物馆\",\n    \"author\": \"皮耶罗・波卡尔多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018768-b9b484?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马德里普拉多博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018684-d7b281?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝三日\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十日谈（译文名著精选）\",\n    \"author\": \"卜伽丘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007794-cbc429?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·家具篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866\",\n    \"category\": \"收藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·杂项篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866\",\n    \"category\": \"收藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·陶瓷篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039768-92e788?p=8866\",\n    \"category\": \"收藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·玉器篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039759-8e7733?p=8866\",\n    \"category\": \"收藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们被偷走的注意力\",\n    \"author\": \"斯特凡・范德斯蒂格谢尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866\",\n    \"category\": \"注意力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注意力曲线\",\n    \"author\": \"露西・乔・帕拉迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022548-72319e?p=8866\",\n    \"category\": \"注意力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻业的怀乡病\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513351-511f7d?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《纽约时报》是怎么做新闻的\",\n    \"author\": \"尼基・阿瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003819-60e127?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"效应\",\n    \"author\": \"中璋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997804-194bf8?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国科学新闻精选套装\",\n    \"author\": \"《科学新闻》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的对面是你\",\n    \"author\": \"傅莹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024765-1f9c07?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王国与权力\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022410-4ed181?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度：惊心动魄三十年国运家事纪实\",\n    \"author\": \"李锦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020544-1aec28?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻抄袭历史\",\n    \"author\": \"宋燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇传：自由的心灵\",\n    \"author\": \"查尔斯・尼科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491400-800bfb?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺顿音乐断代史丛书（套装共4册）\",\n    \"author\": \"菲利普・唐斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿经典作品集（套装10册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝来了\",\n    \"author\": \"马菁菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雕刻大地\",\n    \"author\": \"林璎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499059-e0fff6?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来艺术丛书（全7册）\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499785-9d1eba?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝暮集\",\n    \"author\": \"呼葱觅蒜/白落梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画以人传\",\n    \"author\": \"陈文璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优雅变老的艺术\",\n    \"author\": \"奥特弗里德・赫费\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500535-92fecd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本艺术之美（套装共5册）\",\n    \"author\": \"叶渭渠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501900-e2790a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术的故事（共12册）\",\n    \"author\": \"林家治等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503403-e9d087?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读电影·百年奥斯卡佳片品鉴（套装3册）\",\n    \"author\": \"杨晓林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503820-7cf8c0?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原典书坊合辑（全八册）\",\n    \"author\": \"鲁迅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对立之美：西方艺术500年\",\n    \"author\": \"严伯钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508380-723c56?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看名画的眼睛系列（套装共7册）\",\n    \"author\": \"尾崎彰宏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508881-f0aabb?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝物录\",\n    \"author\": \"尤迪特・沙朗斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余下只有噪音\",\n    \"author\": \"亚历克斯・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509967-ee6928?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体的语言\",\n    \"author\": \"列夫・马诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天谈美\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510363-f6a67e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平面设计200年\",\n    \"author\": \"史蒂文・海勒/西摩・切瓦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510684-c22f94?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星船与大树\",\n    \"author\": \"马慧元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超现实主义宣言\",\n    \"author\": \"安德烈・布勒东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511032-8e425b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布光是门大学问\",\n    \"author\": \"克里斯汀・霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511296-8d6ccf?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界建筑漫游指南（套装共6册）\",\n    \"author\": \"陈文捷等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511977-1ed179?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培生艺术史（套装6册）\",\n    \"author\": \"大卫·G.威尔金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511581-0d0d59?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影管理课\",\n    \"author\": \"汤姆・雷利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511722-52b940?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非凡抄本寻访录\",\n    \"author\": \"克里斯托弗・德・哈梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512256-da56df?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画家的一天\",\n    \"author\": \"段张取艺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512166-2a760f?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高的耳朵\",\n    \"author\": \"贝尔纳黛特・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512619-adecfe?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"号角：世界经典制服徽章艺术全集（套装共10册）\",\n    \"author\": \"指文号角工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513021-755d2a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世绘\",\n    \"author\": \"潘力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512862-662b8e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高品质摄影全流程解析（套装全9册）\",\n    \"author\": \"斯科特・凯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513114-e51622?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高手稿（典藏修订版）\",\n    \"author\": \"文森特・凡高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513045-85b0e4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻美：摄影中的东方美学\",\n    \"author\": \"青简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇：500年纪念版\",\n    \"author\": \"马汀・坎普/法比奥・斯卡莱蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513528-1ecffb?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"探戈艺术的中国之花\",\n    \"author\": \"欧占明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513636-a3ca87?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴戏剧\",\n    \"author\": \"苏广辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003891-a41242?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的建筑有多重？\",\n    \"author\": \"迪耶・萨迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003549-268c81?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妆束：大唐女儿行\",\n    \"author\": \"左丘萌/末春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美学漫步\",\n    \"author\": \"宗白华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002514-7384a3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大道既隐\",\n    \"author\": \"彭卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002205-8879ae?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定义邪典电影\",\n    \"author\": \"马克・扬克维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002151-9c4719?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曼哈顿的中国杂技\",\n    \"author\": \"李尤松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001836-8e306e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名画中的符号\",\n    \"author\": \"平松洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001521-888cfc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不正经的卢浮宫\",\n    \"author\": \"西塞尔・巴隆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挥云而去：十张画里看中国\",\n    \"author\": \"韩涧明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999820-7f8c31?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表演者言\",\n    \"author\": \"电影频道《今日影评》栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津艺术史系列（第一辑）\",\n    \"author\": \"罗宾・奥斯本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的美学\",\n    \"author\": \"查尔斯・塔利亚费罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998848-bdbcb5?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的艺术\",\n    \"author\": \"劳里・施耐德・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997810-a286ea?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"残酷剧场\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997615-258e96?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影的元素\",\n    \"author\": \"罗伯特・伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996553-12e06b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学（作家榜经典文库）\",\n    \"author\": \"H. A. 丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编剧的艺术\",\n    \"author\": \"拉约什・埃格里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994639-027e11?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲鸿生命\",\n    \"author\": \"范迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994642-86e3db?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑老绘画陈列馆（伟大的博物馆）\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文精神的伟大冒险\",\n    \"author\": \"菲利普·E.毕肖普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国艺术精神\",\n    \"author\": \"徐复观\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990142-c2cdbd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见毕加索\",\n    \"author\": \"让・科克托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990127-c4de9b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个天文学家的夜空漫游指南\",\n    \"author\": \"郑春顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国绘画史\",\n    \"author\": \"陈师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手作理想国\",\n    \"author\": \"墨念女塾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990022-e0865e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日42：枯山水\",\n    \"author\": \"茶乌龙主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988927-f3482b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大话西方艺术史\",\n    \"author\": \"意公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988072-ecbb42?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"条条大路通书法\",\n    \"author\": \"寇克让\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987247-df4df8?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装的艺术\",\n    \"author\": \"本・雅格达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术馆漫步：法国、伦敦、西班牙（全三册）\",\n    \"author\": \"崔瓊化等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986452-33c37f?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术精神\",\n    \"author\": \"罗伯特・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985927-d00167?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光博物馆\",\n    \"author\": \"人民日报社新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方画家及其作品套装（全4册）\",\n    \"author\": \"王月亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书籍形态艺术\",\n    \"author\": \"善本出版有限公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985075-19633a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代主义：从波德莱尔到贝克特之后\",\n    \"author\": \"彼得・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游艺黑白（全四册）\",\n    \"author\": \"焦元溥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982555-e57eb3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让木乃伊跳舞（新版）\",\n    \"author\": \"托马斯・霍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学\",\n    \"author\": \"丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982453-5594f6?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永字八法\",\n    \"author\": \"周汝昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053631-407cc1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术史：1940年至今天\",\n    \"author\": \"乔纳森・费恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影（牛津通识读本）\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戏剧（牛津通识读本）\",\n    \"author\": \"马文・卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗丹艺术论\",\n    \"author\": \"奥古斯特・罗丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052005-e1851b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美之地图\",\n    \"author\": \"米哈埃拉・诺洛茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴尔特文集（套装）\",\n    \"author\": \"罗兰・巴尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术史十议\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴人\",\n    \"author\": \"罗伯特・戴维斯/贝丝・琳达史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷谈艺录及其他\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"章服之实\",\n    \"author\": \"王亚蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺：写给大家的简明艺术启蒙（套装共5册）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045609-c32fd3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽之问\",\n    \"author\": \"弗兰克・维尔切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到你的世界\",\n    \"author\": \"莎拉・威廉姆斯・戈德哈根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜尚传（第二版）\",\n    \"author\": \"王瑞芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044862-f93665?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建筑改变日本\",\n    \"author\": \"伊东丰雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美不言\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看懂艺术\",\n    \"author\": \"翁昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043074-fa6d7a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看懂艺术2\",\n    \"author\": \"翁昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042954-894e44?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽象城市\",\n    \"author\": \"克里斯托夫・尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·家具篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·杂项篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方文明史：延续不断的遗产（第五版）\",\n    \"author\": \"马克・凯什岚斯基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶与茶器\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非平面\",\n    \"author\": \"尼克・索萨尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷家书（经典版）\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥艺术史（套装全8册）\",\n    \"author\": \"苏珊・伍德福德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034887-1b0a28?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：众人受到召唤\",\n    \"author\": \"生活月刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈之书\",\n    \"author\": \"曼纽尔・利马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光影里的梦幻与真实\",\n    \"author\": \"郑实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画见\",\n    \"author\": \"止庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米开朗琪罗与教皇的天花板\",\n    \"author\": \"罗斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC艺术经典三部曲\",\n    \"author\": \"肯尼斯・克拉克/罗伯特・休斯/西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033444-1d3101?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界美术名作二十讲\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032403-de23a0?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱桃的滋味\",\n    \"author\": \"阿巴斯・基阿鲁斯达米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032268-b0e557?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生是我吗\",\n    \"author\": \"刘苇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初见卢浮宫\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点艺术\",\n    \"author\": \"谭力勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捡来的瓷器史\",\n    \"author\": \"涂睿明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031281-17ad02?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影是什么？\",\n    \"author\": \"安德烈・巴赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛丰年音乐文集（套装共六册）\",\n    \"author\": \"辛丰年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030315-421cb1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传统即创造\",\n    \"author\": \"冈本太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029670-6ab6ca?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今日的艺术\",\n    \"author\": \"冈本太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029625-e03046?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想的境界：历史真实中的山水画\",\n    \"author\": \"王平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029052-8dfc3b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无限的清单\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029040-0003df?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"竞争的艺术\",\n    \"author\": \"塞巴斯蒂安・斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027540-ee0502?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐符号\",\n    \"author\": \"塔拉斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明亮的泥土\",\n    \"author\": \"菲利普・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026793-14240d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：德加\",\n    \"author\": \"唐一帆/牛雪彤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026688-6d5b37?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：梵高\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：莫奈\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师原作：塞尚\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026727-604405?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇手记（珍藏版）\",\n    \"author\": \"达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Book of Ebenezer Le Page\",\n    \"author\": \"Edwards\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025245-f5258d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中5·竹林七贤\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中15·再认识丰子恺\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025182-3c8f73?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集续编\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一幅画开启的世界\",\n    \"author\": \"高畑勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024951-5f5325?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说敦煌二五四窟\",\n    \"author\": \"陈海涛/陈琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解一张照片\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普鲁斯特是个神经学家\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术馆里聊怪咖\",\n    \"author\": \"山田五郎/古山淳子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023745-138eaa?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街头巷尾\",\n    \"author\": \"领读文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023154-daa1de?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误诊的艺术史\",\n    \"author\": \"董悠悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何欣赏一部电影\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022224-caab80?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵萨包达美术馆\",\n    \"author\": \"弗朗西斯卡・萨尔瓦多里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022152-0c3bb2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨圣母百花大教堂博物馆\",\n    \"author\": \"蒂莫西・弗登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典考古博物馆\",\n    \"author\": \"卢卡・莫扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022161-31f368?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯国家考古博物馆\",\n    \"author\": \"迪雷塔・哥伦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马博尔盖塞美术馆\",\n    \"author\": \"弗朗切斯卡・卡丝特丽雅・马尔凯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰波尔迪·佩佐利博物馆\",\n    \"author\": \"玛利亚·特蕾莎·巴尔博尼·布雷萨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开罗埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯卡波迪蒙特博物馆\",\n    \"author\": \"马蒂亚・盖塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鸟之歌\",\n    \"author\": \"巴勃罗・卡萨尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021879-f9153e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走神的艺术与科学\",\n    \"author\": \"迈克尔・C.科尔巴里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑的历史\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020424-b520de?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓶花谱 瓶史\",\n    \"author\": \"张谦德/袁宏道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020061-e5ca31?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名画背后的故事（全五册）\",\n    \"author\": \"中野京子/顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019560-5d3b15?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"К.С.斯坦尼斯拉夫斯基作品集（套装共四册）\",\n    \"author\": \"斯坦尼斯拉夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019338-3fa8a5?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰布雷拉美术馆\",\n    \"author\": \"斯蒂芬尼・祖菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019170-dd2f29?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕尔马国家美术馆\",\n    \"author\": \"乔瓦娜・达米亚尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019065-def2cc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科普希金博物馆\",\n    \"author\": \"西莫内塔・佩卢西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019038-d6ede3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林画廊\",\n    \"author\": \"威廉・德罗・鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018807-775ac1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博洛尼亚国家艺术画廊\",\n    \"author\": \"贝亚特莉切・布斯卡罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华盛顿国家艺术馆\",\n    \"author\": \"罗萨娜・乔尔吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热那亚新街博物馆\",\n    \"author\": \"皮耶罗・波卡尔多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018768-b9b484?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦国家美术馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018696-513898?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论巴赫\",\n    \"author\": \"阿尔贝特・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018666-493f7e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌尔比诺马尔凯国家美术馆\",\n    \"author\": \"罗伦查・莫基・奥诺里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018648-5c52b0?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对白：文字、舞台、银幕的言语行为艺术\",\n    \"author\": \"罗伯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018612-e3095d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珍物：中国文艺百人物语\",\n    \"author\": \"生活月刊编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018216-c353d3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的提奥：梵高传\",\n    \"author\": \"文森特・威廉・梵高/约翰娜・梵高・邦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017379-8fa602?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界电影史（套装共3册）\",\n    \"author\": \"杰弗里・诺维尔・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017265-9718d5?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物文库精美丛书\",\n    \"author\": \"约瑟夫・胡克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017430-ca5c6c?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代艺术150年\",\n    \"author\": \"威尔・贡培兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论摄影（插图珍藏本）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊绘画·壹\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014850-625ef1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊绘画·贰\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014826-5cb55d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊神话\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高传（全三部）\",\n    \"author\": \"史蒂文・奈菲/格雷戈里・怀特・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此时此地\",\n    \"author\": \"艾未未\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013965-add43d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与火同行：大卫·林奇谈电影\",\n    \"author\": \"大卫・林奇/克里斯・罗德雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎卢浮宫\",\n    \"author\": \"亚历山德拉・弗雷格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012414-10182f?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹国家博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨皮蒂宫\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012279-fd065b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨乌菲齐画廊\",\n    \"author\": \"艾莱娜・吉纳耐斯奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012285-af45df?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎奥赛美术馆\",\n    \"author\": \"西蒙娜・巴尔多蕾娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012240-1bee54?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿美术史著作经典（共3册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010881-0327d9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈默手稿\",\n    \"author\": \"列奥纳多・达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画精品集（修订版）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫的风花雪月\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好色的哈姆雷特\",\n    \"author\": \"小白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的残渣\",\n    \"author\": \"冯峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写真的思考\",\n    \"author\": \"饭泽耕太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005058-c4eaa8?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清戏曲序跋纂笺（12册）\",\n    \"author\": \"郭英德/李志远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499515-e7ed9c?p=8866\",\n    \"category\": \"戏曲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“四人帮”兴亡（增订版）\",\n    \"author\": \"叶永烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866\",\n    \"category\": \"文化大革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"国外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的中场休息\",\n    \"author\": \"本・方登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015132-9c1e9a?p=8866\",\n    \"category\": \"国外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克精选集16册\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866\",\n    \"category\": \"国外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教父三部曲（典藏版套装）\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866\",\n    \"category\": \"国外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表演者言\",\n    \"author\": \"电影频道《今日影评》栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866\",\n    \"category\": \"演员\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力（经典套装三册）\",\n    \"author\": \"凯利・麦格尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866\",\n    \"category\": \"自控力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉花糖实验\",\n    \"author\": \"沃尔特・米歇尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009000-8191ee?p=8866\",\n    \"category\": \"自控力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼魂的盛宴\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997819-57a1d8?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宜诺斯艾利斯传\",\n    \"author\": \"詹姆斯・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兔\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040452-a92efa?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第一辑（套装共16册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033171-09f6c3?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第二辑（套装共12册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风景画家的片段人生\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032295-900cb5?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶棍列传\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008670-83c1da?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为你洒下月光\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022869-d5741b?p=8866\",\n    \"category\": \"随便\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿弥陀佛么么哒\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005679-dc7332?p=8866\",\n    \"category\": \"随便\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的十字军东征\",\n    \"author\": \"奈杰尔・克利夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866\",\n    \"category\": \"十字军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次十字军东征\",\n    \"author\": \"彼得・弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866\",\n    \"category\": \"十字军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经与利剑\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866\",\n    \"category\": \"十字军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军东征简史（插图本）\",\n    \"author\": \"米肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866\",\n    \"category\": \"十字军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆精解证券分析\",\n    \"author\": \"杰森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499647-43f62c?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报背后的投资机会\",\n    \"author\": \"蒋豹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券分析（原书第6版）\",\n    \"author\": \"本杰明・格雷厄姆/戴维・多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球证券投资经典译丛（共16卷）\",\n    \"author\": \"拉尔夫・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034941-5999f0?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济增长的迷雾\",\n    \"author\": \"威廉・伊斯特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战上海：决胜股市未来三十年\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样选择成长股\",\n    \"author\": \"菲利普·A·费舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救猫咪：电影编剧指南\",\n    \"author\": \"布莱克・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512766-6f75de?p=8866\",\n    \"category\": \"编剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样写故事\",\n    \"author\": \"莉萨・克龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866\",\n    \"category\": \"编剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典人物原型45种\",\n    \"author\": \"维多利亚・林恩・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866\",\n    \"category\": \"编剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G金融\",\n    \"author\": \"莫开伟/陈名银/邱泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988384-74644e?p=8866\",\n    \"category\": \"5G\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：经济增长新引擎\",\n    \"author\": \"孙松林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866\",\n    \"category\": \"5G\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：生活方式和商业模式的大变革\",\n    \"author\": \"龟井卓也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866\",\n    \"category\": \"5G\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代\",\n    \"author\": \"项立刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866\",\n    \"category\": \"5G\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间杭州\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498333-278c6e?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市与压力\",\n    \"author\": \"马兹达・阿德里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509655-c19810?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟囱与进步人士\",\n    \"author\": \"大卫・斯特拉德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512436-c178c9?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的古城\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰晤士：大河大城\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯：晨昏岛屿的集市\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新城市科学\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995401-9787ba?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孟买：欲望丛林\",\n    \"author\": \"苏科图・梅塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991444-36c1f2?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一座城市，一部历史\",\n    \"author\": \"李永石等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据驱动的智能城市\",\n    \"author\": \"史蒂芬・戈德史密斯/苏珊・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海摩登（修订版）\",\n    \"author\": \"李欧梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海传：叶辛眼中的上海\",\n    \"author\": \"叶辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造未来城市\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的隐秘角落\",\n    \"author\": \"陆波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能城市\",\n    \"author\": \"卡洛・拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺桐城\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市隐秩序\",\n    \"author\": \"刘春成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042336-7a14a0?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"26城记\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与城市发展\",\n    \"author\": \"陈杰/陆铭/黄益平/潘英丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺顿音乐断代史丛书（套装共4册）\",\n    \"author\": \"菲利普・唐斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第一卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋元笔记小说大观（全35册）\",\n    \"author\": \"王应麟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（全三册）\",\n    \"author\": \"但丁・阿利格耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清戏曲序跋纂笺（12册）\",\n    \"author\": \"郭英德/李志远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499515-e7ed9c?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学名家选集（全17册）\",\n    \"author\": \"王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502398-fe5b0d?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜甫诗选（古典文学大字本）\",\n    \"author\": \"杜甫/谢思炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504429-062f6a?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学读本丛书典藏（第二辑全15册）\",\n    \"author\": \"王起主等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508965-0eb459?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫诗选（外国文学名著丛书）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明文选\",\n    \"author\": \"赵伯陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510711-3cd429?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清叙事文学中的城市与生活（大家读大家）\",\n    \"author\": \"胡晓真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003978-424fb6?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快意江湖：彩绘水浒传\",\n    \"author\": \"张琳绘/张睿著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999922-583382?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（果麦经典）\",\n    \"author\": \"屈原等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999010-1d65d7?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三言二拍插图典藏版（全六册）\",\n    \"author\": \"冯梦龙等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990106-7735f0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手绘儒生\",\n    \"author\": \"金龠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987880-6e72c2?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文选（全本全注全译）\",\n    \"author\": \"萧统\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华古典文库典藏（共40册）\",\n    \"author\": \"李汝珍等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054597-4de0db?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（国学典藏）\",\n    \"author\": \"洪兴祖 补注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管子（全本全注全译）\",\n    \"author\": \"李山/轩新丽译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋公羊传（全本全注全译）\",\n    \"author\": \"孔子/公羊寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046404-436973?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异（全校会注集评）\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046074-8abd51?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（全本全注全译）\",\n    \"author\": \"方韬译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神仙传（全本全注全译）\",\n    \"author\": \"葛洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照诗词全集（作家榜经典文集）\",\n    \"author\": \"李清照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典普及文库（精选共15种20册）\",\n    \"author\": \"中华书局编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异（全本全注全译）\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042888-47daec?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的文化\",\n    \"author\": \"克里斯蒂安・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词集（词系列）\",\n    \"author\": \"张草纫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033222-a4ae5e?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学荟萃（全36册）\",\n    \"author\": \"沈复/吴楚材/吴调侯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032133-b8e344?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读古典小说系列（套装共10册）\",\n    \"author\": \"曾朴/凌蒙初等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031902-43a76c?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词里的趣事套装（全4册）\",\n    \"author\": \"王月亮/黄震/黄秀春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透《大学中庸》\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029907-e28d12?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋诗鉴赏辞典\",\n    \"author\": \"缪钺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029934-f3d31f?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金圣叹批评本西厢记\",\n    \"author\": \"王实甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028926-90d03b?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜花缘（作家榜经典文库）\",\n    \"author\": \"李汝珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027699-5765f0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世说新语译注\",\n    \"author\": \"刘义庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026997-7dd4f3?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沧浪诗话\",\n    \"author\": \"严羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国十大禁毁小说文库\",\n    \"author\": \"雪樵主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024510-63968c?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（风雅颂三卷）\",\n    \"author\": \"骆玉明/细井徇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021144-d46886?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲情偶寄（果麦经典）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013896-9da2db?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒林外史（果麦经典）\",\n    \"author\": \"吴敬梓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008754-58ab37?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简音乐史\",\n    \"author\": \"冈田晓生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典普及文库（精选共15种20册）\",\n    \"author\": \"中华书局编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866\",\n    \"category\": \"中国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐史并不如烟系列（共6册）\",\n    \"author\": \"曲昌春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032079-38cfae?p=8866\",\n    \"category\": \"中国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清案探秘（全三册）\",\n    \"author\": \"唐博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029499-d5c447?p=8866\",\n    \"category\": \"中国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚全集（套装共10本）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984475-8c8d8a?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯商人（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036159-3537ae?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仲夏夜之梦（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李尔王（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035631-63e1ab?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈姆莱特（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035400-4bace1?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥瑟罗（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035214-ce0c10?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十二夜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035130-63ad7b?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧悲剧全集（套装共6册）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从雇佣到自由人\",\n    \"author\": \"吕廷杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866\",\n    \"category\": \"职业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转行：发现一个未知的自己\",\n    \"author\": \"埃米尼亚・伊瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866\",\n    \"category\": \"职业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：如何规划职业生涯3大阶段\",\n    \"author\": \"布赖恩・费瑟斯通豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866\",\n    \"category\": \"职业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导梯队（原书第2版）\",\n    \"author\": \"拉姆・查兰/斯蒂芬・德罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866\",\n    \"category\": \"职业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"急救，比医生快一步\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866\",\n    \"category\": \"急救\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救护车到来前，你能做什么？\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866\",\n    \"category\": \"急救\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被统治的艺术\",\n    \"author\": \"宋怡明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983314-16ffcd?p=8866\",\n    \"category\": \"明清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家人父子\",\n    \"author\": \"赵园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053889-726410?p=8866\",\n    \"category\": \"明清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一等人\",\n    \"author\": \"宋华丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042015-7eebfb?p=8866\",\n    \"category\": \"明清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代政治的正当性基础\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491484-c06fa6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱里的希望\",\n    \"author\": \"丹・波托洛蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492060-2c8fad?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾雷德·戴蒙德作品集（套装共4册）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·罗杰斯的大预测\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温铁军套装（共5册）\",\n    \"author\": \"温铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493437-a29263?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网上遗产\",\n    \"author\": \"伊莱恩・卡斯凯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493404-9f5bf0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国史译（全7册）\",\n    \"author\": \"伊利娜・谢尔盖耶夫娜・雷巴乔诺克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运气的诱饵\",\n    \"author\": \"娜塔莎・道・舒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493695-e4930e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在中国大地上\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身偏见\",\n    \"author\": \"克莱尔・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493863-2752fc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体的历史（三卷本）\",\n    \"author\": \"乔治・维加埃罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494961-7ca170?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯“革命”隐藏的另一面\",\n    \"author\": \"埃里克・德尼西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496482-040f62?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压裂的底层\",\n    \"author\": \"伊丽莎・格里斯沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497073-d5a61b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作的意义\",\n    \"author\": \"詹姆斯・苏兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497598-753d90?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国合集（套装共4册）\",\n    \"author\": \"余玮等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497739-6909f1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年论中国系列（套装6册）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新乌合之众\",\n    \"author\": \"迈赫迪・穆萨伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497907-396975?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力\",\n    \"author\": \"德博拉・格林菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498009-cbe216?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始的女性主义\",\n    \"author\": \"上野千鹤子/田房永子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498135-bec29a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十种人性\",\n    \"author\": \"德克斯特・迪亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利益相关者\",\n    \"author\": \"克劳斯・施瓦布/彼得・万哈姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498156-b93f87?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧：冰与火之地的寻真之旅\",\n    \"author\": \"迈克尔・布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498264-40e9d6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韦伯作品集（套装9册）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498366-dfd378?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口大逆转\",\n    \"author\": \"查尔斯・古德哈特/马诺杰・普拉丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厌女：日本的女性嫌恶\",\n    \"author\": \"上野千鹤子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498933-3437c3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份政治\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499002-9f16d0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碳中和时代\",\n    \"author\": \"汪军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499221-bf6b0d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反内卷\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499245-6c8e89?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老后两代破产\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499251-4a9792?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大加速：1945年以来人类世的环境史\",\n    \"author\": \"约翰·R.麦克尼尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499380-1d1f87?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是主播\",\n    \"author\": \"国谷裕子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499404-105834?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转向：世界如何步入现代\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共有的习惯\",\n    \"author\": \"E.P. 汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500268-020026?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精英的傲慢\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500601-accc90?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读26：全球真实故事集\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500649-4348f2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私立小学闯关记\",\n    \"author\": \"槙原久美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500793-2c71ca?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破茧\",\n    \"author\": \"施展\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500925-acb6ff?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夹缝生存：不堪重负的中产家庭\",\n    \"author\": \"阿莉莎・夸特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501354-ff97b8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何像人类学家一样思考·鹈鹕丛书\",\n    \"author\": \"马修・恩格尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501426-4e56e5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高中生穷忙族\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501642-8081e6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国人文社会（套装共8册）\",\n    \"author\": \"冯友兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502341-52b551?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美名校通识课（第一辑）（套装7册）\",\n    \"author\": \"亨利·M.塞尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基层女性\",\n    \"author\": \"王慧玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书理解中国（套装共15册）\",\n    \"author\": \"蔡昉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506709-9a88fd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社百科通识大套装·社会卷（共49本）\",\n    \"author\": \"柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507051-2a2f7d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国的反智传统\",\n    \"author\": \"理查德・霍夫施塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506823-0cc3c2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人为何物\",\n    \"author\": \"王一江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507411-9a3746?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锥形帐篷的起源\",\n    \"author\": \"喬尼・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507432-99ca3f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"殿军：山一证券最后的12人\",\n    \"author\": \"清武英利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507573-379911?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"川菜\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百科通识文库：西方学科奠基精选大套装（套装共88本）\",\n    \"author\": \"柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508041-895ae1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无隐私时代\",\n    \"author\": \"阿奇科・布希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508872-0496be?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国际政治精品文库精选套装（套装11册）\",\n    \"author\": \"塞缪尔・亨廷顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509124-80f0aa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚无时代\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙王的嬗变\",\n    \"author\": \"杨德爱/杨跃雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509319-b9f6e6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年南开日本研究文库（共18册）\",\n    \"author\": \"吴廷璆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509472-9832f9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些特别善于表达自己观点的女人们\",\n    \"author\": \"米歇尔・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509370-466dcd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现阴阳道\",\n    \"author\": \"山下克明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509379-3c5bbd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克斯·韦伯：跨越时代的人生\",\n    \"author\": \"于尔根・考伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509481-7f34ec?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变或免疫\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509568-e95089?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市与压力\",\n    \"author\": \"马兹达・阿德里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509655-c19810?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本还是第一吗\",\n    \"author\": \"傅高义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509790-9c9f84?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新文化运动史料丛编\",\n    \"author\": \"孙郁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510201-42c727?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雨横渡\",\n    \"author\": \"西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510204-4a529b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失信：公共卫生体系的崩溃\",\n    \"author\": \"劳丽・加勒特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510282-6f16d7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被绑架的心灵\",\n    \"author\": \"戴维・凯斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510372-1db3f6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐观而不绝望\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510429-5ca9fe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现日本：60处日本最美古建筑之旅\",\n    \"author\": \"矶达雄/宫泽洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510525-107c20?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性的时刻\",\n    \"author\": \"梅琳达・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清华社会学讲义（全四册）\",\n    \"author\": \"李强等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510564-1079f3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桑切斯的孩子们\",\n    \"author\": \"奥斯卡・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510819-58d021?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲家族物语\",\n    \"author\": \"濑户正人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510855-c0b32b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下流社会\",\n    \"author\": \"三浦展\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510957-9e78c5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别睡，这里有蛇\",\n    \"author\": \"丹尼尔・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510891-4ad519?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身社会\",\n    \"author\": \"伊利亚金・奇斯列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511056-3aa444?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低欲望社会\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511137-51d5bb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六论自发性\",\n    \"author\": \"詹姆斯·C. 斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承认：一部欧洲观念史\",\n    \"author\": \"阿克塞尔・霍耐特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神好多的日本\",\n    \"author\": \"山口谣司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类学讲义稿\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从部落到国家\",\n    \"author\": \"马克·W. 莫菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511962-90a78c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯林传\",\n    \"author\": \"叶礼庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512067-e53a08?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小镇美国\",\n    \"author\": \"罗伯特・伍斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512082-f8d626?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候经济与人类未来\",\n    \"author\": \"比尔・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秩序与历史（套装全五卷）\",\n    \"author\": \"埃里克・沃格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513159-e66ba2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通俗心理学百科合集（套装共18册）\",\n    \"author\": \"约翰・华生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513492-f070e3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性贫困\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513486-69ca43?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的古城\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的铁证\",\n    \"author\": \"安吉拉・盖洛普/简・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513696-53c951?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513711-251b40?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么是中国\",\n    \"author\": \"金一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513735-fe1296?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘政治三部曲\",\n    \"author\": \"罗伯特·D.卡普兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513753-cc4d25?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国怎么了\",\n    \"author\": \"安妮・凯斯/安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端经济\",\n    \"author\": \"理查德・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513786-ca7531?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下沉年代\",\n    \"author\": \"乔治・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513777-106914?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一印象手册\",\n    \"author\": \"柳沼佐千子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513798-47c741?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱鹮的遗言\",\n    \"author\": \"小林照幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004575-299851?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量3\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004476-186d31?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们内心的冲突（果麦经典）\",\n    \"author\": \"卡伦・霍妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004464-e0bf3e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香帅财富报告\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级社会\",\n    \"author\": \"彼得・图尔钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004446-8c0263?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会设计\",\n    \"author\": \"笕裕介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《纽约时报》是怎么做新闻的\",\n    \"author\": \"尼基・阿瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003819-60e127?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返美丽新世界\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003570-70aa54?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧盟的危机\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父权制与资本主义\",\n    \"author\": \"上野千鹤子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003507-3f7b6a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年变局\",\n    \"author\": \"王文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003465-977d4c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国革命的激进主义\",\n    \"author\": \"戈登·S.伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003327-20516e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主的不满\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度5\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡的视线\",\n    \"author\": \"刘易斯・M.科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002592-e3895f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生\",\n    \"author\": \"刘汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西街\",\n    \"author\": \"菲利普・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002484-3fc686?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归故里\",\n    \"author\": \"迪迪埃・埃里蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002355-543671?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己作为方法\",\n    \"author\": \"项飙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002262-18b150?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的二本学生\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对欲望，绝对奇异\",\n    \"author\": \"马克弟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002109-90cc9f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饱食穷民\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001761-d44b46?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学作为天职\",\n    \"author\": \"李猛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001632-142eb7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜色的故事\",\n    \"author\": \"加文・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性经验史（3卷本）\",\n    \"author\": \"米歇尔・福柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001113-170e8b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本权力结构之谜\",\n    \"author\": \"卡瑞尔・范・沃尔夫伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000906-aafbe6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他者的消失\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000279-32504e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倦怠社会\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999751-ac5097?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好老师，坏老师\",\n    \"author\": \"达娜・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"右派国家（新版）\",\n    \"author\": \"约翰・米克尔思韦特/阿德里安・伍尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许倬云说美国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国独行\",\n    \"author\": \"马克・斯坦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997540-afe385?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国监狱\",\n    \"author\": \"肖恩・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义的未来\",\n    \"author\": \"保罗・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997324-2dab97?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新美国\",\n    \"author\": \"弗雷德里克・洛根・帕克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄与母亲\",\n    \"author\": \"C.G. 荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996685-df9910?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的视角\",\n    \"author\": \"詹姆斯·C.斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996523-b7c691?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喧哗的大多数\",\n    \"author\": \"艾伦・雅各布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995443-5d0afe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新基建：全球大变局下的中国经济新引擎\",\n    \"author\": \"任泽平/马家进/连一席\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富千年史\",\n    \"author\": \"辛西娅・克罗森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨兽：工厂与现代世界的形成\",\n    \"author\": \"乔舒亚・B.弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的镜子（全新修订版）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人史纲\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福社会创新评论合集（套装共9册）\",\n    \"author\": \"斯坦福社会创新评论编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"床的人类史\",\n    \"author\": \"布莱恩・费根/纳迪亚・杜兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不让生育的社会\",\n    \"author\": \"小林美希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安身立命\",\n    \"author\": \"许纪霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个利他主义者之死\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994531-bf36d7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤气灯效应\",\n    \"author\": \"罗宾・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩波：日本社会写实精选系列\",\n    \"author\": \"森冈孝二等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993460-3e8452?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与的力量\",\n    \"author\": \"慎泰俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992248-f3bcbb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代中国学术思想史（套装共19卷）\",\n    \"author\": \"成一农等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史性的体制\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性与权力\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991975-4c57b0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会政体\",\n    \"author\": \"伍德罗・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公司与将军\",\n    \"author\": \"亚当・克卢洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991738-0e7446?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同体的焚毁\",\n    \"author\": \"希利斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991525-c08881?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球不平等逸史\",\n    \"author\": \"布兰科・米兰诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991216-73f59c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的经济学\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国治理\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"业余者说\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原罪、梦想与霸权\",\n    \"author\": \"维克多・基尔南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一座城市，一部历史\",\n    \"author\": \"李永石等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港社会三部曲\",\n    \"author\": \"刘兆佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁古文明发现史\",\n    \"author\": \"布莱恩・费根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989986-64a34d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧变\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人与中国人\",\n    \"author\": \"许烺光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李光耀观天下\",\n    \"author\": \"李光耀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣家族\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987097-c13163?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的处方\",\n    \"author\": \"伊齐基尔・伊曼纽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来三十年（修订版）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986467-d00263?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据驱动的智能城市\",\n    \"author\": \"史蒂芬・戈德史密斯/苏珊・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客观知识（二十世纪西方哲学经典）\",\n    \"author\": \"卡尔・波普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985501-f55e56?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像哲学家一样生活\",\n    \"author\": \"威廉·B.欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼物的流动\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985465-3e6908?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言的诞生\",\n    \"author\": \"丹尼尔·L. 埃弗雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"享乐主义宣言\",\n    \"author\": \"米歇尔・翁福雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985336-4cdc66?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本世相系列（套装共2册）\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985222-bd140a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身边的逻辑学\",\n    \"author\": \"伯纳・派顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985057-68506c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会与经济\",\n    \"author\": \"马克・格兰诺维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984793-a39f61?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败（牛津通识读本）\",\n    \"author\": \"莱斯利・霍姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984613-d3354c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）新版\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983944-d80749?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃：社会如何选择成败兴亡\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败：人性与文化\",\n    \"author\": \"克里斯・肖尔/迪特尔・哈勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹈鹕丛书（共6册）\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新情商\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学2\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"士大夫政治演生史稿\",\n    \"author\": \"阎步克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广场与高塔\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053496-3c88ef?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人的画像\",\n    \"author\": \"李长声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053013-a69c08?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量2\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052989-6d9cbb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景观社会\",\n    \"author\": \"居伊・德波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专家之死\",\n    \"author\": \"托马斯・尼科尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052356-47c0eb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午1：我穿墙过去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类网络\",\n    \"author\": \"马修・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无缘社会\",\n    \"author\": \"日本NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051867-337e7a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群氓的狂欢\",\n    \"author\": \"塞奇・莫斯科维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何故为敌\",\n    \"author\": \"卡罗琳・艾姆克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051798-658124?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"化蝶：一个滇南小镇的政治史\",\n    \"author\": \"刘永刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051804-1856d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的危机\",\n    \"author\": \"斯科特・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向思考\",\n    \"author\": \"迈克尔・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样管精力，就怎样过一生\",\n    \"author\": \"奥迪尔・夏布里亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2020：用数据看懂中国发展\",\n    \"author\": \"谢伏瞻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出身：不平等的选拔与精英的自我复制\",\n    \"author\": \"劳伦·A·里韦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051546-baba5d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阶层跃迁\",\n    \"author\": \"闫肖锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051423-630300?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米塞斯评传\",\n    \"author\": \"伊斯雷尔·M·柯兹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的价值\",\n    \"author\": \"罗伯特・博伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051105-4b4530?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简斯维尔\",\n    \"author\": \"艾米・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食货《金瓶梅》\",\n    \"author\": \"侯会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050868-bb8823?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造未来城市\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独异性社会\",\n    \"author\": \"安德雷亚斯・莱克维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050682-32415f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家、经济与大分流\",\n    \"author\": \"皮尔・弗里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国问题\",\n    \"author\": \"伯特兰・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与权力\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤因比著作集（套装全7册）\",\n    \"author\": \"阿诺德・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网红养成记\",\n    \"author\": \"吴清缘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049926-102b70?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇特的传染\",\n    \"author\": \"李・丹尼尔・克拉韦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049605-d91e82?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白领：美国的中产阶级\",\n    \"author\": \"米尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049386-35756b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义的代价\",\n    \"author\": \"劳伦斯・李默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会心理学（第8版）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（纪念版）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆斯河\",\n    \"author\": \"丹・费金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：生活方式和商业模式的大变革\",\n    \"author\": \"龟井卓也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酒鬼与圣徒\",\n    \"author\": \"劳伦斯・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身创造力\",\n    \"author\": \"斯科特・科克伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象席地而坐\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论文化\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046062-20408c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力拓扑学\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045756-006b45?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津国际关系手册\",\n    \"author\": \"罗伯特・基欧汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一个欧洲\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安的生活\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨天的中国\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傻世界，笨生意\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044727-92ea3a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们最幸福\",\n    \"author\": \"芭芭拉・德米克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为未知而教，为未来而学\",\n    \"author\": \"戴维・珀金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银元时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈耶克作品（共6册）\",\n    \"author\": \"弗里德里希・奥古斯特・哈耶克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖中国\",\n    \"author\": \"于阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043692-f33615?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺桐城\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学治要（套装共三册）\",\n    \"author\": \"张文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光棍危机\",\n    \"author\": \"瓦莱丽・M. 赫德森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042783-f1c3cb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式诱惑\",\n    \"author\": \"伊莱恩・西奥利诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要害怕中国\",\n    \"author\": \"菲利普・巴莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝶变：澳门博彩业田野叙事\",\n    \"author\": \"刘昭瑞/霍志钊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自愿为奴（译文经典）\",\n    \"author\": \"艾蒂安・德・拉・波埃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"购物凶猛\",\n    \"author\": \"孙骁骥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不同的音调\",\n    \"author\": \"约翰・唐文/凯伦・祖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打造消费天堂\",\n    \"author\": \"连玲玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃肉喝酒飞奔\",\n    \"author\": \"吴惠子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041562-6e4a9f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感受中国（套装3本）\",\n    \"author\": \"李锦/任志刚/李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040905-1f77cd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝希摩斯\",\n    \"author\": \"托马斯・霍布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骨节\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040164-1a7571?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的没落（译林人文精选）\",\n    \"author\": \"奥斯瓦尔德・斯宾格勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善与恶\",\n    \"author\": \"阿比盖尔・马什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039612-8d1c5f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空荡荡的地球\",\n    \"author\": \"达雷尔・布里克/约翰・伊比特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的本质（修订版）\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创世记\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意会时刻\",\n    \"author\": \"克里斯琴・马兹比尔格/米凯尔・拉斯马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作漂流\",\n    \"author\": \"稻泉连\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037632-6132e7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一声礼炮\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河说爱情\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民粹主义大爆炸\",\n    \"author\": \"约翰・朱迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：自由与财产\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大趋势\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从祖先到算法\",\n    \"author\": \"亚历克斯・本特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我想重新解释历史\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033837-7ecd82?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度预测\",\n    \"author\": \"理查德·A·克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033822-1e355a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群的进化\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不平等社会\",\n    \"author\": \"沃尔特・沙伊德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的终结\",\n    \"author\": \"安妮・罗瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033516-85ae36?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨变：当代政治与经济的起源\",\n    \"author\": \"卡尔・波兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断裂的阶梯\",\n    \"author\": \"基思・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲之死\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033084-abadc2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低增长社会\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032994-77e8ac?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国下层阶级的愤怒\",\n    \"author\": \"戴伦・麦加维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032574-2a5e18?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力：思无所限\",\n    \"author\": \"理查德·J.伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民蠢萌的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本的细节\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032355-8598e5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易打造的世界\",\n    \"author\": \"彭慕兰/史蒂文・托皮克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽新世界（译文经典）\",\n    \"author\": \"奥尔德斯・赫胥黎\",\n    \"link\": \"链接未找到\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：颠覆职场学习的高效方法\",\n    \"author\": \"王世民/缪志聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忧郁的热带\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面对现代世界问题的人类学\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032265-7d37d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下游老人\",\n    \"author\": \"藤田孝典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032235-32dde2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自下而上\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解媒介\",\n    \"author\": \"马歇尔・麦克卢汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031776-144515?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为妮可\",\n    \"author\": \"艾米・埃利斯・纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑帮·贩毒集团神秘内幕（全五册）\",\n    \"author\": \"詹幼鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031308-31f32e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交媒体简史\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房奴\",\n    \"author\": \"戴维・戴恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由在高处\",\n    \"author\": \"熊培云\",\n    \"link\": \"链接未找到\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有闲阶级论\",\n    \"author\": \"凡勃伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030537-777029?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻路中国\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝的故事\",\n    \"author\": \"深蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃\",\n    \"author\": \"克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众（作家榜经典文库）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲和力\",\n    \"author\": \"古宫昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁统治美国？公司富豪的胜利\",\n    \"author\": \"威廉・多姆霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国与中国人影像（增订版）\",\n    \"author\": \"约翰・汤姆逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030279-7e35db?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一阅千年\",\n    \"author\": \"马克・科尔兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在现场\",\n    \"author\": \"黄盈盈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030039-700572?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与古为徒和娟娟发屋\",\n    \"author\": \"白谦慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030021-8772c8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会理论的核心问题\",\n    \"author\": \"安东尼・吉登斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029886-fe1bf2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天降之任：学术与政治\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029682-d3a753?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判心理学\",\n    \"author\": \"康木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029664-32f6cd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袍哥\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029658-37cafe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媒介批评三部曲（套装共3册）\",\n    \"author\": \"尼尔・波斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029637-888957?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何建立好人缘\",\n    \"author\": \"谢湘萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"较量：乐观的经济学与悲观的生态学\",\n    \"author\": \"保罗・萨宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆年代四部曲（套装共4册）\",\n    \"author\": \"艾瑞克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029361-ff5c8f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人情、面子与权力的再生产（修订版）\",\n    \"author\": \"翟学伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029310-bc9143?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何研究中国（增订本）\",\n    \"author\": \"曹锦清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029193-76f098?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的美国\",\n    \"author\": \"珍妮・拉斯卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷忙\",\n    \"author\": \"戴维・希普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论文与治学\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029043-f29e28?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平等之路\",\n    \"author\": \"迈克尔·J.克拉曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过剩之地\",\n    \"author\": \"莫妮卡・普拉萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息背后的信息\",\n    \"author\": \"马克斯・巴泽曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028227-08a419?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子1：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028203-c24763?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子2：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028182-15b27e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子3：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028176-a2cb1b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学\",\n    \"author\": \"杰弗里・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的帝国\",\n    \"author\": \"波波・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅山的交往和应酬（增订本）\",\n    \"author\": \"白谦慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028113-e9791a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二性（合卷本）\",\n    \"author\": \"西蒙娜・德・波伏瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉万象记\",\n    \"author\": \"毛晓雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单向度的人\",\n    \"author\": \"赫伯特・马尔库塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027930-c2ca75?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不再害羞\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027789-fbee3f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩票中奖一亿元之后\",\n    \"author\": \"铃木信行\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027702-53ccb6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是个妈妈，我需要铂金包\",\n    \"author\": \"温妮斯蒂・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平常的恶\",\n    \"author\": \"朱迪丝·N.施克莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027648-d9850c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读（01-10）\",\n    \"author\": \"许知远/肖海生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027654-e73901?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读（11-15）\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027657-d9573b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读16：新北京人\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027591-a94676?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的复杂性\",\n    \"author\": \"罗伯特・阿克塞尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本新中产阶级\",\n    \"author\": \"傅高义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027330-ae5a2e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惡血\",\n    \"author\": \"約翰・凱瑞魯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027258-867926?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弱传播\",\n    \"author\": \"邹振东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027201-40d002?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密如何改变了我们的生活\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅（原书第2版）\",\n    \"author\": \"皮厄特拉・里佛利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们时代的精神状况\",\n    \"author\": \"海因里希・盖瑟尔伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026277-82d739?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海胆\",\n    \"author\": \"雷晓宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗钱内幕\",\n    \"author\": \"姚耀/秋叶良和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025722-0dbcb6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思维\",\n    \"author\": \"S.J. Scott/Barrie Davenport\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一个家在何方？\",\n    \"author\": \"馬修・戴斯蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025545-020e6e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁偷走了美国梦\",\n    \"author\": \"赫德里克・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025536-ab13ba?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸引\",\n    \"author\": \"瓦妮莎・范・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025563-ca425f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燕南园往事\",\n    \"author\": \"汤一介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025530-09fd76?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街角的老北京\",\n    \"author\": \"卢文龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣的现象学\",\n    \"author\": \"鹫田清一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025359-4d71c5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有话说\",\n    \"author\": \"崔永元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日29：偶像\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025353-47b33b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劫持\",\n    \"author\": \"玛丽•K. 斯温格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的信任\",\n    \"author\": \"布鲁斯・施奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024999-0143fe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见日本\",\n    \"author\": \"徐静波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024732-43de40?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024774-f809b9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读中国经济（增订版）\",\n    \"author\": \"林毅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永生的海拉\",\n    \"author\": \"丽贝卡・思科鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马航MH370失联十七天\",\n    \"author\": \"陈功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024450-32c0b3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式幸福\",\n    \"author\": \"亚瑟·C.布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"椰壳碗外的人生\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代文学大师林语堂逝世40周年纪念典藏版（全18册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024327-391a41?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人的艺术\",\n    \"author\": \"山姆・高斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024294-65b337?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Never Split the Difference\",\n    \"author\": \"Chris Voss/Tahl Raz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024258-60d859?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络心理学\",\n    \"author\": \"玛丽・艾肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024027-d383d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做出正确决定\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"态度改变与社会影响\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023853-1d340e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返巴格达\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023856-5b4c01?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言风格的秘密\",\n    \"author\": \"詹姆斯・彭尼贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023781-4c8ac9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匠人\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023748-9674dd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体不说谎\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打工女孩\",\n    \"author\": \"张彤禾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史\",\n    \"author\": \"莉迪亚・康/内特・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实主义者的乌托邦\",\n    \"author\": \"鲁特格尔・布雷格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023271-cc8268?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解增长\",\n    \"author\": \"道格拉斯・洛西科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023250-ff1bb1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法霸权\",\n    \"author\": \"凯西・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切与创造有关\",\n    \"author\": \"奥古斯汀・富恩特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国社会各阶层分析\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022956-0c4ce7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Coddling of the American Mind\",\n    \"author\": \"Greg Lukianoff/Jonathan Haidt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022932-efa525?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公平之怒\",\n    \"author\": \"理查德・威尔金森/凯特・皮克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都发狂了\",\n    \"author\": \"凯伦・乔伊・富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022860-956833?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东北游记\",\n    \"author\": \"迈克尔・麦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022509-9d7c84?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格调（修订第3版）\",\n    \"author\": \"保罗・福塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022470-f9a015?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王国与权力\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022410-4ed181?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大江大河（共4册）\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022380-6f84ee?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁道之旅\",\n    \"author\": \"沃尔夫冈・希弗尔布施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现民众\",\n    \"author\": \"林红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021852-b5cbe5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰人的噩梦\",\n    \"author\": \"卡罗利娜・科尔霍宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚裔美国的创生\",\n    \"author\": \"李漪莲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今日简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Daring Greatly\",\n    \"author\": \"Brene Brown\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"场景：空间品质如何塑造社会生活\",\n    \"author\": \"丹尼尔・亚伦・西尔/特里・尼科尔斯・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021585-0b48ca?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扫地出门：美国城市的贫穷与暴利\",\n    \"author\": \"马修・德斯蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娱乐至死\",\n    \"author\": \"尼尔・波兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021261-711d62?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Our Kids\",\n    \"author\": \"Robert D. Putnam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑箱社会\",\n    \"author\": \"弗兰克・帕斯奎尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021171-9be5d6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争、枪炮与选票\",\n    \"author\": \"保罗・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021162-f86e9b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家构建\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021159-d86f25?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的进化\",\n    \"author\": \"罗伯特・艾克斯罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021090-b0978a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规模：复杂世界的简单法则\",\n    \"author\": \"杰弗里・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021036-fe84e6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雄性衰落\",\n    \"author\": \"菲利普・津巴多/尼基塔・库隆布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020970-224943?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫与人\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020880-aa080f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶女：普通女性为何化身连环杀人狂\",\n    \"author\": \"彼得・佛伦斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020835-ba00af?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金赛性学报告（男人篇&#038;女人篇）\",\n    \"author\": \"阿尔弗雷德・C.金赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020571-87df7c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝路回响-文明的交融（套装共7册)\",\n    \"author\": \"三联生活周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020697-bb72e0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力都是逼出来的\",\n    \"author\": \"布兰登・伯查德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020433-eee874?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国独行：西方世界的末日\",\n    \"author\": \"马克・斯坦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020337-7905c5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知盈余：自由时间的力量\",\n    \"author\": \"克莱・舍基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020253-b77fad?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈与社会\",\n    \"author\": \"张维迎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020199-4cd873?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知觉之门\",\n    \"author\": \"阿道斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019935-31f55b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蕾蒂西娅，或人类的终结\",\n    \"author\": \"伊凡・雅布隆卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同步：秩序如何从混沌中涌现\",\n    \"author\": \"斯蒂芬・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019755-1e9eae?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：历史地理（上册）\",\n    \"author\": \"单周尧等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019728-de9599?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：历史地理（下册）\",\n    \"author\": \"张伟保等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019734-e6e9b5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：诸子百家（上册）\",\n    \"author\": \"陈耀南男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019713-a62b5d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：诸子百家（下册）\",\n    \"author\": \"趙善軒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019707-ed5d95?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微粒社会\",\n    \"author\": \"克里斯托夫・库克里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019575-e3c742?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维简史：从丛林到宇宙\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019542-7cb361?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的悖论\",\n    \"author\": \"菲利普・津巴多/约翰・博伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019449-bf5895?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后物欲时代的来临\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019419-3b77fe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019266-96362f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：哲学宗教（下册）\",\n    \"author\": \"杨祖汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019209-42a853?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的兴衰\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019092-d58e9a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不可不知的人性（全二册）\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018933-feb3e1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类的天赋\",\n    \"author\": \"凯文・达顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实改变之后\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高难度沟通\",\n    \"author\": \"贾森・杰伊/加布里埃尔・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018492-971649?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么有的国家富裕，有的国家贫穷\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018243-d98729?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的兴起\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017958-a45d43?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象的共同体（增订版）\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017700-976365?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越（经典完整译本）\",\n    \"author\": \"阿弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017193-116343?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好人为什么会作恶\",\n    \"author\": \"托马斯・布拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016959-db3d20?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始写故事\",\n    \"author\": \"叶伟民/知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016416-e192eb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静冥想的力量（十册套装）\",\n    \"author\": \"帕拉宏撒・尤迦南达等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016377-d348d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Homo Deus\",\n    \"author\": \"Yuval Noah Harari\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016344-af4d82?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因社会\",\n    \"author\": \"以太・亚奈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016272-086eed?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因组：人类自传\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反焦虑思维\",\n    \"author\": \"罗尔・克肖/ 比尔・韦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015648-08a46e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读自己心理阅读书系（第1辑）\",\n    \"author\": \"卡伦・霍妮等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015639-644be4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的故事：正式授权续写至21世纪\",\n    \"author\": \"亨德里克・威廉・房龙等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015681-651344?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类砍头小史\",\n    \"author\": \"弗朗西斯・拉尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大拐点\",\n    \"author\": \"袁剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015597-bc638c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的影响力\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015537-02d9e0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们如何正确思维\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞关系学\",\n    \"author\": \"亚当・加林斯基/马利斯・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015102-e9b4b4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活过\",\n    \"author\": \"南方人物周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014892-297fa9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代的互联网\",\n    \"author\": \"汤姆・斯坦迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废物星球：从中国到世界的天价垃圾之旅\",\n    \"author\": \"亚当・明特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014730-c288c9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复杂：信息时代的连接、机会与布局\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014691-5f5ec3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牲人祭\",\n    \"author\": \"皮埃尔・比恩鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014478-2f2e77?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的亲人\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014427-4895bb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹麦人为什么幸福\",\n    \"author\": \"迈克・维金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会动物\",\n    \"author\": \"戴维・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014367-2e013a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十里红妆\",\n    \"author\": \"吴瑞贤/吴静波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014310-ce95e8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何思考会思考的机器\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014175-b0a0d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The 100-Year Life\",\n    \"author\": \"Lynda Gratton / Andrew Scott\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013686-e885a9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Street of Eternal Happiness\",\n    \"author\": \"Rob Schmitz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013707-35fbcc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯社会心理学套装（第8版共4册）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013611-f376ca?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本（套装共3册）\",\n    \"author\": \"黄亚南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013320-488041?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳底下的新鲜事\",\n    \"author\": \"约翰・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非偶然\",\n    \"author\": \"埃利奥特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本哲学书\",\n    \"author\": \"托马斯・内格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012999-032fe2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原\",\n    \"author\": \"毕飞宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012975-9d2262?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书（套装共6册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃离不平等\",\n    \"author\": \"安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012318-a4fae0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会学的想象力\",\n    \"author\": \"赖特・米尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012270-d825c1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊与刀（增订版）\",\n    \"author\": \"鲁思・本尼迪克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012096-e918e2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾国教育病理\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国大城\",\n    \"author\": \"陆铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011787-8e42f4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你会杀死那个胖子吗？\",\n    \"author\": \"戴维・埃德蒙兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本社会的17个矛盾\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011637-aacc42?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾这些年所知道的祖国\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们台湾这些年\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011574-9729a0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们台湾这些年2\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011571-5ec4cc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往大国之路：中国的知识重建和文明复兴\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011517-f964c0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的逻辑\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011373-733a50?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私人生活的变革\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间地图\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011370-deef54?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部招妻\",\n    \"author\": \"马宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以诈止诈\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011319-2fc00d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国大趋势：新社会的八大支柱\",\n    \"author\": \"约翰・奈斯比特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011295-ef8ccd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知乎一小时「补课系列」套装\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011235-8d096d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他的国\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010668-2bfb7c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德动物\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评官员的尺度\",\n    \"author\": \"安东尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（上卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（下卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：如何应对大概率危机\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010110-fa186a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白板\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想本质\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言本能\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智探奇\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人时代\",\n    \"author\": \"克莱・舍基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009798-cd52c6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的精神\",\n    \"author\": \"辜鸿铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝与黄金\",\n    \"author\": \"沃尔特・拉塞尔・米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信任\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009633-ce67ee?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序的起源\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序与政治衰败\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌和钢铁\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大断裂\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009438-2a63df?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断臂上的花朵\",\n    \"author\": \"奥比・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009423-07055d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的终结与最后的人\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零年：1945\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生取义\",\n    \"author\": \"吴飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力：为什么只为某些人所拥有（经典版）\",\n    \"author\": \"杰弗瑞・菲佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神似祖先\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家兴衰\",\n    \"author\": \"鲁奇尔・夏尔马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开放社会及其敌人（全二卷）\",\n    \"author\": \"卡尔・波普尔爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格拉德威尔经典系列（套装共5册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008817-5267fc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论中国\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性乐观派：一部人类经济进步史\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008781-b8b9ad?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骗枭\",\n    \"author\": \"冯精志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008745-c36a76?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧制度与大革命\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与荒原同行\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出梁庄记\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二号首长\",\n    \"author\": \"黄晓阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008580-78b9e7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国空巢\",\n    \"author\": \"易富贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008244-1d0cc5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房思琪的初恋乐园\",\n    \"author\": \"林奕含\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008127-c9eeda?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在底层的生活\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可思议的年代\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被劫持的私生活\",\n    \"author\": \"肉唐僧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008037-46dd88?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2052：未来四十年的中国与世界\",\n    \"author\": \"乔根・兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾五百年\",\n    \"author\": \"戴维・考特莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞利格曼幸福五部曲\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血酬定律：中国历史中的生存游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌舵三部曲（掌舵＋掌舵2+舵手）\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光荣与梦想（套装共4册）\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是食人族\",\n    \"author\": \"克劳德・列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进步时代\",\n    \"author\": \"张国庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（缩译全彩插图本）\",\n    \"author\": \"亚当·斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众：大众心理研究（修订版）\",\n    \"author\": \"古斯塔夫·勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"警察难做\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006957-9f1d28?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（30周年纪念版）\",\n    \"author\": \"理查德·道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草民经济学\",\n    \"author\": \"南勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006894-56ae7d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维基解密：谁授权美国统管世界\",\n    \"author\": \"苏言/贺濒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会性动物\",\n    \"author\": \"Elliot Aronson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时寒冰说：未来二十年，经济大趋势（合集）\",\n    \"author\": \"时寒冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年看中国系列（共8本）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006609-d621da?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的权利（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006564-636a09?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人与中国人\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006471-f2b909?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人以什么理由来记忆\",\n    \"author\": \"徐贲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006453-f30ed5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民寂寞的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006432-89cb5c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫廷社会（译文经典）\",\n    \"author\": \"诺贝特・埃利亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤单，我的自我\",\n    \"author\": \"丽贝卡・特雷斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯卫东官场笔记（1-8册+巴国侯氏）\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006186-fed3db?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂人类进化史\",\n    \"author\": \"史钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长的极限\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独裁者手册\",\n    \"author\": \"布鲁斯・布鲁诺・德・梅斯奎塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年之痒\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集体行动的逻辑\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的残渣\",\n    \"author\": \"冯峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1644：中国式王朝兴替\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005220-eda0ce?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗也要叫\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005055-f06b5e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叫魂\",\n    \"author\": \"孔飞力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004902-1b6315?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反脆弱：从不确定性中获益\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天边一星子\",\n    \"author\": \"邓安庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024252-c13ed1?p=8866\",\n    \"category\": \"故乡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜长梦多\",\n    \"author\": \"赵兰振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022518-85acd6?p=8866\",\n    \"category\": \"故乡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追问\",\n    \"author\": \"丁捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866\",\n    \"category\": \"反腐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人民的名义\",\n    \"author\": \"周梅森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007896-f02fcd?p=8866\",\n    \"category\": \"反腐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国的腐败与反腐\",\n    \"author\": \"弗兰克・巴约尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866\",\n    \"category\": \"反腐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京人的世界\",\n    \"author\": \"菲利普・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986962-f7608b?p=8866\",\n    \"category\": \"北欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外出偷马\",\n    \"author\": \"佩尔・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866\",\n    \"category\": \"北欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎豹（全二册）\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866\",\n    \"category\": \"北欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：服务器架设篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866\",\n    \"category\": \"服务器\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋风云人物\",\n    \"author\": \"董尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020238-6652c1?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋觉梦录：袁世凯\",\n    \"author\": \"禅心初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013425-886951?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯国璋：北洋时期最有争议的总统\",\n    \"author\": \"韩仲义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009432-510c86?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文武北洋・风流篇\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009363-bd9b77?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文武北洋・枭雄篇\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009366-f96c72?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋军阀史（套装共2册）\",\n    \"author\": \"来新夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008457-b50456?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六朝文明（中译修订版）\",\n    \"author\": \"丁爱博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491355-eb0d4e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智造中国\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491232-200000?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疑案里的中国史\",\n    \"author\": \"艾公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492021-d4507b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十六史：完本精校大全集\",\n    \"author\": \"尹小林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492978-9ee6ed?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅盾讲中国神话\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492144-627120?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读通鉴论（全本全注全译）\",\n    \"author\": \"王夫之等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492498-e835e5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿得起放不下的大唐史（套装共6册）\",\n    \"author\": \"九皋寒叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493803-e9b7e5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量4\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493833-c77a73?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天中华史（全24卷）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495477-bb3864?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海外中国研究套书合集（50册）\",\n    \"author\": \"杜赞奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494265-1152a5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国从此走向大唐\",\n    \"author\": \"叶言都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497640-aa733a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国合集（套装共4册）\",\n    \"author\": \"余玮等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497739-6909f1?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年论中国系列（套装6册）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾新十年：移动互联网丛林里的勇敢穿越者（套装共2册）\",\n    \"author\": \"林军/胡喆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497964-c980d4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煌煌商周\",\n    \"author\": \"高虫二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498399-fe1caa?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的三国史（套装共3册）\",\n    \"author\": \"醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498435-696d7b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宽著作集第一辑+第二辑（13种15册全）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498888-2686f0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九说中国系列（第一辑·全九册）\",\n    \"author\": \"江晓原等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498858-bb9ccb?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岳南：考古中国（全11册）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499434-08138d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的选择\",\n    \"author\": \"马凯硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱世四百年（全3册）\",\n    \"author\": \"张程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499563-57bb66?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国知识·信仰·制度研究书系（全11册）\",\n    \"author\": \"仇鹿鸣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501066-c19ce4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"置身事内\",\n    \"author\": \"兰小欢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500901-c3b7ff?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祥瑞：王莽和他的时代\",\n    \"author\": \"张向荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501060-79c4bc?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎东方讲史（套装共九册）\",\n    \"author\": \"黎东方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502284-a5d182?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联当代学术丛书（套装10册）\",\n    \"author\": \"茅海建等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502293-05fab8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国的知识与制度转型\",\n    \"author\": \"桑兵/关晓红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502335-2fab88?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国人文社会（套装共8册）\",\n    \"author\": \"冯友兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502341-52b551?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四运动史\",\n    \"author\": \"周策纵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502563-5afaed?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华学人丛书（第二辑）（套种共十六册）\",\n    \"author\": \"李伯杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503694-ac5276?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新编历史-元明清简史系列\",\n    \"author\": \"吴玉章等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504225-455a2a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法度与人心\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504462-48faff?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华学人丛书（第一辑）（套种共十五册）\",\n    \"author\": \"李细珠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504888-0865cd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史大师课（全三册）\",\n    \"author\": \"许宏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504945-912385?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书理解中国（套装共15册）\",\n    \"author\": \"蔡昉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506709-9a88fd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国史学要籍丛刊（全十三册）\",\n    \"author\": \"司马迁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507369-8d2f54?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间烟火\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507471-468a0e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未名中国史丛刊\",\n    \"author\": \"李孝聪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508422-bc780c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑与历史文化精选（套装共5本）\",\n    \"author\": \"汪荣祖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李顿调查团档案文献集\",\n    \"author\": \"郭昭昭等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508902-ee3647?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被遗忘的海上中国史\",\n    \"author\": \"罗荣邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508914-0714ec?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民法典请求权基础检索手册\",\n    \"author\": \"吴香香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508941-e99844?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治维新以来日本涉华学术调查系列丛书（套装共5册）\",\n    \"author\": \"常盘大定等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509337-ad0d6b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲给大家的中国历史（套装共9册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509490-b9fe88?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变中国\",\n    \"author\": \"张军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509850-d9c207?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦魇\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511050-520d2a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古物记\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511083-8bffd6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济2020\",\n    \"author\": \"王德培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511185-ea4e0f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云上的中国\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511269-087c56?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个成语中的古代生活史\",\n    \"author\": \"许晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1840年以来的中国\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512094-24957e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白寿彝史学二十讲套装（共十一册）\",\n    \"author\": \"白寿彝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512733-8591d3?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得看完的中国史\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512874-eab20b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚汉双雄\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟随利玛窦来中国\",\n    \"author\": \"张西平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513096-e1c1a7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华雅文化经典系列（套装共8册）\",\n    \"author\": \"陈敬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513279-73b746?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西洋镜合集\",\n    \"author\": \"赵省伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513801-cd009d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛极简中国史（修订珍藏版）\",\n    \"author\": \"阿尔伯特・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513678-179769?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么是中国\",\n    \"author\": \"金一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古史六案\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513729-d47abf?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美中国（全8册）\",\n    \"author\": \"陈炎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513846-cbc74c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革故鼎新\",\n    \"author\": \"杨天宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004677-064105?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新元史（全十册）\",\n    \"author\": \"柯劭忞等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003306-a208db?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的二本学生\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从考古发现中国\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10000年中国艺术史（全2册）\",\n    \"author\": \"王逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002127-c9e3e5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的中国史\",\n    \"author\": \"历史君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002040-b2ebf4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里是中国\",\n    \"author\": \"星球研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001278-e6701c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国战疫！\",\n    \"author\": \"张维为\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001119-7cf127?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀柔远人\",\n    \"author\": \"何伟亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透《资治通鉴》（战国到三国·共7册）\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995530-d3ff91?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新基建：全球大变局下的中国经济新引擎\",\n    \"author\": \"任泽平/马家进/连一席\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人眼中的中国史（全4册）\",\n    \"author\": \"堀敏一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995227-02574c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时中国1940-1946\",\n    \"author\": \"格兰姆・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995017-6778ad?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何以中国\",\n    \"author\": \"许宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻：新全球化时代的中国韧性与创新\",\n    \"author\": \"秦朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代中国学术思想史（套装共19卷）\",\n    \"author\": \"成一农等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国共产党的九十年\",\n    \"author\": \"中共中央党史研究室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992086-13abd2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武英殿本四库全书总目·上（1-30册）\",\n    \"author\": \"纪昀等纂修编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994612-c07393?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武英殿本四库全书总目·下（31-60册）\",\n    \"author\": \"纪昀等纂修编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994516-301912?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们不是虹城人\",\n    \"author\": \"王苏辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990964-b8afd7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不只中国木建筑\",\n    \"author\": \"赵广超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云雷岛事件\",\n    \"author\": \"孙国栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990916-d09f48?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代谢增长论\",\n    \"author\": \"陈平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990715-9d84b3?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来站在中国这一边\",\n    \"author\": \"宁南山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国治理\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华文明史（全四卷）\",\n    \"author\": \"袁行霈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人生哲学\",\n    \"author\": \"方东美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990337-fd3773?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的当下与未来\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华二千年史（套装共3册）\",\n    \"author\": \"邓之诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990280-51b8f7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏杨白话版资治通鉴（全72册）\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国政治思想史（套装共3册）\",\n    \"author\": \"刘泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九色鹿•边疆史系列（全7册）\",\n    \"author\": \"薛小林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎和会与北京政府的内外博弈\",\n    \"author\": \"邓野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八次危机\",\n    \"author\": \"温铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987595-1cd401?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年读史记（套装全5册）\",\n    \"author\": \"张嘉骅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986401-311f21?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌蒙山记\",\n    \"author\": \"雷平阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五万年中国简史（全二册）\",\n    \"author\": \"姚大力等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985504-47fbca?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文物中国史\",\n    \"author\": \"中国国家博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文史通义校注（中华国学文库）\",\n    \"author\": \"章学诚著/叶瑛校注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984772-eeffe4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史通（全本全注全译）\",\n    \"author\": \"白云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983833-e75058?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正统与华夷\",\n    \"author\": \"刘浦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983797-3ed0c7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有所不为的反叛者\",\n    \"author\": \"罗新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983353-cca417?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上寻仙记\",\n    \"author\": \"锦翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古道\",\n    \"author\": \"伊莎贝拉・韦廉臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053949-72e6cc?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重审中国的“近代”\",\n    \"author\": \"孙江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053655-c514d0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代钱币\",\n    \"author\": \"华东师大博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053706-4553fa?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一书通识世界五千年历史悬案\",\n    \"author\": \"仲英涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053085-b9a1ff?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走：Green和张早故事集\",\n    \"author\": \"司屠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052647-06ffd0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国纵横\",\n    \"author\": \"史景迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052362-4807ce?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2020：用数据看懂中国发展\",\n    \"author\": \"谢伏瞻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史无间道\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定中国史\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051033-abeffa?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定人物论\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"各朝各代那些事儿（套装30册）\",\n    \"author\": \"昊天牧云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050676-782b7a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国问题\",\n    \"author\": \"伯特兰・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十五史简明读本（全15册）\",\n    \"author\": \"汪受宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050169-8543b7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国经济下半场（套装共25册）\",\n    \"author\": \"陈元/钱颖一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化的江山·第一辑（全4册）\",\n    \"author\": \"刘刚/李冬君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈舜臣说十八史略：中国历史极简本\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048681-5bcfb9?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词排行榜\",\n    \"author\": \"王兆鹏/郁玉英/郭红欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷场\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048561-99f922?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史：从上古传说到1949\",\n    \"author\": \"邓广铭/田余庆/戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管子（全本全注全译）\",\n    \"author\": \"李山/轩新丽译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离婚（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些忧伤的年轻人\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大河深处\",\n    \"author\": \"东来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047136-68689e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媚骨之书\",\n    \"author\": \"蒋蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒退的帝国：朱元璋的成与败\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开市大吉（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的自信\",\n    \"author\": \"陈曙光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046188-7efacb?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国常识全集（套装共10册）\",\n    \"author\": \"吴晗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045489-a1fa67?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度4\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历朝通俗演义（全十一册）\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045354-75bb47?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去海拉尔\",\n    \"author\": \"王咸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045237-1155f9?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火枪与账簿\",\n    \"author\": \"李伯重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国精神读本\",\n    \"author\": \"王蒙/王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾仕强中国式管理全集（套装书全23册）\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045264-71c053?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：帝国建立与政权巩固\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：王朝鼎盛与命运转折\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安的生活\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨天的中国\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"节日之书\",\n    \"author\": \"余世存/老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044508-103e4d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的中国历史故事（作家榜经典文库）\",\n    \"author\": \"汤芸畦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从历史看组织\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043785-33f6ec?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖中国\",\n    \"author\": \"于阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043692-f33615?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草与禾\",\n    \"author\": \"波音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043632-3f8944?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美不言\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国真有趣（全6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要害怕中国\",\n    \"author\": \"菲利普・巴莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"购物凶猛\",\n    \"author\": \"孙骁骥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简读中国史\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042147-004132?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四运动史：现代中国的知识革命\",\n    \"author\": \"周策纵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041817-36939b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国抗日战争史（四卷套装）\",\n    \"author\": \"张宪文/左用章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星一号\",\n    \"author\": \"朱个\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041376-a5c0bb?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹青手\",\n    \"author\": \"周李立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041214-971083?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无麂岛之夜\",\n    \"author\": \"池上\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040830-a8c559?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感受中国（套装3本）\",\n    \"author\": \"李锦/任志刚/李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040905-1f77cd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识与通识（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济2019\",\n    \"author\": \"王德培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040161-184485?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的军事密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039258-40e6b4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁冬说庄子（套装共九册）\",\n    \"author\": \"梁冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039057-19d5a8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平广记钞（全4册）\",\n    \"author\": \"冯梦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038181-7e9c85?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文史哲入门三部曲\",\n    \"author\": \"吕思勉/胡适/郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037773-c7f7aa?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国史论衡\",\n    \"author\": \"邝士元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035766-7facf5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽必烈的挑战\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大趋势\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1945\",\n    \"author\": \"理查德・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034716-72269b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朔文集（典藏版）\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜂巢\",\n    \"author\": \"刘洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033603-f6beee?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国逸史（全2册）\",\n    \"author\": \"王习耕/梅振田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033477-6c0e82?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说中国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古江河\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化的精神\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平杂说\",\n    \"author\": \"潘旭澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史（五卷本）\",\n    \"author\": \"卜宪群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033426-04b3cd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香山帮\",\n    \"author\": \"朱宏梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033168-09c55f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国\",\n    \"author\": \"乔治·N.赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033150-8be846?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国门阀大族的消亡\",\n    \"author\": \"谭凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖南人与现代中国\",\n    \"author\": \"裴士锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032976-2e3783?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镀金时代\",\n    \"author\": \"夏清影\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032676-8550ac?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学简史\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一看就停不下来的中国史\",\n    \"author\": \"最爱君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032190-ca5444?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济史\",\n    \"author\": \"钱穆/叶龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻路中国\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝的故事\",\n    \"author\": \"深蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的历史：诸神的踪迹\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历史常识\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030000-796999?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华夏传统政治文明书系（全四册）\",\n    \"author\": \"马平安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029841-addcd2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细讲中国历史丛书（套装共12册）\",\n    \"author\": \"李学勤/郭志坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030339-2eb1f4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华史纲\",\n    \"author\": \"李定一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029643-40892a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们太缺一门叫生命的学问\",\n    \"author\": \"薛仁明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029520-f3bc05?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革三部曲\",\n    \"author\": \"吴敬琏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人6\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029298-3e03c1?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗地母的礼物（下）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029073-348075?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗地母的礼物（上）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028494-c2546a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八〇年代\",\n    \"author\": \"柳红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027843-4ff995?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史学的境界\",\n    \"author\": \"高华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度3\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026157-634aa1?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中1·山水\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025278-3cb446?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中14·中国茶的基本\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中16·西南联大的遗产\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可逃\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱明王朝\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宽著作集第一辑（8种10册全）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025140-fdbb62?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆里的极简中国史\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沧浪诗话\",\n    \"author\": \"严羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翅鬼\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024771-35d4c6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024786-a5d2dd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读中国经济（增订版）\",\n    \"author\": \"林毅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人4\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024066-18ec80?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我只知道人是什么\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡土中国、江村经济套装\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打工女孩\",\n    \"author\": \"张彤禾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国社会各阶层分析\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022956-0c4ce7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超频交易商\",\n    \"author\": \"谢云宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022317-c95b84?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青苔不会消失\",\n    \"author\": \"袁凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思享家丛书（套装共4册）\",\n    \"author\": \"周濂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021486-85c08f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《伦敦新闻画报》记录的民国1926-1949（套装4册）\",\n    \"author\": \"沈弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国《小日报》记录的晚清（1891-1911）\",\n    \"author\": \"李红利/赵丽莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国彩色画报记录的中国1850-1937（套装共2册）\",\n    \"author\": \"赵省伟/李小玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021246-0c8518?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革史系列（共三册）\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020823-e86ce2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度：惊心动魄三十年国运家事纪实\",\n    \"author\": \"李锦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020544-1aec28?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史2\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020037-5762be?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近百年政治史\",\n    \"author\": \"李剑农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019722-b2f37a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不换\",\n    \"author\": \"蔡智恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019077-62b19a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的中国工业革命\",\n    \"author\": \"文一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018393-aa4452?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我认识了一个索马里海盗\",\n    \"author\": \"邓安庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018387-8fbd0f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资治通鉴直解\",\n    \"author\": \"张居正整理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018210-d1a502?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与中国打交道\",\n    \"author\": \"亨利・鲍尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国缺什么，日本缺什么\",\n    \"author\": \"近藤大介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017190-d077f5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯乐\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016926-0073c7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国时代（全二册）\",\n    \"author\": \"师永刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016368-b309d0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来镜像\",\n    \"author\": \"刘慈欣/夏笳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016164-7dd1f6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天朝 洋奴 万邦协和\",\n    \"author\": \"傅斯年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016029-7caad2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国原生文明启示录\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵史\",\n    \"author\": \"雷海宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015135-b850e8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说文学之美（全5册修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015126-9255a6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字看我一生\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼兰河传（1940年初刊还原版）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014454-6db54f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口气读完中国战史\",\n    \"author\": \"顾晓绿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014607-058cae?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广州贸易\",\n    \"author\": \"范岱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代王朝系列全集（全28册）\",\n    \"author\": \"王新龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012909-fac22e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信经典历史之中国史篇（共5册）\",\n    \"author\": \"杨早/马勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012885-c4bcf4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾国教育病理\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉经典作品合集（全14册）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012045-6418c3?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化简史（套装共4册）\",\n    \"author\": \"王立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历史风云录\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010971-27004c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说天下：话说中国历史系列（全10册）\",\n    \"author\": \"龚书铎/刘德麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011025-25ef8d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国现代史\",\n    \"author\": \"徐中约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·中国的历史（全十卷）\",\n    \"author\": \"宫本一夫/平势隆郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国社会的新陈代谢（插图本）\",\n    \"author\": \"陈旭麓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，这是另一半中国史\",\n    \"author\": \"杨建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009540-88c0a5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的中国史（套装共14册）\",\n    \"author\": \"童超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009903-8e6424?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革中国：市场经济的中国之路\",\n    \"author\": \"罗纳德・哈里・科斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009333-847c6a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是红的：看懂中国经济格局的一本书\",\n    \"author\": \"白云先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日落九世纪：大唐帝国的衰亡\",\n    \"author\": \"赵益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：中国八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论中国\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：华夏世界的历史建构\",\n    \"author\": \"刘仲敬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国速度\",\n    \"author\": \"高铁见闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008568-459c27?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野寒山\",\n    \"author\": \"何善蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2052：未来四十年的中国与世界\",\n    \"author\": \"乔根・兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联专家在中国（1948-1960）\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棋王\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007548-c1b611?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一地鸡毛\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007380-c504ff?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轮\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007125-fc1448?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大中国史（全新校订超值珍藏版）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿什么拯救中国经济？\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简中国史\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006189-1d7a39?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的大队\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005955-4e31ac?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：大国的虚与实\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005817-deb0b2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国大历史\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004833-543fef?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国神话大词典\",\n    \"author\": \"袁珂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细说中国历史丛书（全十册）\",\n    \"author\": \"黎东方等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004698-777405?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这个历史挺靠谱（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004674-6ba91b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感驱动\",\n    \"author\": \"维尔・桑切斯・拉米拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866\",\n    \"category\": \"可口可乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的庸常生活\",\n    \"author\": \"张畅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492048-fed780?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"范稳作品集（全8册）\",\n    \"author\": \"范稳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493179-34f72a?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的时代（共3册）\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504177-aa627c?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半泽直树（全四册）\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990412-aa7e8c?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代主义：从波德莱尔到贝克特之后\",\n    \"author\": \"彼得・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上广女子图鉴\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰克·凯鲁亚克作品集（套装共13册）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048672-0f790e?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沧浪之道三部曲\",\n    \"author\": \"宋定国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047505-f0b74b?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺客信条全集（全13册）\",\n    \"author\": \"奥利弗・波登等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036453-8aa8c0?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·克兰西军事系列（套装共9册）\",\n    \"author\": \"汤姆・克兰西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036339-693198?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光禄坊三号\",\n    \"author\": \"陈永和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036207-b2b9c4?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国婉约（套装7本）\",\n    \"author\": \"江晓英/林杉/臧宪柱/李婍/牧来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲兹杰拉德小说精选（套装共4册）\",\n    \"author\": \"弗朗西斯・司各特・菲兹杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033936-250a7b?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感悟文学大师经典100册套装\",\n    \"author\": \"萧枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师精品（套装三十册）\",\n    \"author\": \"鲁迅/徐志摩/朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031935-49b0cf?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱理群作品精编（共8册）\",\n    \"author\": \"钱理群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029190-be6f44?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九个人\",\n    \"author\": \"张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023121-e03fbf?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四十九日祭\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023001-13c4d5?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许子东现代文学课\",\n    \"author\": \"许子东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021855-47d98d?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国都市欲望小说精选集（共6册）\",\n    \"author\": \"李晓东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019995-a87cfe?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何正确吵架\",\n    \"author\": \"朱迪斯・莱特/鲍勃・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866\",\n    \"category\": \"亲密关系\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄联盟：符文之地的故事\",\n    \"author\": \"拳头游戏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501936-2d8551?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化营销\",\n    \"author\": \"胡华成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞生态\",\n    \"author\": \"王萌/路江涌/李晓峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Play Anything\",\n    \"author\": \"Ian Bogost\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025239-8ebaa8?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变世界\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023787-eebab9?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化思维\",\n    \"author\": \"凯文・韦巴赫/丹・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖18：真的，烤箱什么都能做\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866\",\n    \"category\": \"菜谱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粗糙食堂\",\n    \"author\": \"莲小兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866\",\n    \"category\": \"菜谱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼飨宴\",\n    \"author\": \"闻佳/艾格吃饱了\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866\",\n    \"category\": \"菜谱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（校注本）\",\n    \"author\": \"施耐庵/罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866\",\n    \"category\": \"四大名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（校注本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866\",\n    \"category\": \"四大名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（校注本）\",\n    \"author\": \"曹雪芹/高鹗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866\",\n    \"category\": \"四大名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（校注本）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008598-ec27d1?p=8866\",\n    \"category\": \"四大名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈尔滨档案\",\n    \"author\": \"玛拉・穆斯塔芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050781-93c481?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生（果麦经典）\",\n    \"author\": \"鲍里斯・帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050505-1511fe?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Gulag\",\n    \"author\": \"Anne Applebaum\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039219-530b32?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人，岁月，生活\",\n    \"author\": \"爱伦堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031377-705e7b?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高尔基自传三部曲（读客经典）\",\n    \"author\": \"玛克西姆・高尔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028830-4eb235?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵军\",\n    \"author\": \"伊萨克・巴别尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024948-2a7089?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中苏关系史纲（增订版）\",\n    \"author\": \"沈志华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023796-f14eb6?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里的黎明静悄悄……\",\n    \"author\": \"鲍・瓦西里耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格之恋\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021333-798278?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败的帝国：从斯大林到戈尔巴乔夫\",\n    \"author\": \"弗拉季斯拉夫・祖博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的崩溃：苏联解体的台前幕后\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009531-44dd38?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳语者\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009489-577978?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联真相：对101个重要问题的思考（全三册）\",\n    \"author\": \"陆南泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009399-e397a1?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格：一部历史\",\n    \"author\": \"安妮・阿普尔鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008823-3cb3b7?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒转红轮\",\n    \"author\": \"金雁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008238-c702a9?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科雷马故事\",\n    \"author\": \"瓦尔拉姆・沙拉莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联的最后一天\",\n    \"author\": \"康纳・奥克莱利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个大国的崛起与崩溃\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战秘密档案\",\n    \"author\": \"鲍里斯・瓦季莫维奇・索科洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱可夫：斯大林的将军\",\n    \"author\": \"杰弗里・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006219-c6136a?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越非洲两百年\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004452-fd0c14?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向您告知，明天我们一家就要被杀\",\n    \"author\": \"菲利普・古雷维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003192-ccdfef?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美洲奴隶贸易\",\n    \"author\": \"约翰・伦道夫・斯皮尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996619-c30f76?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶稣的童年（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995413-aa1656?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金犀牛\",\n    \"author\": \"富威尔-艾玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅱ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲民间故事\",\n    \"author\": \"保罗・拉丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046212-6c1ced?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"察沃的食人魔\",\n    \"author\": \"J.H.帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦游之地\",\n    \"author\": \"米亚・科托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028986-63cce9?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可不知的非洲史\",\n    \"author\": \"杨益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019659-a63c03?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲常识\",\n    \"author\": \"吕夏乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲三万里\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人10\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492399-b7dec5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人11\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492456-99847e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第三辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497247-46f412?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第二辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495999-c078ba?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第一辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494919-9c0725?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉蕾（第3部：卷13~卷18）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496446-00c897?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉蕾（第2部：卷7~卷12）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497853-e440f6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉蕾（第1部：卷1~卷6）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497349-aa8a4e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悦读日本系列（套装7册）\",\n    \"author\": \"唐辛子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496755-ea5d84?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"B.A.W（1-30话）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497433-119412?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒旦在线（1-30话）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497826-03ef14?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目友人帐（第4部19-21卷）\",\n    \"author\": \"绿川幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497991-2462c0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目友人帐（第2部7-12卷）\",\n    \"author\": \"绿川幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498411-b22e00?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目友人帐（第3部13-18卷）\",\n    \"author\": \"绿川幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499305-0ac318?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目友人帐（第1部1-6卷）\",\n    \"author\": \"绿川幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498786-8715fd?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画必背古诗词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499623-bea742?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抱住棒棒的自己\",\n    \"author\": \"徐慢慢心理话\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只猫的存在主义思考\",\n    \"author\": \"卡尔・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你说的那个朋友是不是你自己\",\n    \"author\": \"山羊卡罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宇宙大爆炸\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画三国演义\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501411-8c4262?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501417-ad432d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画《论语》\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501885-a28305?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高木直子系列（套装共4册）\",\n    \"author\": \"高木直子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503232-de6e88?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画百年党史·开天辟地\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503298-2b5d77?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画病菌、人类与历史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505926-c5bb26?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第4部：卷19~卷23）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507348-35ca31?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第1部：卷1~卷6）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508449-053311?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饭太稀个人绘本画集合辑\",\n    \"author\": \"饭太稀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第2部：卷7~卷12）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508347-d4d29b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100天后会死的鳄鱼君\",\n    \"author\": \"菊池祐纪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510312-e1ca94?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"满是空虚之物\",\n    \"author\": \"阿伏伽德六\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511062-e94297?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇事物所\",\n    \"author\": \"怪奇事物所所长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511239-e8b5e8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼（全2册）\",\n    \"author\": \"伊藤润二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512241-e9779d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海怪兽\",\n    \"author\": \"彭磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511941-7ee0fe?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画讲透孙子兵法（全四册）\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512280-a5e501?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新蜡笔小新合集（套装共8册）\",\n    \"author\": \"臼井仪人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513225-1f3010?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑜老板三分钟京剧小灶（套装2册）\",\n    \"author\": \"瑜音社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513381-1aaee4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的老板不苛责摸鱼的人\",\n    \"author\": \"哎呀我兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513525-565ebf?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"躺着赚钱的漫画基金书\",\n    \"author\": \"三折人生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513702-f21c11?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮笑肉也笑\",\n    \"author\": \"典婆婆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004533-f9dbd4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜泉镇（第二册）\",\n    \"author\": \"仟绘动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004728-5262a3?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画心理学一看就懂\",\n    \"author\": \"王絮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003924-326534?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜泉镇（第一册）\",\n    \"author\": \"仟绘动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003930-496305?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王牌神棍\",\n    \"author\": \"天翼爱动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003471-a613aa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"业余真探\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003261-c38de1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想国的陷落\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003159-138cd0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝望教室\",\n    \"author\": \"泛次元文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002973-ed00e3?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎灵神医\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003651-0fb919?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙族Ⅰ-Ⅲ（套装共32册）\",\n    \"author\": \"江南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003237-72b827?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子恺漫画全集\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002385-67b3da?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院四格漫画系列（套装12册）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002832-48bf80?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱雀厅\",\n    \"author\": \"仟绘动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002280-200fc0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类简史（知识漫画）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001926-2ba1b6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡探\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002118-feedc2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条草鱼\",\n    \"author\": \"哈欠丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002037-f32c42?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出马弟子\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002763-fd9ae8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不灭修罗（共十册）\",\n    \"author\": \"冷面加糖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001317-8fb92a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶犬之牙\",\n    \"author\": \"鱼骨互娱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001476-984182?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格斗赤炎\",\n    \"author\": \"鱼骨互娱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001272-e8978f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲天玄英录\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001362-a5e2f1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英魂之刃\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001335-40c4e0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白门五甲\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001812-f1e868?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白蛇囧传（1-11话）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000390-96c1f6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年纪轻轻，就有猫了\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000237-49e09f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找自我的世界\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000051-9ea345?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子17号：机甲战士（第1卷）\",\n    \"author\": \"阿桂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999898-3d83f2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"济公Q传（套装10册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999868-25095b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼来了（套装第1-2册）\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999427-ce44dc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"济公传奇（套装9册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999598-b81231?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"hi我的名字叫镰\",\n    \"author\": \"天翼爱动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999409-80bef5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要总是谦卑地弯着腰\",\n    \"author\": \"滨濑NORIKO\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998998-32fffa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画经济学一看就懂\",\n    \"author\": \"武敬敏/田萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998920-f86ba8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画生活哲学一看就懂\",\n    \"author\": \"李静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（经济篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有座灵剑山（第1册至第12册）\",\n    \"author\": \"鲜漫动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999364-d58cb9?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有座灵剑山（第13册至第24册）\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998770-9dec22?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第七部：卷37-卷42）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998470-967b6a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史2\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997261-6d28e2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第八部：卷43-卷45）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997591-eabcd8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日用品简史\",\n    \"author\": \"安迪・沃纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997060-cffd2a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史3\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996865-28d03d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏海花漫画套装（全六册）\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997207-658fc2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第五部：卷25-卷30）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997618-932079?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第六部：卷31-卷36）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997519-73ae65?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第三部：卷13-卷18）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997318-46ced3?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第四部：卷19-卷24）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996397-964930?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第一部：卷1-卷6）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第二部：卷7-卷12）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996145-6743c1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史5\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995404-e9c71c?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画预防常见病\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫生（套装第1-6册）\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995233-c2fad6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼灭之刃（第三部：卷16-卷23）\",\n    \"author\": \"吾峠呼世晴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995521-6d41fc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆笑棒槌（套装5册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994765-fa2057?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BEASTARS 动物狂想曲（第2部：卷9~卷15）\",\n    \"author\": \"板垣巴留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994582-4fd0a8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼灭之刃（第一部：卷1-卷7）\",\n    \"author\": \"吾峠呼世晴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995077-467311?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼灭之刃（第二部：卷8-卷15）\",\n    \"author\": \"吾峠呼世晴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995050-1a5413?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BEASTARS 动物狂想曲（第1部：卷1~卷8）\",\n    \"author\": \"板垣巴留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993796-d76c26?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年维新\",\n    \"author\": \"铲史官\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991513-1cd046?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人羡慕的反派角色（套装2册）\",\n    \"author\": \"雨浮凉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991018-d7abcf?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从早“茫”到晚\",\n    \"author\": \"西沃恩・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990868-fddced?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的骰子\",\n    \"author\": \"罗金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你总说没事，但我知道你偷偷哭过很多次\",\n    \"author\": \"一禅小和尚诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守望先锋（第一卷）\",\n    \"author\": \"美国暴雪娱乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X的预言\",\n    \"author\": \"宁城荒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987895-873d28?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画科学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那一年+师傅\",\n    \"author\": \"左手韩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985078-3f51ab?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无名之城\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985117-a407a9?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第13部：卷96~卷98）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985435-f1700a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985012-e16de7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画世界史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第4部22-28卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984898-007385?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第5部：卷33-卷38）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983725-235f1a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第1部1-7卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983902-35ebe0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第2部8-14卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983941-1ab596?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第3部15-21卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983569-96e619?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第2部：卷9-卷16）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983290-57f378?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第3部：卷17-卷24）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983281-556f8a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第4部：卷25-卷32）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983263-15b46b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第11部：卷81~卷88）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054771-56c4aa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异端：进击的哲学现场\",\n    \"author\": \"史蒂文・纳德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第12部：卷89~卷95）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054726-43235d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第1部：卷1-卷8）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054669-60e509?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（金融危机完结篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054291-a6d1dc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第8部：卷57~卷64）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054645-c4772c?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第9部：卷65~卷72）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054474-d26884?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第10部：卷73~卷80）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054366-0dccb2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第5部：卷33~卷40）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054279-6954ac?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第6部：卷41~卷48）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054189-c343d7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第7部：卷49~卷56）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053856-fdbd3f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第1部：卷1~卷8）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053607-cae7ea?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第2部：卷9~卷16）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053487-daf28b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第3部：卷17~卷24）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053508-e33a08?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第4部：卷25~卷32）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053445-22ed13?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装者：巴黎往事\",\n    \"author\": \"蚕蚕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053010-bfbea0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威超级英雄双语故事集（套装共10本）\",\n    \"author\": \"美国漫威公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053103-e6f1dc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递3\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052419-e24215?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一见你就好心情\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递1\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递2\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052521-e6c2e4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅都市生存指南（套装全9册）\",\n    \"author\": \"贾森・黑兹利/乔尔・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画算法\",\n    \"author\": \"魏梦舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说3）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051225-10a03f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说4）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说1）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050733-ce5a62?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说2）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050352-c86d54?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜见女皇陛下（套装10册）\",\n    \"author\": \"ZCloud\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050091-232091?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"才不要让你知道\",\n    \"author\": \"方小孬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049062-ca8818?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三分钟漫画汽车史\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人8\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048456-50027e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人9\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第10部：卷65~卷72）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049263-5b61c1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（外传：宇智波莎罗娜）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048198-844218?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鹤三绝\",\n    \"author\": \"二斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开哲学家的正确方式\",\n    \"author\": \"畠山创\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047841-67f2ce?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第8部：卷49~卷56）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048327-ad09a2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第9部：卷57~卷64）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048300-dcb294?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第5部：卷28~卷34）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047895-7c9166?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第6部：卷35~卷41）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047679-80d7b1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第7部：卷42~卷48）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047649-541ed0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第3部：卷15~卷21）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047475-b30d93?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第4部：卷22~卷27）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047292-9a2d01?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子（果麦经典）\",\n    \"author\": \"埃·奥·卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046836-36864d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第1部：卷1~卷7）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第2部：卷8~卷14）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047043-883e2e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（中国传统节日）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（金融危机篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043179-7c4aeb?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖11：美食漫画万岁\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040122-5a5f09?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗小黑战记1\",\n    \"author\": \"MTJJ\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039825-7c8219?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史4\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038724-389581?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（生活常识篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非平面\",\n    \"author\": \"尼克・索萨尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子4\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画理财课\",\n    \"author\": \"八宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人7\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032982-676f27?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史2\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032661-abddf5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子3\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032709-0558a6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子2\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032409-a7c4f5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也吸收了猫能量\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子全集（作家榜经典文库）\",\n    \"author\": \"埃・奥・卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（36-42卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032202-c68188?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（22-28卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031968-91db23?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（29-35卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031650-4dcd48?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（15-21卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031296-2082ae?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（8-14卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031185-361551?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（1-7卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031014-763232?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果能重来，我想做熊孩\",\n    \"author\": \"左手韩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030297-38302e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人6\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029298-3e03c1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日15：太喜欢漫画了\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025446-21f6d8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人5\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025581-ba94a5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观山海\",\n    \"author\": \"杉泽/梁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024672-aac4e1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回答不了\",\n    \"author\": \"匡扶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂的真实人生\",\n    \"author\": \"安娜・马丁内蒂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024306-ad80e4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人4\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024066-18ec80?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人3\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022377-a26652?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰人的噩梦\",\n    \"author\": \"卡罗利娜・科尔霍宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史3\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021012-b2a5b1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人2\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020184-ca791a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020004-6236a2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019335-523960?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡不着：Tango一日一画\",\n    \"author\": \"Tango\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017952-e205a1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我很好啊，你怎么样\",\n    \"author\": \"莎拉・安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017538-a3c7eb?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非普通人系列（套装共6册）\",\n    \"author\": \"弗雷德里克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015228-fba95a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尾文字鱼\",\n    \"author\": \"伍肆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013374-cb4cf7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Hyperbole and a Half\",\n    \"author\": \"Allie Brosh\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011097-a5f8ed?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你今天真好看\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着本来单纯：丰子恺散文漫画精品集\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画精品集（修订版）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我可以咬一口吗？\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006363-81268e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866\",\n    \"category\": \"蜡烛图\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（原书第3版）\",\n    \"author\": \"格里高里・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866\",\n    \"category\": \"蜡烛图\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Netty实战\",\n    \"author\": \"诺曼・毛瑞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048471-3b0351?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Boot实战\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java程序员修炼之道\",\n    \"author\": \"Benjamin J. Evans/Martijn Verburg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java 8实战\",\n    \"author\": \"Raoul-Gabriel Urma等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021054-fef42d?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring实战（第4版）\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020319-e008d6?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说精选（读客经典）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034014-51fe85?p=8866\",\n    \"category\": \"人情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极求生\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510861-cb888f?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服亚马孙\",\n    \"author\": \"埃德・斯塔福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在西伯利亚森林中\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤身绝壁\",\n    \"author\": \"亚历克斯・汉诺尔德/大卫・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011652-90caa3?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背包十年\",\n    \"author\": \"小鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进入空气稀薄地带\",\n    \"author\": \"乔恩・克拉考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生：面对冰封的海洋\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙\",\n    \"author\": \"赵国栋/易欢欢/徐远重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500148-0863f3?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智转向\",\n    \"author\": \"奥马尔・阿布什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业互联网浪潮\",\n    \"author\": \"张学军/王保平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993973-efa42c?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字货币\",\n    \"author\": \"龙白滔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991573-077591?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优步：算法重新定义工作\",\n    \"author\": \"亚力克斯・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门到门时代\",\n    \"author\": \"Edward Humes\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷简史\",\n    \"author\": \"钱纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽：风口上的独角兽\",\n    \"author\": \"陈歆磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互动\",\n    \"author\": \"詹妮弗・杜尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031617-5f50a6?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞生态\",\n    \"author\": \"王萌/路江涌/李晓峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不会被机器替代的人\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：平台型组织的进化路线图\",\n    \"author\": \"穆胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所有工具都是锤子\",\n    \"author\": \"亚当・萨维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490995-fea1f0?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于火星的一切\",\n    \"author\": \"李德范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾雷德·戴蒙德作品集（套装共4册）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的能源新趋势\",\n    \"author\": \"瓦茨拉夫・斯米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493416-7ae8a8?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李·斯莫林讲量子引力\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493503-da4a48?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们被偷走的注意力\",\n    \"author\": \"斯特凡・范德斯蒂格谢尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体的历史（三卷本）\",\n    \"author\": \"乔治・维加埃罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494961-7ca170?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑书系（套装7册）\",\n    \"author\": \"吉姆・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497502-218ca7?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的脑科学\",\n    \"author\": \"阿马尔・阿尔查拉比等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列：伽利略的手指\",\n    \"author\": \"彼得・阿特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不停歇的时钟\",\n    \"author\": \"杰西卡・里斯金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498153-27f384?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新科学漫游指南（套装共8册）\",\n    \"author\": \"《新科学家》杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498336-abceb1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懒惰脑科学\",\n    \"author\": \"鲍里斯・薛瓦勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混沌：开创一门新科学\",\n    \"author\": \"詹姆斯・格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499593-12a37c?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细胞生命的礼赞\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499728-0ba4d6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在别的星球上\",\n    \"author\": \"吕西安・吕都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499833-e58485?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂芬·霍金中文版著作全集（套装共11册）\",\n    \"author\": \"史蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500730-428f3d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深时之旅\",\n    \"author\": \"罗伯特・麦克法伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变历史的100个实验（套装共2册）\",\n    \"author\": \"亚当・哈特-戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502659-93c7ba?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学物理化学大师经典系列（16册套装）\",\n    \"author\": \"薛定谔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505011-15ac5f?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社百科通识大套装·社会卷（共49本）\",\n    \"author\": \"柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507051-2a2f7d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百科通识文库：西方学科奠基精选大套装（套装共88本）\",\n    \"author\": \"柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508041-895ae1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响历史进程的九大科学家代表作图释书（套装9册）\",\n    \"author\": \"阿尔伯特・爱因斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510252-9e4341?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC夜空探索系列（套装全8册）\",\n    \"author\": \"BBC仰望夜空杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学：无尽的前沿\",\n    \"author\": \"范内瓦・布什/拉什·D·霍尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510807-8d9351?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放空\",\n    \"author\": \"曼诺诗・左莫若迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511116-f9cceb?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的六件事\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性的进化\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512319-d04e8d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超现实\",\n    \"author\": \"杰里米・拜伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513297-854053?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不确定的边缘\",\n    \"author\": \"埃尔文・布鲁克斯・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513399-cd84df?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国科学史（全两册）\",\n    \"author\": \"李申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004308-1ba9f4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理查德·费曼传\",\n    \"author\": \"劳伦斯・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001806-54b61b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学作为天职\",\n    \"author\": \"李猛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001632-142eb7?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性的边界\",\n    \"author\": \"诺桑・亚诺夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001614-cc8dce?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破译人类的明天\",\n    \"author\": \"迈克尔・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西网络科学\",\n    \"author\": \"艾伯特-拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000138-cf99ca?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因之河\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999775-ad8131?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"师从天才\",\n    \"author\": \"罗伯特・卡尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999742-fb19d4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的科学简史\",\n    \"author\": \"肖恩·F·约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999493-9088d8?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别想那只大象\",\n    \"author\": \"乔治・莱考夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999469-0222ec?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给年轻科学家的信\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997759-7b3384?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质是什么\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的价值\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995326-60c097?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式学习\",\n    \"author\": \"周林文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的科普系列（套装共8册）\",\n    \"author\": \"竹内薫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994651-9f7c25?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理的时空\",\n    \"author\": \"尼古拉斯・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界边缘的秘密\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的骰子\",\n    \"author\": \"罗金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然的音符\",\n    \"author\": \"自然科研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱布尼茨、牛顿与发明时间\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口一口“吃掉”你\",\n    \"author\": \"生命时报\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·彭罗斯作品集（套装共4册）\",\n    \"author\": \"罗杰・彭罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988642-62c533?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物发明指南\",\n    \"author\": \"瑞安・诺思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系度假指南\",\n    \"author\": \"奥莉维亚・科斯基/加纳・格鲁赛维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的方式\",\n    \"author\": \"阿尔弗雷德・诺思・怀特海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987088-319fee?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学本来很简单\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画科学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学不简单\",\n    \"author\": \"吴悦辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985834-983ed5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系简史\",\n    \"author\": \"约翰・钱伯斯/杰奎琳・米顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的工程学\",\n    \"author\": \"娜塔莎・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985189-b04eab?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷的开始\",\n    \"author\": \"戴维・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷小\",\n    \"author\": \"阿米尔・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹈鹕丛书（共6册）\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁极简科学史\",\n    \"author\": \"威廉・拜纳姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982441-5807b0?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理学的进化\",\n    \"author\": \"阿尔伯特・爱因斯坦/利奥波德・英费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何系统思考\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮全书\",\n    \"author\": \"比尔・莱瑟巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国科学新闻精选套装\",\n    \"author\": \"《科学新闻》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才时代\",\n    \"author\": \"A.C.格雷林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《自然》百年科学经典（第一卷）\",\n    \"author\": \"赫胥黎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追捕祝融星\",\n    \"author\": \"托马斯・利文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《新科学家》杂志轻科普系列（套装全3册）\",\n    \"author\": \"新科学家杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹性\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与爱因斯坦共进早餐\",\n    \"author\": \"查德・奥泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（果麦经典）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全新万物简史\",\n    \"author\": \"鲍勃・伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《科学美国人》精选系列科学全景套装（共14册）\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大开眼界的科学知识\",\n    \"author\": \"胡桃夹子工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048882-d2f1c4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费恩曼物理学讲义（新千年版）（套装共3册）\",\n    \"author\": \"费恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大漠奇迹\",\n    \"author\": \"王文彪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047955-306ed1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大图景\",\n    \"author\": \"肖恩・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲古兵器图说\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦传（全2册）\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超凡：我们的身心极致及天赋的科学\",\n    \"author\": \"罗恩・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能生存学\",\n    \"author\": \"李・戈德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·弦理论之争系列（新版套装共3册）\",\n    \"author\": \"布莱恩・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·时空奥秘系列（新版套装共5册）\",\n    \"author\": \"史蒂芬・霍金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036891-abb2fb?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共9册）\",\n    \"author\": \"布莱恩・格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列（套装共7册）\",\n    \"author\": \"梅拉妮・米歇尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（六）\",\n    \"author\": \"伽利略等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036366-c0cbfa?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学本来很有趣\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的材料\",\n    \"author\": \"马克・米奥多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·生命系列（套装共5册）\",\n    \"author\": \"伦道夫·M. 尼斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035862-20c392?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现的乐趣\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035826-de103a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（五）\",\n    \"author\": \"惠更斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的科学哲学\",\n    \"author\": \"杰弗里・戈勒姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物起源\",\n    \"author\": \"格雷厄姆・劳顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下游老人\",\n    \"author\": \"藤田孝典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032235-32dde2?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一想到还有95%的问题留给人类，我就放心了\",\n    \"author\": \"豪尔赫・陈/丹尼尔・怀特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简天文学\",\n    \"author\": \"科林・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判心理学\",\n    \"author\": \"康木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029664-32f6cd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媒介批评三部曲（套装共3册）\",\n    \"author\": \"尼尔・波斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029637-888957?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联结：通向未来的文明史\",\n    \"author\": \"詹姆斯・伯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有极限的科学\",\n    \"author\": \"周建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029220-f6becc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火焰中的秘密\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028938-6425da?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的历程（修订第4版）\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞大作战（套装三册）\",\n    \"author\": \"玛特・富尼耶等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028755-fd2efe?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能简史\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028056-700487?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香农传\",\n    \"author\": \"吉米・索尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：如何有效利用注意力做出理性决策\",\n    \"author\": \"川上浩司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027192-709fbf?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本有趣又有料的科学书\",\n    \"author\": \"大象公会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025065-df6894?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘易斯·托马斯作品（共5册）\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024774-f809b9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶杯里的风暴\",\n    \"author\": \"海伦・切尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开一颗心\",\n    \"author\": \"斯蒂芬・韦斯塔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新认识资本主义三部曲\",\n    \"author\": \"娜奥米・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因、大脑和人类潜能\",\n    \"author\": \"肯・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质的秘密\",\n    \"author\": \"埃蒂安・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络心理学\",\n    \"author\": \"玛丽・艾肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024027-d383d4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普鲁斯特是个神经学家\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光电帝国\",\n    \"author\": \"吉尔・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023925-f4200b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何想到又做到\",\n    \"author\": \"肖恩・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做出正确决定\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的技术\",\n    \"author\": \"凯莉・魏纳史密斯/扎克・魏纳史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷脸背后\",\n    \"author\": \"张重生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Brief Answers to the Big Questions\",\n    \"author\": \"Stephen Hawking\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023337-520d53?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼的牧师\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023202-04f6de?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶的科学\",\n    \"author\": \"西蒙・巴伦-科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公平之怒\",\n    \"author\": \"理查德・威尔金森/凯特・皮克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生存本能正在杀死你（修订版）\",\n    \"author\": \"马克・舍恩/克里斯汀・洛贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七堂思维成长课\",\n    \"author\": \"卡罗琳・韦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022566-3c90d6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学的真相\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知三部曲\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人叛乱\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021507-5497dc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来三部曲\",\n    \"author\": \"阿尔文・托夫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021477-8f5f78?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X的奇幻之旅\",\n    \"author\": \"史蒂夫・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学起源课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字乌托邦\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020883-6adb43?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有序：关于心智效率的认知科学\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020190-284690?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学推理：逻辑与科学思维方法\",\n    \"author\": \"周建武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020007-e15c56?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学学习：斯坦福黄金学习法则\",\n    \"author\": \"丹尼尔 L. 施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020025-038e41?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的悖论\",\n    \"author\": \"菲利普・津巴多/约翰・博伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019449-bf5895?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是科学\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017991-026d4b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实验是如何终结的？\",\n    \"author\": \"彼得・伽里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017994-a7216f?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当自我来敲门\",\n    \"author\": \"安东尼奥・达马西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017889-ef3bdf?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的形状：相对论史话\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道金斯科学经典系列（套装共三册）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016665-7167df?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对于历史，科学家有话说\",\n    \"author\": \"熊卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016641-473197?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Life 3.0\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016356-638f33?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Homo Deus\",\n    \"author\": \"Yuval Noah Harari\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016344-af4d82?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接组：造就独一无二的你\",\n    \"author\": \"承现峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费马大定理：一个困惑了世间智者358年的谜\",\n    \"author\": \"西蒙・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014706-602d01?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新自信力\",\n    \"author\": \"戴维・凯利/汤姆・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界顶级思维\",\n    \"author\": \"沧海满月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013860-8e324d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命：进化生物学、遗传学、人类学和环境科学的黎明\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡眠革命\",\n    \"author\": \"尼克・利特尔黑尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湛庐文化医学人文经典书系（套装共5册）\",\n    \"author\": \"阿图・葛文德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012834-c2175e?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会学的想象力\",\n    \"author\": \"赖特・米尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012270-d825c1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅2\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德景观\",\n    \"author\": \"萨姆・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机械宇宙\",\n    \"author\": \"爱德华・多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经度\",\n    \"author\": \"达娃・索贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘的量子生命\",\n    \"author\": \"吉姆・艾尔/约翰乔・麦克法登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙简史：起源与归宿\",\n    \"author\": \"斯蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学史\",\n    \"author\": \"苏珊・怀斯・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007800-428adc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极客物理学：地球上最有趣的问题和最出人意料的答案\",\n    \"author\": \"瑞特・阿莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学管理原理\",\n    \"author\": \"弗雷德里克・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007242-f6d444?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学究竟是什么（第3版）\",\n    \"author\": \"A.F.查尔默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触：全球大型传染病探秘之旅\",\n    \"author\": \"大卫·奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界奇遇记\",\n    \"author\": \"伽莫夫/斯坦纳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会性动物\",\n    \"author\": \"Elliot Aronson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂人类进化史\",\n    \"author\": \"史钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005568-d9ac87?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学那些事儿\",\n    \"author\": \"William Dunham\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人造恐慌\",\n    \"author\": \"袁越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005136-32c837?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探3：古画寻踪\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044214-07f96d?p=8866\",\n    \"category\": \"破案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸案调查科系列（全5册）\",\n    \"author\": \"九滴水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866\",\n    \"category\": \"破案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九色鹿•边疆史系列（全7册）\",\n    \"author\": \"薛小林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866\",\n    \"category\": \"边疆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的边疆：游牧帝国与中国\",\n    \"author\": \"巴菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014373-aa3442?p=8866\",\n    \"category\": \"边疆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"组织革新\",\n    \"author\": \"杨国安/戴维・尤里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866\",\n    \"category\": \"组织\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帮你省时间！替你划重点！教你学管理！\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866\",\n    \"category\": \"组织\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明2：四句话读懂阳明心学\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明3：王阳明家训\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正全集：王阳明全集\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去规模化\",\n    \"author\": \"赫曼特・塔内佳/凯文・梅尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的行为\",\n    \"author\": \"托马斯・科洛波洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人机共生\",\n    \"author\": \"托马斯・达文波特/茱莉娅・柯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三次浪潮\",\n    \"author\": \"阿尔文・托夫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小宣言\",\n    \"author\": \"马格努斯・林奎斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027162-16e6c5?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势戒律\",\n    \"author\": \"柯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026250-f993f8?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟现实：万象的新开端\",\n    \"author\": \"杰伦・拉尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023481-c4b2a4?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富足：改变人类未来的4大力量\",\n    \"author\": \"彼得・戴曼迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015900-a0dfb0?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势红利\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必然\",\n    \"author\": \"凯文・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降魔变\",\n    \"author\": \"马鸣谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041346-cd8c9b?p=8866\",\n    \"category\": \"隋唐史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐人轶事汇编\",\n    \"author\": \"周勋初/严杰/武秀成/姚松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866\",\n    \"category\": \"隋唐史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕的金桃\",\n    \"author\": \"薛爱华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866\",\n    \"category\": \"隋唐史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐开国\",\n    \"author\": \"于赓哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027039-ea116e?p=8866\",\n    \"category\": \"隋唐史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌与钢铁（修订版）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金泽：江南民间祭祀探源\",\n    \"author\": \"李天纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西成功定律\",\n    \"author\": \"拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘型人格障碍\",\n    \"author\": \"兰迪・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（译文经典）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口浪潮\",\n    \"author\": \"保罗・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观从何而来\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才在左，疯子在右\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类不平等的起源和基础（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"色情\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"链接未找到\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的西方（译文经典）\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图绘暹罗\",\n    \"author\": \"通猜・威尼差恭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族、土地与祖先\",\n    \"author\": \"易劳逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德浪女\",\n    \"author\": \"朵思.伊斯頓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃在拂晓\",\n    \"author\": \"克里斯托弗・莱恩/卡西尔达・杰萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸猿三部曲（裸猿+人类动物园+亲密行为）\",\n    \"author\": \"德斯蒙德·莫利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国四百年\",\n    \"author\": \"布・斯里尼瓦桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490923-e9b635?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坠落与重生：911的故事\",\n    \"author\": \"米切尔・祖科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497535-e9ce53?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条前夜的繁荣与疯狂\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美利坚的民族\",\n    \"author\": \"科林・伍达德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499449-5b4652?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辉煌信标：美国灯塔史\",\n    \"author\": \"埃里克・杰・多林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499494-7adcd3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达摩流浪者\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501198-87ebe7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原上的城市\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501537-1986a4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国统治的逻辑\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误解的盐\",\n    \"author\": \"詹姆斯・迪尼科兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国的反智传统\",\n    \"author\": \"理查德・霍夫施塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506823-0cc3c2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹劾\",\n    \"author\": \"戴维・E.凯卫格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自世界的消息\",\n    \"author\": \"波莱特・吉尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510216-bd22d0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凶年\",\n    \"author\": \"大卫・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命雕刻\",\n    \"author\": \"杰夫里・迪弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511026-be629f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的图书馆\",\n    \"author\": \"苏珊・奥尔琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511101-21bf23?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国陷阱\",\n    \"author\": \"诺埃尔・毛雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造差异\",\n    \"author\": \"斯科特・麦克凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512001-af91e6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小镇美国\",\n    \"author\": \"罗伯特・伍斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512082-f8d626?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星河战队\",\n    \"author\": \"罗伯特・海因莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512394-fa353d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们深陷泥潭\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513357-b71e8f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国怎么了\",\n    \"author\": \"安妮・凯斯/安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下沉年代\",\n    \"author\": \"乔治・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513777-106914?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国不平等的起源\",\n    \"author\": \"伊莎贝尔・威尔克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国革命的激进主义\",\n    \"author\": \"戈登·S.伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003327-20516e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深暗\",\n    \"author\": \"赫克托・托巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002850-10fa6c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷泉港（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002343-3176c0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国病\",\n    \"author\": \"伊丽莎白・罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说家与小说\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002274-876831?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下落小猫与基础物理学\",\n    \"author\": \"格雷戈里·J.格布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001302-28b2c5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大洋\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"觉醒\",\n    \"author\": \"凯特・肖邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000351-1aaa04?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好老师，坏老师\",\n    \"author\": \"达娜・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"右派国家（新版）\",\n    \"author\": \"约翰・米克尔思韦特/阿德里安・伍尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性本恶\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998977-2d9306?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论美国的民主（全2册）\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997912-ae03bf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"誓言：白宫与最高法院\",\n    \"author\": \"杰弗里・图宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许倬云说美国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肮脏的三十年代\",\n    \"author\": \"蒂莫西・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国会（牛津通识读本）\",\n    \"author\": \"唐纳德・A.里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国独行\",\n    \"author\": \"马克・斯坦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997540-afe385?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国监狱\",\n    \"author\": \"肖恩・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新美国\",\n    \"author\": \"弗雷德里克・洛根・帕克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盟友\",\n    \"author\": \"琳恩・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国内战史：1861-1865\",\n    \"author\": \"詹姆斯・福特・罗德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996796-130fe4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国第一夫人回忆录\",\n    \"author\": \"塔夫脱总统夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国成长三部曲\",\n    \"author\": \"弗雷德里克・刘易斯・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996151-fcfc33?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国艺术史\",\n    \"author\": \"塞缪尔·G.W.本杰明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995716-d01373?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国真相\",\n    \"author\": \"約瑟夫・斯蒂格利茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记（读客经典文库）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995134-d8eeaf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好女孩\",\n    \"author\": \"布莉・贝内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994696-b834b3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（博集天卷）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会政体\",\n    \"author\": \"伍德罗・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿瑟·戈登·皮姆历险记\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991789-d7e38a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（果麦经典）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991528-1cf2cf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光阴似剪\",\n    \"author\": \"达娜・斯皮奥塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991126-9b7881?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的孤独者\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990946-509c94?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲切的艺术\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之路（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990163-9fe5c2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈扎尔绅士\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990151-0b2e68?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原罪、梦想与霸权\",\n    \"author\": \"维克多・基尔南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一次将是烈火\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光狂想曲\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔桶（短经典）\",\n    \"author\": \"伯纳德・马拉默德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990034-7cb146?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拍卖第四十九批\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989599-5f3577?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如比尔街可以作证\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989149-9bb539?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人与中国人\",\n    \"author\": \"许烺光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水刀子\",\n    \"author\": \"保罗・巴奇加卢皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987310-e009b7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水妖\",\n    \"author\": \"内森・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986659-c94878?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏珊·桑塔格全传\",\n    \"author\": \"卡尔・罗利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986275-a21ab1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚风如诉\",\n    \"author\": \"肯特・哈鲁夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986068-b1f20b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮尔士论符号 （二十世纪西方哲学经典）\",\n    \"author\": \"查尔斯・皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神弃之地\",\n    \"author\": \"唐纳德・雷・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985507-b2ba91?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小报戏梦\",\n    \"author\": \"罗伯特・奥伦・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985342-fd9e50?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人：从殖民到民主的历程\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985291-454b87?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破战者\",\n    \"author\": \"布兰登・桑德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985150-3bb1ea?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无名之城\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985117-a407a9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国海：墨西哥湾的历史\",\n    \"author\": \"杰克·E.戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984943-5a4981?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种死法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984805-e43574?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人幸免\",\n    \"author\": \"奥马尔・阿卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀母的文化\",\n    \"author\": \"孙隆基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983671-269fff?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想我苦哈哈的一生\",\n    \"author\": \"詹姆斯・瑟伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983644-9228c8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕哈萨帕之歌\",\n    \"author\": \"肯特・纳尔本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983140-a2a003?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治动物\",\n    \"author\": \"里克・申克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国女孩\",\n    \"author\": \"王苇柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053208-116309?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术史：1940年至今天\",\n    \"author\": \"乔纳森・费恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物：我和父亲乔布斯\",\n    \"author\": \"丽莎・布伦南・乔布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的底色\",\n    \"author\": \"提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053025-11c135?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国政党与选举（牛津通识读本）\",\n    \"author\": \"桑迪・梅塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人与美国人\",\n    \"author\": \"徐国琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052743-2f01b0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拯救资本主义\",\n    \"author\": \"罗伯特・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052308-144997?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱尔兰人\",\n    \"author\": \"查尔斯・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051825-b70bae?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的亚里士多德\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051708-d0a98b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出身：不平等的选拔与精英的自我复制\",\n    \"author\": \"劳伦·A·里韦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051546-baba5d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式谋杀\",\n    \"author\": \"迈克尔・道格拉斯卡林/罗素・普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低地\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051336-a76694?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国科学新闻精选套装\",\n    \"author\": \"《科学新闻》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞芳心小姐（守望者经典）\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051063-a08447?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简斯维尔\",\n    \"author\": \"艾米・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天将会不一样\",\n    \"author\": \"玛利亚・森普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050877-93c812?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式婚姻\",\n    \"author\": \"塔亚莉・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050862-f21a03?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归商业常识\",\n    \"author\": \"麦克・霍夫林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回不去的旅人\",\n    \"author\": \"杰西・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050415-6b055d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与权力\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐秘战争\",\n    \"author\": \"阿里・拉伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向和平宣战\",\n    \"author\": \"罗南・法罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049848-3b94eb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白领：美国的中产阶级\",\n    \"author\": \"米尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049386-35756b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义的代价\",\n    \"author\": \"劳伦斯・李默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆斯河\",\n    \"author\": \"丹・费金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾娃·拉文德奇异而美丽的忧伤\",\n    \"author\": \"蕾丝莱・沃顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048315-3325ba?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史（套装15册）\",\n    \"author\": \"哈罗德坦珀利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小城畸人\",\n    \"author\": \"舍伍德・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047148-e62f8e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转折时代\",\n    \"author\": \"茱莉亚・瓜尔内里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046326-8b0fec?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣与衰退\",\n    \"author\": \"艾伦・格林斯潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙无敌舰队\",\n    \"author\": \"加勒・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布、大航海时代与地理大发现\",\n    \"author\": \"约翰・S.C.阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸽羽（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045633-3b7458?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马人（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045564-f66b5b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣洁百合（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045435-80896e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运与狂怒\",\n    \"author\": \"劳伦・格罗夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045408-c43a32?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夫妇们（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045300-60f287?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土之界\",\n    \"author\": \"希拉莉・乔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨西哥湾千里徒步行\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子富了\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045186-124685?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子歇了\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045129-8b542b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子，跑吧\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045000-71d22e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子归来\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044880-adae9d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果木桌子及其他简记\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044877-c7b3c9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家安全局\",\n    \"author\": \"克劳德・德莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物的终结\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043734-88cbdf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流吧！我的眼泪\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042693-17f1fb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤比克\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042339-ab4228?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱迪克\",\n    \"author\": \"克丽丝・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041391-026711?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绑架风云\",\n    \"author\": \"大卫・I.科策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙丘六部曲\",\n    \"author\": \"弗兰克・赫伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040926-a4d303?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的流亡者\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲剧遭遇\",\n    \"author\": \"佩吉・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040260-bac7dc?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六舰\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰雪王国：美国军舰珍妮特号的极地远征\",\n    \"author\": \"汉普顿・塞兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040221-ed59c0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃普萧丑闻\",\n    \"author\": \"约翰・契弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039864-fe0768?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"根部之血：美国的一次种族清洗\",\n    \"author\": \"特里克・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩虹尽头\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039390-a9f532?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真名实姓\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039282-aee0e3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺丝在拧紧（译文经典）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039372-a73b97?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何，以及如何谋划一场火灾\",\n    \"author\": \"杰西・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039045-ac9204?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"絕望者之歌\",\n    \"author\": \"杰德・凡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的真谛\",\n    \"author\": \"路易吉・津加莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末世之城（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038598-b6383b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的呼唤\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038523-3217f5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在地图结束的地方（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038514-a54c28?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球飞船\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为奴十二年（译文经典）\",\n    \"author\": \"所罗门・诺瑟普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038358-15a854?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史迪威与美国在中国的经验（1911-1945）\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡瓦利与克雷的神奇冒险\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038055-ad70de?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚政进行曲\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室中的旅行（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037878-b5f9c7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜巴士\",\n    \"author\": \"梅雷迪斯・梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037812-224f59?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一声礼炮\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶之城\",\n    \"author\": \"大卫・贝瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037332-1f1148?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银的故事\",\n    \"author\": \"威廉・L.西尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037239-ead4cb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏油娃娃\",\n    \"author\": \"托妮・莫里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037164-700704?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业头条\",\n    \"author\": \"兰德尔・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Cell\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036906-9fb3a8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Benjamin Franklin\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036897-1a5d9e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嚣张的特权\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球使命\",\n    \"author\": \"亨利・H・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民粹主义大爆炸\",\n    \"author\": \"约翰・朱迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的客人\",\n    \"author\": \"塔娜・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亡者归来\",\n    \"author\": \"詹森・莫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035871-b3b323?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征途美国\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035796-7503bb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼作家\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035496-5bc64f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因何美妙而优雅地运行\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愤怒的葡萄\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035292-fafe32?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被释放的祖克曼\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035274-ec6a81?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格狂欢\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035217-ccde38?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"垂死的肉身\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035178-cb8804?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华氏451\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035076-d9ac4f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退场的鬼魂\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035064-53a301?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九月的十三天\",\n    \"author\": \"劳伦斯・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖课\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035028-a2b7ba?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国大外交（60周年增订版）\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034854-6a0ae2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲望教授\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034836-976ed6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乳房\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈克贝利·费恩历险记（读客经典）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034635-bafac9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束\",\n    \"author\": \"丹尼尔・凯斯/罗杰・泽拉兹尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034419-a7595b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷血\",\n    \"author\": \"杜鲁门・卡波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034077-79c03d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下鲍勃·迪伦与老美国\",\n    \"author\": \"格雷尔・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（企鹅经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033813-b518c2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（名著名译丛书）\",\n    \"author\": \"赫尔曼・梅尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033726-6ae4d3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的路径\",\n    \"author\": \"斯蒂芬・温克尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利维坦号战记（套装共4册）\",\n    \"author\": \"斯科特・维斯特菲尔德/基斯・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜色温柔（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033453-716b81?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心为身役：苏珊·桑塔格日记与笔记（1964-1980）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丽赛的故事\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033405-037d31?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚特兰蒂斯之心\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033399-aedb1b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕梦网\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033348-e0226f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11/22/63\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033240-8ee3ff?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿里\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴政\",\n    \"author\": \"提摩希・史奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033231-d43b3e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间里的痴人\",\n    \"author\": \"珍妮弗・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033180-e2b5a5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总统班底\",\n    \"author\": \"卡尔・伯恩斯坦/鲍勃・伍德沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肖申克的救赎（纪念珍藏版）\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033099-81dc57?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常年代\",\n    \"author\": \"多莉丝・基恩斯・古德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的帝国\",\n    \"author\": \"约翰.S.戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编码宝典（全三册）\",\n    \"author\": \"尼尔・斯蒂芬森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032895-0e9ef5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分手信\",\n    \"author\": \"尼古拉斯・斯帕克思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032835-a16896?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之夏：美国独立的起源\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力：思无所限\",\n    \"author\": \"理查德·J.伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼与福尔摩斯\",\n    \"author\": \"戴维・格兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民蠢萌的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的转型\",\n    \"author\": \"诺姆・马格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（完整精修珍藏译本）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦幻之地\",\n    \"author\": \"库尔特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032250-da0889?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林的雨\",\n    \"author\": \"卡尔・盖瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032241-04972e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少数派报告\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032211-328213?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴别塔之犬\",\n    \"author\": \"卡罗琳・帕克丝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032178-12fb03?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字人文\",\n    \"author\": \"安妮·博迪克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·杰斐逊与海盗\",\n    \"author\": \"布莱恩・吉米德/唐・耶格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾米丽的一朵玫瑰\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032145-b37d53?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愤怒的葡萄（译文名著精选）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032013-d0d355?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煎饼坪（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031713-7bf0a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小红马（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"链接未找到\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮下去了（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031368-763178?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为妮可\",\n    \"author\": \"艾米・埃利斯・纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢学\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031233-027c9c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首届国会\",\n    \"author\": \"弗格斯·M.博德韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房奴\",\n    \"author\": \"戴维・戴恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网与石（套装共2册）\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030513-f4512b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔的正义\",\n    \"author\": \"琳达・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被掩盖的原罪\",\n    \"author\": \"爱德华・巴普蒂斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廉价的代价\",\n    \"author\": \"拉杰・帕特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029697-5b7480?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国陷阱\",\n    \"author\": \"弗雷德里克・皮耶鲁齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桑德堡诗选\",\n    \"author\": \"卡尔・桑德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029511-e8bfc2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的美国\",\n    \"author\": \"珍妮・拉斯卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷忙\",\n    \"author\": \"戴维・希普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纽约三部曲（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029091-7d5ea9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永别了，武器（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029100-d7f57e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国内战回忆录（上下册）\",\n    \"author\": \"U.S.格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029088-94aa48?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞缪尔·亨廷顿经典著作集（套装4册）\",\n    \"author\": \"塞缪尔・亨廷顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029049-0daa60?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我嫁给了一个死人\",\n    \"author\": \"康奈尔・伍尔里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028947-dc320b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平等之路\",\n    \"author\": \"迈克尔·J.克拉曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔霍恩文集（上、下）\",\n    \"author\": \"约翰·C.卡尔霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万国一邦\",\n    \"author\": \"托马斯・本德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028398-a4da09?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过剩之地\",\n    \"author\": \"莫妮卡・普拉萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庶出的标志\",\n    \"author\": \"弗拉基米尔・纳博科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027663-0f6f2f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密西西比\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027534-c6bd4e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搏击俱乐部\",\n    \"author\": \"恰克・帕拉尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027441-67fe4b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种走法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027432-29294c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱（2016版）\",\n    \"author\": \"托妮・莫里森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命绑架\",\n    \"author\": \"T.R.蕾根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027393-6fd896?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惡血\",\n    \"author\": \"約翰・凱瑞魯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027258-867926?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻影书（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026946-7a477b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当图书进入战争\",\n    \"author\": \"莫里・古皮提尔・曼宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪的合众国\",\n    \"author\": \"帕梅拉・哈格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026259-12b415?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃鲷鱼让我打嗝\",\n    \"author\": \"杰西・艾森伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025704-728b29?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁偷走了美国梦\",\n    \"author\": \"赫德里克・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025536-ab13ba?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国增长的起落\",\n    \"author\": \"罗伯特・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025557-5fe21b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国秩序的根基\",\n    \"author\": \"拉塞尔・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Litigators\",\n    \"author\": \"John Grisham\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025254-c952a1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为\",\n    \"author\": \"米歇尔・罗宾逊・奥巴马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025125-c91f09?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯南日记\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒲公英醇夏\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024867-dd3818?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女勇士\",\n    \"author\": \"汤亭亭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024768-569cc0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血色子午线\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024720-04f5eb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家、水手、士兵、间谍\",\n    \"author\": \"尼古拉斯・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞芳心小姐\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024618-6365f1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式幸福\",\n    \"author\": \"亚瑟·C.布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论美国的民主（套装共4册）\",\n    \"author\": \"亚力克西·德·托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024132-df8a85?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱暗流\",\n    \"author\": \"简・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国创世记：埃利斯建国史系列（套装共4册）\",\n    \"author\": \"约瑟夫·J.埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们眼望上苍\",\n    \"author\": \"佐拉・尼尔・赫斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023859-28feb0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启人\",\n    \"author\": \"艾米・亭特拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023616-224cdd?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克里斯汀\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023559-14c275?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔比恩的种子\",\n    \"author\": \"大卫・哈克特・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽然七日\",\n    \"author\": \"劳伦・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023253-db0f49?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级连接者\",\n    \"author\": \"伊桑・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Paris in the Present Tense\",\n    \"author\": \"Mark Helprin\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023049-ffc255?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞跃5000年\",\n    \"author\": \"克里昂・斯考森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都发狂了\",\n    \"author\": \"凯伦・乔伊・富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022860-956833?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥美国史\",\n    \"author\": \"苏珊・玛丽・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022683-97bf54?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野性的呼唤\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022581-919f29?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一念桃花源\",\n    \"author\": \"比尔・波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022563-9a7313?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Selected Stories of Philip K. Dick\",\n    \"author\": \"Dick, Philip K.; Lethem, Jonathan;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022257-b9df83?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国年度畅销悬疑小说精选集\",\n    \"author\": \"詹姆斯・哈金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022215-cfbe40?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的人（译文经典）\",\n    \"author\": \"威廉・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚裔美国的创生\",\n    \"author\": \"李漪莲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Little Fires Everywhere\",\n    \"author\": \"Celeste Ng\",\n    \"link\": \"链接未找到\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国梦\",\n    \"author\": \"斯塔兹・特克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扫地出门：美国城市的贫穷与暴利\",\n    \"author\": \"马修・德斯蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Our Kids\",\n    \"author\": \"Robert D. Putnam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人之妻\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双峰：最终档案\",\n    \"author\": \"马克・弗罗斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021081-3ab4dd?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼辞典\",\n    \"author\": \"安布罗斯・比尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020925-e0b984?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛通识教育红皮书\",\n    \"author\": \"哈佛委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020907-daf2ca?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美风暴\",\n    \"author\": \"迈克尔・莫雷尔/比尔・哈洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020889-6c92fe?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的真相\",\n    \"author\": \"大卫・兰德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020793-75b8cb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喧哗与骚动\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020775-4c22b6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自12个星球的敌人\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020703-2a774b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果酒屋的规则\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020694-be7e51?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密金鱼\",\n    \"author\": \"大卫・米恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020652-6cea44?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"To Kill A Mockingbird\",\n    \"author\": \"哈珀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020610-1f978d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉密尔顿传\",\n    \"author\": \"罗恩・彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020625-ed77e3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储的诞生\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪的总统\",\n    \"author\": \"比尔・克林顿/詹姆斯・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020400-df3adb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"换心\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020223-e95fa1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯恩舰哗变\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020208-a68269?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥吉·马奇历险记（企鹅经典）\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020052-f63c2b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟雾弥漫你的眼\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020016-418bb3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力之路：林登·约翰逊传\",\n    \"author\": \"罗伯特・A.卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁丢了美国\",\n    \"author\": \"安德鲁・杰克逊・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019956-8834da?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小小小小的火\",\n    \"author\": \"伍绮诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019566-1aaf84?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盖普眼中的世界\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条与罗斯福新政\",\n    \"author\": \"埃里克・劳赫威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白噪音\",\n    \"author\": \"唐・德里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019245-efeee7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国建国史系列（套装全3册）\",\n    \"author\": \"约瑟夫・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019095-53ad54?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华盛顿国家艺术馆\",\n    \"author\": \"罗萨娜・乔尔吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姐姐的守护者\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018414-c586fb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二怒汉\",\n    \"author\": \"雷金纳德・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018195-04e94b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗落的南境（套装共3册）\",\n    \"author\": \"杰夫・范德米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017925-e0c5a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星编年史\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017820-1ccbf2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者2：反叛者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017793-8fd6cd?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者3：忠诚者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017790-3ab567?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"识骨女法医\",\n    \"author\": \"肯德拉・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017739-a00298?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寓言\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017493-1b3020?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安德的游戏三部曲\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017406-384a04?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻的心在哭泣\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017271-7feab1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被仰望与被遗忘的\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016455-8ba51c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜漫漫路迢迢\",\n    \"author\": \"尤金・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016038-fb4be7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群鸟飞舞的世界末日\",\n    \"author\": \"查莉・简・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015921-312cfa?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联邦论：美国宪法评述\",\n    \"author\": \"亚历山大・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济奇点\",\n    \"author\": \"史蒂文・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015492-0b15f1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解说疾病的人\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015408-005737?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天过得怎么样\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015108-00eb73?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不适之地\",\n    \"author\": \"裘帕・拉希利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014985-9e6283?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国种族简史\",\n    \"author\": \"托马斯・索威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（译文名著典藏）\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013803-9f3bf0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国定型：美国的1890～1900\",\n    \"author\": \"徐弃郁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013650-529c52?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经漫游者\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013500-119668?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精酿啤酒革命\",\n    \"author\": \"史蒂夫・欣迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳底下的新鲜事\",\n    \"author\": \"约翰・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管家\",\n    \"author\": \"玛丽莲・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012600-1fdf69?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如明天来临\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012417-3590de?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭顶之灾\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012426-b28838?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜子里的陌生人\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012408-160c95?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祸起萧墙\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012396-eaa984?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸面\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012078-b2add2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二十二条军规（纪念版）\",\n    \"author\": \"约瑟夫・海勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011919-31c86e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上的最后一天\",\n    \"author\": \"卡米尔・佩简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011763-477c20?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国的崩溃与美国的诞生\",\n    \"author\": \"尼克・邦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011766-64bb06?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡暗黑故事全集（上册）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011532-a09ea4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠夫十字镇\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011511-06936a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由\",\n    \"author\": \"乔纳森・弗兰岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011283-cb0e40?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独居的一年\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010776-6affa0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你绝对不知道的美国独立秘史\",\n    \"author\": \"何畏岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010698-8fdefe?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯通纳\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010497-2da934?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的技艺：塔奇曼论历史\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚鸟\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009828-d819d2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝与黄金\",\n    \"author\": \"沃尔特・拉塞尔・米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的绵羊\",\n    \"author\": \"威廉・德雷谢维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的图书馆\",\n    \"author\": \"司各特・霍金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009051-91771d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛普森何以逍遥法外？\",\n    \"author\": \"文森特・布廖西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008964-ad44de?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮光之城（豪华珍藏套装）\",\n    \"author\": \"斯蒂芬妮・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008949-e8803d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩论：美国制宪会议记录\",\n    \"author\": \"詹姆斯・麦迪逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国众神（十周年作者修订版）\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008802-e10699?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘉莉妹妹\",\n    \"author\": \"西奥多・德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008712-177f57?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晃来晃去的人\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008463-5b54a8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变美国的时刻\",\n    \"author\": \"刘戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大法官说了算\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合理的怀疑\",\n    \"author\": \"德肖维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下铁道\",\n    \"author\": \"科尔森・怀特黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十层地狱\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008106-e60331?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒的终结\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007860-8793c1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马丁·伊登（译文名著精选）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007722-8c323e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声告白\",\n    \"author\": \"伍绮诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007752-de9648?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光荣与梦想（套装共4册）\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降临\",\n    \"author\": \"特德・姜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007533-b1388b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难一日：海豹六队击毙本・拉登行动亲历\",\n    \"author\": \"马克・欧文/凯文・莫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说故事的人\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007407-3d5566?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CIA美国中央情报局全传\",\n    \"author\": \"亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的分裂：美国独立战争的起源\",\n    \"author\": \"郑非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白宫岁月：基辛格回忆录（套装共4册）\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进步时代\",\n    \"author\": \"张国庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国是个大公司\",\n    \"author\": \"闵纬国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上书店\",\n    \"author\": \"加布瑞埃拉·泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006963-ca71a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海伯利安四部曲（套装共4册）\",\n    \"author\": \"丹·西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006975-c613a8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星崛起\",\n    \"author\": \"皮尔斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006954-0482f0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水手比利·巴德\",\n    \"author\": \"赫尔曼・梅尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006942-b622ce?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国：美国金融霸权的来源和基础\",\n    \"author\": \"迈克尔·赫德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅与摩托车维修艺术\",\n    \"author\": \"罗伯特·M.波西格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫眼看美国\",\n    \"author\": \"聂平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民寂寞的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006432-89cb5c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地海传奇六部曲\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国最高法院通识读本\",\n    \"author\": \"琳达・格林豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲美国史\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005301-9fa40d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"修配工\",\n    \"author\": \"伯纳德・马拉默德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004899-b12544?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简美国史\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国史\",\n    \"author\": \"郑寅达/陈旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国\",\n    \"author\": \"易强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球帝国史\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：帝国三部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009324-3d749b?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从这里读懂第三帝国（套装共8册）\",\n    \"author\": \"齐格蒙・鲍曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的分裂：美国独立战争的起源\",\n    \"author\": \"郑非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个世界帝国及其西征系列（共三册）\",\n    \"author\": \"布赖恩・莱弗里/汤姆・霍兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋与汉道\",\n    \"author\": \"陈苏镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997624-363d35?p=8866\",\n    \"category\": \"秦汉史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦汉帝国\",\n    \"author\": \"西嶋定生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053790-cd6e5d?p=8866\",\n    \"category\": \"秦汉史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制造汉武帝\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030171-cabd6a?p=8866\",\n    \"category\": \"秦汉史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦三部曲\",\n    \"author\": \"吕世浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008274-748b98?p=8866\",\n    \"category\": \"秦汉史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷兰海洋帝国史\",\n    \"author\": \"顾卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866\",\n    \"category\": \"海洋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从航海图到世界史\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866\",\n    \"category\": \"海洋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的海（全2册）\",\n    \"author\": \"大卫・阿布拉菲亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866\",\n    \"category\": \"海洋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季风帝国\",\n    \"author\": \"理查德・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866\",\n    \"category\": \"海洋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日46：东京就是日本！\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047952-aa1e1c?p=8866\",\n    \"category\": \"知日\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日52：BGM之魂\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047412-210b95?p=8866\",\n    \"category\": \"知日\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日40：步履不停，是枝裕和\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031917-82a810?p=8866\",\n    \"category\": \"知日\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一名脱口秀老手\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866\",\n    \"category\": \"段子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的聪明人太多了，我必须为笨蛋争口气！\",\n    \"author\": \"书单狗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866\",\n    \"category\": \"段子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸检报告\",\n    \"author\": \"卡拉・瓦伦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987277-fccf1c?p=8866\",\n    \"category\": \"死亡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好告别\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866\",\n    \"category\": \"死亡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"To Be a Machine\",\n    \"author\": \"Mark O'Connell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027078-09d6c7?p=8866\",\n    \"category\": \"死亡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当呼吸化为空气\",\n    \"author\": \"保罗・卡拉尼什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866\",\n    \"category\": \"死亡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意观察\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866\",\n    \"category\": \"观察\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞察：精确观察和有效沟通的艺术\",\n    \"author\": \"艾米・赫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866\",\n    \"category\": \"观察\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少女，请回答\",\n    \"author\": \"张晓晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866\",\n    \"category\": \"女生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我很好啊，你怎么样\",\n    \"author\": \"莎拉・安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017538-a3c7eb?p=8866\",\n    \"category\": \"女生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和国科学拓荒者传记（套装共9册）\",\n    \"author\": \"许鹿希等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020856-bcb915?p=8866\",\n    \"category\": \"科学家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方心理学大师经典译丛（套装共11册）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497529-0e8c3b?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的脑科学\",\n    \"author\": \"阿马尔・阿尔查拉比等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克尔凯郭尔文集10册大全集\",\n    \"author\": \"索伦・克尔凯郭尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502005-543a3e?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"警惕你身边的隐形攻击者\",\n    \"author\": \"斯科特・韦茨勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511743-14d32a?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际漫游\",\n    \"author\": \"安东尼诺・费罗/卢卡・尼科里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512055-d87567?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了解人类行为的50个心理学实验\",\n    \"author\": \"迈克尔・布里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512133-fafea6?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追寻记忆的痕迹\",\n    \"author\": \"埃里克・坎德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513372-90244d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学和炼金术\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997351-cfc659?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学树\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996457-a27c1e?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"移情心理学\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995587-b19864?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炼金术之梦\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学：我们内心的小怪兽\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982495-f2c164?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与情商\",\n    \"author\": \"张小宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍心理战\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051054-2aab9d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发展心理学套装（第10版）\",\n    \"author\": \"戴安娜・帕帕拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050526-22b5f0?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉心理学\",\n    \"author\": \"博・洛托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046674-506c48?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挫折复原力\",\n    \"author\": \"丹尼斯・穆蓝纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简捷启发式：有限理性让我们更聪明\",\n    \"author\": \"格尔德・吉仁泽等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意观察\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极计算\",\n    \"author\": \"拉斐尔·A.卡里罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助推（实践版）\",\n    \"author\": \"戴维・哈尔彭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043941-cd894d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你也是蘑菇吗\",\n    \"author\": \"安定医院郝医生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043701-0683a6?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜意识与决策\",\n    \"author\": \"克里斯・佩利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043596-28e35d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我与本我（译文经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱、罪疚与修复\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037749-b31208?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童精神分析\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037638-0eb9b3?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弥散的心智\",\n    \"author\": \"里卡多・曼佐蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣母病\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036471-8907eb?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Everything Is F*cked\",\n    \"author\": \"Mark Manson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控谈话\",\n    \"author\": \"克里斯・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不分心\",\n    \"author\": \"亚历克斯・索勇－金・庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033558-d65235?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才在左，疯子在右\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超强掌控\",\n    \"author\": \"乔・纳瓦罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033123-432c00?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在群中\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033090-248e22?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放你的大脑\",\n    \"author\": \"伊德里斯・阿贝尔坎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消极情绪的力量\",\n    \"author\": \"托德・卡什丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象思维\",\n    \"author\": \"帕甘・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖：一项心理史学研究\",\n    \"author\": \"查尔斯・B．斯特罗齐尔/丹尼尔・奥弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜脑：在睡眠中自动学习的秘密\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见成长的自己\",\n    \"author\": \"卡罗尔・徳韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014046-66564e?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉花糖实验\",\n    \"author\": \"沃尔特・米歇尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009000-8191ee?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"P.E.T.父母效能训练\",\n    \"author\": \"托马斯・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通的艺术\",\n    \"author\": \"罗纳德・阿德勒/拉塞尔・普罗克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力四射：如何打动、亲近和影响他人\",\n    \"author\": \"帕特里克・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稀缺：我们是如何陷入贫穷与忙碌的\",\n    \"author\": \"塞德希尔・穆来纳森 / 埃尔德・沙菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆谱：身份的潜规则\",\n    \"author\": \"余不讳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考，快与慢\",\n    \"author\": \"丹尼尔・卡尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都聊得来\",\n    \"author\": \"迈克・贝克特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼看懂小孩子\",\n    \"author\": \"王勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厚黑学大全集\",\n    \"author\": \"李宗吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005253-80c12a?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年（全新增订版）\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866\",\n    \"category\": \"耶路撒冷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷告白\",\n    \"author\": \"利皮卡・佩拉汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866\",\n    \"category\": \"耶路撒冷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清史九讲\",\n    \"author\": \"内藤湖南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995440-976d6f?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：康有为与章太炎（全二册）\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的铁骑\",\n    \"author\": \"刘澍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051048-0840f0?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马背上的朝廷\",\n    \"author\": \"张勉治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048699-77f374?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代丝绸之路的绝唱\",\n    \"author\": \"罗三洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045555-39eb63?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朕知道了\",\n    \"author\": \"傅淞岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇权不下县？\",\n    \"author\": \"胡恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041118-0a5ee2?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清中国的光与影\",\n    \"author\": \"杜德维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035868-bc3e37?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正帝：中国的独裁君主\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之痒\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国\",\n    \"author\": \"乔治·N.赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033150-8be846?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"垂帘听政\",\n    \"author\": \"向斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030708-e6f8d1?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宁波帮\",\n    \"author\": \"王千马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029250-02851b?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年羹尧之死\",\n    \"author\": \"郑小悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027813-3994d1?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凛冬\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆皇帝的荷包\",\n    \"author\": \"赖惠敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023247-014af6?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清朝开国史（上下卷）\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008889-dcadfa?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的中华帝国：大清\",\n    \"author\": \"罗威廉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008694-c9f404?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洪业：清朝开国史\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008280-fe79e7?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戊戌变法史\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇故事集\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493806-5ad7eb?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤汤奇幻童年故事本（套装6册）\",\n    \"author\": \"汤汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜利特医生的历险故事（套装共12册）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498603-bd23d3?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物小说大王沈石溪·品藏书系（升级版）（套装36册）\",\n    \"author\": \"沈石溪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499866-7f7659?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的天工开物·绘本版（全三册）\",\n    \"author\": \"一页书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周锐幽默三国、西游记、水浒传、红楼梦系列套装4本\",\n    \"author\": \"周锐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985975-9f41e8?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗物质三部曲\",\n    \"author\": \"菲利普・普尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅格时空大冒险（套装全5册）\",\n    \"author\": \"马德琳・英格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童教育心理学\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不同的音调\",\n    \"author\": \"约翰・唐文/凯伦・祖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21招，让孩子独立\",\n    \"author\": \"叶壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040317-3e999a?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱、罪疚与修复\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037749-b31208?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童精神分析\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037638-0eb9b3?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童分析的故事\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫怪兽（套装共3册）\",\n    \"author\": \"常怡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037149-71d4a1?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫉羡与感恩\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾拉·格雷的歌\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟随周恩来过草地\",\n    \"author\": \"张文宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032232-26530e?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造梦师（套装共4册）\",\n    \"author\": \"陈佳同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032256-0c0e76?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪医杜立德（果麦经典）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"365夜故事：春夏秋冬（套装共4册）\",\n    \"author\": \"叶圣陶/赵冰波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027690-6c12c9?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿堂风\",\n    \"author\": \"曹文轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024801-ced57d?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞女孩\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿野仙踪\",\n    \"author\": \"莱曼・弗兰克・鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023013-03a6a2?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥吉和我\",\n    \"author\": \"帕拉西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020976-b53ede?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也有过小时候\",\n    \"author\": \"任溶溶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020673-497c78?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝境狼王（全6册）\",\n    \"author\": \"凯瑟琳・拉丝基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017742-595b13?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯吉斯野外生存系列（套装四册）\",\n    \"author\": \"桑顿・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有条喷火龙（第一辑）\",\n    \"author\": \"凯特・麦克马伦/比尔・巴索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏洛书屋电子书大套装（套装共27本）\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015618-ef6dd5?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏力\",\n    \"author\": \"劳伦斯・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014142-23eb93?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林汉达中国故事经典套装（图文版）\",\n    \"author\": \"林汉达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010947-e40f70?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子共和国（果麦经典）\",\n    \"author\": \"理查德・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008853-deb5e3?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好心眼儿巨人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生少年生存小说系列（全6册）\",\n    \"author\": \"贝尔·格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完整的成长：儿童生命的自我创造\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁拿走了孩子的幸福\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九宫格写作法\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡片笔记写作法\",\n    \"author\": \"申克・阿伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效论证\",\n    \"author\": \"大卫・莫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顿悟的时刻\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002361-5fc211?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效写作的秘密\",\n    \"author\": \"杰拉尔德・格拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001641-466852?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构化写作\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案写作指南\",\n    \"author\": \"李洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款写作\",\n    \"author\": \"陈阿咪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000342-ae106c?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何写出一篇好文章\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995383-8fa7c9?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效写作\",\n    \"author\": \"芝本秀德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995110-b7a712?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案的基本修养\",\n    \"author\": \"东东枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案会说话\",\n    \"author\": \"梅田悟司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能学会的刷屏文案写作技巧\",\n    \"author\": \"吕白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案基本功\",\n    \"author\": \"苏芯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学课\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986485-1c1bd5?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作力\",\n    \"author\": \"高语罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作的诞生\",\n    \"author\": \"多萝西娅・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983179-258589?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简写作\",\n    \"author\": \"罗伊・彼得・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054480-b67e25?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样写故事\",\n    \"author\": \"莉萨・克龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午5：有人送我西兰花\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052992-b766ed?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写出娱乐的力量\",\n    \"author\": \"貴志祐介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052950-ffb7f3?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午6：旧山河，新故事\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力思维\",\n    \"author\": \"安东尼・塔斯加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非虚构写作指南\",\n    \"author\": \"李梓新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046785-ed2ee0?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快书写，慢思考\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045027-424d69?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唤醒创作力\",\n    \"author\": \"朱莉娅・卡梅伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说的八百万种写法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039474-4b3e24?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会写作\",\n    \"author\": \"粥左罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极速写作\",\n    \"author\": \"剑飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书就是一个喷嚏\",\n    \"author\": \"杰克・格罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033873-d0d32c?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写小说最重要的十件事\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033486-6785a3?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作提高一点点\",\n    \"author\": \"玛丽-凯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033330-7c6a2b?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短篇小说写作指南\",\n    \"author\": \"美国《作家文摘》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作课\",\n    \"author\": \"叶开\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030036-d3ec1e?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家的灵感宝库\",\n    \"author\": \"弗雷德・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030024-32c3ab?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛非虚构写作课：怎样讲好一个故事\",\n    \"author\": \"马克・克雷默/温迪・考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027537-a21903?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"童书写作指南\",\n    \"author\": \"玛丽・科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026970-0605e8?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作全技术\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025719-d465f4?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体文案创作与传播\",\n    \"author\": \"秋叶/叶小鱼/勾俊伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语写作手册：风格的要素\",\n    \"author\": \"威廉・斯特伦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作是最好的自我投资\",\n    \"author\": \"Spenser\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023547-075742?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作这门手艺\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023196-9d8958?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完全写作指南\",\n    \"author\": \"劳拉・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自媒体写作\",\n    \"author\": \"余老诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023055-a42878?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说的骨架\",\n    \"author\": \"凯蒂・维兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022875-616a5b?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Sense of Style\",\n    \"author\": \"Steven Pinker\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021594-60f68e?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风格感觉：21世纪写作指南\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020082-efde84?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案创作完全手册\",\n    \"author\": \"罗伯特・布莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意写作书系·走进大师（套装18册全）\",\n    \"author\": \"杰里・克利弗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017733-0f8010?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七十二堂写作课\",\n    \"author\": \"夏丏尊/叶圣陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017064-cd4bac?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说课（大家读大家）\",\n    \"author\": \"毕飞宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016464-4c0336?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不畅销小说写作指南\",\n    \"author\": \"大头马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015129-764c03?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的红色写作书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012708-71ba79?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情节与人物\",\n    \"author\": \"杰夫・格尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011055-c9592f?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样写出好故事\",\n    \"author\": \"詹姆斯・斯科特・贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011034-28e8b6?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典人物原型45种\",\n    \"author\": \"维多利亚・林恩・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师们的写作课：好文笔是读出来的\",\n    \"author\": \"舒明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008586-9602d1?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作，打造个人IP，成就企业品牌\",\n    \"author\": \"陈志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌物志\",\n    \"author\": \"斑斑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一读就上瘾的中国史\",\n    \"author\": \"温伯陵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001608-8e9514?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物发明指南\",\n    \"author\": \"瑞安・诺思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖24：啊！又想吃零食了\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原来你是这样的古人\",\n    \"author\": \"郁馥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037347-cb95ad?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所有工具都是锤子\",\n    \"author\": \"亚当・萨维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490995-fea1f0?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙时代：颠覆未来的技术变革与商业图景\",\n    \"author\": \"金相允\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491193-14b1ac?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工不智能\",\n    \"author\": \"梅瑞狄斯・布鲁萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491643-5332a8?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术陷阱\",\n    \"author\": \"卡尔・贝内迪克特・弗雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙通证\",\n    \"author\": \"邢杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499134-ab1e5c?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无隐私时代\",\n    \"author\": \"阿奇科・布希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508872-0496be?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密Instagram\",\n    \"author\": \"莎拉・弗莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工具，还是武器？\",\n    \"author\": \"布拉德・史密斯/卡罗尔・安・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史：打开人类进步的黑匣子\",\n    \"author\": \"赵炎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991702-bc1ee7?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人驾驶\",\n    \"author\": \"胡迪・利普森/梅尔芭・库曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983344-4b5bf8?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的行为\",\n    \"author\": \"托马斯・科洛波洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"治愈未来\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代，你的工作还好吗？\",\n    \"author\": \"渠成/陈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷简史\",\n    \"author\": \"钱纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：经济增长新引擎\",\n    \"author\": \"孙松林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：生活方式和商业模式的大变革\",\n    \"author\": \"龟井卓也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“芯”想事成\",\n    \"author\": \"陈芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技失控\",\n    \"author\": \"温德尔・瓦拉赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中美科技巨头\",\n    \"author\": \"田中道昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044898-522abf?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极计算\",\n    \"author\": \"拉斐尔·A.卡里罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑动解锁\",\n    \"author\": \"尼尔・梅塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来版图\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极限创新\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奔腾年代：互联网与中国：1995-2018\",\n    \"author\": \"郭万盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040287-28d2ae?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅3\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷帝国\",\n    \"author\": \"露西・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的材料\",\n    \"author\": \"马克・米奥多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"18个未来进行时\",\n    \"author\": \"吉姆・阿尔- 哈里里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代\",\n    \"author\": \"项立刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器人共舞\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主食芯片\",\n    \"author\": \"鸿涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032313-6abb7f?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说出来你可能不信\",\n    \"author\": \"SME\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032043-e62957?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球科技通史\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031734-3f4ae5?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交媒体简史\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传\",\n    \"author\": \"哈米什・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏血：一个硅谷巨头的秘密与谎言\",\n    \"author\": \"约翰・卡雷鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子世界的发现之旅\",\n    \"author\": \"迈克尔・S. 沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老科技的全球史\",\n    \"author\": \"大卫・艾杰顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027402-7317b9?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码朋克\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维如何与互联网共同进化\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容算法\",\n    \"author\": \"闫泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器70年\",\n    \"author\": \"徐曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷百年史\",\n    \"author\": \"阿伦・拉奥/皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塑造世界经济的50项伟大发明\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技前哨\",\n    \"author\": \"王煜全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020316-b05dfb?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代的教育革命\",\n    \"author\": \"王作冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019908-719008?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控未来系列（套装共6册）\",\n    \"author\": \"伊藤穰一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018420-d99af9?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新：重新发现商业与未来\",\n    \"author\": \"萨提亚・纳德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017295-014e5b?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技的狂欢\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016656-d1cdf6?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能浪潮\",\n    \"author\": \"布雷特・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015984-23b495?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极复制\",\n    \"author\": \"李智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代的互联网\",\n    \"author\": \"汤姆・斯坦迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻璃笼子\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类2.0：在硅谷探索科技未来\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Elon Musk\",\n    \"author\": \"Ashlee Vance\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代\",\n    \"author\": \"杰瑞・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009093-321621?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新一轮产业革命\",\n    \"author\": \"亚力克・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷钢铁侠\",\n    \"author\": \"阿什利・万斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人四千年（全两册）\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人三千年简史\",\n    \"author\": \"雷蒙德・P.谢德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列总理私人史\",\n    \"author\": \"耶胡达・阿夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512085-4d09ea?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独霸中东\",\n    \"author\": \"雅科夫・卡茨/阿米尔・鲍博特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绑架风云\",\n    \"author\": \"大卫・I.科策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶意之山\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033504-13c2d3?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列：一个民族的重生\",\n    \"author\": \"丹尼尔・戈迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030108-c2ca36?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与黑暗的故事\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023226-44689c?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡村生活图景\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023187-1ce16f?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一样的海\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023175-088266?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个故事，就这样啦\",\n    \"author\": \"埃特加・凯雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020973-3979ae?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为你，耶路撒冷\",\n    \"author\": \"拉莱・科林斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017211-3712a8?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列：一个国家的诞生（1-3 合辑）\",\n    \"author\": \"十一点半\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015771-29d4ce?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的应许之地\",\n    \"author\": \"阿里・沙维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴行动\",\n    \"author\": \"乔治・乔纳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005826-867b8f?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响商业的50本书\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的怪圈\",\n    \"author\": \"贾森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信托的逻辑\",\n    \"author\": \"道远/周萍/翁两民/贺洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049104-f15eba?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业冒险\",\n    \"author\": \"约翰・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压力测试\",\n    \"author\": \"蒂莫西・盖特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济增长的迷雾\",\n    \"author\": \"威廉・伊斯特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一大亨（套装共2册）\",\n    \"author\": \"斯泰尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014319-72a8ef?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（果麦经典）\",\n    \"author\": \"尼科洛・马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六韬（全本全注全译）\",\n    \"author\": \"陈曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力48法则\",\n    \"author\": \"罗伯特・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝皇书（共5册）\",\n    \"author\": \"星零\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045624-5670f9?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五大传奇权谋人物传记（套装共5册）\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑之门\",\n    \"author\": \"理查德・阿尔德里奇/罗里・科马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866\",\n    \"category\": \"情报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国情报界\",\n    \"author\": \"杰弗瑞・理查尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866\",\n    \"category\": \"情报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美风暴\",\n    \"author\": \"迈克尔・莫雷尔/比尔・哈洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020889-6c92fe?p=8866\",\n    \"category\": \"情报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（企鹅经典）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033369-82ddd0?p=8866\",\n    \"category\": \"狄更斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿（经典译林）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005643-ae482c?p=8866\",\n    \"category\": \"狄更斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李·斯莫林讲量子引力\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493503-da4a48?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子空间\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·量子探秘系列（新版套装共5册）\",\n    \"author\": \"布鲁斯・罗森布鲁姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037227-c08bef?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无中生有的世界\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邀你共进量子早餐\",\n    \"author\": \"索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子世界的发现之旅\",\n    \"author\": \"迈克尔・S. 沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲量子力学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实不似你所见\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘的量子生命\",\n    \"author\": \"吉姆・艾尔/约翰乔・麦克法登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说精选（读客经典）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034014-51fe85?p=8866\",\n    \"category\": \"欧亨利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西周的灭亡（增订本）\",\n    \"author\": \"李峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866\",\n    \"category\": \"先秦史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燕国八百年\",\n    \"author\": \"彭华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029868-03d746?p=8866\",\n    \"category\": \"先秦史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承袭的权力\",\n    \"author\": \"乔瓦尼・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996505-07420a?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字起源\",\n    \"author\": \"凯莱布・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的旅程\",\n    \"author\": \"斯宾塞・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌与钢铁（修订版）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败：人性与文化\",\n    \"author\": \"克里斯・肖尔/迪特尔・哈勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类成功统治地球的秘密\",\n    \"author\": \"约瑟夫・亨里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金泽：江南民间祭祀探源\",\n    \"author\": \"李天纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的起源\",\n    \"author\": \"理查德・利基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048492-6ce106?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史（修订珍藏版）\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041145-b13043?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类起源的故事\",\n    \"author\": \"大卫・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的肚脐\",\n    \"author\": \"迈克尔・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从祖先到算法\",\n    \"author\": \"亚历克斯・本特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的亲密关系\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观从何而来\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲与没有历史的人\",\n    \"author\": \"埃里克·R.沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯化\",\n    \"author\": \"艾丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸猿三部曲（裸猿+人类动物园+亲密行为）\",\n    \"author\": \"德斯蒙德·莫利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尺素风雅：近世文人书札\",\n    \"author\": \"管继平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997939-7912c7?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷2）\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990103-846409?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷1）\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈保尔家书\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱你就像爱生命\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国家书\",\n    \"author\": \"本杰明・富兰克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"见字如面\",\n    \"author\": \"关正文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013293-3fec78?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉多纳自传\",\n    \"author\": \"迭戈・阿曼多・马拉多纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999238-9530a8?p=8866\",\n    \"category\": \"足球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆里尼奥传：葡萄牙制造（修订版）\",\n    \"author\": \"路易斯・洛伦索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866\",\n    \"category\": \"足球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜迪奥拉：胜利的另一种道路\",\n    \"author\": \"吉列姆・巴拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866\",\n    \"category\": \"足球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚历克斯·弗格森：我的自传\",\n    \"author\": \"亚历克斯・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029226-e94552?p=8866\",\n    \"category\": \"足球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋全传（作家榜经典文库）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866\",\n    \"category\": \"朱元璋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋大传\",\n    \"author\": \"陈梧桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866\",\n    \"category\": \"朱元璋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：一本故事丰富的决策行为指南\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波斯公主选驸马\",\n    \"author\": \"帕维尔・莫托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做出明智判断的10个方法\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会决断（原书第2版）\",\n    \"author\": \"苏・哈德菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诚实的信号\",\n    \"author\": \"阿莱克斯・彭特兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的策略\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险认知\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简捷启发式：有限理性让我们更聪明\",\n    \"author\": \"格尔德・吉仁泽等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌：信息不足时如何做出高明决策\",\n    \"author\": \"安妮・杜克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜意识与决策\",\n    \"author\": \"克里斯・佩利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043596-28e35d?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰度决策\",\n    \"author\": \"小约瑟夫・巴达拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲从与叛逆\",\n    \"author\": \"米歇尔・巴德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉：我们为什么无从推理，却能决策\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决断力\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与判断\",\n    \"author\": \"斯科特・普劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢决策：如何在极速时代掌握慢思考的力量\",\n    \"author\": \"弗兰克・帕特诺伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008970-5275d1?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考，快与慢\",\n    \"author\": \"丹尼尔・卡尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险与好的决策\",\n    \"author\": \"格尔德·吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩论：美国制宪会议记录\",\n    \"author\": \"詹姆斯・麦迪逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866\",\n    \"category\": \"宪政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术史十议\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866\",\n    \"category\": \"美术史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝物语（套装全四册）\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866\",\n    \"category\": \"美术史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开市大吉（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶馆（作家榜经典文库）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍长篇小说作品全集（套装十七册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031458-4659d9?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选剧本集（套装21册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031395-dbf371?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选中短篇小说集（套装六册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031305-740b89?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选杂文集（套装八册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍代表作作品集（套装九册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（完整版）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶人传\",\n    \"author\": \"约翰・班扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866\",\n    \"category\": \"信仰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟爱华传：洋医生的中国心\",\n    \"author\": \"约翰・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866\",\n    \"category\": \"信仰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈底斯遗书\",\n    \"author\": \"陈庆港\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011769-d9d5d5?p=8866\",\n    \"category\": \"信仰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都是数据分析师\",\n    \"author\": \"刘红阁/王淑娟/温融冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866\",\n    \"category\": \"tableau\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性文化简史\",\n    \"author\": \"李书崇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032655-45f763?p=8866\",\n    \"category\": \"性学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"色情\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"链接未找到\",\n    \"category\": \"性学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在现场\",\n    \"author\": \"黄盈盈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030039-700572?p=8866\",\n    \"category\": \"性学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃在拂晓\",\n    \"author\": \"克里斯托弗・莱恩/卡西尔达・杰萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866\",\n    \"category\": \"性学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪传\",\n    \"author\": \"赫伯特・R.洛特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866\",\n    \"category\": \"加缪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（果麦经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034425-ba996e?p=8866\",\n    \"category\": \"加缪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖18：真的，烤箱什么都能做\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866\",\n    \"category\": \"烤箱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像读悬疑小说一样读懂会计学\",\n    \"author\": \"田中靖浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002445-d51d8d?p=8866\",\n    \"category\": \"财会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日07：明治维新\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025476-ff6a83?p=8866\",\n    \"category\": \"明治维新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本维新史\",\n    \"author\": \"赫伯特・诺曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024477-aaca5d?p=8866\",\n    \"category\": \"明治维新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"PHP和MySQL Web开发（原书第4版）\",\n    \"author\": \"Luke Welling\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866\",\n    \"category\": \"PHP\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西域余闻\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866\",\n    \"category\": \"西域\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕\",\n    \"author\": \"阿敏・马卢夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866\",\n    \"category\": \"西域\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那猫那人那城\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498936-fe5a9d?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命在于静止\",\n    \"author\": \"篠原薰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499569-193758?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级生物探寻指南\",\n    \"author\": \"马修 · D. 拉普兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499677-11db81?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无脊椎动物百科\",\n    \"author\": \"拉尔夫・布克斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500724-3e2969?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个世界，一个星球\",\n    \"author\": \"强尼・基林/斯科特・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509295-af62d4?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖动植物图鉴\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物王朝\",\n    \"author\": \"冉浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512175-7e0849?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物眼中的人类\",\n    \"author\": \"赵序茅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513462-89d08b?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物不简单（套装共5册）\",\n    \"author\": \"德斯蒙德・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513651-236db3?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的“屁”事儿\",\n    \"author\": \"尼克・卡鲁索等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050424-0a1c39?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万智有灵\",\n    \"author\": \"弗朗斯・德瓦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049908-4023d0?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物奇葩说\",\n    \"author\": \"尼克・卡鲁索等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048585-97d7e9?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物思维\",\n    \"author\": \"查尔斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白牙（果麦经典）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045189-be69e1?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的秘密\",\n    \"author\": \"约翰・布拉德肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们迷人的鸟：猫头鹰\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪海洋简史\",\n    \"author\": \"菲利帕・桑德尔/艾德・朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038478-6fe43e?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞行战犬\",\n    \"author\": \"达米恩・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031125-c70223?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上动物园\",\n    \"author\": \"夏洛特・斯莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026883-d8edc7?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡征服世界\",\n    \"author\": \"安德鲁・劳勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫武士首部曲（套装共6册）\",\n    \"author\": \"艾琳・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021747-2318d1?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的精神生活\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在轮回中找你\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007332-ae6730?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法中的同意制度\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003372-a8ac3b?p=8866\",\n    \"category\": \"刑法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法罗盘\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866\",\n    \"category\": \"刑法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法学讲义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866\",\n    \"category\": \"刑法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法格言的展开（第三版）\",\n    \"author\": \"张明楷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866\",\n    \"category\": \"刑法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命时期的爱情\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035277-f2f141?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燕南园往事\",\n    \"author\": \"汤一介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025530-09fd76?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可逃\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市民底层笔记\",\n    \"author\": \"张礼士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020877-80c338?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青口述史\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009201-91fa5a?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的一代：中国的上山下乡运动1968-1980\",\n    \"author\": \"潘鸣啸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨的记忆\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆（图文版）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"求索中国：文革前十年史\",\n    \"author\": \"萧东连/朱地等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008892-fc9b80?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一百个人的十年\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唉，我的沧桑50年（1959至今）\",\n    \"author\": \"八爪夜叉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个红卫兵的自白\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006858-8e4d5d?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·初澜（1953～1968）\",\n    \"author\": \"定宜庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·大潮（1966～1980）\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多卖三倍\",\n    \"author\": \"弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491256-088984?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Z世代营销\",\n    \"author\": \"杰夫・弗若姆/安吉・瑞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513471-fe46fd?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致零售\",\n    \"author\": \"杜凤林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘾：让人上瘾的产品、广告与创意背后的秘密\",\n    \"author\": \"吴文芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意志力销售法\",\n    \"author\": \"杨朝福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命4.0\",\n    \"author\": \"菲利普・科特勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金龙鱼背后的粮油帝国\",\n    \"author\": \"余盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039426-863024?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂营销上\",\n    \"author\": \"戈非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密日本零售业（套装共4册）\",\n    \"author\": \"增田明子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售进阶指南（套装共5册）\",\n    \"author\": \"埃尔默・惠勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：打造峰值体验\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全栈市场人\",\n    \"author\": \"Lydia\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐巾纸系列套装（套装共2本）\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016506-d2e8ae?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告+我的广告生涯\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作，打造个人IP，成就企业品牌\",\n    \"author\": \"陈志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"满是空虚之物\",\n    \"author\": \"阿伏伽德六\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511062-e94297?p=8866\",\n    \"category\": \"虚构\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛兰德镜子\",\n    \"author\": \"dome\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044964-66fcfd?p=8866\",\n    \"category\": \"虚构\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们花园里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866\",\n    \"category\": \"鸟\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟类的天赋\",\n    \"author\": \"珍妮弗・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866\",\n    \"category\": \"鸟\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政论 昌言（全本全注全译）\",\n    \"author\": \"孙启治译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866\",\n    \"category\": \"政论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与戛纳\",\n    \"author\": \"蒂耶里・福茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866\",\n    \"category\": \"戛纳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光影里的梦幻与真实\",\n    \"author\": \"郑实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866\",\n    \"category\": \"戛纳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个世纪的抗争：美国女权运动史\",\n    \"author\": \"埃莉诺・弗莱克斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510030-25e3e0?p=8866\",\n    \"category\": \"女权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的安吉维拉\",\n    \"author\": \"奇玛曼达・恩戈兹・阿迪契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990373-e61286?p=8866\",\n    \"category\": \"女权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘+（第3版）\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866\",\n    \"category\": \"复盘\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘：对过去的事情做思维演练\",\n    \"author\": \"陈中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866\",\n    \"category\": \"复盘\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽必烈的挑战\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866\",\n    \"category\": \"蒙元史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁血蒙元\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866\",\n    \"category\": \"蒙元史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆自传\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866\",\n    \"category\": \"20世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙（白金升级版）\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样发言\",\n    \"author\": \"久久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想之城：苏筱的战争\",\n    \"author\": \"若花燃燃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508209-e9ee8e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别会说话的人都这样说话\",\n    \"author\": \"大野萌子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的沟通力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就是干不过做PPT的\",\n    \"author\": \"下地宽也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509607-fcbab6?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高级零工\",\n    \"author\": \"村上敦伺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509853-10fa45?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来3\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森（\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬核晋升\",\n    \"author\": \"朱莉・卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的世界\",\n    \"author\": \"许奔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己当回事儿\",\n    \"author\": \"杨天真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非线性成长\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节的力量\",\n    \"author\": \"FLANAGAN裕美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513111-35214f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的老板\",\n    \"author\": \"罗伯特・赫罗马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513645-5a5886?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一印象手册\",\n    \"author\": \"柳沼佐千子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513798-47c741?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选准赛道再奔跑\",\n    \"author\": \"七芊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004608-82df1b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级搜索术\",\n    \"author\": \"朱丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004089-122bcf?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转机\",\n    \"author\": \"萨拉・罗布・奥黑根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘墉的处世情商课\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的做事风格系列（全3册）\",\n    \"author\": \"高桥政史/横田真由子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002070-37a922?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造人生的伙伴\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场自我成长\",\n    \"author\": \"渡边秀和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001134-9c9089?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡高效工作法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本事：应对未来世界的12项永久技能\",\n    \"author\": \"基兰・弗拉纳根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000405-a834ab?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动变现\",\n    \"author\": \"杨小米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999424-ac20ab?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级个体\",\n    \"author\": \"徐大维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懂得倾听，是学会沟通的第一步\",\n    \"author\": \"伯纳德·T.费拉里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997870-0eb102?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破你的学生思维\",\n    \"author\": \"北京职慧公益创业发展中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997843-a71c7e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾仕强品三国（套装共3册）\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995533-1624d0?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力\",\n    \"author\": \"高琳/林宏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"允许被说服\",\n    \"author\": \"艾尔・比坦帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你没有退路，才有出路\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"会说话的人运气都不会太差\",\n    \"author\": \"矢野香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扛住就是本事\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超级领导力\",\n    \"author\": \"金·R·鲍威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是动机控\",\n    \"author\": \"池田贵将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是方法控\",\n    \"author\": \"金武贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的技术\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人力资源管理从新手到总监（全2册）\",\n    \"author\": \"李志勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985228-e6aa30?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效管理自己（升级版）\",\n    \"author\": \"杜耿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984787-7968f7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向诸葛亮借智慧\",\n    \"author\": \"赵玉平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983920-387cfd?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异议的力量\",\n    \"author\": \"查兰・奈米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给别人留下好印象\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向上管理\",\n    \"author\": \"蒋巍巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983296-d41f93?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职业通道\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀到不能被忽视\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是我要的工作\",\n    \"author\": \"克里斯・吉耶博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用事实说话\",\n    \"author\": \"马克・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日之计\",\n    \"author\": \"本杰明・斯帕/迈克尔・赞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢在上班时\",\n    \"author\": \"高城幸司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重构\",\n    \"author\": \"村西边老王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体突围\",\n    \"author\": \"艾玛・加侬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为职场实力派\",\n    \"author\": \"日本GLOBIS商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052479-c909c0?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卓越工作\",\n    \"author\": \"莫滕·T·汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"执行力：10项驱动法则\",\n    \"author\": \"章俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052290-876230?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商是什么？\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力迁移\",\n    \"author\": \"乔治・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力精进\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的降落伞是什么颜色？（全新修订版）\",\n    \"author\": \"理查德・尼尔森・鲍利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简社交\",\n    \"author\": \"莫拉格・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何一开口就赢\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡入职培训第一课\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长行动指南\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加速\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051021-d70559?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法（口袋版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通也要懂套路\",\n    \"author\": \"姜朝川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力48法则\",\n    \"author\": \"罗伯特・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理是个技术活\",\n    \"author\": \"芭芭拉・米切尔/科妮莉亚・甘伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟沟通课\",\n    \"author\": \"鱼住理英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别做那只迷途的候鸟\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效人士的问题解决术\",\n    \"author\": \"森秀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049437-4b60bc?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都合得来\",\n    \"author\": \"罗伯特・萨顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049395-f814dd?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上广女子图鉴\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导就是让人追随\",\n    \"author\": \"约翰・科特/霍尔格・拉斯格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思考\",\n    \"author\": \"迈克・费廖洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效领导力\",\n    \"author\": \"布伦达・本斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044523-e9c7cf?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商沟通\",\n    \"author\": \"仲佳伟/文娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043860-e43eee?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人心理学\",\n    \"author\": \"赵育宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的写作武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突管理\",\n    \"author\": \"大卫・里德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的思考武器\",\n    \"author\": \"安宅和人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"策略：如何在复杂的世界里成为高手\",\n    \"author\": \"江潮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人极简图表工作法\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来工作\",\n    \"author\": \"泰勒・皮尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040533-619ca7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳槽圣经\",\n    \"author\": \"北野唯我\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040419-a31bca?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇气\",\n    \"author\": \"萨莉・克劳切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生涯线\",\n    \"author\": \"戴维・范鲁伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035568-93b2da?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售圣经\",\n    \"author\": \"杰弗里・吉特黙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场第一课（套装共5册）\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周工作4小时（修订版）\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法：职场问题解决篇\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12个工作的基本\",\n    \"author\": \"大久保幸夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：颠覆职场学习的高效方法\",\n    \"author\": \"王世民/缪志聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绩效使能：超越OKR\",\n    \"author\": \"况阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横向领导力\",\n    \"author\": \"罗杰・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中层领导力（共三册）\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向前一步\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使命必达：百分之百实现目标的行为科学管理法\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长\",\n    \"author\": \"亚力山德拉・卡弗拉科斯/凯瑟琳・明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转行：发现一个未知的自己\",\n    \"author\": \"埃米尼亚・伊瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你坚持的原则其实害了你\",\n    \"author\": \"午堂登纪雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029151-25cd57?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能量姿势\",\n    \"author\": \"埃米・卡迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027921-c57e26?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我赋能\",\n    \"author\": \"蒂法尼・杜芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027006-6f650f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力变现\",\n    \"author\": \"林宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主宰演讲台\",\n    \"author\": \"比尔・胡戈特伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026454-f43984?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见\",\n    \"author\": \"赵昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025662-874d05?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从极简到极致\",\n    \"author\": \"赵晓璃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025524-050d17?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做自己人生的CEO\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑工作法\",\n    \"author\": \"西村克己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我每天只工作3小时\",\n    \"author\": \"押井守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024051-5c3359?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体赋能\",\n    \"author\": \"YouCore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢（纪念版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻省理工深度思考法\",\n    \"author\": \"平井孝志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：7个改变个人、团队和组织的教练技巧\",\n    \"author\": \"迈克尔・K.辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准表达：让你的方案在最短的时间内打动人心\",\n    \"author\": \"高田贵久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022005-8ea54a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套1：战局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021465-4d2c0f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套2：迷局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021450-f4aaca?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套3：终局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021447-9e6224?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒工作\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰普勒极简人生法则系列（套装共6册）\",\n    \"author\": \"理查德・泰普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力\",\n    \"author\": \"野口真人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职得：成为自己故事里的英雄\",\n    \"author\": \"高琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019758-aa07ed?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当机立断\",\n    \"author\": \"出口治明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下没有陌生人\",\n    \"author\": \"刘希平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019620-995041?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠创业家\",\n    \"author\": \"金伯莉・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：如何规划职业生涯3大阶段\",\n    \"author\": \"布赖恩・费瑟斯通豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘书工作手记\",\n    \"author\": \"像玉的石头\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017100-e77e05?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作是最好的修行\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲的本质\",\n    \"author\": \"马丁・纽曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016086-95e98b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没经验，是你最大优势\",\n    \"author\": \"蒋雅淇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015990-ad6ad2?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光速成长\",\n    \"author\": \"林晅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015888-f1ac25?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的工作方法\",\n    \"author\": \"中村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英系列（共五册）\",\n    \"author\": \"高杉尚孝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"靠谱\",\n    \"author\": \"大石哲之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键责任\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简工作Ⅱ\",\n    \"author\": \"约根・库尔兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015210-742ca7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让猴子跳回背上\",\n    \"author\": \"威廉・安肯三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014490-3430ef?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场奋斗记：我在职场二十年\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012801-1f9218?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作DNA\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提问的力量\",\n    \"author\": \"弗兰克・赛斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010539-958825?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力：为什么只为某些人所拥有（经典版）\",\n    \"author\": \"杰弗瑞・菲佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你从未真正拼过\",\n    \"author\": \"LinkedIn（领英）\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008895-f7513b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷读术（白金珍藏版）\",\n    \"author\": \"石真语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬球：政治是这样玩的\",\n    \"author\": \"克里斯·马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜拉拉升职记（套装共4册）\",\n    \"author\": \"李可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006420-6369ee?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小强升职记（升级版）\",\n    \"author\": \"邹鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006204-c05b09?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新版一分钟经理人\",\n    \"author\": \"肯・布兰佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005577-99fa0a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要搞定人\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005031-3463fc?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐颂：第一季\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004734-314fba?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐颂：第二季\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004740-d1a809?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐颂：第三季\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004752-0b1057?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品的101个新零售细节\",\n    \"author\": \"张桓/杨永朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866\",\n    \"category\": \"新零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩们的地下战争\",\n    \"author\": \"蕾切尔・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491190-40f929?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮木\",\n    \"author\": \"杨本芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493731-a2dea1?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的战争\",\n    \"author\": \"Momself\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身偏见\",\n    \"author\": \"克莱尔・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493863-2752fc?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始的女性主义\",\n    \"author\": \"上野千鹤子/田房永子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498135-bec29a?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体由我\",\n    \"author\": \"希拉・德利兹/路易莎・施托默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厌女：日本的女性嫌恶\",\n    \"author\": \"上野千鹤子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498933-3437c3?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是主播\",\n    \"author\": \"国谷裕子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499404-105834?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙马特遗书\",\n    \"author\": \"邱妙津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500163-f3a93e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河谈亲密关系\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基层女性\",\n    \"author\": \"王慧玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喀耳刻\",\n    \"author\": \"马德琳・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506415-595930?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京贫困女子\",\n    \"author\": \"中村淳彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507093-5284bf?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些特别善于表达自己观点的女人们\",\n    \"author\": \"米歇尔・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509370-466dcd?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱可能\",\n    \"author\": \"伊迪丝・伊娃・埃格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琉璃棺\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509976-f774f3?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性的时刻\",\n    \"author\": \"梅琳达・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的朋友阿波罗\",\n    \"author\": \"西格丽德・努涅斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510783-f66375?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请照顾好我妈妈\",\n    \"author\": \"申京淑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511275-55c4a4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为波伏瓦\",\n    \"author\": \"凯特・柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511278-68fad7?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的人生大事\",\n    \"author\": \"杰西・格林格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004353-bc6c28?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碎片\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003567-532213?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气场哪里来\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003540-37d1e7?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她们\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003504-32b574?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码女王\",\n    \"author\": \"贾森・法戈内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食，祈祷，恋爱\",\n    \"author\": \"伊丽莎白・吉尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为主角\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妻子们的思秋期\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001602-8bf926?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩之城\",\n    \"author\": \"伊丽莎白・吉尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001593-7bed8f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凌乱的床\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001293-92ab13?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结伴养老\",\n    \"author\": \"安妮・奥斯特比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000309-a1275e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她和她的秘密\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000177-c83701?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花园中的处子\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996616-1be3ff?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他的秘密\",\n    \"author\": \"莉安・莫里亚蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996595-40f888?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"因为性别\",\n    \"author\": \"吉莉恩・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994912-c2c6df?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇敢而非完美\",\n    \"author\": \"拉什玛・萨贾尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生由我\",\n    \"author\": \"梅耶・马斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好女孩\",\n    \"author\": \"布莉・贝内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994696-b834b3?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个心碎的伊朗女人\",\n    \"author\": \"龚娜姿・哈宣沙达・邦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994564-faf248?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大小谎言\",\n    \"author\": \"莉安・莫里亚蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992374-c85ca5?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性与权力\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991975-4c57b0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性进化论\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991723-c926e0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见了，伊藤君\",\n    \"author\": \"柚木麻子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991435-181d4c?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青梅竹马\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990031-2346b0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不想将就过一生\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你又忙又美，何惧患得患失\",\n    \"author\": \"梁爽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔守望者的女儿\",\n    \"author\": \"珍•E.潘德兹沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986095-8be8e5?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失去名字的女孩\",\n    \"author\": \"玛莎・霍尔・凯莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984901-789579?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影师的妻子\",\n    \"author\": \"苏珊・乔伊森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坡道上的家\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982486-16b5cf?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主妇、舞者与牧师\",\n    \"author\": \"马蜂窝出品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053694-6f133f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美之地图\",\n    \"author\": \"米哈埃拉・诺洛茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芭比：一个娃娃风靡世界的秘密\",\n    \"author\": \"罗宾・格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的世界\",\n    \"author\": \"莉兹・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051006-6c5df6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上广女子图鉴\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辫子\",\n    \"author\": \"莱蒂西娅・科隆巴尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047979-c242df?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大风向野\",\n    \"author\": \"练明乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047823-81f4e6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趁早（十周年畅销升级版）\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险闺密\",\n    \"author\": \"克里斯蒂娜・曼根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045930-f473a9?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一间自己的房间（作家榜经典文库）\",\n    \"author\": \"维吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044304-7ba850?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽尔（果麦经典）\",\n    \"author\": \"西尔维娅・普拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代的她们\",\n    \"author\": \"杰奎琳・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册：重塑升级版\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女生呵护指南\",\n    \"author\": \"六层楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上的女儿们\",\n    \"author\": \"珍妮・梅拉米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040929-da7f44?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"82年生的金智英\",\n    \"author\": \"赵南柱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039924-8e05df?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇气\",\n    \"author\": \"萨莉・克劳切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十个女人\",\n    \"author\": \"马塞拉・塞拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037614-efe484?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣母病\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036471-8907eb?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河说爱情\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎美人\",\n    \"author\": \"珍妮・达玛斯/劳伦・巴斯蒂德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走的人多了，就有了路\",\n    \"author\": \"尼可拉斯・克里斯多夫/雪莉・邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她说：菠萝解密乳腺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武士的女儿\",\n    \"author\": \"贾尼斯・宝莫伦斯・二村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034830-947585?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Goblin Market\",\n    \"author\": \"Rossetti, Christina; Rackham, Arthur;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的试毒者\",\n    \"author\": \"罗塞拉・波斯托里诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个陌生女人的来信（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京女子图鉴\",\n    \"author\": \"王欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032742-fb8407?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Calculating Stars\",\n    \"author\": \"Mary Robinette Kowal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈阁是座城\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031431-3b1b40?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阁楼上的疯女人\",\n    \"author\": \"桑德拉・吉尔伯特/苏珊・古芭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030792-df1d6e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小野兽\",\n    \"author\": \"艾明雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030312-d9a911?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人不可以穷\",\n    \"author\": \"正经婶儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有多强大，就有多温柔\",\n    \"author\": \"王珣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对岸的她\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029859-6cc541?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊万卡·特朗普\",\n    \"author\": \"伊万卡・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灿烂千阳\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029058-318c2d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要快乐，不必正常\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩老板\",\n    \"author\": \"索菲亚・阿莫鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二性（合卷本）\",\n    \"author\": \"西蒙娜・德・波伏瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾莉诺好极了\",\n    \"author\": \"盖尔・霍尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027849-94039f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是个妈妈，我需要铂金包\",\n    \"author\": \"温妮斯蒂・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强大，漂亮的新定义\",\n    \"author\": \"凯特·T·帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026319-23d0f4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方有个女儿国\",\n    \"author\": \"白桦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025560-f8eca4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生真相\",\n    \"author\": \"彼得・斯莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025128-9ada14?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做自己人生的CEO\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出荒野\",\n    \"author\": \"谢丽尔・斯特雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们眼望上苍\",\n    \"author\": \"佐拉・尼尔・赫斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023859-28feb0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美女都是狠角色\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023664-8fe48b?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芈月传\",\n    \"author\": \"蒋胜男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022305-2cc99f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长翅膀的女孩\",\n    \"author\": \"苏・蒙克・基德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022125-11fbcf?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺伎回忆录\",\n    \"author\": \"阿瑟・高顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021840-da9540?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力巅峰的女人\",\n    \"author\": \"蒋胜男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021414-31bfd5?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪的孩子\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020586-b3e8f7?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的女儿\",\n    \"author\": \"虹影\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020580-f4dea0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太年轻\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020439-7a8bf2?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被嫌弃的松子的一生\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020382-853cf6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的脖子让我很不爽\",\n    \"author\": \"诺拉・艾芙隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019875-949ab1?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蕾蒂西娅，或人类的终结\",\n    \"author\": \"伊凡・雅布隆卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛丽·安妮\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使女的故事\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018939-e7603d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩们\",\n    \"author\": \"艾玛・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017808-88e836?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要像喜欢甜一样喜欢苦\",\n    \"author\": \"斯蒂芬妮・丹勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016551-c6b1e8?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离开的，留下的\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015894-a19ce7?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉田医生哈佛求学记\",\n    \"author\": \"吉田穗波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上流法则\",\n    \"author\": \"埃默・托尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014616-694625?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不允许自己难过太久\",\n    \"author\": \"凯茜・苏丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014112-37b6b5?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸之月\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013224-06be48?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醒来的女性（上下册）\",\n    \"author\": \"玛丽莲・弗伦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012375-894943?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的国\",\n    \"author\": \"寇研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桃之夭夭\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011418-b385c2?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新名字的故事\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008784-b8943f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极花\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008142-d8ae4a?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先谋生，再谋爱\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤单，我的自我\",\n    \"author\": \"丽贝卡・特雷斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英格兰简史大套装（套装共十册）\",\n    \"author\": \"埃德・韦斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504159-936447?p=8866\",\n    \"category\": \"英格兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布、大航海时代与地理大发现\",\n    \"author\": \"约翰・S.C.阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866\",\n    \"category\": \"哥伦布\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全怪谈（全三册）\",\n    \"author\": \"田中贡太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032217-dba52f?p=8866\",\n    \"category\": \"怪谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巷说异闻录\",\n    \"author\": \"檀信介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027255-1358b6?p=8866\",\n    \"category\": \"怪谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家地理终极观星指南\",\n    \"author\": \"霍华德・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496701-44ca96?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到火星去\",\n    \"author\": \"莎拉・斯图尔特・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499260-e8e937?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"4000年中国天文史\",\n    \"author\": \"让・马克・博奈・比多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000792-a0a2d6?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课\",\n    \"author\": \"凯瑟琳・玛丽・布伦德尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果，哥白尼错了\",\n    \"author\": \"凯莱布・沙夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991624-eb9c92?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个天文学家的夜空漫游指南\",\n    \"author\": \"郑春顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我想多了吗？\",\n    \"author\": \"新科学家杂志/邱涛涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系简史\",\n    \"author\": \"约翰・钱伯斯/杰奎琳・米顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮全书\",\n    \"author\": \"比尔・莱瑟巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追捕祝融星\",\n    \"author\": \"托马斯・利文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"140亿年宇宙演化全史\",\n    \"author\": \"尼尔・德格拉斯・泰森/唐纳德・戈德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·弦理论之争系列（新版套装共3册）\",\n    \"author\": \"布莱恩・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共9册）\",\n    \"author\": \"布莱恩・格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空故事\",\n    \"author\": \"苏珊娜・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简天文学\",\n    \"author\": \"科林・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从何而来\",\n    \"author\": \"傅渥成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空的琴弦\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新认识资本主义三部曲\",\n    \"author\": \"娜奥米・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行星全书\",\n    \"author\": \"尼尔马拉・纳塔瑞杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014421-80096e?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Astrophysics for People in a Hurry\",\n    \"author\": \"Neil deGrasse Tyson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014013-01ce24?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通俗天文学（全彩四色珍藏版）\",\n    \"author\": \"西蒙・纽康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010887-fc3eff?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简宇宙史\",\n    \"author\": \"克里斯托弗・加尔法德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给忙碌者的天体物理学\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“排放门”：大众汽车丑闻\",\n    \"author\": \"杰克・尤因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002769-31400d?p=8866\",\n    \"category\": \"汽车\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三分钟漫画汽车史\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866\",\n    \"category\": \"汽车\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汽车是怎样跑起来的\",\n    \"author\": \"御堀直嗣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013170-8e1445?p=8866\",\n    \"category\": \"汽车\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉丁美洲被切开的血管\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024495-ad2eac?p=8866\",\n    \"category\": \"拉丁美洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迪士尼大电影双语阅读（共18册）\",\n    \"author\": \"美国迪士尼公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017088-c29863?p=8866\",\n    \"category\": \"迪士尼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866\",\n    \"category\": \"冯唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你：与冯唐聊天\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008421-7af3cb?p=8866\",\n    \"category\": \"冯唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资攻略\",\n    \"author\": \"翁量\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同基金常识（10周年纪念版）\",\n    \"author\": \"约翰・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500526-edcefa?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚守\",\n    \"author\": \"约翰・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511698-19f58e?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数定投实现财务自由\",\n    \"author\": \"姬建东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小散逆袭：手把手教你做量化定投\",\n    \"author\": \"万磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定投十年财务自由\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金怪杰（典藏版）\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私募的进化\",\n    \"author\": \"格上研究中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资指南\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金到底是什么？\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：中国周边\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866\",\n    \"category\": \"时政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳谋为上\",\n    \"author\": \"夏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007908-6e6069?p=8866\",\n    \"category\": \"时政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大实话：历史与现在\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006915-0aa5f7?p=8866\",\n    \"category\": \"时政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Game of Thrones Series\",\n    \"author\": \"George R. R. Martin\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039252-7f3bcd?p=8866\",\n    \"category\": \"史诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光之轮全集\",\n    \"author\": \"罗伯特·乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006192-45f890?p=8866\",\n    \"category\": \"史诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌1-5卷（全15册）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005802-26b297?p=8866\",\n    \"category\": \"史诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的方法\",\n    \"author\": \"圣地亚哥·拉蒙-卡哈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507387-b58026?p=8866\",\n    \"category\": \"学术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界音乐汇\",\n    \"author\": \"西蒙・布劳顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866\",\n    \"category\": \"学术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"研究生完全求生手冊\",\n    \"author\": \"彭明輝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039534-579efd?p=8866\",\n    \"category\": \"学术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词学通论（词系列）\",\n    \"author\": \"吴梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033588-ce609f?p=8866\",\n    \"category\": \"学术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国医典藏系列套装（共四册）\",\n    \"author\": \"李时珍/孙思邈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998563-a4c3ab?p=8866\",\n    \"category\": \"中医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美名校通识课（第一辑）（套装7册）\",\n    \"author\": \"亨利·M.塞尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866\",\n    \"category\": \"欧美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸骨袋\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033264-2ab845?p=8866\",\n    \"category\": \"欧美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰岛人\",\n    \"author\": \"大卫・W・斯托克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020688-c01e06?p=8866\",\n    \"category\": \"欧美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西藏来的男人\",\n    \"author\": \"克莱德・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011673-fcf3b0?p=8866\",\n    \"category\": \"欧美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼（套装共5册）\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030288-17bf8f?p=8866\",\n    \"category\": \"经验\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳舞女郎\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034623-126b75?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强盗新娘\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034449-93c7ab?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国病人（企鹅经典）\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032424-c5dfca?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赫尔辛基罗卡曼迪欧家族背后的真相\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028062-53a082?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"标本师的魔幻剧本\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027834-e41a3d?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（绘图珍藏本）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲刺客\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014304-350e20?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭一千年\",\n    \"author\": \"狄奥尼修斯・史塔克普洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马的日常生活\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马元老院与人民\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉思录（译文经典）\",\n    \"author\": \"马可・奥勒留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的崛起\",\n    \"author\": \"波里比阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033156-220881?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥古斯都：从革命者到皇帝\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：罗马帝国的遗产\",\n    \"author\": \"克里斯・威克姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内战记\",\n    \"author\": \"盖乌斯・尤利乌斯・恺撒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030756-3504a4?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文通史\",\n    \"author\": \"詹尼特・勒博・本顿/罗伯特・笛亚尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866\",\n    \"category\": \"艺术史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课：理学套装（全4册）\",\n    \"author\": \"麦克・戈德史密斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496950-51ea21?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何像人类学家一样思考·鹈鹕丛书\",\n    \"author\": \"马修・恩格尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501426-4e56e5?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社百科通识文库（世界万象大套装共114本）\",\n    \"author\": \"伏尔泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502542-168165?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美名校通识课（第一辑）（套装7册）\",\n    \"author\": \"亨利·M.塞尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本百本纪念套装（共100册）\",\n    \"author\": \"查尔斯・福斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506448-03adea?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文精神的伟大冒险\",\n    \"author\": \"菲利普·E.毕肖普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文学（牛津通识读本）\",\n    \"author\": \"尼古拉斯・博伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼识破真相的思考力\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戏剧（牛津通识读本）\",\n    \"author\": \"马文・卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治学通识\",\n    \"author\": \"包刚升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典咏流传诗词曲赋集（套装21册）\",\n    \"author\": \"李白/王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866\",\n    \"category\": \"歌赋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处不在\",\n    \"author\": \"中国邮政快递报社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866\",\n    \"category\": \"快递\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国快递桐庐帮\",\n    \"author\": \"孙侃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011220-4eeecf?p=8866\",\n    \"category\": \"快递\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Clojure编程乐趣\",\n    \"author\": \"Michael Fogus/Chris Houser\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021192-c6e841?p=8866\",\n    \"category\": \"编程语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑场（2017版）\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048558-fe098d?p=8866\",\n    \"category\": \"李诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙超度指南\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866\",\n    \"category\": \"李诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图攻略\",\n    \"author\": \"王健文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考与表达的20堂课\",\n    \"author\": \"久恒启一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作力\",\n    \"author\": \"高语罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看完就用的思维导图\",\n    \"author\": \"刘艳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051396-5d6b11?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读（01-10）\",\n    \"author\": \"许知远/肖海生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027654-e73901?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读（11-15）\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027657-d9573b?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"童书写作指南\",\n    \"author\": \"玛丽・科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026970-0605e8?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆魔法师\",\n    \"author\": \"袁文魁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022029-89926d?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提升你的沟通技能（第四版）\",\n    \"author\": \"艾伦・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020118-157ff6?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简化\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅海建作品集（套装共5册）\",\n    \"author\": \"茅海建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502044-913caf?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家国与世情\",\n    \"author\": \"十年砍柴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509973-b55da1?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马勇讲清史（全5册）\",\n    \"author\": \"唐彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510183-c8ea60?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸运儿：晚清留美幼童的故事\",\n    \"author\": \"利尔・莱博维茨/马修・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510192-ccbbf4?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀柔远人\",\n    \"author\": \"何伟亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三国\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋风宝剑孤臣泪\",\n    \"author\": \"姜鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983611-ecaec9?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧京人物影像馆（套装三册）\",\n    \"author\": \"张社生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049425-7f26ab?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩全集（全31册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚守与突围\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039378-960d27?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清帝国风云系列（全三册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037521-529d85?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清王朝的最后十年\",\n    \"author\": \"菲尔曼・拉里贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035697-05658d?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国公使夫人清宫回忆录\",\n    \"author\": \"苏珊・汤丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史深处的民国（全3册）\",\n    \"author\": \"江城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之痒\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清危亡录\",\n    \"author\": \"凤城杜哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029211-fd2b9f?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛史·晚清篇\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023268-c4b7c6?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：计划外革命\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国《小日报》记录的晚清（1891-1911）\",\n    \"author\": \"李红利/赵丽莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火堆上的晚清帝国\",\n    \"author\": \"刘大木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017859-df5ae7?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平天国兴亡录\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014724-33612e?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庚子西狩丛谈\",\n    \"author\": \"吴永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011625-b93e35?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清最后十八年（大全集）（共4册）\",\n    \"author\": \"黄治军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010365-52de24?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清大变局\",\n    \"author\": \"马平安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008790-f00942?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战天京：晚清军政传信录\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007827-5533c3?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉冤录\",\n    \"author\": \"张程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007488-804e4c?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天公不语对枯棋\",\n    \"author\": \"姜鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006972-dc0d09?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凋零\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1856：纠结的大清、天国与列强\",\n    \"author\": \"陶短房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再说戊戌变法\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005823-df41d5?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直截了当的独白\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个曾国藩\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个袁世凯\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个李鸿章\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国运1909：清帝国的改革突围\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005070-6a1110?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大变局1911\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清日战争\",\n    \"author\": \"宗泽亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004950-0d79b6?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493698-8e176a?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画三国演义\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501411-8c4262?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国不演义\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506904-b9f4ff?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国：大暗黑时代的前奏曲\",\n    \"author\": \"鸟山居士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000855-46c47a?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全面战争·日式三国（套装共5册）\",\n    \"author\": \"吉川英治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989020-6eb90a?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曹操：打不死的乐观主义者\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983932-901fe3?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国在巴蜀\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国英雄记（全六册）\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039126-d0e7c9?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸葛亮：蜀汉舵手的历史真相\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国谍影（全四册）\",\n    \"author\": \"何慕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033657-64c701?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国全史\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022050-eeaf02?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国机密（新版全集）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019308-4cd05d?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司马懿吃三国（套装共5册）\",\n    \"author\": \"李浩白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017760-105460?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（地图珍藏本）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017616-a7c9cd?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国那些人那些事（套装5册）\",\n    \"author\": \"陈瓷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016065-19e132?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水煮三国（十周年纪念版）\",\n    \"author\": \"成君忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015078-1ffe74?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉文集：三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011133-842806?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品三国\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010851-0bd01f?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正说司马家（1-3）\",\n    \"author\": \"张朝炬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010560-b2fada?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国名将：一个历史学家的排行榜\",\n    \"author\": \"方北辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009312-59e655?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国（套装共5册）\",\n    \"author\": \"吉川英治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006129-6a7720?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕著三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑鄙的圣人：曹操（套装共10册）\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国机密（全两册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风起陇西\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国人物传记合集（套装共六册）\",\n    \"author\": \"方北辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005274-cab8cd?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资的十项核心原则\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491475-157297?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师3\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势投资\",\n    \"author\": \"丁圣元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498825-647703?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资三部曲\",\n    \"author\": \"杰弗里・肯尼迪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498966-b96f00?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识的力量\",\n    \"author\": \"梁宇峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资核心资产\",\n    \"author\": \"王德伦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资理财红宝书\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报一看就懂\",\n    \"author\": \"薛兆亨/徐林宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509232-8957d6?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复利信徒\",\n    \"author\": \"李杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509553-ecceff?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则：成长股投资要义\",\n    \"author\": \"吉姆・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手利弗莫尔的交易精髓\",\n    \"author\": \"李路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资策略实战分析（原书第4版·典藏版）\",\n    \"author\": \"詹姆斯・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（典藏版）\",\n    \"author\": \"格里高里・莫里斯/赖安・里奇菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆精选集\",\n    \"author\": \"珍妮特・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004341-efe06a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资的24堂必修课（典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值发现\",\n    \"author\": \"张靖东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004107-ba8cf8?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由新思维\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000711-ebbf11?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投机者的告白（实战版）\",\n    \"author\": \"安纳金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券分析（原书第6版）\",\n    \"author\": \"本杰明・格雷厄姆/戴维・多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析圣经\",\n    \"author\": \"理查德·W·夏巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易之路\",\n    \"author\": \"陈凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资心理学（原书第5版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员\",\n    \"author\": \"杰克D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进我的交易室\",\n    \"author\": \"亚历山大・艾尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股价潜结构\",\n    \"author\": \"姚简明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049869-9aa57b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金股博弈（第4版）\",\n    \"author\": \"弈樊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向投资策略\",\n    \"author\": \"大卫・德雷曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易冠军\",\n    \"author\": \"马丁・舒华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特波浪理论：研判股市底部与顶部的有效工具\",\n    \"author\": \"拉尔夫·N·艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸K线交易法\",\n    \"author\": \"许佳聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046431-11f0bb?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给投资新手的极简股票课\",\n    \"author\": \"lip师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的第一桶金\",\n    \"author\": \"格伦・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历巴菲特股东大会\",\n    \"author\": \"杰夫・马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我如何从股市赚了200万（珍藏版）\",\n    \"author\": \"尼古拉斯・达瓦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小散逆袭：手把手教你做量化定投\",\n    \"author\": \"万磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看盘方法与技巧一本通\",\n    \"author\": \"老牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特与索罗斯的投资习惯（纪念版）\",\n    \"author\": \"马克・泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑马波段操盘术（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"振荡指标MACD（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿过迷雾\",\n    \"author\": \"任俊杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在苍茫中传灯\",\n    \"author\": \"姚斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生Ⅱ\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易员\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球投资\",\n    \"author\": \"林起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特高收益投资策略\",\n    \"author\": \"吉瓦・拉玛斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12年20倍\",\n    \"author\": \"唐彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（原书第3版）\",\n    \"author\": \"格里高里・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的投资组合（珍藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票作手回忆录\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本炒股书\",\n    \"author\": \"杨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量价分析\",\n    \"author\": \"安娜・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票基本面分析清单\",\n    \"author\": \"迈克尔・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039261-a095a3?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背离技术分析\",\n    \"author\": \"江南小隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事（全新升级版）\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎杀黑马\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038283-074510?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过顶擒龙\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038112-a98e13?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴维·朗德里波段交易法则\",\n    \"author\": \"戴维・朗德里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037992-dbffa0?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力K线擒大牛\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇的成功投资（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市大崩溃前抛出的人（典藏版）\",\n    \"author\": \"伯纳德・巴鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜华尔街（典藏版）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解（典藏版）\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢得输家的游戏（原书第6版）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：危险交易\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股的智慧（第四版）\",\n    \"author\": \"陈江挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029619-c30e77?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术分析（原书第5版）\",\n    \"author\": \"马丁J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028260-40febb?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资的秘密\",\n    \"author\": \"Joel Greenblatt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028044-74e8a0?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的投资思想\",\n    \"author\": \"戴维・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师2\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手回忆录\",\n    \"author\": \"埃德文・拉斐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手操盘术\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年（第2版）\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020628-097a89?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的估值逻辑\",\n    \"author\": \"林安霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析（原书第10版）\",\n    \"author\": \"罗伯特 D. 爱德华兹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级强势股：如何投资小盘价值成长股（珍藏版）\",\n    \"author\": \"肯尼斯・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股的智慧\",\n    \"author\": \"陈江挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017415-1f1d36?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲刺白马股\",\n    \"author\": \"启明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得林奇投资经典全集（共3册）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货市场技术分析\",\n    \"author\": \"约翰・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不落俗套的成功\",\n    \"author\": \"大卫・斯文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A股赚钱必修课\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012393-e3ca99?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街幽灵\",\n    \"author\": \"阿瑟・辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专业投机原理（珍藏版）\",\n    \"author\": \"维克托・斯波朗迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"操盘手Ⅰ：自由救赎\",\n    \"author\": \"花荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大牛市・股殇系列（全两册）\",\n    \"author\": \"诸葛就是不亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百箭穿杨\",\n    \"author\": \"小小辛巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非赚不可\",\n    \"author\": \"袁园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股怎能不懂波段\",\n    \"author\": \"宋建文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市长线法宝（原书第5版）\",\n    \"author\": \"杰里米J. 西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦想与浮沉：A股十年上市博弈（2004～2014）\",\n    \"author\": \"王骥跃/班妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则\",\n    \"author\": \"吉姆·斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安东尼·波顿的成功投资\",\n    \"author\": \"安东尼·波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短线交易秘诀（原书第2版）\",\n    \"author\": \"拉里·威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球「岛」系列・投资入门套装（共七册）\",\n    \"author\": \"雪球用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005484-765294?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·聂夫的成功投资（珍藏版）\",\n    \"author\": \"约翰・聂夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生（珍藏版）\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通向财务自由之路（原书第2版·珍藏版）\",\n    \"author\": \"范・撒普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样选择成长股\",\n    \"author\": \"菲利普·A·费舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第四版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风生水起：水皮股市创富录\",\n    \"author\": \"水皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004770-b214ba?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些滚雪球的人\",\n    \"author\": \"王星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情的力量\",\n    \"author\": \"亚瑟・乔拉米卡利/凯瑟琳・柯茜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866\",\n    \"category\": \"共情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1491年：前哥伦布时代美洲启示录\",\n    \"author\": \"查尔斯・曼恩是\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011508-3f67fb?p=8866\",\n    \"category\": \"美洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就想开间小小咖啡馆\",\n    \"author\": \"王森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031806-c9aa38?p=8866\",\n    \"category\": \"梦想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"示弱的勇气\",\n    \"author\": \"田口佳史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029919-38941e?p=8866\",\n    \"category\": \"梦想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命冒险\",\n    \"author\": \"闪米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023085-ade96e?p=8866\",\n    \"category\": \"梦想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也要认真穿\",\n    \"author\": \"黎贝卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866\",\n    \"category\": \"穿搭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风格的练习\",\n    \"author\": \"艾莉森・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046617-f68956?p=8866\",\n    \"category\": \"穿搭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情的革命\",\n    \"author\": \"乔伊斯・阿普尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866\",\n    \"category\": \"政治学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的去魔化\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866\",\n    \"category\": \"政治学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精神政治学\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033087-6bd310?p=8866\",\n    \"category\": \"政治学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的西方（译文经典）\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866\",\n    \"category\": \"政治学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034326-c79462?p=8866\",\n    \"category\": \"道德经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么：一部教你做得道之人的生命学宝典\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866\",\n    \"category\": \"道德经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通正则表达式：第3版\",\n    \"author\": \"Jeffrey E·F·Friedl\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866\",\n    \"category\": \"正则表达式\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀手机器人日记（全四册）\",\n    \"author\": \"玛莎・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491805-d73e35?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海胶囊\",\n    \"author\": \"btr\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493545-f20f20?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱姆狂想曲\",\n    \"author\": \"斯塔尼斯瓦夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493608-e7a5b9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能预警（读客版）\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493848-f7331c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恐惧之旅\",\n    \"author\": \"埃里克・安布勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493878-e9e33f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四十岛骑士\",\n    \"author\": \"谢尔盖・卢基扬年科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495570-30739a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星云X：忒弥斯\",\n    \"author\": \"江波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498216-e02887?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚁群\",\n    \"author\": \"汤问棘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498846-6ad541?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙丘序曲三部曲\",\n    \"author\": \"布莱恩・赫伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498951-099295?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘上之夜\",\n    \"author\": \"宫内悠介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499317-6f647b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"齐马蓝\",\n    \"author\": \"阿拉斯泰尔・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499437-afc295?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿西莫夫：机器人短篇全集\",\n    \"author\": \"阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499548-33b084?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挽救计划\",\n    \"author\": \"安迪・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499665-b03b38?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际战争（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499734-b85d92?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北方反对南方\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500277-f179aa?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河英雄传说（1-8册合集）\",\n    \"author\": \"田中芳树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500589-254eab?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲视\",\n    \"author\": \"彼得・沃茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500607-c516c2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小镇奇谈\",\n    \"author\": \"七月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501054-9c7541?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复写\",\n    \"author\": \"法条遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501207-ebe079?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的序曲（全二册）\",\n    \"author\": \"戴维·G.哈特威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501762-31ce1e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科幻奇幻丛书精选集（套装共60册）\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502281-b20499?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的寒冬\",\n    \"author\": \"A. G. 利德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502296-033c96?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零度分离\",\n    \"author\": \"伊格言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504252-eb8320?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十月之殇\",\n    \"author\": \"劳伦斯・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504270-901ee9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲利普·迪克作品合集（套装共10册）\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506739-bc4b48?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人大师\",\n    \"author\": \"斯坦尼斯瓦夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506775-c81751?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂717\",\n    \"author\": \"拉莱恩・波尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507054-16e098?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波兰科幻泰斗莱姆作品集（共6册）\",\n    \"author\": \"斯坦尼斯瓦夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509085-904148?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"路边野餐\",\n    \"author\": \"阿卡迪・斯特鲁伽茨基/鲍里斯・斯特鲁伽茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509301-218cbd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"詹姆斯·卡梅隆的科幻故事\",\n    \"author\": \"兰德尔・弗雷克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509604-3a44ff?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一生的故事\",\n    \"author\": \"特德・姜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509787-706d6f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河之心三部曲\",\n    \"author\": \"江波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510066-0e0a6d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月球城市\",\n    \"author\": \"安迪・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510057-9e2e52?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁三部曲\",\n    \"author\": \"贝尔纳・韦尔贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510078-224217?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间旅行者年鉴（全四册）\",\n    \"author\": \"安・范德米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510300-1ad927?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末日之书\",\n    \"author\": \"康妮・威利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510297-04da08?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯火管制·警报解除\",\n    \"author\": \"康妮・威利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510384-9917a8?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我这样的机器\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510408-102979?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央星站\",\n    \"author\": \"拉维・提德哈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510486-d048f0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河边缘系列（共五册）\",\n    \"author\": \"迈克・雷斯尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510852-ec8c30?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星之继承者（全3册）\",\n    \"author\": \"詹姆斯˙P.霍根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510915-dadc87?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的星阵（全三册）\",\n    \"author\": \"尼尔・斯蒂芬森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511089-093e8d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于那个人的备忘录\",\n    \"author\": \"小林泰三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511449-1dfbff?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易碎品\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511521-d3a748?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图案人\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511650-6f216a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷·布拉德伯里短篇杰作精选集（全4册）\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512142-18c417?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星河战队\",\n    \"author\": \"罗伯特・海因莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512394-fa353d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的世界\",\n    \"author\": \"汤姆・斯维特里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512406-c95da5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒悬的天空\",\n    \"author\": \"程婧波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513051-7f9308?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来：人类的征途\",\n    \"author\": \"今何在\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513102-f953a2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类重启\",\n    \"author\": \"亚历山大・温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513312-f626c6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电子脑叶\",\n    \"author\": \"野崎惑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513429-a35151?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的宠物是个人\",\n    \"author\": \"艾米・利尔沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513573-07ea89?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫比乌斯时空\",\n    \"author\": \"顾适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004302-23ec80?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造物者之歌\",\n    \"author\": \"狷狂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004242-1d4628?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼吸\",\n    \"author\": \"特德・姜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004239-b39688?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师的盛宴\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003834-8b69c8?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小行星掉在下午\",\n    \"author\": \"沈大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002790-45a845?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆爱玛侬\",\n    \"author\": \"梶尾真治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001452-bb9389?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐贩卖机\",\n    \"author\": \"凯蒂・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本沉没\",\n    \"author\": \"小松左京\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997774-4d5a8c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十月国度\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996484-1dafee?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地心游记（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交错的世界\",\n    \"author\": \"詹姆斯・冈恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994981-3f09d3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变化的位面\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992251-370b13?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八十天环游地球（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992194-dd571f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰上斯芬克斯\",\n    \"author\": \"儒尔・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日永别\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991768-6563a5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光狂想曲\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰坦的女妖\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989920-397d08?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科幻大师威尔斯精选集\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988489-c865c5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水刀子\",\n    \"author\": \"保罗・巴奇加卢皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987310-e009b7?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我想多了吗？\",\n    \"author\": \"新科学家杂志/邱涛涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来机器城\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985534-578df5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进阶\",\n    \"author\": \"天降龙虾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985267-e969dd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦蛇\",\n    \"author\": \"冯达·N.麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984835-beb8f9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球编年史（套装全七册）\",\n    \"author\": \"撒迦利亚・西琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人幸免\",\n    \"author\": \"奥马尔・阿卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巧合制造师\",\n    \"author\": \"约夫・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984553-fa83dc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命引擎系列四部曲\",\n    \"author\": \"菲利普・瑞弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983971-94980a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"御龙记\",\n    \"author\": \"邢立达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053727-1ac22b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略级天使\",\n    \"author\": \"白伯欢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052299-3d2050?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨狗空间\",\n    \"author\": \"卧斧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051516-baea86?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因壶\",\n    \"author\": \"冈岛二人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051378-057ad5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣天秤星\",\n    \"author\": \"彼得・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050919-7cecbb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿瑟·克拉克科幻经典（套装三本）\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050493-92bbe3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星三部曲\",\n    \"author\": \"金・斯坦利・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050118-f7ad9b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困惑的三文鱼\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到敌托邦\",\n    \"author\": \"戈登・范・格尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049440-137c79?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅格时空大冒险（套装全5册）\",\n    \"author\": \"马德琳・英格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涌变\",\n    \"author\": \"丹尼尔・苏亚雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048645-d302a7?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双子杀手\",\n    \"author\": \"泰坦图书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047988-81f498?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自指引擎\",\n    \"author\": \"圆城塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045945-2bd0b3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵魂漫长而黑暗的茶点时间\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045672-dda13f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代体\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045411-ec3f9f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下町火箭\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044826-9f3e2b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉步男\",\n    \"author\": \"小林泰三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044337-709ec2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球无应答\",\n    \"author\": \"王诺诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043929-c25390?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物的终结\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043734-88cbdf?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人的战争\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043710-92e2a9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔兽世界编年史史诗级套装\",\n    \"author\": \"克里斯・梅森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043194-1328e2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高堡奇人\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042756-6a157f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流吧！我的眼泪\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042693-17f1fb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰冻时光之窗\",\n    \"author\": \"尤里・维尼楚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042510-b9497c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤比克\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042339-ab4228?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星孤儿\",\n    \"author\": \"刘洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041823-ce2895?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水形物语\",\n    \"author\": \"吉尔莫・德尔・托罗/丹尼尔・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041067-14f002?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘博士\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041031-2436e1?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上的女儿们\",\n    \"author\": \"珍妮・梅拉米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040929-da7f44?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙丘六部曲\",\n    \"author\": \"弗兰克・赫伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040926-a4d303?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侏罗纪公园（套装全2册）\",\n    \"author\": \"迈克尔・克莱顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039933-4d9ffe?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿梭时间的女孩\",\n    \"author\": \"瑞萨・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039570-f8f47c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩虹尽头\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039390-a9f532?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜袭动物园\",\n    \"author\": \"比尔・布龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039288-50ece6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真名实姓\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039282-aee0e3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空旅行指南\",\n    \"author\": \"尼尔·F. 科明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039180-ff8b0d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈利的十五次人生\",\n    \"author\": \"克莱尔・诺丝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039090-c3abbc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒潮\",\n    \"author\": \"陈楸帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039060-191f82?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的新生\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038802-5275a0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的呼唤\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038523-3217f5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球飞船\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失控的地球\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038337-71ff2e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的回忆\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037857-e299ab?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河界区三部曲\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037371-702f6f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100：科幻之书（套装共4册）\",\n    \"author\": \"安・范德米尔/杰夫・范德米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035952-a150ea?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微宇宙的上帝\",\n    \"author\": \"西奥多・斯特金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035316-79f03b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华氏451\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035076-d9ac4f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束（理想国）\",\n    \"author\": \"丹尼尔・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Year of the Flood\",\n    \"author\": \"Margaret Atwood\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034677-627783?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯癫亚当\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034611-1bb945?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洪水之年\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034530-12e063?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束\",\n    \"author\": \"丹尼尔・凯斯/罗杰・泽拉兹尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034419-a7595b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜂巢\",\n    \"author\": \"刘洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033603-f6beee?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"环界（套装共4册）\",\n    \"author\": \"铃木光司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033525-63923d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利维坦号战记（套装共4册）\",\n    \"author\": \"斯科特・维斯特菲尔德/基斯・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳经典科幻故事套装（全10册）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033261-60db9a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11/22/63\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033240-8ee3ff?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美妙的新世界（企鹅经典）\",\n    \"author\": \"阿道斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032943-1adcbe?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际迷航：红衫\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032931-297bdc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛毛星球\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032928-eec215?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编码宝典（全三册）\",\n    \"author\": \"尼尔・斯蒂芬森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032895-0e9ef5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双星\",\n    \"author\": \"罗伯特・海因莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032667-da2c4f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少数派报告\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032211-328213?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海堡垒\",\n    \"author\": \"江南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032085-57b5df?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间三部曲（套装共3册）\",\n    \"author\": \"C.S.刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032082-f7e4b5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Calculating Stars\",\n    \"author\": \"Mary Robinette Kowal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀敌算法\",\n    \"author\": \"刘宇昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031659-2ab709?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类之子\",\n    \"author\": \"P.D.詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031398-7de6ed?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2061：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超新星纪元\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031290-a6d5bf?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2010：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031092-6ce749?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙超度指南\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云球（第一部）\",\n    \"author\": \"白丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029952-67bb0c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太警察工会\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029757-2a1eee?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来病史\",\n    \"author\": \"陈楸帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029727-5e3866?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029631-0c12fd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷切帝国2\",\n    \"author\": \"安・莱基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029550-009959?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喝掉这 “罐”书\",\n    \"author\": \"阿米殿下\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029373-48052b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒先生\",\n    \"author\": \"亚伦・锡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029370-2862a0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本未来时\",\n    \"author\": \"[美]真澄· 华盛顿 编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029313-b99a3a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类帝国的覆灭\",\n    \"author\": \"常博逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美的真空\",\n    \"author\": \"斯坦尼斯拉夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028944-66d399?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷沙革村的读墨人\",\n    \"author\": \"托马斯・奥尔德・赫维尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028404-d56f56?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九黎传说\",\n    \"author\": \"莫溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028239-ece9b6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人间\",\n    \"author\": \"阿缺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028071-d39120?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“雨果奖”得主郝景芳科幻短篇合集\",\n    \"author\": \"郝景芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028059-8aff1c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿努比斯之门\",\n    \"author\": \"提姆・鲍尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027972-26c9ea?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个人类\",\n    \"author\": \"马克・奥康奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天意\",\n    \"author\": \"钱莉芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027627-cbedf4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航3\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027561-bda2a4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能预警\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027366-bb5633?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜘蛛男孩\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027294-bd7dfc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳科幻经典（套装共9册）\",\n    \"author\": \"凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027225-b52df3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷切帝国：正义号的觉醒\",\n    \"author\": \"安・莱基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027027-452134?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族八景\",\n    \"author\": \"筒井康隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026409-9a007f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法传奇系列（共3册）\",\n    \"author\": \"杰夫・惠勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026412-2b400f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"控梦东京\",\n    \"author\": \"汤介生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026226-d799c7?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海：另一个未知的宇宙\",\n    \"author\": \"弗兰克・施茨廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026199-42f833?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘慈欣短篇科幻小说合集\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025713-6021fa?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"球状闪电\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025551-8733aa?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群\",\n    \"author\": \"弗兰克・施茨廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025491-553cf5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生算法\",\n    \"author\": \"陈楸帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025482-16b6bb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日重现\",\n    \"author\": \"张寒寺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025080-f26716?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全能侦探社\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025050-f8a066?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本合众国\",\n    \"author\": \"彼得・特莱亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024858-d14c17?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Paper Menagerie and Other Stories\",\n    \"author\": \"Ken Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024654-266691?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光尽头\",\n    \"author\": \"珍妮・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024645-7fef5c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三体（读客版）\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024489-51e50e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇动物：格林德沃之罪\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024141-baf465?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间回旋\",\n    \"author\": \"罗伯特・威尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024120-f2c94d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神的九十亿个名字\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024108-f7933b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱博维茨的赞歌\",\n    \"author\": \"小沃尔特・M.米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024009-650207?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自新世界（全2册）\",\n    \"author\": \"贵志祐介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023994-8642d9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之墟\",\n    \"author\": \"宝树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023874-05e0a5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好兆头\",\n    \"author\": \"特里・普拉切特/尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023736-2634aa?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启人\",\n    \"author\": \"艾米・亭特拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023616-224cdd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启人：终结篇\",\n    \"author\": \"艾米・亭特拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023604-fdee86?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的进化者\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023286-1cfd91?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆迷踪\",\n    \"author\": \"启山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023262-aad346?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发条女孩\",\n    \"author\": \"保罗・巴奇加卢皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023145-b737fe?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022938-041ae2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔戒\",\n    \"author\": \"J.R.R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022926-610c0f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流浪地球\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022911-83ea9f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之河\",\n    \"author\": \"晋康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022404-7f7923?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超频交易商\",\n    \"author\": \"谢云宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022317-c95b84?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间不存在\",\n    \"author\": \"韩松/刘宇昆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022311-2d6973?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湿婆之舞\",\n    \"author\": \"江波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022290-a4b08f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Selected Stories of Philip K. Dick\",\n    \"author\": \"Dick, Philip K.; Lethem, Jonathan;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022257-b9df83?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二个明天\",\n    \"author\": \"刘慈欣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022230-561396?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骸骨迷宫\",\n    \"author\": \"弗朗西斯卡・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021174-49eafd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Grace of Kings\",\n    \"author\": \"Ken Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020802-e27019?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Children of Time\",\n    \"author\": \"Adrian Tchaikovsky\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020736-687584?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自12个星球的敌人\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020703-2a774b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与罗摩相会\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020670-98bbf9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的殖民星球\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020514-ac3aac?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林中秘族\",\n    \"author\": \"柳原汉雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020478-8eaca5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿瑟·克拉克经典科幻套装（套装共4册）\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020415-ea2a46?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云图\",\n    \"author\": \"大卫・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020193-f1d6d4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个世界\",\n    \"author\": \"弗朗西斯科 · 沃索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019878-a9c475?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天意（典藏版）\",\n    \"author\": \"钱莉芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019788-2e4c1a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年法（全2册）\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019740-f1d8ac?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫士唐望的教诲\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019626-626739?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全息玫瑰碎片\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019599-8065bf?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本沉没（无删减典藏版）\",\n    \"author\": \"小松左京\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019296-b1094b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河系搭车客指南5部曲\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019305-acbfb5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神们自己\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019239-8d9184?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点遗民\",\n    \"author\": \"刘宇昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019227-8d71a7?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵舰队\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019146-a9411c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佐伊的战争\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018507-59ad7e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩家1号\",\n    \"author\": \"恩斯特・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018486-7ec891?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“破碎的星球”三部曲\",\n    \"author\": \"N.K.杰米辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018225-57f19b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗落的南境（套装共3册）\",\n    \"author\": \"杰夫・范德米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017925-e0c5a3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克隆人科幻两部曲\",\n    \"author\": \"南希・法默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017907-9055bc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类决裂\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017856-f3f6a9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星编年史\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017820-1ccbf2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017796-d79478?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者2：反叛者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017793-8fd6cd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者3：忠诚者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017790-3ab567?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒲公英王朝：七王之战\",\n    \"author\": \"刘宇昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017466-93852e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安德的游戏三部曲\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017406-384a04?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡刻痕\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017325-298780?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗的左手（套装共3册）\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017001-1450cb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人之彼岸\",\n    \"author\": \"郝景芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016878-0a3553?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来镜像\",\n    \"author\": \"刘慈欣/夏笳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016164-7dd1f6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星崛起3：晨色之星\",\n    \"author\": \"皮尔斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014709-afb2b9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩3：神秘人\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014673-5d684d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"6号泵\",\n    \"author\": \"保罗・巴奇加卢皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014658-f7fe68?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"移动迷宫（全三册）\",\n    \"author\": \"詹姆斯・达什纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014538-12dc40?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第13个小时\",\n    \"author\": \"理查德・道许\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014388-3c060e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Morning Star\",\n    \"author\": \"Pierce Brown\",\n    \"link\": \"链接未找到\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格里莎三部曲\",\n    \"author\": \"李・巴杜格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013596-7d4d93?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经漫游者\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013500-119668?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零伯爵：神经漫游者2\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013518-991e5f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启蒙娜丽莎：神经漫游者3\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013488-e4b0f0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让时间停止的女孩\",\n    \"author\": \"罗伯特・富兰克林・杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013245-4e6466?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩天楼\",\n    \"author\": \"J.G.巴拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012369-d8f3e2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星崛起2：黄金之子\",\n    \"author\": \"皮尔斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011604-a69006?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑渊洁成人大长篇小说系列三部曲\",\n    \"author\": \"郑渊洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011334-a9920c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神經喚術士\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011271-f9046e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美妙的新世界\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010503-709f5d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿游戏（套装共3册）\",\n    \"author\": \"苏珊・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010443-27b9b4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫：虫子的世界\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010290-eebe54?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点天空\",\n    \"author\": \"查尔斯・斯特罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010020-b23b00?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"化学家（套装共2册）\",\n    \"author\": \"斯蒂芬妮・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009945-e38c49?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来边缘\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009504-664435?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳科幻经典（套装11册）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009561-49bf9f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：基地七部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009342-12faad?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：帝国三部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009324-3d749b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：机器人五部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009321-283a4f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间移民\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009258-2d1c69?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的图书馆\",\n    \"author\": \"司各特・霍金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009051-91771d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反乌托邦三部曲\",\n    \"author\": \"扎米亚京/阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008736-24eb0d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穹顶之下\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008688-40d3dd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"环太平洋\",\n    \"author\": \"亚历克斯・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008577-cd05c3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒的终结\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007860-8793c1?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八十天环游地球（译文名著精选）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007725-e9294d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降临\",\n    \"author\": \"特德・姜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007533-b1388b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外星人已潜伏地球5000年\",\n    \"author\": \"吉姆・马尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007305-7428fc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天赋者\",\n    \"author\": \"林洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007005-788784?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海伯利安四部曲（套装共4册）\",\n    \"author\": \"丹·西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006975-c613a8?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星崛起\",\n    \"author\": \"皮尔斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006954-0482f0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赡养人类\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006903-d62a19?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星救援\",\n    \"author\": \"安迪·威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006720-999daf?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三体全集\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005103-ff0b5c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗兰肯斯坦\",\n    \"author\": \"玛丽・雪莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005019-1f783a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫六百年\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001329-12e528?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大故宫六百年风云史\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫兽谱\",\n    \"author\": \"小海/夏雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫海错图\",\n    \"author\": \"夏雪著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫看大门\",\n    \"author\": \"维一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫物语\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019347-0c448f?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫修文物\",\n    \"author\": \"萧寒/绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个故宫的离合\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗塔系列（套装共8册）\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015876-92b687?p=8866\",\n    \"category\": \"黑暗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS重构：样式表性能调优\",\n    \"author\": \"Steve Lindstrom\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017682-29904e?p=8866\",\n    \"category\": \"CSS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS禅意花园（修订版）\",\n    \"author\": \"Dave Shea/Mollv E\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866\",\n    \"category\": \"CSS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通CSS（第2版）\",\n    \"author\": \"Andy Budd/Cameron Moll\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866\",\n    \"category\": \"CSS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS设计指南（第3版）\",\n    \"author\": \"Charles Wyke-Smith\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866\",\n    \"category\": \"CSS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子\",\n    \"author\": \"和辻哲郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509535-569088?p=8866\",\n    \"category\": \"孔子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子的故事（全彩美绘本）\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985696-3603c8?p=8866\",\n    \"category\": \"孔子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子的故事\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985597-1b96e0?p=8866\",\n    \"category\": \"孔子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子大历史\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866\",\n    \"category\": \"孔子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绩效使能：超越OKR\",\n    \"author\": \"况阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866\",\n    \"category\": \"OKR\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR：源于英特尔和谷歌的目标管理利器\",\n    \"author\": \"保罗・尼文/本・拉莫尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866\",\n    \"category\": \"OKR\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四的另一面\",\n    \"author\": \"杨念群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030243-59c30f?p=8866\",\n    \"category\": \"五四\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触摸历史与进入五四\",\n    \"author\": \"陈平原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866\",\n    \"category\": \"五四\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊与灰鹰（套装共3册）\",\n    \"author\": \"丽贝卡・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866\",\n    \"category\": \"巴尔干\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻蜂记\",\n    \"author\": \"戴夫・古尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491859-9bd801?p=8866\",\n    \"category\": \"昆虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昆虫记（全10卷）\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510141-5c4c28?p=8866\",\n    \"category\": \"昆虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦理学知性改进论\",\n    \"author\": \"斯宾诺莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福哲学书\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036993-8eb226?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的博弈\",\n    \"author\": \"约翰・戈特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021213-4c529b?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人溺水\",\n    \"author\": \"拉里莎・麦克法夸尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你会杀死那个胖子吗？\",\n    \"author\": \"戴维・埃德蒙兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新认识资本主义三部曲\",\n    \"author\": \"娜奥米・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866\",\n    \"category\": \"地球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙时代：颠覆未来的技术变革与商业图景\",\n    \"author\": \"金相允\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491193-14b1ac?p=8866\",\n    \"category\": \"元宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个李白\",\n    \"author\": \"王充闾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866\",\n    \"category\": \"李白\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李白传\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866\",\n    \"category\": \"李白\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李太白全集\",\n    \"author\": \"李白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866\",\n    \"category\": \"李白\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密腾讯帝国（全6册）\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866\",\n    \"category\": \"腾讯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腾讯传1998-2016\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866\",\n    \"category\": \"腾讯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识社会中的大学\",\n    \"author\": \"杰勒德・德兰迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004371-45c9cb?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的实践\",\n    \"author\": \"野中郁次郎/西原文乃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的方法论\",\n    \"author\": \"野中郁次郎/绀野登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991945-e87f6d?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航船\",\n    \"author\": \"张岱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识大迁移\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019845-51d7de?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识变现\",\n    \"author\": \"萧秋水/剽悍一只猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018279-eb39b7?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小学问\",\n    \"author\": \"黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017124-975340?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群的进化\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866\",\n    \"category\": \"邓巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的亲密关系\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866\",\n    \"category\": \"邓巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业与帝国：英国的现代化历程\",\n    \"author\": \"埃里克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866\",\n    \"category\": \"工业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年变革者\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866\",\n    \"category\": \"梁启超\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章传\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866\",\n    \"category\": \"梁启超\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东亚近代文明史上的梁启超\",\n    \"author\": \"狭间直树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866\",\n    \"category\": \"梁启超\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关羽：神化的《三国志》英雄\",\n    \"author\": \"渡边义浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866\",\n    \"category\": \"关羽\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪资本论+新资本论（套装共2册）\",\n    \"author\": \"托马斯・皮凯蒂/向松祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008418-dbe827?p=8866\",\n    \"category\": \"资本论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑老绘画陈列馆（伟大的博物馆）\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国艺术精神\",\n    \"author\": \"徐复观\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990142-c2cdbd?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国绘画史\",\n    \"author\": \"陈师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界美术名作二十讲\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032403-de23a0?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马博尔盖塞美术馆\",\n    \"author\": \"弗朗切斯卡・卡丝特丽雅・马尔凯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹国家博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿美术史著作经典（共3册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010881-0327d9?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福格行为模型\",\n    \"author\": \"B.J.福格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499539-38be34?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何戒掉坏习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚持，一种可以养成的习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003810-be7b78?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出众，从改变习惯开始\",\n    \"author\": \"马克・列克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精彩人生的一分钟小习惯\",\n    \"author\": \"冲幸子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控习惯\",\n    \"author\": \"詹姆斯・克利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的第八个习惯\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"习惯的力量（图文精编版）\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简主义：活出生命真意\",\n    \"author\": \"乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋论（全本全注全译）\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866\",\n    \"category\": \"王夫之\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船山遗书\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866\",\n    \"category\": \"王夫之\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"入夜识\",\n    \"author\": \"FL-ZC小花/何敬尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498510-74f5f2?p=8866\",\n    \"category\": \"妖怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妖怪大全\",\n    \"author\": \"孙见坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866\",\n    \"category\": \"妖怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈：日本动漫中的传统妖怪\",\n    \"author\": \"周英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866\",\n    \"category\": \"妖怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Redis实战\",\n    \"author\": \"Josiah L. Carlson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021837-2f3bb0?p=8866\",\n    \"category\": \"数据库\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"MongoDB实战\",\n    \"author\": \"Kyle Banker\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021072-264d70?p=8866\",\n    \"category\": \"数据库\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本最危险的书\",\n    \"author\": \"克里斯托夫·克里布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866\",\n    \"category\": \"日耳曼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨：一部自然与文化的历史\",\n    \"author\": \"辛西娅・巴内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866\",\n    \"category\": \"雨\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国的策套装（全五册）\",\n    \"author\": \"许葆云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509265-83b7d0?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋那杯茶，战国这碗酒（套装共4册）\",\n    \"author\": \"南柯月初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"称霸（上下册）\",\n    \"author\": \"刘勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大争之世：战国\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044667-a224f9?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国史料编年辑证（全二册）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025077-d7a712?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾志刚说春秋×说战国（全十二册）\",\n    \"author\": \"贾志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国：典藏套装版（全三册）\",\n    \"author\": \"高兴宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"其实我们一直活在春秋战国（套装共6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲先秦·战国纵横\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005064-2ad184?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死秦始皇\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004158-8201b6?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"始皇帝：秦始皇和他生活的时代\",\n    \"author\": \"鹤间和幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992335-5f1bd7?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦始皇：创造力一统天下\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032160-073320?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一帝秦始皇（上下全2册）\",\n    \"author\": \"王立群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦始皇：穿越现实与历史的思辨之旅\",\n    \"author\": \"吕世浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010635-d004d7?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦崩：从秦始皇到刘邦\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005109-a88027?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国（全新修订版）\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004890-cf3460?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概念与范畴\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989650-26d77f?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观念的力量\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神文时代\",\n    \"author\": \"孙英刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985255-8c1141?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呻吟语（全本全注全译）\",\n    \"author\": \"吕坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才为何成群地来\",\n    \"author\": \"王汎森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱默生和中国\",\n    \"author\": \"钱满素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048462-5cb91a?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五十年来的中国哲学\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044184-1eb4a5?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构主义\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037434-aff26f?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：公民到领主\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开：周濂的100堂西方哲学课\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐公元年\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030429-4057fa?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术陷阱\",\n    \"author\": \"卡尔・贝内迪克特・弗雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能之不能\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510333-472d20?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崛起的超级智能\",\n    \"author\": \"刘锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995242-8be920?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能机器如何思考\",\n    \"author\": \"肖恩・格里什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人驾驶\",\n    \"author\": \"胡迪・利普森/梅尔芭・库曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983344-4b5bf8?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能语音时代\",\n    \"author\": \"詹姆斯・弗拉霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982510-7f3725?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代，你的工作还好吗？\",\n    \"author\": \"渠成/陈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能十万个为什么\",\n    \"author\": \"智能相对论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051492-7ab628?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动手学深度学习\",\n    \"author\": \"阿斯顿・张等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能城市\",\n    \"author\": \"卡洛・拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人诞生\",\n    \"author\": \"稻见昌彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能会抢哪些工作\",\n    \"author\": \"理查德・萨斯坎德/丹尼尔・萨斯坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI的25种可能\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级思维\",\n    \"author\": \"托马斯·W·马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给大家的AI极简史\",\n    \"author\": \"托马斯・拉姆齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043935-90a7c1?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的人工智能\",\n    \"author\": \"布莱・惠特比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036048-56b816?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么\",\n    \"author\": \"朱迪亚・珀尓/达纳・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习入门：基于Python的理论与实现\",\n    \"author\": \"斋藤康毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器人共舞\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云球（第一部）\",\n    \"author\": \"白丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029952-67bb0c?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习：智能时代的核心驱动力量\",\n    \"author\": \"特伦斯・谢诺夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029667-77e164?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗知识：机器认知如何颠覆商业和社会\",\n    \"author\": \"王维嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029484-71f57f?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喝掉这 “罐”书\",\n    \"author\": \"阿米殿下\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029373-48052b?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类帝国的覆灭\",\n    \"author\": \"常博逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能的进化\",\n    \"author\": \"赫克托・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能简史\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028056-700487?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI极简经济学\",\n    \"author\": \"阿杰伊・阿格拉沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026862-49e254?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷脸背后\",\n    \"author\": \"张重生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不会被机器替代的人\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI·未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的极致：漫谈人工智能\",\n    \"author\": \"集智俱乐部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022236-849651?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人叛乱\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021507-5497dc?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代的教育革命\",\n    \"author\": \"王作冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019908-719008?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智社会\",\n    \"author\": \"马文・明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018900-706749?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟人\",\n    \"author\": \"玛蒂娜・罗斯布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018252-b38b81?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习\",\n    \"author\": \"伊恩・古德费洛/约书亚・本吉奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013449-ede60c?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能革命\",\n    \"author\": \"李彦宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012960-18d4fa?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI：人工智能的本质与未来\",\n    \"author\": \"玛格丽特・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那间街角的茶铺\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491775-2dbac0?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书是最对得起付出的一件事\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491988-526c88?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声誉\",\n    \"author\": \"唐诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六神磊磊读金庸\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501339-8defa2?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡澜生活美学系列（套装共9册）\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509004-95a6e4?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全套系中文版陈舜臣随笔集\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001860-bff3b9?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的耳朵\",\n    \"author\": \"周云蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999832-881ef8?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯骥才记述文化五十年（全四册）\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994882-c8931c?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余秋雨作品全集（套装共12册）\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987538-9bf3bc?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评说历史系列丛书（套装共7册）\",\n    \"author\": \"夏坚勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在伏龙芝学军事\",\n    \"author\": \"郝智慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声色野记\",\n    \"author\": \"侯磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是孤独的旅程\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观音在远远的山上\",\n    \"author\": \"伊沙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050556-84c9cc?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张岪与木心\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔杂文全集（全2册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都嘟合集（套装共2册）\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037935-733bef?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落论（坂口安吾系列作品）\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036426-ed96c8?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的精神家园\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034980-0be87d?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下鲍勃·迪伦与老美国\",\n    \"author\": \"格雷尔・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韩寒的杂文们（套装共4册）\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清欢三卷（唯美珍藏版）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寥寥中年事\",\n    \"author\": \"秋色连波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选杂文集（套装八册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国家书\",\n    \"author\": \"本杰明・富兰克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由在高处\",\n    \"author\": \"熊培云\",\n    \"link\": \"链接未找到\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给布里安娜的卡片\",\n    \"author\": \"希瑟・麦克马拉米/威廉・克洛伊尔\",\n    \"link\": \"链接未找到\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大叔\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026829-a09868?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传声筒\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025599-9a708c?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有话说\",\n    \"author\": \"崔永元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"然而，很美：爵士乐之书\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019851-676e46?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键词\",\n    \"author\": \"梁文道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019260-b47d26?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李敖混世宝典三部曲\",\n    \"author\": \"李敖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018234-614afb?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在这复杂世界里\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016401-5810ba?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧山河\",\n    \"author\": \"刀尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"送你一颗子弹\",\n    \"author\": \"刘瑜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014244-82b233?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只特立独行的猪（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011154-36b895?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲看水浒\",\n    \"author\": \"十年砍柴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010191-d34bba?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻抄袭历史\",\n    \"author\": \"宋燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"容忍比自由更重要\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009045-8da7c3?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生有何意义\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们能做什么\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文选\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008550-543725?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福了吗？\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的大多数（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打回原形\",\n    \"author\": \"朱新建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要活的有尊严\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005640-fbc1a6?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年之痒\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我读书少，你可别骗我\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005361-2c92f3?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与看客\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005157-06675a?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑力升级手册\",\n    \"author\": \"杰夫・布朗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024762-dccfd0?p=8866\",\n    \"category\": \"教学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湛庐文化心视界分心系列（套装共4册）\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012798-3a30e1?p=8866\",\n    \"category\": \"教学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生只为守敦煌\",\n    \"author\": \"叶文玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004449-d3ed62?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我心归处是敦煌\",\n    \"author\": \"樊锦诗口述/顾春芳撰写\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：众人受到召唤\",\n    \"author\": \"生活月刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌本纪\",\n    \"author\": \"叶舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033609-6e7d3e?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说敦煌二五四窟\",\n    \"author\": \"陈海涛/陈琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺爱\",\n    \"author\": \"罗伯特・纳伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866\",\n    \"category\": \"疗愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这不是你的错\",\n    \"author\": \"马克・沃林恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866\",\n    \"category\": \"疗愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸神的黄昏\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866\",\n    \"category\": \"太平洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争\",\n    \"author\": \"赫克特·C. 拜沃特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866\",\n    \"category\": \"太平洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时机管理：完美时机的隐秘模式\",\n    \"author\": \"丹尼尔・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866\",\n    \"category\": \"时机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝暮集\",\n    \"author\": \"呼葱觅蒜/白落梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866\",\n    \"category\": \"画册\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：梵高\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866\",\n    \"category\": \"画册\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：莫奈\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866\",\n    \"category\": \"画册\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师原作：塞尚\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026727-604405?p=8866\",\n    \"category\": \"画册\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公平之怒\",\n    \"author\": \"理查德・威尔金森/凯特・皮克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866\",\n    \"category\": \"公平\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思恩格斯文集1~10卷（套装共10册）\",\n    \"author\": \"中共中央马克思恩格斯列宁斯大林著作编译局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001404-2469af?p=8866\",\n    \"category\": \"马克思\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思博士论文\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044634-5ea046?p=8866\",\n    \"category\": \"马克思\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思与《资本论》\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029055-50e394?p=8866\",\n    \"category\": \"马克思\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命：只想陪在你身边\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866\",\n    \"category\": \"狗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是你爸爸\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034359-948c8d?p=8866\",\n    \"category\": \"王朔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看上去很美\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866\",\n    \"category\": \"王朔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿经典作品集（套装10册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家宝藏（全3季）\",\n    \"author\": \"于蕾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟着文物穿越历史\",\n    \"author\": \"张志浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字与文物的故事（套装共4册）\",\n    \"author\": \"许进雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513744-067186?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良渚文明丛书\",\n    \"author\": \"浙江大学出版社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001587-15feaf?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文物中国史\",\n    \"author\": \"中国国家博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文物常识\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023637-a8bb06?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫修文物\",\n    \"author\": \"萧寒/绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋帝国的崛起\",\n    \"author\": \"安东・范德伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷兰海洋帝国史\",\n    \"author\": \"顾卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹：世界最自由城市的历史\",\n    \"author\": \"萧拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040344-803e71?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郁金香热\",\n    \"author\": \"迈克・达什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷沙革村的读墨人\",\n    \"author\": \"托马斯・奥尔德・赫维尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028404-d56f56?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰激凌家族\",\n    \"author\": \"恩斯特・凡德奎斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020658-1a3b66?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心、脑与科学（二十世纪西方哲学经典）\",\n    \"author\": \"约翰・塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要如何衡量你的人生\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日一善（套装全4册）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己和解\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福来自绝对的信任\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036834-77bd7f?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从受欢迎到被需要\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无量之网\",\n    \"author\": \"格里格．布莱登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头的咖啡馆\",\n    \"author\": \"约翰・史崔勒基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和繁重的工作一起修行\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029163-8fb11a?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"箭术与禅心\",\n    \"author\": \"奥根・赫立格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028221-f5198d?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果世事总能得偿所愿\",\n    \"author\": \"余儒海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027333-fd42c9?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跃升\",\n    \"author\": \"威廉・麦独孤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027246-69f74b?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵心小史\",\n    \"author\": \"小德兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025500-9364d3?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用安静改变世界\",\n    \"author\": \"拉塞尔・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023886-49af84?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超意识\",\n    \"author\": \"菲尔图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的天赋\",\n    \"author\": \"肯・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020910-0f5b1c?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卸下心头重担\",\n    \"author\": \"阿鲁老和尚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020496-159444?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹课程\",\n    \"author\": \"海伦・舒曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019197-f582a7?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲密关系：通往灵魂的桥梁\",\n    \"author\": \"克里斯多福・孟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017046-fa06c7?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上来信\",\n    \"author\": \"胡子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲出一个精彩故事\",\n    \"author\": \"麦成辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱是一切的答案\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013560-d25c4d?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长大后的世界\",\n    \"author\": \"罗曼・阿拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012951-aa9637?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太傻天书\",\n    \"author\": \"太傻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的力量（珍藏版）\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被讨厌的勇气\",\n    \"author\": \"岸见一郎/古贺史健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010347-03ea7c?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的朝圣\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009921-87bfcb?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的重建\",\n    \"author\": \"露易丝·海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我所有的朋友都死了（套装共2册）\",\n    \"author\": \"艾弗里・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆天才\",\n    \"author\": \"弗朗西斯卡・吉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866\",\n    \"category\": \"叛逆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲从与叛逆\",\n    \"author\": \"米歇尔・巴德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866\",\n    \"category\": \"叛逆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥中国史（套装全11卷）\",\n    \"author\": \"费正清/崔瑞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011967-9e4705?p=8866\",\n    \"category\": \"剑桥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密\",\n    \"author\": \"麦家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033438-7ed22e?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琥珀（套装共3册）\",\n    \"author\": \"闻人悦阅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032733-795627?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北平行动1925\",\n    \"author\": \"银子辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032163-bc75fe?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽\",\n    \"author\": \"刘天壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029829-454eb2?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面具\",\n    \"author\": \"王小枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028050-fc3745?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装者\",\n    \"author\": \"张勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020640-b71138?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"于无声处\",\n    \"author\": \"高满堂/张浩民/曲怡琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019869-b636c4?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和平饭店\",\n    \"author\": \"肖午/杨树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019752-a8add3?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风筝\",\n    \"author\": \"退色的子弹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017157-972251?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林孤谍\",\n    \"author\": \"约瑟夫・卡农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻雀\",\n    \"author\": \"海飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006330-3fd9d3?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋代中国的改革\",\n    \"author\": \"刘子健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495447-1ca964?p=8866\",\n    \"category\": \"宋代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋之变，1063-1086\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999199-15db8f?p=8866\",\n    \"category\": \"宋代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法罗盘\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866\",\n    \"category\": \"法治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈正义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866\",\n    \"category\": \"法治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭的失落之城\",\n    \"author\": \"斯蒂文・朗西曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491781-3f42cf?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵帝国拜占庭\",\n    \"author\": \"理查德・菲德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭一千年\",\n    \"author\": \"狄奥尼修斯・史塔克普洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔三城记\",\n    \"author\": \"贝塔妮・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史\",\n    \"author\": \"A.A.瓦西列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国大战略\",\n    \"author\": \"爱德华·N.勒特韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凝视上帝\",\n    \"author\": \"西蒙・赫弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499425-8eff3d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代\",\n    \"author\": \"朱迪丝・弗兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500562-7ac52d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金线：织物如何改变了历史？\",\n    \"author\": \"卡西亚・圣克莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501624-793bc8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国文学史全系（套装共5本）\",\n    \"author\": \"李赋宁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508770-b38c29?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我这样的机器\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510408-102979?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·克伦威尔\",\n    \"author\": \"特蕾西・博尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511191-682a44?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绅士肖像：毛姆短篇小说全集4\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511293-da7703?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亨利八世与都铎王朝\",\n    \"author\": \"约翰・马图夏克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511740-575290?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶病年代\",\n    \"author\": \"埃德・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512205-c22f7a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC苏格兰史\",\n    \"author\": \"尼尔・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝帝国：英国海军的兴衰\",\n    \"author\": \"本・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尼亚传奇（果麦经典）\",\n    \"author\": \"C. S. 刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003126-d6c87d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心有猛虎，细嗅蔷薇（果麦经典）\",\n    \"author\": \"西格夫里・萨松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老爸乔治的烦恼\",\n    \"author\": \"马克・哈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001620-a75c71?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时装（牛津通识读本）\",\n    \"author\": \"丽贝卡・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001443-1e6b5d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自深深处（果麦经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000213-ef7333?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国套装（共2册）\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999904-67d00c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希望\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997777-1a2e95?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰晤士：大河大城\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终于\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997603-36513e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"母乳\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997357-beaba0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算了\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996913-f147a5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噩耗\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996463-7a111b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史：从拜占庭建城到君士坦丁堡陷落\",\n    \"author\": \"查尔斯・奥曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996493-f3ded1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄酱之云\",\n    \"author\": \"安娜贝儿・皮彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995293-e7ed6e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺曼征服\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写在身体上\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994540-f64a45?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不一样的文学史\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶的肉身\",\n    \"author\": \"伊夫林・沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985819-c6fc66?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简朴的哲学\",\n    \"author\": \"埃默里斯・韦斯特科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984784-db9149?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰王\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983881-bdebff?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一片树叶的颤动\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054492-7e8119?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔战时文集\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西太后：薇薇安·威斯特伍德\",\n    \"author\": \"薇薇安・威斯特伍德/伊恩・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054321-5d3b9d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"糖与香料\",\n    \"author\": \"萨菲娜・德福奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053121-74a2f5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重逢\",\n    \"author\": \"弗雷德・乌尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静物\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052191-7b68a7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的危机\",\n    \"author\": \"斯科特・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生姜头，你疯了\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051588-88d28b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出防空洞\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051501-efedaf?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赖床的男人\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051324-774754?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴别塔\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050370-722d26?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"E.M.福斯特文集（套装共8册）\",\n    \"author\": \"E.M.福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049557-ddb05b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困惑的三文鱼\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚女王：帝国女统治者的秘密传记（全2册）\",\n    \"author\": \"茱莉娅・贝尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类的认识（校勘全译本）\",\n    \"author\": \"约翰・洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（纪念版）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“尤利西斯”三部曲（套装共3册）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049059-191e8e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书店\",\n    \"author\": \"佩内洛普・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048501-57d0d1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蓝花\",\n    \"author\": \"佩内洛普・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048498-7b3dc7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔纪实作品全集（套装共3册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔小说全集（套装共6册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047130-74f0d5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅰ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅱ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅱ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英殖民帝国\",\n    \"author\": \"阿尔弗雷德・考尔德科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠峰史诗\",\n    \"author\": \"荣赫鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萝西与苹果酒\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书（果麦经典）\",\n    \"author\": \"鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045132-c19a7a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日升之处\",\n    \"author\": \"A.W.金莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（果麦经典）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044751-279929?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一间自己的房间（作家榜经典文库）\",\n    \"author\": \"维吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044304-7ba850?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温莎王朝\",\n    \"author\": \"汤姆・利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代的她们\",\n    \"author\": \"杰奎琳・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆书籍史话\",\n    \"author\": \"大卫・皮尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造大英帝国\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国男孩\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱德华一世\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫年纪事（译文经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041763-ddc224?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔杂文全集（全2册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的流亡者\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国边缘\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040506-d747d7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单日人，双日人\",\n    \"author\": \"菲莉西亚・叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039492-8a2857?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海浪（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039150-6a4545?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游泳课\",\n    \"author\": \"克莱尔・富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038988-b719e8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥兰多（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038967-31be31?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达洛卫夫人（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038763-358ae0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗勒希（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038658-5b950b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小说与小说家（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038409-cb997a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：百万叛变的今天\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世间之路\",\n    \"author\": \"V. S. 奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038304-7876a3?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼罗河上的惨案（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037980-5f4597?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（图注本套装共9册）\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038379-15f688?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯通与骑士伙伴\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037887-c76d6d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（译文经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037821-bebf0d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂消息\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037815-c1d2ef?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抵达之谜\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037674-586f4c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"模仿者\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037554-1eae8b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民选举\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037491-26ed83?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童分析的故事\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕司沃斯先生的房子\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037305-c3a875?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方快车谋杀案（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037125-3935f9?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈保尔家书\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"T.S.艾略特传\",\n    \"author\": \"林德尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皆大欢喜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米德尔马契（名著名译丛书）\",\n    \"author\": \"乔治・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035091-250be1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著名译丛书）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035043-4a5759?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象：劳伦斯诗集\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（名著名译丛书）\",\n    \"author\": \"爱米丽・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034848-f289fc?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（名著名译丛书）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034719-d1f933?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Goblin Market\",\n    \"author\": \"Rossetti, Christina; Rackham, Arthur;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海鲸梦\",\n    \"author\": \"伊恩・麦奎尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033870-13a526?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从月亮来的男孩\",\n    \"author\": \"安德鲁・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033777-207e83?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（企鹅经典）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033369-82ddd0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌有乡\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033015-db0e92?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗昭昭（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032988-e8826f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美妙的新世界（企鹅经典）\",\n    \"author\": \"阿道斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032943-1adcbe?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教堂尖塔（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032922-ca9637?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特拉法尔加战役\",\n    \"author\": \"朱利安·S.科贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032850-2b6466?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品彻·马丁（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032826-5e81ee?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独角兽\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032814-2310b8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物农场（果麦经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032811-2781ba?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑王子\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032775-2d8d02?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒切尔夫人\",\n    \"author\": \"乔纳森・艾特肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032679-f97385?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海，大海\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032586-efa32a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国下层阶级的愤怒\",\n    \"author\": \"戴伦・麦加维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032574-2a5e18?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦文学小史\",\n    \"author\": \"埃洛伊丝・米勒/萨姆・乔迪森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊丽莎白女王\",\n    \"author\": \"艾莉森・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文具盒里的时空漫游\",\n    \"author\": \"詹姆斯・沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032310-afb48d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽新世界（译文经典）\",\n    \"author\": \"奥尔德斯・赫胥黎\",\n    \"link\": \"链接未找到\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对笑喷之弃业医生日志\",\n    \"author\": \"亚当・凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打字机上的缪斯\",\n    \"author\": \"杰西・波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032046-bcf6eb?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游泳回家\",\n    \"author\": \"德博拉・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031884-0e53c6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寒鸦之夏\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031833-e6bd46?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物农场（译文经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031764-29356d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英格兰，英格兰\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031614-a56b26?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凝视太阳\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031605-7148b5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2061：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结的感觉\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031236-897f5d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧悲剧全集（套装共6册）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生三部曲\",\n    \"author\": \"派特・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030570-38049c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国诗歌选集（珍藏版）（套装上下册）\",\n    \"author\": \"王佐良等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030003-5f317b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英伦魔法师\",\n    \"author\": \"苏珊娜・克拉克\",\n    \"link\": \"链接未找到\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10½章世界史\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029607-91f650?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到灯塔去（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028380-bf539a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"项狄传\",\n    \"author\": \"劳伦斯・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027735-41f0a8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惊险的浪漫（午夜文库）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027543-dfcd65?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多情客游记\",\n    \"author\": \"劳伦斯・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027396-557075?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋（果麦经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027141-8e7a86?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弃儿汤姆·琼斯的历史（译文名著典藏 ）\",\n    \"author\": \"亨利・菲尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026775-06d1c5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名利场（译文名著典藏）\",\n    \"author\": \"萨克雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026769-c1d7b8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨孙历险记（译文名著典藏）\",\n    \"author\": \"笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026760-cc5987?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（译文名著典藏）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026733-0e7678?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·考坡菲（译文名著典藏）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026742-07aca9?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（译文名著典藏）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026730-bb23d6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木麻黄树\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026430-c550f5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客厅里的绅士\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026385-b08e93?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨匠与杰作\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026352-cee4c7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026358-54bc9d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚四大悲剧（译文名著典藏）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026406-61388c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美\",\n    \"author\": \"扎迪・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026232-fda9af?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫术师\",\n    \"author\": \"约翰・福尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025632-4de61f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Room with a View\",\n    \"author\": \"E. M. Forster\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025248-21fc37?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贪婪的七宗罪\",\n    \"author\": \"斯图尔特・西姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025005-486788?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿帝国\",\n    \"author\": \"莉齐・克林汉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024939-01ef66?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光尽头\",\n    \"author\": \"珍妮・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024645-7fef5c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国的崛起与衰落\",\n    \"author\": \"劳伦斯・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024621-eefeab?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民自黑的英国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（果麦经典）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024498-232c2b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光边缘的男人\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024444-7f3cf5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人爱我\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼叫助产士\",\n    \"author\": \"珍妮弗・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024336-bc2744?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解一张照片\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞女孩\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日不落帝国兴衰史（全五册）\",\n    \"author\": \"约翰・布莱尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024240-d3762e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇动物：格林德沃之罪\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024141-baf465?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海面之下\",\n    \"author\": \"克莱尔・道格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023733-847d94?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好兆头\",\n    \"author\": \"特里・普拉切特/尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023736-2634aa?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Fantastic Beasts and Where to Find Them\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023595-b5827d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给狮子剥皮\",\n    \"author\": \"克莱尔・科克-斯塔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022968-b9aee4?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰女王的悲剧\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧众神\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022500-26f71b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国史（全3卷）\",\n    \"author\": \"西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022530-d45c41?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物既伟大又渺小\",\n    \"author\": \"吉米・哈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022239-aef96c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生梦\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021705-6e4f6d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赎罪\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021276-1a6b77?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童法案\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021282-f30bee?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯讲英国史（全彩图文版）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020844-2bcd58?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国人：国家的形成1707-1832\",\n    \"author\": \"琳达・科利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019965-6c0b00?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜牙\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019632-82cbc6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"染匠之手\",\n    \"author\": \"奥登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019410-f0261a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狼厅\",\n    \"author\": \"希拉里・曼特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019317-1aba3e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提堂\",\n    \"author\": \"希拉里・曼特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019320-e2263e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的王国\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019212-e7ca0b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌鸦之城：伦敦，伦敦塔与乌鸦的故事\",\n    \"author\": \"博里亚・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠年\",\n    \"author\": \"克莱尔・弗尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017883-83d4c9?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂自传\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017580-d6407e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的建筑\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016800-10b9f5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC世界史\",\n    \"author\": \"安德鲁・玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达洛卫夫人（译文名著精选）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015435-2a37de?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简GDP史\",\n    \"author\": \"黛安娜・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015075-588dba?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：平等权利\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015015-402a9f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"染血的王冠：不列颠王权和战争史\",\n    \"author\": \"赵恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014103-2b0300?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长日留痕\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013677-6e7b44?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大博弈：英俄帝国争霸战\",\n    \"author\": \"彼得・霍普柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅课\",\n    \"author\": \"汤姆・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物庄园\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013113-3cbe8f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝇王（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012984-413b5f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺书店\",\n    \"author\": \"维罗妮卡・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012699-8a0f8a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛虻\",\n    \"author\": \"艾捷尔・丽莲・伏尼契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012474-cb8e19?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金雀花王朝\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝伦与露西恩（插图本）\",\n    \"author\": \"托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011979-e75e80?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尼\",\n    \"author\": \"安德鲁・麦克尔・赫尔利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011778-9792d8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤儿列车\",\n    \"author\": \"克里斯蒂娜・贝克・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011670-4e3c98?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国通史（套装共6册）\",\n    \"author\": \"钱乘旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美妙的新世界\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010503-709f5d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业与帝国：英国的现代化历程\",\n    \"author\": \"埃里克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·奥斯丁小说全集\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010251-5f85e0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮和六便士\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010029-35b91e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偶发空缺\",\n    \"author\": \"J.K.罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009801-91629b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看，这个世界\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009435-6a6ded?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息\",\n    \"author\": \"凯特・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009015-52993b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻欢作乐\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008001-2f0063?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银行家的情人\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007959-2bd28b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺与玫瑰\",\n    \"author\": \"王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007755-dc10b4?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十九级台阶\",\n    \"author\": \"约翰・巴肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个世界帝国及其西征系列（共三册）\",\n    \"author\": \"布赖恩・莱弗里/汤姆・霍兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗领域\",\n    \"author\": \"薇儿·麦克德米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你知道或不知道的英国史\",\n    \"author\": \"贺桂金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案集（经典译林）\",\n    \"author\": \"柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004821-0d75f5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉家天下（1-4册）\",\n    \"author\": \"清秋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉兴亡四百年2\",\n    \"author\": \"李金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994534-e30d7c?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉兴亡四百年\",\n    \"author\": \"李金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991453-c67787?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国（套装共2册）\",\n    \"author\": \"萧然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：帝国建立与政权巩固\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：王朝鼎盛与命运转折\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白日薄西山：大汉帝国的衰亡\",\n    \"author\": \"徐兴无\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007989-fae9b9?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉王朝的三张脸谱（全三册）\",\n    \"author\": \"飘雪楼主\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006753-0645a8?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里曾经是汉朝（套装共6册）\",\n    \"author\": \"月望东山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006366-f6a436?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉朝大历史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006039-4817a7?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将来的你，一定会感谢现在拼命的自己\",\n    \"author\": \"汤木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866\",\n    \"category\": \"努力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的匠人（全20册套装）\",\n    \"author\": \"知了青年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007389-02fb3c?p=8866\",\n    \"category\": \"匠人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己是一生浪漫的开始\",\n    \"author\": \"静听风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513075-1286b7?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个人可持续发展精要\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051120-d9b6a3?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不疲惫的精力管理术\",\n    \"author\": \"葛西纪明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046434-95610f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造时间\",\n    \"author\": \"杰克・纳普/约翰・泽拉茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Everything Is F*cked\",\n    \"author\": \"Mark Manson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑减压的子弹笔记术\",\n    \"author\": \"电脑玩物站长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式成长\",\n    \"author\": \"惠特尼・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远离迷茫，从学会赚钱开始\",\n    \"author\": \"曾鹏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维精进\",\n    \"author\": \"赵帅/王姗姗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030216-90e1ab?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长\",\n    \"author\": \"亚力山德拉・卡弗拉科斯/凯瑟琳・明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜出：非掠夺社交智慧与共享式领导力\",\n    \"author\": \"琳达・科汗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029514-754530?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你只是看起来很专注\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习：用更短的时间达到更佳效果和更好成绩\",\n    \"author\": \"亚当・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆境成长：坚韧人格养成手册\",\n    \"author\": \"小乔治·S.埃弗利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子弹笔记\",\n    \"author\": \"赖德・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025593-0c0c06?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要事第一\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024057-5976ea?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的要素\",\n    \"author\": \"西蒙・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022251-1bcbdc?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让问题到你为止\",\n    \"author\": \"博恩・崔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控：开启不疲惫、不焦虑的人生\",\n    \"author\": \"张展晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021903-0cf2b0?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命向前\",\n    \"author\": \"迈克尔・海厄特/丹尼尔・哈卡维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒工作\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成长到死\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020892-1a7715?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力\",\n    \"author\": \"野口真人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全神贯注的方法\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉：我们为什么无从推理，却能决策\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平均的终结\",\n    \"author\": \"托德・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019251-a6dba1?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女神进化论\",\n    \"author\": \"寺主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019086-4cbd0e?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键20小时，快速学会任何技能！\",\n    \"author\": \"乔希・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018735-508fa6?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把时间当作朋友（第3版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功，动机与目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠青年\",\n    \"author\": \"Susan Kuang\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017703-338a87?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"DISCOVER自我探索（全彩）\",\n    \"author\": \"李海峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017607-237846?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力大师（原书第2版）\",\n    \"author\": \"约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017205-c1655c?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从行动开始\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016650-20e429?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一年的8760小时\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天学点时间整理术\",\n    \"author\": \"特瑞博・伍兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015936-2a3d9f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光速成长\",\n    \"author\": \"林晅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015888-f1ac25?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015783-caef80?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英系列（共五册）\",\n    \"author\": \"高杉尚孝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"持续学习和行动让人生逆袭（套装9册）\",\n    \"author\": \"廖珺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015714-57fbb1?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单核工作法图解\",\n    \"author\": \"史蒂夫・诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015606-53a35f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"靠谱\",\n    \"author\": \"大石哲之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键责任\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉田医生哈佛求学记\",\n    \"author\": \"吉田穗波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简化\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好工作，好好生活\",\n    \"author\": \"克里斯汀・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长\",\n    \"author\": \"卡罗尔・德韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014808-fa0a34?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好学习\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014799-edd4b9?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破自我的标签\",\n    \"author\": \"陈虎平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别再用勤奋掩饰你的懒惰\",\n    \"author\": \"阿何\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁说你不能坚持\",\n    \"author\": \"程龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自制力\",\n    \"author\": \"高原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最重要的事，只有一件\",\n    \"author\": \"加里・凯勒/杰伊・帕帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精力管理\",\n    \"author\": \"吉姆・洛尔/托尼・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009036-6c36ba?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Ego Is the Enemy\",\n    \"author\": \"Ryan Holiday\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006948-f3c958?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半熟家庭\",\n    \"author\": \"金义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511065-6c9ffd?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原生家庭生存指南\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051150-577b7b?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出剧情\",\n    \"author\": \"李雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平衡的智慧\",\n    \"author\": \"帕特・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030681-682c4a?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这不是你的错\",\n    \"author\": \"马克・沃林恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄代表作\",\n    \"author\": \"河合隼雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越原生家庭（原书第4版）\",\n    \"author\": \"罗纳德・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023712-fa74ce?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爸爸军团\",\n    \"author\": \"布鲁斯・费勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017754-627360?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育男孩（典藏版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次当奶爸\",\n    \"author\": \"马克・伍兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007575-ad564d?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小别离\",\n    \"author\": \"鲁引弓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康零食：知道这些就够了\",\n    \"author\": \"戴尔・沃勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866\",\n    \"category\": \"零食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的天\",\n    \"author\": \"子日山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听你的\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野\",\n    \"author\": \"巫哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终点的少女\",\n    \"author\": \"柚木麻子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045948-748ac8?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情书\",\n    \"author\": \"岩井俊二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033849-0749ba?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲伤逆流成河\",\n    \"author\": \"郭敬明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032358-7743cd?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏摩山谷\",\n    \"author\": \"安妮宝贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032019-6efc6c?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十几岁，没有十年\",\n    \"author\": \"孙晴悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"素年锦时\",\n    \"author\": \"安妮宝贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031728-e066c5?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少女，请回答\",\n    \"author\": \"张晓晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女少年\",\n    \"author\": \"秋微\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028980-691d01?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿为西南风\",\n    \"author\": \"闻人可轻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027759-a931a4?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击壤歌\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027555-f77b84?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时擦\",\n    \"author\": \"笙离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027348-1f5ea8?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些伤不起的年轻人\",\n    \"author\": \"二白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027111-bfde42?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身战争\",\n    \"author\": \"韩十三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025608-1cb333?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日终曲\",\n    \"author\": \"安德烈・艾西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024519-7dbbd6?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯犬少年的天空\",\n    \"author\": \"里则林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024507-39618c?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Pretty Little Liars\",\n    \"author\": \"Shepard, Sara\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023334-f0b621?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年的你，如此美丽\",\n    \"author\": \"玖月晞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022845-17524c?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世事如刀，我来领教\",\n    \"author\": \"房昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022374-2e403d?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向着光亮那方\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020682-46d971?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匆匆那年\",\n    \"author\": \"九夜茴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020661-848463?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如丧\",\n    \"author\": \"高晓松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，旧时光（全三册）\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016317-8d59ff?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪咖的自我修养\",\n    \"author\": \"闫景歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦田里的守望者\",\n    \"author\": \"杰罗姆・大卫・塞林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010602-c11552?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一粒红尘\",\n    \"author\": \"独木舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009345-5d9d0b?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西决\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008517-20a0f1?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东霓\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008514-7dfcb0?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芙蓉如面柳如眉\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008502-5170e3?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三重门\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008460-b410d1?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你的青春不负梦想\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008100-18736d?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也会爱上别人的\",\n    \"author\": \"自由极光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006873-68fdf4?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁的青春不迷茫\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的我们\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我亦飘零久\",\n    \"author\": \"独木舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005637-3597fa?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄庭坚词集（词系列）\",\n    \"author\": \"黄庭坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033456-e77dbf?p=8866\",\n    \"category\": \"古典文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温庭筠词集·韦庄词集（词系列）\",\n    \"author\": \"温庭筠/韦庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866\",\n    \"category\": \"古典文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常人文课（共5册）\",\n    \"author\": \"泰吉万・帕丁格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506901-fb7ee6?p=8866\",\n    \"category\": \"日常\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动机与人格\",\n    \"author\": \"亚伯拉罕・马斯洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495429-a9bbbc?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出人格陷阱\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000846-80193c?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让性格害了你\",\n    \"author\": \"邢群麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的眼界，决定你的全世界\",\n    \"author\": \"西武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034974-0a7e53?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（精装纪念版）\",\n    \"author\": \"张文成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031155-58fe32?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商：我们该如何应对坏事件\",\n    \"author\": \"保罗・史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点（作家榜经典文库）\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势将至，未来已来\",\n    \"author\": \"王鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025284-f820b9?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的人格\",\n    \"author\": \"黄国胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024195-e4abf0?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24重人格（十周年纪念版）\",\n    \"author\": \"卡梅伦・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007740-d16ede?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以武论道：李小龙的功夫心法（套装共5册）\",\n    \"author\": \"李小龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866\",\n    \"category\": \"功夫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人四千年（全两册）\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866\",\n    \"category\": \"犹太人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲的失乐园\",\n    \"author\": \"阿里埃勒・萨巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866\",\n    \"category\": \"犹太人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊文明的光芒\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499062-3dfd8c?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊史（全两册）\",\n    \"author\": \"查尔斯・奥曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996343-d966c9?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希波战争\",\n    \"author\": \"G.W.考克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983626-e7197b?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马技术史（贝克知识丛书）\",\n    \"author\": \"赫尔穆特・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马军事史（贝克知识丛书）\",\n    \"author\": \"莱昂哈特・布克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051891-e1f24d?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊人\",\n    \"author\": \"伊迪丝・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典的胜利\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争\",\n    \"author\": \"唐纳德・卡根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032625-63c026?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊奇迹的观念基础\",\n    \"author\": \"陈中梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032247-8b04d4?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷马3000年\",\n    \"author\": \"亚当・尼科尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027369-65947b?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想国（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027216-6c81c9?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争史（详注修订本）\",\n    \"author\": \"修昔底德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026922-8375ca?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史（详注修订本）\",\n    \"author\": \"希罗多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026571-4204f0?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊人的故事（全三册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023988-a42df2?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿提卡之夜（1-5卷）\",\n    \"author\": \"奥卢斯・革利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010140-904f27?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁启超修身三书\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996163-d09e12?p=8866\",\n    \"category\": \"儒家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瞩望新轴心时代\",\n    \"author\": \"汤一介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030210-9be232?p=8866\",\n    \"category\": \"儒家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透《大学中庸》\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029907-e28d12?p=8866\",\n    \"category\": \"儒家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866\",\n    \"category\": \"儒家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：基础学习篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866\",\n    \"category\": \"操作系统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不放弃\",\n    \"author\": \"唐纳德・特朗普/梅瑞迪斯・麦基沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866\",\n    \"category\": \"特朗普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超现实\",\n    \"author\": \"杰里米・拜伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513297-854053?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破译人类的明天\",\n    \"author\": \"迈克尔・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的行为\",\n    \"author\": \"托马斯・科洛波洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"治愈未来\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人机共生\",\n    \"author\": \"托马斯・达文波特/茱莉娅・柯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到敌托邦\",\n    \"author\": \"戈登・范・格尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049440-137c79?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能城市\",\n    \"author\": \"卡洛・拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能会抢哪些工作\",\n    \"author\": \"理查德・萨斯坎德/丹尼尔・萨斯坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI的25种可能\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技失控\",\n    \"author\": \"温德尔・瓦拉赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级思维\",\n    \"author\": \"托马斯·W·马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来版图\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空荡荡的地球\",\n    \"author\": \"达雷尔・布里克/约翰・伊比特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"18个未来进行时\",\n    \"author\": \"吉姆・阿尔- 哈里里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三次浪潮\",\n    \"author\": \"阿尔文・托夫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个人类\",\n    \"author\": \"马克・奥康奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来50年\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027123-c3d4eb?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简未来史\",\n    \"author\": \"克里斯托弗・巴纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025617-432176?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四维人类\",\n    \"author\": \"劳伦斯・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟现实：万象的新开端\",\n    \"author\": \"杰伦・拉尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023481-c4b2a4?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不会被机器替代的人\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级智能\",\n    \"author\": \"尼克・波斯特洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的明天\",\n    \"author\": \"席里尔・迪翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器70年\",\n    \"author\": \"徐曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI·未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资源革命\",\n    \"author\": \"斯蒂芬・赫克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微粒社会\",\n    \"author\": \"克里斯托夫・库克里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019575-e3c742?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控未来系列（套装共6册）\",\n    \"author\": \"伊藤穰一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018420-d99af9?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟人\",\n    \"author\": \"玛蒂娜・罗斯布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018252-b38b81?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越人类\",\n    \"author\": \"伊芙・赫洛尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017697-b3e68f?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点临近\",\n    \"author\": \"雷・库兹韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017070-174382?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极复制\",\n    \"author\": \"李智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复杂：信息时代的连接、机会与布局\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014691-5f5ec3?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The 100-Year Life\",\n    \"author\": \"Lynda Gratton / Andrew Scott\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013686-e885a9?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类2.0：在硅谷探索科技未来\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代\",\n    \"author\": \"杰瑞・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009093-321621?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能\",\n    \"author\": \"李开复/王咏刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2052：未来四十年的中国与世界\",\n    \"author\": \"乔根・兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必然\",\n    \"author\": \"凯文・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新一轮产业革命\",\n    \"author\": \"亚力克・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔兽世界官方小说合集典藏版（全23册）\",\n    \"author\": \"理查德·A.纳克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034209-86637e?p=8866\",\n    \"category\": \"魔兽\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾人生精讲系列（套装共5册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029634-7b17a3?p=8866\",\n    \"category\": \"南怀瑾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结所有和平的和平\",\n    \"author\": \"戴维・弗罗姆金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999736-5c71a4?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大征服\",\n    \"author\": \"休・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中东史（套装共3册）\",\n    \"author\": \"哈全安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敌人与邻居\",\n    \"author\": \"伊恩・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列的诞生（全四册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯的劳伦斯\",\n    \"author\": \"斯科特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经与利剑\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无规则游戏\",\n    \"author\": \"塔米姆・安萨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的早年岁月\",\n    \"author\": \"苏尔坦・本・穆罕默德・卡西米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲的失乐园\",\n    \"author\": \"阿里埃勒・萨巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越百年中东\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金龙鱼背后的粮油帝国\",\n    \"author\": \"余盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039426-863024?p=8866\",\n    \"category\": \"粮食、油脂及植物蛋白工程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·拉格斐传\",\n    \"author\": \"洛朗・阿朗-卡龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500028-a96942?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编剧的艺术\",\n    \"author\": \"拉约什・埃格里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994639-027e11?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何假装懂音乐\",\n    \"author\": \"王硕/储智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992167-7c7309?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原宿牛仔\",\n    \"author\": \"W. 大卫・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053643-0a120a?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家的书\",\n    \"author\": \"考薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买买买的乐趣\",\n    \"author\": \"山内麻里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043890-8d74b4?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式优雅\",\n    \"author\": \"弗雷德里克・维塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基本穿搭\",\n    \"author\": \"大山旬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028179-6a7a86?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈：所有问题都是一场赛局\",\n    \"author\": \"川西谕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509700-04f1de?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的复杂性\",\n    \"author\": \"罗伯特・阿克塞尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的进化\",\n    \"author\": \"罗伯特・艾克斯罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021090-b0978a?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击败庄家\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒的困境\",\n    \"author\": \"威廉姆・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妙趣横生博弈论（珍藏版）\",\n    \"author\": \"阿维纳什・迪克西特/巴里・奈尔伯夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014160-37866b?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用博弈的思维看世界\",\n    \"author\": \"蒋文华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014109-0ed381?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论的诡计\",\n    \"author\": \"王春永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论平话\",\n    \"author\": \"王则柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活学活用博弈论\",\n    \"author\": \"詹姆斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全中国最穷的小伙子发财日记\",\n    \"author\": \"重庆老康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866\",\n    \"category\": \"发财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜规则：中国历史中的真实游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006486-e0c136?p=8866\",\n    \"category\": \"潜规则\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（果麦经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法定幸福\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032517-74cfb2?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人3：无境之爱\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Calculating Stars\",\n    \"author\": \"Mary Robinette Kowal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯禁书三部曲（全新修订版）\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031536-958b1b?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人鼠之间（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031245-271805?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁克林的荒唐事（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031161-0663b4?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学、通俗文化和社会\",\n    \"author\": \"利奥・洛文塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030576-bd1f90?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"川端康成至美典藏全集\",\n    \"author\": \"川端康成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030369-6372c2?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的礼物\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029586-943dca?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝗灾之日\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029325-063152?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事（译文名著典藏）\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026763-3a2c91?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（绘图珍藏本）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"种玫瑰的男人\",\n    \"author\": \"奥杜・阿娃・奥拉夫斯多蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025083-feb78a?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全6册）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025002-6ad075?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿瑟·黑利系列（套装共6册）\",\n    \"author\": \"阿瑟・黑利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024852-a25776?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯纳黛特，你要去哪\",\n    \"author\": \"玛利亚・森普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024531-bf243b?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊镇\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024174-567c22?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故园风雨后\",\n    \"author\": \"伊夫林・沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024093-fba3b7?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北回归线\",\n    \"author\": \"亨利・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023901-5575f9?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独抒己见\",\n    \"author\": \"弗拉基米尔・纳博科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023283-fe22ec?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大雪将至\",\n    \"author\": \"罗伯特・泽塔勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022254-844fb9?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣橱里的女孩\",\n    \"author\": \"弗朗丝・盖兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021819-929df9?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神枪手迪克\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021288-92f5e6?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解离的真实\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019611-2b333c?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫中的将军\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016203-716374?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波吉亚家族\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016059-1a1324?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人2：重返荒原\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015192-9058db?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"One Day\",\n    \"author\": \"David Nicholls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015183-e28af6?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到大地尽头\",\n    \"author\": \"大卫・格罗斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015066-bcbe3d?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜之子\",\n    \"author\": \"萨曼・鲁西迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014967-759eef?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林孤谍\",\n    \"author\": \"约瑟夫・卡农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复明症漫记\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014748-8511f3?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠穆朗玛之魔（套装共3册）\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014637-ae4341?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间停止的那一天\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014655-debad3?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫里哀先生传\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013956-e85b77?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃亡\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013950-1259d9?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君士坦丁堡最后之恋\",\n    \"author\": \"米洛拉德・帕维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013839-6df24f?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1984\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013032-d786be?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无欲的悲歌\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013011-411202?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛苦的中国人\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012993-90c384?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨周翰作品集（全6卷）\",\n    \"author\": \"杨周翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012693-67e2e6?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的悲鸣\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摘星星的男孩\",\n    \"author\": \"约翰・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘鸟（修订版）\",\n    \"author\": \"考琳·麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记\",\n    \"author\": \"保罗·奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险的未来\",\n    \"author\": \"王和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991489-b536e1?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险自选手册\",\n    \"author\": \"许春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大额保单操作实务\",\n    \"author\": \"曾祥霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049410-6a8850?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该买保险\",\n    \"author\": \"刘彦斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044769-0ccba8?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本保险指南\",\n    \"author\": \"槽叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马家辉家行散记（共3册）\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984712-10fe3b?p=8866\",\n    \"category\": \"香港随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戒糖：改变一生的科学饮食法\",\n    \"author\": \"初夏之菡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个健康吃货的自我修养（共4册）\",\n    \"author\": \"威廉・李博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误解的盐\",\n    \"author\": \"詹姆斯・迪尼科兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的危机\",\n    \"author\": \"玛丽安・麦克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"川菜\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼米之乡\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人超会吃\",\n    \"author\": \"王恺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508890-237674?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单（全本全注全译）\",\n    \"author\": \"陈伟明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你想知道的生酮饮食错误\",\n    \"author\": \"米尔萨德・哈西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄油：一部丰富的历史\",\n    \"author\": \"约翰・马图夏克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511737-ace1ac?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威士忌原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪原来是这么回事儿\",\n    \"author\": \"特里斯坦・西卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度营养\",\n    \"author\": \"凯瑟琳・沙纳汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酒鬼与圣徒\",\n    \"author\": \"劳伦斯・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖22：多谢款待！\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044475-b4a83f?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖16：大满足！就爱锅料理\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖08：自给自足指南书\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖04：肉!肉!肉!\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖07：大丈夫生于厨房\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖03：食鲜最高\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的泡面\",\n    \"author\": \"食帖番组主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040059-b9c317?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐糖脂\",\n    \"author\": \"迈克尔・莫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037266-955677?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉酒简史\",\n    \"author\": \"马克・福赛思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是你吃出来的\",\n    \"author\": \"夏萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会吃饭\",\n    \"author\": \"珍・克里斯特勒/艾莉莎・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷物大脑\",\n    \"author\": \"戴维・珀尔马特/戴维・珀尔马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宴与家宴\",\n    \"author\": \"王宣一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长寿的基因\",\n    \"author\": \"普雷斯顿・埃斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼翅与花椒\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈克尔·波伦“饮食觉醒”系列（套装共3册）\",\n    \"author\": \"迈克尔・波伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米，面，鱼\",\n    \"author\": \"马特・古尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006654-03c347?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·罗杰斯的大预测\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球化简史\",\n    \"author\": \"杰弗里・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499440-2ab9ca?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第一辑（套装共4册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第二辑（套装共6册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长危机\",\n    \"author\": \"丹比萨・莫约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界不是平的\",\n    \"author\": \"简世勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级版图\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016413-98fcdd?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1493：物种大交换开创的世界史\",\n    \"author\": \"查尔斯・曼恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵程序设计丛书：Java进阶高手（套装共8册）\",\n    \"author\": \"沃伯顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵前端核心知识进阶系列（套装全10册）\",\n    \"author\": \"韦鲁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510897-922ded?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"程序员编程语言经典合集（共5册）\",\n    \"author\": \"兰斯・尼塞斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996589-3e3123?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画算法\",\n    \"author\": \"魏梦舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动手学深度学习\",\n    \"author\": \"阿斯顿・张等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python高性能编程\",\n    \"author\": \"戈雷利克/欧日沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础入门学习Python\",\n    \"author\": \"小甲鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript函数式编程\",\n    \"author\": \"Michael Fogus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给所有人的编程思维\",\n    \"author\": \"吉姆・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Python爬虫框架Scrapy\",\n    \"author\": \"迪米特里奥斯 考奇斯-劳卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的乐趣\",\n    \"author\": \"王晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编写可维护的JavaScript\",\n    \"author\": \"扎卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022983-6dc43b?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通正则表达式：第3版\",\n    \"author\": \"Jeffrey E·F·Friedl\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Go语言实战\",\n    \"author\": \"William Kennedy等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021657-466648?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从Python开始学编程\",\n    \"author\": \"Vamei\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Boot实战\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java程序员修炼之道\",\n    \"author\": \"Benjamin J. Evans/Martijn Verburg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java 8实战\",\n    \"author\": \"Raoul-Gabriel Urma等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021054-fef42d?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Vim实用技巧\",\n    \"author\": \"Drew Neil\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020997-2ff693?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像计算机科学家一样思考Python\",\n    \"author\": \"Allen B.Downey\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019812-6df559?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python基础教程（第3版）\",\n    \"author\": \"Magnus Lie Hetland\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019476-163e41?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Linux环境编程：从应用到内核\",\n    \"author\": \"高峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019278-91aa23?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"GitHub入门与实践\",\n    \"author\": \"大塚弘记\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018630-3c62a1?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第3版）\",\n    \"author\": \"Wesley Chun\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服C指针\",\n    \"author\": \"前桥和弥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018567-39a964?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python极客项目编程\",\n    \"author\": \"Mahesh Venkitachalam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018480-2d6eec?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编程珠玑（第2版·修订版）\",\n    \"author\": \"Jon Bentley\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018450-0ab379?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流畅的Python\",\n    \"author\": \"Luciano Ramalho\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018351-499390?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锋利的jQuery（第2版）\",\n    \"author\": \"单东林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016728-3282f4?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟老齐学Python\",\n    \"author\": \"老齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016623-4a24a9?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python网络数据采集\",\n    \"author\": \"Ryan Mitchell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨办法学Python\",\n    \"author\": \"Zed A.Shaw\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016419-cf9c7e?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程：从入门到实践\",\n    \"author\": \"埃里克・马瑟斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python学习手册（原书第4版）\",\n    \"author\": \"Mark Lutz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014307-045cb6?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一本Docker书（修订版）\",\n    \"author\": \"詹姆斯・特恩布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013125-e87194?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"iOS编程（第4版）\",\n    \"author\": \"Christian Keur/Aaron Hillegass\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法图解\",\n    \"author\": \"Aditya Bhargava\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程快速上手\",\n    \"author\": \"Al Sweigart\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法神探\",\n    \"author\": \"杰瑞米・库比卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009255-fb075f?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript权威指南（第6版）\",\n    \"author\": \"David Flanagan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第二版）\",\n    \"author\": \"丘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"PHP和MySQL Web开发（原书第4版）\",\n    \"author\": \"Luke Welling\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子的编程之旅\",\n    \"author\": \"Warren Sande\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513735-fe1296?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉：AI如何通过数据挖掘误导我们\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能语音时代\",\n    \"author\": \"詹姆斯・弗拉霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982510-7f3725?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习：智能时代的核心驱动力量\",\n    \"author\": \"特伦斯・谢诺夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029667-77e164?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类帝国的覆灭\",\n    \"author\": \"常博逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航2\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023982-655d95?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI：人工智能的本质与未来\",\n    \"author\": \"玛格丽特・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为何无聊\",\n    \"author\": \"詹姆斯・丹克特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490977-1e5ce8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知工具\",\n    \"author\": \"塞西莉亚・海耶斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491715-7dc597?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动机与人格\",\n    \"author\": \"亚伯拉罕・马斯洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495429-a9bbbc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"0次与10000次\",\n    \"author\": \"吉塔・雅各布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497181-c8dc00?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疲劳自救手册\",\n    \"author\": \"玛丽・伯吉斯/特鲁迪・查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497475-e986a2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙发上的心理学\",\n    \"author\": \"菲利帕・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497946-e0bf91?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新乌合之众\",\n    \"author\": \"迈赫迪・穆萨伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497907-396975?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十种人性\",\n    \"author\": \"德克斯特・迪亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文心理分析作品集（套装共12册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贪婪的多巴胺\",\n    \"author\": \"丹尼尔・利伯曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498459-018013?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这真的是你的错吗\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499227-3864f2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反内卷\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499245-6c8e89?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费尔德曼发展心理学\",\n    \"author\": \"罗伯特·S.费尔德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499536-3655fb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活出最乐观的自己\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499620-1feacf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新人类心理丛书（共6册）\",\n    \"author\": \"达里安・利德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499710-78a426?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一旦能放声嘲笑自己，你就自由了\",\n    \"author\": \"梅丽莎・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499704-86a34e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问题不大\",\n    \"author\": \"杨子星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500136-6043d2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔科姆·格拉德威尔系列（套装共6册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理咨询师系列精选（套装14册）\",\n    \"author\": \"沙格曼・卡亚金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500541-cb7910?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宁静的力量\",\n    \"author\": \"瑞安・霍利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500661-e3cdce?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理自助读物精选（套装17册）\",\n    \"author\": \"南茜・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理自助CBT书系（套装共七册）\",\n    \"author\": \"萨万・辛格等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"也许你该找个人聊聊\",\n    \"author\": \"洛莉・戈特利布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508959-595ed0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马登谈成功（套装共5册）\",\n    \"author\": \"奥里森・马登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508968-7f8963?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极心理测试\",\n    \"author\": \"迈克・布里翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509244-f90270?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁：心理学实证研究社会思维\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509499-e67aab?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变或免疫\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509568-e95089?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无知\",\n    \"author\": \"迈克・詹姆斯・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509577-8fec76?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读脑术\",\n    \"author\": \"拉塞尔·A.波德拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509688-9d9191?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱可能\",\n    \"author\": \"伊迪丝・伊娃・埃格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从玫瑰到枪炮\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509892-7e4601?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏惧：颠覆你内心的脆弱\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510027-601beb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟先生的心理疗愈\",\n    \"author\": \"塞尔日・马基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510162-32cc06?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·艾尔曼实用催眠\",\n    \"author\": \"大卫・艾尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510171-7757c8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被绑架的心灵\",\n    \"author\": \"戴维・凯斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510372-1db3f6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛤蟆先生去看心理医生\",\n    \"author\": \"罗伯特・戴博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切皆契约\",\n    \"author\": \"聂辉华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510423-f1d70c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生疯狂\",\n    \"author\": \"中野信子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510432-073af1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏见\",\n    \"author\": \"珍妮弗・埃伯哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510933-ef0322?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"负面情绪，正面解决\",\n    \"author\": \"利斯・范・萨斯特伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510939-6c58a7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突的演化\",\n    \"author\": \"杰弗里・贝蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512607-ff38db?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通俗心理学百科合集（套装共18册）\",\n    \"author\": \"约翰・华生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513492-f070e3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释梦人生\",\n    \"author\": \"荣伟玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513567-30276c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控沟通\",\n    \"author\": \"贾斯汀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级心智\",\n    \"author\": \"诺曼·E·罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513693-5e6741?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们内心的冲突（果麦经典）\",\n    \"author\": \"卡伦・霍妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004464-e0bf3e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和另一个自己谈谈心\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004392-11723b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我边界\",\n    \"author\": \"乔治・戴德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004260-42ce47?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇葩心理学\",\n    \"author\": \"冈田尊司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004146-e96884?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理档案（共4册）\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快行动，慢思考\",\n    \"author\": \"迪安・德尔・塞斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002415-60e276?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本抑郁自救指南\",\n    \"author\": \"所长任有病\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的解析（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002187-512d6c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动机心理学\",\n    \"author\": \"罗曼・格尔佩林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002016-a8251f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷静表达的艺术\",\n    \"author\": \"罗纳德·T·派特佛恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑你好\",\n    \"author\": \"安珀・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拖延症患者自救手册\",\n    \"author\": \"加兰・库尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出人格陷阱\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000846-80193c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理套装（共四册）\",\n    \"author\": \"许大鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理分析\",\n    \"author\": \"张蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"归属感\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999826-9a1d49?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱是什么\",\n    \"author\": \"芭芭拉・弗雷德里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999475-3aed0e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人效应\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998548-5194e2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄与母亲\",\n    \"author\": \"C.G. 荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996685-df9910?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内心的重建\",\n    \"author\": \"维尼老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996175-2a2c01?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊雍：自性现象学研究\",\n    \"author\": \"C. G. 荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995866-2fee9e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的智慧\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会幸福\",\n    \"author\": \"陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"差异优势\",\n    \"author\": \"约翰·C. 马克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商大师（息怒篇）\",\n    \"author\": \"伯纳德・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤气灯效应\",\n    \"author\": \"罗宾・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被拒绝的勇气\",\n    \"author\": \"岸见一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993493-64723f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智与阅读\",\n    \"author\": \"丹尼尔·T.威林厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗逆力\",\n    \"author\": \"邹建章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992029-95a7a3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让性格害了你\",\n    \"author\": \"邢群麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让情绪毁了你的努力\",\n    \"author\": \"剑圣喵大师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性进化论\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991723-c926e0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格拼图\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向心理学\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向高敏者\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991516-921fc6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的情商，决定你的人生高度\",\n    \"author\": \"心屋仁之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你为什么不道歉\",\n    \"author\": \"哈丽特・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990589-e95cbc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的优点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990421-adb4e8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不想将就过一生\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的囚徒\",\n    \"author\": \"亚历克斯・佩塔克斯/伊莱恩・丹顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破天性\",\n    \"author\": \"布赖恩・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生非此\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本正经又怪诞的行为心理学\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985639-1775da?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩的就是规则\",\n    \"author\": \"伊恩・伯格斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福：追求比得到更快乐\",\n    \"author\": \"丹尼尔・内特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985219-b0ee40?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何正确吵架\",\n    \"author\": \"朱迪斯・莱特/鲍勃・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个抗压的人\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人，做得到任何事\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984625-a03251?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同自己\",\n    \"author\": \"斯蒂芬妮・斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窥探疯子的内心世界（套装共6册）\",\n    \"author\": \"弗兰克・比弗・布拉迪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983659-dec0ab?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心火：社会动机与我们的生活\",\n    \"author\": \"陈为人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983368-12b915?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新情商\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学2\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学3\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982462-176d92?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何爱会伤人（珍藏版）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格的陷阱\",\n    \"author\": \"杰弗里·E.杨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与表达力影响力\",\n    \"author\": \"洪琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054306-56f527?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与内心的冲突和解\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有意识的社交\",\n    \"author\": \"肯・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控分寸\",\n    \"author\": \"珍妮・米勒/维多利亚・兰伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找爽点\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学统治世界（全三册）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052998-895117?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会快乐\",\n    \"author\": \"马修・理查德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052965-df8220?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知·情感·意志\",\n    \"author\": \"詹姆斯・马克・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制胜谈判\",\n    \"author\": \"游梓翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052629-f068d8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的心理学\",\n    \"author\": \"王明姬/姚兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052671-91e779?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽微的人性\",\n    \"author\": \"李玫瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052320-cff183?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的误区\",\n    \"author\": \"韦恩・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051744-d5fffa?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可能性法则\",\n    \"author\": \"梅尔・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051441-e9bca0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总能做出正确决定的幸运法则\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克服低自尊（第二版）\",\n    \"author\": \"梅勒妮・芬内尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051270-abaeb1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原生家庭生存指南\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051150-577b7b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾心可鉴\",\n    \"author\": \"彭凯平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051123-b5e48b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西成功定律\",\n    \"author\": \"拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情的力量\",\n    \"author\": \"亚瑟・乔拉米卡利/凯瑟琳・柯茜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能2\",\n    \"author\": \"刘船洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇特的传染\",\n    \"author\": \"李・丹尼尔・克拉韦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049605-d91e82?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的焦虑\",\n    \"author\": \"斯科特・施托塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱共情\",\n    \"author\": \"保罗・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最神奇的24堂课\",\n    \"author\": \"查尔斯・哈奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一印象心理学\",\n    \"author\": \"周一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049380-6bfe58?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会心理学（第8版）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（青春版）\",\n    \"author\": \"书鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺爱\",\n    \"author\": \"罗伯特・纳伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系黑洞\",\n    \"author\": \"周慕姿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047640-dc0f46?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻辣心理学\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047523-bb5dc8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过程决定成败\",\n    \"author\": \"乔尔・布罗克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046644-6b9c12?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"FBI微情绪心理学（若水集）\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反套路\",\n    \"author\": \"大卫・迪萨沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046386-816bad?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘型人格障碍\",\n    \"author\": \"兰迪・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生十二法则\",\n    \"author\": \"乔丹・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出剧情\",\n    \"author\": \"李雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童教育心理学\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭情绪的力量\",\n    \"author\": \"珍妮弗・泰兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个行业都离不开心理学（套装共5册）\",\n    \"author\": \"王梓等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人心理学\",\n    \"author\": \"赵育宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己和解\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使（见识丛书）\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不同的音调\",\n    \"author\": \"约翰・唐文/凯伦・祖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能：为什么我们管不住自己？\",\n    \"author\": \"特里・伯纳姆/杰伊・费伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041325-3a6922?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美关系的秘密\",\n    \"author\": \"杨冰阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041142-df8089?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信的力量\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040455-c1bdea?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑型人格自救手册\",\n    \"author\": \"安娜・威廉姆森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040062-b694e0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越（果麦经典）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039837-b00dc9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名区\",\n    \"author\": \"匿名用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038982-74f6e2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童分析的故事\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫉羡与感恩\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的心理学\",\n    \"author\": \"G. 尼尔・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035829-d36c8b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超效自控\",\n    \"author\": \"魏冰冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035580-026207?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑心理学\",\n    \"author\": \"董心洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035310-d689df?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能梦的解析\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035280-e7c7d0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类心理学\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035106-50ba06?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方心理学名著译丛（套装共十四册）\",\n    \"author\": \"赫尔曼・艾宾浩斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035172-bd4fe6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑星球笔记\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035019-621de5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的眼界，决定你的全世界\",\n    \"author\": \"西武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034974-0a7e53?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束（理想国）\",\n    \"author\": \"丹尼尔・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会吃饭\",\n    \"author\": \"珍・克里斯特勒/艾莉莎・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱意识\",\n    \"author\": \"沈诱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控关系\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大潜能\",\n    \"author\": \"肖恩・埃科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034437-0178db?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与生活\",\n    \"author\": \"理查德・格里格/菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失误：为什么我们总爱犯错？\",\n    \"author\": \"凯瑟琳・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"登天的感觉\",\n    \"author\": \"岳晓东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033522-deb968?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己的人自带光芒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感吸血鬼\",\n    \"author\": \"克里斯蒂娜・诺尔斯特鲁普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032970-8fa260?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头的咖啡馆\",\n    \"author\": \"约翰・史崔勒基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何提升性格优势\",\n    \"author\": \"安妮・博格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032571-eaa275?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公主走进黑森林\",\n    \"author\": \"吕旭亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032340-822a73?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的人都是提问高手\",\n    \"author\": \"樱井弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032184-64c791?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理营养\",\n    \"author\": \"林文采/伍娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因文集（套装共4册）\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九型人格·珍藏版\",\n    \"author\": \"海伦・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031533-f58968?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲点：为什么我们易被偏见左右\",\n    \"author\": \"约瑟夫・哈利南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031374-2ecc9a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只想和你好好生活\",\n    \"author\": \"武志红等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（精装纪念版）\",\n    \"author\": \"张文成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031155-58fe32?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商：我们该如何应对坏事件\",\n    \"author\": \"保罗・史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知尺度\",\n    \"author\": \"魏坤琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑心理学：别让美好的生活被焦虑毁了\",\n    \"author\": \"陈东城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030768-ce633e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理界限\",\n    \"author\": \"杨嘉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学经典必读系列（套装共5册）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德浪女\",\n    \"author\": \"朵思.伊斯頓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众（作家榜经典文库）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄心理学经典\",\n    \"author\": \"河合隼雄等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030357-1b42df?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信表达\",\n    \"author\": \"兰迪・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030198-77c629?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响：如何自然地赢得他人的心\",\n    \"author\": \"凯伦・梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书写的疗愈力量（原书第3版）\",\n    \"author\": \"詹姆斯・彭尼贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029613-545650?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时忍住就好了（插图典藏版）\",\n    \"author\": \"肯・林德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029577-e20eb2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何建立好人缘\",\n    \"author\": \"谢湘萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的勇气\",\n    \"author\": \"岸见一郎/古贺史健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029367-9f1f8a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商沟通术\",\n    \"author\": \"胡慎之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029124-a2a12a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲密关系心理学\",\n    \"author\": \"大卫・斯杜普/简・斯杜普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029010-4d0922?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要快乐，不必正常\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪\",\n    \"author\": \"莉莎・费德曼・巴瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028908-566a52?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么我们总是在逃避\",\n    \"author\": \"约瑟夫・布尔戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028359-3ffd8c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑急救\",\n    \"author\": \"贝芙・艾斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028233-5b176f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪是什么\",\n    \"author\": \"乔瓦尼・弗契多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028149-1fa93a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学\",\n    \"author\": \"杰弗里・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不再害羞\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027789-fbee3f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿德勒积极心理学（套装共4册）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027780-02be68?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的复杂性\",\n    \"author\": \"罗伯特・阿克塞尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点（作家榜经典文库）\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正能量\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027312-ce75d5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密如何改变了我们的生活\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这不是你的错\",\n    \"author\": \"马克・沃林恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在成长\",\n    \"author\": \"塔玛・琼斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞脑科学\",\n    \"author\": \"盖瑞・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026820-32a86b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻心理学\",\n    \"author\": \"霍妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026814-a0dd95?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知迭代\",\n    \"author\": \"卡罗琳・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性之谜\",\n    \"author\": \"雨果・梅西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思维\",\n    \"author\": \"S.J. Scott/Barrie Davenport\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未发现的自我\",\n    \"author\": \"卡尔・古斯塔夫・荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025497-5a5313?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势将至，未来已来\",\n    \"author\": \"王鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025284-f820b9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思辨与立场\",\n    \"author\": \"理查德・保罗/琳达・埃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知升级\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025041-559d0c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劫持\",\n    \"author\": \"玛丽•K. 斯温格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的信任\",\n    \"author\": \"布鲁斯・施奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024999-0143fe?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学三论（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024942-0c5d1b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"催眠二十八讲\",\n    \"author\": \"威廉姆・韦斯利・库克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024915-d17460?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不执着，叫看破 不完美，是生活\",\n    \"author\": \"莫妮卡・拉米雷斯・巴斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意识光谱\",\n    \"author\": \"肯・威尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商（全六册）\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024453-d6e5b5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原生家庭\",\n    \"author\": \"苏珊・福沃德/克雷格・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024315-e9494b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去的理由\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人的艺术\",\n    \"author\": \"山姆・高斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024294-65b337?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Never Split the Difference\",\n    \"author\": \"Chris Voss/Tahl Raz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024258-60d859?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的人格\",\n    \"author\": \"黄国胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024195-e4abf0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉泵和其他思考工具\",\n    \"author\": \"丹尼尔・丹尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的秘密\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"态度改变与社会影响\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023853-1d340e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超意识\",\n    \"author\": \"菲尔图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错不在我\",\n    \"author\": \"卡罗尔・塔夫里斯/艾略特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023679-7893fe?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体不说谎\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体从未忘记\",\n    \"author\": \"巴塞尔・范德考克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023610-57fe2f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与原生家庭和解\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：零成本改变\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023532-18abb2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思维\",\n    \"author\": \"叶修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023460-34d28e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知天性\",\n    \"author\": \"彼得・布朗/亨利・勒迪格三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经的逻辑\",\n    \"author\": \"埃利泽・斯滕伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在革命：一本关于成长的书\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶的科学\",\n    \"author\": \"西蒙・巴伦-科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注意力曲线\",\n    \"author\": \"露西・乔・帕拉迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022548-72319e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的幸福\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022284-740f82?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的最小行动\",\n    \"author\": \"刘轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022134-f272bd?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生总会有办法 : 用逆向思维解决难题\",\n    \"author\": \"戴维・尼文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让人生停止灰暗的艺术\",\n    \"author\": \"苏珊・福沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021906-c19745?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果你再勇敢一点\",\n    \"author\": \"波莉・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021660-aab07e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Daring Greatly\",\n    \"author\": \"Brene Brown\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走神的艺术与科学\",\n    \"author\": \"迈克尔・C.科尔巴里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"默读\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021312-2cf0a1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性心理学\",\n    \"author\": \"哈夫洛克・霭理士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021249-41baed?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感勒索\",\n    \"author\": \"苏珊・福沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021204-0a1bfc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脆弱的力量\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021078-290a71?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪勒索\",\n    \"author\": \"朱迪斯·P·西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021009-58665a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雄性衰落\",\n    \"author\": \"菲利普・津巴多/尼基塔・库隆布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020970-224943?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"比赛中的行为经济学\",\n    \"author\": \"托拜厄斯・莫斯科维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020904-4868bc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Thinking, Fast and Slow\",\n    \"author\": \"Daniel Kahneman\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020733-b4e6fa?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点：如何赢得友谊并影响他人\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020529-00fe95?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找到意想不到的自己\",\n    \"author\": \"丛扬洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020430-d63e63?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷暴力\",\n    \"author\": \"玛丽・弗朗斯・伊里戈扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者沟通圣经\",\n    \"author\": \"珍妮弗・康维勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形人格\",\n    \"author\": \"海伦・麦格拉斯/哈泽尔・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020031-123343?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪最伟大的心理学实验\",\n    \"author\": \"伦・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019893-bcc56f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命中最简单又最困难的事\",\n    \"author\": \"大卫・福斯特・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019881-0c36b8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不存在的人\",\n    \"author\": \"阿尼尔・阿南塔斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019830-4d406a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞察：精确观察和有效沟通的艺术\",\n    \"author\": \"艾米・赫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲罢不能：刷屏时代如何摆脱行为上瘾\",\n    \"author\": \"亚当・阿尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诊疗椅上的谎言\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019815-2a3900?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杠杆说服力\",\n    \"author\": \"凯文・霍根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019623-c2c1a7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何活出生命的意义\",\n    \"author\": \"杰西・贝林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019359-395102?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感谢那些让你不开心的事儿\",\n    \"author\": \"索尼娅・瑞克蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019236-6bd523?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹课程\",\n    \"author\": \"海伦・舒曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019197-f582a7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"披着羊皮的狼\",\n    \"author\": \"乔治.K.西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018948-a7cfe4?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压榨式提问\",\n    \"author\": \"布莱恩・格雷泽/查尔斯・菲什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018912-d6e59c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类的天赋\",\n    \"author\": \"凯文・达顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Furiously Happy\",\n    \"author\": \"Jenny Lawson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018477-7d1e06?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识的错觉\",\n    \"author\": \"史蒂文・斯洛曼/菲利普・费恩巴赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018315-259ab2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑幸福：如何活成你想要的模样\",\n    \"author\": \"马克・曼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018303-5054fe?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理韧性的力量\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018291-0b8a09?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心流\",\n    \"author\": \"米哈里・契克森米哈赖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018141-dde7a1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现心流\",\n    \"author\": \"米哈里・契克森米哈赖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018129-01fd31?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服：像讲故事一样讲道理\",\n    \"author\": \"尼克・克里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017778-78f09d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑使用指南\",\n    \"author\": \"赵思家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017454-809589?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再也不怕跟人打交道\",\n    \"author\": \"莉尔・朗兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越（经典完整译本）\",\n    \"author\": \"阿弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017193-116343?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能\",\n    \"author\": \"卫蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017163-f4def7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好人为什么会作恶\",\n    \"author\": \"托马斯・布拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016959-db3d20?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（第十版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016674-f06b5d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道金斯科学经典系列（套装共三册）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016665-7167df?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读心神探：FBI心理侧写术\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计心理学（全四册）\",\n    \"author\": \"唐纳德・A・诺曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016626-0875e7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就要很独特\",\n    \"author\": \"西蒙・布莱克本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016554-bec7cf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆转\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016524-460c47?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为心理学\",\n    \"author\": \"约翰・华生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016383-2e302b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷恋：如何制造持久的吸引力\",\n    \"author\": \"莎莉・霍格斯黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016335-64929d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者优势\",\n    \"author\": \"Marti Olsen Laney\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016314-c5509f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么我们会上瘾\",\n    \"author\": \"迈克尔・库赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016179-c81d0e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯直觉心理学\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016014-26ab45?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一种选择\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016002-2ef252?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不成熟的父母\",\n    \"author\": \"琳赛・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015978-19b735?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可爱的诅咒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015768-fe4a62?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性的非理性\",\n    \"author\": \"郑毓煌/苏丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015717-410de3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界哲学史\",\n    \"author\": \"汉斯・约阿西姆・施杜里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015684-127350?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反焦虑思维\",\n    \"author\": \"罗尔・克肖/ 比尔・韦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015648-08a46e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读自己心理阅读书系（第1辑）\",\n    \"author\": \"卡伦・霍妮等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015639-644be4?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你唯一的缺点就是太完美了\",\n    \"author\": \"马丁・安东尼/理查德・斯文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015636-84f772?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与理性\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015546-5d6351?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非天赋\",\n    \"author\": \"斯科特・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015531-e896f7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的影响力\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015537-02d9e0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接感\",\n    \"author\": \"卡洛琳・戴奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015516-ce0614?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节：如何轻松影响他人\",\n    \"author\": \"罗伯特・西奥迪尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的大猩猩\",\n    \"author\": \"克里斯托弗・查布利斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在的重生\",\n    \"author\": \"吉杜・克里希那穆提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015477-39ea6d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交天性\",\n    \"author\": \"马修・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞关系学\",\n    \"author\": \"亚当・加林斯基/马利斯・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么被霸凌？\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015261-36ff57?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚毅\",\n    \"author\": \"安杰拉・达克沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015231-e2dc65?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内心平静，才能快速行动\",\n    \"author\": \"碧姬・德吕蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015150-d48231?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红书\",\n    \"author\": \"荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015039-8a6091?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变带来医治\",\n    \"author\": \"亨利・克劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014841-214fcc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学的40项研究（第7版）\",\n    \"author\": \"罗杰・R・霍克博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014838-650722?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟乐嘉学性格色彩\",\n    \"author\": \"乐嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014859-334205?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会动物\",\n    \"author\": \"戴维・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014367-2e013a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强势谈判心理学\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014361-f635fc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014028-901478?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑自我：如何成为一个很幸福的人\",\n    \"author\": \"尼尔・帕斯理查\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013746-1a8179?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Stealing Fire\",\n    \"author\": \"Steven Kotler / Jamie Wheal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013662-bcb2e6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美II\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013653-c8d28d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱到绝处便逢生\",\n    \"author\": \"卢悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013566-43e5ee?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱是一切的答案\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013560-d25c4d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非暴力沟通\",\n    \"author\": \"马歇尔・卢森堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013548-f663a8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯社会心理学套装（第8版共4册）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013611-f376ca?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非偶然\",\n    \"author\": \"埃利奥特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信力：成为最好的自己\",\n    \"author\": \"罗布・杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012822-5aa98f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先发影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012780-a20378?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兽绅士\",\n    \"author\": \"巫家民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012660-d06b04?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗兰克尔自传：活出生命的意义\",\n    \"author\": \"维克多・弗兰克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012507-1ce2f9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习\",\n    \"author\": \"本尼迪克特・凯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不抱怨的世界套装（共2册）\",\n    \"author\": \"威尔・鲍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011442-839945?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣格自传：回忆・梦・思考\",\n    \"author\": \"卡尔・古斯塔夫・荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011127-2e5b54?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果没有今天，明天会不会有昨天？\",\n    \"author\": \"伊夫・博萨尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010665-9c2c9a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德动物\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"习惯的力量（图文精编版）\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的力量（珍藏版）\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小心，无良是一种病\",\n    \"author\": \"玛莎・斯托特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010494-d80680?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情力\",\n    \"author\": \"亚瑟・乔拉米卡利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010311-5eb039?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗洛伊德经典作品集\",\n    \"author\": \"弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010278-e9d59e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的艺术\",\n    \"author\": \"艾里希・弗洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010122-1f898c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白板\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想本质\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言本能\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智探奇\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜意识：控制你行为的秘密\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009711-44b0d1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"象与骑象人：幸福的假设\",\n    \"author\": \"乔纳森・海特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009654-67ea14?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人来自火星，女人来自金星（套装共4册）\",\n    \"author\": \"约翰・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不诚实的诚实真相\",\n    \"author\": \"丹・艾瑞里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009519-879ad6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"害羞心理学\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009510-378800?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分心也有好婚姻\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的解析\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009282-2232c8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁动了我的奶酪\",\n    \"author\": \"斯宾塞・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009150-f75f96?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智行动的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009012-b48f59?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冥想5分钟，等于熟睡一小时\",\n    \"author\": \"里克・汉森/理查德・蒙迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008994-681a13?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼搭讪学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼约会学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008952-8a6737?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗达・拜恩作品集（全五册）\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008868-6c5f07?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格拉德威尔经典系列（套装共5册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008817-5267fc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当尼采哭泣\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008346-a7d90b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生变态狂\",\n    \"author\": \"詹姆斯・法隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008187-852b5b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂成瘾者\",\n    \"author\": \"马克・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008163-e5e6c5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别和她说话\",\n    \"author\": \"遇瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张德芬身心灵四部曲（套装共4册）\",\n    \"author\": \"张德芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞利格曼幸福五部曲\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24重人格（十周年纪念版）\",\n    \"author\": \"卡梅伦・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007740-d16ede?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像疯子一样思考，像天才一样行动\",\n    \"author\": \"凯文・达顿/安迪・麦克纳布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007617-83ecfb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷读术（白金珍藏版）\",\n    \"author\": \"石真语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨婴国\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双脑记：认知神经科学之父加扎尼加自传\",\n    \"author\": \"迈克尔・加扎尼加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石头剪刀布博弈心理学\",\n    \"author\": \"木瓜制造\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007338-0946f5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎鲨游戏之十重人格女孩\",\n    \"author\": \"王健霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理罪（套装共5册）\",\n    \"author\": \"雷米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众：大众心理研究（修订版）\",\n    \"author\": \"古斯塔夫·勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓愚：操纵与欺骗的经济学\",\n    \"author\": \"乔治·阿克洛夫/罗伯特·席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED竞争心理学\",\n    \"author\": \"玛格丽特·赫夫南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会性动物\",\n    \"author\": \"Elliot Aronson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的重建\",\n    \"author\": \"露易丝·海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完整的成长：儿童生命的自我创造\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱和自由：孙瑞雪幼儿教育演讲录\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反脆弱：从不确定性中获益\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拖延症患者自救手册\",\n    \"author\": \"加兰・库尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默感\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读\",\n    \"author\": \"艾比・马克斯・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英高效阅读法\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非虚构写作指南\",\n    \"author\": \"李梓新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046785-ed2ee0?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会写作\",\n    \"author\": \"粥左罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技巧：如何用一年时间获得十年的经验\",\n    \"author\": \"郝培强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10秒沟通\",\n    \"author\": \"荒木真理子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰田一页纸极简思考法\",\n    \"author\": \"浅田卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020367-535edd?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿色黄金：茶叶帝国\",\n    \"author\": \"艾伦・麦克法兰/艾丽斯・麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866\",\n    \"category\": \"茶文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕\",\n    \"author\": \"阿敏・马卢夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866\",\n    \"category\": \"中亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大博弈：英俄帝国争霸战\",\n    \"author\": \"彼得・霍普柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866\",\n    \"category\": \"中亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯：晨昏岛屿的集市\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866\",\n    \"category\": \"威尼斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯是一条鱼\",\n    \"author\": \"提齐安诺・斯卡帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866\",\n    \"category\": \"威尼斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上威尼斯\",\n    \"author\": \"亚历山德罗・马尔佐・马尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866\",\n    \"category\": \"威尼斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芯片陷阱\",\n    \"author\": \"马克・拉叙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495186-db8ef2?p=8866\",\n    \"category\": \"芯片\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光刻巨人\",\n    \"author\": \"瑞尼・雷吉梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866\",\n    \"category\": \"芯片\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“芯”想事成\",\n    \"author\": \"陈芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866\",\n    \"category\": \"芯片\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默书房丛书（套装共8册）\",\n    \"author\": \"J.K.杰罗姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986989-a243cd?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可怕的中年\",\n    \"author\": \"贾森・黑兹利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052275-fe05f1?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅都市生存指南（套装全9册）\",\n    \"author\": \"贾森・黑兹利/乔尔・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超纲冷知识\",\n    \"author\": \"吉姆・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开市大吉（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图和鸭嘴兽一起去酒吧\",\n    \"author\": \"托马斯・卡斯卡特/丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找无双\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035061-224a42?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对笑喷之弃业医生日志\",\n    \"author\": \"亚当・凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二十二条军规（纪念版）\",\n    \"author\": \"约瑟夫・海勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011919-31c86e?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866\",\n    \"category\": \"国家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家行动\",\n    \"author\": \"程琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016677-c8f62e?p=8866\",\n    \"category\": \"国家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲望都市\",\n    \"author\": \"坎迪斯・布什奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990379-bb75be?p=8866\",\n    \"category\": \"都市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上广女子图鉴\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866\",\n    \"category\": \"都市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据如何误导了我们\",\n    \"author\": \"桑内・布劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼统计学\",\n    \"author\": \"伊恩・艾瑞斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511344-1b7066?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉：AI如何通过数据挖掘误导我们\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据资本时代\",\n    \"author\": \"Viktor Mayer-Schnberger\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户画像\",\n    \"author\": \"赵宏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小数据之美\",\n    \"author\": \"陈辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982447-1e6d76?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发\",\n    \"author\": \"艾伯特-拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027993-9ab187?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字中国\",\n    \"author\": \"江青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026172-41fe7f?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四维人类\",\n    \"author\": \"劳伦斯・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数文明\",\n    \"author\": \"涂子沛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决战大数据（升级版）\",\n    \"author\": \"车品觉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017913-52f044?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧政府\",\n    \"author\": \"徐继华/冯启娜/陈贞汝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013230-588ffe?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大数据时代\",\n    \"author\": \"维克托・迈尔・舍恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010281-c20367?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房可以很简单\",\n    \"author\": \"子安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866\",\n    \"category\": \"买房\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家的书\",\n    \"author\": \"考薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866\",\n    \"category\": \"买房\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就业、利息和货币通论\",\n    \"author\": \"约翰・梅纳德・凯恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034656-57288e?p=8866\",\n    \"category\": \"凯恩斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（插图新注新译本）\",\n    \"author\": \"亚瑟·柯南·道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866\",\n    \"category\": \"福尔摩斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文通史\",\n    \"author\": \"詹尼特・勒博・本顿/罗伯特・笛亚尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866\",\n    \"category\": \"文化史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香料漂流记\",\n    \"author\": \"加里・保罗・纳卜汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044238-605eec?p=8866\",\n    \"category\": \"文化史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧亚皇家狩猎史\",\n    \"author\": \"托马斯・爱尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866\",\n    \"category\": \"文化史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们太缺一门叫生命的学问\",\n    \"author\": \"薛仁明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029520-f3bc05?p=8866\",\n    \"category\": \"文化史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的起源\",\n    \"author\": \"刘大可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497466-2034fd?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么长这样\",\n    \"author\": \"爱丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在病毒中生存\",\n    \"author\": \"苗德岁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5分钟生物课\",\n    \"author\": \"冯智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511134-5ad126?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：活细胞的物理观\",\n    \"author\": \"埃尔温・薛定谔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：40亿年生命史诗的开端\",\n    \"author\": \"埃迪・普罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003546-7d4c71?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触（第二版）\",\n    \"author\": \"大卫・奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因与命运\",\n    \"author\": \"斯蒂芬·J.海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之源\",\n    \"author\": \"尼克・連恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端生存\",\n    \"author\": \"史蒂芬・帕鲁比/安东尼・帕鲁比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我包罗万象\",\n    \"author\": \"埃德・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043266-561836?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创世记\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能生存学\",\n    \"author\": \"李・戈德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（五）\",\n    \"author\": \"惠更斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的算法\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯化\",\n    \"author\": \"艾丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物城邦系列（共四册）\",\n    \"author\": \"伯特・霍尔多布勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030435-d80ab8?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙：一种未明的动物（增订本）\",\n    \"author\": \"马小星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028452-c59106?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美的进化\",\n    \"author\": \"理查德·O.普鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命密码\",\n    \"author\": \"尹烨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缤纷的生命\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘易斯·托马斯作品（共5册）\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因、大脑和人类潜能\",\n    \"author\": \"肯・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新设计生命\",\n    \"author\": \"约翰・帕林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲眼钟表匠\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未完成的进化\",\n    \"author\": \"凯文・拉兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类存在的意义\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的未来：从双螺旋到合成生命\",\n    \"author\": \"克雷格・文特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020724-9f0385?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百科通识全系列大套装（共49本）\",\n    \"author\": \"安德鲁・巴兰坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020376-81a38d?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的手术刀\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球上最伟大的表演\",\n    \"author\": \"理查德・毛姆道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触：全球大型传染病探秘之旅\",\n    \"author\": \"大卫·奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰的预言\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053016-dca2af?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活人禁忌\",\n    \"author\": \"九锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粉笔人\",\n    \"author\": \"C.J.图德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042825-f56dbd?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到黑泉镇\",\n    \"author\": \"托马斯・奥尔德・赫维尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034671-16eada?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"环界（套装共4册）\",\n    \"author\": \"铃木光司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033525-63923d?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丽赛的故事\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033405-037d31?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕梦网\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033348-e0226f?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪灵\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宠物公墓\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029295-453cf7?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘与白骨的王国（全4册）\",\n    \"author\": \"格里格・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023694-8bd945?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球悬疑大师典藏合集（全19册）\",\n    \"author\": \"斯蒂芬・金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019833-298e5f?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼在你身后（套装全3册）\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017280-4eab29?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿修罗系列惊悚小说三部曲\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013029-d113e7?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河神·鬼水怪谈\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010197-a492df?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"它（全2册）\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008799-057004?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎鲨游戏之十重人格女孩\",\n    \"author\": \"王健霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录2：最后的复辟挣扎\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗族\",\n    \"author\": \"缪热\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个成语中的古代生活史\",\n    \"author\": \"许晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师经典：王力先生的古代文化通识课\",\n    \"author\": \"王力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512367-d2614c?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代志怪小说鉴赏辞典\",\n    \"author\": \"上海辞书出版社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002868-8633d6?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代钱币\",\n    \"author\": \"华东师大博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053706-4553fa?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史无间道\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代人的日常生活\",\n    \"author\": \"讲历史的王老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043638-abdc6f?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国门阀大族的消亡\",\n    \"author\": \"谭凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯尔特神话\",\n    \"author\": \"米兰达・阿尔德豪斯-格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026139-d5e318?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古代大案探奇录系列丛书\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020886-9e4f01?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广州贸易\",\n    \"author\": \"范岱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古代艳情小说史\",\n    \"author\": \"张廷兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011268-efad9b?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九品中正制研究\",\n    \"author\": \"张旭华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010656-17c168?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓶梅（崇祯本）\",\n    \"author\": \"兰陵笑笑生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008631-0b6df9?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（校注本）\",\n    \"author\": \"施耐庵/罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（校注本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（校注本）\",\n    \"author\": \"曹雪芹/高鹗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大中国史（全新校订超值珍藏版）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国神话大词典\",\n    \"author\": \"袁珂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唯有猫能治愈我\",\n    \"author\": \"杰克森・盖勒克西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033900-848a6b?p=8866\",\n    \"category\": \"铲屎官\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一定有人在祈祷着\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983299-f98eb2?p=8866\",\n    \"category\": \"感人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴别塔之犬\",\n    \"author\": \"卡罗琳・帕克丝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032178-12fb03?p=8866\",\n    \"category\": \"感人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活出人生最好的可能\",\n    \"author\": \"毕啸南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021909-536ba4?p=8866\",\n    \"category\": \"感人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疲劳自救手册\",\n    \"author\": \"玛丽・伯吉斯/特鲁迪・查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497475-e986a2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康守护全书\",\n    \"author\": \"梁湛威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499209-1c9f53?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拯救你的睡眠\",\n    \"author\": \"阿里安娜・赫芬顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499422-0ad975?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戒糖：改变一生的科学饮食法\",\n    \"author\": \"初夏之菡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好孕，从卵子开始\",\n    \"author\": \"瑞贝卡・费特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500655-c5e536?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个健康吃货的自我修养（共4册）\",\n    \"author\": \"威廉・李博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学休息\",\n    \"author\": \"亚历克斯・索勇－金・庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505929-497bb9?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的危机\",\n    \"author\": \"玛丽安・麦克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张文鹤护肤指南\",\n    \"author\": \"张文鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起来粉碎朋友圈养生谣言\",\n    \"author\": \"好奇博士团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你想知道的生酮饮食错误\",\n    \"author\": \"米尔萨德・哈西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伴你一生的睡眠指导书\",\n    \"author\": \"爱丽丝・格雷戈里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老爸评测：你的健康呵护指南\",\n    \"author\": \"老爸评测\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512535-af72f0?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干掉失眠\",\n    \"author\": \"科琳・恩斯特朗姆/阿丽莎・布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学跑步\",\n    \"author\": \"罗炜樑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥胖代码\",\n    \"author\": \"冯子新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姿势跑法\",\n    \"author\": \"尼古拉斯・罗曼诺夫/约翰・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样减肥不反弹\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优雅老去\",\n    \"author\": \"杰罗尔德・温特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990655-a922dd?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不吃糖的理由\",\n    \"author\": \"加里・陶布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989851-a15964?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口一口“吃掉”你\",\n    \"author\": \"生命时报\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度营养\",\n    \"author\": \"凯瑟琳・沙纳汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经科医生有话要说\",\n    \"author\": \"吴洵昳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无伤跑法\",\n    \"author\": \"戴剑松/郑家轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电增肌\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健身笔记\",\n    \"author\": \"叔贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"久坐不伤身\",\n    \"author\": \"哈丽特・格里菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自愈力的真相\",\n    \"author\": \"乔・马钱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045252-1206fc?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产科男医生手记\",\n    \"author\": \"田吉顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我们灵魂激荡身体欢愉\",\n    \"author\": \"任黎明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043866-18019c?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晓肚知肠\",\n    \"author\": \"段云峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043326-134f07?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女生呵护指南\",\n    \"author\": \"六层楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康零食：知道这些就够了\",\n    \"author\": \"戴尔・沃勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是你吃出来的\",\n    \"author\": \"夏萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会发胖\",\n    \"author\": \"盖里・陶比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去你的脂肪\",\n    \"author\": \"格兰特・斯科菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体2\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主食芯片\",\n    \"author\": \"鸿涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032313-6abb7f?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食療聖經\",\n    \"author\": \"Michael Greger, MD\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031794-797945?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷物大脑\",\n    \"author\": \"戴维・珀尔马特/戴维・珀尔马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌群大脑\",\n    \"author\": \"戴维・珀尔马特/克里斯廷・洛伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"急救，比医生快一步\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食的迷思\",\n    \"author\": \"蒂姆・斯佩克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮肤的秘密\",\n    \"author\": \"耶尔・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破解生死大数据\",\n    \"author\": \"杰瑞米・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长寿的基因\",\n    \"author\": \"普雷斯顿・埃斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西1\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西2\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023928-751840?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明年更年轻\",\n    \"author\": \"克里斯・克劳利/亨利・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救命之方\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023430-dd9f1a?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，健身房\",\n    \"author\": \"高宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太极跑：不费力、无伤害的革命性跑步法\",\n    \"author\": \"丹尼・德雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周健身4小时\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021222-0e5913?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冥想\",\n    \"author\": \"斯瓦米・拉玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019578-9ee5ca?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡眠革命\",\n    \"author\": \"尼克・利特尔黑尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肠子的小心思\",\n    \"author\": \"朱莉娅・恩德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这书能让你戒烟\",\n    \"author\": \"亚伦・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011292-5c7edf?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救护车到来前，你能做什么？\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谣言粉碎机系列（套装共3册）\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学观止（上下册）\",\n    \"author\": \"贺兰特・凯查杜里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的重建\",\n    \"author\": \"露易丝·海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众病之王：癌症传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔玉涛：宝贝健康公开课\",\n    \"author\": \"崔玉涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004908-0271f7?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于火星的一切\",\n    \"author\": \"李德范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866\",\n    \"category\": \"火星\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星救援\",\n    \"author\": \"安迪·威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006720-999daf?p=8866\",\n    \"category\": \"火星\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新规则\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866\",\n    \"category\": \"竞争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与众不同\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866\",\n    \"category\": \"竞争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家们的作家\",\n    \"author\": \"克雷格・惠特洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492210-4f29b8?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王的归程\",\n    \"author\": \"威廉・达尔林普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510789-d047d4?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有终点的列车\",\n    \"author\": \"劳拉・麦克维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030246-4da254?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群山回唱\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029064-c691c9?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无规则游戏\",\n    \"author\": \"塔米姆・安萨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字乌托邦\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020883-6adb43?p=8866\",\n    \"category\": \"软件\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大教堂与集市\",\n    \"author\": \"Eric S. Raymond\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017643-c49df8?p=8866\",\n    \"category\": \"软件\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计模式之禅（第2版）\",\n    \"author\": \"秦小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866\",\n    \"category\": \"软件\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不吼不叫，妈妈这样做，孩子一定喜欢（套装三册）\",\n    \"author\": \"韩笑/李力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034617-802318?p=8866\",\n    \"category\": \"家庭教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866\",\n    \"category\": \"房龙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧烤怪谈\",\n    \"author\": \"蔡必贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866\",\n    \"category\": \"诡异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866\",\n    \"category\": \"诡异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善哉善哉，就你话多\",\n    \"author\": \"明安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小文艺口袋文库·知人系列（全7册）\",\n    \"author\": \"安妮・海勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985999-ba1691?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹病房\",\n    \"author\": \"朱利安・桑德勒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983974-3ed4fc?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢你，像风走了八千里\",\n    \"author\": \"末那大叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野（木小瓷作品）\",\n    \"author\": \"木小瓷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049983-aec537?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹是深闺梦里人\",\n    \"author\": \"井上三尺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030462-ce1a44?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，不止旅行\",\n    \"author\": \"周硚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活上瘾指南\",\n    \"author\": \"姚瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿司匹林博物馆\",\n    \"author\": \"赵越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我留在你身边\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009714-b77a2e?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱迪生：创新之源与商业成就的秘密\",\n    \"author\": \"里昂纳多・迪格拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028344-204c61?p=8866\",\n    \"category\": \"爱迪生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙（白金升级版）\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的战争\",\n    \"author\": \"Momself\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破圈：如何突破认知局限并实现终身成长\",\n    \"author\": \"顾及\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样发言\",\n    \"author\": \"久久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神兽引领的使命\",\n    \"author\": \"小松美羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498813-e7da4f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑：看清这个世界的底牌\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为可怕的自律人\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499233-71cb99?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样行动\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不必太用力\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不和世界讲道理\",\n    \"author\": \"曹晟康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500178-c94c1a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔科姆·格拉德威尔系列（套装共6册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间管理\",\n    \"author\": \"吉姆・兰德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500340-640c65?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理咨询师系列精选（套装14册）\",\n    \"author\": \"沙格曼・卡亚金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500541-cb7910?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宁静的力量\",\n    \"author\": \"瑞安・霍利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500661-e3cdce?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错失恐惧\",\n    \"author\": \"帕特里克·J.麦金尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500760-480526?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自律修炼手册\",\n    \"author\": \"史蒂夫・帕弗利纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500763-ae1e4a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智突围\",\n    \"author\": \"Windy Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500784-b71caf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理自助读物精选（套装17册）\",\n    \"author\": \"南茜・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿智者的法则\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李诞脱口秀工作手册\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是你啊\",\n    \"author\": \"皮埃尔・佩利西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理敏感\",\n    \"author\": \"全弘镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508092-cbb0a1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别会说话的人都这样说话\",\n    \"author\": \"大野萌子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极心理测试\",\n    \"author\": \"迈克・布里翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509244-f90270?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就是干不过做PPT的\",\n    \"author\": \"下地宽也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509607-fcbab6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱可能\",\n    \"author\": \"伊迪丝・伊娃・埃格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带着恐惧前行\",\n    \"author\": \"鲁斯・苏库普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510180-c33921?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没时间休息的休息法\",\n    \"author\": \"荻野淳也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510219-79ad9b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘与荣耀\",\n    \"author\": \"马寅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510381-a861bf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给职场人的5堂逻辑思考课\",\n    \"author\": \"深泽真太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己当回事儿\",\n    \"author\": \"杨天真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断舍离（全3册）\",\n    \"author\": \"山下英子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510945-54d643?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"负面情绪，正面解决\",\n    \"author\": \"利斯・范・萨斯特伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510939-6c58a7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惰性\",\n    \"author\": \"加布里埃尔・厄廷根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511077-b1ee53?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪力\",\n    \"author\": \"萨姆・阿利布兰多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511164-6145a4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非线性成长\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尬聊终结者\",\n    \"author\": \"庄舒涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不妥协的谈判\",\n    \"author\": \"丹尼尔・夏皮罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个性优势\",\n    \"author\": \"吉姆・巴雷特/休・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511347-2ee920?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交谈的要素\",\n    \"author\": \"N.J.恩菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511476-4db402?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗（青少版）\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511956-44780a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲技巧\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512052-f9a19a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个工作基本\",\n    \"author\": \"松浦弥太郎/野尻哲也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512118-2798e5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为黑马\",\n    \"author\": \"托德・罗斯/奥吉・奥加斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512115-a73ff5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规划最好的一年\",\n    \"author\": \"迈克尔・海亚特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512514-02047a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重复力\",\n    \"author\": \"梁译文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512568-22e654?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万富翁比你强在哪儿\",\n    \"author\": \"安・玛丽・萨巴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512610-18f14c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不为所动\",\n    \"author\": \"朱迪斯・欧洛芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512892-a43fc0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越自卑\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512901-1651ea?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进有道\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512904-0b5469?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己是一生浪漫的开始\",\n    \"author\": \"静听风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513075-1286b7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节的力量\",\n    \"author\": \"FLANAGAN裕美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513111-35214f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策大脑\",\n    \"author\": \"艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513321-96e79f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智商税\",\n    \"author\": \"高德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513330-2251ee?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时这样说就好了\",\n    \"author\": \"伊庭正康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控沟通\",\n    \"author\": \"贾斯汀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级心智\",\n    \"author\": \"诺曼·E·罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513693-5e6741?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自律给你自由\",\n    \"author\": \"约克・威林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513741-adf394?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抓重点\",\n    \"author\": \"赵启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004644-1ddabe?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选准赛道再奔跑\",\n    \"author\": \"七芊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004608-82df1b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为自控者\",\n    \"author\": \"Susan Kuang\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004494-7eeeaf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢家法则\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004374-804330?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的才华战略\",\n    \"author\": \"莱昂纳多・洛斯佩纳托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我边界\",\n    \"author\": \"乔治・戴德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004260-42ce47?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：透过表面看本质的六步思考法\",\n    \"author\": \"萧亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004149-6c477b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何戒掉坏习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚持，一种可以养成的习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003810-be7b78?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瞧！不一样的我\",\n    \"author\": \"小盐真司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003723-564f84?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢思考\",\n    \"author\": \"特奥・康普诺利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003558-4cb404?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气场哪里来\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003540-37d1e7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快行动，慢思考\",\n    \"author\": \"迪安・德尔・塞斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002415-60e276?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本抑郁自救指南\",\n    \"author\": \"所长任有病\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为主角\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为非凡的你\",\n    \"author\": \"杰西卡・迪卢洛・赫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002193-fafba0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘墉的处世情商课\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓会说话，就是会换位思考\",\n    \"author\": \"卡洛琳・塔格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002073-ea5db8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的做事风格系列（全3册）\",\n    \"author\": \"高桥政史/横田真由子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002070-37a922?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动机心理学\",\n    \"author\": \"罗曼・格尔佩林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002016-a8251f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷静表达的艺术\",\n    \"author\": \"罗纳德·T·派特佛恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑你好\",\n    \"author\": \"安珀・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造人生的伙伴\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祝你快乐勇敢\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场自我成长\",\n    \"author\": \"渡边秀和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001134-9c9089?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拖延症患者自救手册\",\n    \"author\": \"加兰・库尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构化写作\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆宫殿\",\n    \"author\": \"石伟华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本事：应对未来世界的12项永久技能\",\n    \"author\": \"基兰・弗拉纳根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000405-a834ab?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闭环思维\",\n    \"author\": \"智俊启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款写作\",\n    \"author\": \"陈阿咪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000342-ae106c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简时间\",\n    \"author\": \"洛塔尔・赛韦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000291-c277a4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越你的大脑\",\n    \"author\": \"玛莎・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000276-6ec305?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼岸风景\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000249-6eb01e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少有人走的路（1-8全套）\",\n    \"author\": \"斯科特・派克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000219-cda644?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21天说服力养成\",\n    \"author\": \"诺瓦・戈尔茨坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000174-b0db79?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"归属感\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999826-9a1d49?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好心情手册\",\n    \"author\": \"邵夷贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999712-2d96e2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的150个信念\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2轴思维\",\n    \"author\": \"木部智之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999532-427444?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动变现\",\n    \"author\": \"杨小米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999424-ac20ab?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大器晚成\",\n    \"author\": \"里奇・卡尔加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就斜杠人生\",\n    \"author\": \"玛希・埃尔博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998818-5c9d5c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人效应\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998548-5194e2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画生活哲学一看就懂\",\n    \"author\": \"李静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级个体\",\n    \"author\": \"徐大维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懂得倾听，是学会沟通的第一步\",\n    \"author\": \"伯纳德·T.费拉里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997870-0eb102?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破你的学生思维\",\n    \"author\": \"北京职慧公益创业发展中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997843-a71c7e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考\",\n    \"author\": \"樱田润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997600-d2665d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在动机\",\n    \"author\": \"爱德华・L. 德西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997342-de547e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朋友圈的人际高手\",\n    \"author\": \"诸葛思远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997123-04d286?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知红利\",\n    \"author\": \"谢春霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天演好一个情绪稳定的成年人\",\n    \"author\": \"老杨的猫头鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996994-edf7f5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬功夫：助你精进的八大硬核技能\",\n    \"author\": \"崔诚靓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效沟通的100种方法\",\n    \"author\": \"王利利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内心的重建\",\n    \"author\": \"维尼老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996175-2a2c01?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效迭代\",\n    \"author\": \"冯起升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带货王\",\n    \"author\": \"李瑛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活需要界限感\",\n    \"author\": \"景天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995263-2bc9b2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会幸福\",\n    \"author\": \"陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"差异优势\",\n    \"author\": \"约翰·C. 马克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级大脑的七个习惯\",\n    \"author\": \"菅原道仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995182-38b399?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"持续行动\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995179-bf6496?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为极少数\",\n    \"author\": \"李栩然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995131-73e16b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本口才书\",\n    \"author\": \"陈慕妤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商大师（息怒篇）\",\n    \"author\": \"伯纳德・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向上生长\",\n    \"author\": \"九边\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995068-5df96e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讲好一个故事\",\n    \"author\": \"默里・诺塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995053-9ef98f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇敢而非完美\",\n    \"author\": \"拉什玛・萨贾尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心：稻盛和夫的一生嘱托\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度改变\",\n    \"author\": \"泽阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994561-5fcd0c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何形成清晰的观点\",\n    \"author\": \"查尔斯·S.皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力\",\n    \"author\": \"高琳/林宏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默就是说话让人舒服\",\n    \"author\": \"王荣华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993952-7eaaf2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤气灯效应\",\n    \"author\": \"罗宾・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被拒绝的勇气\",\n    \"author\": \"岸见一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993493-64723f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讲好一件事\",\n    \"author\": \"埃丝特·K·乔伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992356-e961db?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪革命\",\n    \"author\": \"约翰・辛德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗逆力\",\n    \"author\": \"邹建章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992029-95a7a3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天赋觉醒\",\n    \"author\": \"江潮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992014-0ffeb8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让性格害了你\",\n    \"author\": \"邢群麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让情绪毁了你的努力\",\n    \"author\": \"剑圣喵大师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力：人生自救课\",\n    \"author\": \"博锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991816-6657bc?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格拼图\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声音的魅力\",\n    \"author\": \"张皓翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991552-babdf5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向高敏者\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991516-921fc6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是个年轻人，请你好好生活\",\n    \"author\": \"吕不同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991471-8feb15?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场谈判经典书系（套装共3册）\",\n    \"author\": \"德雷克・阿顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恰到好处的挫折\",\n    \"author\": \"格雷格• S •里德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991267-795ad9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生没有后悔药\",\n    \"author\": \"约翰・伊佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990643-2981f8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你没有退路，才有出路\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的优点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990421-adb4e8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会决断（原书第2版）\",\n    \"author\": \"苏・哈德菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即答力\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990169-68ccea?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图攻略\",\n    \"author\": \"王健文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样沟通最高效\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年顶十年\",\n    \"author\": \"剽悍一只猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989455-699466?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课3\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不想将就过一生\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你又忙又美，何惧患得患失\",\n    \"author\": \"梁爽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样用脑不会累\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的囚徒\",\n    \"author\": \"亚历克斯・佩塔克斯/伊莱恩・丹顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超强专注力\",\n    \"author\": \"西多昌规\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要做人生的甲方\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是谁出的题这么难，到处都是正确答案\",\n    \"author\": \"邱天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考法\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧与魔咒\",\n    \"author\": \"塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微精通\",\n    \"author\": \"罗伯特・特威格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考与表达的20堂课\",\n    \"author\": \"久恒启一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好接话\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本正经又怪诞的行为心理学\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985639-1775da?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时短术\",\n    \"author\": \"日本生产性改善会议\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985471-dd0c8f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩的就是规则\",\n    \"author\": \"伊恩・伯格斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进阶\",\n    \"author\": \"天降龙虾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985267-e969dd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个抗压的人\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何思考\",\n    \"author\": \"迈克尔D.C.卓特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984643-f68bb5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做一场精彩的演讲\",\n    \"author\": \"琼・戴兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异议的力量\",\n    \"author\": \"查兰・奈米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生护城河\",\n    \"author\": \"张辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983704-127285?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同自己\",\n    \"author\": \"斯蒂芬妮・斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给别人留下好印象\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑：让选择变简单的方法\",\n    \"author\": \"欧文・瑟维斯/罗里・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀到不能被忽视\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与表达力影响力\",\n    \"author\": \"洪琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054306-56f527?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与内心的冲突和解\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有意识的社交\",\n    \"author\": \"肯・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是我要的工作\",\n    \"author\": \"克里斯・吉耶博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用事实说话\",\n    \"author\": \"马克・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：如何成为一个有价值的知识变现者\",\n    \"author\": \"Angie\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢在上班时\",\n    \"author\": \"高城幸司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会快乐\",\n    \"author\": \"马修・理查德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052965-df8220?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一问一世界\",\n    \"author\": \"杨澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052782-f552f4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼识破真相的思考力\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知·情感·意志\",\n    \"author\": \"詹姆斯・马克・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在时光中盛开的女子\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控：如何成为一个冷静智慧的人\",\n    \"author\": \"董小楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052524-78de4c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为职场实力派\",\n    \"author\": \"日本GLOBIS商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052479-c909c0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商是什么？\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的自律，给你自由\",\n    \"author\": \"小椰子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零压人生\",\n    \"author\": \"米修・斯托罗尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051774-c1d5fd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力迁移\",\n    \"author\": \"乔治・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向思考\",\n    \"author\": \"迈克尔・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的降落伞是什么颜色？（全新修订版）\",\n    \"author\": \"理查德・尼尔森・鲍利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样管精力，就怎样过一生\",\n    \"author\": \"奥迪尔・夏布里亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可能性法则\",\n    \"author\": \"梅尔・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051441-e9bca0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学经典课程分享（套装9册）\",\n    \"author\": \"哈佛大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早起的奇迹\",\n    \"author\": \"哈尔・埃尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051405-4773be?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总能做出正确决定的幸运法则\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是记性差，只是没找对方法\",\n    \"author\": \"池田义博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出众，从改变习惯开始\",\n    \"author\": \"马克・列克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡决断力\",\n    \"author\": \"石井辉美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾心可鉴\",\n    \"author\": \"彭凯平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051123-b5e48b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡笔记思考法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长行动指南\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加速\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051021-d70559?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精力管理手册\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050901-31d610?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键提问\",\n    \"author\": \"詹姆斯·E.瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通也要懂套路\",\n    \"author\": \"姜朝川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是失败，只是差一点成功\",\n    \"author\": \"萨拉・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马云的说话之道（2019版）\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津式高效沟通\",\n    \"author\": \"冈田昭人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能2\",\n    \"author\": \"刘船洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的焦虑\",\n    \"author\": \"斯科特・施托塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟沟通课\",\n    \"author\": \"鱼住理英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最神奇的24堂课\",\n    \"author\": \"查尔斯・哈奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别做那只迷途的候鸟\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都合得来\",\n    \"author\": \"罗伯特・萨顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049395-f814dd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一印象心理学\",\n    \"author\": \"周一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049380-6bfe58?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会心理学（第8版）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要如何衡量你的人生\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力思维\",\n    \"author\": \"安东尼・塔斯加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（青春版）\",\n    \"author\": \"书鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受益一生的六本书（套装六册）\",\n    \"author\": \"鬼谷子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果敢力\",\n    \"author\": \"蒋齐仕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度说服\",\n    \"author\": \"梁秋阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趁早（十周年畅销升级版）\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被左右的独立思维\",\n    \"author\": \"塔利・沙罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安心正念课\",\n    \"author\": \"赵安安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046125-a2aee7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出剧情\",\n    \"author\": \"李雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结拖延症的49种方法\",\n    \"author\": \"海韵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆天才\",\n    \"author\": \"弗朗西斯卡・吉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快书写，慢思考\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045027-424d69?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻人，你就是想太多\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045006-2bc59b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极思考\",\n    \"author\": \"约翰尼・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044913-7a0138?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5秒法则\",\n    \"author\": \"梅尔・罗宾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044172-d3beba?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你当像鸟飞往你的山\",\n    \"author\": \"塔拉・韦斯特弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人心理学\",\n    \"author\": \"赵育宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为面向未来的学习者（原书第7版）\",\n    \"author\": \"卡罗尔・卡特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而不凡\",\n    \"author\": \"维申・拉克雅礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册：重塑升级版\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"策略：如何在复杂的世界里成为高手\",\n    \"author\": \"江潮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商者会谈判\",\n    \"author\": \"冯岳宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三道门\",\n    \"author\": \"亚历克斯・班纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的创造力类型\",\n    \"author\": \"梅塔・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不怯场\",\n    \"author\": \"译夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042144-f8796b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆\",\n    \"author\": \"卢龙斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惯性思维\",\n    \"author\": \"任白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能：为什么我们管不住自己？\",\n    \"author\": \"特里・伯纳姆/杰伊・费伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041325-3a6922?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人极简图表工作法\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董卿：做一个有才情的女子\",\n    \"author\": \"乔瑞玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要输在思维方法上\",\n    \"author\": \"夏欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040785-53d198?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力：刘媛媛的逆袭课\",\n    \"author\": \"刘媛媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040512-7c2ad0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信的力量\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040455-c1bdea?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奔跑的查理\",\n    \"author\": \"查理・恩格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040404-94e03c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不会拒绝上\",\n    \"author\": \"李劲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇气\",\n    \"author\": \"萨莉・克劳切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度连接\",\n    \"author\": \"杰西・沃伦・特维罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039315-f3117a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好听：如何练就好声音\",\n    \"author\": \"徐洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038898-d0f679?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"练习的心态\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038139-a13fd2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫉羡与感恩\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说话体现格局，决定结局\",\n    \"author\": \"凌岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A4纸上看人生\",\n    \"author\": \"刘建梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的眼界，决定你的全世界\",\n    \"author\": \"西武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周工作4小时（修订版）\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱意识\",\n    \"author\": \"沈诱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的第八个习惯\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的84000种可能\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033465-4e8890?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜加油站遇见苏格拉底\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进2：解锁万物的心智进化法\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十几岁，没有十年\",\n    \"author\": \"孙晴悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"升维：让你人生出众的另类通道\",\n    \"author\": \"褚明宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学经典必读系列（套装共5册）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我曾走在崩溃的边缘\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每一个认真生活的人，都值得被认真对待\",\n    \"author\": \"马叛/傅首尔/小岩井等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030477-a9eb3c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲和力\",\n    \"author\": \"古宫昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有多强大，就有多温柔\",\n    \"author\": \"王珣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有你的计划，世界另有计划\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029721-72fca7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长：颠覆思维模式，重新定义成功\",\n    \"author\": \"科里・夏纳罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029661-3b9e65?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向前一步\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你只是看起来很专注\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你坚持的原则其实害了你\",\n    \"author\": \"午堂登纪雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029151-25cd57?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再忙也要用心生活\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩老板\",\n    \"author\": \"索菲亚・阿莫鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能量姿势\",\n    \"author\": \"埃米・卡迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027921-c57e26?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾莉诺好极了\",\n    \"author\": \"盖尔・霍尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027849-94039f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30岁前的每一天\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027846-1a01dd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果世事总能得偿所愿\",\n    \"author\": \"余儒海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027333-fd42c9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正能量\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027312-ce75d5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在天堂那五年\",\n    \"author\": \"约翰・施利姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027240-d0e434?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我赋能\",\n    \"author\": \"蒂法尼・杜芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027006-6f650f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力变现\",\n    \"author\": \"林宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我们相逢在更高处\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026193-085500?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让直性子毁了你\",\n    \"author\": \"冠诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024201-97cdf0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美好人生运营指南\",\n    \"author\": \"一稼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022893-a74f2b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是时间控\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活出人生最好的可能\",\n    \"author\": \"毕啸南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021909-536ba4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向着光亮那方\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020682-46d971?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰普勒极简人生法则系列（套装共6册）\",\n    \"author\": \"理查德・泰普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点：如何赢得友谊并影响他人\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020529-00fe95?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓高情商，就是有趣和知趣\",\n    \"author\": \"李林坪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019842-a3c50e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书都不会读，你还想成功\",\n    \"author\": \"二志成/郑会一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019692-41d226?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感谢那些让你不开心的事儿\",\n    \"author\": \"索尼娅・瑞克蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019236-6bd523?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不要你死于一事无成\",\n    \"author\": \"法齐娅・库菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的孤独\",\n    \"author\": \"陈果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017451-8689ec?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活法（修订版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016905-37a500?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你骨子里是个牛人\",\n    \"author\": \"珍・新赛罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016563-63ad1c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一种选择\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016002-2ef252?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没经验，是你最大优势\",\n    \"author\": \"蒋雅淇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015990-ad6ad2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉田医生哈佛求学记\",\n    \"author\": \"吉田穗波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世上没有怀才不遇这件事\",\n    \"author\": \"温言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014346-461bcf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要么出众，要么出局\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014193-3f0667?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014028-901478?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从现在出发\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013962-86c669?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在哈佛的最后一堂课\",\n    \"author\": \"艾瑞克・赛诺威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美II\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013653-c8d28d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信力：成为最好的自己\",\n    \"author\": \"罗布・杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012822-5aa98f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习\",\n    \"author\": \"本尼迪克特・凯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在绝望中寻找希望\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你自以为的极限，只是别人的起点\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011988-1c9150?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作DNA\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011676-e33838?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不抱怨的世界套装（共2册）\",\n    \"author\": \"威尔・鲍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011442-839945?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决冲突的关键技巧\",\n    \"author\": \"达纳・卡斯帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不设限（中英双语版）\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"28岁赚千万\",\n    \"author\": \"穷富弹指间\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的力量（珍藏版）\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生命有什么可能\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你的才华还撑不起你的梦想时\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意学习\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁动了我的奶酪\",\n    \"author\": \"斯宾塞・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009150-f75f96?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力法则：用一年时间积累一生财富（套装共3册）\",\n    \"author\": \"拿破仑・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你从未真正拼过\",\n    \"author\": \"LinkedIn（领英）\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008895-f7513b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗达・拜恩作品集（全五册）\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008868-6c5f07?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗振宇：罗辑思维成长三部曲\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008769-f7cf2e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你的青春不负梦想\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008100-18736d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是清单控\",\n    \"author\": \"宝拉・里佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007710-be0e00?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还年轻，我还可以重新出发\",\n    \"author\": \"唐骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨婴国\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生：面对冰封的海洋\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷军：创业没有时间表\",\n    \"author\": \"胡以贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独自上场\",\n    \"author\": \"李娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大是熬出来的\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进：如何成为一个很厉害的人\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的重建\",\n    \"author\": \"露易丝·海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷禁书\",\n    \"author\": \"查尔斯・哈尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫眼看美国\",\n    \"author\": \"聂平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全中国最穷的小伙子发财日记\",\n    \"author\": \"重庆老康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力，才配有未来\",\n    \"author\": \"小川叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力到无能为力，拼搏到感动自己\",\n    \"author\": \"沐木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006447-568588?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院最受欢迎的思维课\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不奋斗就等死\",\n    \"author\": \"陈轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006111-6361a4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（20周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂的程序员\",\n    \"author\": \"绝影\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005982-212b99?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要让未来的你，讨厌现在的自己\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005937-7d4be8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的真谛\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁的青春不迷茫\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史玉柱自述：我的营销心得\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁都不敢欺负你\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005631-9ebae5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将来的你，一定会感谢现在拼命的自己\",\n    \"author\": \"汤木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因你不同：李开复自传\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005244-a5ac8a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命3.0（轻携版）\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046362-c6312f?p=8866\",\n    \"category\": \"价值观\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎魔人修订版一至八全集\",\n    \"author\": \"安杰伊・萨普科夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493842-0102d1?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎魔人修订版全集（全七卷）\",\n    \"author\": \"安杰伊・萨普科夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503922-b0f3e6?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾之子珍藏版套装\",\n    \"author\": \"布兰登・桑德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508860-829716?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚瑟王三部曲\",\n    \"author\": \"伯纳德・康威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508911-7853b0?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百变王牌套装\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004479-0fecb7?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐骨\",\n    \"author\": \"天涯野草\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991843-ed92a9?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食梦馆\",\n    \"author\": \"黎奺酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985045-f4a6e9?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸魔法系列三部曲\",\n    \"author\": \"查丽・恩・霍姆博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052563-87c7f5?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驭鲛记（全二册）\",\n    \"author\": \"九鹭非香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045429-d26386?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡林的子女（插图本）\",\n    \"author\": \"J.R.R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044868-5b0ca5?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Game of Thrones Series\",\n    \"author\": \"George R. R. Martin\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039252-7f3bcd?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的阴阳两界\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035031-a60fc1?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乳房\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白天的房子，夜晚的房子\",\n    \"author\": \"奥尔加・托卡尔丘克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027042-2e68ad?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍比特人\",\n    \"author\": \"J.R.R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023265-3225d7?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"齐天大圣传（共六册）\",\n    \"author\": \"楚阳冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021522-feabef?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙枪正典（套装共6册）\",\n    \"author\": \"玛格丽特・魏丝/崔西・西克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017556-0ea52d?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵宝钻\",\n    \"author\": \"托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015567-02c2c7?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈利波特完整系列\",\n    \"author\": \"J・K・罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008673-cef687?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级搜索术\",\n    \"author\": \"朱丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004089-122bcf?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微精通\",\n    \"author\": \"罗伯特・特威格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何一开口就赢\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用手机拍一部电影\",\n    \"author\": \"英国Little White Lies编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好听：如何练就好声音\",\n    \"author\": \"徐洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038898-d0f679?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午两甲子：忆与思\",\n    \"author\": \"姜鸣/贾葭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866\",\n    \"category\": \"甲午\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午殇思\",\n    \"author\": \"刘声东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009177-e05cf4?p=8866\",\n    \"category\": \"甲午\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新政与盛世\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045420-8e75ff?p=8866\",\n    \"category\": \"晚明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚明民变\",\n    \"author\": \"李文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017412-226b45?p=8866\",\n    \"category\": \"晚明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变历史的100个实验（套装共2册）\",\n    \"author\": \"亚当・哈特-戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502659-93c7ba?p=8866\",\n    \"category\": \"实验\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效论证\",\n    \"author\": \"大卫・莫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的才华战略\",\n    \"author\": \"莱昂纳多・洛斯佩纳托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超强专注力\",\n    \"author\": \"西多昌规\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是方法控\",\n    \"author\": \"金武贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讨论\",\n    \"author\": \"史蒂芬·D. 布鲁克菲尔德/史蒂芬・普莱斯基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984676-66809c?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安心正念课\",\n    \"author\": \"赵安安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046125-a2aee7?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思考\",\n    \"author\": \"迈克・费廖洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结拖延症的49种方法\",\n    \"author\": \"海韵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂一本书\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学习\",\n    \"author\": \"斯科特・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓学习好，就是方法好\",\n    \"author\": \"坪田信贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036189-bba070?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作提高一点点\",\n    \"author\": \"玛丽-凯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033330-7c6a2b?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道（第2版）\",\n    \"author\": \"乔希・维茨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读\",\n    \"author\": \"藤原和博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意改变\",\n    \"author\": \"玛丽・简・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028248-dd3101?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思辨与立场\",\n    \"author\": \"理查德・保罗/琳达・埃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完全写作指南\",\n    \"author\": \"劳拉・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为有效学习的高手\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万万没想到：用理工科思维理解世界\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"延展：释放有限资源的无限潜能\",\n    \"author\": \"斯科特・索南沙因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全神贯注的方法\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习：彻底解决你的知识焦虑\",\n    \"author\": \"今井睦美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019398-eb3c14?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效阅读\",\n    \"author\": \"彼得・孔普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018705-8aca11?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸工作整理术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016548-7f5190?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸创意思考术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的工作方法\",\n    \"author\": \"中村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请停止无效努力\",\n    \"author\": \"孙圈圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何打造你的独特观点\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014178-6adf58?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意练习：如何从新手到大师\",\n    \"author\": \"安德斯・艾利克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本文学书\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012756-430541?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本书\",\n    \"author\": \"莫提默・艾德勒 / 查尔斯・范多伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡工具\",\n    \"author\": \"保罗・弗里嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要自学\",\n    \"author\": \"张玳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决问题最简单的方法\",\n    \"author\": \"达伦・布里奇/戴维・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外语是怎样学会的\",\n    \"author\": \"王初明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆力训练法\",\n    \"author\": \"刘志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005052-7a59fb?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的眼脑直映快读法\",\n    \"author\": \"胡雅茹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004983-8ff776?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之一·入唐\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006813-c02669?p=8866\",\n    \"category\": \"神怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之二·咒俑\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006810-5335bf?p=8866\",\n    \"category\": \"神怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之三·胡术\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006801-6964e4?p=8866\",\n    \"category\": \"神怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之四·不空\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006795-b95cc7?p=8866\",\n    \"category\": \"神怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凶年\",\n    \"author\": \"大卫・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理档案（共4册）\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日食之后\",\n    \"author\": \"萨拉・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003177-593f47?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理套装（共四册）\",\n    \"author\": \"许大鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默之地\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000417-20afbf?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理分析\",\n    \"author\": \"张蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救赎之路\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000348-51b134?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后之子\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000255-aea9fc?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以眼还眼\",\n    \"author\": \"米切尔·P·罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记3\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神弃之地\",\n    \"author\": \"唐纳德・雷・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985507-b2ba91?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋上的救赎（增补版）\",\n    \"author\": \"指纹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053079-0512e3?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪全书系列（共6册）\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052944-2dd9a4?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦畸者\",\n    \"author\": \"叶遁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽微的人性\",\n    \"author\": \"李玫瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052320-cff183?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱尔兰人\",\n    \"author\": \"查尔斯・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051825-b70bae?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎凶记（套装全三册）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051765-86815f?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者3\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破碎海岸\",\n    \"author\": \"彼得・坦普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047442-f42c38?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神谕之死\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044010-bd23c2?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪6\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顶级悬案\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040371-b4acad?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白城恶魔\",\n    \"author\": \"埃里克・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038736-2b449e?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无夜边境\",\n    \"author\": \"田浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038571-bea58f?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的法庭科学\",\n    \"author\": \"杰伊・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦渴\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼与福尔摩斯\",\n    \"author\": \"戴维・格兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有他知道一切\",\n    \"author\": \"利兹・纽金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027873-fe0d3b?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪3\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027291-d26495?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪2\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022272-fa2c80?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"默读\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021312-2cf0a1?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶女：普通女性为何化身连环杀人狂\",\n    \"author\": \"彼得・佛伦斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020835-ba00af?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血法医（1-4季全集）\",\n    \"author\": \"杰夫・林赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读心神探：FBI心理侧写术\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拼布娃娃\",\n    \"author\": \"丹尼尔・科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015456-f0ae77?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪前传\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014943-24df7d?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪5\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013539-bb0b0c?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七杀简史\",\n    \"author\": \"马龙・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008202-0ba01b?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪4\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医手记系列套装（全四册）\",\n    \"author\": \"刘真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫鼠游戏\",\n    \"author\": \"弗兰克·阿巴格内尔/斯坦·雷丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007128-14a58e?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸案调查科系列（全5册）\",\n    \"author\": \"九滴水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳黑子\",\n    \"author\": \"须一瓜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006282-cd6c39?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康守护全书\",\n    \"author\": \"梁湛威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499209-1c9f53?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以武论道：李小龙的功夫心法（套装共5册）\",\n    \"author\": \"李小龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经科医生有话要说\",\n    \"author\": \"吴洵昳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨提亚冥想\",\n    \"author\": \"约翰・贝曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很老很老的老偏方大全集（共10册）\",\n    \"author\": \"胡丽娟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医目了然\",\n    \"author\": \"懒兔子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和谐两性：从了解对方到相互吸引（套装共3册）\",\n    \"author\": \"埃德蒙・沙夫茨伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029880-48513c?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肿瘤防治科普丛书（套装共13册）\",\n    \"author\": \"重庆市肿瘤医院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱：失眠、抑郁、焦虑（套装共3册）\",\n    \"author\": \"凯特・米德尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019281-098512?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽烟喝酒防癌书\",\n    \"author\": \"柳垂亮/李万瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007020-4eeab1?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球贸易摩擦与大国兴衰\",\n    \"author\": \"任泽平/罗志恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991219-d430c3?p=8866\",\n    \"category\": \"贸易战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疫苗竞赛\",\n    \"author\": \"梅雷迪丝・瓦德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866\",\n    \"category\": \"疫苗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"免疫\",\n    \"author\": \"尤拉・比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866\",\n    \"category\": \"疫苗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞行为学6\",\n    \"author\": \"丹・艾瑞里/马特・R.特劳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048546-c8fffc?p=8866\",\n    \"category\": \"行为学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上寻仙记\",\n    \"author\": \"锦翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866\",\n    \"category\": \"鬼怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866\",\n    \"category\": \"鬼怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大猎杀2\",\n    \"author\": \"庄欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024588-69ffa1?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股民的眼泪\",\n    \"author\": \"张华桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战上海：决胜股市未来三十年\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大猎杀\",\n    \"author\": \"庄欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006630-919838?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈：所有问题都是一场赛局\",\n    \"author\": \"川西谕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509700-04f1de?p=8866\",\n    \"category\": \"策略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直面不确定性\",\n    \"author\": \"大辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866\",\n    \"category\": \"策略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉语四千年\",\n    \"author\": \"黎锦熙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510942-d4292c?p=8866\",\n    \"category\": \"汉语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉语讲话\",\n    \"author\": \"王力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045315-e7ccda?p=8866\",\n    \"category\": \"汉语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油的时代\",\n    \"author\": \"王能全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866\",\n    \"category\": \"石油\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油战争\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866\",\n    \"category\": \"石油\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"效应\",\n    \"author\": \"中璋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997804-194bf8?p=8866\",\n    \"category\": \"传播\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解媒介\",\n    \"author\": \"马歇尔・麦克卢汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031776-144515?p=8866\",\n    \"category\": \"传播\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弱传播\",\n    \"author\": \"邹振东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027201-40d002?p=8866\",\n    \"category\": \"传播\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典名著超值套装（80册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498210-cccd8e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基中篇心理小说经典（全4册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499635-ae8716?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著大师课合集（套装全7册）\",\n    \"author\": \"柳鸣九等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大名著（彩皮版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代文集（全7册）\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989746-ce7666?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大名著·权威定本（套装4册）\",\n    \"author\": \"吴承恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985042-6b7221?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国四大名著（插图典藏版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054390-341814?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界少年文学经典文库·国外经典篇（全套47册）\",\n    \"author\": \"雨果等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041877-25ba88?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方与北方（名著名译丛书）\",\n    \"author\": \"盖斯凯尔夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040674-6dd07a?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城堡（名著名译丛书）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040650-b9b5bf?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北大名家名著文丛（套装共六册）\",\n    \"author\": \"许渊冲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040761-0f0cc1?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺丝在拧紧（译文经典）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039372-a73b97?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弃儿汤姆·琼斯史（全2册）\",\n    \"author\": \"亨利・菲尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037641-305812?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼采经典著作及研究丛书（四册全）\",\n    \"author\": \"尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036969-f5e56d?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷经典译文全集（共45册）\",\n    \"author\": \"巴尔扎克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036606-f389f7?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第四辑）\",\n    \"author\": \"大仲马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第五辑）\",\n    \"author\": \"梭罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035886-c54a82?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第一辑）\",\n    \"author\": \"莫泊桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第二辑）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克里斯朵夫（作家榜经典文库）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035442-13d259?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（名著名译丛书）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035391-f2f31c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国著名作家的必读短篇小说集（套装8本）\",\n    \"author\": \"契诃夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035313-d1c72e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（名著名译丛书）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034719-d1f933?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忏悔录（名著名译丛书）\",\n    \"author\": \"卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034620-54b3ea?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威作品全集（套装共17册）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034464-b3597e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一位女士的画像（名著名译丛书）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034101-54f30a?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界十大文学名著（名译珍藏版）\",\n    \"author\": \"列夫・托尔斯泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032628-52a9ac?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目漱石四部曲\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031974-779200?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典文学名著四师深度解读推荐版（套装七册）\",\n    \"author\": \"威廉・福克纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的外国文学经典（套装35册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著名译化境文库（套装共9册）\",\n    \"author\": \"化境文库编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"齐民要术（全本全注全译）\",\n    \"author\": \"贾思勰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030642-350654?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"（新华书店十年畅销书系列）世界名著39本合集（下册）\",\n    \"author\": \"新华文轩出版集团\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030141-351a91?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装共50册）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（名著译林）\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029805-90d798?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著译林）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底两万里（名著译林）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029784-a7b283?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（名著译林）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029787-13d237?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（名著译林）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（果麦经典）\",\n    \"author\": \"曹雪芹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（果麦经典）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（果麦经典）\",\n    \"author\": \"施耐庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（读客经典）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028290-a85451?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（世界十大文学名著）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（译文名著典藏）\",\n    \"author\": \"但丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026799-5090ac?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔集（全六册）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司汤达集（全四册）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫集（全五册）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022206-6b62a3?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基集（全九册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022209-03d5a0?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫集（套装共2册）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022194-6adc55?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左拉集（全四册）\",\n    \"author\": \"左拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜集（套装共3册）\",\n    \"author\": \"福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022185-594952?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的教育\",\n    \"author\": \"艾德蒙多・德・亚米契斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯集（套装共10册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈察洛夫集（全四册）\",\n    \"author\": \"冈察洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代集（共五册）\",\n    \"author\": \"哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德集（全五册）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪德集（全五册）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德莱塞集（全四册）\",\n    \"author\": \"德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫集（全二册）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托尔斯泰集（共6册）\",\n    \"author\": \"托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格集（全2册）\",\n    \"author\": \"茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马集（共八册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯集（共5册）\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（全4册）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014469-ed82dc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不如归\",\n    \"author\": \"德富芦花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014187-9c87f4?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个火枪手\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012471-f5ee43?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012459-fb55b5?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·奥斯丁文集（套装共6本）\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011874-14d4b5?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫小说全集（全10卷）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011106-4623e3?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡拉马佐夫兄弟\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010242-7facf4?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漂亮朋友\",\n    \"author\": \"莫泊桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009795-28962c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009786-616590?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克精选集16册\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名利场（套装上下册）\",\n    \"author\": \"萨克雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008997-bf0775?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术陷阱\",\n    \"author\": \"卡尔・贝内迪克特・弗雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造性破坏的力量\",\n    \"author\": \"菲利普・阿吉翁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498252-63196c?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助燃创新的人\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499887-18f06c?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大产品思维\",\n    \"author\": \"王雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产品思维\",\n    \"author\": \"张印帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004566-20c559?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常生活中的发明原理\",\n    \"author\": \"高木芳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革性创新\",\n    \"author\": \"加里・皮萨诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的悖论\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福社会创新评论合集（套装共9册）\",\n    \"author\": \"斯坦福社会创新评论编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创模式\",\n    \"author\": \"段传敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994075-3700fb?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新大脑\",\n    \"author\": \"艾克纳恩・戈德堡艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991867-61d613?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史：打开人类进步的黑匣子\",\n    \"author\": \"赵炎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991702-bc1ee7?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的行动\",\n    \"author\": \"乔舒亚・甘斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985939-5f27b0?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇才\",\n    \"author\": \"梅利莎・席林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来版图\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极限创新\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线创新\",\n    \"author\": \"李善友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的国度\",\n    \"author\": \"詹姆斯・布雷丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从颠覆到创新\",\n    \"author\": \"长江商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的任务\",\n    \"author\": \"克莱顿・克里斯坦森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的路径\",\n    \"author\": \"斯蒂芬・温克尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞奔的物种\",\n    \"author\": \"大卫・伊格曼/安东尼・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线：跨越“S型曲线”的二次增长\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生总会有办法 : 用逆向思维解决难题\",\n    \"author\": \"戴维・尼文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大创意的诞生\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019743-14b1f9?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史\",\n    \"author\": \"杨旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李善友颠覆式创新思维系列（共4册）\",\n    \"author\": \"李善友/龚焱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016941-a33728?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球风口\",\n    \"author\": \"王煜全/薛兆丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016092-2982cb?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第七感\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新自信力\",\n    \"author\": \"戴维・凯利/汤姆・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里改变世界：硅谷成功创新之谜\",\n    \"author\": \"黛博拉・佩里・皮肖内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的本能：类比思维的力量\",\n    \"author\": \"约翰・波拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂到位\",\n    \"author\": \"亚当・施特尔茨/威廉・帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的解答\",\n    \"author\": \"克莱顿・克里斯坦森/迈克尔・雷纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴正传\",\n    \"author\": \"方兴东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866\",\n    \"category\": \"阿里巴巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尽在双11：阿里巴巴技术演进与超越\",\n    \"author\": \"阿里巴巴双11技术团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866\",\n    \"category\": \"阿里巴巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿布鞋的马云：决定阿里巴巴生死的27个节点\",\n    \"author\": \"王利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866\",\n    \"category\": \"阿里巴巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高铁风云录\",\n    \"author\": \"高铁见闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011880-d18366?p=8866\",\n    \"category\": \"高铁\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国速度\",\n    \"author\": \"高铁见闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008568-459c27?p=8866\",\n    \"category\": \"高铁\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也要认真穿\",\n    \"author\": \"黎贝卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866\",\n    \"category\": \"服饰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"章服之实\",\n    \"author\": \"王亚蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866\",\n    \"category\": \"服饰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理自助CBT书系（套装共七册）\",\n    \"author\": \"萨万・辛格等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛤蟆先生去看心理医生\",\n    \"author\": \"罗伯特・戴博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗理性：如何掌控情绪\",\n    \"author\": \"卫蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511197-369a4f?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本抑郁自救指南\",\n    \"author\": \"所长任有病\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越你的大脑\",\n    \"author\": \"玛莎・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000276-6ec305?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪革命\",\n    \"author\": \"约翰・辛德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让情绪毁了你的努力\",\n    \"author\": \"剑圣喵大师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力：人生自救课\",\n    \"author\": \"博锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991816-6657bc?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与情商\",\n    \"author\": \"张小宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控：如何成为一个冷静智慧的人\",\n    \"author\": \"董小楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052524-78de4c?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系黑洞\",\n    \"author\": \"周慕姿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047640-dc0f46?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"FBI微情绪心理学（若水集）\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的人，从来不会输给情绪\",\n    \"author\": \"卫伟楠/Brent\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046419-e5175d?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的情绪生活\",\n    \"author\": \"理查德・戴维森/莎朗・伯格利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭情绪的力量\",\n    \"author\": \"珍妮弗・泰兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑型人格自救手册\",\n    \"author\": \"安娜・威廉姆森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040062-b694e0?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名区\",\n    \"author\": \"匿名用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038982-74f6e2?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超效自控\",\n    \"author\": \"魏冰冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035580-026207?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜拜吧，小情绪\",\n    \"author\": \"艾里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031779-3f1401?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪断舍离\",\n    \"author\": \"加勒特・克莱默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031341-1b6ca6?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消极情绪的力量\",\n    \"author\": \"托德・卡什丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实\",\n    \"author\": \"汉斯・罗斯林/欧拉・罗斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制怒心理学\",\n    \"author\": \"罗纳德・波特-埃弗隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030054-592833?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪\",\n    \"author\": \"莉莎・费德曼・巴瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028908-566a52?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪是什么\",\n    \"author\": \"乔瓦尼・弗契多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028149-1fa93a?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别相信他的脸\",\n    \"author\": \"亚历山大・托多罗夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027891-8dcd80?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在成长\",\n    \"author\": \"塔玛・琼斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去的理由\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让直性子毁了你\",\n    \"author\": \"冠诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024201-97cdf0?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英系列（共五册）\",\n    \"author\": \"高杉尚孝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内心平静，才能快速行动\",\n    \"author\": \"碧姬・德吕蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015150-d48231?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python高性能编程\",\n    \"author\": \"戈雷利克/欧日沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python金融大数据分析\",\n    \"author\": \"伊夫・希尔皮斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础入门学习Python\",\n    \"author\": \"小甲鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零起点Python大数据与量化交易\",\n    \"author\": \"何海群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习入门：基于Python的理论与实现\",\n    \"author\": \"斋藤康毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对比Excel，轻松学习Python数据分析\",\n    \"author\": \"张俊红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Python爬虫框架Scrapy\",\n    \"author\": \"迪米特里奥斯 考奇斯-劳卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用Python写网络爬虫（第2版）\",\n    \"author\": \"Katharine Jarmul\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从Python开始学编程\",\n    \"author\": \"Vamei\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器学习实战\",\n    \"author\": \"Peter Harrington\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021075-0d6e7c?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用Python写网络爬虫\",\n    \"author\": \"理查德・劳森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019827-2bfb81?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像计算机科学家一样思考Python\",\n    \"author\": \"Allen B.Downey\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019812-6df559?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python基础教程（第3版）\",\n    \"author\": \"Magnus Lie Hetland\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019476-163e41?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Scrapy网络爬虫\",\n    \"author\": \"刘硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019203-cea982?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第3版）\",\n    \"author\": \"Wesley Chun\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python极客项目编程\",\n    \"author\": \"Mahesh Venkitachalam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018480-2d6eec?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Flask Web开发\",\n    \"author\": \"Miguel Grinberg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018324-e7bedb?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流畅的Python\",\n    \"author\": \"Luciano Ramalho\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018351-499390?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python爬虫开发与项目实战\",\n    \"author\": \"范传辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018354-f08e57?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利用Python进行数据分析\",\n    \"author\": \"Wes McKinney\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017943-1de00a?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟老齐学Python\",\n    \"author\": \"老齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016623-4a24a9?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python网络数据采集\",\n    \"author\": \"Ryan Mitchell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨办法学Python\",\n    \"author\": \"Zed A.Shaw\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016419-cf9c7e?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程：从入门到实践\",\n    \"author\": \"埃里克・马瑟斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python学习手册（原书第4版）\",\n    \"author\": \"Mark Lutz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014307-045cb6?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程快速上手\",\n    \"author\": \"Al Sweigart\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第二版）\",\n    \"author\": \"丘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子的编程之旅\",\n    \"author\": \"Warren Sande\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张文鹤护肤指南\",\n    \"author\": \"张文鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866\",\n    \"category\": \"护肤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书Ⅱ\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039144-9df9ca?p=8866\",\n    \"category\": \"护肤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见孩子，遇见更好的自己\",\n    \"author\": \"赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866\",\n    \"category\": \"孩子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的降落伞是什么颜色？（全新修订版）\",\n    \"author\": \"理查德・尼尔森・鲍利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866\",\n    \"category\": \"求职\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The 2-Hour Job Search\",\n    \"author\": \"Steve Dalton\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029760-6cddaa?p=8866\",\n    \"category\": \"求职\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国史译（全7册）\",\n    \"author\": \"伊利娜・谢尔盖耶夫娜・雷巴乔诺克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏特加政治\",\n    \"author\": \"马克・劳伦斯・施拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495120-2dd6c4?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群星灿烂的年代\",\n    \"author\": \"伊・伊・巴纳耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499674-569481?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆记忆\",\n    \"author\": \"玛丽亚・斯捷潘诺娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511308-7680dd?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗曼诺夫皇朝\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512334-c3c90b?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄罗斯文学（牛津通识读本）\",\n    \"author\": \"卡特里奥娜・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000954-afc95e?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗心\",\n    \"author\": \"米・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000375-39b101?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果戈理文集（全7册）\",\n    \"author\": \"果戈理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051000-119a99?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生（名著名译丛书）\",\n    \"author\": \"帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050841-ba42c6?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生\",\n    \"author\": \"鲍里斯・帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049863-602d2e?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金蔷薇（果麦经典）\",\n    \"author\": \"康・帕乌斯托夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048282-b6e283?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格群岛\",\n    \"author\": \"亚历山大・索尔仁尼琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045198-ec8982?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣彼得堡\",\n    \"author\": \"乔纳森・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045036-3a0aa2?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金蔷薇（译文经典）\",\n    \"author\": \"帕乌斯托夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042630-5634d4?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特（名著名译丛书）\",\n    \"author\": \"布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034545-231c0d?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说选（企鹅经典）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033195-5988c1?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师与玛格丽特\",\n    \"author\": \"布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031275-8620c1?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的帝国\",\n    \"author\": \"波波・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个被绞死的人\",\n    \"author\": \"安德烈耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021981-96c437?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的天使\",\n    \"author\": \"瓦・勃留索夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021813-6662d1?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔谢尼耶夫的一生\",\n    \"author\": \"伊万・布宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021804-a41a4f?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娜塔莎之舞：俄罗斯文化史\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019431-5c55a7?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣彼得堡冬宫博物馆\",\n    \"author\": \"亚历山大・弗雷格伦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019044-36223b?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去，并且要记住\",\n    \"author\": \"拉斯普京\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015465-8edfc5?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症楼\",\n    \"author\": \"亚历山大・索尔仁尼琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005730-e81dcc?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔的饱食：日本731细菌战部队揭秘\",\n    \"author\": \"森村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866\",\n    \"category\": \"731\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"体育健身训练丛书（套装全10册）\",\n    \"author\": \"阿诺德·G· 尼尔森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495096-de8ca5?p=8866\",\n    \"category\": \"体育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实科比\",\n    \"author\": \"罗兰・拉赞比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048894-1929bd?p=8866\",\n    \"category\": \"体育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李小龙遗作：你从未见过的功夫之王（套装共3册）\",\n    \"author\": \"李小龙/约翰・里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029949-2bcb8f?p=8866\",\n    \"category\": \"体育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当体育遇上商业\",\n    \"author\": \"乌尔里克・瓦格纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025614-d87bae?p=8866\",\n    \"category\": \"体育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效忍者\",\n    \"author\": \"格雷厄姆・阿尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866\",\n    \"category\": \"高效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的秘密\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866\",\n    \"category\": \"高效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肉料理原来是这么回事儿\",\n    \"author\": \"亚瑟・勒凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866\",\n    \"category\": \"烹饪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨艺的常识\",\n    \"author\": \"迈克尔・鲁尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866\",\n    \"category\": \"烹饪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖15：便当灵感集\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866\",\n    \"category\": \"烹饪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世事无常\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990259-cfe89f?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇物语·噩梦\",\n    \"author\": \"宁航一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051531-fb4a6f?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活人禁忌\",\n    \"author\": \"九锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱书单\",\n    \"author\": \"格雷迪・亨德里克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036225-7848b6?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到黑泉镇\",\n    \"author\": \"托马斯・奥尔德・赫维尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034671-16eada?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪灵\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗的另一半\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033198-ad91a2?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪屋\",\n    \"author\": \"雪莉・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032721-17527f?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希区柯克悬念故事集（典藏版）\",\n    \"author\": \"阿尔弗莱德・希区柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032016-4bcd4f?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026331-155838?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话Ⅱ\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026322-83eb5a?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话Ⅲ\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026316-cb833b?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬念大师希区柯克经典故事集\",\n    \"author\": \"希区柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023775-bfa687?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022944-f7c29a?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死灵之书\",\n    \"author\": \"洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021267-6d09de?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼马星悬疑小说莫兰系列（套装7册全）\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019647-16c6fb?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"召唤：沃伦夫妇的惊凶职业实录\",\n    \"author\": \"杰拉德・布利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018570-279333?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桐花中路私立协济医院怪谈\",\n    \"author\": \"南琅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010827-a4a422?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡案罪（1-8册全）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡性插图\",\n    \"author\": \"凿壁小妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异域密码大全集（套装共四册）\",\n    \"author\": \"羊行屮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：7个改变个人、团队和组织的教练技巧\",\n    \"author\": \"迈克尔・K.辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866\",\n    \"category\": \"教练\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失意者酒馆\",\n    \"author\": \"曹畅洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048543-ac1644?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃梅短篇小说精选\",\n    \"author\": \"马塞尔・埃梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046686-e8fde9?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被猜死的人\",\n    \"author\": \"田耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036468-e0797b?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个陌生女人的来信（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背对世界\",\n    \"author\": \"埃尔克・海登莱希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031692-85e059?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬泳\",\n    \"author\": \"班宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024318-af87d7?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本百本纪念套装（共100册）\",\n    \"author\": \"查尔斯・福斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506448-03adea?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本精选集（第二辑共42册）\",\n    \"author\": \"丹尼尔·M.海布伦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004224-95511f?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津古罗马史\",\n    \"author\": \"约翰・博德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津国际关系手册\",\n    \"author\": \"罗伯特・基欧汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众经济学\",\n    \"author\": \"帕萨・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021042-91492b?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本精选集（第一辑共58册）\",\n    \"author\": \"雷蒙德・瓦克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016143-e41d19?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万寿寺\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030480-1e074b?p=8866\",\n    \"category\": \"王小波\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王小波作品大全集（15册）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014463-323335?p=8866\",\n    \"category\": \"王小波\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海神的后裔\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492165-c1f419?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女郎她死了\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497154-47f407?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无颜的肖像\",\n    \"author\": \"连城三纪彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498012-7fc0cd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"土楼杀人事件\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498258-e31108?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白兔\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498687-16a448?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈舜臣作品精选集（套装共20册）\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498732-db7b9b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探4：双城血案\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498834-6b8e51?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常疑犯\",\n    \"author\": \"红眸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499008-3c6677?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默的铁证\",\n    \"author\": \"米烛光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499452-818cac?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时空旅行者的沙漏\",\n    \"author\": \"方丈贵惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499554-129728?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煞风景的早间首班车\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499617-790bb3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲剑楼奇谭\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499656-2b28df?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶寒\",\n    \"author\": \"伊冈瞬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499659-21ca24?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全员嫌疑人\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499701-1e03fc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可以\",\n    \"author\": \"道尾秀介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500319-6799a6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三色猫探案（全套10册）\",\n    \"author\": \"赤川次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500352-72f750?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚像的丑角\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500529-4ea3f3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写字楼的奇想日志\",\n    \"author\": \"孙沁文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501069-363de9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气球人\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501195-ba2e60?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复写\",\n    \"author\": \"法条遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501207-ebe079?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小丑的追魂曲\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501465-eaca96?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡邮递\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501528-5ac549?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀喜剧之13人\",\n    \"author\": \"芦边拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501906-b0c258?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理要在早餐时\",\n    \"author\": \"友井羊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501912-6bbbde?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺旋之底\",\n    \"author\": \"深木章子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502071-0974f8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪之声\",\n    \"author\": \"盐田武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502290-65943e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症消失的陷阱\",\n    \"author\": \"岩木一麻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502299-90d8e4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强蚁\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502317-8ffcba?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰谋杀案（全两册）\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502944-116268?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑夜的空白\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502995-e5753e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷中复古相机店的日常之谜\",\n    \"author\": \"柊彩夏花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503274-be09aa?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室小丑\",\n    \"author\": \"时晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503307-04dbfb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放学后的小巷\",\n    \"author\": \"钟声礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503742-9d1027?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水之焰\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503907-fa1c8f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反骗案中案2\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504207-c1fb9f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人机侦探\",\n    \"author\": \"早坂吝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504249-86b3ea?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔女的诅咒\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504387-1f8756?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火神被杀\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504948-b4d124?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希望之罪\",\n    \"author\": \"雫井脩介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504969-317fa1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩偶\",\n    \"author\": \"法医秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506412-556a2b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高智商犯罪（全4册）\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506754-0e6d8a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑死馆杀人事件\",\n    \"author\": \"小栗虫太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507480-82ae1d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Blue\",\n    \"author\": \"叶真中显\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507555-b894c0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星降山庄杀人事件\",\n    \"author\": \"仓知淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507576-8cc946?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三体秘密\",\n    \"author\": \"田加刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508785-577194?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如首无作祟之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508980-843c48?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如水魑沉没之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509070-c0bdeb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆时侦查组\",\n    \"author\": \"张小猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509094-55dc76?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆时侦查组2\",\n    \"author\": \"张小猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509217-382771?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫部美雪精选系列套装（全套9册）\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509352-b0b5f1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪头条\",\n    \"author\": \"朱首末\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509643-1ce27b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无形之刃\",\n    \"author\": \"陈研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509706-840d1a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫部美雪经典大全集（共18册）\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509736-12be99?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美嫌疑人\",\n    \"author\": \"陈研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509868-3a24d8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼藏身处\",\n    \"author\": \"克雷格・拉塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509964-8500bb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字母表谜案\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510117-6dfc14?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失者\",\n    \"author\": \"多纳托・卡瑞西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510153-b0429d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无名之町\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510159-ff40a6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寒栗\",\n    \"author\": \"索伦・斯外斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510246-3b3fae?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键词是谋杀\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510258-1956b1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆·侦探小说黄金时代经典作品集（第二辑）\",\n    \"author\": \"约翰・布德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510402-6201e7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒸汽歌剧\",\n    \"author\": \"芦边拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510417-29d3f7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理要在本格前\",\n    \"author\": \"谷崎润一郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510438-80e787?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣更月一族\",\n    \"author\": \"深木章子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510519-3f9e01?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敲响密室之门2\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510768-eb84c6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反骗案中案\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510774-bc0b04?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜零点的灰姑娘\",\n    \"author\": \"相泽沙呼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510792-999876?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命雕刻\",\n    \"author\": \"杰夫里・迪弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511026-be629f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵侦探城塚翡翠\",\n    \"author\": \"相泽沙呼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511047-957c7f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚者之毒\",\n    \"author\": \"宇佐美真琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511068-71edff?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如幽女怨怼之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511302-9c1208?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊芙琳的七次死亡\",\n    \"author\": \"斯图尔特・特顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511320-d34f47?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如碆灵供祭之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511338-6a8951?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎头游戏\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511377-5d4220?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三重旋涡\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511446-fdf67e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于那个人的备忘录\",\n    \"author\": \"小林泰三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511449-1dfbff?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜之孤城\",\n    \"author\": \"辻村深月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511485-ef75a1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女妖\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511527-ab2e43?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空屋\",\n    \"author\": \"横山秀夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511623-b2e18c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗忘，刑警\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512259-6eaee7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逐星记\",\n    \"author\": \"陆烨华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512577-62230a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神的标价\",\n    \"author\": \"一色小百合\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512676-87b6b4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春日之书\",\n    \"author\": \"陆烨华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512724-475bdb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰菓套装（共6册）\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512742-f3bb77?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平面犬\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512745-b4d92b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫女馆的密室\",\n    \"author\": \"爱川晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513387-40fbae?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记5\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513426-83f70a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人偶的复活\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513450-23c7d7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐探案录之长安风云\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513666-cf19af?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞的频率\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004548-3945b2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪假日\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004509-22c040?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻璃鸟不会归来\",\n    \"author\": \"市川忧人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004404-3c2e54?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扮演者游戏\",\n    \"author\": \"赵婧怡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004344-a3de5d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟居密室\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004335-73a458?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怜悯恶魔\",\n    \"author\": \"西泽保彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004092-e10bc0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剖开您是我的荣幸\",\n    \"author\": \"皆川博子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004008-11b886?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔雀的遗书\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003945-01ea8c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦探AI\",\n    \"author\": \"早坂吝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003939-b7b6bf?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的病人\",\n    \"author\": \"亚历克斯・麦克利兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非人类\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003831-776229?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠之夜\",\n    \"author\": \"连城三纪彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003696-86cce0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南宋秘卷之青玉案\",\n    \"author\": \"姜木水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002406-681de0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明神探于谦\",\n    \"author\": \"史刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002157-6dd901?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝叫\",\n    \"author\": \"叶真中显\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001932-e4433b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔眼之匣谜案\",\n    \"author\": \"今村昌弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000648-79dc5c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记4\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000630-a6cc40?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后之子\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000255-aea9fc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长长的回廊\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000189-60889e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗中飘香的谎言\",\n    \"author\": \"下村敦史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999790-e9183c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫌疑人\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998800-9f56b7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼畜之家\",\n    \"author\": \"深木章子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998785-2de043?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗幕下的格尔尼卡\",\n    \"author\": \"原田舞叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998782-596e15?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剪刀男\",\n    \"author\": \"殊能将之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997609-6b8114?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超杀人事件\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996496-c3ca08?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗忘者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996394-3987f5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤色博物馆\",\n    \"author\": \"大山誠一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996154-b859bc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迪伦马特侦探小说集\",\n    \"author\": \"弗里德里希・迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995539-76948f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指定目击者\",\n    \"author\": \"午晔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995380-99ff61?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扫鼠岭\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995350-a6adfe?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双子星\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995347-83f9c3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挑战\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995278-8ef9dc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪国之劫\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995221-651633?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两种真相\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995215-ab07fb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的13级台阶\",\n    \"author\": \"高野和明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994549-aa6507?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟街头漂流记（午夜文库）\",\n    \"author\": \"宠物先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991864-e5778d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多米诺杀阵\",\n    \"author\": \"成刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991825-14cf14?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛经济学家推理系列（套装共4册）\",\n    \"author\": \"马歇尔・杰文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991537-2fc1c4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二镜面\",\n    \"author\": \"张墨爱吃鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991510-88f05b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冤罪代码\",\n    \"author\": \"纪遊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991234-3be92d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生尸之死\",\n    \"author\": \"山口雅也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991123-dafe12?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云雷岛事件\",\n    \"author\": \"孙国栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990916-d09f48?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死玛丽苏\",\n    \"author\": \"乙一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990913-f79fa7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一路去死\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990874-c2daf4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溯洄\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990220-e56d20?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不知东方既白\",\n    \"author\": \"橘子宸\",\n    \"link\": \"链接未找到\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返犯罪现场（共4册）\",\n    \"author\": \"宇尘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990115-eecd7e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狂探\",\n    \"author\": \"吕铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990040-8f94c3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京二十三区女子\",\n    \"author\": \"长江俊和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989896-b88cb7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣母\",\n    \"author\": \"秋吉理香子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989614-07b2c1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡计博物馆\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989326-bab22e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三色屋事件\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988849-edee5d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记3\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对不在场证明\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988114-a2c7ca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜鸟\",\n    \"author\": \"莫峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987193-6b8f16?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米泽穗信精选集：算计\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986158-4aacbd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米泽穗信精选集：满愿\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986137-ecb5b5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米泽穗信精选集：羔羊的盛宴\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986128-26095e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警2\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无辜之血\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985633-85ca83?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理计划\",\n    \"author\": \"宁城荒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985519-f13a9a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山骇谷深\",\n    \"author\": \"卢卡・德安多里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985366-80b6a0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤朽叶家的传说\",\n    \"author\": \"樱庭一树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985144-a74cbc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死局\",\n    \"author\": \"江海潮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985048-e4e04b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜文库推理新秀精选集（共9本）\",\n    \"author\": \"午晔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984982-7b6286?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的巡游\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984856-83f1ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种死法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984805-e43574?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形迹可疑的人\",\n    \"author\": \"卡雷尔・恰佩克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984733-d9cb55?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记2\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983785-47efcf?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983302-881145?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探的咒缚\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982474-92a205?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抱住我崩溃的大脑\",\n    \"author\": \"知念实希人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982423-526c97?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镇墓兽（全四册）\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053601-c5f0f4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侠盗鲁平\",\n    \"author\": \"孙了红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053058-8938cc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐者\",\n    \"author\": \"丰土\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052977-6462cd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行实录\",\n    \"author\": \"徐浪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052968-eec90d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦畸者\",\n    \"author\": \"叶遁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终局者\",\n    \"author\": \"项维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052302-fcaeb5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的天敌\",\n    \"author\": \"森村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051489-9cc595?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光森林\",\n    \"author\": \"葵田谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051471-3cd00f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡洛琳字体\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051411-1c693d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式谋杀\",\n    \"author\": \"迈克尔・道格拉斯卡林/罗素・普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因壶\",\n    \"author\": \"冈岛二人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051378-057ad5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见了，忍老师\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051357-3827fc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠悠馆密案\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051351-11da76?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11字谜案\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051162-6633d9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的遗忘\",\n    \"author\": \"丹妮尔・蒂埃里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051135-aff273?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色麦田\",\n    \"author\": \"葵田谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050865-0365c7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碎裂\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050394-9ddc9d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达希尔•哈米特系列（共8册）\",\n    \"author\": \"达希尔・哈米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050382-1b6108?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界推理名家代表作（20全册）\",\n    \"author\": \"埃勒里・奎因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050307-cc8646?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊坂幸太郎小说严选合集（共10册）\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050103-908ba1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蟑螂\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我四十分钟后到家\",\n    \"author\": \"周路明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049539-8bf2ec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者2\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049434-76024d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者3\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证明\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049077-15c7a0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯先生\",\n    \"author\": \"米奇・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047973-333dca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白猿客栈\",\n    \"author\": \"猎衣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047937-74e8c8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破碎海岸\",\n    \"author\": \"彼得・坦普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047442-f42c38?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪案迷城\",\n    \"author\": \"张瑞兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只是丢了手机而已套装\",\n    \"author\": \"志驾晃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047160-8526d3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力的胎动\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046440-06c86c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗影\",\n    \"author\": \"时晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046365-a83ffb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗夜捕手之昨日花黄\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046287-940fea?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八卦侦探\",\n    \"author\": \"姜木水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046179-deec2b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪念\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045978-23a050?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡螺旋\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045873-48acba?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖马的女人\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045738-eb7bec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖气\",\n    \"author\": \"慢三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045399-da4010?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苍白的轨迹\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045366-e34a54?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富士山禁恋\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045333-d81815?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书楼吊堂：破晓\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045054-873c0f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追凶者之萨满疑云\",\n    \"author\": \"管彦杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044991-6977b9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重案追击：悬疑小说精选（套装共12册）\",\n    \"author\": \"王文杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044961-601f8e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扭曲的铰链\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044817-1cd796?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平行世界爱情故事\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044787-6056de?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神谕之死\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044010-bd23c2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪6\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西泽保彦最畅销精品全集\",\n    \"author\": \"西泽保彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043284-0ab83a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祈祷落幕时\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042909-9546a3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清明上河图密码（全6册）\",\n    \"author\": \"冶文彪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042804-929cc7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸人庄谜案\",\n    \"author\": \"今村昌弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042729-6ea1e3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面之夜\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042564-7a4ca0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相亲中毒\",\n    \"author\": \"秋吉理香子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042180-6fbb64?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神探夏洛克全集\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042177-604f9a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国男孩\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"点燃黑夜\",\n    \"author\": \"莉比・菲舍尔・赫尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042045-704d0b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网内人\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041643-1a89eb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白日梦\",\n    \"author\": \"老谭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041352-f3d652?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八声甘州\",\n    \"author\": \"远宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040875-db0b23?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死之枝\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040422-d105a3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝之屋\",\n    \"author\": \"安东尼・赫洛维滋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040410-cac2ae?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱树抽芽时，想你\",\n    \"author\": \"歌野晶午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039834-8987e3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Study in Scarlet\",\n    \"author\": \"柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039156-324606?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白城恶魔\",\n    \"author\": \"埃里克・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038736-2b449e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五个死者的告白\",\n    \"author\": \"P.D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038526-c24d0a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人生还（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038145-3e58ee?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼罗河上的惨案（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037980-5f4597?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（图注本套装共9册）\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038379-15f688?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤龙\",\n    \"author\": \"苗棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037698-7168f4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"预知梦\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037377-89cb13?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本店招牌菜\",\n    \"author\": \"斯坦利・艾林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037236-89887b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屋顶上的小丑\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037200-3cd4c7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方快车谋杀案（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037125-3935f9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾中的小镇\",\n    \"author\": \"珍・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037104-1302c6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕鼠器（译文经典）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疑点\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037020-ad38da?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复仇者\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂侦探小说大全集（全85册）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036642-5cddab?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈里·戈贝尔事件的真相（全两册）\",\n    \"author\": \"若埃尔・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036234-8b66ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的客人\",\n    \"author\": \"塔娜・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑髓地狱\",\n    \"author\": \"梦野久作\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035817-f5b16f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"检察方的罪人\",\n    \"author\": \"雫井脩介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035802-ad1c0c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁血神探马修·斯卡德（套装共9册）\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035304-6bebca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Study in Charlotte\",\n    \"author\": \"Brittany Cavallaro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034407-f87a5d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时生\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034350-429229?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅲ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034080-736199?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冻结的香气\",\n    \"author\": \"小川洋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033984-e723c0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅰ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033729-239911?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅱ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033720-1dd32f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦渴\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京极夏彦百鬼夜行中短篇集（套装5册）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033678-0e267f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀戮之病\",\n    \"author\": \"我孙子武丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033498-4e9a1b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳危机\",\n    \"author\": \"李纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033414-30313e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混凝土里的金发女郎\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033120-c171d5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍先生（共8册）\",\n    \"author\": \"弗・福赛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032862-eae9d1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绫辻行人馆系列全集\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032769-071504?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝唱\",\n    \"author\": \"凑佳苗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032727-caf552?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五芒星\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032607-6ae82c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀人游戏\",\n    \"author\": \"雷钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032598-27b98c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录：最后的狄仁杰（全五册）\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032550-262194?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使之耳\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032541-4cba9e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦探伽利略\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032502-ead0f3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔血案\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032475-a3eb97?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼与福尔摩斯\",\n    \"author\": \"戴维・格兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐狄公案·第一辑\",\n    \"author\": \"高罗佩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032463-0f330d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书楼吊堂：炎昼\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032415-142610?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喜鹊谋杀案\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032361-2287af?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死钥匙\",\n    \"author\": \"D.M.普利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032289-b14405?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不如去死\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032223-6c538c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死了七次的男人\",\n    \"author\": \"西泽保彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032112-988a49?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉·沃特斯系列作品集（全六册）\",\n    \"author\": \"萨拉・沃特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032067-c756ca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁杀了她\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031938-22aa7e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹大之窗\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031797-9545ab?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交错的场景\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031620-109a71?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三口棺材\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031353-c23149?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾天王套装\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031326-663108?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀局\",\n    \"author\": \"肯尼思・菲林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031116-8ca6cb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变身\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031089-829f49?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪花少年侦探团\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031080-d27fac?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百鬼夜行长篇系列（套装16册）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031041-c75418?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟塔杀人事件\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030741-bf8a14?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日月星杀人事件\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030738-1f8869?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜将至\",\n    \"author\": \"夏阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030720-355e2e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的维纳斯\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030672-c187e8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理竞技场\",\n    \"author\": \"深水黎一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030567-efc470?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向日葵不开的夏天（红壳纪念版）\",\n    \"author\": \"道尾秀介\",\n    \"link\": \"链接未找到\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周浩晖推理悬疑经典集（共10册）\",\n    \"author\": \"周浩晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029988-d27fcd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空无人生还\",\n    \"author\": \"阿元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029913-632991?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029874-6d65f7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生吞\",\n    \"author\": \"郑执\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029547-23ac4c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十九年间谋杀小叙\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029544-25e397?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"球形的荒野\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029529-9062a6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理游戏\",\n    \"author\": \"安杰拉・马森斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029403-ab7f36?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声尖叫\",\n    \"author\": \"安杰拉・马森斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029400-e9abf7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向密室开枪！\",\n    \"author\": \"东川笃哉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029394-26d4f2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟街头漂流记\",\n    \"author\": \"宠物先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029238-720b55?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀狄更斯\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029187-e28d8c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加贺探案集（共9册）\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029184-50d15e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马普尔小姐探案全集\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029085-8c4c31?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赎罪奏鸣曲\",\n    \"author\": \"中山七里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028365-66e45a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今夜不宜犯罪\",\n    \"author\": \"东川笃哉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028236-43dcce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追忆夜想曲\",\n    \"author\": \"中山七里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028197-8f8502?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小城\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027888-99ea06?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楠木向北\",\n    \"author\": \"凉风薄暮\",\n    \"link\": \"链接未找到\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惊险的浪漫（午夜文库）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027543-dfcd65?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本推理天才伊坂幸太郎全集（全12册）\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027336-f08d5f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"震度0\",\n    \"author\": \"横山秀夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027309-2564ec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间杀手\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027198-47a047?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾新作品精选（共6册）\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027165-eb8c72?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白昼的死角\",\n    \"author\": \"高木彬光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027045-a2019a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚕\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026697-b1a344?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺青杀人事件\",\n    \"author\": \"高木彬光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026220-e0766b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：凶宅\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025707-e82630?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪的专列\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025635-a941cd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全能侦探社\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025050-f8a066?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为了N\",\n    \"author\": \"湊佳苗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024993-36a444?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探：青衣奇盗\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024957-78b9a0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元年春之祭\",\n    \"author\": \"陆秋槎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024927-e99ef1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅贼典藏版（全11册）\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024837-b9a078?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷蒙德·钱德勒典藏版全集（全十册）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024834-5c9783?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024783-34b504?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神的另一面\",\n    \"author\": \"藤崎翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024615-a81939?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无证之罪\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024528-07ae8b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏小孩\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024525-8d6f19?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禁断的魔术\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024465-346e81?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚无的十字架\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024300-5cdaa2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：破镜\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024255-988eff?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡盗团\",\n    \"author\": \"吉羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024246-0edc4b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约瑟芬.铁伊推理全集（全8册）\",\n    \"author\": \"约瑟芬・铁伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024078-c9031a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象无形\",\n    \"author\": \"泽帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023754-5c70fc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死神的精确度\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023739-650de8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金田一探案大全集（共25册）\",\n    \"author\": \"横沟正史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023727-881c73?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今夜宜有彩虹\",\n    \"author\": \"陆烨华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023622-606a63?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩登时代\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023526-8ac21c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀手界\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023523-3a015b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀手界·疾风号\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023520-8af1d8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魍魉之匣（下）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023529-cad261?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狂骨之梦\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023490-090e03?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓鱼城\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023424-cc84f3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学生街的日子\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023397-a5f3e3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酷酷的代课老师\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023289-305c8c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士学院杀人事件\",\n    \"author\": \"P.D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023211-d473df?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彷徨之刃\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023106-33508a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"D之复合\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022929-d9add1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：嬗变\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022878-0c6f47?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：幸存\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022872-4eb748?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：复仇\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022863-2fb899?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越狱者\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022788-46d327?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝴蝶杀人事件\",\n    \"author\": \"横沟正史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022365-1a99b4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖底的祭典\",\n    \"author\": \"泡坂妻夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022302-409ae5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凛冬之棺\",\n    \"author\": \"孙沁文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022158-9403ee?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江户川乱步严选作品集（全13册）\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022008-610644?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室收藏家\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021669-5cce3b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余生皆假期\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021336-d3fbb3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜光的阶梯\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021294-fc9a03?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣殿春秋（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021252-8a62ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐狄公案（全6册）\",\n    \"author\": \"高罗佩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021207-007f0b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战地厨师\",\n    \"author\": \"深绿野分\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021114-f0cdb2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎的毒药\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020940-286d4a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血法医（1-4季全集）\",\n    \"author\": \"杰夫・林赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一份不适合女人的工作\",\n    \"author\": \"P.D.詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020511-d3986e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那个你深爱着的人\",\n    \"author\": \"保罗・皮尔金顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020088-c8e9c2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那个你惧怕着的人\",\n    \"author\": \"保罗・皮尔金顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020085-fe0da2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"折断的龙骨（全二册）\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019983-fc8335?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"络新妇之理（上）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019932-dd22aa?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"络新妇之理（下）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019929-e2f670?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涂佛之宴·宴之支度（上）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019902-04eb64?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涂佛之宴·宴之支度（下）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019890-9e0348?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴摩罗鬼之瑕（上）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019866-1e1095?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴摩罗鬼之瑕（下）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019860-b7033f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追踪师：隐身术\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019731-80213a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼马星悬疑小说莫兰系列（套装7册全）\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019647-16c6fb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜘蛛网中的女孩\",\n    \"author\": \"大卫・拉格朗兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019479-292338?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯症候群\",\n    \"author\": \"J·M·埃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019356-6bedd1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的习俗\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019323-98e502?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪人们\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019233-641f28?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救赎者\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018720-01f3cc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷案重启\",\n    \"author\": \"樊落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018711-c54542?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷案重启2逝者之证\",\n    \"author\": \"樊落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018708-977e8b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018600-b9d116?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水之肌\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018423-432d1e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肯·福莱特悬疑经典第一辑（全5册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018018-545227?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面前夜\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017712-970ca1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必须找到阿历克斯\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017547-046ce1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡刻痕\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017325-298780?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月族（套装共5册）\",\n    \"author\": \"玛丽莎・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017343-651870?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼在你身后（套装全3册）\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017280-4eab29?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜难明\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016476-b7c91b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔王\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016320-3b0994?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十年的情人节\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016230-8da852?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（套装共11册）\",\n    \"author\": \"柯南道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016500-12fb8c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨中杀手\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015939-11a9cf?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理的迷宫\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新参者\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015855-473c6d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红手指\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015780-379ab6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂作品集（套装共45册）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015663-b5afa0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝圣者\",\n    \"author\": \"泰瑞・海耶斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015393-6c6f8d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轩辕诀（全四册）\",\n    \"author\": \"茶弦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015144-667e1c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华生手稿\",\n    \"author\": \"邦妮・麦克伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014928-2d50ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形解体的传说\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014667-09665e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宛如昨日\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014523-22941d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第13个小时\",\n    \"author\": \"理查德・道许\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014388-3c060e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探1\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014331-ef0561?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探2\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014328-08fde8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探3\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014313-615c25?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明镜之书\",\n    \"author\": \"尤金・欧・切洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013845-ee2042?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不然你搬去火星啊\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013533-a53224?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十万分之一的偶然\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013299-44dfa6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿修罗系列惊悚小说三部曲\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013029-d113e7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色梦乡\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012957-3f2267?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜追凶\",\n    \"author\": \"指纹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012603-73ece6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴兽\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012552-3f9341?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“低俗”小说（上下合集）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012453-e22da3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，宝贝\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012444-03cebe?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敲响密室之门\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012435-b175ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巷说百物语全集\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012405-8c937b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷窥者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012312-787a2f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同级生\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012306-44b632?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸面\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012078-b2add2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"警察\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012075-898a34?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀的简约之道\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012057-9e177a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重播\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012063-099570?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡暗黑故事全集（下册）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011853-51ba43?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前妻们\",\n    \"author\": \"约翰・狄克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011805-a14723?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗处\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西藏来的男人\",\n    \"author\": \"克莱德・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011673-fcf3b0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伽利略的苦恼\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011520-5531b4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010515-8f34ca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美必读悬疑小说（勒普顿三部曲）\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010395-ddb236?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹·布朗作品系列（套装共6册）\",\n    \"author\": \"丹・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010287-e7276e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姑获鸟之夏\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010116-0a482e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"化学家（套装共2册）\",\n    \"author\": \"斯蒂芬妮・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009945-e38c49?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所罗门的伪证第Ⅰ部：事件\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009765-693b15?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所罗门的伪证第Ⅱ部：决意\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009756-f4d897?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所罗门的伪证第Ⅲ部：法庭\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009753-c7e339?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳光劫匪\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009639-f97e32?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勒卡雷谍影经典全新系列（套装14册）\",\n    \"author\": \"约翰・勒卡雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009576-b1a690?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妹妹的坟墓\",\n    \"author\": \"罗伯特・杜格尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009549-e0506b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"S.（简体中文典藏复刻版）\",\n    \"author\": \"艾布拉姆斯/道格・道斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009492-298aa7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙文身的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009378-d34fd6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩火的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009372-a23441?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直捣蜂窝的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009360-520652?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交子\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009318-386aa1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分身\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009306-fdbc98?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉睡的人鱼之家\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009276-32bd6f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣女的救济\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009246-ac03c0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北方夕鹤2/3杀人事件\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009219-6761df?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"64：史上最凶恶绑架撕票事件\",\n    \"author\": \"橫山秀夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009165-cfa92a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者：罪案终结者的觉醒\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009135-83443d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告白\",\n    \"author\": \"湊佳苗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008991-3ea23a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本推理四大奇书\",\n    \"author\": \"梦野久作等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008919-1568da?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉普拉斯的魔女\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008739-784eec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻夜行\",\n    \"author\": \"谷神冥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008475-bfb778?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀金字塔\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008451-7b089f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漠法则\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008442-61c5a4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首相的正义\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008430-839940?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被囚禁的女孩\",\n    \"author\": \"香农・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008124-8a508a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别和她说话\",\n    \"author\": \"遇瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑神探\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007983-3adaee?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风的预谋\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007965-39fae5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫蛛\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007929-055c31?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只差一个谎言\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007875-bd2f74?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱雀堂\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪人\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐花平原\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007806-281da0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眼镜蛇事件\",\n    \"author\": \"理查德・普莱斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007788-93da89?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长江的密咒\",\n    \"author\": \"古官\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007782-6d755c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪4\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡案罪（1-8册全）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎豹（全二册）\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活肝\",\n    \"author\": \"徐然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007356-185e81?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾越邸杀人事件\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007302-ec6f04?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白马山庄杀人事件\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007287-8a5713?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木锡镇\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007266-6d2760?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑背鱼之谜\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医手记系列套装（全四册）\",\n    \"author\": \"刘真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十九级台阶\",\n    \"author\": \"约翰・巴肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理罪（套装共5册）\",\n    \"author\": \"雷米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空中杀人现场\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007131-989aa8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁班的诅咒（珍藏版大全集）\",\n    \"author\": \"圆太极\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006924-c1b431?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚像小丑\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006909-257fe7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理要在放学后\",\n    \"author\": \"东川笃哉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006870-6477fb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗领域\",\n    \"author\": \"薇儿·麦克德米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录：兰亭序密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006669-bfc526?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录2：最后的复辟挣扎\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸案调查科系列（全5册）\",\n    \"author\": \"九滴水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖畔\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006276-021007?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦幻花\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006285-d59ca9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄仁杰探案合集\",\n    \"author\": \"安娜芳芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006201-8b8292?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡性插图\",\n    \"author\": \"凿壁小妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻夜\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006108-1a3150?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀人之门\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006096-17ed58?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物园\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006057-80fc77?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禁忌之地\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006054-1c8c3e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗族\",\n    \"author\": \"缪热\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面饭店\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005967-2f931b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马耳他之鹰\",\n    \"author\": \"达希尔・哈米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005853-265d2c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之尸体加工厂\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之活体贩卖者\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜行\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005571-dd15d9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解忧杂货店\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005565-a0e16c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫌疑人X的献身\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005562-da1f3c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶意\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005559-8e2a02?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放学后\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005553-facaec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7本书带你走进间谍圈（全七册）\",\n    \"author\": \"弗·福赛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青花瓷\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005427-7605c0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和氏璧\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明宫奇案\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斧声烛影\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（插图新注新译本）\",\n    \"author\": \"亚瑟·柯南·道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风起陇西\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"案藏杀机：清代四大奇案卷宗\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005223-8942a8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔雀胆\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐游侠\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战襄阳\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005190-4212a2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼玄机\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳如是：柳色独秀\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005166-82c235?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连环罪：心里有诡系列（上下册）\",\n    \"author\": \"墨绿青苔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古董局中局（全四册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005145-bf3740?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之骨头收藏家\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸存者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清道夫\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一根手指\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声的证词\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸语者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案集（经典译林）\",\n    \"author\": \"柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004821-0d75f5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑林广记（作家榜经典文库）\",\n    \"author\": \"游戏主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866\",\n    \"category\": \"笑话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时生\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034350-429229?p=8866\",\n    \"category\": \"亲情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的丫头\",\n    \"author\": \"柯继铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026934-41b6dc?p=8866\",\n    \"category\": \"亲情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西周的灭亡（增订本）\",\n    \"author\": \"李峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866\",\n    \"category\": \"西周\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆天子传（全本全注全译）\",\n    \"author\": \"高永旺译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866\",\n    \"category\": \"西周\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹尼尔斯经典跑步训练法\",\n    \"author\": \"杰克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866\",\n    \"category\": \"马拉松\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉松终极训练指南（原书第4版）\",\n    \"author\": \"霍尔・希格登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866\",\n    \"category\": \"马拉松\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲世纪\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866\",\n    \"category\": \"全球化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看待全球化\",\n    \"author\": \"彼得・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866\",\n    \"category\": \"全球化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的七个秘密\",\n    \"author\": \"戴维・奥德兹/埃里克・莱曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027957-1bbf09?p=8866\",\n    \"category\": \"全球化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链实战：从技术创新到商业模式\",\n    \"author\": \"冒志鸿/陈俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链在中国\",\n    \"author\": \"刘兴亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992362-ce1ea4?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖峰对话区块链\",\n    \"author\": \"王峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992212-9a31a5?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链浪潮\",\n    \"author\": \"贾英昊/江泽武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991633-222d1d?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂区块链\",\n    \"author\": \"王腾鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989131-40f05d?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链项目开发指南\",\n    \"author\": \"纳拉扬・普鲁斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018585-e3a2cc?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说区块链\",\n    \"author\": \"徐明星/田颖/李霁月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017304-a06e53?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码区块链（套装共6册）\",\n    \"author\": \"田颖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015585-81fda1?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链革命\",\n    \"author\": \"唐塔普斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011610-23b769?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链社会\",\n    \"author\": \"龚鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链\",\n    \"author\": \"长铗/韩锋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸K线交易法\",\n    \"author\": \"许佳聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046431-11f0bb?p=8866\",\n    \"category\": \"技术分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（原书第3版）\",\n    \"author\": \"格里高里・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866\",\n    \"category\": \"技术分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"技术分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来站在中国这一边\",\n    \"author\": \"宁南山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866\",\n    \"category\": \"产业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光变：一个企业及其工业史\",\n    \"author\": \"路风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866\",\n    \"category\": \"产业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威大战DC\",\n    \"author\": \"里德・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866\",\n    \"category\": \"漫威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威之父斯坦·李\",\n    \"author\": \"鲍勃・巴彻勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028266-25f260?p=8866\",\n    \"category\": \"漫威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理自助CBT书系（套装共七册）\",\n    \"author\": \"萨万・辛格等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪力\",\n    \"author\": \"萨姆・阿利布兰多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511164-6145a4?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尬聊终结者\",\n    \"author\": \"庄舒涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商大师（息怒篇）\",\n    \"author\": \"伯纳德・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪革命\",\n    \"author\": \"约翰・辛德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的情商，决定你的人生高度\",\n    \"author\": \"心屋仁之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力（经典套装三册）\",\n    \"author\": \"凯利・麦格尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑演讲\",\n    \"author\": \"大卫祁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓情商高，就是会说话\",\n    \"author\": \"佐佐木圭一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情的力量\",\n    \"author\": \"亚瑟・乔拉米卡利/凯瑟琳・柯茜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理是个技术活\",\n    \"author\": \"芭芭拉・米切尔/科妮莉亚・甘伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商领导力\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047655-a6a7d1?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"FBI微情绪心理学（若水集）\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的人，从来不会输给情绪\",\n    \"author\": \"卫伟楠/Brent\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046419-e5175d?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商者会谈判\",\n    \"author\": \"冯岳宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不会拒绝上\",\n    \"author\": \"李劲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从受欢迎到被需要\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪断舍离\",\n    \"author\": \"加勒特・克莱默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031341-1b6ca6?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商（全六册）\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024453-d6e5b5?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓高情商，就是有趣和知趣\",\n    \"author\": \"李林坪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019842-a3c50e?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要玩转情商\",\n    \"author\": \"科林・斯坦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加西亚·马尔克斯访谈录\",\n    \"author\": \"加西亚・马尔克斯/吉恩・贝尔-维亚达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049599-516265?p=8866\",\n    \"category\": \"访谈录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜迪奥拉：胜利的另一种道路\",\n    \"author\": \"吉列姆・巴拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866\",\n    \"category\": \"世界杯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的本质\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866\",\n    \"category\": \"美联储\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"还原真实的美联储\",\n    \"author\": \"王健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866\",\n    \"category\": \"美联储\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米沃什词典\",\n    \"author\": \"切斯瓦夫・米沃什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043800-b2c0ba?p=8866\",\n    \"category\": \"波兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜分波兰\",\n    \"author\": \"乔治・肖-勒费弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029763-26eb57?p=8866\",\n    \"category\": \"波兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《中华人民共和国民法典》条文精释与实案全析\",\n    \"author\": \"杨立新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508884-69560f?p=8866\",\n    \"category\": \"法规\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国最高法院通识读本\",\n    \"author\": \"琳达・格林豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866\",\n    \"category\": \"法规\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅斯年文集（套装共6册）\",\n    \"author\": \"傅斯年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991504-c70585?p=8866\",\n    \"category\": \"文集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛波斯卡诗选三部曲\",\n    \"author\": \"维斯拉瓦・辛波斯卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045282-d2f37d?p=8866\",\n    \"category\": \"文集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866\",\n    \"category\": \"文集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王佐良全集（套装共12卷）\",\n    \"author\": \"王佐良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042960-41e26a?p=8866\",\n    \"category\": \"文集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横渡孟加拉湾\",\n    \"author\": \"苏尼尔・阿姆瑞斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513060-c0b1a2?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲世纪\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的决裂\",\n    \"author\": \"汤姆斯·F. 密勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的多角度解读（套装共20册）\",\n    \"author\": \"蒋廷黻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的去魔化\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲史概说\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019314-bb4568?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简亚洲千年史\",\n    \"author\": \"斯图亚特・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008547-7528e7?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长岛小记\",\n    \"author\": \"郭红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491448-bef079?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那间街角的茶铺\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491775-2dbac0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书是最对得起付出的一件事\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491988-526c88?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱这哭不出来的浪漫\",\n    \"author\": \"严明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492279-da9a63?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借山而居（珍藏版）\",\n    \"author\": \"张二冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492669-bdbbd4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"躺平\",\n    \"author\": \"贝恩德・布伦纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493068-3a03e2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声誉\",\n    \"author\": \"唐诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈外编辑\",\n    \"author\": \"都筑响一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493812-a4c0be?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新冠时代的我们\",\n    \"author\": \"保罗・乔尔达诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，平成时代\",\n    \"author\": \"新井一二三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496449-4bf150?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切境\",\n    \"author\": \"庆山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498237-63e633?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间杭州\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498333-278c6e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫里的中国\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498681-511b6c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵长类人科动物图鉴\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498702-8b48c5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万个明天\",\n    \"author\": \"秦萤亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498915-531f5e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那猫那人那城\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498936-fe5a9d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未被摧毁的生活\",\n    \"author\": \"李伟长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503928-467c01?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书店日记套装（全2册）\",\n    \"author\": \"肖恩・白塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506799-7d0cc6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有本事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509241-f5b13a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大城北京\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509667-8e85ae?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古寺巡礼\",\n    \"author\": \"和辻哲郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509676-6befb2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻小说的人\",\n    \"author\": \"比目鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509745-085174?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典散文精选注译（套装共8册）\",\n    \"author\": \"傅璇琮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木心上海往事\",\n    \"author\": \"铁戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510105-8d778a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漱石日记\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510213-f80a7f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的个天\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510420-ff10a0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星船与大树\",\n    \"author\": \"马慧元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有意义就没有摇摆\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511080-f945a2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书鱼知小\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511173-ce7dc0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明天又是崭新的一天\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511638-26ae7f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱天下一切狗\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511947-976f66?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿：一部身体的回忆录\",\n    \"author\": \"罗克珊・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512007-c856a9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥肉（增订版）\",\n    \"author\": \"朱赢椿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512190-f52a7f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"停靠，一座城\",\n    \"author\": \"李婧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512250-e4c3ba?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游荡集\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值的理由\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512478-959447?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士的故事\",\n    \"author\": \"克里斯蒂・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有关品味\",\n    \"author\": \"彼得・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513072-dd4998?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少时读书\",\n    \"author\": \"废名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野味读书\",\n    \"author\": \"孙犁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缘缘堂随笔：足本\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513684-7de20d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年曾祺：1920-2020\",\n    \"author\": \"梁由之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004320-812970?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这是真的，我在一本书里读到过\",\n    \"author\": \"巴斯卡尔・博尼法斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈话录\",\n    \"author\": \"王安忆/张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕边书\",\n    \"author\": \"帕梅拉・保罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004080-533237?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我去那花花世界\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003999-efb1ee?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生文集（纪念版·全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003975-a3b5c9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自在京都\",\n    \"author\": \"库索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003879-27a2e4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯唐成事心法\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集\",\n    \"author\": \"赵崇祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003321-4f2249?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生未完成（增订新版）\",\n    \"author\": \"于娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海边小屋\",\n    \"author\": \"梅・萨藤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002400-bbe7a7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目光\",\n    \"author\": \"陶勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃醋的人生\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001887-dba4a1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全套系中文版陈舜臣随笔集\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001860-bff3b9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岁月的针脚\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001560-cd381e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪客美食家\",\n    \"author\": \"久住昌之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001461-2bebba?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读：十周年特辑\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祝你快乐勇敢\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼岸风景\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000249-6eb01e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的耳朵\",\n    \"author\": \"周云蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999832-881ef8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培根随笔全集（作家榜经典文库）\",\n    \"author\": \"弗朗西斯・培根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把地上的事往天上聊\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997897-ff709e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯：晨昏岛屿的集市\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出唯一真理观\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995503-31ccb1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谢谢你：松浦弥太郎处世小哲学\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995353-842ed3?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张洁文集（九卷本）\",\n    \"author\": \"张洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与传奇\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995116-27f3e6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在别人的句子里\",\n    \"author\": \"陈以侃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994660-ef8591?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要和你妈争辩\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假作真时\",\n    \"author\": \"黄昱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声音的魅力\",\n    \"author\": \"张皓翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991552-babdf5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八千里路云和月\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京都如晤\",\n    \"author\": \"苏枕书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991105-f1566d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"业余者说\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野果\",\n    \"author\": \"亨利・大卫・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989572-668ed4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不三\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988819-9f6970?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个李白\",\n    \"author\": \"王充闾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳与少女\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987055-66c73f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扪虱谈鬼录（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情就是堆积如山的笔记\",\n    \"author\": \"苏美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986113-258fce?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评说历史系列丛书（套装共7册）\",\n    \"author\": \"夏坚勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌蒙山记\",\n    \"author\": \"雷平阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的音乐笔记\",\n    \"author\": \"肖复兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声色野记\",\n    \"author\": \"侯磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神性的温柔\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的美的世界\",\n    \"author\": \"森茉莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985480-47ad93?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沿坟墓而行\",\n    \"author\": \"纳韦德・凯尔曼尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙田随笔全集（共3册）\",\n    \"author\": \"米歇尔・德・蒙田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985171-fc3c5a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是孤独的旅程\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李娟阿勒泰系列（共4册）\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏与西伯利亚\",\n    \"author\": \"倪湛舸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青眉抄\",\n    \"author\": \"上村松园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983134-c98139?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄小厨的春夏秋冬\",\n    \"author\": \"黄磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦溪笔谈（全本全注全译）\",\n    \"author\": \"沈括\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982498-8c1213?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（读客经典）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982507-7418ab?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去他的巴西\",\n    \"author\": \"胡续冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小文65\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982444-87cc64?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲情偶寄（全本全注全译）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982435-f2b94d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午6：旧山河，新故事\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在时光中盛开的女子\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长皱了的小孩\",\n    \"author\": \"严明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052575-e2c228?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才为何成群地来\",\n    \"author\": \"王汎森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑场（2017版）\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048558-fe098d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书（全本全注全译）\",\n    \"author\": \"张建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲与哀矜\",\n    \"author\": \"张定浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047418-fe398a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些忧伤的年轻人\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德谈话录（果麦经典）\",\n    \"author\": \"爱克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047061-9b3ce0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第84封情书\",\n    \"author\": \"骆淑景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的晃荡的青春\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046584-e51f3a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媚骨之书\",\n    \"author\": \"蒋蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波动\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046539-3edfdf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爵士乐群英谱\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046266-bc8656?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山之四季（果麦经典）\",\n    \"author\": \"高村光太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事的开始\",\n    \"author\": \"幾米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"占卜师的预言\",\n    \"author\": \"蒂齐亚诺・泰尔扎尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有一个人生\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日升之处\",\n    \"author\": \"A.W.金莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安的生活\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖23：好久没去野餐了！\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044721-dfba86?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（作家榜经典文库）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一道曙光下的真实\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笠翁对韵（作家榜经典文库）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆的思想家\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的事情\",\n    \"author\": \"苇岸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化与人生\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适四十自述（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听客溪的朝圣\",\n    \"author\": \"安妮・迪拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忍不住的新努力（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043095-cf02bb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希尼三十年文选\",\n    \"author\": \"谢默斯・希尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国深南之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往印度次大陆\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔杂文全集（全2册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我在一个仲夏清晨出走\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041316-13ceb7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八股新论\",\n    \"author\": \"金克木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040908-f77a1a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识与通识（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸猫指南\",\n    \"author\": \"六井冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040377-276a7e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拔蒲歌\",\n    \"author\": \"沈书枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯日记\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039990-dbfb2f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸说经典作品集（套装共4册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳船上的孩子\",\n    \"author\": \"雅丝米娜・米哈伊洛维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星条旗下的茶叶蛋\",\n    \"author\": \"方柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信徒的国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抵达之谜\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037674-586f4c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（译文经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落论（坂口安吾系列作品）\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036426-ed96c8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷家书（经典版）\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的精神家园\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034980-0be87d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反与正·婚礼集·夏\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原稿零枚日记\",\n    \"author\": \"小川洋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034140-54223a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨天炎天\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和电风扇一起摇头\",\n    \"author\": \"大岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034092-9f46c2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下鲍勃·迪伦与老美国\",\n    \"author\": \"格雷尔・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致女儿书\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033981-f30b64?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边境·近境\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下巴黎\",\n    \"author\": \"洛朗・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方的鼓声\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画见\",\n    \"author\": \"止庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韩寒的杂文们（套装共4册）\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心为身役：苏珊·桑塔格日记与笔记（1964-1980）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰在黄昏起飞\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033234-b6cfcb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生：苏珊·桑塔格日记与笔记（1947-1963）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单：应对复杂世界的高级思维\",\n    \"author\": \"木鱼/柳白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033039-6a69db?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢人生快活的样子\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蠹鱼文丛系列（套装10册）\",\n    \"author\": \"陈子善/叶瑜荪/李辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉住气，吃硬饭\",\n    \"author\": \"王路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四季，三餐，都随你\",\n    \"author\": \"简猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小于一\",\n    \"author\": \"约瑟夫・布罗茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小丑\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩儿\",\n    \"author\": \"于谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲话闲说（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032094-c45426?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下乡愁蓝调\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031992-c6a7a5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日书\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳朵借我\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本名词故事\",\n    \"author\": \"新井一二三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清欢三卷（唯美珍藏版）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031746-95d746?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寥寥中年事\",\n    \"author\": \"秋色连波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷月孤灯·静远楼读史\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031359-488f0a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来前书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一个蛋开始\",\n    \"author\": \"徐则臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031023-96e5b6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类愚蠢辞典\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国家书\",\n    \"author\": \"本杰明・富兰克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦灰堆 美人计\",\n    \"author\": \"萧耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030711-cffcd0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸短情长，民国大师们的最美情书（全6册套装）\",\n    \"author\": \"朱生豪/鲁迅/闻一多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由在高处\",\n    \"author\": \"熊培云\",\n    \"link\": \"链接未找到\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单独中的洞见\",\n    \"author\": \"张方宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书毁了我\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030408-4ed360?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿皮火车（精装增补图文版）\",\n    \"author\": \"周云蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030276-97ed20?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在新疆\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030111-69f33f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子的领悟\",\n    \"author\": \"周保松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029604-147daf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书贩笑忘录\",\n    \"author\": \"陈晓维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029508-bfbc07?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四个春天\",\n    \"author\": \"陆庆屹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029481-41006d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的文艺复兴\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029421-adc6a2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下雨天一个人在家\",\n    \"author\": \"江国香织\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029391-80179b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深思与省悟\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林清玄经典作品合集（套装共十二册）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029175-3e7510?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普通读者\",\n    \"author\": \"西闪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林中水滴\",\n    \"author\": \"米・普里什文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028419-0eee62?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苦儿流浪记（果麦经典）\",\n    \"author\": \"埃克多・马洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028341-fbd188?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古文辞类纂（全2册）\",\n    \"author\": \"姚鼐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028095-524f25?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"见字如来\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028047-c7408c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大树\",\n    \"author\": \"贝尔纳・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027990-fdb107?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉万象记\",\n    \"author\": \"毛晓雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给布里安娜的卡片\",\n    \"author\": \"希瑟・麦克马拉米/威廉・克洛伊尔\",\n    \"link\": \"链接未找到\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"试论疲倦\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027906-d5f6a8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世间的名字都是秘密\",\n    \"author\": \"苏缨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027894-123174?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春时樱，秋时叶\",\n    \"author\": \"德富芦花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027903-12eb42?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书籍的世界\",\n    \"author\": \"赫尔曼黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027612-b2d143?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱\",\n    \"author\": \"叶三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027609-3c8930?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读17：人的困境\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027582-858cfb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读18：都市一无所有\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027570-69e4e0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读19：到未来去\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027576-7935d7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人的食指\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027498-8a4dd7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰饶与贫瘠\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027381-2af7f7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛读书札记\",\n    \"author\": \"赵一凡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027321-89ad70?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个观点，不一定对\",\n    \"author\": \"黄章晋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男女有别\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026973-55e3ae?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自在独行\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026964-7741e7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大叔\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026829-a09868?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上几个人渣\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随性而至\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026382-2185ca?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家笔记\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026373-6fd2ce?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海胆\",\n    \"author\": \"雷晓宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漂泊的异乡人\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026148-636c2c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇手记（珍藏版）\",\n    \"author\": \"达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宴与家宴\",\n    \"author\": \"王宣一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪音\",\n    \"author\": \"梁文道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025527-55faa6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街角的老北京\",\n    \"author\": \"卢文龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有话说\",\n    \"author\": \"崔永元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耕种 食物 爱情\",\n    \"author\": \"克里斯汀・金博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出荒野\",\n    \"author\": \"谢丽尔・斯特雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我讲个笑话，你可别哭啊\",\n    \"author\": \"囧叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024642-ca56cb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民自黑的英国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在另一个宇宙的1003天\",\n    \"author\": \"张春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡苦不苦\",\n    \"author\": \"陈丹燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美，看不见的竞争力\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024381-dc676d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾想（套装共2册）\",\n    \"author\": \"贾樟柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024177-5dc26f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"依赖共生\",\n    \"author\": \"巴里・温霍尔德/贾内・温霍尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024069-b92767?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我只知道人是什么\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢煮生活\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023556-6ec377?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明天我要去冰岛\",\n    \"author\": \"嘉倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山河小岁月\",\n    \"author\": \"李舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023418-3eafb8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝话\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不过，一场生活\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天长地久：给美君的信\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑场\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022842-b37533?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么总是看错人\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022611-49a550?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林达作品集（套装共10册）\",\n    \"author\": \"林达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潦草\",\n    \"author\": \"贾行家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021888-5f25ff?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息，折腾不止\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有如候鸟\",\n    \"author\": \"周晓枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活上瘾指南\",\n    \"author\": \"姚瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私想鲁迅\",\n    \"author\": \"刘春杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一瓢纽约\",\n    \"author\": \"张北海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021135-c37724?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大忘路\",\n    \"author\": \"大忘路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020988-769584?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北野武的小酒馆\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020850-7ed159?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文章皆岁月\",\n    \"author\": \"萧乾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020781-294c5e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三毛作品精选（共6册）\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020745-33663b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老灵魂\",\n    \"author\": \"韩松落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020712-1dcbf2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以读攻读\",\n    \"author\": \"但汉松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020502-f49829?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有时\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020499-b76fe6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把你交给时间\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020520-c95774?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫子旁\",\n    \"author\": \"朱赢椿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020127-6ae8cd?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的脖子让我很不爽\",\n    \"author\": \"诺拉・艾芙隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019875-949ab1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水云（果麦经典）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"然而，很美：爵士乐之书\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019851-676e46?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键词\",\n    \"author\": \"梁文道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019260-b47d26?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间卧底\",\n    \"author\": \"马良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019188-c5a941?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如丧\",\n    \"author\": \"高晓松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人是一根会思考的芦苇\",\n    \"author\": \"帕斯卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018051-3c51aa?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偶遇\",\n    \"author\": \"陈鲁豫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017523-714fb8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风马牛（全三册）\",\n    \"author\": \"孙原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017139-643906?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢来，反正也来不及\",\n    \"author\": \"囧叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017091-63be9e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无聊的魅力\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机场里的小旅行\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016749-ca198e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作颂歌\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016866-d1189f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的慰藉\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016734-154cfc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的建筑\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016800-10b9f5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱逝水年华\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016731-8427f1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你我皆凡人\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016530-05da98?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅定荒野\",\n    \"author\": \"加里・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在这复杂世界里\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016401-5810ba?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，小确幸\",\n    \"author\": \"加肥猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016305-40563d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国的智慧（全2册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015927-98a2b1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自静默时刻的讯息\",\n    \"author\": \"亚历山大・克鲁格/格哈德・里希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015834-7f7b45?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记（全本全译全注插图珍藏版）\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015576-cbd161?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧山河\",\n    \"author\": \"刀尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠，从牛A到牛C\",\n    \"author\": \"大脸撑在小胸上\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015081-08667c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搜神记\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014958-03a189?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的优雅\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014619-e2d4f6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读是一座随身携带的避难所\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014526-6e422e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知道分子\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014475-8625ba?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萝卜和难挑的鳄梨\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014292-185e18?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"送你一颗子弹\",\n    \"author\": \"刘瑜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014244-82b233?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲人遐想录\",\n    \"author\": \"杰罗姆・克・杰罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013947-08bcf2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文稿拾零\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013854-de3eab?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六神磊磊读唐诗\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013521-bdd110?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡觉大师\",\n    \"author\": \"朱岳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013257-d79e5b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给青年诗人的信\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012636-064601?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的进化论\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你与这世界温暖相拥\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012573-78aa7b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深山夏牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012348-5be301?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前山夏牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012354-ef6a56?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012315-5f2f15?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的国\",\n    \"author\": \"寇研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京一年\",\n    \"author\": \"蒋方舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011895-9ac584?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩托日记\",\n    \"author\": \"埃内斯托・切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒哈拉的故事\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011679-8f3c6e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份的焦虑\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011703-4d4366?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无比芜杂的心绪\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011481-7ffc07?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁是谁的太阳：尼采随笔\",\n    \"author\": \"弗里德里希・威廉・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011469-72eb20?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生插图版经典作品选（全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍遗珠\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖食：质朴的味道，家的味道\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间世\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010728-b43c36?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何必等来生\",\n    \"author\": \"燕子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010593-8d64d5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文集（套装共7册）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊次郎与佐纪\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009915-10ba80?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像我这样的一个读者\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔作品集（套装共9册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众妙之门（精装插图版）\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009396-d57366?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船夫日记\",\n    \"author\": \"凯尔泰斯・伊姆莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009303-181850?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们仨\",\n    \"author\": \"杨绛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天“帝国与共和”三部曲\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把生命浪费在美好的事物上\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008034-2d080f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的读书计划\",\n    \"author\": \"克里夫顿・费迪曼/约翰・S・梅杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙乡年鉴（果麦经典）\",\n    \"author\": \"奥尔多・利奥波德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007749-a6a55e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学五章\",\n    \"author\": \"江晓原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得读完的书\",\n    \"author\": \"聂震宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年一叹\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旅行与读书\",\n    \"author\": \"詹宏志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮囊\",\n    \"author\": \"蔡崇达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在汉朝不容易\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教科书里没有的历史细节\",\n    \"author\": \"王国华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福了吗？\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛并快乐着\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目送（插图版）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇石：来自东西方的报道\",\n    \"author\": \"彼得·海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡关何处\",\n    \"author\": \"土家野夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006978-c20038?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的大多数（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白说\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1933：聆听民国\",\n    \"author\": \"林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是爬行者小江\",\n    \"author\": \"江一燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006828-cf34d0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见\",\n    \"author\": \"柴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是尘埃也是光\",\n    \"author\": \"梁子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你永远都无法叫醒一个装睡的人\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲三万里\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打回原形\",\n    \"author\": \"朱新建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜半蜘蛛猴\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005913-712f9f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的底稿\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的边角料\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005868-04c945?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕著三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的空白处\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：朝堂上的戏法\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005811-270f44?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直截了当的独白\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船夫日记2\",\n    \"author\": \"凯尔泰斯・伊姆莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005754-20f950?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乖，摸摸头\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我亦飘零久\",\n    \"author\": \"独木舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005637-3597fa?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年之痒\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们这个时代的怕和爱\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004716-7b334c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不和世界讲道理\",\n    \"author\": \"曹晟康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500178-c94c1a?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过得刚好\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513618-32fba3?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯友兰哲思录\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004101-553863?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墓志铭图书馆\",\n    \"author\": \"萨缪尔・法努斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003990-425456?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请勿离开车祸现场\",\n    \"author\": \"叶扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003798-f07b2c?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘墉的处世情商课\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目光\",\n    \"author\": \"陶勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造人生的伙伴\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我离开之后\",\n    \"author\": \"苏西・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就斜杠人生\",\n    \"author\": \"玛希・埃尔博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998818-5c9d5c?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋（读客经典）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995125-5bc203?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生由我\",\n    \"author\": \"梅耶・马斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的人生歌单\",\n    \"author\": \"格雷姆・辛浦生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像哲学家一样生活\",\n    \"author\": \"威廉·B.欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生新算法\",\n    \"author\": \"矢野和男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忏悔录（上下册）\",\n    \"author\": \"卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平如美棠：我俩的故事\",\n    \"author\": \"饶平如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最神奇的24堂课\",\n    \"author\": \"查尔斯・哈奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果敢力\",\n    \"author\": \"蒋齐仕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化与人生\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失忆的爱丽丝\",\n    \"author\": \"莉安・莫利亚提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042543-545e28?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力：刘媛媛的逆袭课\",\n    \"author\": \"刘媛媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040512-7c2ad0?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A4纸上看人生\",\n    \"author\": \"刘建梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无法完成的告别\",\n    \"author\": \"大卫・利维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035373-d1df05?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢人生快活的样子\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布隆夫曼脱单历险记\",\n    \"author\": \"丹尼尔・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走钢丝的人\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031827-350ba1?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人质朗读会\",\n    \"author\": \"小川洋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031818-fe8c83?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的智慧（作家榜经典文库）\",\n    \"author\": \"阿图尔・叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029181-2bb63c?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人不过如此\",\n    \"author\": \"大卫・邵洛伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029004-57f394?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让好脾气害了你\",\n    \"author\": \"周维丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027069-8b1e00?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丈量世界\",\n    \"author\": \"丹尼尔・凯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025011-988ba8?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爷爷一定要离婚\",\n    \"author\": \"帕斯卡・鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024636-095fcc?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的哲学\",\n    \"author\": \"朱尔斯・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是孤独的行路人\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022542-cf4133?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百岁人生：长寿时代的生活和工作\",\n    \"author\": \"琳达・格拉顿/安德鲁・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021330-9ce0b1?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间食粮\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021168-e7d281?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的智慧：如何才能幸福度过一生\",\n    \"author\": \"阿图尔・叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018105-7725a4?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这世界啊，随他去吧\",\n    \"author\": \"李沐泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017355-7f8a21?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何必等来生\",\n    \"author\": \"燕子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010593-8d64d5?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人与永恒\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009954-f64d06?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产狂人许家印\",\n    \"author\": \"魏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明兴衰三百年\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498804-6bd132?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明风云（套装共9册）\",\n    \"author\": \"云石等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501321-cc13fe?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春明梦余录\",\n    \"author\": \"狐周周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511800-d57445?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"严嵩与张居正\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997336-91c17f?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝那些事儿（图文增补版）\",\n    \"author\": \"当年明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050259-ef1bdd?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝简史\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048765-cc45e6?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒退的帝国：朱元璋的成与败\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝廷与党争\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045885-5bdfc7?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚明大变局\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045558-e69b30?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国\",\n    \"author\": \"周建行\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034782-d9ee2a?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滴血的大朝代\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国战争史\",\n    \"author\": \"李湖光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张居正：全4册\",\n    \"author\": \"熊召政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025059-cac065?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽明录\",\n    \"author\": \"卢隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024369-db1a0a?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崇祯大传奇（全三册）\",\n    \"author\": \"晏青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020979-10eee9?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明乌纱\",\n    \"author\": \"西风紧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019917-75816f?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Q版大明衣冠图志\",\n    \"author\": \"撷芳主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016557-4c2cd9?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孝陵卫\",\n    \"author\": \"陆老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010872-c4be3c?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明王朝的七张面孔（套装共2册）\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007833-83ee88?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地解：1644大变局\",\n    \"author\": \"汗青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006444-18d6eb?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明王朝1566（套装共二册）\",\n    \"author\": \"刘和平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005589-4f319f?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦衣卫秘事\",\n    \"author\": \"夜行独侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005262-15b909?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不容青史尽成灰（套装五册）\",\n    \"author\": \"张嵚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005247-bb17a7?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国最后的荣耀：大明1592抗日援朝\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005091-0ae1b1?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万历十五年（经典版）\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004842-c3da51?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝那些事儿（1-9）\",\n    \"author\": \"当年明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抓重点\",\n    \"author\": \"赵启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004644-1ddabe?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效清单工作法\",\n    \"author\": \"达蒙・扎哈里亚德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简时间\",\n    \"author\": \"洛塔尔・赛韦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000291-c277a4?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大忙人的高效阅读课\",\n    \"author\": \"李源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995281-68ab8d?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保持饥渴\",\n    \"author\": \"Thinkers50\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效忍者\",\n    \"author\": \"格雷厄姆・阿尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法\",\n    \"author\": \"弗朗西斯科・西里洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的方法\",\n    \"author\": \"泰勒・本-沙哈尔/安格斯・里奇韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极速写作\",\n    \"author\": \"剑飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑减压的子弹笔记术\",\n    \"author\": \"电脑玩物站长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间看得见\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033381-62fcdf?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极度效率\",\n    \"author\": \"阿米特・奥菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028083-8ae1ff?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效PDCA工作术\",\n    \"author\": \"富田和成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021882-8ccafc?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让无效努力毁了你\",\n    \"author\": \"克里斯・贝利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014442-332e82?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教父三部曲（典藏版套装）\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866\",\n    \"category\": \"教父\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为自控者\",\n    \"author\": \"Susan Kuang\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004494-7eeeaf?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的150个信念\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天演好一个情绪稳定的成年人\",\n    \"author\": \"老杨的猫头鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996994-edf7f5?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向上生长\",\n    \"author\": \"九边\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995068-5df96e?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即答力\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990169-68ccea?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢你，像风走了八千里\",\n    \"author\": \"末那大叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学原来很有趣\",\n    \"author\": \"齐露露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的自律，给你自由\",\n    \"author\": \"小椰子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阶层跃迁\",\n    \"author\": \"闫肖锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051423-630300?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出众，从改变习惯开始\",\n    \"author\": \"马克・列克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董卿：做一个有才情的女子\",\n    \"author\": \"乔瑞玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Unfu*k Yourself\",\n    \"author\": \"Gary John Bishop\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的84000种可能\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033465-4e8890?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有多强大，就有多温柔\",\n    \"author\": \"王珣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我们相逢在更高处\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026193-085500?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终有一天你会懂\",\n    \"author\": \"琢磨先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好吗好的\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007014-27f7a8?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易：高手训练营\",\n    \"author\": \"埃德・蓬西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866\",\n    \"category\": \"外汇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易的10堂必修课\",\n    \"author\": \"贾里德・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866\",\n    \"category\": \"外汇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福社会创新评论合集（套装共9册）\",\n    \"author\": \"斯坦福社会创新评论编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866\",\n    \"category\": \"斯坦福\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相对论之路\",\n    \"author\": \"哈诺赫・古特弗罗因德/于尔根・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866\",\n    \"category\": \"相对论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危崖：生存性风险与人类的未来\",\n    \"author\": \"托比・奥德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493782-80c088?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类进化史\",\n    \"author\": \"加亚・文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498165-5357ae?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很高兴认识“我”\",\n    \"author\": \"比尔・沙利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雨横渡\",\n    \"author\": \"西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510204-4a529b?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别睡，这里有蛇\",\n    \"author\": \"丹尼尔・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510891-4ad519?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六论自发性\",\n    \"author\": \"詹姆斯·C. 斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类学讲义稿\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候经济与人类未来\",\n    \"author\": \"比尔・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚蠢的人类\",\n    \"author\": \"汤姆・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003243-bbb6f1?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破译人类的明天\",\n    \"author\": \"迈克尔・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史与人类的未来（修订版）\",\n    \"author\": \"弗雷德・斯皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994171-41fd5a?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼物的流动\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985465-3e6908?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃：社会如何选择成败兴亡\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的价值\",\n    \"author\": \"罗伯特・博伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051105-4b4530?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔工的值班室\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043494-9e3f3d?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（三）\",\n    \"author\": \"开普勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（一）\",\n    \"author\": \"摩尔根等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（二）\",\n    \"author\": \"玛丽・居里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类六千年（上下两册）\",\n    \"author\": \"刘景华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忧郁的热带\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面对现代世界问题的人类学\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032265-7d37d4?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼安德特人\",\n    \"author\": \"斯万特・帕博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金叶：来自金枝的故事\",\n    \"author\": \"丽莉・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028533-53157f?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是个妈妈，我需要铂金包\",\n    \"author\": \"温妮斯蒂・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的智人\",\n    \"author\": \"河森堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"椰壳碗外的人生\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切与创造有关\",\n    \"author\": \"奥古斯汀・富恩特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么有的国家富裕，有的国家贫穷\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018243-d98729?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象的共同体（增订版）\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017700-976365?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人类革命\",\n    \"author\": \"吕克・费希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017670-bee6d3?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们人类的进化\",\n    \"author\": \"亚历山大・哈考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一万年的爆发\",\n    \"author\": \"格雷戈里・柯克伦/亨利・哈本丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017313-fa9dd4?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史\",\n    \"author\": \"大卫・克里斯蒂安等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016224-d086d6?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的故事：正式授权续写至21世纪\",\n    \"author\": \"亨德里克・威廉・房龙等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015681-651344?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类砍头小史\",\n    \"author\": \"弗朗西斯・拉尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信历史的镜像系列（套装共10本）\",\n    \"author\": \"理查德・埃文斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私人生活的变革\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些惊心动魄的人类文明史（套装共18册）\",\n    \"author\": \"曹胜高等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的故事：进化、健康与疾病\",\n    \"author\": \"丹尼尔・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金枝\",\n    \"author\": \"詹姆斯・乔治・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010026-3fff55?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌和钢铁\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生取义\",\n    \"author\": \"吴飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神似祖先\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是食人族\",\n    \"author\": \"克劳德・列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂人类进化史\",\n    \"author\": \"史钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类简史：从动物到上帝\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005331-d43590?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文治帝国\",\n    \"author\": \"艾公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498795-f4db48?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋人轶事汇编\",\n    \"author\": \"周勋初/葛渭君/周子来/王华宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雅宋：看得见的大宋文明\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028143-e3cd42?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录\",\n    \"author\": \"孟元老\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋帝国三百年（共5册）\",\n    \"author\": \"金纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原来你是这样的宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005328-0cee06?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肠子的小心思\",\n    \"author\": \"朱莉娅・恩德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866\",\n    \"category\": \"重口味\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面包匠的狂欢节\",\n    \"author\": \"安德鲁・林赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010767-26c0e8?p=8866\",\n    \"category\": \"重口味\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河谈亲密关系\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木马湖\",\n    \"author\": \"宋老邪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002121-ac27cf?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情的逻辑\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001287-7558eb?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱是什么\",\n    \"author\": \"芭芭拉・弗雷德里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999475-3aed0e?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当爱变成了情感操纵\",\n    \"author\": \"佐治·K.西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995245-aa31a6?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的人生歌单\",\n    \"author\": \"格雷姆・辛浦生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲望都市\",\n    \"author\": \"坎迪斯・布什奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990379-bb75be?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情就是堆积如山的笔记\",\n    \"author\": \"苏美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挽回爱情33堂课\",\n    \"author\": \"穆木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985810-12567b?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们失去的光\",\n    \"author\": \"吉尔・桑托波罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985711-f7b9ee?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（再版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985642-272a86?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尉官正年轻\",\n    \"author\": \"刘静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985630-32bdb9?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（中英双语典藏版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平如美棠：我俩的故事\",\n    \"author\": \"饶平如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性盲症患者的爱情\",\n    \"author\": \"张天翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053070-b8c727?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情和其他魔鬼\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051126-9665e7?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景恒街\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051015-aa2384?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的巴黎\",\n    \"author\": \"乔乔・莫伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050619-04e97f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第84封情书\",\n    \"author\": \"骆淑景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"返朴\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046800-b689fb?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾城之恋（2019版）\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045720-2b6e2f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（果麦经典）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045654-27e62a?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧演的终章\",\n    \"author\": \"平野启一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045306-447f37?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开往伊斯坦布尔的最后列车\",\n    \"author\": \"艾雪・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043023-4cbbe6?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过（2019全新修订）\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040293-137a08?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河说爱情\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最初之前\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036237-0122de?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仲夏夜之梦（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命时期的爱情\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035277-f2f141?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"既生魄\",\n    \"author\": \"张广天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034497-a955e3?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飘（企鹅经典）\",\n    \"author\": \"玛格丽特・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033714-39755f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜月亮\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033636-81f339?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分手信\",\n    \"author\": \"尼古拉斯・斯帕克思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032835-a16896?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Hating Game\",\n    \"author\": \"Sally Thorne\",\n    \"link\": \"链接未找到\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二年，故人戏（全2册）\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与你重逢\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032469-49b649?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十首情诗和一支绝望的歌\",\n    \"author\": \"巴勃罗・聂鲁达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲伤逆流成河\",\n    \"author\": \"郭敬明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032358-7743cd?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱你就像爱生命\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明之街\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031164-4316c5?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"糟糠之妻\",\n    \"author\": \"未夕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029601-d8ddb2?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的爱情\",\n    \"author\": \"陈果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027975-a6a097?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的小梨窝\",\n    \"author\": \"唧唧的猫\",\n    \"link\": \"链接未找到\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青青陌上桑\",\n    \"author\": \"陆观澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027747-d1669b?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装成独白的爱情\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027723-339ebc?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良言写意（珍藏纪念版）\",\n    \"author\": \"木浮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027585-8dcbed?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东宫\",\n    \"author\": \"匪我思存\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027138-57ad43?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琥珀恋人\",\n    \"author\": \"茶韵悠悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025029-910f40?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街角的奇迹\",\n    \"author\": \"肯尼迪・欧戴德/杰茜卡・波斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024135-a86d86?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无比美妙的痛苦\",\n    \"author\": \"约翰・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023421-afac0a?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的房东叫别扭\",\n    \"author\": \"宝卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023103-0d5a9b?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为了你，我愿意热爱整个世界\",\n    \"author\": \"唐家三少\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023094-78fa48?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年的你，如此美丽\",\n    \"author\": \"玖月晞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022845-17524c?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就要你好好的\",\n    \"author\": \"乔乔・莫伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022401-24700e?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的最小行动\",\n    \"author\": \"刘轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022134-f272bd?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琥珀·恋爱的犀牛\",\n    \"author\": \"廖一梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021084-25b99f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的自然史\",\n    \"author\": \"戴安娜・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021021-362752?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那个不为人知的故事\",\n    \"author\": \"Twentine\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020829-f14985?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南极绝恋\",\n    \"author\": \"吴有音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019218-58d2f5?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方有乔木（纪念版）\",\n    \"author\": \"小狐濡尾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018402-84c931?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译官（影视纪念珍藏版）\",\n    \"author\": \"缪娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017772-ab292f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛格丽特小镇\",\n    \"author\": \"加布瑞埃拉・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017520-70035d?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆光而行\",\n    \"author\": \"沈南乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017262-60c28b?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上浪漫\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016809-5e062f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间旅行者的妻子\",\n    \"author\": \"奥德丽・尼芬格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013359-d1a740?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的进化论\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍乱时期的爱情\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010596-537f33?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前半生\",\n    \"author\": \"亦舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009927-9bdb0f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分心也有好婚姻\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一半是火焰，一半是海水\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009294-b318d0?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘉莉妹妹\",\n    \"author\": \"西奥多・德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008712-177f57?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别天堂\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008511-0969ee?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比\",\n    \"author\": \"斯科特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007428-711e86?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失乐园\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007320-69bcb7?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾中回忆\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海道物语\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007113-1efc77?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的爱人\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006969-e58bb7?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘鸟（修订版）\",\n    \"author\": \"考琳·麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关灯就睡觉\",\n    \"author\": \"格雷格·D·贾克布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491976-465249?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拯救你的睡眠\",\n    \"author\": \"阿里安娜・赫芬顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499422-0ad975?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑子不会好好睡\",\n    \"author\": \"盖伊・勒施齐纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509061-ceecea?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伴你一生的睡眠指导书\",\n    \"author\": \"爱丽丝・格雷戈里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干掉失眠\",\n    \"author\": \"科琳・恩斯特朗姆/阿丽莎・布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何睡个好觉\",\n    \"author\": \"劳伦斯·J. 爱泼斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"久坐不伤身\",\n    \"author\": \"哈丽特・格里菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡个好觉\",\n    \"author\": \"迈尔・克利格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"催眠二十八讲\",\n    \"author\": \"威廉姆・韦斯利・库克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024915-d17460?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法伯睡眠宝典\",\n    \"author\": \"理查德・法伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011148-584292?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Boot实战\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866\",\n    \"category\": \"Spring\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring实战（第4版）\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020319-e008d6?p=8866\",\n    \"category\": \"Spring\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾年度套装（共56册）\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046530-4e40c9?p=8866\",\n    \"category\": \"东野圭吾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使之耳\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032541-4cba9e?p=8866\",\n    \"category\": \"东野圭吾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾天王套装\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031326-663108?p=8866\",\n    \"category\": \"东野圭吾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好兵帅克历险记（名著名译丛书）\",\n    \"author\": \"雅・哈谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035016-e0b80e?p=8866\",\n    \"category\": \"外国文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个女人一生中的二十四小时（企鹅经典）\",\n    \"author\": \"斯台芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033507-fe6b8e?p=8866\",\n    \"category\": \"外国文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流氓的归来\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032382-2de8ce?p=8866\",\n    \"category\": \"外国文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一样的海\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023175-088266?p=8866\",\n    \"category\": \"外国文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"团队赋能\",\n    \"author\": \"迈克・布伦特/菲奥娜・爱尔莎・丹特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢的答案（尊享版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超级领导力\",\n    \"author\": \"金·R·鲍威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实践智慧\",\n    \"author\": \"野中郁次郎/荻野进介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先发制人\",\n    \"author\": \"布伦特・格里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983161-cd7422?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何创建天才团队\",\n    \"author\": \"里奇・卡尔加德/迈克尔・马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横向领导力\",\n    \"author\": \"罗杰・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力思维\",\n    \"author\": \"珍妮弗・加维・伯格/基斯・约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中层领导力（共三册）\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我这就跟你走\",\n    \"author\": \"科里・鲍克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024180-eaf889?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感召力\",\n    \"author\": \"西蒙・兰卡斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力21法则\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005919-08ec04?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"iOS编程（第4版）\",\n    \"author\": \"Christian Keur/Aaron Hillegass\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866\",\n    \"category\": \"iOS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不正经的卢浮宫\",\n    \"author\": \"西塞尔・巴隆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866\",\n    \"category\": \"文史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国崛起病\",\n    \"author\": \"黄钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007281-5bec5c?p=8866\",\n    \"category\": \"文史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·中国的历史（全十卷）\",\n    \"author\": \"宫本一夫/平势隆郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866\",\n    \"category\": \"通史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史\",\n    \"author\": \"丁建弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866\",\n    \"category\": \"通史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笔记思考术\",\n    \"author\": \"黄忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512244-216e47?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"视觉笔记术\",\n    \"author\": \"卢慈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985774-afd8b0?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡笔记思考法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效整理信息\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子弹笔记术\",\n    \"author\": \"杉野干人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019761-864774?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人用方格笔记本\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010908-f51638?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艽野尘梦\",\n    \"author\": \"陈渠珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第1部：卷1~卷7）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866\",\n    \"category\": \"动漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆笑校园（套装共12册）\",\n    \"author\": \"朱斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866\",\n    \"category\": \"动漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（1-7卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031014-763232?p=8866\",\n    \"category\": \"动漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国财政史十六讲\",\n    \"author\": \"刘守刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019311-2e842e?p=8866\",\n    \"category\": \"财政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的财政密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866\",\n    \"category\": \"财政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏海花漫画套装（全六册）\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997207-658fc2?p=8866\",\n    \"category\": \"盗墓笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适19堂文学课（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043251-5f125a?p=8866\",\n    \"category\": \"胡适\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报就像一本兵法书\",\n    \"author\": \"刘顺仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的眼睛\",\n    \"author\": \"吴卫军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务诡计\",\n    \"author\": \"霍华德·M.施利特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂财报\",\n    \"author\": \"肖星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最简单的会计书\",\n    \"author\": \"达雷尔・穆利斯/朱迪斯・奥洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027939-522929?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让数字说话：审计，就这么简单\",\n    \"author\": \"孙含晖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海世界一万五千年\",\n    \"author\": \"阿兰・布隆迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498942-9f4334?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的海（全2册）\",\n    \"author\": \"大卫・阿布拉菲亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海的衰落\",\n    \"author\": \"布雷斯特德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020049-1f86d7?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马灭亡后的地中海世界（上下册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海史诗三部曲\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩5：遗失的羽毛\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866\",\n    \"category\": \"悬爱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读蒙田，是为了生活\",\n    \"author\": \"萨拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866\",\n    \"category\": \"蒙田\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网上遗产\",\n    \"author\": \"伊莱恩・卡斯凯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493404-9f5bf0?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来呼啸而来\",\n    \"author\": \"彼得・戴曼迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496473-11e887?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生生不息\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497664-326a21?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾新十年：移动互联网丛林里的勇敢穿越者（套装共2册）\",\n    \"author\": \"林军/胡喆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497964-c980d4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙通证\",\n    \"author\": \"邢杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499134-ab1e5c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙\",\n    \"author\": \"赵国栋/易欢欢/徐远重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500148-0863f3?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网口述历史第1辑（全8册）\",\n    \"author\": \"方兴东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503886-a36268?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开挂扩张\",\n    \"author\": \"卢诗翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511560-66cc54?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密Instagram\",\n    \"author\": \"莎拉・弗莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘网飞\",\n    \"author\": \"马克・伦道夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有思想的世界\",\n    \"author\": \"富兰克林・福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被看见的力量\",\n    \"author\": \"快手研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001092-9126ac?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裂变增长\",\n    \"author\": \"施襄/杨嘉伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捍卫隐私\",\n    \"author\": \"凯文・米特尼克/罗伯特・瓦摩西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崛起的超级智能\",\n    \"author\": \"刘锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995242-8be920?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后谷歌时代\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业互联网浪潮\",\n    \"author\": \"张学军/王保平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993973-efa42c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链在中国\",\n    \"author\": \"刘兴亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992362-ce1ea4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据资本时代\",\n    \"author\": \"Viktor Mayer-Schnberger\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优步：算法重新定义工作\",\n    \"author\": \"亚力克斯・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网四大\",\n    \"author\": \"斯科特・加洛韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户画像\",\n    \"author\": \"赵宏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"治愈未来\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑞幸闪电战\",\n    \"author\": \"沈帅波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉新\",\n    \"author\": \"加布里埃尔・温伯格/贾斯汀・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俞军产品方法论\",\n    \"author\": \"俞军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷简史\",\n    \"author\": \"钱纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密腾讯帝国（全6册）\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽：风口上的独角兽\",\n    \"author\": \"陈歆磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑动解锁\",\n    \"author\": \"尼尔・梅塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奔腾年代：互联网与中国：1995-2018\",\n    \"author\": \"郭万盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040287-28d2ae?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌方法\",\n    \"author\": \"比尔・基尔迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Design Systems\",\n    \"author\": \"Alla Kholmatova\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031929-0301f2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱彼迎传\",\n    \"author\": \"利・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式成长\",\n    \"author\": \"惠特尼・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首席增长官\",\n    \"author\": \"张溪梦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时空内爆\",\n    \"author\": \"常政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030543-02217e?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户的本质\",\n    \"author\": \"史蒂文・范・贝莱格姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能商业\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大思维：集体智慧如何改变我们的世界\",\n    \"author\": \"周若刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029070-010cf1?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩老板\",\n    \"author\": \"索菲亚・阿莫鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"揭秘跨境电商\",\n    \"author\": \"李鹏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028146-739f5b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发\",\n    \"author\": \"艾伯特-拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027993-9ab187?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近2050\",\n    \"author\": \"集智俱乐部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026955-cae786?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识的边界\",\n    \"author\": \"戴维・温伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026913-097907?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维如何与互联网共同进化\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销概论\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益设计（第2版）\",\n    \"author\": \"Jeff Gothelf\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义公司\",\n    \"author\": \"埃里克・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容算法\",\n    \"author\": \"闫泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的陷阱\",\n    \"author\": \"阿里尔・扎拉奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒循环\",\n    \"author\": \"亚当・潘恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷脸背后\",\n    \"author\": \"张重生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷屏\",\n    \"author\": \"凯文・阿洛卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级连接者\",\n    \"author\": \"伊桑・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致产品\",\n    \"author\": \"周鸿祎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022053-f29ab7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众媒时代\",\n    \"author\": \"腾讯传媒研究\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨境电商宝典（套装共2册）\",\n    \"author\": \"孙韬/老魏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021741-39f857?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资源革命\",\n    \"author\": \"斯蒂芬・赫克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷百年史\",\n    \"author\": \"阿伦・拉奥/皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形式感+\",\n    \"author\": \"晋小彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来2：更为简单高效的远程工作方式\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销圣经\",\n    \"author\": \"加里・维纳查克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020331-3d803b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知盈余：自由时间的力量\",\n    \"author\": \"克莱・舍基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020253-b77fad?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一网打尽：贝佐斯与亚马逊时代\",\n    \"author\": \"布拉德・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019773-9e4c6d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营本源\",\n    \"author\": \"金璞/张仲荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019602-d84d7d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业维艰\",\n    \"author\": \"本・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流量池\",\n    \"author\": \"杨飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热点：引爆内容营销的6个密码\",\n    \"author\": \"马克・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019395-c60176?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Lean Startup\",\n    \"author\": \"Eric Ries\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019344-110690?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Kubernetes实战（套装共2册）\",\n    \"author\": \"吴龙辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019200-6c0097?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"计算广告\",\n    \"author\": \"刘鹏/王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是搜索引擎\",\n    \"author\": \"张俊林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019083-618f1a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全栈市场人\",\n    \"author\": \"Lydia\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一键下单：杰夫·贝佐斯与亚马逊的崛起\",\n    \"author\": \"理查德・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴正传\",\n    \"author\": \"方兴东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁金服：从支付宝到新金融生态圈\",\n    \"author\": \"廉薇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017802-c45526?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与感\",\n    \"author\": \"黎万强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网下半场\",\n    \"author\": \"李光斗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017361-0a5786?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说区块链\",\n    \"author\": \"徐明星/田颖/李霁月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017304-a06e53?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：如何低成本实现爆发式成长\",\n    \"author\": \"Sean Ellis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交的本质\",\n    \"author\": \"兰迪・扎克伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尽在双11：阿里巴巴技术演进与超越\",\n    \"author\": \"阿里巴巴双11技术团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技的狂欢\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016656-d1cdf6?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小群效应\",\n    \"author\": \"徐志斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你凭什么做好互联网\",\n    \"author\": \"曹政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆用户增长\",\n    \"author\": \"黄天文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016125-7b3129?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用数据讲故事\",\n    \"author\": \"Cole Nussbaumer Knaflic\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016071-ab97a7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码区块链（套装共6册）\",\n    \"author\": \"田颖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015585-81fda1?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖叫感\",\n    \"author\": \"马楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产品经理修炼之道\",\n    \"author\": \"费杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014895-353831?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从点子到产品\",\n    \"author\": \"刘飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014775-780161?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光2.0\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结网@改变世界的互联网产品经理（修订版）\",\n    \"author\": \"王坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪潮之巅\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极算法\",\n    \"author\": \"佩德罗・多明戈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能革命\",\n    \"author\": \"李彦宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012960-18d4fa?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降维攻击：未来互联网商业的三体法则\",\n    \"author\": \"高德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012711-3075ba?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻璃笼子\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解HTTP\",\n    \"author\": \"上野宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微创新\",\n    \"author\": \"德鲁・博迪/雅各布・戈登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑客与画家\",\n    \"author\": \"保罗・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012513-5443cb?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的组织：企业持续成长的智慧\",\n    \"author\": \"章永宏/罗旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012483-15e595?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里改变世界：硅谷成功创新之谜\",\n    \"author\": \"黛博拉・佩里・皮肖内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅2\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类2.0：在硅谷探索科技未来\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户力：需求驱动的产品、运营和商业模式\",\n    \"author\": \"郝志中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大数据时代\",\n    \"author\": \"维克托・迈尔・舍恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010281-c20367?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始做运营进阶篇\",\n    \"author\": \"张亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010224-4cbecb?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维独孤九剑\",\n    \"author\": \"赵大伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾\",\n    \"author\": \"尼尔・埃亚尔/瑞安・胡佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级IP：互联网新物种方法论\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始做运营入门篇\",\n    \"author\": \"张亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009843-bcf808?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛点：挖掘小数据满足用户需求\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十亿美金的教训\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁金服\",\n    \"author\": \"由曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008874-46e181?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链\",\n    \"author\": \"长铗/韩锋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风口上的猪：一本书看懂互联网金融\",\n    \"author\": \"肖璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必然\",\n    \"author\": \"凯文・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腾讯传1998-2016\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里传：这是阿里巴巴的世界\",\n    \"author\": \"波特・埃里斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨越鸿沟：颠覆性产品营销圣经\",\n    \"author\": \"杰弗里・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郎咸平说：新经济颠覆了什么\",\n    \"author\": \"郎咸平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007194-87eec7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息简史\",\n    \"author\": \"詹姆斯·格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯传：让你的产品、思想、行为像病毒一样入侵\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业 : 新创企业的成长思维\",\n    \"author\": \"埃里克・莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台战略\",\n    \"author\": \"陈威如/余卓轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维：商业颠覆与重构\",\n    \"author\": \"陈光锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业时，我们在知乎聊什么？\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周鸿祎自述：我的互联网方法论\",\n    \"author\": \"周鸿祎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网新商业时代（套装共三册）\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米内幕\",\n    \"author\": \"吴帝聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：创业公司的用户与收入增长秘籍\",\n    \"author\": \"范冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004839-80eb34?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾十五年\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶经 续茶经（全本全注全译）\",\n    \"author\": \"杜斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶学与茶科学\",\n    \"author\": \"叶士敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512316-d78971?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶战争（修订版）\",\n    \"author\": \"周重林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶与茶器\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶大盗\",\n    \"author\": \"萨拉・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶的国度\",\n    \"author\": \"戎新宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033186-d7f53e?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿色黄金：茶叶帝国\",\n    \"author\": \"艾伦・麦克法兰/艾丽斯・麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大观茶论\",\n    \"author\": \"日月洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027285-051ff1?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中14·中国茶的基本\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶席窥美\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021102-dfafb9?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识社会中的大学\",\n    \"author\": \"杰勒德・德兰迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004371-45c9cb?p=8866\",\n    \"category\": \"大学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大学的精神\",\n    \"author\": \"蒲实/陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026901-285fb4?p=8866\",\n    \"category\": \"大学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃货心理学\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043953-b41fb5?p=8866\",\n    \"category\": \"吃货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼飨宴\",\n    \"author\": \"闻佳/艾格吃饱了\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866\",\n    \"category\": \"吃货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒的边缘（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008637-b35210?p=8866\",\n    \"category\": \"世纪三部曲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的柠檬\",\n    \"author\": \"海伦娜・阿特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃和远方\",\n    \"author\": \"程磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509802-3be4da?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾小吃全书\",\n    \"author\": \"焦桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肉料理原来是这么回事儿\",\n    \"author\": \"亚瑟・勒凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食生活新提案系列（套装共5册）\",\n    \"author\": \"特里斯坦・西卡尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993028-2b5773?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日53：好吃不过拉面\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990262-052cee?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄小厨的春夏秋冬\",\n    \"author\": \"黄磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家肴\",\n    \"author\": \"唐颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨艺的常识\",\n    \"author\": \"迈克尔・鲁尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍谈吃\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044742-1db99f?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖23：好久没去野餐了！\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044721-dfba86?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖24：啊！又想吃零食了\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖20：面的奥义\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044301-244117?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖21：酒的全事典\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃货心理学\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043953-b41fb5?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖19：下午茶时间到\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖17：蔬菜多好吃啊\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖18：真的，烤箱什么都能做\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖15：便当灵感集\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖16：大满足！就爱锅料理\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖13：腐的品格\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖14：小聚会教科书\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖10：早餐，真的太重要了\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖11：美食漫画万岁\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖12：厨房，治愈人生的避难所\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖08：自给自足指南书\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖09：了不起的面包\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042822-a3f181?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖04：肉!肉!肉!\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖05：全宇宙都在吃甜品\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖07：大丈夫生于厨房\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖03：食鲜最高\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的泡面\",\n    \"author\": \"食帖番组主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040059-b9c317?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌是我的调色盘\",\n    \"author\": \"夏威夷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034944-4e1c17?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粗糙食堂\",\n    \"author\": \"莲小兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼飨宴\",\n    \"author\": \"闻佳/艾格吃饱了\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风味人间\",\n    \"author\": \"陈晓卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030402-372ed3?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有风吹过厨房\",\n    \"author\": \"食家饭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025518-067637?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日19：料理之魂\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022488-fcb817?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至味在人间\",\n    \"author\": \"陈晓卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019104-e77006?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把这瓶开了！\",\n    \"author\": \"玛德琳・帕克特/贾斯汀琳・海默克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一把盐下饭菜\",\n    \"author\": \"左壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014430-7b97d6?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃的美德：餐桌上的哲学思考\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013992-1e7670?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖食：质朴的味道，家的味道\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟道：周梦蝶世纪诗选\",\n    \"author\": \"周梦蝶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003564-b99874?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桂花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词境浅说\",\n    \"author\": \"俞陛云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996517-e39145?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啸天说诗（全6册）\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987703-41f27c?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文诗集\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂的奥兰多\",\n    \"author\": \"卢多维科・阿里奥斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象：劳伦斯诗集\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生如夏花（作家榜经典文库）\",\n    \"author\": \"拉宾德拉纳特・泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜空总有最大密度的蓝色\",\n    \"author\": \"最果夕日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030162-20452d?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤独是一座花园\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007998-862b6d?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命的年代：1789～1848\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866\",\n    \"category\": \"年代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的年代：1875～1914\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866\",\n    \"category\": \"年代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端的年代：1914～1991\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006918-d93fd3?p=8866\",\n    \"category\": \"年代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中高净值人群财富管理的顶层设计（全5册）\",\n    \"author\": \"李升等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491427-50aa01?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（原书第3版）（典藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492738-ab0390?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要钱还是要生活\",\n    \"author\": \"维姬・罗宾/乔・多明格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493644-fd98ee?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇妙的盘算社团\",\n    \"author\": \"高井浩章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493755-6d2ec3?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资攻略\",\n    \"author\": \"翁量\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱的属性\",\n    \"author\": \"金胜镐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500652-0252d7?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则：成长股投资要义\",\n    \"author\": \"吉姆・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高净值人士投资指南\",\n    \"author\": \"潘添礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510582-618a3b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们终将变富\",\n    \"author\": \"兰启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有钱人和你想的不一样\",\n    \"author\": \"哈维・艾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512172-8e2586?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"躺着赚钱的漫画基金书\",\n    \"author\": \"三折人生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513702-f21c11?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（上）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稳赚：提升理财收益的投资工具\",\n    \"author\": \"李红萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常赢投资系列（套装共5册）\",\n    \"author\": \"帕特・多尔西等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆经典投资策略\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒掉你的股票分析师（原书第2版）\",\n    \"author\": \"哈里・多马什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003948-063db9?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资至简\",\n    \"author\": \"静逸投资\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003885-267ca3?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐远的投资课\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理财就是理生活：6个受益一生的财富思维\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001803-f962c9?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"&#8216;犹&#8217;钱的思维\",\n    \"author\": \"蓝龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000435-849e35?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值\",\n    \"author\": \"张磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像有钱人一样思考\",\n    \"author\": \"本田健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996430-594e7e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资21戒\",\n    \"author\": \"本・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数定投实现财务自由\",\n    \"author\": \"姬建东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可撼动的财务自由\",\n    \"author\": \"托尼・罗宾斯/彼得・默劳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴比伦富翁新解\",\n    \"author\": \"乔治・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报背后的投资机会\",\n    \"author\": \"蒋豹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大钱细思\",\n    \"author\": \"乔尔・蒂林哈斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资从入门到精通\",\n    \"author\": \"老罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家庭财富保卫攻略\",\n    \"author\": \"王昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险自选手册\",\n    \"author\": \"许春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房可以很简单\",\n    \"author\": \"子安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的常识\",\n    \"author\": \"布拉德福德・康纳尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让时间陪你慢慢变富\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984862-b62e79?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢：有钱人和你想的不一样\",\n    \"author\": \"塞缪尔・斯迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人的逻辑\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的护城河（新版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大额保单操作实务\",\n    \"author\": \"曾祥霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049410-6a8850?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大熊市启示录（原书第4版）\",\n    \"author\": \"拉塞尔・纳皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给投资新手的极简股票课\",\n    \"author\": \"lip师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有（新版）\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该买保险\",\n    \"author\": \"刘彦斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044769-0ccba8?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人缺什么\",\n    \"author\": \"古古\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂黄金白银投资理财\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资入门与实战技巧\",\n    \"author\": \"王坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特与索罗斯的投资习惯（纪念版）\",\n    \"author\": \"马克・泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独立，从财富开始\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在苍茫中传灯\",\n    \"author\": \"姚斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步华尔街（原书第11版）\",\n    \"author\": \"伯顿G.马尔基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定投十年财务自由\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球投资\",\n    \"author\": \"林起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险，高回报\",\n    \"author\": \"皮姆・万・弗利特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041322-fd0d46?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本炒股书\",\n    \"author\": \"杨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中投资\",\n    \"author\": \"艾伦・卡尔普・波尼洛等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向格雷厄姆学思考，向巴菲特学投资\",\n    \"author\": \"劳伦斯・坎宁安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由\",\n    \"author\": \"托马斯・斯坦利/萨拉斯坦利・弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7分钟理财\",\n    \"author\": \"罗元裳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034965-f28528?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理财就是理生活\",\n    \"author\": \"艾玛・沈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034665-bb12ef?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活用理财金三角\",\n    \"author\": \"方士维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033393-0eaf41?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢变富\",\n    \"author\": \"张居营\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033147-38eae6?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画理财课\",\n    \"author\": \"八宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养（增订版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好赚钱\",\n    \"author\": \"简七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030909-335fc1?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人穷口袋，富人富脑袋\",\n    \"author\": \"曾驿翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远离迷茫，从学会赚钱开始\",\n    \"author\": \"曾鹏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You Are a Badass at Making Money\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅱ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027984-a043c5?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅲ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30岁前的每一天\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027846-1a01dd?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赚钱的逻辑\",\n    \"author\": \"钱伯鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027744-0af2ee?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效管理\",\n    \"author\": \"乔纳森・莱蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本保险指南\",\n    \"author\": \"槽叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧2\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（学习篇）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱：7步创造终身收入\",\n    \"author\": \"托尼・罗宾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019368-76a1cb?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018366-414491?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资指南\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报2\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30年后，你拿什么养活自己？\",\n    \"author\": \"高得诚/郑成镇/崔秉熙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017421-191d50?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30年后，你拿什么养活自己？2\",\n    \"author\": \"高得诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017409-fba58b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作前5年，决定你一生的财富\",\n    \"author\": \"三公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014817-68b046?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特传（纪念版）\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小花的投资魔法书\",\n    \"author\": \"小花小花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010716-f4a679?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱的爸爸教你实现财务自由\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010704-c5de17?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦教你的10堂理财课\",\n    \"author\": \"朱国凤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007884-57754e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非富不可：曹仁超给年轻人的投资忠告\",\n    \"author\": \"曹仁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱有术\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最需要的理财常识书\",\n    \"author\": \"王华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百箭穿杨\",\n    \"author\": \"小小辛巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱（套装全2册）\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸穷爸爸\",\n    \"author\": \"罗伯特.T.清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的雪球\",\n    \"author\": \"吕波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰盛人生：安利创始人理查・狄维士自传\",\n    \"author\": \"理查・狄维士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866\",\n    \"category\": \"直销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第一部：卷1-卷6）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿野仙踪全集（全14册）\",\n    \"author\": \"莱曼・弗兰克・鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031788-1a3b36?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界（套装共6册）\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018381-23efd5?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本趣味数理化书（套装共三册）\",\n    \"author\": \"韩垒/田梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尔德·达尔作品典藏（共13册）\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾徳哲学启蒙少儿书系（套装6册）\",\n    \"author\": \"乔斯坦・贾德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009585-93bc28?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子\",\n    \"author\": \"安托万・德・圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007098-6d08d6?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理日记（套装1-9册）\",\n    \"author\": \"西西弗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只猫的存在主义思考\",\n    \"author\": \"卡尔・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年纪轻轻，就有猫了\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000237-49e09f?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸猫指南\",\n    \"author\": \"六井冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040377-276a7e?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的秘密\",\n    \"author\": \"约翰・布拉德肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是猫（果麦经典）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035736-5f5e5a?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而为猫挺好的\",\n    \"author\": \"猫小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也吸收了猫能量\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类“吸猫”小史\",\n    \"author\": \"艾比盖尔・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027183-6dbd40?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日05：猫\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025503-b1233d?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪家庭医学大百科\",\n    \"author\": \"林政毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025086-d9896b?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要和你妈争辩\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的语言\",\n    \"author\": \"达娜・萨斯金德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给父母的未来之书\",\n    \"author\": \"童行学院教研团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一流的教养\",\n    \"author\": \"杰瑞米・克拉克/乔若莎・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025281-72dc34?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼老大，天使老二\",\n    \"author\": \"诸葛越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017640-9ed028?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不成熟的父母\",\n    \"author\": \"琳赛・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015978-19b735?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"P.E.T.父母效能训练\",\n    \"author\": \"托马斯・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西尔斯育儿经\",\n    \"author\": \"西尔斯夫妇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和毕加索一起淋浴\",\n    \"author\": \"克里斯蒂安・斯塔迪尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866\",\n    \"category\": \"想象力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书直解\",\n    \"author\": \"张居正整理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017934-78ec02?p=8866\",\n    \"category\": \"四书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书讲义（中华国学文库）\",\n    \"author\": \"吕留良撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012750-bf36f4?p=8866\",\n    \"category\": \"四书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史（贝克知识丛书）\",\n    \"author\": \"克劳斯・布林格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051513-17a241?p=8866\",\n    \"category\": \"罗马史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当死亡化作生命\",\n    \"author\": \"书亚・梅兹里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进化的跃升\",\n    \"author\": \"尼克・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级潜能\",\n    \"author\": \"亚当・皮奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·生命系列（套装共5册）\",\n    \"author\": \"伦道夫·M. 尼斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035862-20c392?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好告别\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡的故事\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032478-145139?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之轮\",\n    \"author\": \"伊丽莎白・库伯勒-罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无比美妙的痛苦\",\n    \"author\": \"约翰・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023421-afac0a?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生存本能正在杀死你（修订版）\",\n    \"author\": \"马克・舍恩/克里斯汀・洛贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的法则\",\n    \"author\": \"肖恩·B·卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光倒流的女孩\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021435-850156?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的未来\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020727-193b46?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接组：造就独一无二的你\",\n    \"author\": \"承现峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命：进化生物学、遗传学、人类学和环境科学的黎明\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Tuesdays with Morrie\",\n    \"author\": \"Mitch Albom\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012087-f9ff16?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠、虱子和历史\",\n    \"author\": \"汉斯・辛瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866\",\n    \"category\": \"生物学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的遗传学\",\n    \"author\": \"伯顿・格特曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866\",\n    \"category\": \"生物学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么需要生物学思维\",\n    \"author\": \"塞缪尔・阿贝斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866\",\n    \"category\": \"生物学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒星球\",\n    \"author\": \"卡尔・齐默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866\",\n    \"category\": \"生物学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"埃博拉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维与陷阱\",\n    \"author\": \"史蒂夫・卡斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866\",\n    \"category\": \"安全\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处可藏\",\n    \"author\": \"格伦・格林沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866\",\n    \"category\": \"安全\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Web安全之深度学习实战\",\n    \"author\": \"刘焱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027117-20aa4a?p=8866\",\n    \"category\": \"安全\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么需要生物学思维\",\n    \"author\": \"塞缪尔・阿贝斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866\",\n    \"category\": \"复杂性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经密码大全集（套装共5册）\",\n    \"author\": \"阿菩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006714-464296?p=8866\",\n    \"category\": \"远古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青铜时代：五百年的大局观（套装共5册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866\",\n    \"category\": \"远古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智商税\",\n    \"author\": \"高德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513330-2251ee?p=8866\",\n    \"category\": \"智商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑开发指南（全3册）\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008388-ce451a?p=8866\",\n    \"category\": \"智商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新序（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866\",\n    \"category\": \"古文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样学习文言文\",\n    \"author\": \"张中行著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866\",\n    \"category\": \"古文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"念楼学短\",\n    \"author\": \"锺叔河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866\",\n    \"category\": \"古文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年文言\",\n    \"author\": \"陳永正/徐晉如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027861-286c94?p=8866\",\n    \"category\": \"古文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透信贷\",\n    \"author\": \"何华平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866\",\n    \"category\": \"信贷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信贷的逻辑与常识\",\n    \"author\": \"刘元庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866\",\n    \"category\": \"信贷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室困游鱼\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032955-deb293?p=8866\",\n    \"category\": \"电竞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜汁炖鱿鱼\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032229-530e18?p=8866\",\n    \"category\": \"电竞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞生态\",\n    \"author\": \"王萌/路江涌/李晓峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866\",\n    \"category\": \"电竞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞经济\",\n    \"author\": \"蔡湫雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029121-564941?p=8866\",\n    \"category\": \"电竞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗斯玛丽：肯尼迪家族隐藏的女儿\",\n    \"author\": \"凯特・克里福・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024627-9a0631?p=8866\",\n    \"category\": \"肯尼迪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：个人、组织如何与风险共舞\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期主义\",\n    \"author\": \"高德威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福格行为模型\",\n    \"author\": \"B.J.福格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499539-38be34?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样行动\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的组织都是圆的\",\n    \"author\": \"戴维・珀金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500100-7e145d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔科姆·格拉德威尔系列（套装共6册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间管理\",\n    \"author\": \"吉姆・兰德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500340-640c65?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样解决问题\",\n    \"author\": \"伯纳德・加雷特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500307-6d78d2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力：全新升级版\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿智者的法则\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪声：人类判断的缺陷\",\n    \"author\": \"丹尼尔・卡尼曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊编年史\",\n    \"author\": \"宁向东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯致股东的信\",\n    \"author\": \"史蒂夫・安德森/卡伦・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502302-565477?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是你啊\",\n    \"author\": \"皮埃尔・佩利西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理敏感\",\n    \"author\": \"全弘镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508092-cbb0a1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为战略财务讲义\",\n    \"author\": \"何绍茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509100-205637?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509649-bb9c5c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光环效应\",\n    \"author\": \"罗森维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509661-105edd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高级零工\",\n    \"author\": \"村上敦伺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509853-10fa45?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡&#038;波士顿解决问题方法和创造价值技巧\",\n    \"author\": \"名和高司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509916-d4a822?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来3\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森（\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁军团队\",\n    \"author\": \"欧德张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510093-23e3eb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打胜仗系列三部曲\",\n    \"author\": \"布赖斯・霍夫曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510114-f256af?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大头侃人：任正非\",\n    \"author\": \"于立坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬核晋升\",\n    \"author\": \"朱莉・卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极度成功\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510375-05242f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里人的答案书\",\n    \"author\": \"阿里巴巴组织文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510804-a5e3a8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1打造个人品牌\",\n    \"author\": \"王一九\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惰性\",\n    \"author\": \"加布里埃尔・厄廷根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511077-b1ee53?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能学习的未来\",\n    \"author\": \"罗斯玛丽・卢金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511113-9bb24f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本质：贝佐斯的商业逻辑与领导力法则\",\n    \"author\": \"海伦娜・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511119-ae55f7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共创对话\",\n    \"author\": \"林小桢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511161-a37ad3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售经理的22条军规\",\n    \"author\": \"仲崇玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511158-7a7bd5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗理性：如何掌控情绪\",\n    \"author\": \"卫蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511197-369a4f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海星式组织\",\n    \"author\": \"奥瑞・布莱福曼/罗德・贝克斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学危机管理课\",\n    \"author\": \"伦纳德・马库斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511461-c57e66?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快速成交\",\n    \"author\": \"俞赛前\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511488-43d314?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本企业家精选（全5册）\",\n    \"author\": \"一条和生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511533-b724b2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"畅所欲言\",\n    \"author\": \"道格・克兰德尔/马特・金卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511779-c8282c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商2\",\n    \"author\": \"保罗·G.史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511989-b7bf29?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最简单的图形与最复杂的信息\",\n    \"author\": \"黄慧敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512553-185e6e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售冠军是如何炼成的\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512427-0c8976?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识炼金术\",\n    \"author\": \"邱昭良/王谋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512442-a712f3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：一本故事丰富的决策行为指南\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力变现\",\n    \"author\": \"徐悦佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的老板\",\n    \"author\": \"罗伯特・赫罗马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513645-5a5886?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的管理优势\",\n    \"author\": \"伊查克・爱迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004686-da59f3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰田传\",\n    \"author\": \"野地秩嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004668-341a2c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工匠哲学\",\n    \"author\": \"马修・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004671-7199ef?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从偶然到必然\",\n    \"author\": \"夏忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"得粉丝者得天下\",\n    \"author\": \"佐伊・弗拉德・布拉纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004536-baa43e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产品思维\",\n    \"author\": \"张印帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004566-20c559?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不拘一格\",\n    \"author\": \"里德・哈斯廷斯/艾琳・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富管理与传承\",\n    \"author\": \"云大慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004485-01b160?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"责任病毒\",\n    \"author\": \"罗杰・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转机\",\n    \"author\": \"萨拉・罗布・奥黑根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗辑思维（全5册）\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004005-539071?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熵减：华为活力之源\",\n    \"author\": \"华为大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003804-77cb09?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革的力量\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001737-a8b420?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聚焦\",\n    \"author\": \"布兰登・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001644-216a13?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡公众表达课\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡高效工作法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波斯公主选驸马\",\n    \"author\": \"帕维尔・莫托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闭环思维\",\n    \"author\": \"智俊启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致零售\",\n    \"author\": \"杜凤林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对坦率\",\n    \"author\": \"金・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华方法\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革性创新\",\n    \"author\": \"加里・皮萨诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR使用手册\",\n    \"author\": \"姚琼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999514-59c758?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动教练\",\n    \"author\": \"季益祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999400-98dabd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判2\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的互联网思维\",\n    \"author\": \"伯纳多・A. 胡伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越寒冬\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998776-90be10?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键的少数\",\n    \"author\": \"乔恩・卡岑巴赫/詹姆斯・托马斯/格雷琴・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997447-983a7c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智转向\",\n    \"author\": \"奥马尔・阿布什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬功夫：助你精进的八大硬核技能\",\n    \"author\": \"崔诚靓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾仕强品三国（套装共3册）\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995533-1624d0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业之巅\",\n    \"author\": \"周导\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995260-2128f8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞轮效应\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何达成目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994909-cbcb48?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业实战三部曲\",\n    \"author\": \"唐纳德・米勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创模式\",\n    \"author\": \"段传敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994075-3700fb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响商业的50本书\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的旅程\",\n    \"author\": \"罗伯特・艾格/乔尔・洛弗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的实践\",\n    \"author\": \"野中郁次郎/西原文乃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何启动黄金圈思维\",\n    \"author\": \"西蒙・斯涅克/戴维・米德/彼得・多克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992221-a4d256?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的方法论\",\n    \"author\": \"野中郁次郎/绀野登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991945-e87f6d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识创造管理\",\n    \"author\": \"野中郁次郎/绀野登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991759-1130f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外卖超级运营术\",\n    \"author\": \"饿了么\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的行动\",\n    \"author\": \"乔舒亚・甘斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只管去做\",\n    \"author\": \"邹小强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991549-e07ddd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新品牌\",\n    \"author\": \"高端训\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"允许被说服\",\n    \"author\": \"艾尔・比坦帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做出明智判断的10个方法\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲切的艺术\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扛住就是本事\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样沟通最高效\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯的数字帝国\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌的故事\",\n    \"author\": \"戴维・怀斯/马克・摩西德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课3\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七次转型\",\n    \"author\": \"罗伯特 A. 伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"团队赋能\",\n    \"author\": \"迈克・布伦特/菲奥娜・爱尔莎・丹特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢的答案（尊享版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超级领导力\",\n    \"author\": \"金·R·鲍威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考法\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间管理手账\",\n    \"author\": \"徐铁/邱晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986992-73fa61?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的处方\",\n    \"author\": \"伊齐基尔・伊曼纽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实践智慧\",\n    \"author\": \"野中郁次郎/荻野进介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第四次管理革命\",\n    \"author\": \"曹仰锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986344-ff3bf6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是动机控\",\n    \"author\": \"池田贵将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是方法控\",\n    \"author\": \"金武贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诚实的信号\",\n    \"author\": \"阿莱克斯・彭特兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院时间管理课（修订版）\",\n    \"author\": \"穆然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985804-d73c79?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让财报说话\",\n    \"author\": \"郑永强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧②\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2019年中国资产管理行业发展报告\",\n    \"author\": \"巴曙松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985717-d8ba83?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为没有秘密2\",\n    \"author\": \"吴春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985315-80c146?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人力资源管理从新手到总监（全2册）\",\n    \"author\": \"李志勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985228-e6aa30?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧①\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力清单\",\n    \"author\": \"吉恩・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（30周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效管理自己（升级版）\",\n    \"author\": \"杜耿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984787-7968f7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力（经典套装三册）\",\n    \"author\": \"凯利・麦格尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为超级创业英雄\",\n    \"author\": \"提姆・德瑞普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984295-7fd163?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式4.0\",\n    \"author\": \"梁宇亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向诸葛亮借智慧\",\n    \"author\": \"赵玉平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983920-387cfd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异议的力量\",\n    \"author\": \"查兰・奈米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给别人留下好印象\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向上管理\",\n    \"author\": \"蒋巍巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983296-d41f93?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先发制人\",\n    \"author\": \"布伦特・格里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983161-cd7422?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职业通道\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀到不能被忽视\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何系统思考\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日之计\",\n    \"author\": \"本杰明・斯帕/迈克尔・赞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：如何打造高联动团队\",\n    \"author\": \"马克・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：数字化时代组织效率的本质\",\n    \"author\": \"陈春花/朱丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053076-87dade?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢在上班时\",\n    \"author\": \"高城幸司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无印良品笔记术\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052794-d169d9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重构\",\n    \"author\": \"村西边老王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"组织革新\",\n    \"author\": \"杨国安/戴维・尤里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卓越工作\",\n    \"author\": \"莫滕·T·汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"执行力：10项驱动法则\",\n    \"author\": \"章俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052290-876230?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理如何改变商业模式\",\n    \"author\": \"卡拉・欧戴尔/辛迪・休伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让顾客都成为回头客\",\n    \"author\": \"安部修仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力精进\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样管精力，就怎样过一生\",\n    \"author\": \"奥迪尔・夏布里亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的艺术（套装五册）\",\n    \"author\": \"马歇尔・戈德史密斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051558-d5c231?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早起的奇迹\",\n    \"author\": \"哈尔・埃尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051405-4773be?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化自我\",\n    \"author\": \"吉娜・聂夫/唐恩・娜芙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益转型\",\n    \"author\": \"约翰・涂尚徳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051252-2f48cb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡决断力\",\n    \"author\": \"石井辉美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个人可持续发展精要\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051120-d9b6a3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡入职培训第一课\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为管理哲学\",\n    \"author\": \"蒋朝安/杜俊鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050910-d72194?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精力管理手册\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050901-31d610?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效资产管理（典藏版）\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法（口袋版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力48法则\",\n    \"author\": \"罗伯特・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理是个技术活\",\n    \"author\": \"芭芭拉・米切尔/科妮莉亚・甘伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘+（第3版）\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔是海：张瑞敏随笔选录\",\n    \"author\": \"张瑞敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判技巧：菜鸟谈判进阶的八大要领\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质（珍藏版）\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑\",\n    \"author\": \"张羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导就是让人追随\",\n    \"author\": \"约翰・科特/霍尔格・拉斯格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"端到端流程\",\n    \"author\": \"迈克尔・哈默/丽莎・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048249-905292?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商领导力\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047655-a6a7d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英高效阅读法\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身创造力\",\n    \"author\": \"斯科特・科克伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过程决定成败\",\n    \"author\": \"乔尔・布罗克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046644-6b9c12?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密腾讯帝国（全6册）\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫的人生哲学\",\n    \"author\": \"北康利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不疲惫的精力管理术\",\n    \"author\": \"葛西纪明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046434-95610f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良性增长\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电式扩张\",\n    \"author\": \"里德 · 霍夫曼/叶嘉新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毫无保留\",\n    \"author\": \"小比尔・马里奥特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045708-dae6d9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售畅销秘籍\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045615-2e3e93?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保持饥渴\",\n    \"author\": \"Thinkers50\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30天精读MBA（套装共3册）\",\n    \"author\": \"科林・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思考\",\n    \"author\": \"迈克・费廖洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轻战略：量子时代的敏捷决策\",\n    \"author\": \"许正\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇才\",\n    \"author\": \"梅利莎・席林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结拖延症的49种方法\",\n    \"author\": \"海韵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略几何学\",\n    \"author\": \"罗伯特・凯德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能战略\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾仕强中国式管理全集（套装书全23册）\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045264-71c053?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞行为学（全5册）\",\n    \"author\": \"丹・艾瑞里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045105-dcaec5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精彩人生的一分钟小习惯\",\n    \"author\": \"冲幸子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健经营哲学系列（套装共3册）\",\n    \"author\": \"张小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傻世界，笨生意\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044727-92ea3a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容之王\",\n    \"author\": \"迈克尔・巴斯卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044808-3d7309?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效领导力\",\n    \"author\": \"布伦达・本斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044523-e9c7cf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效忍者\",\n    \"author\": \"格雷厄姆・阿尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从雇佣到自由人\",\n    \"author\": \"吕廷杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破之道\",\n    \"author\": \"基思 R. 麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法\",\n    \"author\": \"弗朗西斯科・西里洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复合型领导力\",\n    \"author\": \"埃里克・道格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042846-a27c11?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突管理\",\n    \"author\": \"大卫・里德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的逻辑思维\",\n    \"author\": \"高杉尚伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的思考武器\",\n    \"author\": \"安宅和人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边界\",\n    \"author\": \"吉莲・邰蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略推演\",\n    \"author\": \"王昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042372-78310a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡图表工作法\",\n    \"author\": \"齐藤显一/竹内里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：天才创造世界\",\n    \"author\": \"水木然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041298-4d7a2c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造时间\",\n    \"author\": \"杰克・纳普/约翰・泽拉茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新定位\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔原理2\",\n    \"author\": \"芭芭拉・明托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040257-8090ee?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破现实的困境\",\n    \"author\": \"克里斯・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售铁军\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西贝的服务员为什么总爱笑\",\n    \"author\": \"贾林男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The 5 AM Club\",\n    \"author\": \"Robin Sharma\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039192-ead248?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在耶鲁精进\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039087-2cce2c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂管理上\",\n    \"author\": \"冯为中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039018-f17707?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王道的经营（套装共6册）\",\n    \"author\": \"施振荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意会时刻\",\n    \"author\": \"克里斯琴・马兹比尔格/米凯尔・拉斯马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的国度\",\n    \"author\": \"詹姆斯・布雷丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从颠覆到创新\",\n    \"author\": \"长江商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何结交比你更优秀的人\",\n    \"author\": \"康妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败课\",\n    \"author\": \"周磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A4纸上看人生\",\n    \"author\": \"刘建梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌22律\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为管理变革\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036516-884b3b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的方法\",\n    \"author\": \"泰勒・本-沙哈尔/安格斯・里奇韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035478-d1cadf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售圣经\",\n    \"author\": \"杰弗里・吉特黙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Everything Is F*cked\",\n    \"author\": \"Mark Manson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论大战略\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声誉为王\",\n    \"author\": \"马丁・纽曼/克里斯・福克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034992-7b36f4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场第一课（套装共5册）\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周工作4小时（修订版）\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰度决策\",\n    \"author\": \"小约瑟夫・巴达拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控习惯\",\n    \"author\": \"詹姆斯・克利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑减压的子弹笔记术\",\n    \"author\": \"电脑玩物站长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（25周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034338-0f9f3b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的第八个习惯\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米巴经营\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034248-76ecaf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌方法\",\n    \"author\": \"比尔・基尔迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转变：应对复杂新世界的思维方式\",\n    \"author\": \"弗雷德蒙德・马利克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何创建天才团队\",\n    \"author\": \"里奇・卡尔加德/迈克尔・马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为方法论\",\n    \"author\": \"周锡冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033705-5ef0ea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的任务\",\n    \"author\": \"克莱顿・克里斯坦森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的路径\",\n    \"author\": \"斯蒂芬・温克尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间看得见\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033381-62fcdf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义系列（共四册）\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出版人\",\n    \"author\": \"艾伦・布里克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12个工作的基本\",\n    \"author\": \"大久保幸夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计大师的商业课\",\n    \"author\": \"戴维・舍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生存\",\n    \"author\": \"李凯旋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032421-4c536f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新规则\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的人都是提问高手\",\n    \"author\": \"樱井弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032184-64c791?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进2：解锁万物的心智进化法\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级符号原理\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031524-1a7a6c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绩效使能：超越OKR\",\n    \"author\": \"况阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·实践篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031224-5ab3aa?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力陷阱\",\n    \"author\": \"埃米尼亚・伊贝拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售的本质\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·变革篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030801-7b000d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·心灵篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030789-52e5c2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横向领导力\",\n    \"author\": \"罗杰・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力思维\",\n    \"author\": \"珍妮弗・加维・伯格/基斯・约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷蓝图\",\n    \"author\": \"雅各・范德库伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远离迷茫，从学会赚钱开始\",\n    \"author\": \"曾鹏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线：跨越“S型曲线”的二次增长\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天最重要的2小时\",\n    \"author\": \"乔西・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：企业数字化生存指南\",\n    \"author\": \"尤尔根・梅菲特/沙莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非传\",\n    \"author\": \"孙力科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中层领导力（共三册）\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不懂员工激励，如何做管理\",\n    \"author\": \"肖祥银\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030405-968764?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理\",\n    \"author\": \"尼克・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030318-1dd6c3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企业生命周期\",\n    \"author\": \"伊查克・爱迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼（套装共5册）\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030288-17bf8f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米哲学\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030237-138f5e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维精进\",\n    \"author\": \"赵帅/王姗姗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030216-90e1ab?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商管理者的6个习惯\",\n    \"author\": \"斯蒂芬E.科恩/文森特D.奥康奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030129-4ea76b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒：如何用价值观创造价值\",\n    \"author\": \"弗雷德・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Trillion Dollar Coach\",\n    \"author\": \"Eric Schmidt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029766-d3bd25?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使命必达：百分之百实现目标的行为科学管理法\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长\",\n    \"author\": \"亚力山德拉・卡弗拉科斯/凯瑟琳・明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜出：非掠夺社交智慧与共享式领导力\",\n    \"author\": \"琳达・科汗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029514-754530?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢创之旅：科勒百年传奇\",\n    \"author\": \"《敢创之旅》编写组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029376-1a0ae7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本质\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029286-80bcf0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从困境走向成功\",\n    \"author\": \"Pepe Nummi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029271-694df0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You are a Badass\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你只是看起来很专注\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非商业的逻辑\",\n    \"author\": \"申辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029109-348519?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑优势（第二版）\",\n    \"author\": \"奈德・赫曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大思维：集体智慧如何改变我们的世界\",\n    \"author\": \"周若刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029070-010cf1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何管好自己（第五版）\",\n    \"author\": \"约翰・康特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向创新\",\n    \"author\": \"亚当・摩根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028677-7e2d5f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全数字化赋能\",\n    \"author\": \"迈克尔・韦德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028410-d6d08c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来，相信而看见\",\n    \"author\": \"星野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028395-7e1c0c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激情创业\",\n    \"author\": \"于刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是OKR\",\n    \"author\": \"约翰・杜尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028263-0178b7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密无印良品\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028110-182231?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极度效率\",\n    \"author\": \"阿米特・奥菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028083-8ae1ff?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性创新\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027912-c374f8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界精英的带人术\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027900-f1558d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅲ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里铁军销售课\",\n    \"author\": \"李立恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效管理\",\n    \"author\": \"乔纳森・莱蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米巴核能\",\n    \"author\": \"胡八一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027267-f8932f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让好脾气害了你\",\n    \"author\": \"周维丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027069-8b1e00?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆境成长：坚韧人格养成手册\",\n    \"author\": \"小乔治·S.埃弗利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健\",\n    \"author\": \"先燕云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026892-ff2ed7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左脑思考，右脑执行\",\n    \"author\": \"罗森维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026472-343411?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全面预算管理\",\n    \"author\": \"温兆文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026223-5a4fd2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈层效应\",\n    \"author\": \"托马斯・科洛波洛斯/丹・克尔德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025653-5dccf9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见\",\n    \"author\": \"赵昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025662-874d05?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销实战手册\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触点管理\",\n    \"author\": \"安妮·M·许勒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025596-850ca8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何把产品打造成有生命的品牌\",\n    \"author\": \"叶明桂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从极简到极致\",\n    \"author\": \"赵晓璃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025524-050d17?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"供应链管理\",\n    \"author\": \"刘宝红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024912-2e274f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革的基因\",\n    \"author\": \"杨国安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024687-a63a0b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做自己人生的CEO\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常青：如何持久吸引客户\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走红：如何打造个人品牌\",\n    \"author\": \"杰瑞米・戈德曼/阿里・扎格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义团队\",\n    \"author\": \"拉斯洛・博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义公司\",\n    \"author\": \"埃里克・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅沟通力系列合集\",\n    \"author\": \"马丁・曼瑟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024171-e3e647?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑工作法\",\n    \"author\": \"西村克己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我每天只工作3小时\",\n    \"author\": \"押井守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024051-5c3359?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要事第一\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024057-5976ea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈飞文化手册\",\n    \"author\": \"帕蒂・麦考德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛决策课\",\n    \"author\": \"迈克尔・罗伯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024012-dc6cf8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底特律往事\",\n    \"author\": \"比尔・弗拉斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的秘密\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识商业\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级激励者\",\n    \"author\": \"西蒙・斯涅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感召力\",\n    \"author\": \"西蒙・兰卡斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢（纪念版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌创业帮\",\n    \"author\": \"王丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新法则：名企破局秘笈\",\n    \"author\": \"理查德・科克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生存本能正在杀死你（修订版）\",\n    \"author\": \"马克・舍恩/克里斯汀・洛贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七堂思维成长课\",\n    \"author\": \"卡罗琳・韦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022566-3c90d6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是时间控\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择的悖论\",\n    \"author\": \"巴里・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：从思维到行动\",\n    \"author\": \"刘学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为有效学习的高手\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：7个改变个人、团队和组织的教练技巧\",\n    \"author\": \"迈克尔・K.辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：平台型组织的进化路线图\",\n    \"author\": \"穆胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让问题到你为止\",\n    \"author\": \"博恩・崔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效PDCA工作术\",\n    \"author\": \"富田和成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021882-8ccafc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控：开启不疲惫、不焦虑的人生\",\n    \"author\": \"张展晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021903-0cf2b0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"延展：释放有限资源的无限潜能\",\n    \"author\": \"斯科特・索南沙因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒思考：像麦肯锡精英一样思考\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021822-d42b59?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六顶思考帽：如何简单而高效的思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时机管理：完美时机的隐秘模式\",\n    \"author\": \"丹尼尔・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见未来商业（套装共4册）\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命向前\",\n    \"author\": \"迈克尔・海厄特/丹尼尔・哈卡维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉你的商业计划书\",\n    \"author\": \"卡尔·J. 施拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百岁人生：长寿时代的生活和工作\",\n    \"author\": \"琳达・格拉顿/安德鲁・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021330-9ce0b1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒工作\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脆弱的力量\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021078-290a71?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"MBA十日读（第四版）\",\n    \"author\": \"史蒂文・西尔比格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间管理法（套装共3册）\",\n    \"author\": \"爱德华・德博诺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020913-a4f1b5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成长到死\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020892-1a7715?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴与四十大道\",\n    \"author\": \"赵先超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020613-0c1a46?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗压力：逆境重生法则\",\n    \"author\": \"久世浩司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020541-463985?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度案例思考法\",\n    \"author\": \"井上达彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020535-71effc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效整理信息\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来时间使用手册\",\n    \"author\": \"松冈真宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020493-4cfaea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度模仿\",\n    \"author\": \"井上达彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020490-8e6c68?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来2：更为简单高效的远程工作方式\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力\",\n    \"author\": \"野口真人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的时代\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020283-d423d5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接：顾客价值时代的营销战略\",\n    \"author\": \"施炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020277-549efc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对自控\",\n    \"author\": \"瑞安・霍利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020094-358288?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让数字说话：审计，就这么简单\",\n    \"author\": \"孙含晖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全神贯注的方法\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搞定（全三册）\",\n    \"author\": \"戴维・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020034-d97493?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑说服力\",\n    \"author\": \"陈浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020013-f61abe?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影子银行内幕：下一个次贷危机的源头（修订版）\",\n    \"author\": \"张化桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不存在的人\",\n    \"author\": \"阿尼尔・阿南塔斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019830-4d406a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞察：精确观察和有效沟通的艺术\",\n    \"author\": \"艾米・赫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲罢不能：刷屏时代如何摆脱行为上瘾\",\n    \"author\": \"亚当・阿尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡思维\",\n    \"author\": \"洛威茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智力：商业奇迹的底层思维\",\n    \"author\": \"李中莹/舒瀚霆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019779-447881?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子弹笔记术\",\n    \"author\": \"杉野干人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019761-864774?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当机立断\",\n    \"author\": \"出口治明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业维艰\",\n    \"author\": \"本・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉：我们为什么无从推理，却能决策\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠创业家\",\n    \"author\": \"金伯莉・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流量池\",\n    \"author\": \"杨飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇特的一生\",\n    \"author\": \"格拉宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019428-6d23f0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史\",\n    \"author\": \"杨旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平均的终结\",\n    \"author\": \"托德・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019251-a6dba1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大象飞\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女神进化论\",\n    \"author\": \"寺主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019086-4cbd0e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辣道至简：老干妈陶华碧的经营智慧\",\n    \"author\": \"李琦晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019074-0c0d6b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞氏企业：设计未来组织新模式\",\n    \"author\": \"里卡多・塞姆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019056-a8bb99?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键20小时，快速学会任何技能！\",\n    \"author\": \"乔希・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018735-508fa6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个学习忍者\",\n    \"author\": \"格雷厄姆・奥尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018495-810956?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Under New Management\",\n    \"author\": \"David Burkus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018441-015a18?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至关重要的关系\",\n    \"author\": \"里德・霍夫曼/本・卡斯诺瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018369-4bb227?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理韧性的力量\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018291-0b8a09?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为数据分析师\",\n    \"author\": \"托马斯・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018255-12f5c6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴正传\",\n    \"author\": \"方兴东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台革命：改变世界的商业模式\",\n    \"author\": \"杰奥夫雷 G. 帕克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨缪尔森经济学精选套装（第19版共4册）\",\n    \"author\": \"保罗・萨缪尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018045-002052?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个天才团队的故事\",\n    \"author\": \"沃伦・本尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以客户为中心\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值为纲：华为公司财经管理纲要\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017811-05f4eb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业36条军规\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把时间当作朋友（第3版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功，动机与目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠青年\",\n    \"author\": \"Susan Kuang\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017703-338a87?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生定位：特劳特教你营销自己\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效学习\",\n    \"author\": \"乌尔里希・伯泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"DISCOVER自我探索（全彩）\",\n    \"author\": \"李海峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017607-237846?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赋能：打造应对不确定性的敏捷团队\",\n    \"author\": \"斯坦利・麦克里斯特尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017535-3f09e7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗火\",\n    \"author\": \"史蒂芬・科特勒/杰米・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017394-61ea85?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：如何低成本实现爆发式成长\",\n    \"author\": \"Sean Ellis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Principles\",\n    \"author\": \"Ray Dalio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017202-d00a86?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力大师（原书第2版）\",\n    \"author\": \"约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017205-c1655c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的领导力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017184-25e82f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形冠军：未来全球化的先锋\",\n    \"author\": \"赫尔曼・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017103-ceb233?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2小时品牌素养\",\n    \"author\": \"邓德隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质\",\n    \"author\": \"杰克・韦尔奇/苏西・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017043-68bb69?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决断力\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HR转型突破\",\n    \"author\": \"康志军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016836-d313c3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李善友颠覆式创新思维系列（共4册）\",\n    \"author\": \"李善友/龚焱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016941-a33728?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从行动开始\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016650-20e429?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一年的8760小时\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐巾纸系列套装（套装共2本）\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016506-d2e8ae?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR工作法\",\n    \"author\": \"克里斯蒂娜・沃特克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR：源于英特尔和谷歌的目标管理利器\",\n    \"author\": \"保罗・尼文/本・拉莫尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"松下幸之助三书（套装共3本）\",\n    \"author\": \"松下幸之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016254-1869c5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你凭什么做好互联网\",\n    \"author\": \"曹政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Fintech：全球金融科技权威指南\",\n    \"author\": \"苏珊娜・奇斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖故事：实践版\",\n    \"author\": \"高朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑组织\",\n    \"author\": \"弗雷德里克・莱卢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016041-672fb1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容经济\",\n    \"author\": \"谢利明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天学点时间整理术\",\n    \"author\": \"特瑞博・伍兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015936-2a3d9f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015783-caef80?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策的智慧\",\n    \"author\": \"大卫・亨德森/查尔斯・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的工作方法\",\n    \"author\": \"中村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是Excel控\",\n    \"author\": \"熊野整\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015744-ec5cf7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效15法则\",\n    \"author\": \"凯文・克鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015645-a8ae79?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单核工作法图解\",\n    \"author\": \"史蒂夫・诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015606-53a35f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经营战略全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参谋助手论\",\n    \"author\": \"王怀志/郭政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015459-a2ef41?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"靠谱\",\n    \"author\": \"大石哲之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键对话\",\n    \"author\": \"凯瑞・派特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015342-e01712?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键冲突\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015339-b03473?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键责任\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势红利\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所以，一切都是童年的错吗？\",\n    \"author\": \"KnowYourself主创们\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015294-aa1568?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激活个体\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简工作Ⅰ\",\n    \"author\": \"约根・库尔兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015267-2b86bb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简工作Ⅱ\",\n    \"author\": \"约根・库尔兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015210-742ca7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简化\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与判断\",\n    \"author\": \"斯科特・普劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水煮三国（十周年纪念版）\",\n    \"author\": \"成君忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015078-1ffe74?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请给我结果\",\n    \"author\": \"姜汝祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015060-25a31d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的常识\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015057-903f80?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回头客战略\",\n    \"author\": \"谢家华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HR+三支柱\",\n    \"author\": \"彭剑锋/马海刚/西楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014970-7e75ae?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好工作，好好生活\",\n    \"author\": \"克里斯汀・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为没有秘密\",\n    \"author\": \"吴春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长\",\n    \"author\": \"卡罗尔・德韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014808-fa0a34?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好学习\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014799-edd4b9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第七感\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆品战略\",\n    \"author\": \"金错刀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公司的概念（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014736-217047?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威科夫操盘法\",\n    \"author\": \"孟洪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孵化皮克斯\",\n    \"author\": \"劳伦斯・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光2.0\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让猴子跳回背上\",\n    \"author\": \"威廉・安肯三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014490-3430ef?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让无效努力毁了你\",\n    \"author\": \"克里斯・贝利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014442-332e82?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业就是要细分垄断\",\n    \"author\": \"李开复/汪华/傅盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样卖龙虾\",\n    \"author\": \"比尔・毕晓普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众创新\",\n    \"author\": \"埃里克・冯・希佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑匣子思维：我们如何更理性地犯错\",\n    \"author\": \"马修・萨伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014211-1c5f9b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意练习：如何从新手到大师\",\n    \"author\": \"安德斯・艾利克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆势销售：UGG创始人自述\",\n    \"author\": \"布莱恩・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健管理法\",\n    \"author\": \"张小军/马玥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013983-1e34a0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大道当然\",\n    \"author\": \"王石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“错误”的行为\",\n    \"author\": \"理查德・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013920-5d454d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗时间\",\n    \"author\": \"刘未鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别再用勤奋掩饰你的懒惰\",\n    \"author\": \"阿何\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11枚戒指禅：师菲尔·杰克逊自传\",\n    \"author\": \"菲尔・杰克逊/休・迪里汉提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013530-adcbea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结网@改变世界的互联网产品经理（修订版）\",\n    \"author\": \"王坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪潮之巅\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"系统之美\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跃迁：成为高手的技术\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013161-eaef0d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11.11如何卖到一个亿\",\n    \"author\": \"陈炉均/陈威/马国良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AsK.反直觉询问\",\n    \"author\": \"莱恩・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"U型理论（全新升级版）\",\n    \"author\": \"奥托・夏莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013143-40fa8b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追时间的人\",\n    \"author\": \"阳志平等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013005-f92fca?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数型组织\",\n    \"author\": \"萨利姆・伊斯梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CEO说：像企业家一样思考\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012924-0396bc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国式管理行为\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012855-72e7bc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微习惯\",\n    \"author\": \"斯蒂芬・盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度工作\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012528-0a8a94?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的组织：企业持续成长的智慧\",\n    \"author\": \"章永宏/罗旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012483-15e595?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福商业决策课\",\n    \"author\": \"卡尔・斯佩茨勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的基因\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为工作法\",\n    \"author\": \"黄继伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012357-a75698?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜利的法则\",\n    \"author\": \"铃木博毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁说你不能坚持\",\n    \"author\": \"程龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可口可乐传\",\n    \"author\": \"马克・彭德格拉斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌洗脑（珍藏版）\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售时代三部曲（套装共三册）\",\n    \"author\": \"杰弗里・米勒/大卫・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自制力\",\n    \"author\": \"高原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是思维\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011256-cc5193?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿景领导者\",\n    \"author\": \"迪帕克・乔普拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011211-07999a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克要买大杯咖啡\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克遇见德鲁克\",\n    \"author\": \"李麦可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011139-8f0e63?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人用方格笔记本\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010908-f51638?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的先知\",\n    \"author\": \"托马斯・麦克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010812-0d5497?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的灵魂\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・职场那些事（全10册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010470-365bbf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・像管理者一样思考（全15册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帮你省时间！替你划重点！教你学管理！\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系力\",\n    \"author\": \"蒂姆・邓普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维力：高效的系统思维\",\n    \"author\": \"王世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·道森优势谈判系列\",\n    \"author\": \"罗杰・道森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾听全球的声音（全10册）\",\n    \"author\": \"经济学人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010230-dfe349?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的本能：类比思维的力量\",\n    \"author\": \"约翰・波拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维独孤九剑\",\n    \"author\": \"赵大伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾\",\n    \"author\": \"尼尔・埃亚尔/瑞安・胡佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级IP：互联网新物种方法论\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛点：挖掘小数据满足用户需求\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意学习\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"象与骑象人：幸福的假设\",\n    \"author\": \"乔纳森・海特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009654-67ea14?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告+我的广告生涯\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱不能买什么\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009447-bec7f0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最重要的事，只有一件\",\n    \"author\": \"加里・凯勒/杰伊・帕帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十亿美金的教训\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力：为什么只为某些人所拥有（经典版）\",\n    \"author\": \"杰弗瑞・菲佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精力管理\",\n    \"author\": \"吉姆・洛尔/托尼・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009036-6c36ba?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计冲刺\",\n    \"author\": \"杰克・纳普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢决策：如何在极速时代掌握慢思考的力量\",\n    \"author\": \"弗兰克・帕特诺伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008970-5275d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力法则：用一年时间积累一生财富（套装共3册）\",\n    \"author\": \"拿破仑・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米生态链战地笔记\",\n    \"author\": \"小米生态链谷仓学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗伯特议事规则\",\n    \"author\": \"袁天鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008811-e8cf3b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精要主义\",\n    \"author\": \"格雷戈・麦吉沃恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008661-c552a6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董事会里的战争\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂到位\",\n    \"author\": \"亚当・施特尔茨/威廉・帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好战略，坏战略\",\n    \"author\": \"理查德・鲁梅尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆点：如何制造流行\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构思考力\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来：更为简单有效的商业思维\",\n    \"author\": \"贾森・弗里德/大卫・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定位\",\n    \"author\": \"杰克・特劳特/阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英的48个工作习惯\",\n    \"author\": \"户塚隆将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007767-d82cd1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·柯林斯成就卓越系列（套装共4册）\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是清单控\",\n    \"author\": \"宝拉・里佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007710-be0e00?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话：新鲜有趣的话术精进技巧\",\n    \"author\": \"马东/马薇薇/黄执中等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳问：柳传志的管理三要素\",\n    \"author\": \"张涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007566-7946b7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导梯队（原书第2版）\",\n    \"author\": \"拉姆・查兰/斯蒂芬・德罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴晓波细说商业史（套装共5册）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007437-79d20a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里传：这是阿里巴巴的世界\",\n    \"author\": \"波特・埃里斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产狂人许家印\",\n    \"author\": \"魏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底捞你学不会\",\n    \"author\": \"黄铁鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡工具\",\n    \"author\": \"保罗・弗里嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德鲁克的最后忠告\",\n    \"author\": \"伊丽莎白・哈斯・埃德莎姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的解答\",\n    \"author\": \"克莱顿・克里斯坦森/迈克尔・雷纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨越鸿沟：颠覆性产品营销圣经\",\n    \"author\": \"杰弗里・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联想风云三十年\",\n    \"author\": \"赵雪/姜美芝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007260-d642e2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学管理原理\",\n    \"author\": \"弗雷德里克・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007242-f6d444?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商战\",\n    \"author\": \"杰克・特劳特 / 阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是战略\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清单革命\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达工作法\",\n    \"author\": \"万达集团企业文化中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸穷爸爸\",\n    \"author\": \"罗伯特.T.清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"22条商规\",\n    \"author\": \"艾・里斯 / 杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售哲学系列：7-11便利店创始人自述（套装共2册）\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（精华篇）\",\n    \"author\": \"L·J·瑞德豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的实践（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007080-44a05a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决问题最简单的方法\",\n    \"author\": \"达伦・布里奇/戴维・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业 : 新创企业的成长思维\",\n    \"author\": \"埃里克・莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Ego Is the Enemy\",\n    \"author\": \"Ryan Holiday\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006948-f3c958?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟爱上管理学\",\n    \"author\": \"姚余梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006891-f90357?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓愚：操纵与欺骗的经济学\",\n    \"author\": \"乔治·阿克洛夫/罗伯特·席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大是熬出来的\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘：对过去的事情做思维演练\",\n    \"author\": \"陈中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达哲学：王健林首次自述经营之道\",\n    \"author\": \"王健林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宗庆后：万有引力原理\",\n    \"author\": \"迟宇宙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED竞争心理学\",\n    \"author\": \"玛格丽特·赫夫南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险与好的决策\",\n    \"author\": \"格尔德·吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是部金融史（全新修订典藏版）\",\n    \"author\": \"陈雨露/杨栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台战略\",\n    \"author\": \"陈威如/余卓轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院最受欢迎的思维课\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行在宽处\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想丰满\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生长（权威未删节）\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小强升职记（升级版）\",\n    \"author\": \"邹鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006204-c05b09?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不奋斗就等死\",\n    \"author\": \"陈轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006111-6361a4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（20周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一个倒下的会不会是华为\",\n    \"author\": \"吴春波/田涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005934-356c47?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力21法则\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005919-08ec04?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的真谛\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新版一分钟经理人\",\n    \"author\": \"肯・布兰佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005577-99fa0a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创京东\",\n    \"author\": \"李志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005544-0bce57?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大败局（十周年套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1：开启商业与未来的秘密\",\n    \"author\": \"彼得・蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法图解\",\n    \"author\": \"诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河谈亲密关系\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挽回爱情33堂课\",\n    \"author\": \"穆木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985810-12567b?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二次吸引\",\n    \"author\": \"“小鹿情感”专家组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美关系的秘密\",\n    \"author\": \"杨冰阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041142-df8089?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在亲密关系中成长\",\n    \"author\": \"卡洛琳・戴奇/丽萨・罗伯邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷尔蒙战争\",\n    \"author\": \"科迪莉亚・法恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020769-c67cdf?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金赛性学报告（男人篇&#038;女人篇）\",\n    \"author\": \"阿尔弗雷德・C.金赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020571-87df7c?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兽绅士\",\n    \"author\": \"巫家民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012660-d06b04?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人来自火星，女人来自金星（套装共4册）\",\n    \"author\": \"约翰・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学观止（上下册）\",\n    \"author\": \"贺兰特・凯查杜里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学五章\",\n    \"author\": \"江晓原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅的都市漫游\",\n    \"author\": \"藤井省三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995002-8ac38e?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字里行间读鲁迅\",\n    \"author\": \"黄乔生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052611-2c45de?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也是鲁迅的遗物：朱安传\",\n    \"author\": \"乔丽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐宋传奇集（精装典藏版）\",\n    \"author\": \"蔡义江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036696-49672a?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间鲁迅\",\n    \"author\": \"林贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私想鲁迅\",\n    \"author\": \"刘春杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"体育健身训练丛书（套装全10册）\",\n    \"author\": \"阿诺德·G· 尼尔森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495096-de8ca5?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骨骼跑步法\",\n    \"author\": \"铃木清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自律给你自由\",\n    \"author\": \"约克・威林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513741-adf394?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本减肥书\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样减肥不反弹\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜值和身材一个都不能少（套装共10册）\",\n    \"author\": \"森拓郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983329-e2252e?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电增肌\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸：适合全家人的健身与运动\",\n    \"author\": \"杨克新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051009-b7847b?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健身笔记\",\n    \"author\": \"叔贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很老很老的老偏方大全集（共10册）\",\n    \"author\": \"胡丽娟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会呼吸\",\n    \"author\": \"帕特里克・麦基翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练减脂圣经\",\n    \"author\": \"尼克・特米勒罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033306-9ad46f?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李小龙遗作：你从未见过的功夫之王（套装共3册）\",\n    \"author\": \"李小龙/约翰・里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029949-2bcb8f?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郝鹏飞极简派健身\",\n    \"author\": \"郝鹏飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024366-198ca6?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肿瘤防治科普丛书（套装共13册）\",\n    \"author\": \"重庆市肿瘤医院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，健身房\",\n    \"author\": \"高宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练套装\",\n    \"author\": \"马克・瑞比拖/安迪・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你可以跑得更快\",\n    \"author\": \"徐国峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸运动系统训练（全彩图解第2版）\",\n    \"author\": \"阿诺德·G.尼尔森/尤卡・科科宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周健身4小时\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021222-0e5913?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"施瓦辛格健身全书\",\n    \"author\": \"阿诺德・施瓦辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021087-b4c0c0?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准拉伸\",\n    \"author\": \"克里斯蒂安・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020916-4b8c4a?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无器械健身\",\n    \"author\": \"马克・劳伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020154-710555?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒健身全集（共4册）\",\n    \"author\": \"保罗・威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019035-5dda2c?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一平米健身：硬派健身\",\n    \"author\": \"斌卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005727-03824e?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西网络科学\",\n    \"author\": \"艾伯特-拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000138-cf99ca?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络（牛津通识读本）\",\n    \"author\": \"圭多・卡尔达雷利/米凯莱・卡坦扎罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053052-0ef287?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类网络\",\n    \"author\": \"马修・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断网生活\",\n    \"author\": \"贾健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033096-f85ae2?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增强人类\",\n    \"author\": \"海伦・帕帕扬尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030204-bca3d3?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个人类\",\n    \"author\": \"马克・奥康奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络是怎样连接的\",\n    \"author\": \"户根勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解HTTP\",\n    \"author\": \"上野宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶力量：超自然生物图鉴\",\n    \"author\": \"提姆・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985678-c429a7?p=8866\",\n    \"category\": \"影视\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李碧华经典小说集\",\n    \"author\": \"李碧华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024717-9cc7da?p=8866\",\n    \"category\": \"影视\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周易参同契（全本全注全译）\",\n    \"author\": \"章偉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866\",\n    \"category\": \"丹道\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸葛亮：蜀汉舵手的历史真相\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866\",\n    \"category\": \"诸葛亮\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大谋小计五十年：诸葛亮传\",\n    \"author\": \"若虚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005889-9b8514?p=8866\",\n    \"category\": \"诸葛亮\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动教练\",\n    \"author\": \"季益祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999400-98dabd?p=8866\",\n    \"category\": \"绩效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理\",\n    \"author\": \"尼克・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030318-1dd6c3?p=8866\",\n    \"category\": \"绩效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR工作法\",\n    \"author\": \"克里斯蒂娜・沃特克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866\",\n    \"category\": \"绩效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·免疫与治愈\",\n    \"author\": \"迈克尔・金奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深呼吸：菠萝解密肺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035556-2eaf53?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她说：菠萝解密乳腺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的战争\",\n    \"author\": \"大卫・塞尔旺・施莱伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020205-f17668?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症科普（套装共2册）\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·真相\",\n    \"author\": \"菠萝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众病之王：癌症传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东言西语\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维特根斯坦说逻辑与语言\",\n    \"author\": \"维特根斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985915-d52a79?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言的诞生\",\n    \"author\": \"丹尼尔·L. 埃弗雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉语讲话\",\n    \"author\": \"王力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045315-e7ccda?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南腔北调：在语言中重新发现中国\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学语言\",\n    \"author\": \"亚历克斯・罗林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043503-1bf41f?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本名词故事\",\n    \"author\": \"新井一二三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言表达的艺术\",\n    \"author\": \"赵磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030414-9672c6?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字里中国\",\n    \"author\": \"张素凤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029691-7b218d?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You are a Badass\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作全技术\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025719-d465f4?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言风格的秘密\",\n    \"author\": \"詹姆斯・彭尼贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023781-4c8ac9?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1368个单词就够了\",\n    \"author\": \"王乐平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语的故事\",\n    \"author\": \"戴维・克里斯特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013851-0cea4d?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言本能\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟各国人都聊的来\",\n    \"author\": \"本尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻美：摄影中的东方美学\",\n    \"author\": \"青简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美中国（全8册）\",\n    \"author\": \"陈炎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513846-cbc74c?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美学漫步\",\n    \"author\": \"宗白华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002514-7384a3?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论爱美\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术精神\",\n    \"author\": \"罗伯特・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985927-d00167?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美学讲稿\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029019-43518f?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无限的清单\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029040-0003df?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博洛尼亚国家艺术画廊\",\n    \"author\": \"贝亚特莉切・布斯卡罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪漫主义的根源\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011475-a98679?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎贝尔生活美学\",\n    \"author\": \"戴安娜・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009570-bbd908?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"為了活下去：脫北女孩朴研美\",\n    \"author\": \"朴研美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008844-4ce616?p=8866\",\n    \"category\": \"北韩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前行笔记之耕耘心田\",\n    \"author\": \"希阿荣博堪布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491703-fada1f?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛系：中国人的生活智慧\",\n    \"author\": \"果麦文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493296-11aa38?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿含经校注（全九册）\",\n    \"author\": \"恒强法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509343-bdaff3?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见：从科学到哲学，打开人类的认知真相\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999022-8e84da?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的智慧\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坛经（全本全注全译）\",\n    \"author\": \"尚荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国佛教通史（套装十五卷）\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳伽蓝记（全本全注全译）\",\n    \"author\": \"尚荣译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅者的初心\",\n    \"author\": \"铃木俊隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏传佛教极简史\",\n    \"author\": \"德昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛陀传\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029292-270b2e?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正念的奇迹\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029160-04ba40?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛系：如何成为一个快乐的人\",\n    \"author\": \"草薙龙瞬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022269-176d06?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏生死书\",\n    \"author\": \"索甲仁波切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慧灯之光（全8册）\",\n    \"author\": \"慈诚罗珠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006576-5bbcbf?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅盾讲中国神话\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492144-627120?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上古神话（全四册）\",\n    \"author\": \"钟毓龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500949-92326a?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空5500年\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喀耳刻\",\n    \"author\": \"马德琳・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506415-595930?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重述神话系列套装7册\",\n    \"author\": \"A.S.拜雅特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506790-5f6b2e?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神在人间的时光（修订版）\",\n    \"author\": \"陈喜辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004272-ae9f00?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣的存在\",\n    \"author\": \"米尔恰・伊利亚德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海百灵\",\n    \"author\": \"王新禧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004023-a305af?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋汊子（全两册）\",\n    \"author\": \"董均伦/江源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003747-87ed89?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄\",\n    \"author\": \"斯蒂芬・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995575-9cd60e?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神话\",\n    \"author\": \"斯蒂芬・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995473-1daa2f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说魂儿（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扪虱谈鬼录（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆天子传（全本全注全译）\",\n    \"author\": \"高永旺译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上寻仙记\",\n    \"author\": \"锦翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国神话通论\",\n    \"author\": \"袁珂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049314-f5b7b8?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神仙传（全本全注全译）\",\n    \"author\": \"葛洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简世界神话\",\n    \"author\": \"马克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The House of Hades\",\n    \"author\": \"Riordan, Rick\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034689-d4bc80?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（果麦经典）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾拉·格雷的歌\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全怪谈（全三册）\",\n    \"author\": \"田中贡太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032217-dba52f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金叶：来自金枝的故事\",\n    \"author\": \"丽莉・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028533-53157f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯尔特神话\",\n    \"author\": \"米兰达・阿尔德豪斯-格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026139-d5e318?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中6·一本读懂！山海经\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025233-398c4e?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马神话\",\n    \"author\": \"菲利普・马蒂塞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025155-94a814?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃及神话\",\n    \"author\": \"加里·J.肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025149-2a44c7?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧神话\",\n    \"author\": \"卡罗琳・拉灵顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观山海\",\n    \"author\": \"杉泽/梁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024672-aac4e1?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯尔特的薄暮\",\n    \"author\": \"威廉・巴特勒・叶芝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023673-2bd6c4?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·异兽篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021321-ab85f8?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·人神篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊神话\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一千零一夜（果麦经典）\",\n    \"author\": \"邓嘉宛译\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011433-69e0ef?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悟空传（完美纪念版）\",\n    \"author\": \"今何在\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009351-e1b571?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千面英雄\",\n    \"author\": \"约瑟夫・坎贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊神话故事\",\n    \"author\": \"古斯塔夫・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经密码大全集（套装共5册）\",\n    \"author\": \"阿菩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006714-464296?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国神话大词典\",\n    \"author\": \"袁珂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意观察\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲罢不能：刷屏时代如何摆脱行为上瘾\",\n    \"author\": \"亚当・阿尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为心理学\",\n    \"author\": \"约翰・华生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016383-2e302b?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞关系学\",\n    \"author\": \"亚当・加林斯基/马利斯・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微习惯\",\n    \"author\": \"斯蒂芬・盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不诚实的诚实真相\",\n    \"author\": \"丹・艾瑞里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009519-879ad6?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"害羞心理学\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009510-378800?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法治的细节\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498228-28f106?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《中华人民共和国民法典》条文精释与实案全析\",\n    \"author\": \"杨立新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508884-69560f?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹劾\",\n    \"author\": \"戴维・E.凯卫格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑罚的历史\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003726-07d003?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法中的同意制度\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003372-a8ac3b?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法罗盘\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"誓言：白宫与最高法院\",\n    \"author\": \"杰弗里・图宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以眼还眼\",\n    \"author\": \"米切尔·P·罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈正义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐秘战争\",\n    \"author\": \"阿里・拉伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司法的细节\",\n    \"author\": \"刘仁文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022755-7efa0d?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法政纠结\",\n    \"author\": \"杨天宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020388-cbd634?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二怒汉\",\n    \"author\": \"雷金纳德・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018195-04e94b?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联邦论：美国宪法评述\",\n    \"author\": \"亚历山大・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评官员的尺度\",\n    \"author\": \"安东尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断臂上的花朵\",\n    \"author\": \"奥比・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009423-07055d?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛普森何以逍遥法外？\",\n    \"author\": \"文森特・布廖西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008964-ad44de?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难的一跃\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大法官说了算\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞穴奇案\",\n    \"author\": \"萨伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008175-d08cdd?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合理的怀疑\",\n    \"author\": \"德肖维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国最高法院通识读本\",\n    \"author\": \"琳达・格林豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法格言的展开（第三版）\",\n    \"author\": \"张明楷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭2\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866\",\n    \"category\": \"格局\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说话体现格局，决定结局\",\n    \"author\": \"凌岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866\",\n    \"category\": \"格局\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瞧！不一样的我\",\n    \"author\": \"小盐真司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003723-564f84?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格拼图\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破天性\",\n    \"author\": \"布赖恩・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格的陷阱\",\n    \"author\": \"杰弗里·E.杨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何提升性格优势\",\n    \"author\": \"安妮・博格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032571-eaa275?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别相信他的脸\",\n    \"author\": \"亚历山大・托多罗夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027891-8dcd80?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟乐嘉学性格色彩\",\n    \"author\": \"乐嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014859-334205?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末代沙皇：尼古拉二世的最后503天\",\n    \"author\": \"罗伯特・瑟维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491478-017375?p=8866\",\n    \"category\": \"沙皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷搅局者\",\n    \"author\": \"莱斯利・柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷之火（第3版）\",\n    \"author\": \"迈克尔・斯韦因/保罗・弗赖伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱的猴子\",\n    \"author\": \"安东尼奥・加西亚・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷帝国\",\n    \"author\": \"露西・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Bad Blood\",\n    \"author\": \"John Carreyrou\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024663-88d5e5?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷百年史\",\n    \"author\": \"阿伦・拉奥/皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里改变世界：硅谷成功创新之谜\",\n    \"author\": \"黛博拉・佩里・皮肖内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Elon Musk\",\n    \"author\": \"Ashlee Vance\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反直觉\",\n    \"author\": \"理查德・肖顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的技术\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"组织革新\",\n    \"author\": \"杨国安/戴维・尤里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力精进\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华百万大奖赛案例集\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助推（实践版）\",\n    \"author\": \"戴维・哈尔彭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043941-cd894d?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智识的冒险\",\n    \"author\": \"潘启雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043764-78293a?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"345薪酬\",\n    \"author\": \"李祖滨/汤鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034002-cf5f79?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"25%的回头客创造75%的利润\",\n    \"author\": \"高田靖久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实\",\n    \"author\": \"汉斯・罗斯林/欧拉・罗斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：企业数字化生存指南\",\n    \"author\": \"尤尔根・梅菲特/沙莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃\",\n    \"author\": \"克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是执行力\",\n    \"author\": \"赵伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027924-49edb9?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级激励者\",\n    \"author\": \"西蒙・斯涅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻省理工深度思考法\",\n    \"author\": \"平井孝志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺基亚总裁自述：重压之下\",\n    \"author\": \"约玛・奥利拉/哈利・沙库马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017967-f37367?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017052-d7e7bd?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共赢\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016227-aa004f?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最简单的图形与最复杂的信息\",\n    \"author\": \"黄慧敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512553-185e6e?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python金融大数据分析\",\n    \"author\": \"伊夫・希尔皮斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对比Excel，轻松学习Python数据分析\",\n    \"author\": \"张俊红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首席增长官\",\n    \"author\": \"张溪梦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都是数据分析师\",\n    \"author\": \"刘红阁/王淑娟/温融冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为数据分析师\",\n    \"author\": \"托马斯・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018255-12f5c6?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯“革命”隐藏的另一面\",\n    \"author\": \"埃里克・德尼西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496482-040f62?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大征服\",\n    \"author\": \"休・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敌人与邻居\",\n    \"author\": \"伊恩・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服与革命中的阿拉伯人\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊本·赫勒敦\",\n    \"author\": \"罗伯特・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越百年中东\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山居杂忆\",\n    \"author\": \"高诵芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002007-f88da6?p=8866\",\n    \"category\": \"回忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春蚕吐丝\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866\",\n    \"category\": \"回忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西南联大行思录\",\n    \"author\": \"张曼菱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018297-9bd135?p=8866\",\n    \"category\": \"回忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗战时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866\",\n    \"category\": \"回忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土之界\",\n    \"author\": \"希拉莉・乔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866\",\n    \"category\": \"黑人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为奴十二年\",\n    \"author\": \"所罗门・诺瑟普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011313-653371?p=8866\",\n    \"category\": \"黑人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败：人性与文化\",\n    \"author\": \"克里斯・肖尔/迪特尔・哈勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866\",\n    \"category\": \"腐败\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩5：遗失的羽毛\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866\",\n    \"category\": \"黑色童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解国医典藏系列套装（全6册）\",\n    \"author\": \"张仲景等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500892-16aa17?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疾病密码\",\n    \"author\": \"唐云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003858-1a42ec?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中西医的博弈\",\n    \"author\": \"皮国立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉（增订版）\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984574-129632?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医目了然\",\n    \"author\": \"懒兔子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西2\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023928-751840?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救命之方\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023430-dd9f1a?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考中医\",\n    \"author\": \"刘力红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010455-725a39?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭德怀自传\",\n    \"author\": \"彭德怀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866\",\n    \"category\": \"彭德怀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭大将军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866\",\n    \"category\": \"彭德怀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上：我生活的故事\",\n    \"author\": \"格洛丽亚・斯泰纳姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035034-83902d?p=8866\",\n    \"category\": \"女权主义\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读电影·百年奥斯卡佳片品鉴（套装3册）\",\n    \"author\": \"杨晓林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503820-7cf8c0?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"詹姆斯·卡梅隆的科幻故事\",\n    \"author\": \"兰德尔・弗雷克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509604-3a44ff?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体的语言\",\n    \"author\": \"列夫・马诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影意志\",\n    \"author\": \"王小鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512109-561eca?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煮海时光\",\n    \"author\": \"白睿文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513129-02d351?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们与恶的距离\",\n    \"author\": \"吕莳媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002985-472c7f?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绘色\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002856-21b3da?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定义邪典电影\",\n    \"author\": \"马克・扬克维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002151-9c4719?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有点意思\",\n    \"author\": \"黄渤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000483-0f32e7?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影的元素\",\n    \"author\": \"罗伯特・伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996553-12e06b?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉卜力的伙伴们\",\n    \"author\": \"铃木敏夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994822-c08285?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个人的车站\",\n    \"author\": \"埃・韦・布拉金斯基/埃・亚・梁赞诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后叹息\",\n    \"author\": \"路易斯・布努艾尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与戛纳\",\n    \"author\": \"蒂耶里・福茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影（牛津通识读本）\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用手机拍一部电影\",\n    \"author\": \"英国Little White Lies编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影冷知识\",\n    \"author\": \"许立衡/张凯淯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双子杀手\",\n    \"author\": \"泰坦图书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047988-81f498?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象席地而坐\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是开豆腐店的，我只做豆腐\",\n    \"author\": \"小津安二郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035157-62d9ec?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔灯（全译本）\",\n    \"author\": \"英格玛・伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光影里的梦幻与真实\",\n    \"author\": \"郑实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日40：步履不停，是枝裕和\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031917-82a810?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影是什么？\",\n    \"author\": \"安德烈・巴赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险地活着\",\n    \"author\": \"汉斯・舒茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何聊电影\",\n    \"author\": \"安・霍纳迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029709-5cea62?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我知道你们又来这一套\",\n    \"author\": \"罗杰・伊伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028974-b269a9?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HBO的内容战略\",\n    \"author\": \"小比尔・梅西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026886-3c5154?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何欣赏一部电影\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022224-caab80?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对白：文字、舞台、银幕的言语行为艺术\",\n    \"author\": \"罗伯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018612-e3095d?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界电影史（套装共3册）\",\n    \"author\": \"杰弗里・诺维尔・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017265-9718d5?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“雅众·影事”之日本导演系列（套装共4册）\",\n    \"author\": \"今敏/大岛渚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017130-8dc1b4?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与火同行：大卫·林奇谈电影\",\n    \"author\": \"大卫・林奇/克里斯・罗德雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港电影史记\",\n    \"author\": \"魏君子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006993-4a082b?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉汉的脚步\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002340-106057?p=8866\",\n    \"category\": \"概率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10堂极简概率课\",\n    \"author\": \"佩尔西・戴康尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866\",\n    \"category\": \"概率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统计学关我什么事\",\n    \"author\": \"小岛宽之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866\",\n    \"category\": \"概率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑天鹅：如何应对不可预知的未来（升级版）\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866\",\n    \"category\": \"概率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛮荒记（大全集）\",\n    \"author\": \"树下野狐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492450-48eee1?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎魔人修订版一至八全集\",\n    \"author\": \"安杰伊・萨普科夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493842-0102d1?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地铁三部曲\",\n    \"author\": \"德米特里・格鲁霍夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503226-447e22?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将夜（精校版）\",\n    \"author\": \"猫腻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049074-8f7e9a?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆，悲伤与荆棘（套装全三卷六册）\",\n    \"author\": \"泰德・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033894-061805?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异乡人（套装共10册）\",\n    \"author\": \"戴安娜・加瓦尔东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033537-76c311?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神游\",\n    \"author\": \"徐胜治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033297-17c0a2?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖异闻录\",\n    \"author\": \"本少爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028242-37d188?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026331-155838?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话Ⅱ\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026322-83eb5a?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话Ⅲ\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026316-cb833b?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑西游\",\n    \"author\": \"绯红色眼泪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025137-84c2d0?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航2\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023982-655d95?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斗罗大陆（全14卷）\",\n    \"author\": \"唐家三少\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023769-dc3c40?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极地恶灵（全2册）\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020643-881da8?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人2\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020184-ca791a?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人族崛起（套装书全10册）\",\n    \"author\": \"岳天亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020079-80b4c8?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"移动迷宫（套装5册）\",\n    \"author\": \"詹姆斯・达什纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019527-f1b587?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北境三部曲：黑色佣兵团（套装共3册）\",\n    \"author\": \"格伦・库克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018309-76ae77?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开封志怪（全三册）\",\n    \"author\": \"尾鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015318-1376a9?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无心法师\",\n    \"author\": \"尼罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013239-7522f7?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑渊洁成人大长篇小说系列三部曲\",\n    \"author\": \"郑渊洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011334-a9920c?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦墟\",\n    \"author\": \"月关\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009132-129b38?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"采珠勿惊龙：鬼雨法螺\",\n    \"author\": \"二郎神犬马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008403-e6a157?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"择天记（套装1-7卷全）\",\n    \"author\": \"猫腻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008277-29e82c?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传古奇术（套装共四册）\",\n    \"author\": \"未六羊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻业的怀乡病\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513351-511f7d?p=8866\",\n    \"category\": \"传媒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容之王\",\n    \"author\": \"迈克尔・巴斯卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044808-3d7309?p=8866\",\n    \"category\": \"传媒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众媒时代\",\n    \"author\": \"腾讯传媒研究\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866\",\n    \"category\": \"传媒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何达成目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994909-cbcb48?p=8866\",\n    \"category\": \"提升\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳语之人\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493566-c34524?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反骗案中案·完结版（全5册）\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495066-b34054?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回到种子里去\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495486-3c8ab0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间我来过\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495513-a7fbae?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那多经典作品合集（12册合集）\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498663-8c7a04?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探4：双城血案\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498834-6b8e51?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄雀计划\",\n    \"author\": \"鬼庖丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498957-155512?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默的铁证\",\n    \"author\": \"米烛光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499452-818cac?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶寒\",\n    \"author\": \"伊冈瞬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499659-21ca24?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全员嫌疑人\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499701-1e03fc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气球人\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501195-ba2e60?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"会错意的冬日\",\n    \"author\": \"似鸟鸡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501648-3e29c5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的女孩\",\n    \"author\": \"克里斯蒂安・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501726-060129?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰谋杀案（全两册）\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502944-116268?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室小丑\",\n    \"author\": \"时晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503307-04dbfb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与善良\",\n    \"author\": \"辻村深月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504243-e0863b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩偶\",\n    \"author\": \"法医秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506412-556a2b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如首无作祟之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508980-843c48?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如水魑沉没之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509070-c0bdeb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆时侦查组\",\n    \"author\": \"张小猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509094-55dc76?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪头条\",\n    \"author\": \"朱首末\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509643-1ce27b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无形之刃\",\n    \"author\": \"陈研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509706-840d1a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬疑小说《失联》系列（全4册）\",\n    \"author\": \"发威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509769-12102c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美嫌疑人\",\n    \"author\": \"陈研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509868-3a24d8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字母表谜案\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510117-6dfc14?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失者\",\n    \"author\": \"多纳托・卡瑞西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510153-b0429d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寒栗\",\n    \"author\": \"索伦・斯外斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510246-3b3fae?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键词是谋杀\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510258-1956b1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜之家\",\n    \"author\": \"殳俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511095-b66fd2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊芙琳的七次死亡\",\n    \"author\": \"斯图尔特・特顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511320-d34f47?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎头游戏\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511377-5d4220?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍故事\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511551-012997?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天机十二宫（套装2册）\",\n    \"author\": \"王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513327-58c5bc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人偶的复活\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513450-23c7d7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪医笔记\",\n    \"author\": \"狼医生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004455-54cb6f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默的墓碑\",\n    \"author\": \"珍・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004347-6c482d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦探AI\",\n    \"author\": \"早坂吝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003939-b7b6bf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的病人\",\n    \"author\": \"亚历克斯・麦克利兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旋涡（全2册）\",\n    \"author\": \"伊藤润二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003753-389516?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理档案（共4册）\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明神探于谦\",\n    \"author\": \"史刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002157-6dd901?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木马湖\",\n    \"author\": \"宋老邪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002121-ac27cf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺丝在拧紧（果麦经典）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001599-4b85e9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔眼之匣谜案\",\n    \"author\": \"今村昌弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000648-79dc5c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记4\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000630-a6cc40?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默之地\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000417-20afbf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她和她的秘密\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000177-c83701?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解梦大师\",\n    \"author\": \"羽笙烟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999379-8d67f1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝者之书\",\n    \"author\": \"法医秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998971-364375?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫌疑人\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998800-9f56b7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊行屮“灯下黑”系列（套装3册）\",\n    \"author\": \"羊行屮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996958-e7e565?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他的秘密\",\n    \"author\": \"莉安・莫里亚蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996595-40f888?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗忘者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996394-3987f5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤色博物馆\",\n    \"author\": \"大山誠一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996154-b859bc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指定目击者\",\n    \"author\": \"午晔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995380-99ff61?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两种真相\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995215-ab07fb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧\",\n    \"author\": \"陈育新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995209-108b48?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一次真相\",\n    \"author\": \"赤蝶飞飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995176-68895f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色睡莲\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994783-a62041?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多米诺杀阵\",\n    \"author\": \"成刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991825-14cf14?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终南山密码2\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991645-ce6b62?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二镜面\",\n    \"author\": \"张墨爱吃鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991510-88f05b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一路去死\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990874-c2daf4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上岭阉牛\",\n    \"author\": \"凡一平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990295-1506c8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狂探\",\n    \"author\": \"吕铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990040-8f94c3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记3\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜鸟\",\n    \"author\": \"莫峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987193-6b8f16?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问米\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986296-19e7f3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米泽穗信精选集：算计\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986158-4aacbd?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警2\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无辜之血\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985633-85ca83?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天坑宝藏\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧烤怪谈\",\n    \"author\": \"蔡必贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记2\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983785-47efcf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异闻录：九重图阵\",\n    \"author\": \"王文杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983362-f00f8f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983302-881145?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你希望我成为的一切\",\n    \"author\": \"明迪・梅西亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983146-2e7f2a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"农场\",\n    \"author\": \"汤姆・罗伯・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983131-cc0363?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探的咒缚\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982474-92a205?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镇墓兽（全四册）\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053601-c5f0f4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探的救赎\",\n    \"author\": \"顾溪亭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053478-fd88a8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威与骗子工厂\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053163-da42f2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"糖与香料\",\n    \"author\": \"萨菲娜・德福奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053121-74a2f5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋上的救赎（增补版）\",\n    \"author\": \"指纹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053079-0512e3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽冥\",\n    \"author\": \"小泉八云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052983-ce2296?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪全书系列（共6册）\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052944-2dd9a4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸女孩\",\n    \"author\": \"纪尧姆・米索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052527-94115f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对我说谎\",\n    \"author\": \"萨宾・达兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052365-c25084?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦畸者\",\n    \"author\": \"叶遁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低智商犯罪\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052332-986b2c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终局者\",\n    \"author\": \"项维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052302-fcaeb5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔老道捉妖：夜闯董妃坟\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052266-3a15a0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔老道传奇：三探无底洞\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052254-df0e70?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎凶记（套装全三册）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051765-86815f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光森林\",\n    \"author\": \"葵田谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051471-3cd00f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式谋杀\",\n    \"author\": \"迈克尔・道格拉斯卡林/罗素・普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的遗忘\",\n    \"author\": \"丹妮尔・蒂埃里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051135-aff273?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣天秤星\",\n    \"author\": \"彼得・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050919-7cecbb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色麦田\",\n    \"author\": \"葵田谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050865-0365c7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碎裂\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050394-9ddc9d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界推理名家代表作（20全册）\",\n    \"author\": \"埃勒里・奎因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050307-cc8646?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蟑螂\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我四十分钟后到家\",\n    \"author\": \"周路明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049539-8bf2ec?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者2\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049434-76024d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖2\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049356-1b7e9b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者3\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大魔术师\",\n    \"author\": \"张海帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047799-4641cf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪案迷城\",\n    \"author\": \"张瑞兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046815-9f9c8d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪念\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045978-23a050?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖气\",\n    \"author\": \"慢三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045399-da4010?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富士山禁恋\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045333-d81815?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒海妖船\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045072-9ea87c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追凶者之萨满疑云\",\n    \"author\": \"管彦杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044991-6977b9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重案追击：悬疑小说精选（套装共12册）\",\n    \"author\": \"王文杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044961-601f8e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活人禁忌\",\n    \"author\": \"九锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探3：古画寻踪\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044214-07f96d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风之影四部曲\",\n    \"author\": \"卡洛斯・鲁依兹・萨丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043113-dd5324?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清明上河图密码（全6册）\",\n    \"author\": \"冶文彪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042804-929cc7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国男孩\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网内人\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041643-1a89eb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白日梦\",\n    \"author\": \"老谭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041352-f3d652?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顶级悬案\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040371-b4acad?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单日人，双日人\",\n    \"author\": \"菲莉西亚・叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039492-8a2857?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈利的十五次人生\",\n    \"author\": \"克莱尔・诺丝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039090-c3abbc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游泳课\",\n    \"author\": \"克莱尔・富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038988-b719e8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五个死者的告白\",\n    \"author\": \"P.D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038526-c24d0a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人生还（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038145-3e58ee?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五个目标\",\n    \"author\": \"白雾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037845-992b8d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤龙\",\n    \"author\": \"苗棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037698-7168f4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本店招牌菜\",\n    \"author\": \"斯坦利・艾林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037236-89887b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾中的小镇\",\n    \"author\": \"珍・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037104-1302c6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Cell\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036906-9fb3a8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复仇者\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的客人\",\n    \"author\": \"塔娜・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成化十四年\",\n    \"author\": \"梦溪石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035892-788349?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑髓地狱\",\n    \"author\": \"梦野久作\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035817-f5b16f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀之心\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035811-984899?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马俱乐部\",\n    \"author\": \"阿图罗・佩雷斯-雷维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035409-35f8e0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲探\",\n    \"author\": \"田烨然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035343-e3cad6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与谎言为邻\",\n    \"author\": \"米娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035154-f86a21?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法醫·屍體·解剖室（套装共3册）\",\n    \"author\": \"道格拉斯．萊爾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034428-aee5f1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终南山密码\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033876-257d0b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦渴\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国谍影（全四册）\",\n    \"author\": \"何慕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033657-64c701?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳危机\",\n    \"author\": \"李纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033414-30313e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿里\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪灵\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混凝土里的金发女郎\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033120-c171d5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肖申克的救赎（纪念珍藏版）\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033099-81dc57?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡美人（全二册）\",\n    \"author\": \"斯蒂芬・金/欧文・金\",\n    \"link\": \"链接未找到\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪屋\",\n    \"author\": \"雪莉・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032721-17527f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花雨枪\",\n    \"author\": \"夏生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录：最后的狄仁杰（全五册）\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032550-262194?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喜鹊谋杀案\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032361-2287af?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑信封\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"链接未找到\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死钥匙\",\n    \"author\": \"D.M.普利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032289-b14405?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希区柯克悬念故事集（典藏版）\",\n    \"author\": \"阿尔弗莱德・希区柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032016-4bcd4f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典悬念小说大合集（套装共36册）\",\n    \"author\": \"柯南・道尔/希区柯克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032007-e4a320?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁杀了她\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031938-22aa7e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类之子\",\n    \"author\": \"P.D.詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031398-7de6ed?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前我死去的家\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031191-54f037?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明之街\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031164-4316c5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀局\",\n    \"author\": \"肯尼思・菲林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031116-8ca6cb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日尽处\",\n    \"author\": \"荷曼・柯赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030960-3f8658?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟塔杀人事件\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030741-bf8a14?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜将至\",\n    \"author\": \"夏阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030720-355e2e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐僧\",\n    \"author\": \"马鸣谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029931-767c9c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029874-6d65f7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽\",\n    \"author\": \"刘天壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029829-454eb2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生吞\",\n    \"author\": \"郑执\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029547-23ac4c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十九年间谋杀小叙\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029544-25e397?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"球形的荒野\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029529-9062a6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声尖叫\",\n    \"author\": \"安杰拉・马森斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029400-e9abf7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀狄更斯\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029187-e28d8c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我嫁给了一个死人\",\n    \"author\": \"康奈尔・伍尔里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028947-dc320b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗诱惑\",\n    \"author\": \"劳瑞斯・安妮・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028851-01a788?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有他知道一切\",\n    \"author\": \"利兹・纽金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027873-fe0d3b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"案发现场\",\n    \"author\": \"夏立楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027852-c861dc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关上门以后\",\n    \"author\": \"B.A.帕里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027528-6941ca?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命绑架\",\n    \"author\": \"T.R.蕾根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027393-6fd896?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪3\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027291-d26495?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑城\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027018-59ae1b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大侦探波洛探案全集\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026937-aadc2c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探2：暴雪荒村\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026853-dd49e0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的妹妹\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026841-1d5453?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚕\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026697-b1a344?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"控梦东京\",\n    \"author\": \"汤介生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026226-d799c7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：凶宅\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025707-e82630?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匠擎第一卷：闻香\",\n    \"author\": \"邪灵一把刀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025590-9aa211?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小心，沙漠有人\",\n    \"author\": \"沃尔夫冈・赫伦多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025356-e71578?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日重现\",\n    \"author\": \"张寒寺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025080-f26716?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必须牺牲卡米尔\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025026-1615ad?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈洗冤录：一天明月\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024972-ddecbb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈洗冤录：满怀冰雪\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024981-db0d77?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探：青衣奇盗\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024957-78b9a0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阁楼里的女孩\",\n    \"author\": \"弗吉尼亚・安德鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024612-a7d190?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无证之罪\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024528-07ae8b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：破镜\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024255-988eff?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺局（全六册）\",\n    \"author\": \"圆太极\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024114-fe0171?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象无形\",\n    \"author\": \"泽帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023754-5c70fc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海面之下\",\n    \"author\": \"克莱尔・道格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023733-847d94?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克里斯汀\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023559-14c275?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色\",\n    \"author\": \"徐兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023499-da43d2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓鱼城\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023424-cc84f3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆迷踪\",\n    \"author\": \"启山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023262-aad346?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士学院杀人事件\",\n    \"author\": \"P.D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023211-d473df?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022944-f7c29a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：嬗变\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022878-0c6f47?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：幸存\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022872-4eb748?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她不是我妈妈\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022791-6f413a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使安魂三部曲\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022779-c4d931?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越狱者\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022788-46d327?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的妻子\",\n    \"author\": \"卡洛琳・艾瑞克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022428-864380?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪2\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022272-fa2c80?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江户川乱步严选作品集（全13册）\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022008-610644?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021792-b895c1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此刻不要回头\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021612-7599fd?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使徒：迷失者的续命游戏\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021576-539d1a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行：黄雀\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021309-12556b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰亭序杀局3：长安乱\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021201-81e2a3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙海：荒沙诡影\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020958-faed28?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肯·福莱特悬疑经典第三辑（全5册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020748-afeb18?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"按需知密\",\n    \"author\": \"卡伦・克利夫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020700-1334e6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰岛人\",\n    \"author\": \"大卫・W・斯托克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020688-c01e06?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜琴声\",\n    \"author\": \"米克尔・圣地亚哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020685-c8c4cf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血法医（1-4季全集）\",\n    \"author\": \"杰夫・林赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追踪师：隐身术\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019731-80213a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火神\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019512-f9a3d9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她一生的秘密\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019461-955552?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窗里的女人\",\n    \"author\": \"A.J.费恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019425-42859a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火车上的女孩\",\n    \"author\": \"宝拉・霍金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019158-dd2452?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷案重启\",\n    \"author\": \"樊落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018711-c54542?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷案重启2逝者之证\",\n    \"author\": \"樊落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018708-977e8b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018600-b9d116?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"召唤：沃伦夫妇的惊凶职业实录\",\n    \"author\": \"杰拉德・布利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018570-279333?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"松本清张推理悬疑典藏版合集（套装共7册）\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018183-4e0feb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肯·福莱特悬疑经典第二辑（全5册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018117-10f5b0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"识骨女法医\",\n    \"author\": \"肯德拉・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017739-a00298?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录2：璇玑图密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017577-a5db59?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录3：长恨歌密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017571-2b8e05?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录4：大明宫密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017565-8c3d16?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必须找到阿历克斯\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017547-046ce1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋夜行记\",\n    \"author\": \"金醉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017403-e378a6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白金数据\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017106-48640e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面山庄\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017007-44c053?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大漠苍狼全集\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016647-7f7bd1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜难明\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016476-b7c91b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半妖司藤\",\n    \"author\": \"尾鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016350-8e1316?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个神秘事件调查员的秘密笔记（套装6册）\",\n    \"author\": \"湘西鬼王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016068-93c839?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公寓\",\n    \"author\": \"格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015885-639546?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰亭序杀局1：玄甲卫\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015480-7833f1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰亭序杀局2：天刑劫\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015471-7c9244?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拼布娃娃\",\n    \"author\": \"丹尼尔・科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015456-f0ae77?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝圣者\",\n    \"author\": \"泰瑞・海耶斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015393-6c6f8d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轩辕诀（全四册）\",\n    \"author\": \"茶弦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015144-667e1c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪前传\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014943-24df7d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀大师：寻找伦勃朗\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014790-61ef46?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封锁\",\n    \"author\": \"小白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014763-d4c655?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014685-b41a25?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩2：沉默之歌\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014682-90a977?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形解体的传说\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014667-09665e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宛如昨日\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014523-22941d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双峰：神秘史\",\n    \"author\": \"马克・弗罗斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014412-cd4665?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探2\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014328-08fde8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探3\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014313-615c25?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明镜之书\",\n    \"author\": \"尤金・欧・切洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013845-ee2042?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪5\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013539-bb0b0c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别相信任何人\",\n    \"author\": \"S.J.沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013503-50bdc4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜追凶\",\n    \"author\": \"指纹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012603-73ece6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺旋之谜\",\n    \"author\": \"圣地亚哥・帕哈雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012579-c32ac7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们掩埋的人生\",\n    \"author\": \"艾伦・艾丝肯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012543-04bf40?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭顶之灾\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012426-b28838?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜子里的陌生人\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012408-160c95?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告诉我你的梦\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012423-329754?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祸起萧墙\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012396-eaa984?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷窥者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012312-787a2f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"警察\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012075-898a34?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗处\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十三狱\",\n    \"author\": \"宁三意\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011406-15280c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桐花中路私立协济医院怪谈\",\n    \"author\": \"南琅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010827-a4a422?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"案藏玄机（全三册）\",\n    \"author\": \"费克申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010836-3b043a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010515-8f34ca?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美必读悬疑小说（勒普顿三部曲）\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010395-ddb236?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美圈套\",\n    \"author\": \"莎拉・平博拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010317-e7c3c5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金沙古卷（套装全4册）\",\n    \"author\": \"鱼离泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009879-c71aec?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到那一天\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七根凶简\",\n    \"author\": \"尾鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009606-e25f36?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妹妹的坟墓\",\n    \"author\": \"罗伯特・杜格尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009549-e0506b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斗宴\",\n    \"author\": \"周浩晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009405-ada596?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"S.（简体中文典藏复刻版）\",\n    \"author\": \"艾布拉姆斯/道格・道斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009492-298aa7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙文身的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009378-d34fd6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩火的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009372-a23441?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直捣蜂窝的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009360-520652?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交子\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009318-386aa1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者：罪案终结者的觉醒\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009135-83443d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的间谍\",\n    \"author\": \"胡安・高美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009054-f7ad79?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与上帝的契约\",\n    \"author\": \"胡安・高美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009048-abcb1c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙砚：绝命追踪83天\",\n    \"author\": \"澹台镜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008679-d6db08?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻夜行\",\n    \"author\": \"谷神冥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008475-bfb778?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪屋女孩\",\n    \"author\": \"兰萨姆・里格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008331-4ae033?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪屋女孩2：空城\",\n    \"author\": \"兰萨姆・里格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008328-d243c1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008217-788327?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾中的小径\",\n    \"author\": \"珍・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008196-9443bb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被囚禁的女孩\",\n    \"author\": \"香农・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008124-8a508a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别和她说话\",\n    \"author\": \"遇瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑神探\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007983-3adaee?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风暴岛\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007962-abffe2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银行家的情人\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007959-2bd28b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风的预谋\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007965-39fae5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫蛛\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007929-055c31?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱雀堂\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪人\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眼镜蛇事件\",\n    \"author\": \"理查德・普莱斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007788-93da89?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长江的密咒\",\n    \"author\": \"古官\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007782-6d755c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长安十二时辰（上下册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007776-effb94?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪4\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫图腾（套装共5册）\",\n    \"author\": \"闫志洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡案罪（1-8册全）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎豹（全二册）\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活肝\",\n    \"author\": \"徐然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007356-185e81?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木锡镇\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007266-6d2760?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑背鱼之谜\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎鲨游戏之十重人格女孩\",\n    \"author\": \"王健霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十九级台阶\",\n    \"author\": \"约翰・巴肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾中回忆\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理罪（套装共5册）\",\n    \"author\": \"雷米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空中杀人现场\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007131-989aa8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我当道士那些年\",\n    \"author\": \"仐三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006999-908522?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的爱人\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006969-e58bb7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁班的诅咒（珍藏版大全集）\",\n    \"author\": \"圆太极\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006924-c1b431?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗领域\",\n    \"author\": \"薇儿·麦克德米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀1905大合集（共3册）\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个背叛日本的日本人\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006684-51a287?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录：兰亭序密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006669-bfc526?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录1：苗乡巫祖\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006627-77614f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录2：清河鬼戏\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006624-d57c2b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录3：血海鬼船\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006621-9caf12?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录4：亡魂列车\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006618-334515?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录5：赌城妖灵\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006615-c3e5c9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录6：无边冥界\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006612-8ac654?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录2：最后的复辟挣扎\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸案调查科系列（全5册）\",\n    \"author\": \"九滴水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家阴谋5：火焰王子\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006324-542463?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻雀\",\n    \"author\": \"海飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006330-3fd9d3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖畔\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006276-021007?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦幻花\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006285-d59ca9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳黑子\",\n    \"author\": \"须一瓜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006282-cd6c39?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄仁杰探案合集\",\n    \"author\": \"安娜芳芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006201-8b8292?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫禁城魔咒（套装全三册）\",\n    \"author\": \"简千艾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006153-a21e3d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡性插图\",\n    \"author\": \"凿壁小妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻夜\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006108-1a3150?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀人之门\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006096-17ed58?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X密码\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006093-af6566?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗族\",\n    \"author\": \"缪热\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异域密码大全集（套装共四册）\",\n    \"author\": \"羊行屮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家阴谋：复仇天使四部曲\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006003-518eb4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面饭店\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005967-2f931b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之尸体加工厂\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之活体贩卖者\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地密码（珍藏版大全集）\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜行\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005571-dd15d9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫌疑人X的献身\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005562-da1f3c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶意\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005559-8e2a02?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放学后\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005553-facaec?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗墓笔记（插图版）\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005646-e7641b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7本书带你走进间谍圈（全七册）\",\n    \"author\": \"弗·福赛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和氏璧\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明宫奇案\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斧声烛影\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国机密（全两册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉公主\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005241-e78c9b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"案藏杀机：清代四大奇案卷宗\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005223-8942a8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：碧海青天\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005196-b63054?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔雀胆\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐游侠\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战襄阳\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005190-4212a2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼玄机\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳如是：柳色独秀\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005166-82c235?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连环罪：心里有诡系列（上下册）\",\n    \"author\": \"墨绿青苔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古董局中局（全四册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005145-bf3740?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之骨头收藏家\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼吹灯全集（插图版）\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004863-5bc405?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸存者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清道夫\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一根手指\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声的证词\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸语者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影家是怎样炼成的-进阶版（套装全5册）\",\n    \"author\": \"孙晓岭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504063-e299df?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影家是怎样炼成的（套装全8册）\",\n    \"author\": \"陈丹丹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506595-5c52dc?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布光是门大学问\",\n    \"author\": \"克里斯汀・霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511296-8d6ccf?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高品质摄影全流程解析（套装全9册）\",\n    \"author\": \"斯科特・凯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513114-e51622?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻美：摄影中的东方美学\",\n    \"author\": \"青简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术馆漫步：法国、伦敦、西班牙（全三册）\",\n    \"author\": \"崔瓊化等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986452-33c37f?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手机摄影轻松学\",\n    \"author\": \"李华春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985684-e8624f?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光博物馆\",\n    \"author\": \"人民日报社新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华遗韵\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美之地图\",\n    \"author\": \"米哈埃拉・诺洛茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京风格\",\n    \"author\": \"都筑响一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047016-279986?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺：写给大家的简明艺术启蒙（套装共5册）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045609-c32fd3?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看懂艺术\",\n    \"author\": \"翁昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043074-fa6d7a?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强大，漂亮的新定义\",\n    \"author\": \"凯特·T·帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026319-23d0f4?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日16：写真\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025425-cad07f?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解一张照片\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我从战场归来\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论摄影（插图珍藏本）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写真的思考\",\n    \"author\": \"饭泽耕太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005058-c4eaa8?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图绘暹罗\",\n    \"author\": \"通猜・威尼差恭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866\",\n    \"category\": \"泰国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰国通史\",\n    \"author\": \"段立生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023805-06bd3d?p=8866\",\n    \"category\": \"泰国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塑造世界经济的50项伟大发明\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866\",\n    \"category\": \"发明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊效应\",\n    \"author\": \"娜塔莉・伯格/米娅・奈茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级转化率\",\n    \"author\": \"陈勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"25%的回头客创造75%的利润\",\n    \"author\": \"高田靖久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售的本质\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售\",\n    \"author\": \"范鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028200-21484f?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售进化论\",\n    \"author\": \"陈欢/陈澄波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远的零售\",\n    \"author\": \"厉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021438-4c2d0b?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售心理战\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015999-2d2d27?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富甲美国\",\n    \"author\": \"山姆・沃尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014853-c66266?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品没有秘密\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售时代三部曲（套装共三册）\",\n    \"author\": \"杰弗里・米勒/大卫・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售哲学系列：7-11便利店创始人自述（套装共2册）\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国四百年\",\n    \"author\": \"布・斯里尼瓦桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490923-e9b635?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六朝文明（中译修订版）\",\n    \"author\": \"丁爱博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491355-eb0d4e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金：权力与财富的世界简史\",\n    \"author\": \"伯德・史蒂芬・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491481-144bc0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹集中营史（全2册）\",\n    \"author\": \"尼古劳斯・瓦克斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491625-c415d8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变历史的香料商人\",\n    \"author\": \"贾尔斯・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491709-49d668?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲人与权臣\",\n    \"author\": \"詹姆斯・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491652-6fd685?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊思想与文化\",\n    \"author\": \"吴晓群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491883-e507e4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭的失落之城\",\n    \"author\": \"斯蒂文・朗西曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491781-3f42cf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大酋长伊丽莎白\",\n    \"author\": \"贾尔斯・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491760-3ce9b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疑案里的中国史\",\n    \"author\": \"艾公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492021-d4507b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十六史：完本精校大全集\",\n    \"author\": \"尹小林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492978-9ee6ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球海盗史\",\n    \"author\": \"彼得・莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492117-e4c788?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家们的作家\",\n    \"author\": \"克雷格・惠特洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492210-4f29b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联文史新论（套装21册）\",\n    \"author\": \"王家范等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492912-36485b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读通鉴论（全本全注全译）\",\n    \"author\": \"王夫之等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492498-e835e5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界环境史\",\n    \"author\": \"威廉·H. 麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492747-a5c12b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣殿骑士团：从神坛跌落尘埃\",\n    \"author\": \"迈克尔・克里根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493314-61cf2a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度6\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493095-500939?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国史译（全7册）\",\n    \"author\": \"伊利娜・谢尔盖耶夫娜・雷巴乔诺克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493698-8e176a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿得起放不下的大唐史（套装共6册）\",\n    \"author\": \"九皋寒叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493803-e9b7e5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸神的黄昏\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天中华史（全24卷）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495477-bb3864?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海外中国研究套书合集（50册）\",\n    \"author\": \"杜赞奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494265-1152a5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津欧洲史\",\n    \"author\": \"威廉·多伊尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495393-244d19?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反战之战\",\n    \"author\": \"乌娜·A. 海瑟薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495162-eff7e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋代中国的改革\",\n    \"author\": \"刘子健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495447-1ca964?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的十字军东征\",\n    \"author\": \"奈杰尔・克利夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斐德上海三部曲\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496977-14fca6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格：欧洲的十字路口\",\n    \"author\": \"德里克・塞耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497352-fa1e56?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：古典时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497439-2b024e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：帝国时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497445-985dca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：转型时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497463-481df6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超实用的日本史\",\n    \"author\": \"后藤武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497544-bdb659?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民族国家间的和平与战争（全2册）\",\n    \"author\": \"雷蒙・阿隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497541-2895bb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第三卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497601-28eb3a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋帝国的崛起\",\n    \"author\": \"安东・范德伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别人的动物园\",\n    \"author\": \"扬・莫恩浩特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497574-d5742d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第一卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国从此走向大唐\",\n    \"author\": \"叶言都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497640-aa733a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第二卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497706-77e84b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国与蛮族\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本战国群雄系列（套装八册）\",\n    \"author\": \"山冈庄八等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497868-3fc56a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊三百年\",\n    \"author\": \"罗德里克・比顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498024-c93e11?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进博物馆（套装12册）\",\n    \"author\": \"陕西省文物局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498555-c1a8e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条前夜的繁荣与疯狂\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煌煌商周\",\n    \"author\": \"高虫二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498399-fe1caa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的三国史（套装共3册）\",\n    \"author\": \"醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498435-696d7b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宽著作集第一辑+第二辑（13种15册全）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498888-2686f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本及其历史枷锁\",\n    \"author\": \"塔格特・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498516-d910c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命前夕的图书世界\",\n    \"author\": \"罗伯特・达恩顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498648-a7b92b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横滨中华街（1894～1972）\",\n    \"author\": \"韩清安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498627-a64b34?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟着文物穿越历史\",\n    \"author\": \"张志浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝来了\",\n    \"author\": \"马菁菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒枪手：慕尼黑的秘密间谍\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文治帝国\",\n    \"author\": \"艾公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498795-f4db48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明兴衰三百年\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498804-6bd132?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史纲\",\n    \"author\": \"李筠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498807-cf24d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佩拉宫的午夜\",\n    \"author\": \"查尔斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498822-cf18fd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文：近代日本奠基人\",\n    \"author\": \"伊藤之雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498831-0dc067?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九说中国系列（第一辑·全九册）\",\n    \"author\": \"江晓原等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498858-bb9ccb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海世界一万五千年\",\n    \"author\": \"阿兰・布隆迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498942-9f4334?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊文明的光芒\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499062-3dfd8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业革命前的欧洲社会与经济\",\n    \"author\": \"卡洛·M. 奇波拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹猎人\",\n    \"author\": \"安德鲁・纳戈尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499107-ffa76f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诅咒之塔\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499152-78edc0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第三辑（套装共10册）\",\n    \"author\": \"汉娜・韦斯特莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499902-209173?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊朗四千年\",\n    \"author\": \"霍昌・纳哈万迪/伊夫・博马提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499314-26cba2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎陷落\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499338-db0284?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路大历史\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499356-2aa497?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国经济风暴\",\n    \"author\": \"张昕冉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499353-a57622?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志理想主义的诞生：席勒传\",\n    \"author\": \"吕迪格尔・萨弗兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499365-050061?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西乡隆盛与明治维新\",\n    \"author\": \"坂野润治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499371-114dcf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大加速：1945年以来人类世的环境史\",\n    \"author\": \"约翰·R.麦克尼尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499380-1d1f87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凝视上帝\",\n    \"author\": \"西蒙・赫弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499425-8eff3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美利坚的民族\",\n    \"author\": \"科林・伍达德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499449-5b4652?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔登战役\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转向：世界如何步入现代\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辉煌信标：美国灯塔史\",\n    \"author\": \"埃里克・杰・多林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499494-7adcd3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱世四百年（全3册）\",\n    \"author\": \"张程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499563-57bb66?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛雅三千年\",\n    \"author\": \"西尔韦纳斯・莫利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499653-c0d007?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清华建筑小史全系套装（套装共6册）\",\n    \"author\": \"孙大章等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500016-12c10e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珞珈筑记\",\n    \"author\": \"刘文祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499812-bde5c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第一辑（套装共10册）\",\n    \"author\": \"乔恩・怀特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500310-1289b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第二辑（套装共10册）\",\n    \"author\": \"艾米・贝斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500640-a5b55f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绯闻艺术史\",\n    \"author\": \"林微云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499971-4d8b4d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共有的习惯\",\n    \"author\": \"E.P. 汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500268-020026?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画以人传\",\n    \"author\": \"陈文璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个物品中的德国历史\",\n    \"author\": \"赫尔曼・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500205-230f28?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大帝国兴衰史（套装共4册）\",\n    \"author\": \"塞西尔・詹金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500286-2a28e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大战：1914～1918年的世界（全2册）\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500367-921478?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代\",\n    \"author\": \"朱迪丝・弗兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500562-7ac52d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利瓦尔\",\n    \"author\": \"玛丽・阿拉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500586-2ba984?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索恩日本史（全三卷）\",\n    \"author\": \"乔治・贝利・桑瑟姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500676-41bbe4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简读日本史\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500772-59176a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的历史精华·贝克知识丛书（套装共21册）\",\n    \"author\": \"汉斯-克里斯托弗・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500913-fd0de9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代\",\n    \"author\": \"马丁·J. 多尔蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501063-141e2f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被隔绝的女孩\",\n    \"author\": \"巴尔特・范埃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501051-01d0ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祥瑞：王莽和他的时代\",\n    \"author\": \"张向荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501060-79c4bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑士团九百年\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501162-ae68dd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·日本的历史套装（全10册）\",\n    \"author\": \"寺泽薫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501306-1c097f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返帕米尔\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501357-a9c1bd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服，1016-1130西西里的诺曼王朝Ⅰ\",\n    \"author\": \"约翰・朱利叶斯・诺威奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501414-844f43?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王国，1130-1194西西里的诺曼王朝Ⅱ\",\n    \"author\": \"约翰・朱利叶斯・诺威奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501453-a22ed4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本社会变迁研究套书（全4卷）\",\n    \"author\": \"中国日本史学会东北师范大学东亚研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501510-03fea8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病与人类历史\",\n    \"author\": \"约书亚·S.卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501513-c3ab6e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空5500年\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金线：织物如何改变了历史？\",\n    \"author\": \"卡西亚・圣克莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501624-793bc8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅海建作品集（套装共5册）\",\n    \"author\": \"茅海建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502044-913caf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎东方讲史（套装共九册）\",\n    \"author\": \"黎东方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502284-a5d182?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联当代学术丛书（套装10册）\",\n    \"author\": \"茅海建等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502293-05fab8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国的知识与制度转型\",\n    \"author\": \"桑兵/关晓红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502335-2fab88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本1941：导向深渊的决策\",\n    \"author\": \"堀田江理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502557-d83fcc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四运动史\",\n    \"author\": \"周策纵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502563-5afaed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争艺术史（全4卷）\",\n    \"author\": \"汉斯・德尔布吕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502593-9217ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画百年党史·开天辟地\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503298-2b5d77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国统治的逻辑\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李洁非明史系列三部曲\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503595-333015?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史帝国篇（第四季12册）\",\n    \"author\": \"查尔斯欧曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505485-7d1366?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰民族\",\n    \"author\": \"T.M.迪瓦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503739-f61668?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规训、惩罚与征服\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503931-6e6be2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英格兰简史大套装（套装共十册）\",\n    \"author\": \"埃德・韦斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504159-936447?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新编历史-元明清简史系列\",\n    \"author\": \"吴玉章等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504225-455a2a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新编历史小丛书（人物篇）\",\n    \"author\": \"戴毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504273-c088ee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史记（精注全译）（全12册）\",\n    \"author\": \"司马迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504366-972bdd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色的旗，蓝色的海\",\n    \"author\": \"埃里克・杰・多林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504423-4afc88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法度与人心\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504462-48faff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史战争篇（第三季12册）\",\n    \"author\": \"查尔斯欧曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505293-a53fe1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华学人丛书（第一辑）（套种共十五册）\",\n    \"author\": \"李细珠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504888-0865cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史大师课（全三册）\",\n    \"author\": \"许宏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504945-912385?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京绮梦\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504987-bfdd8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书信中的世界史\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505836-f1bc65?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落文明系列（套装共7卷）\",\n    \"author\": \"克里斯蒂娜・里格斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命史译丛（套装共六册）\",\n    \"author\": \"哈里・狄金森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506574-7351e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王树增战争系列（全5册）\",\n    \"author\": \"王树增\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506748-bc1f58?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马文学史（全3册）\",\n    \"author\": \"江澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506940-b655c7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南宋不忍细看\",\n    \"author\": \"晏建怀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506802-d15dec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国不演义\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506904-b9f4ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国史学要籍丛刊（全十三册）\",\n    \"author\": \"司马迁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507369-8d2f54?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隳三都\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507117-ec7ad5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间烟火\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507471-468a0e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色雅典娜：古典文明的亚非之根（套装全3卷共5册）\",\n    \"author\": \"马丁・贝尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未名中国史丛刊\",\n    \"author\": \"李孝聪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508422-bc780c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方学者眼中的东方伟人（套装共三册）\",\n    \"author\": \"迪克・威尔逊/迪克・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508434-a870e5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑与历史文化精选（套装共5本）\",\n    \"author\": \"汪荣祖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李顿调查团档案文献集\",\n    \"author\": \"郭昭昭等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508902-ee3647?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被遗忘的海上中国史\",\n    \"author\": \"罗荣邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508914-0714ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明：文化、野心，以及人与自然的伟大博弈\",\n    \"author\": \"菲利普・费尔南多-阿梅斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508923-b0e527?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的崛起\",\n    \"author\": \"约翰・马里奥特/格兰特・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508947-f67a76?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新史学&#038;多元对话系列（第一辑）\",\n    \"author\": \"陈怀宇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509076-0c1223?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人四千年（全两册）\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代人的日常生活2\",\n    \"author\": \"王磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509049-84a6b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物语日本史（全3册）\",\n    \"author\": \"平泉澄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509064-03b3d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治维新以来日本涉华学术调查系列丛书（套装共5册）\",\n    \"author\": \"常盘大定等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509337-ad0d6b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国的策套装（全五册）\",\n    \"author\": \"许葆云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509265-83b7d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京时代与英格兰\",\n    \"author\": \"埃莉诺・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代国字号事物的命运\",\n    \"author\": \"桑兵/关晓红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509313-0f5a5a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人三千年简史\",\n    \"author\": \"雷蒙德・P.谢德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦制两千年\",\n    \"author\": \"谌旭彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509367-728e53?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陋规：明清的腐败与反腐败\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509385-821866?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪与蛆虫\",\n    \"author\": \"卡洛・金茨堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509391-1e6f1a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲给大家的中国历史（套装共9册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509490-b9fe88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜间的战斗\",\n    \"author\": \"卡洛・金茨堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509478-1024cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第一辑（套装共4册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝物录\",\n    \"author\": \"尤迪特・沙朗斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第二辑（套装共6册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传奇之家：托马斯·曼一家的故事\",\n    \"author\": \"蒂尔曼・拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509748-852c52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第二季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的五个德国\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相：裕仁天皇与现代日本的形成\",\n    \"author\": \"赫伯特・比克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509922-37c72a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滔天洪水\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家国与世情\",\n    \"author\": \"十年砍柴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509973-b55da1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒品史：美国和墨西哥的百年恩怨\",\n    \"author\": \"卡门・博洛萨/迈克・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510021-718e77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个世纪的抗争：美国女权运动史\",\n    \"author\": \"埃莉诺・弗莱克斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510030-25e3e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想的轨迹\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510099-304ff5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战的终结：1985-1991\",\n    \"author\": \"罗伯特・瑟维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510135-274388?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马勇讲清史（全5册）\",\n    \"author\": \"唐彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510183-c8ea60?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反败为胜\",\n    \"author\": \"威廉・斯利姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510168-994493?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸运儿：晚清留美幼童的故事\",\n    \"author\": \"利尔・莱博维茨/马修・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510192-ccbbf4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索恩人物传记生而为王（全13册）\",\n    \"author\": \"汉内斯・默林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西学三书（套装共三册）\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510249-849869?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由主义被遗忘的历史\",\n    \"author\": \"海伦娜・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510303-b7bcd2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫禁城的荣光\",\n    \"author\": \"冈田英弘/神田信夫/松村润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510330-9ffe7e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本开国五十年史（全52卷）\",\n    \"author\": \"大隈重信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510348-4cff4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上谈兵\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界史的故事（套装共6册）\",\n    \"author\": \"苏珊・怀斯・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510552-7ebbe2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马名人传（全五册）\",\n    \"author\": \"普鲁塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张宗和日记（全二卷）\",\n    \"author\": \"张宗和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510597-3f3fea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张荫麟作品集（套装共四册）\",\n    \"author\": \"张荫麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510609-e084e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王的归程\",\n    \"author\": \"威廉・达尔林普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510789-d047d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国原生文明启示录（全新修订版）\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510822-79b18c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西双皇后\",\n    \"author\": \"南希・戈德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录（全本全注全译）\",\n    \"author\": \"杨春俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文\",\n    \"author\": \"泷井一博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与革命心理学\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史前人类生活大辟谣\",\n    \"author\": \"安托万・巴尔泽奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511002-65432a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高清一战全史（套装全3册）\",\n    \"author\": \"特霍兰・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511767-d6f291?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花之忠臣藏\",\n    \"author\": \"野口武彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511146-d2b38e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·克伦威尔\",\n    \"author\": \"特蕾西・博尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511191-682a44?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉家天下（1-4册）\",\n    \"author\": \"清秋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空王冠\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511281-8b102c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2000年以来的西方\",\n    \"author\": \"刘擎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511290-e2db6a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"条顿骑士团\",\n    \"author\": \"威廉・厄本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511374-0df96e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民族的重建\",\n    \"author\": \"蒂莫西・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511398-d8e38f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦谜：重新发现秦始皇（插图增订版）\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511506-fe2b0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将成为国王的教宗\",\n    \"author\": \"大卫・科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511473-61ec1e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的古希腊\",\n    \"author\": \"王冬妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511563-62e19d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩波日本史（共8卷）\",\n    \"author\": \"吉村武彦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511677-107009?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亨利八世与都铎王朝\",\n    \"author\": \"约翰・马图夏克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511740-575290?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦室：大卫·林奇传\",\n    \"author\": \"大卫・林奇/克里斯汀・麦肯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511773-8b51cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列二共13册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511929-1ff7f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人\",\n    \"author\": \"埃米尔・路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511845-4ad275?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大奥日本\",\n    \"author\": \"茂吕美耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511923-5b1f3b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命和拿破仑\",\n    \"author\": \"林恩・亨特/杰克・R. 森瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512043-6f670b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度量衡简史\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511983-ec1b7c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙马史\",\n    \"author\": \"矶田道史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511986-128e0c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：欧洲文明如何塑造现代世界\",\n    \"author\": \"胡里奥・克雷斯波・麦克伦南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512004-f37e6f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国的世界征服\",\n    \"author\": \"约西姆・巴克汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512010-b9109b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列总理私人史\",\n    \"author\": \"耶胡达・阿夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512085-4d09ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国：七雄博弈\",\n    \"author\": \"朱良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512049-91370e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁幕欧洲之新生\",\n    \"author\": \"卡尔・施勒格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1840年以来的中国\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512094-24957e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"津巴多口述史\",\n    \"author\": \"菲利普· 津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512103-83c3d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的午夜\",\n    \"author\": \"亚当・希金博特姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512130-738686?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非凡抄本寻访录\",\n    \"author\": \"克里斯托弗・德・哈梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512256-da56df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶病年代\",\n    \"author\": \"埃德・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512205-c22f7a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帖木儿之后\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512304-8a0c34?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走向火焰\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512313-ff672a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗曼诺夫皇朝\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512334-c3c90b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本5000年\",\n    \"author\": \"彭兴庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512352-c23aa4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希罗多德的镜子\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512361-e3c598?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法老的宝藏\",\n    \"author\": \"约翰・高德特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512496-f7d5bd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布与大航海时代\",\n    \"author\": \"华盛顿・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512508-b18cf7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人们的故事（套装3册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512532-808aae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲骨文有故事\",\n    \"author\": \"许进雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512556-901413?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高清日本战国史（套装全4册）\",\n    \"author\": \"樱雪丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512547-9faf73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白寿彝史学二十讲套装（共十一册）\",\n    \"author\": \"白寿彝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512733-8591d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德川幕府与御三家\",\n    \"author\": \"河合敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512616-03b4fd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九色鹿·唐宋系列（全五册）\",\n    \"author\": \"冯立君等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512697-5d7133?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出发去希腊\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512691-8dea22?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多极亚洲中的唐朝\",\n    \"author\": \"王贞平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512703-66fba9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战东线全史（套装全13卷）\",\n    \"author\": \"朱世巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513234-e38f4b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵帝国拜占庭\",\n    \"author\": \"理查德・菲德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古埃及女性\",\n    \"author\": \"克里斯蒂安・雅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512898-c00ee5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得看完的中国史\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512874-eab20b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍与叛徒\",\n    \"author\": \"本・麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512889-07541d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚汉双雄\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟随利玛窦来中国\",\n    \"author\": \"张西平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513096-e1c1a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横渡孟加拉湾\",\n    \"author\": \"苏尼尔・阿姆瑞斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513060-c0b1a2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华民国专题史（套装共18册）\",\n    \"author\": \"王川等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513258-eca3f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西世界史\",\n    \"author\": \"帕特里克・布琼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513288-07aed4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭三部曲\",\n    \"author\": \"约翰・朱利叶斯・诺里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513423-1f607d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第一季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西洋镜合集\",\n    \"author\": \"赵省伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513801-cd009d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路的世界\",\n    \"author\": \"海尔曼-约瑟夫・弗里施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513564-0046f8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的古城\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊史：从梭伦时代到公元前403年\",\n    \"author\": \"乔治・格罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513582-255bbf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的歧路\",\n    \"author\": \"马国川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513606-dd29b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路上的帝国\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513621-d0eb00?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字与文物的故事（套装共4册）\",\n    \"author\": \"许进雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513744-067186?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛极简中国史（修订珍藏版）\",\n    \"author\": \"阿尔伯特・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513678-179769?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古史六案\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513729-d47abf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：从蓬莱到罗马\",\n    \"author\": \"高洪雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513765-208e02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大人物的世界史\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513792-4193e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：十二种唐朝人生\",\n    \"author\": \"魏泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513810-ba6f6d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛世：西汉\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004632-07093a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛世：康乾\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004629-21ceb7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴逸文集（套装共12册）\",\n    \"author\": \"戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004710-58e865?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汗之怒\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004506-1bb50d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC苏格兰史\",\n    \"author\": \"尼尔・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越非洲两百年\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004452-fd0c14?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当大明遇上大清（全二册）\",\n    \"author\": \"宿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004389-c9a2fa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国不平等的起源\",\n    \"author\": \"伊莎贝尔・威尔克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的抵抗\",\n    \"author\": \"宿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004233-6220df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死秦始皇\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004158-8201b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝帝国：英国海军的兴衰\",\n    \"author\": \"本・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿诺德·汤因比传\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003873-4b5f8b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银、剑、石：拉丁美洲的三重烙印\",\n    \"author\": \"玛丽・阿拉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003672-fa8a61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的战争（1618-1648）\",\n    \"author\": \"约翰内斯・布克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003393-26399e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把世界装进火柴盒\",\n    \"author\": \"西蒙・加菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003369-e3fa61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新元史（全十册）\",\n    \"author\": \"柯劭忞等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003306-a208db?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚蠢的人类\",\n    \"author\": \"汤姆・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003243-bbb6f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向您告知，明天我们一家就要被杀\",\n    \"author\": \"菲利普・古雷维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003192-ccdfef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码女王\",\n    \"author\": \"贾森・法戈内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的荣耀\",\n    \"author\": \"历史研习社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003117-b1094a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度5\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将无同\",\n    \"author\": \"胡宝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002655-622be6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妆束：大唐女儿行\",\n    \"author\": \"左丘萌/末春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史景迁作品12册套装\",\n    \"author\": \"史景迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002556-1557e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上丝绸之路\",\n    \"author\": \"罗德里希・普塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002505-7e6ed9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从考古发现中国\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一路向西：东西方3000年\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002199-fb7d77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的战败\",\n    \"author\": \"桥本明子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002115-41f1b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10000年中国艺术史（全2册）\",\n    \"author\": \"王逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002127-c9e3e5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的中国史\",\n    \"author\": \"历史君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002040-b2ebf4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山居杂忆\",\n    \"author\": \"高诵芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002007-f88da6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏着：一个西班牙人的33年内战人生\",\n    \"author\": \"罗纳德・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001866-8ba183?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好看到睡不着的中国史（全4册）\",\n    \"author\": \"史壮宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001776-6db8e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方博弈往事\",\n    \"author\": \"九边\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001752-65085c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一读就上瘾的中国史\",\n    \"author\": \"温伯陵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001608-8e9514?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝：一座罗马城市的生与死\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001596-3c92ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中西医的博弈\",\n    \"author\": \"皮国立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本权力结构之谜\",\n    \"author\": \"卡瑞尔・范・沃尔夫伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000906-aafbe6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类善恶小史\",\n    \"author\": \"策妄・阿拉布坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000900-ed1aca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国：大暗黑时代的前奏曲\",\n    \"author\": \"鸟山居士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000855-46c47a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"4000年中国天文史\",\n    \"author\": \"让・马克・博奈・比多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000792-a0a2d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国（全新插图珍藏版）\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000723-5e1d6c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代朝鲜与日本\",\n    \"author\": \"赵景达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000528-ff6dab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包罗万象中外历史精选集（套装共20册）\",\n    \"author\": \"汤姆・利文等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000627-ea3343?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大洋\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应仁之乱\",\n    \"author\": \"吴座勇一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000261-4a809a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷兰海洋帝国史\",\n    \"author\": \"顾卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服的怒潮\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000099-60af65?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从那霸到上海\",\n    \"author\": \"孙歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999979-26d9ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史上的大帝国\",\n    \"author\": \"加布里埃尔・马丁内斯-格罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999973-6bcd2f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国套装（共2册）\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999904-67d00c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕竟战功谁第一（修订典藏本）\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999745-d06b6f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结所有和平的和平\",\n    \"author\": \"戴维・弗罗姆金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999736-5c71a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国史\",\n    \"author\": \"郑寅达/陈旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津艺术史系列（第一辑）\",\n    \"author\": \"罗宾・奥斯本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常之人\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999418-3ae058?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀柔远人\",\n    \"author\": \"何伟亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑之门\",\n    \"author\": \"理查德・阿尔德里奇/罗里・科马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋之变，1063-1086\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999199-15db8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔之城\",\n    \"author\": \"保罗・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999031-bcb0af?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国霸权\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争三部曲\",\n    \"author\": \"唐纳德・卡根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998965-3139a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998593-2b2916?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审判希特勒\",\n    \"author\": \"大卫・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998536-d8c07b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（经济篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许倬云说美国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰晤士：大河大城\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海权：海洋帝国与今日世界\",\n    \"author\": \"詹姆斯・斯塔夫里迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997723-fe76ef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肮脏的三十年代\",\n    \"author\": \"蒂莫西・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋与汉道\",\n    \"author\": \"陈苏镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997624-363d35?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷之前的艾希曼\",\n    \"author\": \"贝蒂娜・施汤内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997453-459c45?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒与20世纪德国\",\n    \"author\": \"汉斯・莫姆森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997363-fc796f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"严嵩与张居正\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997336-91c17f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新美国\",\n    \"author\": \"弗雷德里克・洛根・帕克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史2\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997261-6d28e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盟友\",\n    \"author\": \"琳恩・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史3\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996865-28d03d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国内战史：1861-1865\",\n    \"author\": \"詹姆斯・福特・罗德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996796-130fe4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与法兰西第一帝国\",\n    \"author\": \"威廉・奥康纳・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996736-b9c328?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美洲奴隶贸易\",\n    \"author\": \"约翰・伦道夫・斯皮尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996619-c30f76?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿育王\",\n    \"author\": \"文森特・阿瑟・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996580-36df48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承袭的权力\",\n    \"author\": \"乔瓦尼・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996505-07420a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主德国的秘密读者\",\n    \"author\": \"齐格弗里德・洛卡蒂斯/英格里德・宗塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996481-32da34?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使日十年\",\n    \"author\": \"约瑟夫・C.格鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996427-a28791?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年战争史：1618-1648\",\n    \"author\": \"塞缪尔・罗森・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史：从拜占庭建城到君士坦丁堡陷落\",\n    \"author\": \"查尔斯・奥曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996493-f3ded1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊史（全两册）\",\n    \"author\": \"查尔斯・奥曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996343-d966c9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国成长三部曲\",\n    \"author\": \"弗雷德里克・刘易斯・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996151-fcfc33?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳大利亚史\",\n    \"author\": \"欧内斯特・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996043-23ee0f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战：繁荣的幻灭\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战：黑暗的年代\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995848-9bb1c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰斐逊总统\",\n    \"author\": \"约翰・托里・莫尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国艺术史\",\n    \"author\": \"塞缪尔·G.W.本杰明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995716-d01373?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上帝国：现代航运世界的故事\",\n    \"author\": \"洛丽・安・拉罗科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995551-55cc18?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透《资治通鉴》（战国到三国·共7册）\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995530-d3ff91?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度文明史\",\n    \"author\": \"常磐大定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995485-394351?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清史九讲\",\n    \"author\": \"内藤湖南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995440-976d6f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马三巨头\",\n    \"author\": \"查尔斯・梅里维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995458-5d95b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两京十五日（全2册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995422-f90173?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史5\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995404-e9c71c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨兽：工厂与现代世界的形成\",\n    \"author\": \"乔舒亚・B.弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人眼中的中国史（全4册）\",\n    \"author\": \"堀敏一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995227-02574c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学（作家榜经典文库）\",\n    \"author\": \"H. A. 丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的镜子（全新修订版）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与传奇\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995116-27f3e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客居己乡\",\n    \"author\": \"哲尔吉・康拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大故宫六百年风云史\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大梦无疆\",\n    \"author\": \"西蒙・佩雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时中国1940-1946\",\n    \"author\": \"格兰姆・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995017-6778ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国：一个国家的记忆\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人史纲\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺曼征服\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"床的人类史\",\n    \"author\": \"布莱恩・费根/纳迪亚・杜兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力与反暴力\",\n    \"author\": \"谭旋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994615-7c3ab4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廷巴克图\",\n    \"author\": \"约书亚・哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉兴亡四百年2\",\n    \"author\": \"李金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994534-e30d7c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史与人类的未来（修订版）\",\n    \"author\": \"弗雷德・斯皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994171-41fd5a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前半生（全本）\",\n    \"author\": \"爱新觉罗・溥仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分身：新日本论\",\n    \"author\": \"李永晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993670-c0a10d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"始皇帝：秦始皇和他生活的时代\",\n    \"author\": \"鹤间和幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992335-5f1bd7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何以中国\",\n    \"author\": \"许宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史性的体制\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌徒恺撒\",\n    \"author\": \"马丁・耶内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武英殿本四库全书总目·上（1-30册）\",\n    \"author\": \"纪昀等纂修编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994612-c07393?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武英殿本四库全书总目·下（31-60册）\",\n    \"author\": \"纪昀等纂修编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994516-301912?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公司与将军\",\n    \"author\": \"亚当・克卢洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991738-0e7446?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈仓天心东方美学三书\",\n    \"author\": \"冈仓天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991678-e1d2d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊花王朝\",\n    \"author\": \"胡炜权\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991672-1fcdce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的本质\",\n    \"author\": \"A.C.葛瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯维辛的文身师\",\n    \"author\": \"希瑟・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991558-daf390?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉兴亡四百年\",\n    \"author\": \"李金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991453-c67787?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年维新\",\n    \"author\": \"铲史官\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991513-1cd046?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津古罗马史\",\n    \"author\": \"约翰・博德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丝绸到硅\",\n    \"author\": \"杰弗里・加滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楼兰\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990937-7c842c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（增订版）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以眼还眼\",\n    \"author\": \"米切尔·P·罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的情报与外交生涯\",\n    \"author\": \"熊向晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华文明史（全四卷）\",\n    \"author\": \"袁行霈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990388-6ec689?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国货币史\",\n    \"author\": \"彭信威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅特涅：帝国与世界（全2册）\",\n    \"author\": \"沃尔弗拉姆・希曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华二千年史（套装共3册）\",\n    \"author\": \"邓之诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990280-51b8f7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原罪、梦想与霸权\",\n    \"author\": \"维克多・基尔南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊史纲（套装共5册）\",\n    \"author\": \"狄奥多罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990118-568fff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏杨白话版资治通鉴（全72册）\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国政治思想史（套装共3册）\",\n    \"author\": \"刘泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋南北朝简史\",\n    \"author\": \"劳榦先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990064-033d75?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁古文明发现史\",\n    \"author\": \"布莱恩・费根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989986-64a34d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当权的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋之际的政治权力与家族网络\",\n    \"author\": \"仇鹿鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989743-9081ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国往事1905-1949（共四册）\",\n    \"author\": \"赵柏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989617-e19045?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祸起1914\",\n    \"author\": \"克斯・黑斯廷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989533-0de9f7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋南北朝史十二讲\",\n    \"author\": \"周一良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989491-004df4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的到来\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧变\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国·点评本（全11册）\",\n    \"author\": \"孙皓晖/谢有顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988537-4ac278?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九色鹿•边疆史系列（全7册）\",\n    \"author\": \"薛小林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎和会与北京政府的内外博弈\",\n    \"author\": \"邓野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（041-050）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝定居指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝穿越指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京人的世界\",\n    \"author\": \"菲利普・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986962-f7608b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装的艺术\",\n    \"author\": \"本・雅格达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简20世纪史\",\n    \"author\": \"妮古拉・查尔顿/梅雷迪思・麦克阿德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986602-539487?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实践智慧\",\n    \"author\": \"野中郁次郎/荻野进介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战解放三部曲系列（套装共6册）\",\n    \"author\": \"里克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986572-e0e277?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年读史记（套装全5册）\",\n    \"author\": \"张嘉骅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986401-311f21?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身大师\",\n    \"author\": \"萨拉・卡明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大征服\",\n    \"author\": \"休・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简史：世界隐秘知识博库（套装全4册）\",\n    \"author\": \"大卫・沃克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986746-917056?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋案重审\",\n    \"author\": \"尚小明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985948-5c1a66?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三国\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国策（全本全注全译）\",\n    \"author\": \"缪文远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985609-204824?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搜历史\",\n    \"author\": \"易小荷/曲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985588-42c02a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光博物馆\",\n    \"author\": \"人民日报社新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五万年中国简史（全二册）\",\n    \"author\": \"姚大力等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985504-47fbca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沿坟墓而行\",\n    \"author\": \"纳韦德・凯尔曼尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚经典作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人：从殖民到民主的历程\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985291-454b87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神文时代\",\n    \"author\": \"孙英刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985255-8c1141?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的逻辑\",\n    \"author\": \"胡悦晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985243-9b3e36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐铁论（全本全注全译）\",\n    \"author\": \"陈桐生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985165-67a2d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华遗韵\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华心影\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教思想史（套装全3卷）\",\n    \"author\": \"胡斯都·L.冈察雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985126-1a8242?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音调未定的传统（增订本）\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985084-f06396?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教史（套装共2册）\",\n    \"author\": \"胡斯托・冈萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新序（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掘墓人\",\n    \"author\": \"吕迪格・巴特/豪克・弗里德里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985024-aa55e8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文物中国史\",\n    \"author\": \"中国国家博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国海：墨西哥湾的历史\",\n    \"author\": \"杰克·E.戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984943-5a4981?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985012-e16de7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海传：叶辛眼中的上海\",\n    \"author\": \"叶辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世恒河\",\n    \"author\": \"乔治・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文史通义校注（中华国学文库）\",\n    \"author\": \"章学诚著/叶瑛校注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984772-eeffe4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴越春秋（全本全注全译）\",\n    \"author\": \"崔冶译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：世界大战的时代（全三册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困学纪闻注\",\n    \"author\": \"王应麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984739-88bbe6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国佛教通史（套装十五卷）\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古历史拼图\",\n    \"author\": \"邹进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984655-a06873?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日耳曼尼亚\",\n    \"author\": \"西蒙・温德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984622-8c00f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋论（全本全注全译）\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文通史\",\n    \"author\": \"詹尼特・勒博・本顿/罗伯特・笛亚尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争论（全三册）\",\n    \"author\": \"克劳塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画世界史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖丛谈（注音注释插图本）\",\n    \"author\": \"连阔如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984292-077343?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃：社会如何选择成败兴亡\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曹操：打不死的乐观主义者\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983932-901fe3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌与钢铁（修订版）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋全传（作家榜经典文库）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰王\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983881-bdebff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津世界史丛书（共四册）\",\n    \"author\": \"贾斯珀・格里芬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983875-afdd9b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史通（全本全注全译）\",\n    \"author\": \"白云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983833-e75058?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正统与华夷\",\n    \"author\": \"刘浦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983797-3ed0c7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人物志（全本全注全译）\",\n    \"author\": \"刘劭/梁满仓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫本武藏全传（套装共5册）\",\n    \"author\": \"吉川英治/小山胜清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983713-9b788f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史\",\n    \"author\": \"克劳斯·P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商君书（全本全注全译）\",\n    \"author\": \"石磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983665-3e96e4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希波战争\",\n    \"author\": \"G.W.考克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983626-e7197b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋风宝剑孤臣泪\",\n    \"author\": \"姜鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983611-ecaec9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有所不为的反叛者\",\n    \"author\": \"罗新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983353-cca417?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾维钧回忆录（全13册）\",\n    \"author\": \"顾维钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983332-e78898?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美孚石油公司史\",\n    \"author\": \"艾达・塔贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被统治的艺术\",\n    \"author\": \"宋怡明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983314-16ffcd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代主义：从波德莱尔到贝克特之后\",\n    \"author\": \"彼得・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳伽蓝记（全本全注全译）\",\n    \"author\": \"尚荣译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭一千年\",\n    \"author\": \"狄奥尼修斯・史塔克普洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游牧民的世界史（修订版）\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在台湾发现历史\",\n    \"author\": \"杨渡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982489-7f9cfb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5000年文明启示录\",\n    \"author\": \"威廉·H.麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982480-ddd078?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁极简科学史\",\n    \"author\": \"威廉・拜纳姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982441-5807b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼记（全本全注全译）\",\n    \"author\": \"胡平生译注/张萌译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长安与河北之间\",\n    \"author\": \"仇鹿鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054402-00b665?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑大帝（全2册）\",\n    \"author\": \"安德鲁・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家人父子\",\n    \"author\": \"赵园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053889-726410?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦汉帝国\",\n    \"author\": \"西嶋定生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053790-cd6e5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"士大夫政治演生史稿\",\n    \"author\": \"阎步克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元好问传\",\n    \"author\": \"朱东润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053739-812d98?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重审中国的“近代”\",\n    \"author\": \"孙江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053655-c514d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫卧儿帝国\",\n    \"author\": \"H.G.基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053571-9577f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔弗格森看历史（共5册）\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053550-51e73c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱锺书交游考\",\n    \"author\": \"谢泳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053523-510bb0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历滇缅公路（套装共4本）\",\n    \"author\": \"内维尔・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广场与高塔\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053496-3c88ef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国中亚征服史\",\n    \"author\": \"G. D.古拉提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053502-bdd0ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋玄学史（第二版）\",\n    \"author\": \"余敦康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术史：1940年至今天\",\n    \"author\": \"乔纳森・费恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一看就懂的大汉史（修订版）\",\n    \"author\": \"朱真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053139-fdde88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一书通识世界五千年历史悬案\",\n    \"author\": \"仲英涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053085-b9a1ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的决裂\",\n    \"author\": \"汤姆斯·F. 密勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富可敌国（经典版）\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人与美国人\",\n    \"author\": \"徐国琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052743-2f01b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通鉴纪事本末（注译本）全42卷\",\n    \"author\": \"袁枢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052959-de2d4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国纵横\",\n    \"author\": \"史景迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052362-4807ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中法海战\",\n    \"author\": \"陈悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052590-a0f649?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至暗时刻\",\n    \"author\": \"安东尼・麦卡滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052338-7e11b2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的世界史套装（全15卷）\",\n    \"author\": \"肖石忠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马技术史（贝克知识丛书）\",\n    \"author\": \"赫尔穆特・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观察家精选系列（套装共7册）\",\n    \"author\": \"迈克尔・霍华德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051912-677f1d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙史（贝克知识丛书）\",\n    \"author\": \"瓦尔特·L.伯尔奈克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进攻日本\",\n    \"author\": \"雷蒙德・戴维斯/丹・温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051780-7e58b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·兴亡的世界史（全九卷）\",\n    \"author\": \"森谷公俊等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052227-3cba4a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典时代的终结（贝克知识丛书）\",\n    \"author\": \"哈特温・布兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战（贝克知识丛书）\",\n    \"author\": \"弗尔克・贝克汉恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轴心时代\",\n    \"author\": \"凯伦・阿姆斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马的日常生活\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中东史（套装共3册）\",\n    \"author\": \"哈全安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·马克思：生平与环境\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史无间道\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史（贝克知识丛书）\",\n    \"author\": \"克劳斯・布林格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051513-17a241?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十世纪德国史（贝克知识丛书）\",\n    \"author\": \"安德烈亚斯・维尔申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051465-79abc2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米塞斯评传\",\n    \"author\": \"伊斯雷尔·M·柯兹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老北京的记忆\",\n    \"author\": \"张善培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051321-5b328c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从航海图到世界史\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才时代\",\n    \"author\": \"A.C.格雷林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金犀牛\",\n    \"author\": \"富威尔-艾玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宜诺斯艾利斯传\",\n    \"author\": \"詹姆斯・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的铁骑\",\n    \"author\": \"刘澍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051048-0840f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定中国史\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051033-abeffa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定人物论\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印尼Etc\",\n    \"author\": \"伊丽莎白・皮萨尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050922-272408?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈尔滨档案\",\n    \"author\": \"玛拉・穆斯塔芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050781-93c481?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大外交\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家、经济与大分流\",\n    \"author\": \"皮尔・弗里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"各朝各代那些事儿（套装30册）\",\n    \"author\": \"昊天牧云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050676-782b7a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资治通鉴启示录（全二册）\",\n    \"author\": \"张国刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050523-9bace2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志公敌\",\n    \"author\": \"杰弗里・赫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤因比著作集（套装全7册）\",\n    \"author\": \"阿诺德・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独霸中东\",\n    \"author\": \"雅科夫・卡茨/阿米尔・鲍博特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的复辟\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：决定欧洲命运的四天\",\n    \"author\": \"蒂姆・克莱顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十五史简明读本（全15册）\",\n    \"author\": \"汪受宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050169-8543b7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争时期日本精神史\",\n    \"author\": \"鹤见俊辅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049854-91db68?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向和平宣战\",\n    \"author\": \"罗南・法罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049848-3b94eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邂逅秦始皇\",\n    \"author\": \"中信出版·大方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049749-255362?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：从古代源头到20世纪（全3册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的经济课\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枫丹白露宫\",\n    \"author\": \"蒂埃里・萨尔芒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧京人物影像馆（套装三册）\",\n    \"author\": \"张社生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049425-7f26ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化的江山·第一辑（全4册）\",\n    \"author\": \"刘刚/李冬君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西域余闻\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚女王：帝国女统治者的秘密传记（全2册）\",\n    \"author\": \"茱莉娅・贝尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年（全新增订版）\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宽容、狭隘与帝国兴亡\",\n    \"author\": \"艾米・蔡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049143-5ef8f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋那杯茶，战国这碗酒（套装共4册）\",\n    \"author\": \"南柯月初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太文明\",\n    \"author\": \"S.N.艾森斯塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的多角度解读（套装共20册）\",\n    \"author\": \"蒋廷黻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝简史\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048765-cc45e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的隐秘角落\",\n    \"author\": \"陆波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马背上的朝廷\",\n    \"author\": \"张勉治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048699-77f374?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾志所向\",\n    \"author\": \"孙中山/许仕廉编著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈舜臣说十八史略：中国历史极简本\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048681-5bcfb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金家族的最后一个王爷\",\n    \"author\": \"朱文楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的起源\",\n    \"author\": \"理查德・利基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048492-6ce106?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲一万年（全三册）\",\n    \"author\": \"J.M.罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048477-099fc8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史：从上古传说到1949\",\n    \"author\": \"邓广铭/田余庆/戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史（套装15册）\",\n    \"author\": \"哈罗德坦珀利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术史十议\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国兴亡史三部曲\",\n    \"author\": \"罗伯特・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047541-286b5b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彗星年代\",\n    \"author\": \"丹尼尔・舍恩普夫卢格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国（套装共2册）\",\n    \"author\": \"萧然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋大义\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴人\",\n    \"author\": \"罗伯特・戴维斯/贝丝・琳达史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠、虱子和历史\",\n    \"author\": \"汉斯・辛瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国之衰\",\n    \"author\": \"王三义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046941-f63985?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵器史\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒退的帝国：朱元璋的成与败\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新食货志\",\n    \"author\": \"杜君立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅰ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅱ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转折时代\",\n    \"author\": \"茱莉亚・瓜尔内里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046326-8b0fec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔三城记\",\n    \"author\": \"贝塔妮・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英殖民帝国\",\n    \"author\": \"阿尔弗雷德・考尔德科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙无敌舰队\",\n    \"author\": \"加勒・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布、大航海时代与地理大发现\",\n    \"author\": \"约翰・S.C.阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"党员、党权与党争\",\n    \"author\": \"王奇生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大金王朝\",\n    \"author\": \"熊召政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046032-54fc0e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲古兵器图说\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最残酷的夏天：美国人眼中的越南战争\",\n    \"author\": \"菲利普・卡普托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马元老院与人民\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝廷与党争\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045885-5bdfc7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明（套装共2册）\",\n    \"author\": \"玛丽・比尔德/戴维・奥卢索加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜北平（全2册）\",\n    \"author\": \"保罗・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045792-854bf8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩全集（全31册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内忧与外患\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045750-19a698?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：从史前到21世纪（第7版新校本）\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045897-0418e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝的末路\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045705-73a219?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的海（全2册）\",\n    \"author\": \"大卫・阿布拉菲亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚明大变局\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045558-e69b30?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶战争（修订版）\",\n    \"author\": \"周重林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代丝绸之路的绝唱\",\n    \"author\": \"罗三洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045555-39eb63?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新政与盛世\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045420-8e75ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度4\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从鹏扶摇到蝶蹁跹\",\n    \"author\": \"崔宜明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"當帝國回到家\",\n    \"author\": \"華樂瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045342-435071?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马基雅维利语录\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045288-8aa412?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敌人与邻居\",\n    \"author\": \"伊恩・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年文明史\",\n    \"author\": \"勒尔・兹威克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历朝通俗演义（全十一册）\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045354-75bb47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年悖论\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045231-d7d6f7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格群岛\",\n    \"author\": \"亚历山大・索尔仁尼琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045198-ec8982?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火枪与账簿\",\n    \"author\": \"李伯重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪思想史：从弗洛伊德到互联网\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"称霸（上下册）\",\n    \"author\": \"刘勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲之门\",\n    \"author\": \"谢尔希・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045066-209a47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说说十大日本侵华人物\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045075-ebfb55?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典里的中国（套装共十册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本当代名医访谈录\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045093-bd6d39?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强势生存\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044985-7bb35e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣彼得堡\",\n    \"author\": \"乔纳森・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045036-3a0aa2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊人\",\n    \"author\": \"伊迪丝・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：帝国建立与政权巩固\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：王朝鼎盛与命运转折\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上威尼斯\",\n    \"author\": \"亚历山德罗・马尔佐・马尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵者不祥\",\n    \"author\": \"刘鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨天的中国\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的叙述方式\",\n    \"author\": \"茅海建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044724-930fe0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（中国传统节日）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大争之世：战国\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044667-a224f9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的城墙与城门\",\n    \"author\": \"喜仁龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044700-c36d74?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝物语（套装全四册）\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与记忆中的第三帝国\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从幕末到明治\",\n    \"author\": \"佐佐木克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044436-c0c700?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自纳粹地狱的报告\",\n    \"author\": \"米克洛斯・尼斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运攸关的抉择\",\n    \"author\": \"伊恩・克肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫看大门\",\n    \"author\": \"维一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们最幸福\",\n    \"author\": \"芭芭拉・德米克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银元时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香料漂流记\",\n    \"author\": \"加里・保罗・纳卜汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044238-605eec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史\",\n    \"author\": \"A.A.瓦西列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪五大传记书系（全5册）\",\n    \"author\": \"吴晗/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044160-869a78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马其顿的亚历山大\",\n    \"author\": \"彼得・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命\",\n    \"author\": \"维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简算法史\",\n    \"author\": \"吕克・德・布拉班迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇宫日落（全2册）\",\n    \"author\": \"姜建强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043920-9d3751?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊与灰鹰（套装共3册）\",\n    \"author\": \"丽贝卡・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温莎王朝\",\n    \"author\": \"汤姆・利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的中国历史故事（作家榜经典文库）\",\n    \"author\": \"汤芸畦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从历史看组织\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043785-33f6ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1683维也纳之战\",\n    \"author\": \"安德鲁・惠克罗夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草与禾\",\n    \"author\": \"波音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043632-3f8944?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇位之争\",\n    \"author\": \"贾杜纳斯・萨卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043626-79ec52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人为何选择了战争\",\n    \"author\": \"加藤阳子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043608-500337?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的历史（全5册）\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔工的值班室\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043494-9e3f3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服与革命中的阿拉伯人\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆书籍史话\",\n    \"author\": \"大卫・皮尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中途岛奇迹\",\n    \"author\": \"戈登・普兰奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国在巴蜀\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲（珍藏版）\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候改变世界\",\n    \"author\": \"布莱恩・费根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043254-e54d87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡的百年史\",\n    \"author\": \"吉田茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043236-c78d00?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺桐城\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朕知道了\",\n    \"author\": \"傅淞岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使（见识丛书）\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国真有趣（全6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞纳河畔的一把椅子\",\n    \"author\": \"阿明・马洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造大英帝国\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南宋行暮\",\n    \"author\": \"虞云国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042666-24868f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放言有忌\",\n    \"author\": \"虞云国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042660-f57275?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简读中国史\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042147-004132?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打造消费天堂\",\n    \"author\": \"连玲玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一等人\",\n    \"author\": \"宋华丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042015-7eebfb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱德华一世\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国抗日战争史（四卷套装）\",\n    \"author\": \"张宪文/左用章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经典古典名著套装20册\",\n    \"author\": \"司马迁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041949-2c728c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史（修订珍藏版）\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041145-b13043?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇权不下县？\",\n    \"author\": \"胡恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041118-0a5ee2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的声音\",\n    \"author\": \"米歇尔・维诺克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041064-ba5df3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史（全六卷）\",\n    \"author\": \"邢来顺/吴友达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041019-a506b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧罗巴一千年\",\n    \"author\": \"伊恩・莫蒂默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040827-7ff413?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的流亡者\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖先的故事\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国边缘\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040506-d747d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝托尔特·布莱希特\",\n    \"author\": \"雅恩・克诺普夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040365-b4e7a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无论如何都想告诉你的世界史\",\n    \"author\": \"玉木俊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040368-13eaaa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝希摩斯\",\n    \"author\": \"托马斯・霍布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹：世界最自由城市的历史\",\n    \"author\": \"萧拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040344-803e71?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲剧遭遇\",\n    \"author\": \"佩吉・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040260-bac7dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六舰\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的命运\",\n    \"author\": \"凯尔・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040251-bcd0df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅毅说中华英雄史（全10册）\",\n    \"author\": \"梅毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040140-0d274d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轰炸东京\",\n    \"author\": \"詹姆斯·M.斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039969-7b615d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清宫玄机录\",\n    \"author\": \"金性尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039738-d46cd6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国与第一次世界大战\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典的胜利\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的崛起\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039726-2352c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"根部之血：美国的一次种族清洗\",\n    \"author\": \"特里克・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪满洲国\",\n    \"author\": \"迟子建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039606-452ac7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的文化\",\n    \"author\": \"克里斯蒂安・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隆美尔战时文件\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪击英雄\",\n    \"author\": \"海因茨・威廉・古德里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚守与突围\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039378-960d27?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的军事密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039258-40e6b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Gulag\",\n    \"author\": \"Anne Applebaum\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039219-530b32?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战完整历史实录（套装共38册）\",\n    \"author\": \"马夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方文明史：延续不断的遗产（第五版）\",\n    \"author\": \"马克・凯什岚斯基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁古典欧洲怪诞生活志\",\n    \"author\": \"伊丽莎白・阿奇博尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039012-b15b5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注定一战\",\n    \"author\": \"格雷厄姆・艾利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔干百年简史\",\n    \"author\": \"马细谱/余志和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038772-ae31dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南京传\",\n    \"author\": \"叶兆言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038607-9ea609?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以上帝和恺撒之名\",\n    \"author\": \"理查德・巴塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史4\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038724-389581?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝圆舞曲\",\n    \"author\": \"高林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史迪威与美国在中国的经验（1911-1945）\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚政进行曲\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一声礼炮\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清帝国风云系列（全三册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037521-529d85?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骄傲之塔\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文史哲入门三部曲\",\n    \"author\": \"吕思勉/胡适/郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037773-c7f7aa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原来你是这样的古人\",\n    \"author\": \"郁馥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037347-cb95ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方之镜\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方视野里的中国合集（共10册）\",\n    \"author\": \"庄士敦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1944阿登战役\",\n    \"author\": \"安东尼・比弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界简史\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036771-8aa3d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯教授讲世界历史（全6册）\",\n    \"author\": \"菲利普・范・内斯・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036933-5ae1e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉酒简史\",\n    \"author\": \"马克・福赛思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球使命\",\n    \"author\": \"亨利・H・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成化十四年\",\n    \"author\": \"梦溪石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035892-788349?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶大盗\",\n    \"author\": \"萨拉・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清中国的光与影\",\n    \"author\": \"杜德维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035868-bc3e37?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国史论衡\",\n    \"author\": \"邝士元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035766-7facf5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽必烈的挑战\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清王朝的最后十年\",\n    \"author\": \"菲尔曼・拉里贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035697-05658d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字的力量\",\n    \"author\": \"马丁・普克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的启蒙运动\",\n    \"author\": \"吉隆・・奥哈拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李开周说宋史套装（全3册）\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬崖边的名士\",\n    \"author\": \"大生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035499-d66334?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正大传\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035448-d271fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国\",\n    \"author\": \"易强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谜一样的清明上河图（精致版）\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035433-9e1141?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国与拿破仑的决战\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掉队的拉美\",\n    \"author\": \"塞巴斯蒂安・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年帝国史\",\n    \"author\": \"克里尚・库马尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035127-d8bec6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日的世界\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汴京之围\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034971-15dabf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未了中国缘\",\n    \"author\": \"约翰・帕顿・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034959-e448e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国大外交（60周年增订版）\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034854-6a0ae2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武士的女儿\",\n    \"author\": \"贾尼斯・宝莫伦斯・二村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034830-947585?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志文化（1945～2000年）\",\n    \"author\": \"赫尔曼・格拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034806-c7aa48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国\",\n    \"author\": \"周建行\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034782-d9ee2a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥艺术史（套装全8册）\",\n    \"author\": \"苏珊・伍德福德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034887-1b0a28?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：众人受到召唤\",\n    \"author\": \"生活月刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第4卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国公使夫人清宫回忆录\",\n    \"author\": \"苏珊・汤丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1945\",\n    \"author\": \"理查德・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034716-72269b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎烧了吗？\",\n    \"author\": \"拉莱・科林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情的革命\",\n    \"author\": \"乔伊斯・阿普尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊对德意志的暴政\",\n    \"author\": \"伊莉莎・玛丽安・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第2卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的去魔化\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第3卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮大陆\",\n    \"author\": \"基思・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军骑士（名著名译丛书）\",\n    \"author\": \"亨利克・显克维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034416-c53e79?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸葛亮：蜀汉舵手的历史真相\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦勃朗1642\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧太后\",\n    \"author\": \"菲利普・威廉姆斯・萨金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋人轶事汇编\",\n    \"author\": \"周勋初/葛渭君/周子来/王华宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正帝：中国的独裁君主\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴的故事（全六册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生幸存者\",\n    \"author\": \"温迪・霍尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033942-f423d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的试毒者\",\n    \"author\": \"罗塞拉・波斯托里诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列的诞生（全四册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理与世界霸权\",\n    \"author\": \"詹姆斯・费尔格里夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类六千年（上下两册）\",\n    \"author\": \"刘景华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我想重新解释历史\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033837-7ecd82?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大儒：王阳明\",\n    \"author\": \"周明河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐人轶事汇编\",\n    \"author\": \"周勋初/严杰/武秀成/姚松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀戮与文化\",\n    \"author\": \"维克托・戴维斯・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出帝制\",\n    \"author\": \"秦晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033669-f94efa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧亚皇家狩猎史\",\n    \"author\": \"托马斯・爱尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕的金桃\",\n    \"author\": \"薛爱华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米开朗琪罗与教皇的天花板\",\n    \"author\": \"罗斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美第奇家族的兴衰\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鏖战\",\n    \"author\": \"张新科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033360-8a444f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说中国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古江河\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化的精神\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口气读完的大国战史系列\",\n    \"author\": \"郭强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033447-bee645?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平杂说\",\n    \"author\": \"潘旭澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苍狼\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033288-e39de6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迦太基必须毁灭\",\n    \"author\": \"理查德・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033276-eb158a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：一部历史\",\n    \"author\": \"劳伦斯・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史（五卷本）\",\n    \"author\": \"卜宪群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033426-04b3cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战爆发前十天\",\n    \"author\": \"理查德・奥弗里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史深处的民国（全3册）\",\n    \"author\": \"江城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死屋\",\n    \"author\": \"丹尼尔・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033177-b3ac59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之痒\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的崛起\",\n    \"author\": \"波里比阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033156-220881?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常年代\",\n    \"author\": \"多莉丝・基恩斯・古德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郁金香热\",\n    \"author\": \"迈克・达什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝴蝶效应：历史漩涡中的汉唐帝国\",\n    \"author\": \"唐岛渔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033012-fd523b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被封印的唐史\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033009-fa3de9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国门阀大族的消亡\",\n    \"author\": \"谭凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖南人与现代中国\",\n    \"author\": \"裴士锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032976-2e3783?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列一共8册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗共和国\",\n    \"author\": \"科林・伍达德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032946-dc4fd1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的帝国\",\n    \"author\": \"约翰.S.戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩登时代：从1920年代到1990年代的世界\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032913-6118fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿色黄金：茶叶帝国\",\n    \"author\": \"艾伦・麦克法兰/艾丽斯・麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力密码\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032886-a0070a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"壶里春秋\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海昏侯刘贺\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032874-fa7f10?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋经国传\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特拉法尔加战役\",\n    \"author\": \"朱利安·S.科贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"额田女王\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032841-34c6b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜将至\",\n    \"author\": \"迈克尔・多布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032853-5f84af?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奠基者：独立战争那一代\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032793-3eb972?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之夏：美国独立的起源\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国民党高层的派系政治（修订本）\",\n    \"author\": \"金以林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆拿破仑\",\n    \"author\": \"布里昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文明史（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恺撒：巨人的一生\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史2\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032661-abddf5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥古斯都：从革命者到皇帝\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战在亚洲及太平洋的起源\",\n    \"author\": \"入江昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032592-58ba06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争\",\n    \"author\": \"唐纳德・卡根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032625-63c026?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第四辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦文学小史\",\n    \"author\": \"埃洛伊丝・米勒/萨姆・乔迪森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊莎贝拉\",\n    \"author\": \"克斯汀・唐尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二年，故人戏（全2册）\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯的劳伦斯\",\n    \"author\": \"斯科特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年变革者\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安第斯山脉的生与死\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032457-1c064e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印加帝国的末日\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊丽莎白女王\",\n    \"author\": \"艾莉森・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1945：大国博弈下的世界秩序新格局\",\n    \"author\": \"迈克・内伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的转型\",\n    \"author\": \"诺姆・马格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易打造的世界\",\n    \"author\": \"彭慕兰/史蒂文・托皮克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦幻之地\",\n    \"author\": \"库尔特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032250-da0889?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊奇迹的观念基础\",\n    \"author\": \"陈中梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032247-8b04d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑死病\",\n    \"author\": \"弗朗西斯・艾丹・加斯凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032304-c5b139?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与毁灭\",\n    \"author\": \"彼得・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一看就停不下来的中国史\",\n    \"author\": \"最爱君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032190-ca5444?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·杰斐逊与海盗\",\n    \"author\": \"布莱恩・吉米德/唐・耶格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦始皇：创造力一统天下\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032160-073320?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史（修订珍藏版）\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鉴古晓今更渊博（套装共4册）\",\n    \"author\": \"干春松/张晓芒/王阳明/吕思勉/曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032055-42ab1f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲与没有历史的人\",\n    \"author\": \"埃里克·R.沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德皇威廉二世回忆录\",\n    \"author\": \"威廉二世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一帝秦始皇（上下全2册）\",\n    \"author\": \"王立群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是清朝套装（全8册）\",\n    \"author\": \"鹿鼎公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031809-c21e9d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卢丹的恶魔\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031701-de423d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑与法兰西第一帝国（全2册）\",\n    \"author\": \"约瑟夫・富歇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031704-299c68?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑三世与法兰西第二帝国\",\n    \"author\": \"皮埃尔・德・拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪欧洲\",\n    \"author\": \"理查・威廉・丘奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔\",\n    \"author\": \"埃布鲁・宝雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国总参谋部\",\n    \"author\": \"斯宾塞・威尔金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷月孤灯·静远楼读史\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031359-488f0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林：一座城市的肖像\",\n    \"author\": \"罗里・麦克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往权力之路：叶卡捷琳娜大帝\",\n    \"author\": \"罗伯特·K·迈锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捡来的瓷器史\",\n    \"author\": \"涂睿明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031281-17ad02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图绘暹罗\",\n    \"author\": \"通猜・威尼差恭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：古典欧洲的诞生\",\n    \"author\": \"西蒙・普莱斯/彼得・索恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031152-135022?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：罗马帝国的遗产\",\n    \"author\": \"克里斯・威克姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：中世纪盛期的欧洲\",\n    \"author\": \"威廉・乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力与文化\",\n    \"author\": \"入江昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031056-457560?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明评点曾国藩家书\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030825-08c459?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季风帝国\",\n    \"author\": \"理查德・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内战记\",\n    \"author\": \"盖乌斯・尤利乌斯・恺撒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030756-3504a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首届国会\",\n    \"author\": \"弗格斯·M.博德韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子大历史\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿登纳回忆录（套装共4册）\",\n    \"author\": \"康拉德・阿登纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"垂帘听政\",\n    \"author\": \"向斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030708-e6f8d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利维亚日记\",\n    \"author\": \"切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐公元年\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030429-4057fa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不敢懈怠\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三千年来谁铸币\",\n    \"author\": \"王永生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类酷刑简史\",\n    \"author\": \"马克·P.唐纳利/丹尼尔·迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国极简史\",\n    \"author\": \"詹姆斯・霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战风云：史上最大规模战争的伤痛（全3册）\",\n    \"author\": \"杨少丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"义和团和八国联军真相\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030327-fd963d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四的另一面\",\n    \"author\": \"杨念群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030243-59c30f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天人之际：薛仁明读《史记》\",\n    \"author\": \"薛仁明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030213-f27649?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代巨人：明末耶稣会士在中国的故事\",\n    \"author\": \"邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的历史：诸神的踪迹\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匈奴史稿（增补版）\",\n    \"author\": \"陈序经\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030177-a6b1f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制造汉武帝\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030171-cabd6a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滴血的大朝代\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午战争\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030123-00cc8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋朝政坛319年系列丛书\",\n    \"author\": \"江永红/周宗奇/毕宝魁/郭晓晔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030120-a49339?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争系列\",\n    \"author\": \"青梅煮酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列：一个民族的重生\",\n    \"author\": \"丹尼尔・戈迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030108-c2ca36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一阅千年\",\n    \"author\": \"马克・科尔兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗\",\n    \"author\": \"杰克・威泽弗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030057-ad67d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的崩塌\",\n    \"author\": \"埃里克·H.克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030063-a42a80?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊本·赫勒敦\",\n    \"author\": \"罗伯特・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历史常识\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030000-796999?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命的倔强\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029979-766e1f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪战争艺术史（第一卷）\",\n    \"author\": \"查尔斯・威廉・欧曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030030-7c2c59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战术\",\n    \"author\": \"利奥六世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029895-0c0896?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情之战\",\n    \"author\": \"约翰·W.道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029877-ef77af?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燕国八百年\",\n    \"author\": \"彭华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029868-03d746?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被掩盖的原罪\",\n    \"author\": \"爱德华・巴普蒂斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北平无战事\",\n    \"author\": \"刘和平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029835-35966e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细讲中国历史丛书（套装共12册）\",\n    \"author\": \"李学勤/郭志坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030339-2eb1f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坐龙椅：明清帝王的风雨人生（套装共2册）\",\n    \"author\": \"范军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029742-e501d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑天挺西南联大日记（全二册）\",\n    \"author\": \"郑天挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029751-16b46e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜分波兰\",\n    \"author\": \"乔治・肖-勒费弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029763-26eb57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袍哥\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029658-37cafe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华史纲\",\n    \"author\": \"李定一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029643-40892a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾风云（1368-1683）\",\n    \"author\": \"张嵚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029589-c7bec5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸦片战争\",\n    \"author\": \"蓝诗玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029562-9dc4cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争\",\n    \"author\": \"赫克特·C. 拜沃特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃及四千年\",\n    \"author\": \"乔安・弗莱彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029427-79b57f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉花帝国\",\n    \"author\": \"斯文・贝克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029418-eec041?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆年代四部曲（套装共4册）\",\n    \"author\": \"艾瑞克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029361-ff5c8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗大陆：20世纪的欧洲\",\n    \"author\": \"马克・马佐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029334-f32666?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典遗产：希腊的遗产+罗马的遗产\",\n    \"author\": \"M.I.芬利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029247-2b7b69?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清危亡录\",\n    \"author\": \"凤城杜哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029211-fd2b9f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的梦魇\",\n    \"author\": \"刘衍钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029178-61ff6d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国内战回忆录（上下册）\",\n    \"author\": \"U.S.格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029088-94aa48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡椒的全球史\",\n    \"author\": \"玛乔丽・谢弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028983-15b29f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：宋史演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028935-86acbc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：明史演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028932-1448bd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：清史演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028929-e30705?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028860-2bbd11?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治维新亲历记\",\n    \"author\": \"萨道义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028479-ee9dee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万国一邦\",\n    \"author\": \"托马斯・本德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028398-a4da09?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林肯传\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028323-24d764?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：前汉演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028302-72b4a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：后汉演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028296-1399fb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：唐史演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028293-90a16c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国历史中的文化诱惑\",\n    \"author\": \"沃尔夫・勒佩尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关羽：神化的《三国志》英雄\",\n    \"author\": \"渡边义浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡王朝：翱翔欧洲700年的双头鹰\",\n    \"author\": \"卫克安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海都物语\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹秦\",\n    \"author\": \"王杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028002-3ba7b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉：帝国重臣的人生起落\",\n    \"author\": \"范军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027960-c3f3a3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雅宋：看得见的大宋文明\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028143-e3cd42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现燕然山铭\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027969-c72992?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丹药到枪炮\",\n    \"author\": \"欧阳泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年颠沛与千年往复\",\n    \"author\": \"王家范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027825-d31c6f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年羹尧之死\",\n    \"author\": \"郑小悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027813-3994d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽签与民主、共和\",\n    \"author\": \"王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的文明（套装共2册）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027801-a8005f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识分子\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027738-44fa7b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无规则游戏\",\n    \"author\": \"塔米姆・安萨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷马3000年\",\n    \"author\": \"亚当・尼科尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027369-65947b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅲ：血战长津湖\",\n    \"author\": \"何楚舞/凤鸣/陆宏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑的清真寺\",\n    \"author\": \"伊恩・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天：美国人眼中的朝鲜战争\",\n    \"author\": \"大卫・哈伯斯塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争\",\n    \"author\": \"儿岛襄\",\n    \"link\": \"链接未找到\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兄弟连（译林纪念版）\",\n    \"author\": \"斯蒂芬•E．安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马共和国的衰落\",\n    \"author\": \"A.H.比斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027213-bd8c70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京百年史：从江户到昭和\",\n    \"author\": \"爱德华・赛登施蒂克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027168-a2ebb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗与今日世界之形成\",\n    \"author\": \"杰克・威泽弗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027153-72f4c4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的影子帝国\",\n    \"author\": \"皮耶尔保罗・巴维里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐开国\",\n    \"author\": \"于赓哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027039-ea116e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四朝高僧传（全5册）\",\n    \"author\": \"慧皎/道宣/赞宁/如惺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027009-b8f825?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争史（详注修订本）\",\n    \"author\": \"修昔底德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026922-8375ca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史学的境界\",\n    \"author\": \"高华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"考古的故事\",\n    \"author\": \"埃里克·H.克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026685-adfaf2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史（详注修订本）\",\n    \"author\": \"希罗多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026571-4204f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：基督教欧洲的巨变\",\n    \"author\": \"马克・格林格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026463-94526e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：追逐荣耀\",\n    \"author\": \"蒂莫西・布莱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026451-3049ac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：竞逐权力\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026442-f6a633?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：地狱之行\",\n    \"author\": \"伊恩・克肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026433-bb103f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寡头\",\n    \"author\": \"戴维・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当图书进入战争\",\n    \"author\": \"莫里・古皮提尔・曼宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个世界的战争\",\n    \"author\": \"安东尼・帕戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026268-2ca776?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本维新六十年\",\n    \"author\": \"樱雪丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026166-909097?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度3\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026157-634aa1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战中的巴黎\",\n    \"author\": \"提拉・马奇奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025701-0b1776?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪人\",\n    \"author\": \"艾琳・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025578-a85503?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国\",\n    \"author\": \"克劳斯・P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"显微镜下的大明\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025350-ca3612?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绍兴十二年\",\n    \"author\": \"夏坚勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025293-69c02c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国战争史\",\n    \"author\": \"李湖光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国秩序的根基\",\n    \"author\": \"拉塞尔・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中5·竹林七贤\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中7·幸会！苏东坡\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中8·了不起的宋版书\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025230-9eef33?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中16·西南联大的遗产\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧神话\",\n    \"author\": \"卡罗琳・拉灵顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1924：改变希特勒命运的一年\",\n    \"author\": \"彼得・罗斯・兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹医生\",\n    \"author\": \"罗伯特・杰伊・利夫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025107-90ecdb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯南日记\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国史料编年辑证（全二册）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025077-d7a712?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京传奇\",\n    \"author\": \"拉尔斯・布朗沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025038-59b85c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可逃\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国大战略\",\n    \"author\": \"爱德华·N.勒特韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈洗冤录：满怀冰雪\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024981-db0d77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿帝国\",\n    \"author\": \"莉齐・克林汉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024939-01ef66?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩传\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024924-c79780?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱明王朝\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宽著作集第一辑（8种10册全）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025140-fdbb62?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断头王后：玛丽·安托瓦内特传\",\n    \"author\": \"斯・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024828-0ecc23?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆里的极简中国史\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷震传\",\n    \"author\": \"范泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的面目\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024786-a5d2dd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晋的王朝\",\n    \"author\": \"旧时艳阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024702-5db725?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二幅地图中的世界史\",\n    \"author\": \"杰里・布罗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024693-19bb78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国的崛起与衰落\",\n    \"author\": \"劳伦斯・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024621-eefeab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的哲学密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉丁美洲被切开的血管\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024495-ad2eac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本维新史\",\n    \"author\": \"赫伯特・诺曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024477-aaca5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋与文明\",\n    \"author\": \"林肯・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的故事（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋徽宗\",\n    \"author\": \"伊沛霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日不落帝国兴衰史（全五册）\",\n    \"author\": \"约翰・布莱尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024240-d3762e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明史不忍细看\",\n    \"author\": \"张朝山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023964-23b953?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐兴亡三百年\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023952-0cff73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国创世记：埃利斯建国史系列（套装共4册）\",\n    \"author\": \"约瑟夫·J.埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凛冬\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊人的故事（全三册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023988-a42df2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲中世纪三部曲+燃烧的远征（套装共4册）\",\n    \"author\": \"拉尔斯・布朗沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023808-852d17?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中苏关系史纲（增订版）\",\n    \"author\": \"沈志华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023796-f14eb6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的日本通史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023811-262c8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰国通史\",\n    \"author\": \"段立生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023805-06bd3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的印度通史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023724-9ae83b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克里米亚战争\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023688-1a0b47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回访历史\",\n    \"author\": \"伊娃・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023670-9aac87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯曼帝国六百年\",\n    \"author\": \"帕特里克・贝尔福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023592-246a21?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝腓特烈二世的故事（全2册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023466-0fbdd9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔比恩的种子\",\n    \"author\": \"大卫・哈克特・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁血蒙元\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋革新\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023322-d132ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石变法\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023325-383dbd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风流南宋\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清之际士大夫研究\",\n    \"author\": \"赵园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023301-4261b5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛史·晚清篇\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023268-c4b7c6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由之魂\",\n    \"author\": \"刘台平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简二战史\",\n    \"author\": \"奈杰尔・考索恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023217-136ca3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆皇帝的荷包\",\n    \"author\": \"赖惠敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023247-014af6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Jerusalem\",\n    \"author\": \"Simon Sebag Montefiore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023058-302eaa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞跃5000年\",\n    \"author\": \"克里昂・斯考森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活与命运\",\n    \"author\": \"瓦西里・格罗斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022971-fe6010?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖：一项心理史学研究\",\n    \"author\": \"查尔斯・B．斯特罗齐尔/丹尼尔・奥弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放战争（套装共6册）\",\n    \"author\": \"刘统等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造和平：1919巴黎和会及其开启的战后世界\",\n    \"author\": \"玛格丽特・麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"峰会：影响20世纪的六场元首会谈\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰女王的悲剧\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：计划外革命\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第一集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022830-3ddcad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第二集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误诊的艺术史\",\n    \"author\": \"董悠悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全译罗马帝国衰亡史（全12册）\",\n    \"author\": \"爱德华・吉本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022686-8c5d14?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥美国史\",\n    \"author\": \"苏珊・玛丽・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022683-97bf54?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥意大利史\",\n    \"author\": \"克里斯托弗・达根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022665-152e48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品人录\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读城记\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022617-f7baf2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的男人和女人\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022629-7a5047?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲话中国人\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022614-e2ccf9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅尔塔：改变世界格局的八天\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022569-a065df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人\",\n    \"author\": \"杨·T.格罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022545-465fc9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代史：1840-1937\",\n    \"author\": \"蒋廷黻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022515-8c554f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国史（全3卷）\",\n    \"author\": \"西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022530-d45c41?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥德国史\",\n    \"author\": \"玛丽・富布卢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022479-9288ae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五朝宰相\",\n    \"author\": \"姜狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022383-05455f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子传\",\n    \"author\": \"张远山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022350-a02974?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品读中国（套装共6册）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之都\",\n    \"author\": \"拉纳・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1943：中国在十字路口\",\n    \"author\": \"周锡瑞/李皓天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022260-f72b1c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Short Nights of the Shadow Catcher\",\n    \"author\": \"Egan, Timothy\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022299-6675d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Genghis Khan and the Making of the Modern World\",\n    \"author\": \"Jack Weatherford\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022176-fe3719?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁道之旅\",\n    \"author\": \"沃尔夫冈・希弗尔布施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国全史\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022050-eeaf02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗逻辑\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021993-ee1b86?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的启蒙\",\n    \"author\": \"马国川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021972-56b623?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现东亚\",\n    \"author\": \"宋念申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021969-acc1f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝那些事儿（套装共7册）\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷告白\",\n    \"author\": \"利皮卡・佩拉汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚裔美国的创生\",\n    \"author\": \"李漪莲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人的战争\",\n    \"author\": \"尼古拉斯・斯塔加特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年战争简史\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻影恐惧\",\n    \"author\": \"亚当・查莫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021573-27153d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦朝那些事儿（共3册）\",\n    \"author\": \"昊天牧云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021549-2b4b61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球帝国史\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思享家丛书（套装共4册）\",\n    \"author\": \"周濂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021486-85c08f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义简史\",\n    \"author\": \"于尔根・科卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格之恋\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021333-798278?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"档案：一部个人史\",\n    \"author\": \"蒂莫西・加顿艾什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教宗与墨索里尼\",\n    \"author\": \"大卫·I.科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗失的姆大陆之谜\",\n    \"author\": \"詹姆斯・乔治瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪简史\",\n    \"author\": \"杰弗里・布莱内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021225-d87722?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《伦敦新闻画报》记录的民国1926-1949（套装4册）\",\n    \"author\": \"沈弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国《小日报》记录的晚清（1891-1911）\",\n    \"author\": \"李红利/赵丽莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国彩色画报记录的中国1850-1937（套装共2册）\",\n    \"author\": \"赵省伟/李小玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021246-0c8518?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治天皇：1852-1912\",\n    \"author\": \"唐纳德・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021156-b23e9c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南北战争三百年\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021018-29e73a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崇祯大传奇（全三册）\",\n    \"author\": \"晏青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020979-10eee9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国国民性演变历程\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020961-2b4f8d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史3\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021012-b2a5b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市民底层笔记\",\n    \"author\": \"张礼士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020877-80c338?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五个人的战争\",\n    \"author\": \"马克・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020868-e951f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清棋局：明亡清兴卷\",\n    \"author\": \"刘澍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020847-19ba79?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯讲英国史（全彩图文版）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020844-2bcd58?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻画战勋\",\n    \"author\": \"马雅贞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020811-235335?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革史系列（共三册）\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020823-e86ce2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国日本I：时间的滋味\",\n    \"author\": \"茂吕美耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020751-1178c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国日本II：败者的美学\",\n    \"author\": \"茂吕美耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020739-6cce59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐这二百九十年1：贞观之路\",\n    \"author\": \"吃青菜的蜗牛\",\n    \"link\": \"链接未找到\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐这二百九十年2：天皇天后\",\n    \"author\": \"吃青菜的蜗牛\",\n    \"link\": \"链接未找到\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒林外史\",\n    \"author\": \"吴敬梓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020583-080d65?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别霸权!\",\n    \"author\": \"蒙・赖克/理查德・内德・勒博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020550-3cfb43?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷信与暴力\",\n    \"author\": \"亨利・查尔斯・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020472-3eaa48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙内战：真相、疯狂与死亡\",\n    \"author\": \"阿曼达・维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020454-d9c2eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法政纠结\",\n    \"author\": \"杨天宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020388-cbd634?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑的历史\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020424-b520de?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清朝野史大观（全三册）\",\n    \"author\": \"小横香室主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020262-2939f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁在世界的中央\",\n    \"author\": \"梁二平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020298-7a1189?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：大国博弈\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020181-db0efd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：大国之略\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020175-352ae5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史上的蒙古征服\",\n    \"author\": \"梅天穆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020139-2566c0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我身在历史何处\",\n    \"author\": \"埃米尔・库斯图里卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019992-bd477d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史2\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020037-5762be?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海的衰落\",\n    \"author\": \"布雷斯特德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020049-1f86d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国人：国家的形成1707-1832\",\n    \"author\": \"琳达・科利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019965-6c0b00?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力之路：林登·约翰逊传\",\n    \"author\": \"罗伯特・A.卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困顿与突围\",\n    \"author\": \"田文林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019911-f7637f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史上的南京之战（套装共2册）\",\n    \"author\": \"王洪光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019944-5497a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的进退\",\n    \"author\": \"雷颐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019887-1a680f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的裂缝\",\n    \"author\": \"雷颐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019896-3e4312?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁丢了美国\",\n    \"author\": \"安德鲁・杰克逊・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019956-8834da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本占领天津时期罪行实录\",\n    \"author\": \"郭登浩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019794-08091e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度，漂浮的次大陆\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的背影系列（套装共3册）\",\n    \"author\": \"诺曼・斯通等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019785-2a75d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近百年政治史\",\n    \"author\": \"李剑农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019722-b2f37a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张作霖大传\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019716-3c1ec2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可不知的非洲史\",\n    \"author\": \"杨益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019659-a63c03?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可不知的朝韩史\",\n    \"author\": \"杨益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019653-a807c8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆帝及其时代\",\n    \"author\": \"戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019704-d2dce7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科战役1941\",\n    \"author\": \"尼克拉斯・泽特林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019668-09e230?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《人权宣言》在晚清中国的旅行\",\n    \"author\": \"程梦婧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019650-a84eeb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝四川：纪念汶川地震十周年\",\n    \"author\": \"《华夏地理》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019644-61d102?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想史：从火到弗洛伊德（全二册）\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲文明史精品系列（套装共8册）\",\n    \"author\": \"阿曼达・维尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019635-e4c4dd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲现代史：从文艺复兴到现在（套装共2册）\",\n    \"author\": \"约翰・梅里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019770-f8308f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波斯战火\",\n    \"author\": \"汤姆・霍兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019572-97e2b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆窜行记\",\n    \"author\": \"顺手牵猴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019548-8a4e08?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大顺帝李自成\",\n    \"author\": \"李健侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019515-8b0c3f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明历史读本系列（套装共6册）\",\n    \"author\": \"牟钟鉴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019554-4d41ba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳门史1557-1999\",\n    \"author\": \"杰弗里・冈恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019521-94c448?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国命运（套装共3册）\",\n    \"author\": \"席勒/基佐/米涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019497-15bf57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明大历史\",\n    \"author\": \"伊恩・克夫顿/杰里米・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019500-4367ef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后三国战争史\",\n    \"author\": \"陈峰韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审问欧洲：二战时期的合作、抵抗与报复\",\n    \"author\": \"伊斯特万・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娜塔莎之舞：俄罗斯文化史\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019431-5c55a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的演变：19世纪史（全3册）\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019389-c4eb1e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的内战\",\n    \"author\": \"胡素珊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019377-b3f66d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个更安全的地方\",\n    \"author\": \"希拉里・曼特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019380-bb365e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天5：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019326-871ffb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲史概说\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019314-bb4568?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1913，一战前的世界\",\n    \"author\": \"查尔斯・埃默森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019293-a852b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019335-523960?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融可以颠覆历史\",\n    \"author\": \"王巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨人的对决：日德兰海战中的主力舰\",\n    \"author\": \"张宇翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019386-bcedf2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的教训\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019254-d01ce4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉重的皇冠\",\n    \"author\": \"克里斯托弗・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的代价\",\n    \"author\": \"托德·G·布赫霍尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019242-46e661?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的王国\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019212-e7ca0b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马：一座城市的兴衰史\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019185-aa4682?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国建国史系列（套装全3册）\",\n    \"author\": \"约瑟夫・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019095-53ad54?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金与铁：俾斯麦、布莱希罗德与德意志帝国的建立\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019062-89d9da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史中国书系（全九册）\",\n    \"author\": \"姜狼/醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018999-2e7771?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹梵高博物馆\",\n    \"author\": \"保拉・拉佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018915-b0ed02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林画廊\",\n    \"author\": \"威廉・德罗・鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018807-775ac1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国落日：晚清大变局\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018723-5c346e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造日本：1853-1964\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018555-7b50e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实即颠覆：无以名之的十年的政治写作\",\n    \"author\": \"蒂莫西・加顿艾什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018540-08e8a0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新视角全球简史套装（三册）\",\n    \"author\": \"莉奥妮・希克斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018528-cc4d08?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着回来的男人\",\n    \"author\": \"小熊英二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018474-680890?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏在地理中的历史学（共3册）\",\n    \"author\": \"林肯・佩恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018519-e91091?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服者：葡萄牙帝国崛起\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018390-117462?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西南联大行思录\",\n    \"author\": \"张曼菱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018297-9bd135?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌鸦之城：伦敦，伦敦塔与乌鸦的故事\",\n    \"author\": \"博里亚・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资治通鉴直解\",\n    \"author\": \"张居正整理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018210-d1a502?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史文化丛书（精选15册）\",\n    \"author\": \"王海利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019155-dbc0f5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸年轮：民国以来百年中国私人读本\",\n    \"author\": \"张冠生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017922-775184?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代政治得失\",\n    \"author\": \"钱穆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017871-5874f6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火堆上的晚清帝国\",\n    \"author\": \"刘大木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017859-df5ae7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的兴起\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017958-a45d43?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼谷子的局：战国纵横（1-11册套装）\",\n    \"author\": \"寒川子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017850-088a8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度2\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017880-5bd0da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Sea Wolves\",\n    \"author\": \"Lars Brownworth\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017679-c5a00a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不情愿的大师\",\n    \"author\": \"斯蒂芬・葛霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017631-5dd734?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枢纽：3000年的中国\",\n    \"author\": \"施展\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017586-220883?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白话史记\",\n    \"author\": \"杨燕起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017562-312941?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布局天下：中国古代军事地理大势\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017508-118f05?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赵匡胤：乱世枭雄开启文治盛世\",\n    \"author\": \"陈红晓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017484-9dba70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘邦：汉民族文化的伟大开拓者\",\n    \"author\": \"洪亮亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017478-cb43ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史，小世界\",\n    \"author\": \"辛西娅・斯托克斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国王的两个身体\",\n    \"author\": \"恩斯特・康托洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚明民变\",\n    \"author\": \"李文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017412-226b45?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界秩序\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017367-b1f56a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类智慧小史\",\n    \"author\": \"特雷弗・科诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017340-a7f51c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蹉跎坡旧事\",\n    \"author\": \"沈博爱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017268-d0dff9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康熙盛世与帝王心术\",\n    \"author\": \"姚念慈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017247-df3930?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：1500年以前的世界\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017238-a96be6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：1500年以后的世界\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017241-7f501e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠：帝国最后的“鹰派”\",\n    \"author\": \"徐志频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017196-e60417?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为你，耶路撒冷\",\n    \"author\": \"拉莱・科林斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017211-3712a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马奴隶制\",\n    \"author\": \"威斯特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017136-eb5c79?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代的希腊和罗马\",\n    \"author\": \"吴于廑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017154-8d701b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争魔术师\",\n    \"author\": \"大卫・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017109-9a5083?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无敌舰队\",\n    \"author\": \"加勒特・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"踉跄：晚清以来中国人的梦想与超越\",\n    \"author\": \"李安义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016995-d375d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄河青山：黄仁宇回忆录\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016971-0cdd42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对于历史，科学家有话说\",\n    \"author\": \"熊卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016641-473197?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清风云（全8册）\",\n    \"author\": \"鹿鼎公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016614-3ffe45?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从黎明到衰落（上下册）\",\n    \"author\": \"雅克・巴尔赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代日本史：从德川时代到21世纪\",\n    \"author\": \"安德鲁・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016578-431c10?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Q版大明衣冠图志\",\n    \"author\": \"撷芳主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016557-4c2cd9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国时代（全二册）\",\n    \"author\": \"师永刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016368-b309d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"换个角度读历史（套装共3册）\",\n    \"author\": \"大卫・克里斯蒂安等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016593-cb129e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史\",\n    \"author\": \"大卫・克里斯蒂安等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016224-d086d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国那些人那些事（套装5册）\",\n    \"author\": \"陈瓷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016065-19e132?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地裂三百年（上）\",\n    \"author\": \"覃仕勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016053-8fc9ae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天朝 洋奴 万邦协和\",\n    \"author\": \"傅斯年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016029-7caad2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠收新疆\",\n    \"author\": \"汪衍振/谷占江/陈树照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015969-cc27c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宛如梦幻三部曲\",\n    \"author\": \"赤军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015837-99af8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列：一个国家的诞生（1-3 合辑）\",\n    \"author\": \"十一点半\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015771-29d4ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗战时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人在巴黎\",\n    \"author\": \"大卫・麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015738-b4c6cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章（全三册）\",\n    \"author\": \"张鸿福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血性军人：百年中国战争亲历纪（共13册）\",\n    \"author\": \"全国政协文史和学习委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜子：照出你看不见的世界史\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015687-56df1e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛极简中国史\",\n    \"author\": \"阿尔伯特・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015678-11afee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类砍头小史\",\n    \"author\": \"弗朗西斯・拉尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC世界史\",\n    \"author\": \"安德鲁・玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾希曼在耶路撒冷\",\n    \"author\": \"汉娜・阿伦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015621-ee315c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治传统：近代自由主义之发展\",\n    \"author\": \"弗雷德里克・沃特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血的皇冠\",\n    \"author\": \"曹昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015423-efdf72?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血的皇冠（大结局）\",\n    \"author\": \"曹昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015420-ffc62a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国原生文明启示录\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协和医事\",\n    \"author\": \"常青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩瀚大洋是赌场（全3册）\",\n    \"author\": \"俞天任\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015387-cec59e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧山河\",\n    \"author\": \"刀尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界佛教通史（套装共14卷）\",\n    \"author\": \"周贵华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战纵横录（套装二十四册）\",\n    \"author\": \"胡元斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015495-8bfeee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之秋\",\n    \"author\": \"裴士锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015171-03bda3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵史\",\n    \"author\": \"雷海宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015135-b850e8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015102-e9b4b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014925-4b543e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩：唐浩明钦定版\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014871-07622b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和十年（套装共2册）\",\n    \"author\": \"郑曦原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014727-5ab666?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平天国兴亡录\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014724-33612e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透孙子兵法\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014508-c3e54a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牲人祭\",\n    \"author\": \"皮埃尔・比恩鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014478-2f2e77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的边疆：游牧帝国与中国\",\n    \"author\": \"巴菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014373-aa3442?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口气读完中国战史\",\n    \"author\": \"顾晓绿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014607-058cae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦谜：重新发现秦始皇\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014271-174e75?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国种族简史\",\n    \"author\": \"托马斯・索威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁小历史系列（全三册）\",\n    \"author\": \"詹姆斯・韦斯特・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014289-4430ac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉武帝：皇权的逻辑\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014190-bfcfcc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"染血的王冠：不列颠王权和战争史\",\n    \"author\": \"赵恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014103-2b0300?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潮来潮去：海关与中国现代性的全球起源\",\n    \"author\": \"方德万\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪与傅斯年（全新修订版）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"项羽与刘邦\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013890-575f7a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰臣家族\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013884-5d831d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坂本龙马\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013887-36253b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方建筑小史\",\n    \"author\": \"陈杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部王国传奇（套装共5册）\",\n    \"author\": \"贾陈亮/王东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本历史小说巨匠司马辽太郎经典作品集（套装共9册）\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013818-6d50c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国定型：美国的1890～1900\",\n    \"author\": \"徐弃郁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013650-529c52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩塌的世界\",\n    \"author\": \"梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013923-111e75?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的背影（套装共2册）\",\n    \"author\": \"彼得・贾德森/诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013590-8235a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓯缺（套装共4册）\",\n    \"author\": \"徐兴业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013482-34f9d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大博弈：英俄帝国争霸战\",\n    \"author\": \"彼得・霍普柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红星照耀中国\",\n    \"author\": \"埃德加・斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013473-b5c7fd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚历山大三部曲\",\n    \"author\": \"玛丽・瑞瑙特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013446-8bd673?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋觉梦录：袁世凯\",\n    \"author\": \"禅心初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013425-886951?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广州贸易\",\n    \"author\": \"范岱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的财政密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代世界史（插图第10版）\",\n    \"author\": \"帕尔默/乔・科尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013437-274a1b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013191-9d7f86?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天2：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013188-c49746?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天3：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013185-a0743f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天4：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013176-abfc15?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1493：物种大交换开创的世界史\",\n    \"author\": \"查尔斯・曼恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后日本史\",\n    \"author\": \"王新生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013008-9417f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重读甲午：中日国运大对决\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012939-c8481b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而有罪\",\n    \"author\": \"彼得・西施罗夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012927-e5aba8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中日恩怨两千年大合集（共4册）\",\n    \"author\": \"樱雪丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012915-5b2e9a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国皇帝的五种命运\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012906-52df36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代王朝系列全集（全28册）\",\n    \"author\": \"王新龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012909-fac22e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华民国史（16册套装）\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012918-26053f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信经典历史之世界史篇（共6册）\",\n    \"author\": \"大卫・克里斯蒂安/伊恩・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012936-2633d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信经典历史之中国史篇（共5册）\",\n    \"author\": \"杨早/马勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012885-c4bcf4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时刻：希特勒、大屠杀与纳粹文化（上下册）\",\n    \"author\": \"单世联\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书之书\",\n    \"author\": \"福尔克尔・魏德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012615-56e5ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老北京杂吧地\",\n    \"author\": \"岳永逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012531-6c54c3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被淹没和被拯救的\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012249-55fbc8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀局\",\n    \"author\": \"曲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012123-162f93?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远去的胜利\",\n    \"author\": \"威廉・理查德森/西摩・弗雷德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争简史（套装共2册）\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012003-13f38f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金雀花王朝\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银帝国\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高铁风云录\",\n    \"author\": \"高铁见闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011880-d18366?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活的日本财阀\",\n    \"author\": \"陈霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011748-a353c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国的崩溃与美国的诞生\",\n    \"author\": \"尼克・邦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011766-64bb06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥中国史（套装全11卷）\",\n    \"author\": \"费正清/崔瑞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011967-9e4705?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲的陨落\",\n    \"author\": \"马克思・加罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉经典作品合集（全14册）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012045-6418c3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庚子西狩丛谈\",\n    \"author\": \"吴永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011625-b93e35?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录\",\n    \"author\": \"孟元老\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志之魂\",\n    \"author\": \"特亚・多恩/里夏德・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011616-7a3f09?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮日耀光：张居正与明代中后期政局\",\n    \"author\": \"韦庆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011595-bc04e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾这些年所知道的祖国\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在大清官场30年\",\n    \"author\": \"黄云凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011568-9f64c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西洋世界军事史（全三卷）\",\n    \"author\": \"富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011562-ee7a99?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史2\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦刻尔克\",\n    \"author\": \"沃尔特・劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1491年：前哥伦布时代美洲启示录\",\n    \"author\": \"查尔斯・曼恩是\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011508-3f67fb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的浩劫\",\n    \"author\": \"弗里德里希・迈内克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011484-6c4d96?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋氏家族\",\n    \"author\": \"斯特林・西格雷夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011463-fbc615?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信历史的镜像系列（套装共10本）\",\n    \"author\": \"理查德・埃文斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为奴十二年\",\n    \"author\": \"所罗门・诺瑟普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011313-653371?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国通史（套装共6册）\",\n    \"author\": \"钱乘旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后欧洲史（套装共4册）\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011190-f4b570?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉文集：三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011133-842806?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些惊心动魄的人类文明史（套装共18册）\",\n    \"author\": \"曹胜高等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年金融史\",\n    \"author\": \"威廉・戈兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历史风云录\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010971-27004c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战大武汉\",\n    \"author\": \"张军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010920-a3947f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品三国\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010851-0bd01f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张学良的政治生涯\",\n    \"author\": \"傅虹霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林汉达中国故事经典套装（图文版）\",\n    \"author\": \"林汉达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010947-e40f70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾志刚说春秋×说战国（全十二册）\",\n    \"author\": \"贾志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏威夷史诗(共2册）\",\n    \"author\": \"詹姆斯・米切纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010758-140387?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你绝对不知道的美国独立秘史\",\n    \"author\": \"何畏岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010698-8fdefe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说天下：话说中国历史系列（全10册）\",\n    \"author\": \"龚书铎/刘德麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011025-25ef8d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九品中正制研究\",\n    \"author\": \"张旭华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010656-17c168?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦始皇：穿越现实与历史的思辨之旅\",\n    \"author\": \"吕世浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010635-d004d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正说司马家（1-3）\",\n    \"author\": \"张朝炬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010560-b2fada?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明破晓的世界\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国现代史\",\n    \"author\": \"徐中约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不忍细看的大唐史\",\n    \"author\": \"谢国计\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010458-b98a48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的河山：抗日正面战场全纪实（套装共3册）\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业与帝国：英国的现代化历程\",\n    \"author\": \"埃里克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾颉刚国史讲话全本（三册）\",\n    \"author\": \"顾颉刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010383-dcf10f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的陨落\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010386-84b362?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清最后十八年（大全集）（共4册）\",\n    \"author\": \"黄治军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010365-52de24?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简海洋文明史\",\n    \"author\": \"菲利普・德・索萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走向共和\",\n    \"author\": \"张建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010215-9eb25f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣重说晚清民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲看水浒\",\n    \"author\": \"十年砍柴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010191-d34bba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻抄袭历史\",\n    \"author\": \"宋燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岳飞传\",\n    \"author\": \"邓广铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010176-918d2c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵蒂冈的乱世抉择（1922-1945）\",\n    \"author\": \"段琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010149-afb62f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿提卡之夜（1-5卷）\",\n    \"author\": \"奥卢斯・革利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010140-904f27?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草原帝国（全译插图本）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英博物馆世界简史（套装共3册）\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越百年中东\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白话精编二十四史（全10册）\",\n    \"author\": \"龚书铎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010236-610f9d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1942河南大饥荒\",\n    \"author\": \"宋致新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009999-ed0873?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的技艺：塔奇曼论历史\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机械宇宙\",\n    \"author\": \"爱德华・多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻关注：二战经典战役纪实（套装共10册）\",\n    \"author\": \"二战经典战役编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的最后十四天\",\n    \"author\": \"约阿希姆·・费斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009762-976759?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界小史\",\n    \"author\": \"恩斯特・贡布里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009717-003d99?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代通史（套装共10册）\",\n    \"author\": \"张海鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009672-5434a0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有宽恕就没有未来\",\n    \"author\": \"德斯蒙德・图图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序的起源\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序与政治衰败\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·中国的历史（全十卷）\",\n    \"author\": \"宫本一夫/平势隆郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌和钢铁\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国社会的新陈代谢（插图本）\",\n    \"author\": \"陈旭麓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕氏春秋译注（修订本）\",\n    \"author\": \"张双棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，这是另一半中国史\",\n    \"author\": \"杨建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009540-88c0a5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败的帝国：从斯大林到戈尔巴乔夫\",\n    \"author\": \"弗拉季斯拉夫・祖博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的崩溃：苏联解体的台前幕后\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009531-44dd38?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩智慧精髓大合集（套装共三册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009573-2a5b19?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯曼帝国的衰亡\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009525-0dfc4f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯维辛\",\n    \"author\": \"劳伦斯・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009495-02ded5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳语者\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009489-577978?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布达佩斯往事\",\n    \"author\": \"卡蒂・马顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009486-392c89?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的中国史（套装共14册）\",\n    \"author\": \"童超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009903-8e6424?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人心至上：杜月笙\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒家统治的时代：宋的转型\",\n    \"author\": \"迪特・库恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009474-529aaf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯国璋：北洋时期最有争议的总统\",\n    \"author\": \"韩仲义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009432-510c86?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的终结与最后的人\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零年：1945\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联真相：对101个重要问题的思考（全三册）\",\n    \"author\": \"陆南泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009399-e397a1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文武北洋・风流篇\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009363-bd9b77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文武北洋・枭雄篇\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009366-f96c72?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个戴灰帽子的人\",\n    \"author\": \"邵燕祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009354-ecd060?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国名将：一个历史学家的排行榜\",\n    \"author\": \"方北辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009312-59e655?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从这里读懂第三帝国（套装共8册）\",\n    \"author\": \"齐格蒙・鲍曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界性的帝国：唐朝\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009291-f01621?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十杆枪：从独立战争到西部拓荒的美国勇敢冒险史\",\n    \"author\": \"克里斯・凯尔/威廉・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009336-cf85ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十个人的德意志\",\n    \"author\": \"孙世龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009267-7bdd51?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝三日\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世家的天下（全3册）\",\n    \"author\": \"潘彦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009249-56da80?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早期中华帝国：秦与汉\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009264-03cc70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老兵自述：我在台湾40年\",\n    \"author\": \"于秀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009210-bceb7c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵进攻\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仁者无敌：林肯的政治天才\",\n    \"author\": \"尤以丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009171-407c48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界史纲：生物和人类的简明史\",\n    \"author\": \"吴文藻/冰心等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009207-280a2c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝绝对很邪乎\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009138-deec69?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的帝国：南北朝\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009144-7f2fef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦墟\",\n    \"author\": \"月关\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009132-129b38?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趣味生活简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史：德国人的犹太恐惧症与大屠杀\",\n    \"author\": \"克劳斯・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的岛群\",\n    \"author\": \"宋宜昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009099-e8b13b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日落九世纪：大唐帝国的衰亡\",\n    \"author\": \"赵益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神偷天下（全三册）\",\n    \"author\": \"郑丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009021-1cedd4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明帝国边防史：从土木堡之变到大凌河血战\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：中国八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庸人治国\",\n    \"author\": \"苗棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008961-b049a1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缠斗：方生与未死\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨的记忆\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆（图文版）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"求索中国：文革前十年史\",\n    \"author\": \"萧东连/朱地等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008892-fc9b80?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清朝开国史（上下卷）\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008889-dcadfa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章时代（1870-1895）\",\n    \"author\": \"王鼎杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008859-c5c5f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挣扎的帝国：元与明\",\n    \"author\": \"卜正民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008841-53bcc3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国：典藏套装版（全三册）\",\n    \"author\": \"高兴宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格：一部历史\",\n    \"author\": \"安妮・阿普尔鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008823-3cb3b7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弱宋：造极之世\",\n    \"author\": \"陈胜利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008796-38df46?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清大变局\",\n    \"author\": \"马平安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008790-f00942?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的战斗：美国人眼中的朝鲜战争（修订版）\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008763-ceb9cf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆小屋\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008715-f6ea28?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难的一跃\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋大时代\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经度\",\n    \"author\": \"达娃・索贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南京大屠杀\",\n    \"author\": \"张纯如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008697-eb4356?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的中华帝国：大清\",\n    \"author\": \"罗威廉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008694-c9f404?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国简史\",\n    \"author\": \"孟钟捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：华夏世界的历史建构\",\n    \"author\": \"刘仲敬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧制度与大革命\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒的边缘（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008637-b35210?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简亚洲千年史\",\n    \"author\": \"斯图亚特・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008547-7528e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍王：戴笠与中国特工\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008571-4000d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋军阀史（套装共2册）\",\n    \"author\": \"来新夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008457-b50456?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不忍细看的大汉史\",\n    \"author\": \"墨竹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008358-9b1891?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（全三册）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东周列国志（上下）\",\n    \"author\": \"蔡元放/冯梦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008370-900bac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变美国的时刻\",\n    \"author\": \"刘戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道光十九年：从禁烟到战争\",\n    \"author\": \"沈渭滨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008298-a00093?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布大交换\",\n    \"author\": \"艾尔弗雷德・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫的风花雪月\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洪业：清朝开国史\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008280-fe79e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的兴衰（套装共2册）\",\n    \"author\": \"保罗・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国海盗\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦三部曲\",\n    \"author\": \"吕世浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008274-748b98?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坐天下：张宏杰解读中国帝王\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越南密战：1950-1954中国援越战争纪实\",\n    \"author\": \"钱江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追寻历史的印迹\",\n    \"author\": \"杨天石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008211-2d3dc6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从帝制走向共和\",\n    \"author\": \"杨天石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008190-26b9bb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的盛世\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008151-db2720?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒转红轮\",\n    \"author\": \"金雁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008238-c702a9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天“帝国与共和”三部曲\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天中华史：先秦到隋唐\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008340-6d454f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫修文物\",\n    \"author\": \"萧寒/绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老街的生命（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008025-85e9bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵贩子（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008028-fba137?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪峰山决战（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008007-bd9450?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白日薄西山：大汉帝国的衰亡\",\n    \"author\": \"徐兴无\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007989-fae9b9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪满洲国（套装共三册）\",\n    \"author\": \"迟子建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007920-212a9c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意大利黑手党的历史\",\n    \"author\": \"约翰・迪基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007902-b4007c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天正传\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个帝国的生与死\",\n    \"author\": \"夜狼啸西风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007848-1e242c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个美国记者眼中的真实民国\",\n    \"author\": \"哈雷特・阿班\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战天京：晚清军政传信录\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007827-5533c3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明王朝的七张面孔（套装共2册）\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007833-83ee88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戊戌变法史\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：跃升年代\",\n    \"author\": \"福尔克尔・乌尔里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血酬定律：中国历史中的生存游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科雷马故事\",\n    \"author\": \"瓦尔拉姆・沙拉莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的凛冬（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007761-91cc52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联专家在中国（1948-1960）\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅰ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅱ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：从乞丐到元首\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦古国志\",\n    \"author\": \"林屋公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007686-218743?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦凶猛 （全五册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007683-6430e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和国历史的细节\",\n    \"author\": \"李颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007656-87a1fc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“四人帮”兴亡（增订版）\",\n    \"author\": \"叶永烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：四天、三支大军和三场战役的历史\",\n    \"author\": \"伯纳德・康沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马人的故事（套装共15册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：1453年以来的争霸之途\",\n    \"author\": \"布伦丹・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唉，我的沧桑50年（1959至今）\",\n    \"author\": \"八爪夜叉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大历史的角度读蒋介石日记\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呐喊-大屠杀回忆录\",\n    \"author\": \"曼尼・斯坦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭德怀自传\",\n    \"author\": \"彭德怀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光荣与梦想（套装共4册）\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师细说中国历史（套装共12册）\",\n    \"author\": \"吕思勉/吴晗/傅斯年等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南明史\",\n    \"author\": \"顾诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007554-d162d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈大传\",\n    \"author\": \"王宏甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天命所终：晚清皇朝的崩溃\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007524-6152e3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人当国：慈禧太后与晚清五十年\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉冤录\",\n    \"author\": \"张程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007488-804e4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞虎队在桂林\",\n    \"author\": \"赵平/韦芳/蒋桂英/苏晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007470-7a5427?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联的最后一天\",\n    \"author\": \"康纳・奥克莱利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王之道：从痞子刘季到高祖刘邦\",\n    \"author\": \"刘小川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007440-17c90c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的分裂：美国独立战争的起源\",\n    \"author\": \"郑非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在汉朝不容易\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史\",\n    \"author\": \"特奥多尔・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫女谈往录\",\n    \"author\": \"金易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"头颅中国：另一个角度看先秦\",\n    \"author\": \"黄摩崖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007314-f6145e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白宫岁月：基辛格回忆录（套装共4册）\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国崛起病\",\n    \"author\": \"黄钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007281-5bec5c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统一大业（合订本）\",\n    \"author\": \"郭晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清的角落\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进步时代\",\n    \"author\": \"张国庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教科书里没有的历史细节\",\n    \"author\": \"王国华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个世界帝国及其西征系列（共三册）\",\n    \"author\": \"布赖恩・莱弗里/汤姆・霍兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明晚清三部曲\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐太宗（全三卷）\",\n    \"author\": \"赵扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007050-bb3026?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史有一套（全6册）\",\n    \"author\": \"杨白劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007026-a96241?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人的故事：寻找失落的字符\",\n    \"author\": \"西门·沙马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哇，历史原来可以这样学（套装共2册）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当道家统治中国\",\n    \"author\": \"林嘉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天公不语对枯棋\",\n    \"author\": \"姜鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006972-dc0d09?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆自传\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命的年代：1789～1848\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的年代：1848～1875\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的年代：1875～1914\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端的年代：1914～1991\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006918-d93fd3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流血的天堂：乌孙王国传奇（原创白金版）\",\n    \"author\": \"金钊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006927-7d67fc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大实话：历史与现在\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006915-0aa5f7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪孽的报应\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维基解密：谁授权美国统管世界\",\n    \"author\": \"苏言/贺濒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驼峰航线\",\n    \"author\": \"刘小童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东汉的豪族\",\n    \"author\": \"杨联陛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006837-a944f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀1905大合集（共3册）\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三大名臣发迹史（套装共6册）\",\n    \"author\": \"汪衍振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006798-f5d92b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出轨的盛唐：武后（套装共3册）\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006789-16cd14?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨人的成圣之道：曾国藩\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉王朝的三张脸谱（全三册）\",\n    \"author\": \"飘雪楼主\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006753-0645a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大中国史（全新校订超值珍藏版）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史\",\n    \"author\": \"丁建弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果这是宋史（套装共10册）\",\n    \"author\": \"高天流云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006702-cf600b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军东征简史（插图本）\",\n    \"author\": \"米肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海盗时代\",\n    \"author\": \"海盗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的全球通史\",\n    \"author\": \"房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006666-b79483?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：一部全新的世界史\",\n    \"author\": \"彼得·弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色账簿\",\n    \"author\": \"马祥林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006660-1bfd15?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中原大战：民国军阀的终极逐鹿\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006606-dd3be8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清相国\",\n    \"author\": \"王跃文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭大将军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大变局\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜规则：中国历史中的真实游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006486-e0c136?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦朝原来是这样\",\n    \"author\": \"醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006480-90a92e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青铜时代：五百年的大局观（套装共5册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地解：1644大变局\",\n    \"author\": \"汗青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006444-18d6eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本最危险的书\",\n    \"author\": \"克里斯托夫·克里布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从俾斯麦到希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"其实我们一直活在春秋战国（套装共6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夹边沟记事\",\n    \"author\": \"杨显惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006411-34b535?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甘南纪事\",\n    \"author\": \"杨显惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006405-e4b8cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里曾经是汉朝（套装共6册）\",\n    \"author\": \"月望东山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006366-f6a436?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年袁家\",\n    \"author\": \"王碧蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝王师：张居正\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006345-151672?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝王师：刘伯温\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006339-c15817?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗：意志征服世界\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"败因：蒋介石为什么败退台湾？\",\n    \"author\": \"武更斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个大国的崛起与崩溃\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西路军（套装共3册）\",\n    \"author\": \"冯亚光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006267-cdd7bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006264-a3a0da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战秘密档案\",\n    \"author\": \"鲍里斯・瓦季莫维奇・索科洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱可夫：斯大林的将军\",\n    \"author\": \"杰弗里・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006219-c6136a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简中国史\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006189-1d7a39?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个汉人皇帝：崇祯大败局\",\n    \"author\": \"晏青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006183-848fe4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"军部当国：近代日本军国主义冒险史\",\n    \"author\": \"赵恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006174-b628f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫禁城魔咒（套装全三册）\",\n    \"author\": \"简千艾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006153-a21e3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的二战史（上下卷）\",\n    \"author\": \"肖石忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006273-4b1128?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个故宫的离合\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：欧洲八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬过（1949-1976）\",\n    \"author\": \"寒川子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006102-af215b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白门柳（套装共3册）\",\n    \"author\": \"刘斯奋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006099-ca9e83?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩：又笨又慢平天下\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006087-c38b42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚汉争霸启示录\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006090-557c06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国的野蛮成长\",\n    \"author\": \"祝和军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006075-2932b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学、数术与政治\",\n    \"author\": \"陈侃理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006072-66be1f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凋零\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象异域\",\n    \"author\": \"葛兆光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006078-e45465?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大忙人看的历史常识\",\n    \"author\": \"章学城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006027-0210e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉朝大历史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006039-4817a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红顶商人胡雪岩珍藏版大全集（套装共6册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简世界史\",\n    \"author\": \"姚尧、磨剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005991-0695cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简中国史\",\n    \"author\": \"磨剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006015-5af5d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎部队：国民党抗日王牌七十四军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1856：纠结的大清、天国与列强\",\n    \"author\": \"陶短房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个皇帝：袁世凯传\",\n    \"author\": \"陶菊隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005958-558d42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海史诗三部曲\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔的饱食：日本731细菌战部队揭秘\",\n    \"author\": \"森村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的大队\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005955-4e31ac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一只眼看鸦片战争\",\n    \"author\": \"瞿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005928-95ec0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五大传奇权谋人物传记（套装共5册）\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·初澜（1953～1968）\",\n    \"author\": \"定宜庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·大潮（1966～1980）\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触摸历史与进入五四\",\n    \"author\": \"陈平原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的底稿\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的边角料\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005868-04c945?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋帝国三百年（共5册）\",\n    \"author\": \"金纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的应许之地\",\n    \"author\": \"阿里・沙维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉讲中国历史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005865-39afd4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕著三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和中的帝制\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005838-df5318?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗日战争的细节大全集（共4册）\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴行动\",\n    \"author\": \"乔治・乔纳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005826-867b8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再说戊戌变法\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005823-df41d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的空白处\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：角落里的民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005808-4cd3c9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：大国的虚与实\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005817-deb0b2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：朝堂上的戏法\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005811-270f44?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：重说中国古代史\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005799-2834e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：重说中国国民性\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005796-d68785?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直截了当的独白\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相：裕仁天皇与侵华战争\",\n    \"author\": \"赫伯特・比克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005781-a36ade?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武夫当权：军阀集团的游戏规则\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005778-e952c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨人的陨落（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005775-add98f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，这是大清正史（套装共三册）\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005739-4e4df0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈舜臣“十八史略”\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005736-4f0d45?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山的那一边\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国超好看大全集\",\n    \"author\": \"君玉离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005691-37f328?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘活：中国民间金融百年风云\",\n    \"author\": \"王千马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚亡：从项羽到韩信\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005697-cd05d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明王朝1566（套装共二册）\",\n    \"author\": \"刘和平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005589-4f319f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧全传\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑鄙的圣人：曹操（套装共10册）\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简欧洲史\",\n    \"author\": \"约翰・赫斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国总理段祺瑞\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大故宫（全三册）\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005595-48321c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005451-392314?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个曾国藩\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个袁世凯\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个李鸿章\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和氏璧\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明宫奇案\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斧声烛影\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夺位战争：康熙和他的儿子们\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005391-a2fed4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跌荡一百年：中国企业1870-1977（纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩荡两千年：中国企业公元前7世纪-1869年\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国机密（全两册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯庸笑翻中国简史\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原来你是这样的宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005328-0cee06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类简史：从动物到上帝\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005331-d43590?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲美国史\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005301-9fa40d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战回忆录（全五卷）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战回忆录（全六卷）\",\n    \"author\": \"温斯顿·丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着就为征服世界\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本！日本！：中日历史上的历次死磕\",\n    \"author\": \"王浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005280-12bd88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆十三年\",\n    \"author\": \"高王凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005277-d6967f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极乐诱惑：太平天国的兴亡\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦衣卫秘事\",\n    \"author\": \"夜行独侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005262-15b909?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国人物传记合集（套装共六册）\",\n    \"author\": \"方北辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005274-cab8cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不容青史尽成灰（套装五册）\",\n    \"author\": \"张嵚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005247-bb17a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐的四张面孔（套装共四册）\",\n    \"author\": \"东江月明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005238-f97e96?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你知道或不知道的英国史\",\n    \"author\": \"贺桂金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉公主\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005241-e78c9b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的软肋：大汉王朝四百年\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005232-e2cd5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1644：中国式王朝兴替\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005220-eda0ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年乱局：争霸东北亚（套装共二册）\",\n    \"author\": \"方俞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005217-0b648c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：碧海青天\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005196-b63054?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔雀胆\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐游侠\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼玄机\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大太监李莲英全传\",\n    \"author\": \"王牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与看客\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005157-06675a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的正午\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005139-267d57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一寸河山一寸血（套装全五册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血腥的盛唐大全集（珍藏版）\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005133-8ad8de?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋介石与现代中国\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005121-9824a2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国最后的荣耀：大明1592抗日援朝\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005091-0ae1b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流血的仕途：李斯与秦始皇\",\n    \"author\": \"曹昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005082-4cc81c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1927·谁主沉浮\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史是个什么玩意儿（全四册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005076-2d0888?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲先秦·上古春秋\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005073-adcf42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲先秦·战国纵横\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005064-2ad184?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲日本史\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005085-ff26cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲两宋风云\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005067-5e3c5a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗也要叫\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005055-f06b5e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国运1909：清帝国的改革突围\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005070-6a1110?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦崩：从秦始皇到刘邦\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005109-a88027?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋裂变\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005022-6f69d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧私生活回忆录\",\n    \"author\": \"裕德龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004989-2742d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康熙大帝（全四册）\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005010-4813e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正皇帝（全三册）\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005025-c4d4ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆皇帝（全六册）\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005028-731854?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大变局1911\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的正面与侧面\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争就是这么回事儿（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叫魂\",\n    \"author\": \"孔飞力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004902-1b6315?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国之翼\",\n    \"author\": \"格雷戈里・克劳奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004914-6aa3a6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争从未如此热血：二战美日太平洋大对决（全四册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会现场：1911—1928\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004872-0a13ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国（全新修订版）\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004890-cf3460?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日！知日！这次彻底了解日本（全四册）\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004881-07a62d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德川家康大全集\",\n    \"author\": \"山冈庄八\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004860-5761a5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的汪精卫\",\n    \"author\": \"林思云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万历十五年（经典版）\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004842-c3da51?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国大历史\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004833-543fef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史非常档案\",\n    \"author\": \"李昊轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004797-1cc3d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡三十年（套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝那些事儿（1-9）\",\n    \"author\": \"当年明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简美国史\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡雪岩（全三册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国就是这么生猛（全四册）\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004713-b94ab1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细说中国历史丛书（全十册）\",\n    \"author\": \"黎东方等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004698-777405?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这个历史挺靠谱（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004674-6ba91b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说魂儿（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866\",\n    \"category\": \"民俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上寻仙记\",\n    \"author\": \"锦翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866\",\n    \"category\": \"民俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老北京杂吧地\",\n    \"author\": \"岳永逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012531-6c54c3?p=8866\",\n    \"category\": \"民俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈：日本动漫中的传统妖怪\",\n    \"author\": \"周英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866\",\n    \"category\": \"民俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医目了然\",\n    \"author\": \"懒兔子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866\",\n    \"category\": \"治疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体从未忘记\",\n    \"author\": \"巴塞尔・范德考克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023610-57fe2f?p=8866\",\n    \"category\": \"治疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱，不释手\",\n    \"author\": \"琳・斯蒂格・斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010044-9bddf2?p=8866\",\n    \"category\": \"治疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李洁非明史系列三部曲\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503595-333015?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋大传\",\n    \"author\": \"陈梧桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内忧与外患\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045750-19a698?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝的末路\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045705-73a219?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代巨人：明末耶稣会士在中国的故事\",\n    \"author\": \"邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滴血的大朝代\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦衣卫\",\n    \"author\": \"熊剑平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025716-291f4b?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"显微镜下的大明\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025350-ca3612?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱明王朝\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明史不忍细看\",\n    \"author\": \"张朝山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023964-23b953?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮日耀光：张居正与明代中后期政局\",\n    \"author\": \"韦庆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011595-bc04e1?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神偷天下（全三册）\",\n    \"author\": \"郑丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009021-1cedd4?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明帝国边防史：从土木堡之变到大凌河血战\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庸人治国\",\n    \"author\": \"苗棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008961-b049a1?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挣扎的帝国：元与明\",\n    \"author\": \"卜正民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008841-53bcc3?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大产品思维\",\n    \"author\": \"王雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意选择\",\n    \"author\": \"肯・科钦达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俞军产品方法论\",\n    \"author\": \"俞军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益设计（第2版）\",\n    \"author\": \"Jeff Gothelf\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产品经理修炼之道\",\n    \"author\": \"费杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014895-353831?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从点子到产品\",\n    \"author\": \"刘飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014775-780161?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结网@改变世界的互联网产品经理（修订版）\",\n    \"author\": \"王坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国陷阱\",\n    \"author\": \"诺埃尔・毛雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的贸易\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质套装（全3册）\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的冲突\",\n    \"author\": \"道格拉斯・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的真相\",\n    \"author\": \"丹尼・罗德里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037065-bd5341?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看待全球化\",\n    \"author\": \"彼得・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅\",\n    \"author\": \"皮翠拉・瑞沃莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛陀相佑\",\n    \"author\": \"侯旭东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050952-03df2b?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福来自绝对的信任\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036834-77bd7f?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度佛教史\",\n    \"author\": \"平川彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楞严经\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022248-843010?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Why Buddhism is True\",\n    \"author\": \"Robert Wright\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019161-b5bee8?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"淡定的智慧\",\n    \"author\": \"弘一法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017016-132f58?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界佛教通史（套装共14卷）\",\n    \"author\": \"周贵华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑜老板三分钟京剧小灶（套装2册）\",\n    \"author\": \"瑜音社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513381-1aaee4?p=8866\",\n    \"category\": \"京剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清棋局：明亡清兴卷\",\n    \"author\": \"刘澍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020847-19ba79?p=8866\",\n    \"category\": \"大清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清风云（全8册）\",\n    \"author\": \"鹿鼎公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016614-3ffe45?p=8866\",\n    \"category\": \"大清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清相国\",\n    \"author\": \"王跃文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866\",\n    \"category\": \"大清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看上去很美\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866\",\n    \"category\": \"童年\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城南旧事（绘图本）\",\n    \"author\": \"林海音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018462-adf327?p=8866\",\n    \"category\": \"童年\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹秦\",\n    \"author\": \"王杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028002-3ba7b4?p=8866\",\n    \"category\": \"秦朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦朝那些事儿（共3册）\",\n    \"author\": \"昊天牧云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021549-2b4b61?p=8866\",\n    \"category\": \"秦朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦朝原来是这样\",\n    \"author\": \"醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006480-90a92e?p=8866\",\n    \"category\": \"秦朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国货币史（精校本）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界钱币2000年\",\n    \"author\": \"伯恩德・克鲁格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503277-39fb14?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱的千年兴衰史\",\n    \"author\": \"金菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国货币史\",\n    \"author\": \"彭信威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币围城\",\n    \"author\": \"约翰・莫尔丁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币之惑\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币变局\",\n    \"author\": \"巴里・艾肯格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战（典藏版）\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048705-a6c49c?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币金融学（原书第2版）\",\n    \"author\": \"弗雷德里克S.米什金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界金融危机史经典丛书共6册\",\n    \"author\": \"约翰・莫尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037032-23759e?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史：从货币的起源到货币的未来\",\n    \"author\": \"苗延波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030525-dfd919?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三千年来谁铸币\",\n    \"author\": \"王永生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理美元\",\n    \"author\": \"船桥洋一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023124-73dd6d?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本全球化\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币野史\",\n    \"author\": \"菲利克斯・马汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史\",\n    \"author\": \"卡比尔・塞加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银帝国\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争（套装共5册）\",\n    \"author\": \"宋鸿兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类货币史\",\n    \"author\": \"戴维・欧瑞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们与恶的距离\",\n    \"author\": \"吕莳媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002985-472c7f?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个人的车站\",\n    \"author\": \"埃・韦・布拉金斯基/埃・亚・梁赞诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象席地而坐\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攀登者\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039411-ec122d?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡利古拉\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势研判：经济、政策与资本市场\",\n    \"author\": \"任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866\",\n    \"category\": \"大势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利维坦号战记（套装共4册）\",\n    \"author\": \"斯科特・维斯特菲尔德/基斯・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866\",\n    \"category\": \"蒸汽朋克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊秉元生活经济学九部曲（套装共9册）\",\n    \"author\": \"熊秉元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512484-bc72f7?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1小时图解经济学\",\n    \"author\": \"铃木一之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004122-0feb48?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分析与思考\",\n    \"author\": \"黄奇帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999058-c4ff9b?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画经济学一看就懂\",\n    \"author\": \"武敬敏/田萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998920-f86ba8?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔经济学奖经典文库系列（套装共11册）\",\n    \"author\": \"保罗・克鲁格曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995938-fd0511?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛奶可乐经济学套装（全四册）\",\n    \"author\": \"罗伯特・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986215-95b568?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗经济学\",\n    \"author\": \"彼得・里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050655-a3539f?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给年轻人的极简金融课\",\n    \"author\": \"童哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047652-cac8d7?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学要义\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044937-083bb7?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市场真相\",\n    \"author\": \"杰克D.施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就业、利息和货币通论\",\n    \"author\": \"约翰・梅纳德・凯恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034656-57288e?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"People, Power, and Profits\",\n    \"author\": \"Joseph E. Stiglitz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034398-053bfe?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准投资\",\n    \"author\": \"管清友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032097-a4efc4?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看待全球化\",\n    \"author\": \"彼得・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养老保险经济学\",\n    \"author\": \"袁志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031059-7ae40f?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有闲阶级论\",\n    \"author\": \"凡勃伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030537-777029?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔经济学奖的逻辑\",\n    \"author\": \"阿夫纳・奥弗尔/加布里埃尔・索德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030366-30de9b?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI极简经济学\",\n    \"author\": \"阿杰伊・阿格拉沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026862-49e254?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新法则：名企破局秘笈\",\n    \"author\": \"理查德・科克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本全球化\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：如何应对大概率危机\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010110-fa186a?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随机漫步的傻瓜\",\n    \"author\": \"戴纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本读通10位经济学大师\",\n    \"author\": \"菲尔・桑顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007854-f5a6d5?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊思想与文化\",\n    \"author\": \"吴晓群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491883-e507e4?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊三百年\",\n    \"author\": \"罗德里克・比顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498024-c93e11?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的古希腊\",\n    \"author\": \"王冬妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511563-62e19d?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出发去希腊\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512691-8dea22?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊史：从梭伦时代到公元前403年\",\n    \"author\": \"乔治・格罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513582-255bbf?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊史纲（套装共5册）\",\n    \"author\": \"狄奥多罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990118-568fff?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格拉底之死（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊对德意志的暴政\",\n    \"author\": \"伊莉莎・玛丽安・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马奴隶制\",\n    \"author\": \"威斯特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017136-eb5c79?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊神话故事\",\n    \"author\": \"古斯塔夫・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人间\",\n    \"author\": \"阿缺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028071-d39120?p=8866\",\n    \"category\": \"机器人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人时代\",\n    \"author\": \"马丁・福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015234-30ae0c?p=8866\",\n    \"category\": \"机器人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：机器人五部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009321-283a4f?p=8866\",\n    \"category\": \"机器人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国：七雄博弈\",\n    \"author\": \"朱良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512049-91370e?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋那杯茶，战国这碗酒（套装共4册）\",\n    \"author\": \"南柯月初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋大义\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"称霸（上下册）\",\n    \"author\": \"刘勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国真有趣（全6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾志刚说春秋×说战国（全十二册）\",\n    \"author\": \"贾志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国：典藏套装版（全三册）\",\n    \"author\": \"高兴宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"其实我们一直活在春秋战国（套装共6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国超好看大全集\",\n    \"author\": \"君玉离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005691-37f328?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年南开日本研究文库（共18册）\",\n    \"author\": \"吴廷璆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509472-9832f9?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿含经校注（全九册）\",\n    \"author\": \"恒强法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509343-bdaff3?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将成为国王的教宗\",\n    \"author\": \"大卫・科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511473-61ec1e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神好多的日本\",\n    \"author\": \"山口谣司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金枝（全两册）\",\n    \"author\": \"詹姆斯・乔治・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513420-73750d?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣的存在\",\n    \"author\": \"米尔恰・伊利亚德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炼金术之梦\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之门\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教思想史（套装全3卷）\",\n    \"author\": \"胡斯都·L.冈察雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985126-1a8242?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教史（套装共2册）\",\n    \"author\": \"胡斯托・冈萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坛经（全本全注全译）\",\n    \"author\": \"尚荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国佛教通史（套装十五卷）\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无神论（牛津通识读本）\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛陀相佑\",\n    \"author\": \"侯旭东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050952-03df2b?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酒鬼与圣徒\",\n    \"author\": \"劳伦斯・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犍陀罗文明史\",\n    \"author\": \"孙英刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045543-bc6145?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个行业都离不开心理学（套装共5册）\",\n    \"author\": \"王梓等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔早期神学著作\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044037-106386?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平经（全本全注全译）\",\n    \"author\": \"杨寄林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绑架风云\",\n    \"author\": \"大卫・I.科策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信徒的国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一神论的影子\",\n    \"author\": \"赵汀阳/阿兰・乐比雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卢丹的恶魔\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031701-de423d?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏传佛教极简史\",\n    \"author\": \"德昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度佛教史\",\n    \"author\": \"平川彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛陀传\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029292-270b2e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅心直指\",\n    \"author\": \"澄海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027864-99937c?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑的清真寺\",\n    \"author\": \"伊恩・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中9·禅的入门\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜威选集（5卷本）\",\n    \"author\": \"刘放桐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楞严经\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022248-843010?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷告白\",\n    \"author\": \"利皮卡・佩拉汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知三部曲\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中西方哲学史（套装共2册）\",\n    \"author\": \"冯友兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021030-097825?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：哲学宗教（上册）\",\n    \"author\": \"周锡䪖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019221-2ec92b?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给无神论者\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016830-fff7c8?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晨钟暮鼓\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书译馆系列（套装10本）\",\n    \"author\": \"尼采等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013554-def23e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金枝\",\n    \"author\": \"詹姆斯・乔治・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010026-3fff55?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千面英雄\",\n    \"author\": \"约瑟夫・坎贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失乐园（中英插图珍藏本）\",\n    \"author\": \"约翰・弥尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008913-ba5a39?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏生死书\",\n    \"author\": \"索甲仁波切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慧灯之光（全8册）\",\n    \"author\": \"慈诚罗珠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006576-5bbcbf?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"端到端流程\",\n    \"author\": \"迈克尔・哈默/丽莎・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048249-905292?p=8866\",\n    \"category\": \"服务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Cloud微服务实战\",\n    \"author\": \"翟永超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020250-1e5ad7?p=8866\",\n    \"category\": \"服务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李国文陪读《三国演义》\",\n    \"author\": \"罗贯中/李国文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040167-4c9161?p=8866\",\n    \"category\": \"三国演义\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服亚马孙\",\n    \"author\": \"埃德・斯塔福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅰ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅰ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬：极地求生700天\",\n    \"author\": \"阿尔弗雷德・兰辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫图腾（套装共5册）\",\n    \"author\": \"闫志洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理日记（套装1-9册）\",\n    \"author\": \"西西弗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生少年生存小说系列（全6册）\",\n    \"author\": \"贝尔·格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地密码（珍藏版大全集）\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恋人们的森林\",\n    \"author\": \"森茉莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985423-777157?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断代\",\n    \"author\": \"郭强生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024321-3e4d24?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：02陪伴\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011460-0422ee?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：03分离\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011451-c5bdd9?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：01相遇\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010389-32ec03?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡罗尔\",\n    \"author\": \"帕特里夏・海史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008898-271551?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南宋行暮\",\n    \"author\": \"虞云国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042666-24868f?p=8866\",\n    \"category\": \"南宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绍兴十二年\",\n    \"author\": \"夏坚勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025293-69c02c?p=8866\",\n    \"category\": \"南宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风流南宋\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866\",\n    \"category\": \"南宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子全集（作家榜经典文库）\",\n    \"author\": \"埃・奥・卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866\",\n    \"category\": \"回本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠侠手记：超人类绝密档案\",\n    \"author\": \"S.D.佩里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985720-975708?p=8866\",\n    \"category\": \"蝙蝠侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（再版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985642-272a86?p=8866\",\n    \"category\": \"唯美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚瑟王之死（果麦经典）\",\n    \"author\": \"托马斯・马洛礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866\",\n    \"category\": \"亚瑟王\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊效应\",\n    \"author\": \"娜塔莉・伯格/米娅・奈茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866\",\n    \"category\": \"电商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽：风口上的独角兽\",\n    \"author\": \"陈歆磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866\",\n    \"category\": \"电商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11.11如何卖到一个亿\",\n    \"author\": \"陈炉均/陈威/马国良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866\",\n    \"category\": \"电商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新宋（共15册）\",\n    \"author\": \"阿越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049803-dea15b?p=8866\",\n    \"category\": \"穿越\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庆余年（精校版）\",\n    \"author\": \"猫腻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043752-01e491?p=8866\",\n    \"category\": \"穿越\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千劫眉（套装5册）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034515-d69375?p=8866\",\n    \"category\": \"穿越\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻秦记（套装全6卷）\",\n    \"author\": \"黄易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006882-2ead58?p=8866\",\n    \"category\": \"穿越\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与真理（二十世纪西方哲学经典）\",\n    \"author\": \"保罗・利科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985459-26b47c?p=8866\",\n    \"category\": \"理论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"資治通鑑·繁體豎排版（胡三省注）\",\n    \"author\": \"司馬光編集/胡三省輯注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030630-44c1c2?p=8866\",\n    \"category\": \"理论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（全译插图本）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010761-329742?p=8866\",\n    \"category\": \"理论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡高效工作法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866\",\n    \"category\": \"麦肯锡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的逻辑思维\",\n    \"author\": \"高杉尚伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866\",\n    \"category\": \"麦肯锡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲍勃·迪伦：诗人之歌\",\n    \"author\": \"让-多米尼克·布里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866\",\n    \"category\": \"摇滚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天坑宝藏\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙海：荒沙诡影\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020958-faed28?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙海2：沙蟒蛇巢\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020952-c06183?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗墓笔记（插图版）\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005646-e7641b?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传古奇术（套装共四册）\",\n    \"author\": \"未六羊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼吹灯全集（插图版）\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004863-5bc405?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门到门时代\",\n    \"author\": \"Edward Humes\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866\",\n    \"category\": \"物流\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"供应链管理\",\n    \"author\": \"刘宝红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024912-2e274f?p=8866\",\n    \"category\": \"物流\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集装箱改变世界（修订版）\",\n    \"author\": \"马克・莱文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866\",\n    \"category\": \"物流\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学的读法\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497127-2181e6?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读变现\",\n    \"author\": \"山口周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499122-5f9eef?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡片笔记写作法\",\n    \"author\": \"申克・阿伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会读书\",\n    \"author\": \"叶圣陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003942-ca36b7?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍学校\",\n    \"author\": \"丹尼斯・布金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000366-6508f7?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大忙人的高效阅读课\",\n    \"author\": \"李源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995281-68ab8d?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智与阅读\",\n    \"author\": \"丹尼尔·T.威林厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱歌川英语学习大全（套装共5册）\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级快速阅读\",\n    \"author\": \"克里斯蒂安・格吕宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987370-2cefa8?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读\",\n    \"author\": \"艾比・马克斯・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英高效阅读法\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短篇小说写作指南\",\n    \"author\": \"美国《作家文摘》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读\",\n    \"author\": \"藤原和博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越读者\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023550-9e1081?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为生命而阅读\",\n    \"author\": \"威尔・施瓦尔贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023328-a9e738?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洋葱阅读法\",\n    \"author\": \"彭小六\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021639-2cdecd?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效阅读\",\n    \"author\": \"彼得・孔普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018705-8aca11?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界（套装共6册）\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018381-23efd5?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读一本书\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致阅读手册\",\n    \"author\": \"高荣成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017784-d6d43c?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快速阅读术\",\n    \"author\": \"印南敦史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013968-1f2fcc?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑的阅读：破解人类阅读之谜\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本书\",\n    \"author\": \"莫提默・艾德勒 / 查尔斯・范多伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得读完的书\",\n    \"author\": \"聂震宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"52周记忆魔法实战手册\",\n    \"author\": \"多米尼克・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004722-bce77e?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最想要的记忆魔法书\",\n    \"author\": \"多米尼克・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004725-2e954b?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逢考必过\",\n    \"author\": \"布里特・本尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491946-02547b?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样行动\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是微学习\",\n    \"author\": \"罗宾・德费利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500091-56a0ca?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丽声指南针英语名著分级读物高中版第三级（套装共6册）\",\n    \"author\": \"Joanna Davidson等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506067-2ec3d5?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的方法\",\n    \"author\": \"圣地亚哥·拉蒙-卡哈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507387-b58026?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九宫格写作法\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡片笔记写作法\",\n    \"author\": \"申克・阿伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵程序设计丛书：Java进阶高手（套装共8册）\",\n    \"author\": \"沃伯顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵前端核心知识进阶系列（套装全10册）\",\n    \"author\": \"韦鲁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510897-922ded?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往未来之路\",\n    \"author\": \"赵昂/任国荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费曼学习法\",\n    \"author\": \"尹红心/李伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512211-79ec46?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笔记思考术\",\n    \"author\": \"黄忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512244-216e47?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识炼金术\",\n    \"author\": \"邱昭良/王谋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512442-a712f3?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的才华战略\",\n    \"author\": \"莱昂纳多・洛斯佩纳托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效写作的秘密\",\n    \"author\": \"杰拉尔德・格拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001641-466852?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的学区房是你家的书房\",\n    \"author\": \"佐藤亮子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大壮的信\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996169-ca0701?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何写出一篇好文章\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995383-8fa7c9?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡骏24堂写作课\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995332-e2f2c1?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式学习\",\n    \"author\": \"周林文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效写作\",\n    \"author\": \"芝本秀德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995110-b7a712?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好思考\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图学与用\",\n    \"author\": \"思学团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992206-56a5d5?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效记忆（原书第2版）\",\n    \"author\": \"肯尼思・希格比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991930-4a8ea6?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱歌川英语学习大全（套装共5册）\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级快速阅读\",\n    \"author\": \"克里斯蒂安・格吕宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987370-2cefa8?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图完整手册\",\n    \"author\": \"东尼・博赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987073-f54ce6?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微精通\",\n    \"author\": \"罗伯特・特威格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提高记忆的100种方法\",\n    \"author\": \"王小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985825-3dd88d?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讨论\",\n    \"author\": \"史蒂芬·D. 布鲁克菲尔德/史蒂芬・普莱斯基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984676-66809c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读\",\n    \"author\": \"艾比・马克斯・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：如何成为一个有价值的知识变现者\",\n    \"author\": \"Angie\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义学习\",\n    \"author\": \"杨明高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053160-525c7e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习天性\",\n    \"author\": \"小沼势矢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051951-468fab?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学经典课程分享（套装9册）\",\n    \"author\": \"哈佛大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习：10个你必须掌握的未来生存法则\",\n    \"author\": \"丹・苏利文/凯瑟琳・野村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看完就用的思维导图\",\n    \"author\": \"刘艳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051396-5d6b11?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘+（第3版）\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（青春版）\",\n    \"author\": \"书鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础入门学习Python\",\n    \"author\": \"小甲鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂一本书\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为未知而教，为未来而学\",\n    \"author\": \"戴维・珀金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（八）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043593-cd4e90?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为面向未来的学习者（原书第7版）\",\n    \"author\": \"卡罗尔・卡特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学语言\",\n    \"author\": \"亚历克斯・罗林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043503-1bf41f?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（六）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043296-42eb15?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（七）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043164-770743?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（三）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043062-c23c04?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（四）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（五）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042861-1cb1cb?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（二）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042696-3e0f87?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被解释的美\",\n    \"author\": \"金雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041943-2f0dec?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"研究生完全求生手冊\",\n    \"author\": \"彭明輝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039534-579efd?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"练习的心态\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038139-a13fd2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学习\",\n    \"author\": \"斯科特・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会写作\",\n    \"author\": \"粥左罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓学习好，就是方法好\",\n    \"author\": \"坪田信贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036189-bba070?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的方法\",\n    \"author\": \"泰勒・本-沙哈尔/安格斯・里奇韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道\",\n    \"author\": \"芭芭拉・奥克利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033018-b16bf2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道（第2版）\",\n    \"author\": \"乔希・维茨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样学习文言文\",\n    \"author\": \"张中行著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：颠覆职场学习的高效方法\",\n    \"author\": \"王世民/缪志聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用Kindle高效学习\",\n    \"author\": \"直树桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032121-9975ae?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10秒沟通\",\n    \"author\": \"荒木真理子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力陷阱\",\n    \"author\": \"埃米尼亚・伊贝拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高分智囊团\",\n    \"author\": \"郑书豪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030951-f6b083?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天最重要的2小时\",\n    \"author\": \"乔西・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何管好自己（第五版）\",\n    \"author\": \"约翰・康特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意改变\",\n    \"author\": \"玛丽・简・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028248-dd3101?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习：用更短的时间达到更佳效果和更好成绩\",\n    \"author\": \"亚当・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语写作手册：风格的要素\",\n    \"author\": \"威廉・斯特伦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越读者\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023550-9e1081?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：不断逼近问题的本质\",\n    \"author\": \"莫琳・希凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知天性\",\n    \"author\": \"彼得・布朗/亨利・勒迪格三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身幼儿园\",\n    \"author\": \"米切尔・雷斯尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完全写作指南\",\n    \"author\": \"劳拉・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为有效学习的高手\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识大迁移\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019845-51d7de?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样读书就够了\",\n    \"author\": \"赵周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019695-1defad?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习：彻底解决你的知识焦虑\",\n    \"author\": \"今井睦美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019398-eb3c14?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个学习忍者\",\n    \"author\": \"格雷厄姆・奥尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018495-810956?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读一本书\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致阅读手册\",\n    \"author\": \"高荣成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017784-d6d43c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效学习\",\n    \"author\": \"乌尔里希・伯泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1368个单词就够了\",\n    \"author\": \"王乐平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"持续学习和行动让人生逆袭（套装9册）\",\n    \"author\": \"廖珺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015714-57fbb1?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译的技巧\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015609-4aebb7?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意练习：如何从新手到大师\",\n    \"author\": \"安德斯・艾利克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞大开的微积分\",\n    \"author\": \"刘祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013872-96990e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的红色写作书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012708-71ba79?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼数学\",\n    \"author\": \"乔丹・艾伦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012669-8145da?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功就靠这点破英语\",\n    \"author\": \"孙铁麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011910-c8a840?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟各国人都聊的来\",\n    \"author\": \"本尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本书\",\n    \"author\": \"莫提默・艾德勒 / 查尔斯・范多伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的男孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007704-26fa9e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的女孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要自学\",\n    \"author\": \"张玳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘：对过去的事情做思维演练\",\n    \"author\": \"陈中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外语是怎样学会的\",\n    \"author\": \"王初明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的眼脑直映快读法\",\n    \"author\": \"胡雅茹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004983-8ff776?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记7\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491982-08c26c?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄雀计划\",\n    \"author\": \"鬼庖丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498957-155512?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警2\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在东北当警察（套装共3册）\",\n    \"author\": \"程琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031446-ae2e03?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个刑警的日子\",\n    \"author\": \"蓝衣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023343-d37ba8?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑锅\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021141-2483c9?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武志红经典作品合集（套装共4册）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866\",\n    \"category\": \"武志红\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的手账整理魔法\",\n    \"author\": \"MUKI\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033114-327d0f?p=8866\",\n    \"category\": \"手绘\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而为猫挺好的\",\n    \"author\": \"猫小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866\",\n    \"category\": \"手绘\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物：我和父亲乔布斯\",\n    \"author\": \"丽莎・布伦南・乔布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866\",\n    \"category\": \"乔布斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着就为改变世界：乔布斯纪念套装四册\",\n    \"author\": \"杰弗里・扬/威廉・西蒙/艾伦・多伊奇曼/卡迈恩・加洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008478-595baa?p=8866\",\n    \"category\": \"乔布斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻觉师\",\n    \"author\": \"悲伤感应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006555-2ab14e?p=8866\",\n    \"category\": \"乔布斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂夫·乔布斯传\",\n    \"author\": \"沃尔特·艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866\",\n    \"category\": \"乔布斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周易参同契（全本全注全译）\",\n    \"author\": \"章偉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平经（全本全注全译）\",\n    \"author\": \"杨寄林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终南山密码\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033876-257d0b?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁冬说庄子系列（套装共六册）\",\n    \"author\": \"梁冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031500-73ab77?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西之道\",\n    \"author\": \"汉斯・格奥尔格・梅勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当道家统治中国\",\n    \"author\": \"林嘉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会设计\",\n    \"author\": \"笕裕介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866\",\n    \"category\": \"价值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值\",\n    \"author\": \"张磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866\",\n    \"category\": \"价值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识投资（原书第10版）\",\n    \"author\": \"滋维・博迪/亚历克斯・凯恩/艾伦 J. 马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995317-3a8c8c?p=8866\",\n    \"category\": \"价值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值规律\",\n    \"author\": \"水木然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024876-c08f98?p=8866\",\n    \"category\": \"价值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手机摄影轻松学\",\n    \"author\": \"李华春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985684-e8624f?p=8866\",\n    \"category\": \"实用\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的手账整理魔法\",\n    \"author\": \"MUKI\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033114-327d0f?p=8866\",\n    \"category\": \"实用\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石头剪刀布博弈心理学\",\n    \"author\": \"木瓜制造\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007338-0946f5?p=8866\",\n    \"category\": \"实用\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆谱：身份的潜规则\",\n    \"author\": \"余不讳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866\",\n    \"category\": \"实用\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这真的是你的错吗\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499227-3864f2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是你啊\",\n    \"author\": \"皮埃尔・佩利西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别会说话的人都这样说话\",\n    \"author\": \"大野萌子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的沟通力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己当回事儿\",\n    \"author\": \"杨天真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尬聊终结者\",\n    \"author\": \"庄舒涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不妥协的谈判\",\n    \"author\": \"丹尼尔・夏皮罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个性优势\",\n    \"author\": \"吉姆・巴雷特/休・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511347-2ee920?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"畅所欲言\",\n    \"author\": \"道格・克兰德尔/马特・金卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511779-c8282c?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无压力社交\",\n    \"author\": \"吉莉恩・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512292-5b84b2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时这样说就好了\",\n    \"author\": \"伊庭正康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控沟通\",\n    \"author\": \"贾斯汀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇葩心理学\",\n    \"author\": \"冈田尊司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004146-e96884?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓会说话，就是会换位思考\",\n    \"author\": \"卡洛琳・塔格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002073-ea5db8?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡公众表达课\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对坦率\",\n    \"author\": \"金・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21天说服力养成\",\n    \"author\": \"诺瓦・戈尔茨坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000174-b0db79?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判2\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效沟通的100种方法\",\n    \"author\": \"王利利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力\",\n    \"author\": \"高琳/林宏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讲好一件事\",\n    \"author\": \"埃丝特·K·乔伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992356-e961db?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默感\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"允许被说服\",\n    \"author\": \"艾尔・比坦帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的情商，决定你的人生高度\",\n    \"author\": \"心屋仁之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你为什么不道歉\",\n    \"author\": \"哈丽特・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990589-e95cbc?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"会说话的人运气都不会太差\",\n    \"author\": \"矢野香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样沟通最高效\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服\",\n    \"author\": \"邝大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好接话\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何正确吵架\",\n    \"author\": \"朱迪斯・莱特/鲍勃・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用事实说话\",\n    \"author\": \"马克・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商是什么？\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓情商高，就是会说话\",\n    \"author\": \"佐佐木圭一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键提问\",\n    \"author\": \"詹姆斯·E.瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴演讲\",\n    \"author\": \"朱迪思・汉弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通赢家\",\n    \"author\": \"徐丽丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049902-070654?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津式高效沟通\",\n    \"author\": \"冈田昭人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟沟通课\",\n    \"author\": \"鱼住理英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效人士的问题解决术\",\n    \"author\": \"森秀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049437-4b60bc?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判技巧：菜鸟谈判进阶的八大要领\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度说服\",\n    \"author\": \"梁秋阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商沟通\",\n    \"author\": \"仲佳伟/文娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043860-e43eee?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的谈判武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边界\",\n    \"author\": \"吉莲・邰蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是销售力\",\n    \"author\": \"余尚祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控谈话\",\n    \"author\": \"克里斯・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理营养\",\n    \"author\": \"林文采/伍娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话第一步\",\n    \"author\": \"麦克▪P.尼可斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言表达的艺术\",\n    \"author\": \"赵磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030414-9672c6?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲和力\",\n    \"author\": \"古宫昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信表达\",\n    \"author\": \"兰迪・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030198-77c629?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响：如何自然地赢得他人的心\",\n    \"author\": \"凯伦・梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何建立好人缘\",\n    \"author\": \"谢湘萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商沟通术\",\n    \"author\": \"胡慎之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029124-a2a12a?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与原生家庭和解\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话2\",\n    \"author\": \"马薇薇/黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感召力\",\n    \"author\": \"西蒙・兰卡斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像间谍一样思考\",\n    \"author\": \"卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020934-24a0ae?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷暴力\",\n    \"author\": \"玛丽・弗朗斯・伊里戈扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提升你的沟通技能（第四版）\",\n    \"author\": \"艾伦・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020118-157ff6?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者沟通圣经\",\n    \"author\": \"珍妮弗・康维勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杠杆说服力\",\n    \"author\": \"凯文・霍根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019623-c2c1a7?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝佳提问：探询改变商业与生活\",\n    \"author\": \"沃伦・贝格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何实现有效社交\",\n    \"author\": \"凯伦・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018606-3ed13e?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高难度沟通\",\n    \"author\": \"贾森・杰伊/加布里埃尔・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018492-971649?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就是孩子最好的玩具\",\n    \"author\": \"金伯莉・布雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017844-ea3b3d?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服：像讲故事一样讲道理\",\n    \"author\": \"尼克・克里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017778-78f09d?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再也不怕跟人打交道\",\n    \"author\": \"莉尔・朗兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效提问\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016725-e622b1?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事思维\",\n    \"author\": \"安妮特・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节：如何轻松影响他人\",\n    \"author\": \"罗伯特・西奥迪尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键对话\",\n    \"author\": \"凯瑞・派特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015342-e01712?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键冲突\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015339-b03473?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决冲突的关键技巧\",\n    \"author\": \"达纳・卡斯帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼搭讪学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"P.E.T.父母效能训练\",\n    \"author\": \"托马斯・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话：新鲜有趣的话术精进技巧\",\n    \"author\": \"马东/马薇薇/黄执中等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通的艺术\",\n    \"author\": \"罗纳德・阿德勒/拉塞尔・普罗克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力四射：如何打动、亲近和影响他人\",\n    \"author\": \"帕特里克・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷读术（白金珍藏版）\",\n    \"author\": \"石真语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话\",\n    \"author\": \"学诚法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都聊得来\",\n    \"author\": \"迈克・贝克特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲的力量\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006537-682cc0?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说药丸\",\n    \"author\": \"埃拉・伯绍德/苏珊・埃尔德金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987217-831e84?p=8866\",\n    \"category\": \"药方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朕知道了\",\n    \"author\": \"傅淞岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866\",\n    \"category\": \"雍正\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正帝：中国的独裁君主\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866\",\n    \"category\": \"雍正\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货狙击手\",\n    \"author\": \"彼得 ·L. 勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004131-eff6fd?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权、期货及其他衍生产品（原书第9版）\",\n    \"author\": \"约翰・赫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个农民的亿万传奇\",\n    \"author\": \"傅海棠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年一梦（修订版）\",\n    \"author\": \"青泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券混沌操作法（典藏版）\",\n    \"author\": \"比尔・威廉斯/贾丝廷・格雷戈里-威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现价格\",\n    \"author\": \"姜洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗池\",\n    \"author\": \"帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货市场技术分析\",\n    \"author\": \"约翰・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货大作手风云录\",\n    \"author\": \"刘强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸奔的钱\",\n    \"author\": \"沈良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变历史的香料商人\",\n    \"author\": \"贾尔斯・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491709-49d668?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则：应对变化中的世界秩序\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492075-4f7b4c?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界环境史\",\n    \"author\": \"威廉·H. 麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492747-a5c12b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民族国家间的和平与战争（全2册）\",\n    \"author\": \"雷蒙・阿隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497541-2895bb?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学100问（套装共3册）\",\n    \"author\": \"书杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498444-830a41?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东大教授世界文学讲义系列（套装全5册）\",\n    \"author\": \"沼野充义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498672-8a6511?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转向：世界如何步入现代\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的历史精华·贝克知识丛书（套装共21册）\",\n    \"author\": \"汉斯-克里斯托弗・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500913-fd0de9?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书信中的世界史\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505836-f1bc65?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落文明系列（套装共7卷）\",\n    \"author\": \"克里斯蒂娜・里格斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色雅典娜：古典文明的亚非之根（套装全3卷共5册）\",\n    \"author\": \"马丁・贝尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说精选集（2020）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508863-47608a?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滔天洪水\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西学三书（套装共三册）\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510249-849869?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界史的故事（套装共6册）\",\n    \"author\": \"苏珊・怀斯・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510552-7ebbe2?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西双皇后\",\n    \"author\": \"南希・戈德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识世界：古代与中世纪哲学\",\n    \"author\": \"理查德・大卫・普莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511017-ad42d5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培生艺术史（套装6册）\",\n    \"author\": \"大卫·G.威尔金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511581-0d0d59?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帖木儿之后\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512304-8a0c34?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走向火焰\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512313-ff672a?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭三部曲\",\n    \"author\": \"约翰・朱利叶斯・诺里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513423-1f607d?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路上的帝国\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513621-d0eb00?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大人物的世界史\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513792-4193e9?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史上的大帝国\",\n    \"author\": \"加布里埃尔・马丁内斯-格罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999973-6bcd2f?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国霸权\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与的力量\",\n    \"author\": \"慎泰俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992248-f3bcbb?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：世界大战的时代（全三册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画世界史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界英雄史诗译丛（套装14册）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984031-b9ecb5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津世界史丛书（共四册）\",\n    \"author\": \"贾斯珀・格里芬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983875-afdd9b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的世界史套装（全15卷）\",\n    \"author\": \"肖石忠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·兴亡的世界史（全九卷）\",\n    \"author\": \"森谷公俊等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052227-3cba4a?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典时代的终结（贝克知识丛书）\",\n    \"author\": \"哈特温・布兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中东史（套装共3册）\",\n    \"author\": \"哈全安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从航海图到世界史\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤因比著作集（套装全7册）\",\n    \"author\": \"阿诺德・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：从古代源头到20世纪（全3册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马元老院与人民\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明（套装共2册）\",\n    \"author\": \"玛丽・比尔德/戴维・奥卢索加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：从史前到21世纪（第7版新校本）\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045897-0418e2?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年文明史\",\n    \"author\": \"勒尔・兹威克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命\",\n    \"author\": \"维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊与灰鹰（套装共3册）\",\n    \"author\": \"丽贝卡・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的历史（全5册）\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服与革命中的阿拉伯人\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国与第一次世界大战\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方之镜\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类六千年（上下两册）\",\n    \"author\": \"刘景华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩登时代：从1920年代到1990年代的世界\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032913-6118fe?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文明史（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印加帝国的末日\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的崩塌\",\n    \"author\": \"埃里克·H.克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030063-a42a80?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海都物语\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的文明（套装共2册）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027801-a8005f?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个世界的战争\",\n    \"author\": \"安东尼・帕戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026268-2ca776?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国大战略\",\n    \"author\": \"爱德华·N.勒特韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋与文明\",\n    \"author\": \"林肯・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的故事（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年战争简史\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪简史\",\n    \"author\": \"杰弗里・布莱内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021225-d87722?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：大国博弈\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020181-db0efd?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：大国之略\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020175-352ae5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲文明史精品系列（套装共8册）\",\n    \"author\": \"阿曼达・维尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019635-e4c4dd?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的教训\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019254-d01ce4?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新视角全球简史套装（三册）\",\n    \"author\": \"莉奥妮・希克斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018528-cc4d08?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实改变之后\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史文化丛书（精选15册）\",\n    \"author\": \"王海利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019155-dbc0f5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史，小世界\",\n    \"author\": \"辛西娅・斯托克斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：1500年以后的世界\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017241-7f501e?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"换个角度读历史（套装共3册）\",\n    \"author\": \"大卫・克里斯蒂安等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016593-cb129e?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜子：照出你看不见的世界史\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015687-56df1e?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC世界史\",\n    \"author\": \"安德鲁・玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银资本：重视经济全球化中的东方\",\n    \"author\": \"贡德・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014439-33d3c7?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代世界史（插图第10版）\",\n    \"author\": \"帕尔默/乔・科尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013437-274a1b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1493：物种大交换开创的世界史\",\n    \"author\": \"查尔斯・曼恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信经典历史之世界史篇（共6册）\",\n    \"author\": \"大卫・克里斯蒂安/伊恩・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012936-2633d0?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·奥斯丁文集（套装共6本）\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011874-14d4b5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英博物馆世界简史（套装共3册）\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界小史\",\n    \"author\": \"恩斯特・贡布里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009717-003d99?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界未解之谜大全集（超值白金版）\",\n    \"author\": \"文若愚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009702-76dece?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是红的：看懂中国经济格局的一本书\",\n    \"author\": \"白云先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国简史\",\n    \"author\": \"孟钟捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：1453年以来的争霸之途\",\n    \"author\": \"布伦丹・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国是个大公司\",\n    \"author\": \"闵纬国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史有一套（全6册）\",\n    \"author\": \"杨白劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007026-a96241?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命的年代：1789～1848\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的年代：1848～1875\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的年代：1875～1914\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的全球通史\",\n    \"author\": \"房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006666-b79483?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：一部全新的世界史\",\n    \"author\": \"彼得·弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你知道或不知道的英国史\",\n    \"author\": \"贺桂金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  }\n]"
  },
  {
    "path": "docs/books.json",
    "content": "[\n  {\n    \"title\": \"极度成功\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510375-05242f?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里人的答案书\",\n    \"author\": \"阿里巴巴组织文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510804-a5e3a8?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本企业家精选（全5册）\",\n    \"author\": \"一条和生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511533-b724b2?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡决断力\",\n    \"author\": \"石井辉美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为管理哲学\",\n    \"author\": \"蒋朝安/杜俊鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050910-d72194?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔是海：张瑞敏随笔选录\",\n    \"author\": \"张瑞敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质（珍藏版）\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创始人手记\",\n    \"author\": \"季琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健经营哲学系列（套装共3册）\",\n    \"author\": \"张小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边界\",\n    \"author\": \"吉莲・邰蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略推演\",\n    \"author\": \"王昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042372-78310a?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在耶鲁精进\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039087-2cce2c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂管理上\",\n    \"author\": \"冯为中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039018-f17707?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"345薪酬\",\n    \"author\": \"李祖滨/汤鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034002-cf5f79?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级符号原理\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031524-1a7a6c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·实践篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031224-5ab3aa?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力陷阱\",\n    \"author\": \"埃米尼亚・伊贝拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·变革篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030801-7b000d?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力思维\",\n    \"author\": \"珍妮弗・加维・伯格/基斯・约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向创新\",\n    \"author\": \"亚当・摩根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028677-7e2d5f?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：平台型组织的进化路线图\",\n    \"author\": \"穆胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让问题到你为止\",\n    \"author\": \"博恩・崔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个天才团队的故事\",\n    \"author\": \"沃伦・本尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以客户为中心\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形冠军：未来全球化的先锋\",\n    \"author\": \"赫尔曼・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017103-ceb233?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的常识\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015057-903f80?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光变：一个企业及其工业史\",\n    \"author\": \"路风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·柯林斯成就卓越系列（套装共4册）\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导梯队（原书第2版）\",\n    \"author\": \"拉姆・查兰/斯蒂芬・德罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达工作法\",\n    \"author\": \"万达集团企业文化中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生长（权威未删节）\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866\",\n    \"category\": \"企业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史记（精注全译）（全12册）\",\n    \"author\": \"司马迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504366-972bdd?p=8866\",\n    \"category\": \"史记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天人之际：薛仁明读《史记》\",\n    \"author\": \"薛仁明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030213-f27649?p=8866\",\n    \"category\": \"史记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画算法\",\n    \"author\": \"魏梦舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简算法史\",\n    \"author\": \"吕克・德・布拉班迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变未来的九大算法\",\n    \"author\": \"约翰・麦考密克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从祖先到算法\",\n    \"author\": \"亚历克斯・本特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容算法\",\n    \"author\": \"闫泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的乐趣\",\n    \"author\": \"王晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法霸权\",\n    \"author\": \"凯西・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推荐系统实践\",\n    \"author\": \"项亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编程珠玑（第2版·修订版）\",\n    \"author\": \"Jon Bentley\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018450-0ab379?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法图解\",\n    \"author\": \"Aditya Bhargava\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866\",\n    \"category\": \"算法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理与人（二十世纪西方哲学经典）\",\n    \"author\": \"德里克・帕菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985840-14e9cf?p=8866\",\n    \"category\": \"伦理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017625-c61710?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报2\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"您厉害，您赚得多\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百箭穿杨\",\n    \"author\": \"小小辛巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非赚不可\",\n    \"author\": \"袁园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866\",\n    \"category\": \"雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字与图像间的重庆（套装3册）\",\n    \"author\": \"杨宇振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506388-3c8521?p=8866\",\n    \"category\": \"重庆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抱住棒棒的自己\",\n    \"author\": \"徐慢慢心理话\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活蒙太奇\",\n    \"author\": \"天然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忍不住想打扰你\",\n    \"author\": \"bibi园长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500922-1b9c21?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谢谢，但今天不行\",\n    \"author\": \"科尔杜拉・努斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501042-6f62d9?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂旅行团\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501435-2b3e87?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出门买蛋去\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502962-d87e59?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狮子之家的点心日\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504180-50d4c6?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第4部：卷19~卷23）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507348-35ca31?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在最后一页等我\",\n    \"author\": \"索菲亚・蕾依\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506712-efdf8e?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第1部：卷1~卷6）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508449-053311?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第3部：卷13~卷18）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509205-71e3f3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带着恐惧前行\",\n    \"author\": \"鲁斯・苏库普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510180-c33921?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛤蟆先生去看心理医生\",\n    \"author\": \"罗伯特・戴博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的堡垒\",\n    \"author\": \"詹森・雷库拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511824-5bbdd3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷心书店\",\n    \"author\": \"卡塔琳娜・碧瓦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512223-e07962?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本的童话（果麦经典）\",\n    \"author\": \"小川未明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004434-9f10f5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果萨莉没离开\",\n    \"author\": \"丽贝卡・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003960-ba3f4b?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食，祈祷，恋爱\",\n    \"author\": \"伊丽莎白・吉尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐贩卖机\",\n    \"author\": \"凯蒂・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我离开之后\",\n    \"author\": \"苏西・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杏仁\",\n    \"author\": \"孙元平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997795-ec9e5f?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让我离开\",\n    \"author\": \"凯瑟琳・雷恩・海德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994834-ef4958?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见马戏团\",\n    \"author\": \"伊坂幸太郎/曼努埃尔・菲奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994525-225149?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善哉善哉，就你话多\",\n    \"author\": \"明安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使的孩子\",\n    \"author\": \"丹尼尔・斯蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986575-694e6f?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔守望者的女儿\",\n    \"author\": \"珍•E.潘德兹沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986095-8be8e5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听你的\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我余生的第一天\",\n    \"author\": \"维尔吉妮・格里马尔蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985000-fd55f0?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岛西岸的来信\",\n    \"author\": \"洛丽・施皮尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053124-ef774c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一见你就好心情\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命：只想陪在你身边\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡在汽车里的女孩\",\n    \"author\": \"珍妮弗・克莱门特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047661-1ca554?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独梦想家\",\n    \"author\": \"戴维・巴尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047646-c1f65b?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，黑鸟\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047280-8f2319?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间值得\",\n    \"author\": \"中村恒子/奥田弘美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑又怎样\",\n    \"author\": \"弗兰齐丝卡・赛柏特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海边理发店\",\n    \"author\": \"荻原浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043965-d46de9?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉本家的猫咪们\",\n    \"author\": \"春野宵子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043533-a39c3e?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己和解\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖12：厨房，治愈人生的避难所\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费孝通经典作品四部\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041178-c73b09?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无法完成的告别\",\n    \"author\": \"大卫・利维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035373-d1df05?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唯有猫能治愈我\",\n    \"author\": \"杰克森・盖勒克西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033900-848a6b?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜月亮\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033636-81f339?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己的人自带光芒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的聪明人太多了，我必须为笨蛋争口气！\",\n    \"author\": \"书单狗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪认知\",\n    \"author\": \"尹惟楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人3：无境之爱\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的歌\",\n    \"author\": \"余光中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032004-ffb2cf?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追恐龙的男孩\",\n    \"author\": \"贾科莫・马扎里奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030879-d30fd6?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福需要等待\",\n    \"author\": \"安娜・戈华达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030705-407eec?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寺内贯太郎一家\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030645-fd9b57?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时忍住就好了（插图典藏版）\",\n    \"author\": \"肯・林德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029577-e20eb2?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随风飘舞的塑料布\",\n    \"author\": \"森绘都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028566-77b8a6?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他跟我聊到樱桃树、灰尘以及一座山\",\n    \"author\": \"安东尼・帕耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028206-7f784d?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哀愁的预感\",\n    \"author\": \"吉本芭娜娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027426-a44ae6?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在天堂那五年\",\n    \"author\": \"约翰・施利姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027240-d0e434?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不执着，叫看破 不完美，是生活\",\n    \"author\": \"莫妮卡・拉米雷斯・巴斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒲公英醇夏\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024867-dd3818?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感2\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023358-da9edb?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云边有个小卖部\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022539-f60fa4?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山茶文具店\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021900-38dea3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光倒流的女孩\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021435-850156?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡了吗？摘颗星星给你\",\n    \"author\": \"LOST7\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020397-464256?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个叫欧维的男人决定去死\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019383-ef7704?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在未来等你\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019131-e9de0c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹男孩\",\n    \"author\": \"帕拉西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017115-40f395?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪安娜穿过漫漫长夜\",\n    \"author\": \"加瑞尔・萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊与钢的森林\",\n    \"author\": \"宫下奈都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015348-2e4ed9?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守护故事的人\",\n    \"author\": \"丽萨・温格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014787-6c94a7?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摘星星的男孩\",\n    \"author\": \"约翰・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小小巴黎书店\",\n    \"author\": \"妮娜・乔治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012591-51c462?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等你呼唤我的名字\",\n    \"author\": \"阿尔伯特・埃斯皮诺萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡未冷前\",\n    \"author\": \"川口俊和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011202-0121ce?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，萤火虫小巷\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010206-82872c?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿司匹林博物馆\",\n    \"author\": \"赵越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的朝圣2：奎妮的情歌\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009930-818355?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你今天真好看\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莉莉和章鱼\",\n    \"author\": \"史蒂文・罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009783-3b87ff?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外婆的道歉信\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008808-17d5d1?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂成瘾者\",\n    \"author\": \"马克・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008163-e5e6c5?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫小巷\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007914-abfad4?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866\",\n    \"category\": \"治愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不知东方既白\",\n    \"author\": \"橘子宸\",\n    \"link\": \"链接未找到\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将门虎女（全2册）\",\n    \"author\": \"姽婳莲翩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050739-cf2b32?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第84封情书\",\n    \"author\": \"骆淑景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下倾歌（共2册）\",\n    \"author\": \"青林之初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045369-5592ba?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"竹书谣（共4册）\",\n    \"author\": \"文简子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045303-d67fa4?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹤唳华亭\",\n    \"author\": \"雪满梁园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045174-9ca4ca?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张爱玲作品精选（共8册）\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044931-653d40?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为你打开时间的门\",\n    \"author\": \"皎皎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039795-12f145?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晋江大神Priest经典作品合集（套装10册）\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035787-47378b?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾围城（全两册）\",\n    \"author\": \"匪我思存\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035541-d08688?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有匪（套装共4册）\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035424-611fd0?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与谎言为邻\",\n    \"author\": \"米娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035154-f86a21?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"篇篇十万+：朋友圈的戎马江湖（套装共11册）\",\n    \"author\": \"咪蒙/张小娴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034755-6f1025?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室困游鱼\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032955-deb293?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花雨枪\",\n    \"author\": \"夏生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美婚姻\",\n    \"author\": \"米歇尔・里奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二年，故人戏（全2册）\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜汁炖鱿鱼\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032229-530e18?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目漱石四部曲\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031974-779200?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯禁书三部曲（全新修订版）\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031536-958b1b?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天子谋\",\n    \"author\": \"青垚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031365-98380f?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹是深闺梦里人\",\n    \"author\": \"井上三尺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030462-ce1a44?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佳偶都绝色\",\n    \"author\": \"李李翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027762-c1b434?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风起青萍\",\n    \"author\": \"皎皎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027756-c0d52f?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郎骑竹马来\",\n    \"author\": \"半夏\",\n    \"link\": \"链接未找到\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楠木向北\",\n    \"author\": \"凉风薄暮\",\n    \"link\": \"链接未找到\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"若离于爱\",\n    \"author\": \"青衫落拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027753-c0f9e8?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独家记忆\",\n    \"author\": \"木浮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027354-a1ded4?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时擦\",\n    \"author\": \"笙离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027348-1f5ea8?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳洞\",\n    \"author\": \"笙离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027345-adc729?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情锁（十六周年修订典藏版）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027204-70c319?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医见钟情\",\n    \"author\": \"叶紫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023367-9a9902?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温暖的弦（套装共2册）\",\n    \"author\": \"安宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019809-be0128?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打火机与公主裙·荒草园\",\n    \"author\": \"Twentine\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011664-75c735?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打火机与公主裙·长明灯\",\n    \"author\": \"Twentine\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011661-c56c0c?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三生三世枕上书\",\n    \"author\": \"唐七公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011499-16f489?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三生三世枕上书·终篇\",\n    \"author\": \"唐七公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011490-f0b38c?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三生三世十里桃花\",\n    \"author\": \"唐七公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007647-923bd8?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也会爱上别人的\",\n    \"author\": \"自由极光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006873-68fdf4?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沥川往事（全二册新版）\",\n    \"author\": \"施定柔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006399-ae0df1?p=8866\",\n    \"category\": \"言情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌徒恺撒\",\n    \"author\": \"马丁・耶内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866\",\n    \"category\": \"凯撒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恺撒：巨人的一生\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866\",\n    \"category\": \"凯撒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原典书坊合辑（全八册）\",\n    \"author\": \"鲁迅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·情感故事书系（套装共66本）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷谈艺录及其他\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国婉约（套装7本）\",\n    \"author\": \"江晓英/林杉/臧宪柱/李婍/牧来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鉴古晓今更渊博（套装共4册）\",\n    \"author\": \"干春松/张晓芒/王阳明/吕思勉/曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032055-42ab1f?p=8866\",\n    \"category\": \"名家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：一部全新的世界史\",\n    \"author\": \"彼得·弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866\",\n    \"category\": \"丝绸之路\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的时代（共3册）\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504177-aa627c?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个金融大鳄2\",\n    \"author\": \"邓荣栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052422-c462a6?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个金融大鳄\",\n    \"author\": \"邓荣栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051852-ff30a4?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：危险交易\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在东北当警察（套装共3册）\",\n    \"author\": \"程琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031446-ae2e03?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人2\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022887-a6b83d?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套1：战局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021465-4d2c0f?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套2：迷局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021450-f4aaca?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套3：终局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021447-9e6224?p=8866\",\n    \"category\": \"商战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特和查理·芒格内部讲话\",\n    \"author\": \"丹尼尔・佩科/科里・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999487-966255?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾（珍藏版）\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998941-39104e?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的第一桶金\",\n    \"author\": \"格伦・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历巴菲特股东大会\",\n    \"author\": \"杰夫・马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿过迷雾\",\n    \"author\": \"任俊杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中投资\",\n    \"author\": \"艾伦・卡尔普・波尼洛等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃伦·巴菲特如是说\",\n    \"author\": \"珍妮特・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038517-e8a9af?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信：投资原则篇\",\n    \"author\": \"杰里米・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027714-2bcfdf?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（原书第4版）\",\n    \"author\": \"沃伦・巴菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滚雪球：巴菲特和他的财富人生（套装共2册）\",\n    \"author\": \"艾丽斯・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（原书第3版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017424-7fb305?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳着踢踏舞去上班\",\n    \"author\": \"卡萝尔・卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特幕后智囊：查理·芒格传\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（精华篇）\",\n    \"author\": \"L·J·瑞德豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866\",\n    \"category\": \"巴菲特\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体的语言\",\n    \"author\": \"列夫・马诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意短视频策划、推广、引流、爆粉与变现全能攻略\",\n    \"author\": \"肖恩・卡内尔/本吉・特拉维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"点亮视频号\",\n    \"author\": \"刘兴亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511014-d8a952?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裂变增长\",\n    \"author\": \"施襄/杨嘉伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抖音营销系统\",\n    \"author\": \"刘大贺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案变现\",\n    \"author\": \"叶小鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微博营销与运营\",\n    \"author\": \"秋叶/萧秋水/刘勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025710-bd18ec?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销概论\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体写作平台策划与运营\",\n    \"author\": \"哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025650-823a65?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体文案创作与传播\",\n    \"author\": \"秋叶/叶小鱼/勾俊伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866\",\n    \"category\": \"新媒体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不妥协的谈判\",\n    \"author\": \"丹尼尔・夏皮罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判2\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从对抗到共赢\",\n    \"author\": \"杨杜泽/沈莉娟/王赛/范松璐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场谈判经典书系（套装共3册）\",\n    \"author\": \"德雷克・阿顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制胜谈判\",\n    \"author\": \"游梓翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052629-f068d8?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何一开口就赢\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判技巧：菜鸟谈判进阶的八大要领\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的谈判武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商者会谈判\",\n    \"author\": \"冯岳宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控谈话\",\n    \"author\": \"克里斯・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强势谈判心理学\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014361-f635fc?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·道森优势谈判系列\",\n    \"author\": \"罗杰・道森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866\",\n    \"category\": \"谈判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争3\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006240-b0ff09?p=8866\",\n    \"category\": \"抗日战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗日战争的细节大全集（共4册）\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866\",\n    \"category\": \"抗日战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国政党与选举（牛津通识读本）\",\n    \"author\": \"桑迪・梅塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866\",\n    \"category\": \"选举\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲茨杰拉德文集（套装共9本）\",\n    \"author\": \"菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010659-835d89?p=8866\",\n    \"category\": \"现代文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（中国传统节日）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866\",\n    \"category\": \"传统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石全集：临川先生文集\",\n    \"author\": \"王水照主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋论（全本全注全译）\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗冤集录注评\",\n    \"author\": \"宋慈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053118-be8da5?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋徽宗\",\n    \"author\": \"伊沛霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒家统治的时代：宋的转型\",\n    \"author\": \"迪特・库恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009474-529aaf?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弱宋：造极之世\",\n    \"author\": \"陈胜利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008796-38df46?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果这是宋史（套装共10册）\",\n    \"author\": \"高天流云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006702-cf600b?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋帝国三百年（共5册）\",\n    \"author\": \"金纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866\",\n    \"category\": \"宋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意短视频策划、推广、引流、爆粉与变现全能攻略\",\n    \"author\": \"肖恩・卡内尔/本吉・特拉维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866\",\n    \"category\": \"短视频\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"15秒的商机\",\n    \"author\": \"胡涵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051903-88c85f?p=8866\",\n    \"category\": \"短视频\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走的人多了，就有了路\",\n    \"author\": \"尼可拉斯・克里斯多夫/雪莉・邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866\",\n    \"category\": \"公益\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿经典作品集（套装10册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家宝藏（全3季）\",\n    \"author\": \"于蕾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岳南：考古中国（全11册）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499434-08138d?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦因·西域游历丛书（15卷本）\",\n    \"author\": \"奥雷尔・斯坦因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003783-1b5133?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从考古发现中国\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良渚文明丛书\",\n    \"author\": \"浙江大学出版社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001587-15feaf?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何以中国\",\n    \"author\": \"许宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西周的灭亡（增订本）\",\n    \"author\": \"李峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵器史\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"章服之实\",\n    \"author\": \"王亚蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海昏侯刘贺\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032874-fa7f10?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现燕然山铭\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027969-c72992?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"考古的故事\",\n    \"author\": \"埃里克·H.克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026685-adfaf2?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗失的姆大陆之谜\",\n    \"author\": \"詹姆斯・乔治瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五次开始\",\n    \"author\": \"罗伯特・L .凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝四川：纪念汶川地震十周年\",\n    \"author\": \"《华夏地理》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019644-61d102?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝三日\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些消失的文明\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866\",\n    \"category\": \"考古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·婴儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006084-2be15d?p=8866\",\n    \"category\": \"婴儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·胎儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006081-99bed7?p=8866\",\n    \"category\": \"婴儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客居己乡\",\n    \"author\": \"哲尔吉・康拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不识字的人\",\n    \"author\": \"雅歌塔・克里斯多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046671-ef211b?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烛烬\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027732-a9cbf4?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反叛者\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027423-a2e18f?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分手在布达\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027363-6c9da6?p=8866\",\n    \"category\": \"匈牙利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇才\",\n    \"author\": \"梅利莎・席林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866\",\n    \"category\": \"精进\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三道门\",\n    \"author\": \"亚历克斯・班纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866\",\n    \"category\": \"精进\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"升维：让你人生出众的另类通道\",\n    \"author\": \"褚明宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866\",\n    \"category\": \"精进\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练套装\",\n    \"author\": \"马克・瑞比拖/安迪・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866\",\n    \"category\": \"力量训练\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上：我生活的故事\",\n    \"author\": \"格洛丽亚・斯泰纳姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035034-83902d?p=8866\",\n    \"category\": \"社会科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个汉人皇帝：崇祯大败局\",\n    \"author\": \"晏青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006183-848fe4?p=8866\",\n    \"category\": \"崇祯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克服低自尊（第二版）\",\n    \"author\": \"梅勒妮・芬内尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051270-abaeb1?p=8866\",\n    \"category\": \"自尊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地图3000年\",\n    \"author\": \"托马斯・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506883-89a846?p=8866\",\n    \"category\": \"地图\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华心影\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866\",\n    \"category\": \"地图\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866\",\n    \"category\": \"雨果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（套装上中下册）\",\n    \"author\": \"雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866\",\n    \"category\": \"雨果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌：信息不足时如何做出高明决策\",\n    \"author\": \"安妮・杜克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866\",\n    \"category\": \"扑克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京时代与英格兰\",\n    \"author\": \"埃莉诺・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战：繁荣的幻灭\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游牧民的世界史（修订版）\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太文明\",\n    \"author\": \"S.N.艾森斯塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彗星年代\",\n    \"author\": \"丹尼尔・舍恩普夫卢格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新食货志\",\n    \"author\": \"杜君立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史\",\n    \"author\": \"A.A.瓦西列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马其顿的亚历山大\",\n    \"author\": \"彼得・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1848：革命之年\",\n    \"author\": \"迈克・拉波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典的胜利\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝圆舞曲\",\n    \"author\": \"高林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年帝国史\",\n    \"author\": \"克里尚・库马尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035127-d8bec6?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧亚皇家狩猎史\",\n    \"author\": \"托马斯・爱尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经与利剑\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造和平：1919巴黎和会及其开启的战后世界\",\n    \"author\": \"玛格丽特・麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球帝国史\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：1500年以前的世界\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017238-a96be6?p=8866\",\n    \"category\": \"世界史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本趣味数理化书（套装共三册）\",\n    \"author\": \"韩垒/田梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866\",\n    \"category\": \"数理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"义疏学衰亡史论\",\n    \"author\": \"乔秀岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054387-22b652?p=8866\",\n    \"category\": \"文献学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从六艺到十三经（上下册）\",\n    \"author\": \"程苏东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051807-3757fe?p=8866\",\n    \"category\": \"文献学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦文体与话语方式研究\",\n    \"author\": \"过常宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866\",\n    \"category\": \"文献学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从何而来\",\n    \"author\": \"傅渥成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866\",\n    \"category\": \"物理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柔软的宇宙\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866\",\n    \"category\": \"物理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革故鼎新\",\n    \"author\": \"杨天宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004677-064105?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990388-6ec689?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙宝瑄日记\",\n    \"author\": \"孙宝瑄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三国\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古道\",\n    \"author\": \"伊莎贝拉・韦廉臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053949-72e6cc?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶战争（修订版）\",\n    \"author\": \"周重林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的叙述方式\",\n    \"author\": \"茅海建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044724-930fe0?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1848：革命之年\",\n    \"author\": \"迈克・拉波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温莎王朝\",\n    \"author\": \"汤姆・利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四运动史：现代中国的知识革命\",\n    \"author\": \"周策纵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041817-36939b?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华帝国的衰落\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034473-fa1b42?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战爆发前十天\",\n    \"author\": \"理查德・奥弗里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午两甲子：忆与思\",\n    \"author\": \"姜鸣/贾葭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族、土地与祖先\",\n    \"author\": \"易劳逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸦片战争\",\n    \"author\": \"蓝诗玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029562-9dc4cd?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：计划外革命\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代史：1840-1937\",\n    \"author\": \"蒋廷黻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022515-8c554f?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的启蒙\",\n    \"author\": \"马国川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021972-56b623?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《伦敦新闻画报》记录的民国1926-1949（套装4册）\",\n    \"author\": \"沈弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两岸新编中国近代史·晚清卷（全2册）\",\n    \"author\": \"王建朗/黄克武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015321-dbf17d?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两岸新编中国近代史·民国卷（全2册）\",\n    \"author\": \"王建朗/黄克武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015309-a31b4d?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潮来潮去：海关与中国现代性的全球起源\",\n    \"author\": \"方德万\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国现代史\",\n    \"author\": \"徐中约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代通史（套装共10册）\",\n    \"author\": \"张海鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009672-5434a0?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午殇思\",\n    \"author\": \"刘声东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009177-e05cf4?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东亚近代文明史上的梁启超\",\n    \"author\": \"狭间直树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋军阀史话\",\n    \"author\": \"丁中江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006738-a84f44?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的底稿\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极乐诱惑：太平天国的兴亡\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：摇晃的中国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005151-2a156e?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1927·谁主沉浮\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋裂变\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005022-6f69d4?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧私生活回忆录\",\n    \"author\": \"裕德龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004989-2742d5?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大变局1911\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的正面与侧面\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重说中国近代史\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004869-d245f9?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的汪精卫\",\n    \"author\": \"林思云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国误会了袁世凯\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866\",\n    \"category\": \"近代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长安与河北之间\",\n    \"author\": \"仇鹿鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054402-00b665?p=8866\",\n    \"category\": \"隋唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录3：大结局\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022287-27301b?p=8866\",\n    \"category\": \"隋唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的正午\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005139-267d57?p=8866\",\n    \"category\": \"隋唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产是部金融史\",\n    \"author\": \"黄立坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与中国经济\",\n    \"author\": \"盛松成等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512808-94f8bf?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房法典\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990313-a6a495?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球房地产\",\n    \"author\": \"夏磊/任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与城市发展\",\n    \"author\": \"陈杰/陆铭/黄益平/潘英丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866\",\n    \"category\": \"房地产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二幅地图中的世界史\",\n    \"author\": \"杰里・布罗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024693-19bb78?p=8866\",\n    \"category\": \"世界是\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑洞之书\",\n    \"author\": \"史蒂文・古布泽/弗兰斯・比勒陀利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866\",\n    \"category\": \"黑洞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：个人、组织如何与风险共舞\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非对称风险\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲\",\n    \"author\": \"阿莉森・施拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险认知\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维与陷阱\",\n    \"author\": \"史蒂夫・卡斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被平均的风险\",\n    \"author\": \"萨姆・萨维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038088-8edfbb?p=8866\",\n    \"category\": \"风险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走钢丝的人\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031827-350ba1?p=8866\",\n    \"category\": \"暴力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷暴力\",\n    \"author\": \"玛丽・弗朗斯・伊里戈扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866\",\n    \"category\": \"暴力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民疯狂的欧洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沿坟墓而行\",\n    \"author\": \"纳韦德・凯尔曼尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐霞客游记（全本全注全译）\",\n    \"author\": \"朱惠荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984961-6859f1?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火车大巴扎\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052536-571f79?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大风向野\",\n    \"author\": \"练明乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047823-81f4e6?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅰ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅱ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"占卜师的预言\",\n    \"author\": \"蒂齐亚诺・泰尔扎尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯是一条鱼\",\n    \"author\": \"提齐安诺・斯卡帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航西飞\",\n    \"author\": \"柏瑞尔・马卡姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山旅书札\",\n    \"author\": \"伊莎贝拉・博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说吧，叙利亚\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨西哥湾千里徒步行\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前往阿姆河之乡\",\n    \"author\": \"罗伯特・拜伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日升之处\",\n    \"author\": \"A.W.金莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老巴塔哥尼亚快车\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多瑙河之旅\",\n    \"author\": \"克劳迪欧・马格里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"察沃的食人魔\",\n    \"author\": \"J.H.帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别列津纳河\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往印度次大陆\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"26城记\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳船上的孩子\",\n    \"author\": \"雅丝米娜・米哈伊洛维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽暗国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信徒的国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边境·近境\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方的鼓声\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客厅里的绅士\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026385-b08e93?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡苦不苦\",\n    \"author\": \"陈丹燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禹域鸿爪\",\n    \"author\": \"内藤湖南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021618-f78c8b?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"River Town\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021492-f2f9e2?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与爱之地：入以色列记\",\n    \"author\": \"云也退\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014499-251f20?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背包十年\",\n    \"author\": \"小鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲三万里\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866\",\n    \"category\": \"游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的战争\",\n    \"author\": \"Momself\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破圈：如何突破认知局限并实现终身成长\",\n    \"author\": \"顾及\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自洽：在不确定的日子里向内看\",\n    \"author\": \"史欣悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498615-e56c1d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的孩子\",\n    \"author\": \"迈克尔・乔莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498705-4c11d3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不必太用力\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错失恐惧\",\n    \"author\": \"帕特里克·J.麦金尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500760-480526?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自律修炼手册\",\n    \"author\": \"史蒂夫・帕弗利纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500763-ae1e4a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智突围\",\n    \"author\": \"Windy Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500784-b71caf?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大江健三郎人生成长系列（套装共4册）\",\n    \"author\": \"大江健三郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500874-a07323?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理自助读物精选（套装17册）\",\n    \"author\": \"南茜・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谢谢，但今天不行\",\n    \"author\": \"科尔杜拉・努斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501042-6f62d9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基层女性\",\n    \"author\": \"王慧玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往未来之路\",\n    \"author\": \"赵昂/任国荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非线性成长\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的堡垒\",\n    \"author\": \"詹森・雷库拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511824-5bbdd3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为黑马\",\n    \"author\": \"托德・罗斯/奥吉・奥加斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512115-a73ff5?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突的演化\",\n    \"author\": \"杰弗里・贝蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512607-ff38db?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进有道\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512904-0b5469?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姥爷，我们天上见\",\n    \"author\": \"蒋雯丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513441-514038?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顽童小番茄\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灿若黎明\",\n    \"author\": \"艾米・哈蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004398-f7de17?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和另一个自己谈谈心\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004392-11723b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何戒掉坏习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为主角\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷静表达的艺术\",\n    \"author\": \"罗纳德·T·派特佛恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的150个信念\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大器晚成\",\n    \"author\": \"里奇・卡尔加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杏仁\",\n    \"author\": \"孙元平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997795-ec9e5f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在动机\",\n    \"author\": \"爱德华・L. 德西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997342-de547e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知红利\",\n    \"author\": \"谢春霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效迭代\",\n    \"author\": \"冯起升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们今天怎样做父亲\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995407-79bcac?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"持续行动\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995179-bf6496?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为极少数\",\n    \"author\": \"李栩然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995131-73e16b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇敢而非完美\",\n    \"author\": \"拉什玛・萨贾尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好思考\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个心碎的伊朗女人\",\n    \"author\": \"龚娜姿・哈宣沙达・邦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994564-faf248?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度改变\",\n    \"author\": \"泽阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994561-5fcd0c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让情绪毁了你的努力\",\n    \"author\": \"剑圣喵大师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向心理学\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只管去做\",\n    \"author\": \"邹小强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991549-e07ddd?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恰到好处的挫折\",\n    \"author\": \"格雷格• S •里德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991267-795ad9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生没有后悔药\",\n    \"author\": \"约翰・伊佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990643-2981f8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你没有退路，才有出路\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的骑士男孩\",\n    \"author\": \"金・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989767-a100a8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年顶十年\",\n    \"author\": \"剽悍一只猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989455-699466?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的囚徒\",\n    \"author\": \"亚历克斯・佩塔克斯/伊莱恩・丹顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超强专注力\",\n    \"author\": \"西多昌规\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要做人生的甲方\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是谁出的题这么难，到处都是正确答案\",\n    \"author\": \"邱天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破天性\",\n    \"author\": \"布赖恩・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏菲的哲学课\",\n    \"author\": \"多米尼克・贾尼科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985762-968eb9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（30周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个抗压的人\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生护城河\",\n    \"author\": \"张辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983704-127285?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同自己\",\n    \"author\": \"斯蒂芬妮・斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑：让选择变简单的方法\",\n    \"author\": \"欧文・瑟维斯/罗里・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的桌子\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982483-fa4e5d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格的陷阱\",\n    \"author\": \"杰弗里·E.杨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与内心的冲突和解\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日之计\",\n    \"author\": \"本杰明・斯帕/迈克尔・赞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：如何成为一个有价值的知识变现者\",\n    \"author\": \"Angie\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国女孩\",\n    \"author\": \"王苇柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053208-116309?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在时光中盛开的女子\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的心理学\",\n    \"author\": \"王明姬/姚兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052671-91e779?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体突围\",\n    \"author\": \"艾玛・加侬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的自律，给你自由\",\n    \"author\": \"小椰子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简社交\",\n    \"author\": \"莫拉格・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是记性差，只是没找对方法\",\n    \"author\": \"池田义博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习：10个你必须掌握的未来生存法则\",\n    \"author\": \"丹・苏利文/凯瑟琳・野村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界学习\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长行动指南\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通也要懂套路\",\n    \"author\": \"姜朝川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是失败，只是差一点成功\",\n    \"author\": \"萨拉・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能2\",\n    \"author\": \"刘船洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗物质三部曲\",\n    \"author\": \"菲利普・普尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭2\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别做那只迷途的候鸟\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要如何衡量你的人生\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑\",\n    \"author\": \"张羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺爱\",\n    \"author\": \"罗伯特・纳伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导就是让人追随\",\n    \"author\": \"约翰・科特/霍尔格・拉斯格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝲蛄吟唱的地方\",\n    \"author\": \"迪莉娅・欧文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046752-6d776b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趁早（十周年畅销升级版）\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挫折复原力\",\n    \"author\": \"丹尼斯・穆蓝纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保持饥渴\",\n    \"author\": \"Thinkers50\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻人，你就是想太多\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045006-2bc59b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极思考\",\n    \"author\": \"约翰尼・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044913-7a0138?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小孩\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044604-4d3683?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑又怎样\",\n    \"author\": \"弗兰齐丝卡・赛柏特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为面向未来的学习者（原书第7版）\",\n    \"author\": \"卡罗尔・卡特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而不凡\",\n    \"author\": \"维申・拉克雅礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册：重塑升级版\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎妈战歌\",\n    \"author\": \"蔡美儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆\",\n    \"author\": \"卢龙斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董卿：做一个有才情的女子\",\n    \"author\": \"乔瑞玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越（果麦经典）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039837-b00dc9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度连接\",\n    \"author\": \"杰西・沃伦・特维罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039315-f3117a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Unfu*k Yourself\",\n    \"author\": \"Gary John Bishop\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最初之前\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036237-0122de?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在亲密关系中成长\",\n    \"author\": \"卡洛琳・戴奇/丽萨・罗伯邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控习惯\",\n    \"author\": \"詹姆斯・克利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控关系\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（25周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034338-0f9f3b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变提问，改变人生（原书第3版）\",\n    \"author\": \"梅若李・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失误：为什么我们总爱犯错？\",\n    \"author\": \"凯瑟琳・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"登天的感觉\",\n    \"author\": \"岳晓东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033522-deb968?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己的人自带光芒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头的咖啡馆\",\n    \"author\": \"约翰・史崔勒基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉住气，吃硬饭\",\n    \"author\": \"王路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布隆夫曼脱单历险记\",\n    \"author\": \"丹尼尔・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的答案\",\n    \"author\": \"卢思浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032070-1c4c86?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十几岁，没有十年\",\n    \"author\": \"孙晴悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只想和你好好生活\",\n    \"author\": \"武志红等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式成长\",\n    \"author\": \"惠特尼・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追恐龙的男孩\",\n    \"author\": \"贾科莫・马扎里奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030879-d30fd6?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理界限\",\n    \"author\": \"杨嘉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消极情绪的力量\",\n    \"author\": \"托德・卡什丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人穷口袋，富人富脑袋\",\n    \"author\": \"曾驿翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少女，请回答\",\n    \"author\": \"张晓晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福断舍离\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030489-949958?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每一个认真生活的人，都值得被认真对待\",\n    \"author\": \"马叛/傅首尔/小岩井等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030477-a9eb3c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人不可以穷\",\n    \"author\": \"正经婶儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找更明亮的天空\",\n    \"author\": \"古尔瓦力・帕萨雷/娜德纳・古力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030261-83d050?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响：如何自然地赢得他人的心\",\n    \"author\": \"凯伦・梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正面管教\",\n    \"author\": \"简・尼尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029700-2aae5a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长：颠覆思维模式，重新定义成功\",\n    \"author\": \"科里・夏纳罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029661-3b9e65?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的勇气\",\n    \"author\": \"岸见一郎/古贺史健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029367-9f1f8a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是个年轻人，我心情不太好\",\n    \"author\": \"阿澜・卢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029265-8b0217?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再忙也要用心生活\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女少年\",\n    \"author\": \"秋微\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028980-691d01?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青青陌上桑\",\n    \"author\": \"陆观澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027747-d1669b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知突围：做复杂时代的明白人\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高手：精英的见识和我们的时代\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跃升\",\n    \"author\": \"威廉・麦独孤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027246-69f74b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密如何改变了我们的生活\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆境成长：坚韧人格养成手册\",\n    \"author\": \"小乔治·S.埃弗利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原生家庭\",\n    \"author\": \"苏珊・福沃德/克雷格・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024315-e9494b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木匠手记\",\n    \"author\": \"尼娜・麦克劳林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何想到又做到\",\n    \"author\": \"肖恩・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越原生家庭（原书第4版）\",\n    \"author\": \"罗纳德・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023712-fa74ce?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美女都是狠角色\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023664-8fe48b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体不说谎\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体赋能\",\n    \"author\": \"YouCore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"态度\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023064-924c58?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自媒体写作\",\n    \"author\": \"余老诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023055-a42878?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在革命：一本关于成长的书\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深阅读\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美好人生运营指南\",\n    \"author\": \"一稼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022893-a74f2b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终有一天你会懂\",\n    \"author\": \"琢磨先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到孤独尽头\",\n    \"author\": \"贝内迪克特・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022347-89429b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的幸福\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022284-740f82?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处停歇\",\n    \"author\": \"杰米・阿滕贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022275-8a9145?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的要素\",\n    \"author\": \"西蒙・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022251-1bcbdc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别的女生萨哈拉\",\n    \"author\": \"爱斯米・科德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022122-a16d36?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让人生停止灰暗的艺术\",\n    \"author\": \"苏珊・福沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021906-c19745?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果你再勇敢一点\",\n    \"author\": \"波莉・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021660-aab07e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Daring Greatly\",\n    \"author\": \"Brene Brown\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变人生\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信思考\",\n    \"author\": \"泉忠司著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我和厄尔以及将死的女孩\",\n    \"author\": \"杰西・安德鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021093-451af6?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的天赋\",\n    \"author\": \"肯・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020910-0f5b1c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰普勒极简人生法则系列（套装共6册）\",\n    \"author\": \"理查德・泰普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找到意想不到的自己\",\n    \"author\": \"丛扬洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020430-d63e63?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇风岁月\",\n    \"author\": \"罗伯特・麦卡蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020187-d7c04c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者沟通圣经\",\n    \"author\": \"珍妮弗・康维勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命中最简单又最困难的事\",\n    \"author\": \"大卫・福斯特・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019881-0c36b8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职得：成为自己故事里的英雄\",\n    \"author\": \"高琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019758-aa07ed?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样读书就够了\",\n    \"author\": \"赵周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019695-1defad?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类的天赋\",\n    \"author\": \"凯文・达顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识变现\",\n    \"author\": \"萧秋水/剽悍一只猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018279-eb39b7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不过低配的人生\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017898-288643?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小学问\",\n    \"author\": \"黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017124-975340?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹男孩\",\n    \"author\": \"帕拉西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017115-40f395?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲密关系：通往灵魂的桥梁\",\n    \"author\": \"克里斯多福・孟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017046-fa06c7?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作是最好的修行\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你骨子里是个牛人\",\n    \"author\": \"珍・新赛罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016563-63ad1c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上来信\",\n    \"author\": \"胡子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者优势\",\n    \"author\": \"Marti Olsen Laney\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016314-c5509f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可爱的诅咒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015768-fe4a62?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在的重生\",\n    \"author\": \"吉杜・克里希那穆提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015477-39ea6d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的枷锁\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015369-cdc221?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所以，一切都是童年的错吗？\",\n    \"author\": \"KnowYourself主创们\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015294-aa1568?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚毅\",\n    \"author\": \"安杰拉・达克沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015231-e2dc65?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请停止无效努力\",\n    \"author\": \"孙圈圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲出一个精彩故事\",\n    \"author\": \"麦成辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好工作，好好生活\",\n    \"author\": \"克里斯汀・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变带来医治\",\n    \"author\": \"亨利・克劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014841-214fcc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆者：周鸿祎自传\",\n    \"author\": \"周鸿祎/范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014796-d33909?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的觉醒\",\n    \"author\": \"沙法丽・萨巴瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014697-afca27?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世上没有怀才不遇这件事\",\n    \"author\": \"温言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014346-461bcf?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要么出众，要么出局\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014193-3f0667?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见成长的自己\",\n    \"author\": \"卡罗尔・徳韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014046-66564e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从现在出发\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013962-86c669?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破自我的标签\",\n    \"author\": \"陈虎平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在哈佛的最后一堂课\",\n    \"author\": \"艾瑞克・赛诺威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑自我：如何成为一个很幸福的人\",\n    \"author\": \"尼尔・帕斯理查\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013746-1a8179?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长大后的世界\",\n    \"author\": \"罗曼・阿拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012951-aa9637?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿过森林的男孩\",\n    \"author\": \"加思・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012372-292745?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才源自刻意练习\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012300-54ef8d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁说你不能坚持\",\n    \"author\": \"程龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等你呼唤我的名字\",\n    \"author\": \"阿尔伯特・埃斯皮诺萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你自以为的极限，只是别人的起点\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011988-1c9150?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣地亚哥朝圣之路\",\n    \"author\": \"王赛男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011304-11a0bb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太傻天书\",\n    \"author\": \"太傻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不设限（中英双语版）\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的好天气\",\n    \"author\": \"青山七惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010605-21733e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的力量（珍藏版）\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被讨厌的勇气\",\n    \"author\": \"岸见一郎/古贺史健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010347-03ea7c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情力\",\n    \"author\": \"亚瑟・乔拉米卡利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010311-5eb039?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生命有什么可能\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你的才华还撑不起你的梦想时\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们最幸福\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一粒红尘\",\n    \"author\": \"独木舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009345-5d9d0b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的绵羊\",\n    \"author\": \"威廉・德雷谢维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗振宇：罗辑思维成长三部曲\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008769-f7cf2e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁克林有棵树\",\n    \"author\": \"贝蒂・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008640-fcdadb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见孩子，遇见更好的自己\",\n    \"author\": \"赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张德芬身心灵四部曲（套装共4册）\",\n    \"author\": \"张德芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙应台“人生三书”（套装共3册）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还年轻，我还可以重新出发\",\n    \"author\": \"唐骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像疯子一样思考，像天才一样行动\",\n    \"author\": \"凯文・达顿/安迪・麦克纳布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007617-83ecfb?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨婴国\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿甘正传\",\n    \"author\": \"温斯顿・葛詹姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007395-34fe2b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产狂人许家印\",\n    \"author\": \"魏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独自上场\",\n    \"author\": \"李娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进：如何成为一个很厉害的人\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达哲学：王健林首次自述经营之道\",\n    \"author\": \"王健林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小别离\",\n    \"author\": \"鲁引弓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完整的成长：儿童生命的自我创造\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱和自由：孙瑞雪幼儿教育演讲录\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力，才配有未来\",\n    \"author\": \"小川叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜拉拉升职记（套装共4册）\",\n    \"author\": \"李可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006420-6369ee?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（20周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要让未来的你，讨厌现在的自己\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005937-7d4be8?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的真谛\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁的青春不迷茫\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005709-7eb74c?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的我们\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你慢慢长大\",\n    \"author\": \"刘瑜/周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005649-79868f?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁都不敢欺负你\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005631-9ebae5?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将来的你，一定会感谢现在拼命的自己\",\n    \"author\": \"汤木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866\",\n    \"category\": \"成长\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨房（译文经典）\",\n    \"author\": \"吉本芭娜娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032481-51d917?p=8866\",\n    \"category\": \"治愈系\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色地址簿\",\n    \"author\": \"苏菲亚・伦德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032307-65c5a3?p=8866\",\n    \"category\": \"治愈系\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑你好\",\n    \"author\": \"安珀・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零压人生\",\n    \"author\": \"米修・斯托罗尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051774-c1d5fd?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的焦虑\",\n    \"author\": \"斯科特・施托塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑又怎样\",\n    \"author\": \"弗兰齐丝卡・赛柏特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑心理学\",\n    \"author\": \"董心洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035310-d689df?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑星球笔记\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035019-621de5?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑心理学：别让美好的生活被焦虑毁了\",\n    \"author\": \"陈东城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030768-ce633e?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理界限\",\n    \"author\": \"杨嘉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么我们总是在逃避\",\n    \"author\": \"约瑟夫・布尔戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028359-3ffd8c?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑急救\",\n    \"author\": \"贝芙・艾斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028233-5b176f?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在成长\",\n    \"author\": \"塔玛・琼斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866\",\n    \"category\": \"焦虑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己对话：曼德拉自传\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023478-a73738?p=8866\",\n    \"category\": \"曼德拉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张宗和日记（全二卷）\",\n    \"author\": \"张宗和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510597-3f3fea?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙宝瑄日记\",\n    \"author\": \"孙宝瑄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心为身役：苏珊·桑塔格日记与笔记（1964-1980）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生：苏珊·桑塔格日记与笔记（1947-1963）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利维亚日记\",\n    \"author\": \"切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟日记\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010896-aa236e?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩智慧精髓大合集（套装共三册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866\",\n    \"category\": \"日记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒枪手：慕尼黑的秘密间谍\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁幕欧洲之新生\",\n    \"author\": \"卡尔・施勒格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜将至\",\n    \"author\": \"迈克尔・多布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032853-5f84af?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"档案：一部个人史\",\n    \"author\": \"蒂莫西・加顿艾什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败的帝国：从斯大林到戈尔巴乔夫\",\n    \"author\": \"弗拉季斯拉夫・祖博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布达佩斯往事\",\n    \"author\": \"卡蒂・马顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009486-392c89?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联专家在中国（1948-1960）\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866\",\n    \"category\": \"冷战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学梯级公开课（套装共6册）\",\n    \"author\": \"摩罗/杨帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036837-519673?p=8866\",\n    \"category\": \"文言文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年文言\",\n    \"author\": \"陳永正/徐晉如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027861-286c94?p=8866\",\n    \"category\": \"文言文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为何结婚，又为何不忠\",\n    \"author\": \"海伦・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500571-d4970f?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身社会\",\n    \"author\": \"伊利亚金・奇斯列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511056-3aa444?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美婚姻\",\n    \"author\": \"米歇尔・里奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只想和你好好生活\",\n    \"author\": \"武志红等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻中的陌生人\",\n    \"author\": \"埃米尔・库斯图里卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027054-9b8a7c?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻心理学\",\n    \"author\": \"霍妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026814-a0dd95?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻的意义\",\n    \"author\": \"提摩太・凯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014898-c319af?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分心也有好婚姻\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866\",\n    \"category\": \"婚姻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（四）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866\",\n    \"category\": \"外文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物语系列：倾物语\",\n    \"author\": \"西尾维新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491532-54d69b?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物语系列：猫物语.白\",\n    \"author\": \"西尾维新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491559-e90937?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物语系列：猫物语.黑\",\n    \"author\": \"西尾维新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491565-9e0377?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸侦探系列（3册）\",\n    \"author\": \"弗朗齐斯卡・比尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503268-1bec63?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的羔羊四部曲\",\n    \"author\": \"托马斯・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507501-9415e7?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天机十二宫（套装2册）\",\n    \"author\": \"王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513327-58c5bc?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记5\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513426-83f70a?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（果麦经典）\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998860-dbddd1?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆·侦探小说黄金时代经典作品集（第一辑）\",\n    \"author\": \"梅维斯・多里尔・海等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995047-3a5eaf?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛经济学家推理系列（套装共4册）\",\n    \"author\": \"马歇尔・杰文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991537-2fc1c4?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冤罪代码\",\n    \"author\": \"纪遊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991234-3be92d?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返犯罪现场（共4册）\",\n    \"author\": \"宇尘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990115-eecd7e?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理计划\",\n    \"author\": \"宁城荒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985519-f13a9a?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死局\",\n    \"author\": \"江海潮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985048-e4e04b?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃勒里·奎因（30本合集）\",\n    \"author\": \"埃勒里・奎因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051606-c33e83?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达希尔•哈米特系列（共8册）\",\n    \"author\": \"达希尔・哈米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050382-1b6108?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我消失的影子\",\n    \"author\": \"高博洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048903-6588d8?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯先生\",\n    \"author\": \"米奇・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047973-333dca?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白猿客栈\",\n    \"author\": \"猎衣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047937-74e8c8?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046815-9f9c8d?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗影\",\n    \"author\": \"时晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046365-a83ffb?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八卦侦探\",\n    \"author\": \"姜木水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046179-deec2b?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青崎有吾推理作品集：里染天马系列（套装全4册）\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040971-7442fe?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝之屋\",\n    \"author\": \"安东尼・赫洛维滋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040410-cac2ae?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂侦探小说大全集（全85册）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036642-5cddab?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京极夏彦百鬼夜行中短篇集（套装5册）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033678-0e267f?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马普尔小姐探案全集\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029085-8c4c31?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大侦探波洛探案全集\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026937-aadc2c?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使安魂三部曲\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022779-c4d931?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛田庄司精选作品合集（共14册）\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022599-4320ac?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎的毒药\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020940-286d4a?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"松本清张推理悬疑典藏版合集（套装共7册）\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018183-4e0feb?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"律政先锋\",\n    \"author\": \"蒂姆・维卡里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017505-4cd655?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂作品集（套装共45册）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015663-b5afa0?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华生手稿\",\n    \"author\": \"邦妮・麦克伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014928-2d50ce?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008217-788327?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（插图新注新译本）\",\n    \"author\": \"亚瑟·柯南·道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连环罪：心里有诡系列（上下册）\",\n    \"author\": \"墨绿青苔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866\",\n    \"category\": \"侦探\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"К.С.斯坦尼斯拉夫斯基作品集（套装共四册）\",\n    \"author\": \"斯坦尼斯拉夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019338-3fa8a5?p=8866\",\n    \"category\": \"明星\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰民族\",\n    \"author\": \"T.M.迪瓦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503739-f61668?p=8866\",\n    \"category\": \"苏格兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC苏格兰史\",\n    \"author\": \"尼尔・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866\",\n    \"category\": \"苏格兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰女王的悲剧\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866\",\n    \"category\": \"苏格兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲技巧\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512052-f9a19a?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡公众表达课\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课3\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED说话的力量\",\n    \"author\": \"阿卡什·P.卡里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判的艺术\",\n    \"author\": \"于反\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986518-9ea72b?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服力：如何让沟通充满逻辑与技巧\",\n    \"author\": \"白丽洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986359-ce2061?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服力：如何让沟通充满逻辑（全新升级版）\",\n    \"author\": \"白丽洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985729-c3f598?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一名脱口秀老手\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课1：说的艺术\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985207-998a83?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做一场精彩的演讲\",\n    \"author\": \"琼・戴兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑演讲\",\n    \"author\": \"大卫祁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴演讲\",\n    \"author\": \"朱迪思・汉弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马云的说话之道（2019版）\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准表达：开口就能说重点\",\n    \"author\": \"牛津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026985-8d194b?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主宰演讲台\",\n    \"author\": \"比尔・胡戈特伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026454-f43984?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你玩脱口秀\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017172-eb3c87?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED思想的力量系列（套装共11册）\",\n    \"author\": \"奇普・基德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012561-cc2ad1?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白说\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲的力量\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006537-682cc0?p=8866\",\n    \"category\": \"演讲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你又忙又美，何惧患得患失\",\n    \"author\": \"梁爽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总能做出正确决定的幸运法则\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你的才华还撑不起你的梦想时\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力，才配有未来\",\n    \"author\": \"小川叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力到无能为力，拼搏到感动自己\",\n    \"author\": \"沐木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006447-568588?p=8866\",\n    \"category\": \"正能量\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习入门：基于Python的理论与实现\",\n    \"author\": \"斋藤康毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866\",\n    \"category\": \"机器学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器学习实战\",\n    \"author\": \"Peter Harrington\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021075-0d6e7c?p=8866\",\n    \"category\": \"机器学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国浮沉：关于拿破仑一世的私人回忆（全2册）\",\n    \"author\": \"克劳德・梅尼瓦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498120-b235b7?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑大帝（全2册）\",\n    \"author\": \"安德鲁・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：决定欧洲命运的四天\",\n    \"author\": \"蒂姆・克莱顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（拿破仑批注版）\",\n    \"author\": \"马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049287-a0aa34?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆拿破仑\",\n    \"author\": \"布里昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑三世与法兰西第二帝国\",\n    \"author\": \"皮埃尔・德・拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑传（果麦经典）\",\n    \"author\": \"埃米尔・路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029262-51cdbd?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：四天、三支大军和三场战役的历史\",\n    \"author\": \"伯纳德・康沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866\",\n    \"category\": \"拿破仑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西街\",\n    \"author\": \"菲利普・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002484-3fc686?p=8866\",\n    \"category\": \"种族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"根部之血：美国的一次种族清洗\",\n    \"author\": \"特里克・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866\",\n    \"category\": \"种族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平等之路\",\n    \"author\": \"迈克尔·J.克拉曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866\",\n    \"category\": \"种族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国种族简史\",\n    \"author\": \"托马斯・索威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866\",\n    \"category\": \"种族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"磨坊信札（作家榜经典文库）\",\n    \"author\": \"阿尔封斯・都德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491025-903fa5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年百部红色经典系列：第一辑（套装共20册）\",\n    \"author\": \"周梅森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491169-00db51?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经史百家杂钞套装共8册（全本全注全译）\",\n    \"author\": \"余兴安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491943-3f0e5a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太多值得思考的事物\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493218-ba0ce5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第三辑）\",\n    \"author\": \"唐克扬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496881-d79a75?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文经典·第一辑（套装共20册）\",\n    \"author\": \"福楼拜等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497409-47086f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生必读之书：文景古典·名译插图本\",\n    \"author\": \"埃斯库罗斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497523-e093d0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方心理学大师经典译丛（套装共11册）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497529-0e8c3b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联苏俄文学经典译著（套装15册）\",\n    \"author\": \"高尔基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497571-7a9471?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著名家经典译本·译文40（套装共40册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497904-e167f7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典名著超值套装（80册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498210-cccd8e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中译经典文库•世界文学名著精选50册\",\n    \"author\": \"中国对外翻译出版公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文心理分析作品集（套装共12册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利小说全集（全6册）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498882-338365?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫罗博士岛（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498885-f259b0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长眠不醒（作家榜经典文库）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498939-95f078?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（作家榜经典文库）\",\n    \"author\": \"尼古拉・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498993-19158e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（作家榜经典文库）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498984-f45284?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄罗斯套娃（短经典精选）\",\n    \"author\": \"阿道夫・比奥伊・卡萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499080-07b8b6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基文集套装（全八册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499341-f43d73?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拳头（短经典精选）\",\n    \"author\": \"彼得罗・格罗西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499359-0762d3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基中篇心理小说经典（全4册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499635-ae8716?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈鼓应著作精选合集（套装共6册）\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499644-a23b2a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"避暑（短经典精选）\",\n    \"author\": \"何塞・多诺索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499668-bf196c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变色龙（作家榜经典文库）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499692-2e4742?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际战争（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499734-b85d92?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"套中人（作家榜经典文库）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500169-080c3a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽的约定（作家榜经典文库）\",\n    \"author\": \"阿兰・傅尼埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500358-f4641f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺纪念文集水墨珍藏版套装全六册\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500346-c90acd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吹牛大王历险记（作家榜经典文库）\",\n    \"author\": \"埃・拉斯伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500382-8e5f6b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力：全新升级版\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海蒂（果麦经典）\",\n    \"author\": \"约翰娜・斯比丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500616-d44508?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名人传（作家榜经典文库）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500694-85d5d9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代大师林语堂作品全新修订版（全25册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500832-ce5662?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余秋雨学术四卷（套装共4册）\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500850-128583?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林格雷的画像（作家榜经典文库）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500937-3c3b07?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞选（古典文学大字本）\",\n    \"author\": \"陆侃如/龚克昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501081-311ef3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"S.A.阿列克谢耶维奇作品集（套装共五册）\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501123-bc5f17?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（读客经典文库）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501381-675b76?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经选（古典文学大字本）\",\n    \"author\": \"褚斌杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501477-e31d54?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词选（古典文学大字本）\",\n    \"author\": \"刘石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501546-485495?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛弃疾词选（古典文学大字本）\",\n    \"author\": \"刘扬忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501651-12c86d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱光潜全集\",\n    \"author\": \"朱光潜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501777-4c22d0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鄙视\",\n    \"author\": \"阿尔贝托・莫拉维亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501930-0b2e66?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（古典文学大字本）\",\n    \"author\": \"孙洙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501939-d54a1c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历代名家词集精华录（全22册）\",\n    \"author\": \"温庭筠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502101-12a823?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樊登讲论语：学而\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502065-aaa0f3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆短篇小说全集（读客经典文库）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502116-5455c0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元曲三百首（古典文学大字本）\",\n    \"author\": \"张燕瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502113-fcbdaa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聚斯金德文集（套装共5册）\",\n    \"author\": \"帕特里克・聚斯金德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502188-2f2edc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古文观止（古典文学大字本）\",\n    \"author\": \"吴楚材/吴调侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502311-70f080?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳永词选（古典文学大字本）\",\n    \"author\": \"柳永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502314-b5e7e4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词三百首（古典文学大字本）\",\n    \"author\": \"武玉成/顾丛龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503301-c03e33?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照词选（古典文学大字本）\",\n    \"author\": \"陈祖美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503934-42bda0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白居易诗选（古典文学大字本）\",\n    \"author\": \"孙明君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504276-543fa0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恩古吉·瓦·提安哥文集（全7册）\",\n    \"author\": \"恩古吉・瓦・提安哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504327-8ea788?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著大师课合集（套装全7册）\",\n    \"author\": \"柳鸣九等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词选（古典文学大字本）\",\n    \"author\": \"韩经太/王维若\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504993-b34598?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学鉴赏辞典大系（套装共17部22册）\",\n    \"author\": \"上海辞书出版社文学鉴赏辞典编纂中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506529-6d5879?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河铁道之夜（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506277-c17653?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓶梅的艺术\",\n    \"author\": \"孙述宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506652-ddc7ba?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏蛋与大象（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506616-7f1f34?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李商隐诗选（古典文学大字本）\",\n    \"author\": \"董乃斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506757-ccee5d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫中短篇小说全集（全8册）\",\n    \"author\": \"安东・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507030-e46ffb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李煜诗词全集（作家榜经典文库）\",\n    \"author\": \"李煜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507048-37f6d0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青梅竹马·樋口一叶选集（作家榜经典文库）\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507315-77109b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪事务所（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507474-204cb6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔维诺的经典世界（共26册）\",\n    \"author\": \"伊塔洛・卡尔维诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507552-e56fe9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勒卡雷谍影经典系列重磅套装15册\",\n    \"author\": \"约翰・勒卡雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507804-ad5466?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国诗人徐志摩作品典藏全集\",\n    \"author\": \"徐志摩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英诗经典名家名译全集（套装共21本）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508305-0fc203?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（全四册）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508653-1087bf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫大合集（全10册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508854-9a7e1f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·初中部分·全49种\",\n    \"author\": \"儒勒・凡尔纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508971-dab70d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·高中部分·全56种\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509052-6ba338?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯原版作品大合集（套装共70册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508989-b952cf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文白对照四书五经全本（精注全译）\",\n    \"author\": \"李伯钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单（全本全注全译）\",\n    \"author\": \"陈伟明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫禁色作品集（套装共15册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509106-9bcd46?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格中短篇小说选（外国文学名著丛书）\",\n    \"author\": \"斯・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509109-d38600?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字套装全五册（全本全注全译）\",\n    \"author\": \"许慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509451-f7225a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草婴译列夫·托尔斯泰·全3种6册\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509229-b42707?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宁美文精选（全3册）\",\n    \"author\": \"伊凡・阿列克谢耶维奇・布宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509214-c671f0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯至译文全集（共四册）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509274-6808a3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去年的树（果麦经典）\",\n    \"author\": \"新美南吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509280-4384dd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建党百年百篇文学短经典（全5册）\",\n    \"author\": \"贺绍俊等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509304-7fb398?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图哲学作品集（套装6册）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509394-d47210?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社博雅文库大全集（套装共24本）\",\n    \"author\": \"费孝通等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509547-14b151?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅奖作家短经典（全14册）\",\n    \"author\": \"陈忠实等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509631-093196?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯文集·逝世150周年纪念版\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509703-27e896?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（果麦经典）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文与社会译丛·精选集（套装20册）\",\n    \"author\": \"汉娜・阿伦特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509832-1b9259?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录（全本全注全译）\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509775-46c4c9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜（果麦经典）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510144-7fa451?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫言经典作品（套装7册）\",\n    \"author\": \"莫言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510243-1f1cbf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华章同人重现经典（套装24册）\",\n    \"author\": \"安・兰德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510513-78819a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基作品集（套装共9册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510720-d03973?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"围炉夜话（作家榜经典文库）\",\n    \"author\": \"王永彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510696-9e23ec?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清文选\",\n    \"author\": \"刘世南/刘松来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510765-68d5d1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（读客经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510825-94b6a4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小窗幽记（作家榜经典文库）\",\n    \"author\": \"陈继儒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510867-7b596f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学读本丛书典藏全集（共23册）\",\n    \"author\": \"薛天纬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510990-2cbfc9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"处世三大奇书（套装共3册）\",\n    \"author\": \"洪应明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510918-b3a5ca?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂：足本（全三册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510981-38511d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔船\",\n    \"author\": \"西格弗里德・伦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510969-3e51f2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溪山琴况 琴声十六法（全本全注全译）\",\n    \"author\": \"陈忱译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511044-5300d3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风俗通义（全本全注全译）\",\n    \"author\": \"应劭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511053-cc854f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典小白书（全14册）\",\n    \"author\": \"戴维・布朗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511128-49e429?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝范 臣轨 庭训格言（全本全注全译）\",\n    \"author\": \"王双怀等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511086-2c38d2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死一只知更鸟（图像小说）\",\n    \"author\": \"哈珀・李/弗雷德哈珀・李福德姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511326-6ffb36?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变形记（作家榜经典文库）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511323-ecb5b9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话（读客经典文库）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511362-ce4957?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人笔记（作家榜经典文库）\",\n    \"author\": \"伊万・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511440-340449?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（果麦经典）\",\n    \"author\": \"刘向/刘歆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511605-ee4d4c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（作家榜经典文库）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511782-eaea45?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记（2020全新编校精美插图典藏本）\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511932-7b6bb3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季羡林全集（套装全套三十卷）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511971-8fd3a8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著丛书（第二辑）\",\n    \"author\": \"托尔斯泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512160-ee215b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原（果麦经典）\",\n    \"author\": \"托・斯・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512013-24591d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个青年艺术家的画像（果麦经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512145-efc308?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著丛书（第一辑）\",\n    \"author\": \"斯威夫特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512493-553b6b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（作家榜经典文库）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512541-3dc7db?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独小说家（作家榜经典文库）\",\n    \"author\": \"郁达夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512583-7a6408?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远大前程（作家榜经典文库）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512628-994571?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆短篇小说全集（套装共7册）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512712-1e94ab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菜根谭（作家榜经典文库）\",\n    \"author\": \"洪应明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512730-2183ca?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翁贝托·埃科重要代表作品集（套装共12册）\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513030-dd182d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王蒙写给年轻人的中国智慧（全四册）\",\n    \"author\": \"王蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513588-2fdf16?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛虻（果麦经典）\",\n    \"author\": \"埃塞尔・丽莲・伏尼契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513789-ea804a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛天赐传（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004530-ae8ca6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本雅明作品集（套装共六册）\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004428-bf2da4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的枷锁（作家榜经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004386-bd9f54?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先知：纪伯伦散文诗选（果麦经典）\",\n    \"author\": \"纪伯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004314-4501b1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明及其不满（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004269-ea87b0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第二辑）\",\n    \"author\": \"詹姆斯・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004257-24dc6d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文精选散文系列（全6册）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年维特之烦恼（果麦经典）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004071-6309ee?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003906-785783?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵的焦灼（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003828-b5debe?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺散文全编（全6卷）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人鼠之间（果麦经典）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003681-64a126?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日之东·月之西：北欧故事集\",\n    \"author\": \"彼得・克利斯登・亚柏容森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003552-8f56f9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"项塔兰（套装全三册）\",\n    \"author\": \"格里高利・大卫・罗伯兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003516-7758a1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间机器（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003399-288485?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍勒作品集（套装共七册）\",\n    \"author\": \"马克思・舍勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003123-717cf7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尼亚传奇全集（套装共7册）\",\n    \"author\": \"C.S.路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002988-6b8b50?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（作家榜经典文库）\",\n    \"author\": \"蘅塘退士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002970-071756?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时（果麦经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002574-f02fe9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛尔戈王后\",\n    \"author\": \"亚历山大・仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002424-836ef4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（果麦经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾经典合集（共24册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002232-b29b6a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的解析（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002187-512d6c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脚客\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002142-08a9b3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人笔记（果麦经典）\",\n    \"author\": \"伊凡・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001815-50efa3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格作品集（套装共9册）\",\n    \"author\": \"斯特凡・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001710-78d962?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（果麦经典）\",\n    \"author\": \"尼科洛・马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·情感故事书系（套装共66本）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（作家榜经典文库）\",\n    \"author\": \"但丁・阿利吉耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001539-6e9215?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁实秋经典作品雅致生活系列（套装共5册）\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001419-010171?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李健吾译文集（套装共14册）\",\n    \"author\": \"福楼拜等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001437-81e8a8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉檀迦利（果麦经典）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001179-3f0045?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（作家榜经典文库）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001044-27b101?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（读客经典）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000699-3c0b68?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色俄罗斯系列（第二辑）\",\n    \"author\": \"普希金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000600-533ea6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春潮（作家榜经典文库）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000564-12b502?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群雄逐鹿：彩绘三国演义\",\n    \"author\": \"金协中绘/成长著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000246-278283?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（作家榜经典文库）\",\n    \"author\": \"费奥多尔・米哈伊洛维奇・陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999847-be2ddd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降魔修心：彩绘西游记\",\n    \"author\": \"林遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000642-780a39?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培根随笔全集（作家榜经典文库）\",\n    \"author\": \"弗朗西斯・培根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林人（作家榜经典文库）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999451-b07ef2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初恋（作家榜经典文库）\",\n    \"author\": \"伊凡・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999073-2cb9f3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒凉山庄（插图珍藏版）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999151-c700d1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书杂志\",\n    \"author\": \"王念孙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草枕（果麦经典）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998569-850adf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（作家榜经典文库）2020版\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997672-b67be3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙乡年鉴（经典译林）\",\n    \"author\": \"奥尔多・利奥波德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997633-c1cc0f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记丛书\",\n    \"author\": \"沈复/陈裴之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗吉尼亚·伍尔夫作品集（套装共6册）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996826-c6f60d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎注评\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁启超修身三书\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996163-d09e12?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔经济学奖经典文库系列（套装共11册）\",\n    \"author\": \"保罗・克鲁格曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995938-fd0511?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪伯伦大全集名家译著经典套装（全七册）\",\n    \"author\": \"纪伯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995524-a19e30?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列那狐的故事（作家榜经典文库）\",\n    \"author\": \"威廉・卡克斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995368-9b04db?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏珊·桑塔格文集套装（套装共16册）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995377-7fe3c3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（作家榜经典文库）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995341-51019b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话（果麦经典）\",\n    \"author\": \"汉斯・克里斯汀・安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995311-bfdc72?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克小说集（傅雷译文经典）\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995194-58db5d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪夜来客\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995071-9ecd56?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学与人：20世纪西方哲学精选（套装共5本）\",\n    \"author\": \"卡尔・雅斯贝斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保罗·奥斯特作品集（套装共8册）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994537-3a23e1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（博集天卷）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大名著（彩皮版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短经典系列（套装共15册）\",\n    \"author\": \"路易吉・马莱巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991078-23a4a7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪者（读客经典）\",\n    \"author\": \"卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990928-0ab20b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（作家榜经典文库）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990895-2603f9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个来自远方的故事（短经典）\",\n    \"author\": \"让-克利斯托夫・吕芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990028-c5cf11?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔山（读客经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989524-5ccc77?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全7册）\",\n    \"author\": \"伊万谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第五辑）\",\n    \"author\": \"蒲松龄等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985930-aed100?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方百年学术经典著作（套装共30品38册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985768-ab1baa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第四辑）\",\n    \"author\": \"弗吉尼亚・伍尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（中英双语典藏版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚经典作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第13部：卷96~卷98）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985435-f1700a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋全传（作家榜经典文库）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第4部22-28卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984898-007385?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第5部：卷33-卷38）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983725-235f1a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第1部1-7卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983902-35ebe0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第2部8-14卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983941-1ab596?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第3部15-21卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983569-96e619?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第2部：卷9-卷16）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983290-57f378?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第3部：卷17-卷24）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983281-556f8a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第4部：卷25-卷32）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983263-15b46b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子（全本全注全译）\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第1部：卷1-卷8）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054669-60e509?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那时上帝是只兔子\",\n    \"author\": \"莎拉・韦曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051723-905b0e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第三辑）\",\n    \"author\": \"简・奥斯汀等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051342-44a7e5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二十二条军规\",\n    \"author\": \"约瑟夫・海勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051087-ca589a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红字（果麦经典）\",\n    \"author\": \"纳撒尼尔・霍桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050886-37cf4c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫（影子经典）\",\n    \"author\": \"加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050511-978701?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语别裁\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公孙龙子（全本全注全译）\",\n    \"author\": \"黄克剑译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（果麦经典）\",\n    \"author\": \"普罗斯珀・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小彩虹（第一辑）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（果麦经典）\",\n    \"author\": \"爱米丽・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047481-49fc2b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋穀梁传（全本全注全译）\",\n    \"author\": \"徐正英/邹皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（果麦经典）\",\n    \"author\": \"尼古拉・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047319-612f67?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔雅（全本全注全译）\",\n    \"author\": \"管锡华译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（果麦经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046398-388e26?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（果麦经典）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045654-27e62a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著名译典藏（套装共50册）\",\n    \"author\": \"亚历山大・仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045579-8eb63c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特（果麦经典）\",\n    \"author\": \"米・阿・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045261-32db15?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经点醒\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陶渊明集（作家榜经典文库）\",\n    \"author\": \"陶渊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（果麦版）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海译文TOP30名家名作大套装（套装共30本·2019年版）\",\n    \"author\": \"贾雷德・戴蒙德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045210-c6ded3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威诞辰120周年图文珍藏版文集（全18卷）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044511-3d087b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学治要（套装共三册）\",\n    \"author\": \"张文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画梁春尽落香尘\",\n    \"author\": \"刘心武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042753-f657fc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格拉底之死（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵、自我与社会（译文经典）\",\n    \"author\": \"米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北大名家名著文丛（套装共六册）\",\n    \"author\": \"许渊冲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040761-0f0cc1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界少年文学经典文库·中国经典篇（全套30册）\",\n    \"author\": \"吴承恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040800-945097?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我与本我（译文经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸说经典作品集（套装共4册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第二辑）\",\n    \"author\": \"奥斯卡・王尔德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039732-4d4163?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲与文明（译文经典）\",\n    \"author\": \"赫伯特・马尔库塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039576-5787a8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第一辑）\",\n    \"author\": \"薄伽丘等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海浪（译文经典）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039228-13707b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第四只手\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038940-7b7b24?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"田园交响曲（译文经典）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038904-bcb0b1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香水（译文经典）\",\n    \"author\": \"帕特里克・聚斯金德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038457-f07ef8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典藏书全套装（全61册）\",\n    \"author\": \"胡平生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038349-85eafc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（译文经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037821-bebf0d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发条橙（全新译本）\",\n    \"author\": \"安东尼・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037221-aea276?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕鼠器（译文经典）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷经典译文全集（共45册）\",\n    \"author\": \"巴尔扎克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036606-f389f7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第三辑）\",\n    \"author\": \"圣埃克苏佩里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036372-54fcf2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第四辑）\",\n    \"author\": \"大仲马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第五辑）\",\n    \"author\": \"梭罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035886-c54a82?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第一辑）\",\n    \"author\": \"莫泊桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第二辑）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡志忠经典解密系列6本\",\n    \"author\": \"蔡志忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035520-653d63?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皆大欢喜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说选（名著名译丛书）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035244-18370e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035160-d37674?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方心理学名著译丛（套装共十四册）\",\n    \"author\": \"赫尔曼・艾宾浩斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035172-bd4fe6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（名著名译丛书）\",\n    \"author\": \"爱米丽・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034848-f289fc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行记\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034770-67707c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034776-4f89d2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾著作全收录\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学巨匠老舍作品珍藏集（套装53册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034650-848b00?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学百年经典（套装三册）\",\n    \"author\": \"李朝全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔维诺精选作品集（套装23册）\",\n    \"author\": \"伊塔洛・卡尔维诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034284-3a66b1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说选（名著名译丛书）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034254-5ce4c2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与生活\",\n    \"author\": \"理查德・格里格/菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威作品全集（套装共17册）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034464-b3597e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一位女士的画像（名著名译丛书）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034101-54f30a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个陌生女人的来信（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（企鹅经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033813-b518c2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典咏流传诗词曲赋集（套装21册）\",\n    \"author\": \"李白/王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（企鹅经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033651-3000d6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茵梦湖（企鹅经典）\",\n    \"author\": \"施托姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033138-01b7da?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是猫（企鹅经典）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032898-bc4857?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第五辑）\",\n    \"author\": \"雅各布・布克哈特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坟墓的闯入者（企鹅经典）\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032805-2fdf34?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双星\",\n    \"author\": \"罗伯特・海因莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032667-da2c4f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界十大文学名著（名译珍藏版）\",\n    \"author\": \"列夫・托尔斯泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032628-52a9ac?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第四辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈·奇谭（译文经典）\",\n    \"author\": \"小泉八云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032262-b7998a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棋王（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032205-bbe80d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗生门（读客经典）\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032109-6ad93e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感悟文学大师经典100册套装\",\n    \"author\": \"萧枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（作家榜经典文库）\",\n    \"author\": \"弗・司各特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031977-f1c06b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因文集（套装共4册）\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典文学名著四师深度解读推荐版（套装七册）\",\n    \"author\": \"威廉・福克纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的外国文学经典（套装35册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍长篇小说作品全集（套装十七册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031458-4659d9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍作品全集（套装五十五册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031389-1fea08?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2061：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老舍经典代表作（套装共3册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031329-6d9fcc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选中短篇小说集（套装六册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031305-740b89?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选杂文集（套装八册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍代表作作品集（套装九册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（果麦经典）\",\n    \"author\": \"弗朗西斯・司各特・菲兹杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031194-680961?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著名译化境文库（套装共9册）\",\n    \"author\": \"化境文库编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2010：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031092-6ce749?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊恩·麦克尤恩作品集（套装共15册）\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030873-4d30db?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异详注新评\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030834-021d30?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装六十册）\",\n    \"author\": \"奥斯丁/勃朗特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031182-92bef5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叔本华哲学经典（套装共5册）\",\n    \"author\": \"叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030699-1c8a13?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文豆瓣高分必读经典套装\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030654-cbc641?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦（修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间词话（作家榜经典文库）\",\n    \"author\": \"王国维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030492-572067?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学大师经典必读（套装100册）\",\n    \"author\": \"鲁迅/徐志摩/朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030450-b187cd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄心理学经典\",\n    \"author\": \"河合隼雄等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030357-1b42df?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三毛典藏全集（14本套装）\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030303-88ee37?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师精选典藏系列套装33册\",\n    \"author\": \"林徽因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"念楼学短\",\n    \"author\": \"锺叔河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的幽默家\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"（新华书店十年畅销书系列）世界名著39本合集（上册）\",\n    \"author\": \"新华文轩出版集团\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030153-5465e0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"（新华书店十年畅销书系列）世界名著39本合集（下册）\",\n    \"author\": \"新华文轩出版集团\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030141-351a91?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装共50册）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸书院（套装共8册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029850-c5adf5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（名著译林）\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029805-90d798?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著译林）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（名著译林）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029796-8ad781?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底两万里（名著译林）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029784-a7b283?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（名著译林）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029631-0c12fd?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾四书精讲（套装共11册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029571-16066b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新刻绣像批评金瓶梅\",\n    \"author\": \"兰陵笑笑生\",\n    \"link\": \"链接未找到\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（作家榜经典文库）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029385-ae493f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（果麦经典）\",\n    \"author\": \"曹雪芹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（果麦经典）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（果麦经典）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029133-504b14?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（果麦经典）\",\n    \"author\": \"施耐庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（读客经典）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028821-f3f217?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尔齐斯与歌尔德蒙\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028767-0d8d9a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮与六便士（读客经典）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028707-7117d7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺与玫瑰（读客经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028629-d7c7bb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个火枪手（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028785-d4755a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底两万里（读客经典）\",\n    \"author\": \"凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028590-8917cf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（读客经典）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028290-a85451?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（权威全译典藏版）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028281-88645a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（经典译林）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"链接未找到\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（世界十大文学名著）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（作家榜经典文库）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028299-c59dc2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子（作家榜经典文库）\",\n    \"author\": \"圣-埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027807-091fea?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威精选集（套装共4册）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027795-430894?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特立斯非虚构经典著作\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027792-68778f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿德勒积极心理学（套装共4册）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027780-02be68?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿山墙的安妮（作家榜经典文库）\",\n    \"author\": \"露西・莫德・蒙格玛丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包法利夫人\",\n    \"author\": \"居斯达夫・福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027603-cfcf3f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（读客经典）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林家铺子\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027486-d72605?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（果麦经典）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027510-2f2be5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（读客经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高老头（作家榜经典文库）\",\n    \"author\": \"奥诺雷·德·巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027474-27cba5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（作家榜经典文库）\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027480-eb7b21?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（作家榜经典文库）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027459-37a5f7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力意志与永恒轮回（译文经典）\",\n    \"author\": \"弗里德里希·威廉·尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三言二拍典藏版套装（作家榜经典文库）\",\n    \"author\": \"冯梦龙/凌濛初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027468-fe4fe6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯（读客经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027420-0f8297?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨之夜（译文经典）\",\n    \"author\": \"海因里希・海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027390-c641ae?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点（作家榜经典文库）\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金粉世家（作家榜经典文库）\",\n    \"author\": \"张恨水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027375-2bba42?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅青少年文学经典系列（套装共10册）\",\n    \"author\": \"刘易斯・卡罗尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027315-5cf5f6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林童话（果麦经典）\",\n    \"author\": \"格林兄弟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027186-65bb3b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳科幻经典（套装共9册）\",\n    \"author\": \"凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027225-b52df3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑林广记（作家榜经典文库）\",\n    \"author\": \"游戏主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮士德（译文名著典藏）\",\n    \"author\": \"约翰・沃尔夫冈・歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026772-9e30ca?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"官场现形记\",\n    \"author\": \"李宝嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026424-31227d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的枷锁\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026397-998dcb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙主题变奏\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026391-dafb28?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苔丝（译文名著典藏）\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025656-f77567?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当美拯救我们\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未发现的自我\",\n    \"author\": \"卡尔・古斯塔夫・荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025497-5a5313?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Human Comedy\",\n    \"author\": \"Honore de Balzac\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025263-8947e9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（果麦经典）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025074-44fa95?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城堡\",\n    \"author\": \"卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025014-46844e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书（读客经典）\",\n    \"author\": \"约瑟夫・鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024987-cfbbc7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列那狐的故事（读客经典）\",\n    \"author\": \"玛特・艾・季罗夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024705-152cdc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乞力马扎罗的雪（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024483-1cc6ab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人爱我\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文全传\",\n    \"author\": \"张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024288-a2737b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年维特的烦恼（读客经典）\",\n    \"author\": \"约翰・沃尔夫冈・冯・歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024237-1edddb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（读客经典）\",\n    \"author\": \"艾米莉・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024126-44fd04?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小妇人（读客经典）\",\n    \"author\": \"露易莎・梅・奥尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024123-d8ea29?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲（果麦经典）\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024081-b60289?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（作家榜经典文库）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024075-de0a5f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野性的呼唤（读客经典）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024048-f76d1c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（读客经典）\",\n    \"author\": \"弗・司各特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023826-c18ccc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督山伯爵（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学常识\",\n    \"author\": \"郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学常识\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023640-fe3bfc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰小说精选（读客经典）\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"IBM帝国缔造者：小沃森自传\",\n    \"author\": \"小托马斯・约翰・沃森/彼得・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（完整版）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（果麦经典）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023229-b94dc3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯丁全集（英文版）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023130-faa3ba?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们一无所有\",\n    \"author\": \"安东尼・马拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023091-47cf9b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（读客经典）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023061-1bff68?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间喜剧（读客经典）\",\n    \"author\": \"奥诺雷・德・巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023082-d9ba2c?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河铁道之夜（读客经典）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022767-1f1a92?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白轮船\",\n    \"author\": \"钦吉斯・·艾特玛托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022752-04c29a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到灯塔去\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022578-1cdcd0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶花女（读客经典）\",\n    \"author\": \"小仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022494-778de5?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（读客经典）\",\n    \"author\": \"普罗斯佩・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022485-c0ed82?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜阳（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潘多拉之匣（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022431-d56ce6?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背影\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（读客经典）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022320-b8d36b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔集（全六册）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司汤达集（全四册）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫集（全五册）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022206-6b62a3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基集（全九册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022209-03d5a0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左拉集（全四册）\",\n    \"author\": \"左拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍夫曼集（套装共2册）\",\n    \"author\": \"霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022191-d724ce?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个被绞死的人\",\n    \"author\": \"安德烈耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021981-96c437?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯集（套装共10册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈察洛夫集（全四册）\",\n    \"author\": \"冈察洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代集（共五册）\",\n    \"author\": \"哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德集（全五册）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪德集（全五册）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德莱塞集（全四册）\",\n    \"author\": \"德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫集（全二册）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托尔斯泰集（共6册）\",\n    \"author\": \"托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格集（全2册）\",\n    \"author\": \"茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马集（共八册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯集（共5册）\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基度山伯爵（全2册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021567-8fdb13?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦卡勒斯作品系列（套装共6册）\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021537-c2fc56?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·鱼鸟篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·人神篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"50：伟大的短篇小说们\",\n    \"author\": \"欧・亨利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020481-1fffa1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡短篇小说集\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019605-f1d5f0?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛丽·安妮\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅经典全集全四册\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019455-217bae?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盖普眼中的世界\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（果麦经典）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019365-ccc402?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子三部曲\",\n    \"author\": \"埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019302-5cad9b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（原书第4版）\",\n    \"author\": \"沃伦・巴菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅全集（全20册）\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018621-414c16?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学备览（套装共12册）\",\n    \"author\": \"赵敏俐/尹小林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016722-5e54ed?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮与六便士（作家榜经典文库）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016398-3a2ca3?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫（果麦经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016017-b4cf30?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（全译本）\",\n    \"author\": \"亚当・斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015849-0975d2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不成问题的问题\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015252-eb9267?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透孙子兵法\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014508-c3e54a?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛百年经典（01-38卷）\",\n    \"author\": \"伊索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013542-8c1815?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平凡的世界（套装共3册）\",\n    \"author\": \"路遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012519-dcdb11?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012480-bb6ba7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012498-08c134?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个火枪手\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012471-f5ee43?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高窗\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012333-e3cf0f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖底女人\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012327-4c3365?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重播\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012063-099570?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日走过山间（果麦经典）\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（全本全注全译）\",\n    \"author\": \"王秀梅译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贼巢\",\n    \"author\": \"詹姆斯・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白先勇细说红楼梦\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009822-88e0d4?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名利场（套装上下册）\",\n    \"author\": \"萨克雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008997-bf0775?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008829-113e17?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死一只知更鸟\",\n    \"author\": \"哈珀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008760-83b113?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒林外史（果麦经典）\",\n    \"author\": \"吴敬梓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008754-58ab37?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年孤独\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008040-9c2191?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密花园（果麦经典）\",\n    \"author\": \"弗朗西丝・霍奇森・伯内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007665-e9967f?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（缩译全彩插图本）\",\n    \"author\": \"亚当·斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说选（经典译林）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006429-a8db77?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群书治要译注\",\n    \"author\": \"魏徵等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006303-52769e?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邯郸记\",\n    \"author\": \"汤显祖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的26部欧美人文经典译丛（套装26册）\",\n    \"author\": \"尼采/柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005814-2644a8?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个孤独漫步者的遐想（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005694-ef74ce?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记（经典译林）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005670-e80ccf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（译文名著精选）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005319-d938bf?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世说新语\",\n    \"author\": \"刘义庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005316-e1c6a2?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾诉（短经典）\",\n    \"author\": \"伊芙琳・康伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004746-84baf1?p=8866\",\n    \"category\": \"经典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒枪手：慕尼黑的秘密间谍\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑之门\",\n    \"author\": \"理查德・阿尔德里奇/罗里・科马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威与骗子工厂\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053163-da42f2?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅲ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034080-736199?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅰ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033729-239911?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅱ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033720-1dd32f?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处可藏\",\n    \"author\": \"格伦・格林沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国情报界\",\n    \"author\": \"杰弗瑞・理查尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔虞我诈：中国古代四千年谍海风云（全2册）\",\n    \"author\": \"赵英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008742-adf1c5?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍王：戴笠与中国特工\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008571-4000d9?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CIA美国中央情报局全传\",\n    \"author\": \"亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家阴谋5：火焰王子\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006324-542463?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7本书带你走进间谍圈（全七册）\",\n    \"author\": \"弗·福赛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风起陇西\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866\",\n    \"category\": \"间谍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴戏剧\",\n    \"author\": \"苏广辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003891-a41242?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迪伦马特戏剧集（全2册）\",\n    \"author\": \"弗里德里希・迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995305-1b9e72?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戏剧（牛津通识读本）\",\n    \"author\": \"马文・卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界少年文学经典文库·国外经典篇（全套47册）\",\n    \"author\": \"雨果等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041877-25ba88?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕鼠器（译文经典）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯商人（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036159-3537ae?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仲夏夜之梦（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李尔王（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035631-63e1ab?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈姆莱特（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035400-4bace1?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皆大欢喜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱桃园（名著名译丛书）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035322-e80b3f?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥瑟罗（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035214-ce0c10?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十二夜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035130-63ad7b?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克白（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035055-a52df3?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老妇还乡（名著名译丛书）\",\n    \"author\": \"迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035007-9dda46?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧悲剧全集（套装共6册）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009066-01e1b6?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009063-7f3a81?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚四大悲剧（译文名著精选）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007458-01f132?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎乐美（译文经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006588-7b673f?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邯郸记\",\n    \"author\": \"汤显祖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866\",\n    \"category\": \"戏剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在亲密关系中成长\",\n    \"author\": \"卡洛琳・戴奇/丽萨・罗伯邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866\",\n    \"category\": \"婚恋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的常识\",\n    \"author\": \"布拉德福德・康纳尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学常识\",\n    \"author\": \"郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文物常识\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023637-a8bb06?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑常识\",\n    \"author\": \"林徽因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023643-a76ebd?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大忙人看的历史常识\",\n    \"author\": \"章学城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006027-0210e9?p=8866\",\n    \"category\": \"常识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔登战役\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上谈兵\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"条顿骑士团\",\n    \"author\": \"威廉・厄本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511374-0df96e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"号角：世界经典制服徽章艺术全集（套装共10册）\",\n    \"author\": \"指文号角工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513021-755d2a?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当大明遇上大清（全二册）\",\n    \"author\": \"宿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004389-c9a2fa?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪战争论\",\n    \"author\": \"克里斯托弗・科克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002808-69f5f4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的本质\",\n    \"author\": \"A.C.葛瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（041-050）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在伏龙芝学军事\",\n    \"author\": \"郝智慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争论（全三册）\",\n    \"author\": \"克劳塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马军事史（贝克知识丛书）\",\n    \"author\": \"莱昂哈特・布克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051891-e1f24d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独霸中东\",\n    \"author\": \"雅科夫・卡茨/阿米尔・鲍博特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵器史\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲古兵器图说\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵者不祥\",\n    \"author\": \"刘鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家安全局\",\n    \"author\": \"克劳德・德莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中途岛奇迹\",\n    \"author\": \"戈登・普兰奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲（珍藏版）\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵攻击（经典纪念版）\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六舰\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隆美尔战时文件\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪击英雄\",\n    \"author\": \"海因茨・威廉・古德里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战完整历史实录（套装共38册）\",\n    \"author\": \"马夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注定一战\",\n    \"author\": \"格雷厄姆・艾利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1944阿登战役\",\n    \"author\": \"安东尼・比弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球使命\",\n    \"author\": \"亨利・H・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国与拿破仑的决战\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第4卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第1卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第2卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第3卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀戮与文化\",\n    \"author\": \"维克托・戴维斯・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：一部历史\",\n    \"author\": \"劳伦斯・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特拉法尔加战役\",\n    \"author\": \"朱利安·S.科贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史（修订珍藏版）\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国总参谋部\",\n    \"author\": \"斯宾塞・威尔金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪战争艺术史（第一卷）\",\n    \"author\": \"查尔斯・威廉・欧曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030030-7c2c59?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐战完结珍藏版套装（全二册）\",\n    \"author\": \"李浩白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029898-df5d11?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战术\",\n    \"author\": \"利奥六世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029895-0c0896?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丹药到枪炮\",\n    \"author\": \"欧阳泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争\",\n    \"author\": \"儿岛襄\",\n    \"link\": \"链接未找到\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国战争史\",\n    \"author\": \"李湖光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的面目\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赫尔曼·沃克作品集（共9册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024753-9ab4e4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典特辑\",\n    \"author\": \"李湖光/王子午/宋毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023829-119ac1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（001-040）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024885-e1f1b0?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放战争（套装共6册）\",\n    \"author\": \"刘统等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布局天下：中国古代军事地理大势\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017508-118f05?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争魔术师\",\n    \"author\": \"大卫・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017109-9a5083?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血性军人：百年中国战争亲历纪（共13册）\",\n    \"author\": \"全国政协文史和学习委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滇西抗战三部曲\",\n    \"author\": \"余戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015765-b0be9b?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的局座：悄悄话\",\n    \"author\": \"张召忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵以诈立 : 我读《孙子》\",\n    \"author\": \"李零\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014802-6020b3?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雄兵漫道\",\n    \"author\": \"周林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012069-80045a?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘大战略\",\n    \"author\": \"丁力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西洋世界军事史（全三卷）\",\n    \"author\": \"富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011562-ee7a99?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人眼中最真实的越南战争\",\n    \"author\": \"卡尔・马兰提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010791-35d8b5?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国事机密档（全10册）\",\n    \"author\": \"凤凰周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009705-558073?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十杆枪：从独立战争到西部拓荒的美国勇敢冒险史\",\n    \"author\": \"克里斯・凯尔/威廉・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009336-cf85ab?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵进攻\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明帝国边防史：从土木堡之变到大凌河血战\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狼群（全集）\",\n    \"author\": \"刺血\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008934-54c893?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔虞我诈：中国古代四千年谍海风云（全2册）\",\n    \"author\": \"赵英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008742-adf1c5?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国海盗\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"C形包围：内忧外患下的中国突围\",\n    \"author\": \"戴旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007992-9f9eb2?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：四天、三支大军和三场战役的历史\",\n    \"author\": \"伯纳德・康沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红圈：海豹突击队前狙击手总教练回忆录\",\n    \"author\": \"布兰登・韦伯/约翰・大卫・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战太平洋（HBO官方完整版）\",\n    \"author\": \"休·安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西路军（套装共3册）\",\n    \"author\": \"冯亚光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006267-cdd7bc?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争2\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争3\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006240-b0ff09?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"军部当国：近代日本军国主义冒险史\",\n    \"author\": \"赵恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006174-b628f4?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有一类战犯叫参谋\",\n    \"author\": \"俞天任\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006147-fac58d?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：欧洲八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱绝杀：当关东军遇上苏联红军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005877-d8ae7b?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山的那一边\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战神粟裕\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本！日本！：中日历史上的历次死磕\",\n    \"author\": \"王浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005280-12bd88?p=8866\",\n    \"category\": \"军事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天坑宝藏\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗物质三部曲\",\n    \"author\": \"菲利普・普尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨齿鲨\",\n    \"author\": \"斯蒂夫・奥顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038691-82187b?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库蒙的食人兽\",\n    \"author\": \"吉姆・科比特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028389-9bc0c8?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红圈：海豹突击队前狙击手总教练回忆录\",\n    \"author\": \"布兰登・韦伯/约翰・大卫・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866\",\n    \"category\": \"冒险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国共产党的九十年\",\n    \"author\": \"中共中央党史研究室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992086-13abd2?p=8866\",\n    \"category\": \"党史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色三部曲（套装3册）\",\n    \"author\": \"叶永烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008625-ff83ec?p=8866\",\n    \"category\": \"党史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色账簿\",\n    \"author\": \"马祥林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006660-1bfd15?p=8866\",\n    \"category\": \"党史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志公敌\",\n    \"author\": \"杰弗里・赫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866\",\n    \"category\": \"二战史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1945：大国博弈下的世界秩序新格局\",\n    \"author\": \"迈克・内伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866\",\n    \"category\": \"二战史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎和会与北京政府的内外博弈\",\n    \"author\": \"邓野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1943：中国在十字路口\",\n    \"author\": \"周锡瑞/李皓天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的裂缝\",\n    \"author\": \"雷颐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019896-3e4312?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的演变：19世纪史（全3册）\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019389-c4eb1e?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国社会的新陈代谢（插图本）\",\n    \"author\": \"陈旭麓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缠斗：方生与未死\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋大时代\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失稳的帝国\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戊戌变法史\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大变局\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866\",\n    \"category\": \"近代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十部小说及其作者\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991540-89a5e9?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不一样的文学史\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面纱（果麦经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031668-2a3322?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面纱\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031473-0007f9?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的因素：毛姆短篇小说全集2\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029256-35e6e8?p=8866\",\n    \"category\": \"毛姆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间的诗学（译文经典）\",\n    \"author\": \"加斯东・巴什拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866\",\n    \"category\": \"诗学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体突围\",\n    \"author\": \"艾玛・加侬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866\",\n    \"category\": \"能力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑优势（第二版）\",\n    \"author\": \"奈德・赫曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866\",\n    \"category\": \"能力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力都是逼出来的\",\n    \"author\": \"布兰登・伯查德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020433-eee874?p=8866\",\n    \"category\": \"能力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐人轶事汇编\",\n    \"author\": \"周勋初/严杰/武秀成/姚松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866\",\n    \"category\": \"轶事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Buried Giant\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016653-9a3edb?p=8866\",\n    \"category\": \"石黑一雄\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Never Let Me Go\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013593-c4885e?p=8866\",\n    \"category\": \"石黑一雄\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Remains of the Day\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013581-23b14c?p=8866\",\n    \"category\": \"石黑一雄\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方经济学说史教程\",\n    \"author\": \"晏智杰编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043584-8bd3af?p=8866\",\n    \"category\": \"教材\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与生活\",\n    \"author\": \"理查德・格里格/菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866\",\n    \"category\": \"教材\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球海盗史\",\n    \"author\": \"彼得・莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492117-e4c788?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色的旗，蓝色的海\",\n    \"author\": \"埃里克・杰・多林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504423-4afc88?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗共和国\",\n    \"author\": \"科林・伍达德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032946-dc4fd1?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗奇谭\",\n    \"author\": \"盛文强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028122-374cfe?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国海盗\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海盗时代\",\n    \"author\": \"海盗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866\",\n    \"category\": \"海盗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛世：康乾\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004629-21ceb7?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是清朝套装（全8册）\",\n    \"author\": \"鹿鼎公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031809-c21e9d?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻画战勋\",\n    \"author\": \"马雅贞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020811-235335?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清商埠（共3卷）\",\n    \"author\": \"祝春亭/辛磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010002-cb156a?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道光十九年：从禁烟到战争\",\n    \"author\": \"沈渭滨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008298-a00093?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的盛世\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008151-db2720?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫女谈往录\",\n    \"author\": \"金易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清的角落\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，这是大清正史（套装共三册）\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005739-4e4df0?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆十三年\",\n    \"author\": \"高王凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005277-d6967f?p=8866\",\n    \"category\": \"清朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺回忆录\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513501-daa881?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国第一夫人回忆录\",\n    \"author\": \"塔夫脱总统夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的情报与外交生涯\",\n    \"author\": \"熊向晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空无界\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身大师\",\n    \"author\": \"萨拉・卡明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后叹息\",\n    \"author\": \"路易斯・布努艾尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在伏龙芝学军事\",\n    \"author\": \"郝智慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是落花生的女儿\",\n    \"author\": \"许燕吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984751-7442f4?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的一瞬间\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983962-13cbc9?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾维钧回忆录（全13册）\",\n    \"author\": \"顾维钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983332-e78898?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖们（全译修订版）\",\n    \"author\": \"理查德・尼克松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅱ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萝西与苹果酒\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老先生\",\n    \"author\": \"周实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044673-2e0611?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一道曙光下的真实\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫看大门\",\n    \"author\": \"维一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张岪与木心\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你当像鸟飞往你的山\",\n    \"author\": \"塔拉・韦斯特弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不锈时光\",\n    \"author\": \"任曙林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040479-46f77b?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国公使夫人清宫回忆录\",\n    \"author\": \"苏珊・汤丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"I Am, I Am, I Am\",\n    \"author\": \"Maggie O'Farrell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034404-5f9292?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人自编集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安南回忆录\",\n    \"author\": \"科菲・安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032844-1da8c4?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流氓的归来\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032382-2de8ce?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生有罪\",\n    \"author\": \"特雷弗・诺亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿登纳回忆录（套装共4册）\",\n    \"author\": \"康拉德・阿登纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"往事与随想（共3册）\",\n    \"author\": \"赫尔岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忆往谈旧录\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些难忘的声音\",\n    \"author\": \"张稼峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017289-27536c?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蹉跎坡旧事\",\n    \"author\": \"沈博爱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017268-d0dff9?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘人偶记\",\n    \"author\": \"徐国琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016278-c6fdd0?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟日记\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010896-aa236e?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个戴灰帽子的人\",\n    \"author\": \"邵燕祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009354-ecd060?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨的记忆\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们仨\",\n    \"author\": \"杨绛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呐喊-大屠杀回忆录\",\n    \"author\": \"曼尼・斯坦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫女谈往录\",\n    \"author\": \"金易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛并快乐着\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866\",\n    \"category\": \"回忆录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上岸：一个海淀妈妈的重点学校闯关记\",\n    \"author\": \"安柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493359-744141?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子的品格\",\n    \"author\": \"彭凯平/闫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493764-ff4380?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好孕，从卵子开始\",\n    \"author\": \"瑞贝卡・费特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500655-c5e536?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀孕呵护指南\",\n    \"author\": \"六层楼先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501330-30fc9c?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔玉涛自然养育法\",\n    \"author\": \"崔玉涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501618-4b43b7?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的悔过书\",\n    \"author\": \"李柳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510222-3ee66f?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡前育儿法\",\n    \"author\": \"李永爱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510288-757ee6?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让孩子像哲学家一样会思考\",\n    \"author\": \"张玮/沈文婕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教育的常识\",\n    \"author\": \"尹建莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511668-05c413?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顽童小番茄\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丁香妈妈科学养育\",\n    \"author\": \"丁香妈妈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004488-c3216d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的学区房是你家的书房\",\n    \"author\": \"佐藤亮子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真希望我父母读过这本书\",\n    \"author\": \"菲利帕・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000732-ac2b7d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"准备\",\n    \"author\": \"黛安娜・塔文纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998926-07fdc2?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育女孩（成长版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994843-6e6be3?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪孩子终身成长\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991630-eba848?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生非此\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的语言\",\n    \"author\": \"达娜・萨斯金德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反溺爱\",\n    \"author\": \"罗恩・利伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎妈战歌\",\n    \"author\": \"蔡美儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"园丁与木匠\",\n    \"author\": \"艾莉森・高普尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039465-e654bf?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学本来很有趣\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不管教的勇气\",\n    \"author\": \"岸见一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035196-6f1a79?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰教育全球第一的秘密（珍藏版）\",\n    \"author\": \"陈之华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给父母的未来之书\",\n    \"author\": \"童行学院教研团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身幼儿园\",\n    \"author\": \"米切尔・雷斯尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子是脚，教育是鞋\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020505-1ae1af?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国儿科学会育儿百科（第6版）\",\n    \"author\": \"斯蒂文・谢尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"0～12岁，给孩子一个好性格\",\n    \"author\": \"葛安妮/葛碧建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018738-0a0c03?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就是孩子最好的玩具\",\n    \"author\": \"金伯莉・布雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017844-ea3b3d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就好爸爸：男人一生最重要的工作\",\n    \"author\": \"格雷戈里・史雷顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017655-919009?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Between Parent and Child\",\n    \"author\": \"Haim G Ginott\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013977-185e23?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育男孩（典藏版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法伯睡眠宝典\",\n    \"author\": \"理查德・法伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011148-584292?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见孩子，遇见更好的自己\",\n    \"author\": \"赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙应台“人生三书”（套装共3册）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次当奶爸\",\n    \"author\": \"马克・伍兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007575-ad564d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼看懂小孩子\",\n    \"author\": \"王勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱和自由：孙瑞雪幼儿教育演讲录\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁拿走了孩子的幸福\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早教的秘密\",\n    \"author\": \"李子勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006603-2c7afe?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·婴儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006084-2be15d?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·幼儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006141-816059?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·胎儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006081-99bed7?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西尔斯育儿经\",\n    \"author\": \"西尔斯夫妇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定本育儿百科\",\n    \"author\": \"松田道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔玉涛：宝贝健康公开课\",\n    \"author\": \"崔玉涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004908-0271f7?p=8866\",\n    \"category\": \"育儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录（全本全注全译）\",\n    \"author\": \"杨春俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866\",\n    \"category\": \"北宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汴京之围\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034971-15dabf?p=8866\",\n    \"category\": \"北宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个帝国的生与死\",\n    \"author\": \"夜狼啸西风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007848-1e242c?p=8866\",\n    \"category\": \"北宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李诞脱口秀工作手册\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866\",\n    \"category\": \"脱口秀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一名脱口秀老手\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866\",\n    \"category\": \"脱口秀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你玩脱口秀\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017172-eb3c87?p=8866\",\n    \"category\": \"脱口秀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻蜂记\",\n    \"author\": \"戴夫・古尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491859-9bd801?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关灯就睡觉\",\n    \"author\": \"格雷格·D·贾克布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491976-465249?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的地外生命\",\n    \"author\": \"刘易斯・达特奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492573-a93ad2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的能源新趋势\",\n    \"author\": \"瓦茨拉夫・斯米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493416-7ae8a8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据如何误导了我们\",\n    \"author\": \"桑内・布劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危崖：生存性风险与人类的未来\",\n    \"author\": \"托比・奥德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493782-80c088?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津科普读本（第一辑）\",\n    \"author\": \"克劳塞维茨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496395-3eb1b0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家地理终极观星指南\",\n    \"author\": \"霍华德・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496701-44ca96?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课：理学套装（全4册）\",\n    \"author\": \"麦克・戈德史密斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496950-51ea21?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"0次与10000次\",\n    \"author\": \"吉塔・雅各布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497181-c8dc00?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的奥秘\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497319-411984?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的起源\",\n    \"author\": \"刘大可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497466-2034fd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的脑科学\",\n    \"author\": \"阿马尔・阿尔查拉比等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒药：危险物质的历史\",\n    \"author\": \"本・哈伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497697-cec14c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列：伽利略的手指\",\n    \"author\": \"彼得・阿特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家宝藏（全3季）\",\n    \"author\": \"于蕾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十种人性\",\n    \"author\": \"德克斯特・迪亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不停歇的时钟\",\n    \"author\": \"杰西卡・里斯金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498153-27f384?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类进化史\",\n    \"author\": \"加亚・文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498165-5357ae?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法治的细节\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498228-28f106?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新科学漫游指南（套装共8册）\",\n    \"author\": \"《新科学家》杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498336-abceb1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体由我\",\n    \"author\": \"希拉・德利兹/路易莎・施托默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林病人\",\n    \"author\": \"娜塔莉亚・霍尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498453-ee35c9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贪婪的多巴胺\",\n    \"author\": \"丹尼尔・利伯曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498459-018013?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空居民\",\n    \"author\": \"克里斯托弗・万杰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟着文物穿越历史\",\n    \"author\": \"张志浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝来了\",\n    \"author\": \"马菁菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懒惰脑科学\",\n    \"author\": \"鲍里斯・薛瓦勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵长类人科动物图鉴\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498702-8b48c5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么长这样\",\n    \"author\": \"爱丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碳中和时代\",\n    \"author\": \"汪军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499221-bf6b0d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到火星去\",\n    \"author\": \"莎拉・斯图尔特・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499260-e8e937?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现日本：500件日本怀旧器物图鉴\",\n    \"author\": \"岩井宏实/中林启治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499302-2fb977?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学简史\",\n    \"author\": \"杰克琳・杜芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499506-2cac2b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命在于静止\",\n    \"author\": \"篠原薰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499569-193758?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告2\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499542-190a47?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混沌：开创一门新科学\",\n    \"author\": \"詹姆斯・格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499593-12a37c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级生物探寻指南\",\n    \"author\": \"马修 · D. 拉普兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499677-11db81?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凤凰：神鸟传奇\",\n    \"author\": \"约瑟夫・尼格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499722-63b477?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细胞生命的礼赞\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499728-0ba4d6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的天工开物·绘本版（全三册）\",\n    \"author\": \"一页书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在别的星球上\",\n    \"author\": \"吕西安・吕都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499833-e58485?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助燃创新的人\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499887-18f06c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道地球的奥秘\",\n    \"author\": \"戴维・比尔林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499872-69554e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戒糖：改变一生的科学饮食法\",\n    \"author\": \"初夏之菡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狡猾的细胞\",\n    \"author\": \"雅典娜・阿克蒂皮斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500322-b11884?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的自我\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500376-01a4ec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在病毒中生存\",\n    \"author\": \"苗德岁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂芬·霍金中文版著作全集（套装共11册）\",\n    \"author\": \"史蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500730-428f3d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无脊椎动物百科\",\n    \"author\": \"拉尔夫・布克斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500724-3e2969?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外科的诞生\",\n    \"author\": \"大卫・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500703-c0710c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"药物简史\",\n    \"author\": \"德劳因・伯奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500718-9137b0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耐药菌小史\",\n    \"author\": \"穆罕默德·H.扎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500787-4ece60?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个健康吃货的自我修养（共4册）\",\n    \"author\": \"威廉・李博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何证明你不是僵尸\",\n    \"author\": \"杰里米・斯特朗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很高兴认识“我”\",\n    \"author\": \"比尔・沙利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宇宙大爆炸\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪声：人类判断的缺陷\",\n    \"author\": \"丹尼尔・卡尼曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物皆假设\",\n    \"author\": \"埃里克斯・伯依斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501312-6893ef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀孕呵护指南\",\n    \"author\": \"六层楼先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501330-30fc9c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深时之旅\",\n    \"author\": \"罗伯特・麦克法伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·免疫与治愈\",\n    \"author\": \"迈克尔・金奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的一天·鹈鹕丛书\",\n    \"author\": \"苏珊・格林菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501504-478cce?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病与人类历史\",\n    \"author\": \"约书亚·S.卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501513-c3ab6e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空5500年\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特工训练手册\",\n    \"author\": \"克林特・埃默森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501945-412c41?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推开红酒的门\",\n    \"author\": \"王胜寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502554-c90c21?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们星球上的生命\",\n    \"author\": \"大卫・爱登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503952-5bd190?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误解的盐\",\n    \"author\": \"詹姆斯・迪尼科兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界自然文学经典：博物图鉴版（共12册）\",\n    \"author\": \"伊迪丝・霍尔登等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505827-9f090e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画病菌、人类与历史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505926-c5bb26?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学休息\",\n    \"author\": \"亚历克斯・索勇－金・庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505929-497bb9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事\",\n    \"author\": \"罗伯特・哈森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505959-214d70?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的材料\",\n    \"author\": \"艾妮莎・拉米雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506454-00e823?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地图3000年\",\n    \"author\": \"托马斯・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506883-89a846?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的危机\",\n    \"author\": \"玛丽安・麦克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肠道断糖\",\n    \"author\": \"江田证\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507414-c09954?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂碳中和\",\n    \"author\": \"安永碳中和课题组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507366-f36283?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人为何物\",\n    \"author\": \"王一江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507411-9a3746?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锥形帐篷的起源\",\n    \"author\": \"喬尼・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507432-99ca3f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果宇宙可以伸缩\",\n    \"author\": \"凯莱布・沙夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508368-cf05f3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫周期\",\n    \"author\": \"查尔斯・肯尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508044-93a44f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的怪物\",\n    \"author\": \"克里斯・伊姆佩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508134-74bc4c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的起源\",\n    \"author\": \"约翰・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508191-ec962a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的结构\",\n    \"author\": \"斯蒂芬・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳台人的植物生活\",\n    \"author\": \"伊藤正幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508935-c37c4a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑子不会好好睡\",\n    \"author\": \"盖伊・勒施齐纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509061-ceecea?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21个被“淘汰”的人体器官\",\n    \"author\": \"坂井建雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509247-6918f2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖无聊\",\n    \"author\": \"马克・金维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个世界，一个星球\",\n    \"author\": \"强尼・基林/斯科特・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509295-af62d4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命敌人\",\n    \"author\": \"迈克尔·T.奥斯特霍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极观星指南\",\n    \"author\": \"鲍勃・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事三部曲\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509640-75ac91?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读脑术\",\n    \"author\": \"拉塞尔·A.波德拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509688-9d9191?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英经典博物学（套装5册）\",\n    \"author\": \"德斯蒙德・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509904-1f74c7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们身处的宇宙究竟有多古怪？\",\n    \"author\": \"伊拉・马克・爱格多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜托，哲学没有那么难\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509877-4157bd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从玫瑰到枪炮\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509892-7e4601?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐数学\",\n    \"author\": \"本・奥尔林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509988-85b379?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的最后三分钟\",\n    \"author\": \"保罗・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昆虫记（全10卷）\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510141-5c4c28?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起来粉碎朋友圈养生谣言\",\n    \"author\": \"好奇博士团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失信：公共卫生体系的崩溃\",\n    \"author\": \"劳丽・加勒特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510282-6f16d7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠扬的素数\",\n    \"author\": \"马库斯・杜・索托伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510315-8d1e4a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能之不能\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510333-472d20?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC夜空探索系列（套装全8册）\",\n    \"author\": \"BBC仰望夜空杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖动植物图鉴\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津大学自然史博物馆的寻宝之旅\",\n    \"author\": \"凯特・迪思顿/佐薇・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510750-5b4a2a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类大瘟疫\",\n    \"author\": \"马克・霍尼斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学：无尽的前沿\",\n    \"author\": \"范内瓦・布什/拉什·D·霍尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510807-8d9351?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极求生\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510861-cb888f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疫苗竞赛\",\n    \"author\": \"梅雷迪丝・瓦德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方草木之美\",\n    \"author\": \"西莉亚・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于痛苦的七堂哲学课\",\n    \"author\": \"斯科特・塞缪尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510948-7b1f45?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手术刀下的历史\",\n    \"author\": \"阿诺德・范德拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510960-26a6f8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉数学书\",\n    \"author\": \"杰森・威尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510984-d5459b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你想知道的生酮饮食错误\",\n    \"author\": \"米尔萨德・哈西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史前人类生活大辟谣\",\n    \"author\": \"安托万・巴尔泽奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511002-65432a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当死亡化作生命\",\n    \"author\": \"书亚・梅兹里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我把你蠢哭了吗\",\n    \"author\": \"迪安・博内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511098-4544c6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5分钟生物课\",\n    \"author\": \"冯智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511134-5ad126?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇事物所\",\n    \"author\": \"怪奇事物所所长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511239-e8b5e8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费曼的彩虹\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511389-9a7177?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六极物理\",\n    \"author\": \"严伯钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511584-57f21d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类学讲义稿\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄油：一部丰富的历史\",\n    \"author\": \"约翰・马图夏克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511737-ace1ac?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鱼解字\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511992-0df03b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从部落到国家\",\n    \"author\": \"马克·W. 莫菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511962-90a78c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度量衡简史\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511983-ec1b7c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌物志\",\n    \"author\": \"斑斑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的六件事\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伴你一生的睡眠指导书\",\n    \"author\": \"爱丽丝・格雷戈里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史·中国篇\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512193-724ebd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物王朝\",\n    \"author\": \"冉浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512175-7e0849?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶学与茶科学\",\n    \"author\": \"叶士敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512316-d78971?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血液循环\",\n    \"author\": \"弗朗索瓦・布斯塔尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512286-58e5e6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性的进化\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512319-d04e8d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达尔文的战争\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解宇宙的尺度\",\n    \"author\": \"金伯莉・阿坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512424-f9a069?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老爸评测：你的健康呵护指南\",\n    \"author\": \"老爸评测\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512535-af72f0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女士品茶\",\n    \"author\": \"戴维・萨尔斯伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512682-fdee18?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的浪漫史\",\n    \"author\": \"诺曼・C.埃尔斯特兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512688-2974e3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追寻记忆的痕迹\",\n    \"author\": \"埃里克・坎德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513372-90244d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物眼中的人类\",\n    \"author\": \"赵序茅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513462-89d08b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧大脑\",\n    \"author\": \"艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513534-db2475?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物不简单（套装共5册）\",\n    \"author\": \"德斯蒙德・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513651-236db3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗意的宇宙\",\n    \"author\": \"斯特凡・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513624-bf8549?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干掉失眠\",\n    \"author\": \"科琳・恩斯特朗姆/阿丽莎・布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工具，还是武器？\",\n    \"author\": \"布拉德・史密斯/卡罗尔・安・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的铁证\",\n    \"author\": \"安吉拉・盖洛普/简・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513696-53c951?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇葩进化论（套装共7册）\",\n    \"author\": \"玛拉·J. 哈尔特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513783-2e2ad9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像火箭科学家一样思考\",\n    \"author\": \"奥赞・瓦罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第六日译丛（套装六册）\",\n    \"author\": \"玛丽・罗琦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513816-ceb911?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑修复术\",\n    \"author\": \"姚乃琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004539-c52863?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丁香妈妈科学养育\",\n    \"author\": \"丁香妈妈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004488-c3216d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级社会\",\n    \"author\": \"彼得・图尔钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004446-8c0263?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医疗与人性系列（套装共4册）\",\n    \"author\": \"亨利・马什等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004365-27ce81?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国科学史（全两册）\",\n    \"author\": \"李申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004308-1ba9f4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳗鱼的旅行\",\n    \"author\": \"帕特里克・斯文松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水的密码\",\n    \"author\": \"特里斯坦・古利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004038-2e1bbb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病的文化史\",\n    \"author\": \"洛伊斯·N.玛格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺陷也完美\",\n    \"author\": \"内森·H.兰兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003792-89386e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常生活中的发明原理\",\n    \"author\": \"高木芳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：活细胞的物理观\",\n    \"author\": \"埃尔温・薛定谔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑罚的历史\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003726-07d003?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的秘密\",\n    \"author\": \"耶尔・阿德勒/卡佳・施皮策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003708-5ef7a9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染\",\n    \"author\": \"亚当・库哈尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003660-c8d8ff?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：40亿年生命史诗的开端\",\n    \"author\": \"埃迪・普罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003546-7d4c71?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类简史（知识漫画）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001926-2ba1b6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"够笑一年的奇葩人体冷知识\",\n    \"author\": \"SME\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001743-801a91?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子空间\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜色的故事\",\n    \"author\": \"加文・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下落小猫与基础物理学\",\n    \"author\": \"格雷戈里·J.格布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001302-28b2c5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的故事\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的未完成交响曲\",\n    \"author\": \"玛西亚・芭楚莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相对论之路\",\n    \"author\": \"哈诺赫・古特弗罗因德/于尔根・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理套装（共四册）\",\n    \"author\": \"许大鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎药师\",\n    \"author\": \"唐纳德・R・基尔希/奥吉・奥加斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000702-1890cd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑新引·怎样判别是非\",\n    \"author\": \"殷海光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000414-fe83d1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦语录（终极版）\",\n    \"author\": \"阿尔伯特・爱因斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000372-db0ba3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码时间\",\n    \"author\": \"阿德里安・巴登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因之河\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999775-ad8131?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薄世宁医学通识讲义\",\n    \"author\": \"薄世宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999703-5d8070?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法学讲义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的认识论\",\n    \"author\": \"罗伯特・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999046-10db8e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的互联网思维\",\n    \"author\": \"伯纳多・A. 胡伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的地球科学\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998518-3ec35a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进化的跃升\",\n    \"author\": \"尼克・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给年轻科学家的信\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997759-7b3384?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国会（牛津通识读本）\",\n    \"author\": \"唐纳德・A.里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日用品简史\",\n    \"author\": \"安迪・沃纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997060-cffd2a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何不切实际地解决实际问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张文宏说传染\",\n    \"author\": \"张文宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996598-f10f1a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威士忌原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥利弗萨克斯系列（套装共4册）\",\n    \"author\": \"奥利弗・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995947-35801f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肉料理原来是这么回事儿\",\n    \"author\": \"亚瑟・勒凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒原来是这么回事儿\",\n    \"author\": \"吉雷克・奥贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捍卫隐私\",\n    \"author\": \"凯文・米特尼克/罗伯特・瓦摩西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡尾酒原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多/亚尼斯・瓦卢西克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触（第二版）\",\n    \"author\": \"大卫・奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪原来是这么回事儿\",\n    \"author\": \"特里斯坦・西卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质是什么\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的价值\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995326-60c097?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画预防常见病\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《三体》中的物理学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的科普系列（套装共8册）\",\n    \"author\": \"竹内薫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994651-9f7c25?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥胖代码\",\n    \"author\": \"冯子新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个利他主义者之死\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994531-bf36d7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因蓝图\",\n    \"author\": \"罗伯特・普罗明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994126-6e174f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何睡个好觉\",\n    \"author\": \"劳伦斯·J. 爱泼斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姿势跑法\",\n    \"author\": \"尼古拉斯・罗曼诺夫/约翰・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智与阅读\",\n    \"author\": \"丹尼尔·T.威林厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新大脑\",\n    \"author\": \"艾克纳恩・戈德堡艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991867-61d613?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理的时空\",\n    \"author\": \"尼古拉斯・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好奇心杂货铺\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991786-260d2f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课\",\n    \"author\": \"凯瑟琳・玛丽・布伦德尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果，哥白尼错了\",\n    \"author\": \"凯莱布・沙夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991624-eb9c92?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丝绸到硅\",\n    \"author\": \"杰弗里・加滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大流感\",\n    \"author\": \"约翰 M.巴里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界边缘的秘密\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空无界\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的骰子\",\n    \"author\": \"罗金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与达尔文共进晚餐\",\n    \"author\": \"乔纳森・西尔弗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非正常死亡事件簿\",\n    \"author\": \"上野正彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990121-2cc599?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个天文学家的夜空漫游指南\",\n    \"author\": \"郑春顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫海错图\",\n    \"author\": \"夏雪著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然的音符\",\n    \"author\": \"自然科研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维魔方\",\n    \"author\": \"陈波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不吃糖的理由\",\n    \"author\": \"加里・陶布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989851-a15964?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅、凤梨与穿山甲\",\n    \"author\": \"克莱尔・科克-斯塔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989284-df491a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妖怪大全\",\n    \"author\": \"孙见坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物发明指南\",\n    \"author\": \"瑞安・诺思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系度假指南\",\n    \"author\": \"奥莉维亚・科斯基/加纳・格鲁赛维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多云的宇宙\",\n    \"author\": \"小谷太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987340-afdf8f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的本质\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987280-13909c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸检报告\",\n    \"author\": \"卡拉・瓦伦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987277-fccf1c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维：关于决策、问题解决与预测的新科学\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987145-752493?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简20世纪史\",\n    \"author\": \"妮古拉・查尔顿/梅雷迪思・麦克阿德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986602-539487?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学本来很简单\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画科学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简史：世界隐秘知识博库（套装全4册）\",\n    \"author\": \"大卫・沃克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986746-917056?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我想多了吗？\",\n    \"author\": \"新科学家杂志/邱涛涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因与命运\",\n    \"author\": \"斯蒂芬·J.海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊林经典科普小丛书（套装4册）\",\n    \"author\": \"伊林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985759-492e78?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心、脑与科学（二十世纪西方哲学经典）\",\n    \"author\": \"约翰・塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未解的宇宙\",\n    \"author\": \"汪诘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985645-e44e5a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字起源\",\n    \"author\": \"凯莱布・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系简史\",\n    \"author\": \"约翰・钱伯斯/杰奎琳・米顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言的诞生\",\n    \"author\": \"丹尼尔·L. 埃弗雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟物理套装\",\n    \"author\": \"中科院物理所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985375-1c626d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之源\",\n    \"author\": \"尼克・連恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们脑中那些挥之不去的问题\",\n    \"author\": \"卓克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985348-fd5cec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫\",\n    \"author\": \"儒勒・米什莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985333-8f71e8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟\",\n    \"author\": \"儒勒・米什莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985324-f5b93b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海\",\n    \"author\": \"儒勒・米什莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985309-558959?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山\",\n    \"author\": \"儒勒・米什莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985306-7d7e9b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的旅程\",\n    \"author\": \"斯宾塞・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的工程学\",\n    \"author\": \"娜塔莎・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985189-b04eab?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新序（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经科医生有话要说\",\n    \"author\": \"吴洵昳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十分钟智商运动\",\n    \"author\": \"李永乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984940-6dc445?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球编年史（套装全七册）\",\n    \"author\": \"撒迦利亚・西琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生新算法\",\n    \"author\": \"矢野和男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷的开始\",\n    \"author\": \"戴维・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷小\",\n    \"author\": \"阿米尔・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能机器如何思考\",\n    \"author\": \"肖恩・格里什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类成功统治地球的秘密\",\n    \"author\": \"约瑟夫・亨里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学2\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小数据之美\",\n    \"author\": \"陈辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982447-1e6d76?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异端：进击的哲学现场\",\n    \"author\": \"史蒂文・纳德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间观\",\n    \"author\": \"西蒙・加菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054399-46d739?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理学的进化\",\n    \"author\": \"阿尔伯特・爱因斯坦/利奥波德・英费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮全书\",\n    \"author\": \"比尔・莱瑟巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找爽点\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命流感\",\n    \"author\": \"杰里米・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络（牛津通识读本）\",\n    \"author\": \"圭多・卡尔达雷利/米凯莱・卡坦扎罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053052-0ef287?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影（牛津通识读本）\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨：一部自然与文化的历史\",\n    \"author\": \"辛西娅・巴内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深奥的简洁\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人机共生\",\n    \"author\": \"托马斯・达文波特/茱莉娅・柯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代，你的工作还好吗？\",\n    \"author\": \"渠成/陈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能十万个为什么\",\n    \"author\": \"智能相对论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051492-7ab628?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世纪的哭泣\",\n    \"author\": \"兰迪・希尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051345-8d25b6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的逻辑题\",\n    \"author\": \"亚历克斯・贝洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑训练手册\",\n    \"author\": \"塔拉・斯瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051024-e3c24d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《自然》百年科学经典（第一卷）\",\n    \"author\": \"赫胥黎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"角斗士、海盗与信任博弈\",\n    \"author\": \"哈伊姆・夏皮拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050799-329cef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和伊壁鸠鲁一起旅行\",\n    \"author\": \"丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造未来城市\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追捕祝融星\",\n    \"author\": \"托马斯・利文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《新科学家》杂志轻科普系列（套装全3册）\",\n    \"author\": \"新科学家杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简地理学\",\n    \"author\": \"威尔・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050448-e34a7b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的“屁”事儿\",\n    \"author\": \"尼克・卡鲁索等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050424-0a1c39?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在太空的一年\",\n    \"author\": \"斯科特 · 凯利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050355-16803e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简哲学史\",\n    \"author\": \"莱斯莉・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简量子力学\",\n    \"author\": \"张天蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050145-239ab3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万智有灵\",\n    \"author\": \"弗朗斯・德瓦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049908-4023d0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影冷知识\",\n    \"author\": \"许立衡/张凯淯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与爱因斯坦共进早餐\",\n    \"author\": \"查德・奥泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全新万物简史\",\n    \"author\": \"鲍勃・伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构是什么\",\n    \"author\": \"詹姆斯・爱德华・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：经济增长新引擎\",\n    \"author\": \"孙松林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新型冠状病毒感染防护\",\n    \"author\": \"何剑峰/宋铁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《科学美国人》精选系列科学全景套装（共14册）\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大开眼界的科学知识\",\n    \"author\": \"胡桃夹子工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048882-d2f1c4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆斯河\",\n    \"author\": \"丹・费金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物奇葩说\",\n    \"author\": \"尼克・卡鲁索等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048585-97d7e9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费恩曼物理学讲义（新千年版）（套装共3册）\",\n    \"author\": \"费恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类为什么要探索太空\",\n    \"author\": \"克里斯・英庇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"模型思维\",\n    \"author\": \"斯科特・佩奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048045-63863d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的进击\",\n    \"author\": \"唐文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047508-dc4798?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠、虱子和历史\",\n    \"author\": \"汉斯・辛瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技与和平\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047055-d0635a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡个好觉\",\n    \"author\": \"迈尔・克利格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级潜能\",\n    \"author\": \"亚当・皮奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人诞生\",\n    \"author\": \"稻见昌彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超纲冷知识\",\n    \"author\": \"吉姆・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的情绪生活\",\n    \"author\": \"理查德・戴维森/莎朗・伯格利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大图景\",\n    \"author\": \"肖恩・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物思维\",\n    \"author\": \"查尔斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能会抢哪些工作\",\n    \"author\": \"理查德・萨斯坎德/丹尼尔・萨斯坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲古兵器图说\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI的25种可能\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"140亿年宇宙演化全史\",\n    \"author\": \"尼尔・德格拉斯・泰森/唐纳德・戈德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二堂经典科普课\",\n    \"author\": \"吴京平/汪诘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045681-e1cc56?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端生存\",\n    \"author\": \"史蒂芬・帕鲁比/安东尼・帕鲁比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技失控\",\n    \"author\": \"温德尔・瓦拉赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会呼吸\",\n    \"author\": \"帕特里克・麦基翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽之问\",\n    \"author\": \"弗兰克・维尔切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级思维\",\n    \"author\": \"托马斯·W·马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同的生命线\",\n    \"author\": \"约翰・苏尔斯顿/乔治娜・费里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到你的世界\",\n    \"author\": \"莎拉・威廉姆斯・戈德哈根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间简史\",\n    \"author\": \"托马斯・马卡卡罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044703-9154af?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（果麦版）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简算法史\",\n    \"author\": \"吕克・德・布拉班迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给大家的AI极简史\",\n    \"author\": \"托马斯・拉姆齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043935-90a7c1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆的思想家\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我们灵魂激荡身体欢愉\",\n    \"author\": \"任黎明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043866-18019c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你也是蘑菇吗\",\n    \"author\": \"安定医院郝医生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043701-0683a6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超凡：我们的身心极致及天赋的科学\",\n    \"author\": \"罗恩・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代人的日常生活\",\n    \"author\": \"讲历史的王老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043638-abdc6f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晓肚知肠\",\n    \"author\": \"段云峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043326-134f07?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我包罗万象\",\n    \"author\": \"埃德・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043266-561836?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候改变世界\",\n    \"author\": \"布莱恩・费根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043254-e54d87?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"揭秘太空\",\n    \"author\": \"张天蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043209-6575f3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变未来的九大算法\",\n    \"author\": \"约翰・麦考密克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简世界神话\",\n    \"author\": \"马克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触感引擎\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042108-97942a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女生呵护指南\",\n    \"author\": \"六层楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑动解锁\",\n    \"author\": \"尼尔・梅塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类起源的故事\",\n    \"author\": \"大卫・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病者生存\",\n    \"author\": \"沙龙・莫勒姆/乔纳森・普林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简新药发现史\",\n    \"author\": \"彭雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040899-7bda48?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖先的故事\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法布尔植物记：手绘珍藏版（套装共2册）\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040536-bfadef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们花园里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的秘密\",\n    \"author\": \"约翰・布拉德肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅3\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们林地里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们迷人的鸟：猫头鹰\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅与其他海鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱歌的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善与恶\",\n    \"author\": \"阿比盖尔・马什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039612-8d1c5f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会说脏话？\",\n    \"author\": \"埃玛・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗？（升级版）\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039567-9b107f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空荡荡的地球\",\n    \"author\": \"达雷尔・布里克/约翰・伊比特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤博士的啤酒札记\",\n    \"author\": \"太空精酿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空旅行指南\",\n    \"author\": \"尼尔·F. 科明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039180-ff8b0d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创世记\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能生存学\",\n    \"author\": \"李・戈德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的肚脐\",\n    \"author\": \"迈克尔・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"免疫\",\n    \"author\": \"尤拉・比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪海洋简史\",\n    \"author\": \"菲利帕・桑德尔/艾德・朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038478-6fe43e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性动物\",\n    \"author\": \"道格拉斯・肯里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（生活常识篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐糖脂\",\n    \"author\": \"迈克尔・莫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037266-955677?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·量子探秘系列（新版套装共5册）\",\n    \"author\": \"布鲁斯・罗森布鲁姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037227-c08bef?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·弦理论之争系列（新版套装共3册）\",\n    \"author\": \"布莱恩・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简数学\",\n    \"author\": \"克里斯・韦林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036807-4542b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉酒简史\",\n    \"author\": \"马克・福赛思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·时空奥秘系列（新版套装共5册）\",\n    \"author\": \"史蒂芬・霍金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036891-abb2fb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非平面\",\n    \"author\": \"尼克・索萨尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弥散的心智\",\n    \"author\": \"里卡多・曼佐蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的遗传学\",\n    \"author\": \"伯顿・格特曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列（套装共7册）\",\n    \"author\": \"梅拉妮・米歇尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（六）\",\n    \"author\": \"伽利略等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036366-c0cbfa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给好奇者的暗黑物理学\",\n    \"author\": \"罗兰・勒乌克/文森特・博滕斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036114-dbe6f4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学本来很有趣\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·诺贝尔奖得主作品（新版套装共8册）\",\n    \"author\": \"基普·S.索恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036132-d2b94c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的材料\",\n    \"author\": \"马克・米奥多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新药的故事\",\n    \"author\": \"梁贵柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的克隆技术\",\n    \"author\": \"亚伦・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035901-def398?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现的乐趣\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035826-de103a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的法庭科学\",\n    \"author\": \"杰伊・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（四）\",\n    \"author\": \"约翰・布鲁德斯・华生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035742-b3a5b1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（五）\",\n    \"author\": \"惠更斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么\",\n    \"author\": \"朱迪亚・珀尓/达纳・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深呼吸：菠萝解密肺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035556-2eaf53?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷茫的旅行商\",\n    \"author\": \"William J. Cook\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035454-7affdc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（三）\",\n    \"author\": \"开普勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因何美妙而优雅地运行\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物起源\",\n    \"author\": \"格雷厄姆・劳顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（一）\",\n    \"author\": \"摩尔根等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她说：菠萝解密乳腺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（二）\",\n    \"author\": \"玛丽・居里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC自然探索系列（套装共7册）\",\n    \"author\": \"阿拉斯泰尔・福瑟吉尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035511-2fd3b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星座全书\",\n    \"author\": \"贾尔斯・斯帕罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034923-1361c3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无中生有的世界\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从祖先到算法\",\n    \"author\": \"亚历克斯・本特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10堂极简概率课\",\n    \"author\": \"佩尔西・戴康尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈之书\",\n    \"author\": \"曼纽尔・利马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁？如果有我，有几个我？\",\n    \"author\": \"理查德・大卫・普列斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与生活\",\n    \"author\": \"理查德・格里格/菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空故事\",\n    \"author\": \"苏珊娜・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的算法\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的秩序\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群的进化\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的亲密关系\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观从何而来\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"18个未来进行时\",\n    \"author\": \"吉姆・阿尔- 哈里里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会发胖\",\n    \"author\": \"盖里・陶比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的故事\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033396-0dc284?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑与意识\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无量之网\",\n    \"author\": \"格里格．布莱登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画古诗文\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体2\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代\",\n    \"author\": \"项立刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞奔的物种\",\n    \"author\": \"大卫・伊格曼/安东尼・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器人共舞\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邀你共进量子早餐\",\n    \"author\": \"索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对话最强大脑\",\n    \"author\": \"李大巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033003-e77cd0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三次浪潮\",\n    \"author\": \"阿尔文・托夫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的春天（四师推荐精装版）\",\n    \"author\": \"蕾切尔・卡森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032802-2197eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薛将军精解《孙子兵法》\",\n    \"author\": \"薛国安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032532-cd3d67?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期表\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的熊猫\",\n    \"author\": \"乔治・夏勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032364-6ae019?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术简史\",\n    \"author\": \"德伯拉·L·斯帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032319-7433f4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（完整精修珍藏译本）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总觉得饿？\",\n    \"author\": \"大卫. 路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一想到还有95%的问题留给人类，我就放心了\",\n    \"author\": \"豪尔赫・陈/丹尼尔・怀特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说出来你可能不信\",\n    \"author\": \"SME\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032043-e62957?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通识：学问的门类\",\n    \"author\": \"茂木健一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032028-db8b7e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒星球\",\n    \"author\": \"卡尔・齐默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自下而上\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之问\",\n    \"author\": \"汪波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031944-64d9c3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷物大脑\",\n    \"author\": \"戴维・珀尔马特/戴维・珀尔马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌群大脑\",\n    \"author\": \"戴维・珀尔马特/克里斯廷・洛伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球科技通史\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031734-3f4ae5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠化学\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031512-ccaaad?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠物理\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031503-32fac0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点艺术\",\n    \"author\": \"谭力勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交媒体简史\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"急救，比医生快一步\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟类的天赋\",\n    \"author\": \"珍妮弗・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯化\",\n    \"author\": \"艾丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之美：奇异植物的生存智慧\",\n    \"author\": \"林十之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031011-6d2792?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类愚蠢辞典\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表象与本质\",\n    \"author\": \"侯世达/桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然万物科普百科（套装共2册）\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简天文学\",\n    \"author\": \"科林・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"齐民要术（全本全注全译）\",\n    \"author\": \"贾思勰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030642-350654?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从何而来\",\n    \"author\": \"傅渥成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物城邦系列（共四册）\",\n    \"author\": \"伯特・霍尔多布勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030435-d80ab8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类酷刑简史\",\n    \"author\": \"马克·P.唐纳利/丹尼尔·迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据的真相\",\n    \"author\": \"约翰・H. 约翰逊/迈克・格鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增强人类\",\n    \"author\": \"海伦・帕帕扬尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030204-bca3d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食的迷思\",\n    \"author\": \"蒂姆・斯佩克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的数字零\",\n    \"author\": \"查尔斯・塞弗\",\n    \"link\": \"链接未找到\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深海：探索寂静的未知\",\n    \"author\": \"詹姆斯・内斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗知识：机器认知如何颠覆商业和社会\",\n    \"author\": \"王维嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029484-71f57f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝笑了99次\",\n    \"author\": \"彼得・凯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029406-b5a217?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"较量：乐观的经济学与悲观的生态学\",\n    \"author\": \"保罗・萨宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮肤的秘密\",\n    \"author\": \"耶尔・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能的本质\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029304-4060a7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未解之谜（套装共2册）\",\n    \"author\": \"克雷格·P·鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029346-23a41e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联结：通向未来的文明史\",\n    \"author\": \"詹姆斯・伯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"起源：万物大历史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029259-608e4e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的哲学\",\n    \"author\": \"彼得・卡夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You Are a Badass at Making Money\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞\",\n    \"author\": \"马修・桑托罗/杰克・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029172-3654fd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼安德特人\",\n    \"author\": \"斯万特・帕博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能的进化\",\n    \"author\": \"赫克托・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站火星\",\n    \"author\": \"克里斯蒂安・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火焰中的秘密\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028938-6425da?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的历程（修订第4版）\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础读懂云计算\",\n    \"author\": \"纳扬・鲁帕拉里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028467-7f62ed?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙：一种未明的动物（增订本）\",\n    \"author\": \"马小星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028452-c59106?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子世界的发现之旅\",\n    \"author\": \"迈克尔・S. 沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑洞之书\",\n    \"author\": \"史蒂文・古布泽/弗兰斯・比勒陀利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美的进化\",\n    \"author\": \"理查德·O.普鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老科技的全球史\",\n    \"author\": \"大卫・艾杰顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027402-7317b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高手：精英的见识和我们的时代\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个观点，不一定对\",\n    \"author\": \"黄章晋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类“吸猫”小史\",\n    \"author\": \"艾比盖尔・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027183-6dbd40?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"码书：编码与解码的战争\",\n    \"author\": \"西蒙・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027210-1192ec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来50年\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027123-c3d4eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果我们错了呢？\",\n    \"author\": \"查克・克洛斯特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027147-aafe1f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空帝国\",\n    \"author\": \"徐刚/王燕平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027096-381168?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近2050\",\n    \"author\": \"集智俱乐部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026955-cae786?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识的边界\",\n    \"author\": \"戴维・温伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026913-097907?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码朋克\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单统计学\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞脑科学\",\n    \"author\": \"盖瑞・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026820-32a86b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明亮的泥土\",\n    \"author\": \"菲利普・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026793-14240d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上动物园\",\n    \"author\": \"夏洛特・斯莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026883-d8edc7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界观（原书第2版）\",\n    \"author\": \"理查德・德威特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026505-be18f3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撼动世界史的思想家格斗\",\n    \"author\": \"茂木诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026415-5855e5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海：另一个未知的宇宙\",\n    \"author\": \"弗兰克・施茨廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026199-42f833?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维如何与互联网共同进化\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的脑洞略大于整个宇宙\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026175-0b29b5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性之谜\",\n    \"author\": \"雨果・梅西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有用的逻辑学（第2版）\",\n    \"author\": \"梅森・皮里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025659-255f15?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简未来史\",\n    \"author\": \"克里斯托弗・巴纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025617-432176?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的智人\",\n    \"author\": \"河森堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的意识\",\n    \"author\": \"约翰・巴奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本有趣又有料的科学书\",\n    \"author\": \"大象公会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025065-df6894?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命密码\",\n    \"author\": \"尹烨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪家庭医学大百科\",\n    \"author\": \"林政毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025086-d9896b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劫持\",\n    \"author\": \"玛丽•K. 斯温格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长寿的基因\",\n    \"author\": \"普雷斯顿・埃斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑与阅读\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024882-9103fb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缤纷的生命\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘易斯·托马斯作品（共5册）\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空的琴弦\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶杯里的风暴\",\n    \"author\": \"海伦・切尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永生的海拉\",\n    \"author\": \"丽贝卡・思科鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿波罗\",\n    \"author\": \"扎克・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024600-7d239d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因、大脑和人类潜能\",\n    \"author\": \"肯・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云彩收集者手册\",\n    \"author\": \"加文・普雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024291-bd3b5c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学·科学·常识\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024279-dcadb0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从一粒尘埃开始\",\n    \"author\": \"布莱恩・考克斯/杰夫・福修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的修炼\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024060-80fd78?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的精进\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质的秘密\",\n    \"author\": \"埃蒂安・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肿瘤防治科普丛书（套装共13册）\",\n    \"author\": \"重庆市肿瘤医院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普鲁斯特是个神经学家\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（40周年增订版）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023907-8aa3e0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Order of Time\",\n    \"author\": \"Carlo Rovelli\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023880-1dbfad?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑常识\",\n    \"author\": \"林徽因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023643-a76ebd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明年更年轻\",\n    \"author\": \"克里斯・克劳利/亨利・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡征服世界\",\n    \"author\": \"安德鲁・劳勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新设计生命\",\n    \"author\": \"约翰・帕林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的技术\",\n    \"author\": \"凯莉・魏纳史密斯/扎克・魏纳史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单的逻辑学\",\n    \"author\": \"麦克伦尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪与玫瑰的使用方法\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023379-ac0f90?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史\",\n    \"author\": \"莉迪亚・康/内特・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑医疗史\",\n    \"author\": \"苏上豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼的牧师\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023202-04f6de?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲眼钟表匠\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级连接者\",\n    \"author\": \"伊桑・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经的逻辑\",\n    \"author\": \"埃利泽・斯滕伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学之美\",\n    \"author\": \"艾克哈特・玛腾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023118-bb94c1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级智能\",\n    \"author\": \"尼克・波斯特洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切与创造有关\",\n    \"author\": \"奥古斯汀・富恩特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未完成的进化\",\n    \"author\": \"凯文・拉兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好奇心：保持对未知世界永不停息的热情\",\n    \"author\": \"伊恩・莱斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022995-3678fc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃在拂晓\",\n    \"author\": \"克里斯托弗・莱恩/卡西尔达・杰萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给狮子剥皮\",\n    \"author\": \"克莱尔・科克-斯塔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022968-b9aee4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统计学关我什么事\",\n    \"author\": \"小岛宽之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学关我什么事\",\n    \"author\": \"文安德・冯・彼特尔斯多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022896-9538ae?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎曼猜想漫谈\",\n    \"author\": \"卢昌海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022899-88af93?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叩响天堂之门\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弯曲的旅行\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022818-41a87e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共7册）\",\n    \"author\": \"罗伯特・劳克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022836-5a2cdc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·宇宙系列（套装共6册）\",\n    \"author\": \"史蒂芬・霍金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022812-304b75?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列（套装共5册）\",\n    \"author\": \"罗杰・彭罗斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022785-3c7f3b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个定理的诞生\",\n    \"author\": \"塞德里克・维拉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022608-e6a289?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲量子力学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的明天\",\n    \"author\": \"席里尔・迪翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择的悖论\",\n    \"author\": \"巴里・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器70年\",\n    \"author\": \"徐曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤裸裸的统计学\",\n    \"author\": \"查尔斯・惠伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本书书名无法描述本书内容\",\n    \"author\": \"埃里克・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的法则\",\n    \"author\": \"肖恩·B·卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的极致：漫谈人工智能\",\n    \"author\": \"集智俱乐部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022236-849651?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万万没想到：用理工科思维理解世界\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间重生\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学的真相\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今日简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柔软的宇宙\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的发现\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021693-d754a0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类存在的意义\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络是怎样连接的\",\n    \"author\": \"户根勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走神的艺术与科学\",\n    \"author\": \"迈克尔・C.科尔巴里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实不似你所见\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塑造世界经济的50项伟大发明\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Princeton Companion to Mathematics\",\n    \"author\": \"Gowers, Timothy\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021243-933c06?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑箱社会\",\n    \"author\": \"弗兰克・帕斯奎尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021171-9be5d6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学简史\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021195-ee63f5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法之美：指导工作与生活的算法\",\n    \"author\": \"布莱恩・克里斯汀/汤姆・格里菲思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021150-6920ac?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看脸\",\n    \"author\": \"华沙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021126-869176?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道生命的答案\",\n    \"author\": \"丹尼尔・查莫维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命3.0\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021120-2c89e2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五次开始\",\n    \"author\": \"罗伯特・L .凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑微的套套\",\n    \"author\": \"安妮・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021051-972816?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规模：复杂世界的简单法则\",\n    \"author\": \"杰弗里・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021036-fe84e6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X的奇幻之旅\",\n    \"author\": \"史蒂夫・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学起源课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的微生物\",\n    \"author\": \"马丁・布莱泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020871-3d589b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安慰剂效应\",\n    \"author\": \"莉萨・兰金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020814-39b49a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的真相\",\n    \"author\": \"大卫・兰德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020793-75b8cb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知心理学（原书第5版）\",\n    \"author\": \"凯瑟琳・加洛蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020787-06bc90?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷尔蒙战争\",\n    \"author\": \"科迪莉亚・法恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020769-c67cdf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的未来\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020727-193b46?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的未来：从双螺旋到合成生命\",\n    \"author\": \"克雷格・文特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020724-9f0385?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒防御和心理复原力三部曲\",\n    \"author\": \"内森・沃尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020532-469146?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技前哨\",\n    \"author\": \"王煜全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020316-b05dfb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞行中的科学\",\n    \"author\": \"布莱恩・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020310-213507?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无器械健身\",\n    \"author\": \"马克・劳伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020154-710555?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国儿科学会育儿百科（第6版）\",\n    \"author\": \"斯蒂文・谢尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百科通识全系列大套装（共49本）\",\n    \"author\": \"安德鲁・巴兰坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020376-81a38d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因魔剪\",\n    \"author\": \"日本NHK“基因组编辑”采访组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020022-f75244?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪最伟大的心理学实验\",\n    \"author\": \"伦・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019893-bcc56f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学现场：另类世界史\",\n    \"author\": \"王雁斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019836-4f4794?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的温度\",\n    \"author\": \"吉诺・格塞雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019803-f6c866?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同步：秩序如何从混沌中涌现\",\n    \"author\": \"斯蒂芬・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019755-1e9eae?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维简史：从丛林到宇宙\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019542-7cb361?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好！植物（全彩）\",\n    \"author\": \"喵喵植物控\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学家们都干了些什么？（2015年全新修订版）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019287-bbfe16?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是数字的\",\n    \"author\": \"Brian W·Kernighan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019173-51d646?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智社会\",\n    \"author\": \"马文・明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018900-706749?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的手术刀\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笛卡尔的错误\",\n    \"author\": \"安东尼奥・达马西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018066-8ad3a0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是科学\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017991-026d4b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗意的原子\",\n    \"author\": \"科特・施塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017949-15be38?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们应当行走\",\n    \"author\": \"戴维・M. 奥辛斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017937-987b61?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人类革命\",\n    \"author\": \"吕克・费希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017670-bee6d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们人类的进化\",\n    \"author\": \"亚历山大・哈考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史，小世界\",\n    \"author\": \"辛西娅・斯托克斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造自然\",\n    \"author\": \"安德烈娅・武尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017490-5b557e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑使用指南\",\n    \"author\": \"赵思家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017454-809589?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的形状：相对论史话\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明之光（全三册）\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017397-aefe13?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一万年的爆发\",\n    \"author\": \"格雷戈里・柯克伦/亨利・哈本丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017313-fa9dd4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土：文明的侵蚀\",\n    \"author\": \"戴维·R. 蒙哥马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016863-fce466?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞鸟记\",\n    \"author\": \"欧仁・朗贝尔/保罗・罗贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016632-58b036?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Life 3.0\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016356-638f33?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲宇宙\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016302-ce02e5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因社会\",\n    \"author\": \"以太・亚奈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016272-086eed?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因组：人类自传\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么我们会上瘾\",\n    \"author\": \"迈克尔・库赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016179-c81d0e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理学与生活：全彩插图第11版\",\n    \"author\": \"阿瑟・格蒂斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯直觉心理学\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016014-26ab45?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子大唠嗑\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016011-0b3bbf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理的迷宫\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰道尔宇宙三部曲\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015930-649116?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大脑自由\",\n    \"author\": \"约翰・梅迪纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015795-94cb6e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒的困境\",\n    \"author\": \"威廉姆・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的大猩猩\",\n    \"author\": \"克里斯托弗・查布利斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症科普（套装共2册）\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接组：造就独一无二的你\",\n    \"author\": \"承现峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术的本质\",\n    \"author\": \"布莱恩・阿瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015207-84ea05?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛊惑世界的力量：可卡因传奇\",\n    \"author\": \"多米尼克・斯特里特费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015042-67c9a9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球上最伟大的表演\",\n    \"author\": \"理查德・毛姆道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行星全书\",\n    \"author\": \"尼尔马拉・纳塔瑞杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014421-80096e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的森林\",\n    \"author\": \"戴维・哈斯凯尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引力波\",\n    \"author\": \"珍娜・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014196-53b378?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何思考会思考的机器\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014175-b0a0d3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际穿越\",\n    \"author\": \"基普・索恩/基普・索恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014238-883094?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Astrophysics for People in a Hurry\",\n    \"author\": \"Neil deGrasse Tyson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014013-01ce24?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七堂极简物理课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013917-9f1be2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空全书\",\n    \"author\": \"詹姆斯・特赖菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部王国传奇（套装共5册）\",\n    \"author\": \"贾陈亮/王东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命：进化生物学、遗传学、人类学和环境科学的黎明\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗物质与恐龙\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别逗了，费曼先生\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的精神生活\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汽车是怎样跑起来的\",\n    \"author\": \"御堀直嗣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013170-8e1445?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极算法\",\n    \"author\": \"佩德罗・多明戈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书（套装共6册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的抉择\",\n    \"author\": \"杰尔姆・格罗普曼/帕米拉・哈茨班德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012789-a455a7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与数学\",\n    \"author\": \"爱德华・弗伦克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012663-712e79?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学家们都干了些什么？\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012042-46b91e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI：人工智能的本质与未来\",\n    \"author\": \"玛格丽特・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肠子的小心思\",\n    \"author\": \"朱莉娅・恩德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的乐趣：Matrix67数学笔记\",\n    \"author\": \"顾森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的故事：进化、健康与疾病\",\n    \"author\": \"丹尼尔・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙：从起源到未来\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010935-644bd6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学沉思录\",\n    \"author\": \"Mario Livio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010926-6eb53d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界的本质\",\n    \"author\": \"亚瑟・斯坦利・爱丁顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010893-b337b8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通俗天文学（全彩四色珍藏版）\",\n    \"author\": \"西蒙・纽康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010887-fc3eff?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德动物\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德景观\",\n    \"author\": \"萨姆・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越平行宇宙\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的后人类未来\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简海洋文明史\",\n    \"author\": \"菲利普・德・索萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学女孩\",\n    \"author\": \"结城浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010338-f745a3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学女孩2：费马大定理\",\n    \"author\": \"结城浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010332-f2891c?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白板\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲常识\",\n    \"author\": \"吕夏乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机械宇宙\",\n    \"author\": \"爱德华・多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"控制论与科学方法论\",\n    \"author\": \"金观涛/华国凡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009942-8968ed?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界未解之谜大全集（超值白金版）\",\n    \"author\": \"文若愚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009702-76dece?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识大融通：21世纪的科学与人文\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009588-edfc82?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简科普丛书（套装共6册）\",\n    \"author\": \"阿尔伯特・爱因斯坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009147-e52dc1?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑的阅读：破解人类阅读之谜\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些古怪又让人忧心的问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008988-3e59d8?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救护车到来前，你能做什么？\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经度\",\n    \"author\": \"达娃・索贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简宇宙史\",\n    \"author\": \"克里斯托弗・加尔法德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘的量子生命\",\n    \"author\": \"吉姆・艾尔/约翰乔・麦克法登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布大交换\",\n    \"author\": \"艾尔弗雷德・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生变态狂\",\n    \"author\": \"詹姆斯・法隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008187-852b5b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数理化通俗演义\",\n    \"author\": \"梁衡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008178-f506c2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙简史：起源与归宿\",\n    \"author\": \"斯蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谣言粉碎机系列（套装共3册）\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学史\",\n    \"author\": \"苏珊・怀斯・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007800-428adc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些消失的文明\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极客物理学：地球上最有趣的问题和最出人意料的答案\",\n    \"author\": \"瑞特・阿莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双脑记：认知神经科学之父加扎尼加自传\",\n    \"author\": \"迈克尔・加扎尼加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息简史\",\n    \"author\": \"詹姆斯·格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学究竟是什么（第3版）\",\n    \"author\": \"A.F.查尔默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哇，历史原来可以这样学（套装共2册）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界奇遇记\",\n    \"author\": \"伽莫夫/斯坦纳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（30周年纪念版）\",\n    \"author\": \"理查德·道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧几里得之窗\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006591-0ff2c9?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"森林的奇妙旅行\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006462-24745a?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大自然的社交网络\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006459-66ad57?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群星都是你们的世界\",\n    \"author\": \"乔恩・威利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006396-8de5aa?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·真相\",\n    \"author\": \"菠萝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简音乐史\",\n    \"author\": \"冈田晓生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大灭绝时代：一部反常的自然史\",\n    \"author\": \"伊丽莎白·科尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的宇宙\",\n    \"author\": \"加来道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005760-1c0736?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一平米健身：硬派健身\",\n    \"author\": \"斌卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005727-03824e?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给忙碌者的天体物理学\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众病之王：癌症传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005568-d9ac87?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学那些事儿\",\n    \"author\": \"William Dunham\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人造恐慌\",\n    \"author\": \"袁越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005136-32c837?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福极简经济学\",\n    \"author\": \"蒂莫西・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866\",\n    \"category\": \"科普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画以人传\",\n    \"author\": \"陈文璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100天后会死的鳄鱼君\",\n    \"author\": \"菊池祐纪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510312-e1ca94?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画家的一天\",\n    \"author\": \"段张取艺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512166-2a760f?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺绘画鲁迅小说\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512835-de753e?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名画中的符号\",\n    \"author\": \"平松洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001521-888cfc?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑老绘画陈列馆（伟大的博物馆）\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国绘画史\",\n    \"author\": \"陈师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方画家及其作品套装（全4册）\",\n    \"author\": \"王月亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造境记\",\n    \"author\": \"曾仁臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美不言\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽象城市\",\n    \"author\": \"克里斯托夫・尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦勃朗1642\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画见\",\n    \"author\": \"止庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初见卢浮宫\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：德加\",\n    \"author\": \"唐一帆/牛雪彤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026688-6d5b37?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：莫奈\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一幅画开启的世界\",\n    \"author\": \"高畑勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024951-5f5325?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误诊的艺术史\",\n    \"author\": \"董悠悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名画背后的故事（全五册）\",\n    \"author\": \"中野京子/顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019560-5d3b15?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊绘画·壹\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014850-625ef1?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊绘画·贰\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014826-5cb55d?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊神话\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866\",\n    \"category\": \"绘画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人诞生\",\n    \"author\": \"稻见昌彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅3\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G+：5G如何改变社会\",\n    \"author\": \"李正茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037314-20cf94?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市大崩溃前抛出的人（典藏版）\",\n    \"author\": \"伯纳德・巴鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术简史\",\n    \"author\": \"德伯拉·L·斯帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032319-7433f4?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术分析（原书第5版）\",\n    \"author\": \"马丁J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028260-40febb?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的技术\",\n    \"author\": \"凯莉・魏纳史密斯/扎克・魏纳史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The DevOps Handbook\",\n    \"author\": \"Gene Kim/Patrick Debois\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022182-e48593?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Who Can You Trust？\",\n    \"author\": \"Rachel Botsman\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021600-6613cf?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尽在双11：阿里巴巴技术演进与超越\",\n    \"author\": \"阿里巴巴双11技术团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股怎能不懂波段\",\n    \"author\": \"宋建文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866\",\n    \"category\": \"技术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬妮·希尔\",\n    \"author\": \"约翰・克利兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024696-f27937?p=8866\",\n    \"category\": \"情色\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马爱经（企鹅经典）\",\n    \"author\": \"奥维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866\",\n    \"category\": \"情色\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好色的哈姆雷特\",\n    \"author\": \"小白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866\",\n    \"category\": \"情色\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银、剑、石：拉丁美洲的三重烙印\",\n    \"author\": \"玛丽・阿拉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003672-fa8a61?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佩恩先生\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985156-46b0f6?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宜诺斯艾利斯传\",\n    \"author\": \"詹姆斯・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花与恶心\",\n    \"author\": \"卡洛斯・德鲁蒙德・德・安德拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十个女人\",\n    \"author\": \"马塞拉・塞拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037614-efe484?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掉队的拉美\",\n    \"author\": \"塞巴斯蒂安・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有人给他写信的上校\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034659-dfacc3?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安第斯山脉的生与死\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032457-1c064e?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印加帝国的末日\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风景画家的片段人生\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032295-900cb5?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊\",\n    \"author\": \"奥古斯托・蒙特罗索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028038-89760c?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斗牛士之名\",\n    \"author\": \"路易斯・塞普尔维达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027405-82e241?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴\",\n    \"author\": \"塞尔希奥・拉米雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024861-a5cc92?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"族长的秋天\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022356-073aeb?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克罗诺皮奥与法玛的故事\",\n    \"author\": \"胡利奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017775-747156?p=8866\",\n    \"category\": \"拉美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866\",\n    \"category\": \"圣经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝帝国：英国海军的兴衰\",\n    \"author\": \"本・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙无敌舰队\",\n    \"author\": \"加勒・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六舰\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·杰斐逊与海盗\",\n    \"author\": \"布莱恩・吉米德/唐・耶格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海魂国殇\",\n    \"author\": \"肖璞韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020121-e8411c?p=8866\",\n    \"category\": \"海军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经（第2版）\",\n    \"author\": \"赫尔伯特・史迪凡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493785-dc64ee?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骨骼跑步法\",\n    \"author\": \"铃木清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学跑步\",\n    \"author\": \"罗炜樑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姿势跑法\",\n    \"author\": \"尼古拉斯・罗曼诺夫/约翰・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无伤跑法\",\n    \"author\": \"戴剑松/郑家轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太极跑：不费力、无伤害的革命性跑步法\",\n    \"author\": \"丹尼・德雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你可以跑得更快\",\n    \"author\": \"徐国峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹尼尔斯经典跑步训练法\",\n    \"author\": \"杰克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我谈跑步时，我谈些什么\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013386-6178c4?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉松终极训练指南（原书第4版）\",\n    \"author\": \"霍尔・希格登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经：我跑故我在\",\n    \"author\": \"乔治・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866\",\n    \"category\": \"跑步\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布、大航海时代与地理大发现\",\n    \"author\": \"约翰・S.C.阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866\",\n    \"category\": \"大航海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无敌舰队\",\n    \"author\": \"加勒特・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866\",\n    \"category\": \"大航海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驭鲛记（全二册）\",\n    \"author\": \"九鹭非香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045429-d26386?p=8866\",\n    \"category\": \"仙侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三生三世十里桃花\",\n    \"author\": \"唐七公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007647-923bd8?p=8866\",\n    \"category\": \"仙侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：打造峰值体验\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866\",\n    \"category\": \"消费者\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨艺的常识\",\n    \"author\": \"迈克尔・鲁尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866\",\n    \"category\": \"厨房\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖07：大丈夫生于厨房\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866\",\n    \"category\": \"厨房\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·杰斐逊与海盗\",\n    \"author\": \"布莱恩・吉米德/唐・耶格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866\",\n    \"category\": \"海权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息技术简史\",\n    \"author\": \"吕廷杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043158-2c151c?p=8866\",\n    \"category\": \"通信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G+：5G如何改变社会\",\n    \"author\": \"李正茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037314-20cf94?p=8866\",\n    \"category\": \"通信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅰ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866\",\n    \"category\": \"南极\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"南极\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬：极地求生700天\",\n    \"author\": \"阿尔弗雷德・兰辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866\",\n    \"category\": \"南极\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩们的地下战争\",\n    \"author\": \"蕾切尔・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491190-40f929?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不平等的尸体\",\n    \"author\": \"西尾元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491730-fd4592?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱里的希望\",\n    \"author\": \"丹・波托洛蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492060-2c8fad?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她来自马里乌波尔\",\n    \"author\": \"娜塔莎・沃丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里约折叠\",\n    \"author\": \"米沙・格兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493452-eb3a63?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运气的诱饵\",\n    \"author\": \"娜塔莎・道・舒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493695-e4930e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在中国大地上\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美好时代的背后\",\n    \"author\": \"凯瑟琳・布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495399-0e9e0c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压裂的底层\",\n    \"author\": \"伊丽莎・格里斯沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497073-d5a61b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坠落与重生：911的故事\",\n    \"author\": \"米切尔・祖科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497535-e9ce53?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在人间：肿瘤科女医生亲历记录\",\n    \"author\": \"沈琳/戴志悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498033-dfa046?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐谷路\",\n    \"author\": \"罗伯特・科尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498873-def7c6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张医生与王医生\",\n    \"author\": \"伊险峰/杨樱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499125-925a06?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老后两代破产\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499251-4a9792?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熔炉\",\n    \"author\": \"孔枝泳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500031-1ac20c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归家庭\",\n    \"author\": \"沙尼・奥加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500403-34b60f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失业白领的职场漂流\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500553-5edab3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁庄十年\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500706-b2fafd?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私立小学闯关记\",\n    \"author\": \"槙原久美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500793-2c71ca?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夹缝生存：不堪重负的中产家庭\",\n    \"author\": \"阿莉莎・夸特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501354-ff97b8?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高中生穷忙族\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501642-8081e6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重走：在公路、河流和驿道上寻找西南联大\",\n    \"author\": \"杨潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507096-34bbb4?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京贫困女子\",\n    \"author\": \"中村淳彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507093-5284bf?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"殿军：山一证券最后的12人\",\n    \"author\": \"清武英利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507573-379911?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚无时代\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桶川跟踪狂杀人事件\",\n    \"author\": \"清水洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509955-7d12b3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云没有回答\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510006-ca0590?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女佣的故事\",\n    \"author\": \"斯蒂芬妮・兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512379-69c390?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士的故事\",\n    \"author\": \"克里斯蒂・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性贫困\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513486-69ca43?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午之魔\",\n    \"author\": \"安德鲁・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俺爹俺娘\",\n    \"author\": \"焦波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513762-f54ff0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱鹮的遗言\",\n    \"author\": \"小林照幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004575-299851?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是茅台\",\n    \"author\": \"张小军/马玥/熊玥伽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004500-5515a4?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形而上学俱乐部\",\n    \"author\": \"路易斯・梅南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003579-09071b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远的现在时\",\n    \"author\": \"苏珊・科金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003021-92ad62?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看护杀人\",\n    \"author\": \"每日新闻大阪社会部采访组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003012-070566?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深暗\",\n    \"author\": \"赫克托・托巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002850-10fa6c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“排放门”：大众汽车丑闻\",\n    \"author\": \"杰克・尤因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002769-31400d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非虚构的艺术\",\n    \"author\": \"特雷西・基德尔/理查德・托德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002583-d3c7fb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国病\",\n    \"author\": \"伊丽莎白・罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的二本学生\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妻子们的思秋期\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001602-8bf926?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好老师，坏老师\",\n    \"author\": \"达娜・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知晓我姓名\",\n    \"author\": \"香奈儿・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋园\",\n    \"author\": \"杨本芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998932-5bad21?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肮脏的三十年代\",\n    \"author\": \"蒂莫西・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国监狱\",\n    \"author\": \"肖恩・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血殇\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不让生育的社会\",\n    \"author\": \"小林美希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廷巴克图\",\n    \"author\": \"约书亚・哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，我是接体员\",\n    \"author\": \"大师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟往来书信集\",\n    \"author\": \"梁培宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·伯格作品13册套装\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985822-e14dbb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死96小时\",\n    \"author\": \"冯韵娴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985246-d27bd2?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔战时文集\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主妇、舞者与牧师\",\n    \"author\": \"马蜂窝出品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053694-6f133f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历滇缅公路（套装共4本）\",\n    \"author\": \"内维尔・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午2：此地不宜久留\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052698-caedb3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午3：到海底去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052620-5a8fe8?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午4：我的黎明骊歌\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052587-a22353?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午1：我穿墙过去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无缘社会\",\n    \"author\": \"日本NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051867-337e7a?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米格尔在智利的地下行动\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051711-d0d758?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世纪的哭泣\",\n    \"author\": \"兰迪・希尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051345-8d25b6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创水记\",\n    \"author\": \"赛斯・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义的代价\",\n    \"author\": \"劳伦斯・李默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少林很忙\",\n    \"author\": \"马修・波利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049068-7ff5e6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆斯河\",\n    \"author\": \"丹・费金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非典十年祭\",\n    \"author\": \"何建明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048432-7a243d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉鲨\",\n    \"author\": \"莫腾・安德雷亚斯・斯特罗克奈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔纪实作品全集（套装共3册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨浪下的小学\",\n    \"author\": \"理查德・劳埃德・帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046986-bb9508?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅰ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅰ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最残酷的夏天：美国人眼中的越南战争\",\n    \"author\": \"菲利普・卡普托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"求医记\",\n    \"author\": \"会飞的王动\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045063-bfae67?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凉灯\",\n    \"author\": \"黄于纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044739-fc0da7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"察沃的食人魔\",\n    \"author\": \"J.H.帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产科男医生手记\",\n    \"author\": \"田吉顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤老板自述三十年\",\n    \"author\": \"老五/劲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043788-51d196?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超凡：我们的身心极致及天赋的科学\",\n    \"author\": \"罗恩・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝶变：澳门博彩业田野叙事\",\n    \"author\": \"刘昭瑞/霍志钊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最深的水是泪水\",\n    \"author\": \"鲍尔吉・原野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040617-eb3c15?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰雪王国：美国军舰珍妮特号的极地远征\",\n    \"author\": \"汉普顿・塞兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040221-ed59c0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"絕望者之歌\",\n    \"author\": \"杰德・凡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起连环绑架案的新闻\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037893-b383ce?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作漂流\",\n    \"author\": \"稻泉连\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037632-6132e7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人经典作品合集（套装共9册）\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037461-7d9d06?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方视野里的中国合集（共10册）\",\n    \"author\": \"庄士敦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走的人多了，就有了路\",\n    \"author\": \"尼可拉斯・克里斯多夫/雪莉・邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九月的十三天\",\n    \"author\": \"劳伦斯・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日的世界\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎烧了吗？\",\n    \"author\": \"拉莱・科林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好告别\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人自编集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷血\",\n    \"author\": \"杜鲁门・卡波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034077-79c03d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列的诞生（全四册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的访谈系列（套装共6册）\",\n    \"author\": \"欧内斯特・米勒尔・海明威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC经典文化纪录片配套著作精选合集\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033249-7df812?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总统班底\",\n    \"author\": \"卡尔・伯恩斯坦/鲍勃・伍德沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民蠢萌的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的熊猫\",\n    \"author\": \"乔治・夏勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032364-6ae019?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岗村40年\",\n    \"author\": \"贾鸿彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对笑喷之弃业医生日志\",\n    \"author\": \"亚当・凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三杯茶\",\n    \"author\": \"葛瑞格・摩顿森/大卫・奥利佛・瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032001-2bc835?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下：东京地铁沙林毒气事件实录（套装共2册）\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031869-499ce7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬：极地求生700天\",\n    \"author\": \"阿尔弗雷德・兰辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑帮·贩毒集团神秘内幕（全五册）\",\n    \"author\": \"詹幼鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031308-31f32e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房奴\",\n    \"author\": \"戴维・戴恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻路中国\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝的故事\",\n    \"author\": \"深蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国与中国人影像（增订版）\",\n    \"author\": \"约翰・汤姆逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030279-7e35db?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人岛生存十六人\",\n    \"author\": \"须川邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑箱：日本之耻\",\n    \"author\": \"伊藤诗织\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029460-1e1c60?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏血：一个硅谷巨头的秘密与谎言\",\n    \"author\": \"约翰・卡雷鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的美国\",\n    \"author\": \"珍妮・拉斯卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷忙\",\n    \"author\": \"戴维・希普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那时的先生\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028962-13aa23?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子1：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028203-c24763?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子2：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028182-15b27e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子3：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028176-a2cb1b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读16：新北京人\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027591-a94676?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑的清真寺\",\n    \"author\": \"伊恩・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛德勒名单（译文经典）\",\n    \"author\": \"托马斯・基尼利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027282-8e342c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兄弟连（译林纪念版）\",\n    \"author\": \"斯蒂芬•E．安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寡头\",\n    \"author\": \"戴维・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一个家在何方？\",\n    \"author\": \"馬修・戴斯蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025545-020e6e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"往事与随想（共3册）\",\n    \"author\": \"赫尔岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永生的海拉\",\n    \"author\": \"丽贝卡・思科鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民自黑的英国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马航MH370失联十七天\",\n    \"author\": \"陈功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024450-32c0b3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木匠手记\",\n    \"author\": \"尼娜・麦克劳林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我从战场归来\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我钻进了金字塔\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023844-04f9b7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返巴格达\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023856-5b4c01?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打工女孩\",\n    \"author\": \"张彤禾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国情报界\",\n    \"author\": \"杰弗瑞・理查尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不知道该说什么，关于死亡还是爱情\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022905-60dc96?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的浏阳兄弟\",\n    \"author\": \"索文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东北游记\",\n    \"author\": \"迈克尔・麦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022509-9d7c84?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再会，老北京\",\n    \"author\": \"迈克尔・麦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022461-d6df24?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐山大地震（纪念版）\",\n    \"author\": \"钱钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022425-0c7827?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青苔不会消失\",\n    \"author\": \"袁凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扫地出门：美国城市的贫穷与暴利\",\n    \"author\": \"马修・德斯蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼翅与花椒\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人之妻\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗网\",\n    \"author\": \"杰米・巴特利特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020808-518d1f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿图医生（第二季）\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020292-b5bcc6?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蕾蒂西娅，或人类的终结\",\n    \"author\": \"伊凡・雅布隆卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汶川地震168小时\",\n    \"author\": \"张良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019782-2760cf?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫物语\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019347-0c448f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019266-96362f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长乐路\",\n    \"author\": \"史明智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只名叫鲍勃的流浪猫\",\n    \"author\": \"詹姆斯・鲍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018270-7946fb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大路：高速中国里的工地纪事\",\n    \"author\": \"张赞波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017673-ac0306?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的亲人\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014427-4895bb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑旗：ISIS的崛起\",\n    \"author\": \"乔比・沃里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014355-a74506?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Street of Eternal Happiness\",\n    \"author\": \"Rob Schmitz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013707-35fbcc?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与火同行：大卫·林奇谈电影\",\n    \"author\": \"大卫・林奇/克里斯・罗德雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都市速写簿\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国灯笼\",\n    \"author\": \"格蕾丝・汤普森・西登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的悲鸣\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部招妻\",\n    \"author\": \"马宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战大武汉\",\n    \"author\": \"张军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010920-a3947f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还是想你，妈妈\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010209-11eeec?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1942河南大饥荒\",\n    \"author\": \"宋致新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009999-ed0873?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻关注：二战经典战役纪实（套装共10册）\",\n    \"author\": \"二战经典战役编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是女兵，也是女人\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江城\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009462-96eec5?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆（图文版）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的烽塔\",\n    \"author\": \"卡伊斯・阿克巴尔・奥马尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008757-f55e62?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与荒原同行\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出梁庄记\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追问\",\n    \"author\": \"丁捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一百个人的十年\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在底层的生活\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末日巨塔\",\n    \"author\": \"劳伦斯・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007947-f24581?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进入空气稀薄地带\",\n    \"author\": \"乔恩・克拉考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希拉里传（纪念版）\",\n    \"author\": \"卡尔・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007839-6bdb2b?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅰ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅱ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“四人帮”兴亡（增订版）\",\n    \"author\": \"叶永烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唉，我的沧桑50年（1959至今）\",\n    \"author\": \"八爪夜叉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难一日：海豹六队击毙本・拉登行动亲历\",\n    \"author\": \"马克・欧文/凯文・莫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CIA美国中央情报局全传\",\n    \"author\": \"亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统一大业（合订本）\",\n    \"author\": \"郭晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福了吗？\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇石：来自东西方的报道\",\n    \"author\": \"彼得·海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个红卫兵的自白\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006858-8e4d5d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见\",\n    \"author\": \"柴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是尘埃也是光\",\n    \"author\": \"梁子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夹边沟记事\",\n    \"author\": \"杨显惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006411-34b535?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甘南纪事\",\n    \"author\": \"杨显惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006405-e4b8cb?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨迹：留在生命和记忆中\",\n    \"author\": \"曾子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大灭绝时代：一部反常的自然史\",\n    \"author\": \"伊丽莎白·科尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生的中国人\",\n    \"author\": \"杨猛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005721-fc7d62?p=8866\",\n    \"category\": \"纪实\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递1\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866\",\n    \"category\": \"温情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命：只想陪在你身边\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866\",\n    \"category\": \"温情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死屋\",\n    \"author\": \"丹尼尔・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033177-b3ac59?p=8866\",\n    \"category\": \"俄国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往权力之路：叶卡捷琳娜大帝\",\n    \"author\": \"罗伯特·K·迈锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866\",\n    \"category\": \"俄国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒原来是这么回事儿\",\n    \"author\": \"吉雷克・奥贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒经济学\",\n    \"author\": \"约翰・思文/德文・布里斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤博士的啤酒札记\",\n    \"author\": \"太空精酿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何畅享啤酒\",\n    \"author\": \"约翰・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032259-138919?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精酿啤酒革命\",\n    \"author\": \"史蒂夫・欣迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866\",\n    \"category\": \"啤酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏杨白话版资治通鉴（全72册）\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866\",\n    \"category\": \"资治通鉴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通鉴纪事本末（注译本）全42卷\",\n    \"author\": \"袁枢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052959-de2d4c?p=8866\",\n    \"category\": \"资治通鉴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高手稿（典藏修订版）\",\n    \"author\": \"文森特・凡高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513045-85b0e4?p=8866\",\n    \"category\": \"梵高\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：梵高\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866\",\n    \"category\": \"梵高\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的提奥：梵高传\",\n    \"author\": \"文森特・威廉・梵高/约翰娜・梵高・邦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017379-8fa602?p=8866\",\n    \"category\": \"梵高\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高传（全三部）\",\n    \"author\": \"史蒂文・奈菲/格雷戈里・怀特・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866\",\n    \"category\": \"梵高\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进博物馆（套装12册）\",\n    \"author\": \"陕西省文物局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498555-c1a8e6?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让木乃伊跳舞（新版）\",\n    \"author\": \"托马斯・霍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆里的极简中国史\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨圣母百花大教堂博物馆\",\n    \"author\": \"蒂莫西・弗登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典考古博物馆\",\n    \"author\": \"卢卡・莫扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022161-31f368?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯国家考古博物馆\",\n    \"author\": \"迪雷塔・哥伦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰波尔迪·佩佐利博物馆\",\n    \"author\": \"玛利亚·特蕾莎·巴尔博尼·布雷萨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开罗埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯卡波迪蒙特博物馆\",\n    \"author\": \"马蒂亚・盖塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰布雷拉美术馆\",\n    \"author\": \"斯蒂芬尼・祖菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019170-dd2f29?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰斯福尔扎古堡博物馆\",\n    \"author\": \"马蒂诺・阿斯托尔菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019149-58301b?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯学院美术馆\",\n    \"author\": \"露琪亚・伊姆佩鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019119-338773?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕尔马国家美术馆\",\n    \"author\": \"乔瓦娜・达米亚尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019065-def2cc?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科普希金博物馆\",\n    \"author\": \"西莫内塔・佩卢西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019038-d6ede3?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣彼得堡冬宫博物馆\",\n    \"author\": \"亚历山大・弗雷格伦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019044-36223b?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博洛尼亚国家艺术画廊\",\n    \"author\": \"贝亚特莉切・布斯卡罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华盛顿国家艺术馆\",\n    \"author\": \"罗萨娜・乔尔吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦国家美术馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018696-513898?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马德里普拉多博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018684-d7b281?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌尔比诺马尔凯国家美术馆\",\n    \"author\": \"罗伦查・莫基・奥诺里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018648-5c52b0?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维也纳艺术史博物馆\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018669-686c5d?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎卢浮宫\",\n    \"author\": \"亚历山德拉・弗雷格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012414-10182f?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹国家博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨皮蒂宫\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012279-fd065b?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨乌菲齐画廊\",\n    \"author\": \"艾莱娜・吉纳耐斯奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012285-af45df?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦大英博物馆\",\n    \"author\": \"卢卡・莫扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012210-e9d448?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎奥赛美术馆\",\n    \"author\": \"西蒙娜・巴尔多蕾娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012240-1bee54?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英博物馆世界简史（套装共3册）\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个故宫的离合\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866\",\n    \"category\": \"博物馆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人当国：慈禧太后与晚清五十年\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866\",\n    \"category\": \"慈禧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫女谈往录\",\n    \"author\": \"金易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866\",\n    \"category\": \"慈禧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧全传\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866\",\n    \"category\": \"慈禧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经（锁线图文版）\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510882-3771c1?p=8866\",\n    \"category\": \"诗经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866\",\n    \"category\": \"诗经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经点醒\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866\",\n    \"category\": \"诗经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经楚辞鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023427-f856e9?p=8866\",\n    \"category\": \"诗经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因文集（套装共4册）\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866\",\n    \"category\": \"神经病\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫经营实录（共5册）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995602-63c5f5?p=8866\",\n    \"category\": \"企管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返帕米尔\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501357-a9c1bd?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深时之旅\",\n    \"author\": \"罗伯特・麦克法伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事\",\n    \"author\": \"罗伯特・哈森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505959-214d70?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第一辑（套装共4册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第二辑（套装共6册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里是中国\",\n    \"author\": \"星球研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001278-e6701c?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理的时空\",\n    \"author\": \"尼古拉斯・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简地理学\",\n    \"author\": \"威尔・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050448-e34a7b?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘境\",\n    \"author\": \"乔舒亚・福尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理与世界霸权\",\n    \"author\": \"詹姆斯・费尔格里夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁在世界的中央\",\n    \"author\": \"梁二平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020298-7a1189?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：历史地理（上册）\",\n    \"author\": \"单周尧等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019728-de9599?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：历史地理（下册）\",\n    \"author\": \"张伟保等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019734-e6e9b5?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理学与生活：全彩插图第11版\",\n    \"author\": \"阿瑟・格蒂斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部王国传奇（套装共5册）\",\n    \"author\": \"贾陈亮/王东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：厦门\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘大战略\",\n    \"author\": \"丁力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯庸笑翻中国简史\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866\",\n    \"category\": \"地理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马登谈成功（套装共5册）\",\n    \"author\": \"奥里森・马登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508968-7f8963?p=8866\",\n    \"category\": \"成功学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴越春秋（全本全注全译）\",\n    \"author\": \"崔冶译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆天子传（全本全注全译）\",\n    \"author\": \"高永旺译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子大历史\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦文体与话语方式研究\",\n    \"author\": \"过常宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕氏春秋译注（修订本）\",\n    \"author\": \"张双棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦古国志\",\n    \"author\": \"林屋公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007686-218743?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦凶猛 （全五册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007683-6430e6?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"头颅中国：另一个角度看先秦\",\n    \"author\": \"黄摩崖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007314-f6145e?p=8866\",\n    \"category\": \"先秦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类酷刑简史\",\n    \"author\": \"马克·P.唐纳利/丹尼尔·迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866\",\n    \"category\": \"酷刑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青口述史\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009201-91fa5a?p=8866\",\n    \"category\": \"知青\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的一代：中国的上山下乡运动1968-1980\",\n    \"author\": \"潘鸣啸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866\",\n    \"category\": \"知青\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·初澜（1953～1968）\",\n    \"author\": \"定宜庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866\",\n    \"category\": \"知青\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·大潮（1966～1980）\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866\",\n    \"category\": \"知青\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类大瘟疫\",\n    \"author\": \"马克・霍尼斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866\",\n    \"category\": \"疾病\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病的文化史\",\n    \"author\": \"洛伊斯·N.玛格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866\",\n    \"category\": \"疾病\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人10\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492399-b7dec5?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第二辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495999-c078ba?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第一辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494919-9c0725?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉蕾（第1部：卷1~卷6）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497349-aa8a4e?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶犬之牙\",\n    \"author\": \"鱼骨互娱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001476-984182?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"hi我的名字叫镰\",\n    \"author\": \"天翼爱动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999409-80bef5?p=8866\",\n    \"category\": \"卡通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫周期\",\n    \"author\": \"查尔斯・肯尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508044-93a44f?p=8866\",\n    \"category\": \"瘟疫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫与人\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020880-aa080f?p=8866\",\n    \"category\": \"瘟疫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866\",\n    \"category\": \"庄子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子现代版（最新修订版）\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053886-547f3d?p=8866\",\n    \"category\": \"庄子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网新商业时代（套装共三册）\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866\",\n    \"category\": \"网络时代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将夜（精校版）\",\n    \"author\": \"猫腻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049074-8f7e9a?p=8866\",\n    \"category\": \"网络小说\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苍壁书（共3册）\",\n    \"author\": \"青林之初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045138-443d3b?p=8866\",\n    \"category\": \"网络小说\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035478-d1cadf?p=8866\",\n    \"category\": \"德鲁克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866\",\n    \"category\": \"德鲁克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德鲁克的最后忠告\",\n    \"author\": \"伊丽莎白・哈斯・埃德莎姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866\",\n    \"category\": \"德鲁克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户的本质\",\n    \"author\": \"史蒂文・范・贝莱格姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866\",\n    \"category\": \"用户\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆用户增长\",\n    \"author\": \"黄天文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016125-7b3129?p=8866\",\n    \"category\": \"用户\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生十二法则\",\n    \"author\": \"乔丹・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866\",\n    \"category\": \"修行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正念的奇迹\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029160-04ba40?p=8866\",\n    \"category\": \"修行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冥想\",\n    \"author\": \"斯瓦米・拉玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019578-9ee5ca?p=8866\",\n    \"category\": \"修行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"淡定的智慧\",\n    \"author\": \"弘一法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017016-132f58?p=8866\",\n    \"category\": \"修行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在病毒中生存\",\n    \"author\": \"苗德岁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命敌人\",\n    \"author\": \"迈克尔·T.奥斯特霍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血殇\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花冠病毒\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049548-85c3c0?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新型冠状病毒感染防护\",\n    \"author\": \"何剑峰/宋铁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒星球\",\n    \"author\": \"卡尔・齐默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"病毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疫苗竞赛\",\n    \"author\": \"梅雷迪丝・瓦德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医疗与人性系列（套装共4册）\",\n    \"author\": \"亨利・马什等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004365-27ce81?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国病\",\n    \"author\": \"伊丽莎白・罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的处方\",\n    \"author\": \"伊齐基尔・伊曼纽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病者生存\",\n    \"author\": \"沙龙・莫勒姆/乔纳森・普林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新药的故事\",\n    \"author\": \"梁贵柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的修炼\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024060-80fd78?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的精进\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑医疗史\",\n    \"author\": \"苏上豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866\",\n    \"category\": \"医疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密\",\n    \"author\": \"麦家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033438-7ed22e?p=8866\",\n    \"category\": \"解密\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿桑奇自传：不能不说的秘密\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009390-bd0480?p=8866\",\n    \"category\": \"解密\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维基解密：谁授权美国统管世界\",\n    \"author\": \"苏言/贺濒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866\",\n    \"category\": \"解密\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破圈：如何突破认知局限并实现终身成长\",\n    \"author\": \"顾及\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要做人生的甲方\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相与错觉\",\n    \"author\": \"塔莎・欧里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（原书第11版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习天性\",\n    \"author\": \"小沼势矢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051951-468fab?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界学习\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弥散的心智\",\n    \"author\": \"里卡多・曼佐蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度预测\",\n    \"author\": \"理查德·A·克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033822-1e355a?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知尺度\",\n    \"author\": \"魏坤琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知突围：做复杂时代的明白人\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知迭代\",\n    \"author\": \"卡罗琳・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当自我来敲门\",\n    \"author\": \"安东尼奥・达马西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017889-ef3bdf?p=8866\",\n    \"category\": \"认知\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就好爸爸：男人一生最重要的工作\",\n    \"author\": \"格雷戈里・史雷顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017655-919009?p=8866\",\n    \"category\": \"爸爸\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明3：王阳明家训\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866\",\n    \"category\": \"家训\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1924：改变希特勒命运的一年\",\n    \"author\": \"彼得・罗斯・兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的兴亡\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：跃升年代\",\n    \"author\": \"福尔克尔・乌尔里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：从乞丐到元首\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从俾斯麦到希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866\",\n    \"category\": \"希特勒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你总说没事，但我知道你偷偷哭过很多次\",\n    \"author\": \"一禅小和尚诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赶路人\",\n    \"author\": \"李小晓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048240-d3013a?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间值得\",\n    \"author\": \"中村恒子/奥田弘美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情书\",\n    \"author\": \"岩井俊二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033849-0749ba?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘿，小家伙\",\n    \"author\": \"温酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四季，三餐，都随你\",\n    \"author\": \"简猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人3：无境之爱\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花园里的机器人\",\n    \"author\": \"黛博拉・因斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028026-01f454?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢来，反正也来不及\",\n    \"author\": \"囧叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017091-63be9e?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪安娜穿过漫漫长夜\",\n    \"author\": \"加瑞尔・萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅课\",\n    \"author\": \"汤姆・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866\",\n    \"category\": \"温暖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱的猴子\",\n    \"author\": \"安东尼奥・加西亚・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866\",\n    \"category\": \"创投\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华生活经典系列（第一辑共11册）\",\n    \"author\": \"林洪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046236-5c0c2e?p=8866\",\n    \"category\": \"中华\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶之城\",\n    \"author\": \"大卫・贝瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037332-1f1148?p=8866\",\n    \"category\": \"阴谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家阴谋：复仇天使四部曲\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006003-518eb4?p=8866\",\n    \"category\": \"阴谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹集中营史（全2册）\",\n    \"author\": \"尼古劳斯・瓦克斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491625-c415d8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑\",\n    \"author\": \"罗伯特・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493383-9583c5?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别人的动物园\",\n    \"author\": \"扬・莫恩浩特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497574-d5742d?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不中用的狗（短经典精选）\",\n    \"author\": \"海因里希・伯尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499308-749147?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个物品中的德国历史\",\n    \"author\": \"赫尔曼・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500205-230f28?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大战：1914～1918年的世界（全2册）\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500367-921478?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的崛起\",\n    \"author\": \"约翰・马里奥特/格兰特・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508947-f67a76?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的五个德国\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人\",\n    \"author\": \"埃米尔・路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511845-4ad275?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁幕欧洲之新生\",\n    \"author\": \"卡尔・施勒格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的细节\",\n    \"author\": \"叶克飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000312-ad2cbf?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文化漫游\",\n    \"author\": \"鲁成文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖喱香肠的诞生\",\n    \"author\": \"乌韦・提姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000282-bf0d55?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审判希特勒\",\n    \"author\": \"大卫・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998536-d8c07b?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷之前的艾希曼\",\n    \"author\": \"贝蒂娜・施汤内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997453-459c45?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒与20世纪德国\",\n    \"author\": \"汉斯・莫姆森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997363-fc796f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主德国的秘密读者\",\n    \"author\": \"齐格弗里德・洛卡蒂斯/英格里德・宗塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996481-32da34?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年战争史：1618-1648\",\n    \"author\": \"塞缪尔・罗森・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国：一个国家的记忆\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗读者\",\n    \"author\": \"本哈德・施林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991900-b47bed?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（增订版）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当权的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的到来\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掘墓人\",\n    \"author\": \"吕迪格・巴特/豪克・弗里德里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985024-aa55e8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：世界大战的时代（全三册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日耳曼尼亚\",\n    \"author\": \"西蒙・温德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984622-8c00f4?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史\",\n    \"author\": \"克劳斯·P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052539-7f6be3?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑塞文集（全10卷）\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051813-4fbe8f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战（贝克知识丛书）\",\n    \"author\": \"弗尔克・贝克汉恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十世纪德国史（贝克知识丛书）\",\n    \"author\": \"安德烈亚斯・维尔申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051465-79abc2?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独异性社会\",\n    \"author\": \"安德雷亚斯・莱克维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050682-32415f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志公敌\",\n    \"author\": \"杰弗里・赫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂之死\",\n    \"author\": \"汉妮・明策尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彗星年代\",\n    \"author\": \"丹尼尔・舍恩普夫卢格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评家之死\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045375-92d933?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学史讲演录（4卷）\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与记忆中的第三帝国\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致后代\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林，亚历山大广场（译文经典）\",\n    \"author\": \"阿尔弗雷德・德布林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043308-cc3071?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时代的精神状况（译文经典）\",\n    \"author\": \"卡尔・雅斯贝斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042081-4c4aec?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵攻击（经典纪念版）\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史（全六卷）\",\n    \"author\": \"邢来顺/吴友达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041019-a506b4?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们与祖先交谈的夜晚\",\n    \"author\": \"萨沙・斯坦尼西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040701-145d11?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的文化\",\n    \"author\": \"克里斯蒂安・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香水（译文经典）\",\n    \"author\": \"帕特里克・聚斯金德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038457-f07ef8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恋爱中的男人\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037671-0d7dcf?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志文化（1945～2000年）\",\n    \"author\": \"赫尔曼・格拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034806-c7aa48?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第4卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第1卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊对德意志的暴政\",\n    \"author\": \"伊莉莎・玛丽安・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第2卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第3卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁？如果有我，有几个我？\",\n    \"author\": \"理查德・大卫・普列斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物，怎么办？（企鹅经典）\",\n    \"author\": \"汉斯・法拉达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033552-fc5367?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔山（企鹅经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033270-e62351?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德皇威廉二世回忆录\",\n    \"author\": \"威廉二世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背对世界\",\n    \"author\": \"埃尔克・海登莱希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031692-85e059?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国总参谋部\",\n    \"author\": \"斯宾塞・威尔金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林：一座城市的肖像\",\n    \"author\": \"罗里・麦克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与死的年代\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031077-d1a6b0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伙伴进行曲\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031065-ab7513?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西线无战事\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030507-dc3c15?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里斯本之夜\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030501-6ecfa7?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色方尖碑\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030498-51ee22?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国极简史\",\n    \"author\": \"詹姆斯・霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的艺术\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家和出版人\",\n    \"author\": \"西格弗里德・温塞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029769-5eb081?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国历史中的文化诱惑\",\n    \"author\": \"沃尔夫・勒佩尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力意志与永恒轮回（译文经典）\",\n    \"author\": \"弗里德里希·威廉·尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的影子帝国\",\n    \"author\": \"皮耶尔保罗・巴维里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死于威尼斯（译文经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026790-ec3dad?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国\",\n    \"author\": \"克劳斯・P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1924：改变希特勒命运的一年\",\n    \"author\": \"彼得・罗斯・兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丈量世界\",\n    \"author\": \"丹尼尔・凯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025011-988ba8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年维特的烦恼（读客经典）\",\n    \"author\": \"约翰・沃尔夫冈・冯・歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024237-1edddb?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥德国史\",\n    \"author\": \"玛丽・富布卢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022479-9288ae?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人的战争\",\n    \"author\": \"尼古拉斯・斯塔加特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"默克尔传：德国总理安格拉·默克尔和她的权力世界\",\n    \"author\": \"斯蒂凡・柯内琉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020523-ee7487?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯坦德1936\",\n    \"author\": \"福尔克尔・魏德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020391-a49d11?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉重的皇冠\",\n    \"author\": \"克里斯托弗・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金与铁：俾斯麦、布莱希罗德与德意志帝国的建立\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019062-89d9da?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不情愿的大师\",\n    \"author\": \"斯蒂芬・葛霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017631-5dd734?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自静默时刻的讯息\",\n    \"author\": \"亚历山大・克鲁格/格哈德・里希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015834-7f7b45?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时刻：希特勒、大屠杀与纳粹文化（上下册）\",\n    \"author\": \"单世联\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应许之地\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012585-de8060?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远去的胜利\",\n    \"author\": \"威廉・理查德森/西摩・弗雷德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《存在与时间》释义\",\n    \"author\": \"张汝伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011925-622b16?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志之魂\",\n    \"author\": \"特亚・多恩/里夏德・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011616-7a3f09?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的浩劫\",\n    \"author\": \"弗里德里希・迈内克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011484-6c4d96?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"席勒文集（全6册）\",\n    \"author\": \"席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011478-c63c69?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十个人的德意志\",\n    \"author\": \"孙世龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009267-7bdd51?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵进攻\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原狼\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009234-487551?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史：德国人的犹太恐惧症与大屠杀\",\n    \"author\": \"克劳斯・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国简史\",\n    \"author\": \"孟钟捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：跃升年代\",\n    \"author\": \"福尔克尔・乌尔里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史\",\n    \"author\": \"丁建弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国的腐败与反腐\",\n    \"author\": \"弗兰克・巴约尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从俾斯麦到希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山的那一边\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866\",\n    \"category\": \"德国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周易参同契（全本全注全译）\",\n    \"author\": \"章偉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866\",\n    \"category\": \"易学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅花易数\",\n    \"author\": \"邵康节/周浩良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009240-291b7b?p=8866\",\n    \"category\": \"易学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中11·宇宙之道，就在围棋\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866\",\n    \"category\": \"围棋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不得贪胜\",\n    \"author\": \"李昌镐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023190-b21759?p=8866\",\n    \"category\": \"围棋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周礼（全本全注全译）\",\n    \"author\": \"徐正英/常佩雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866\",\n    \"category\": \"礼学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖作品典藏书系全集（共31册）\",\n    \"author\": \"海明威/泰戈尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011121-5976eb?p=8866\",\n    \"category\": \"诺贝尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的午夜\",\n    \"author\": \"亚当・希金博特姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512130-738686?p=8866\",\n    \"category\": \"灾难\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝秦书：民国十八年饥馑\",\n    \"author\": \"张浩文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009609-b22205?p=8866\",\n    \"category\": \"灾难\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触：全球大型传染病探秘之旅\",\n    \"author\": \"大卫·奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866\",\n    \"category\": \"灾难\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光影里的梦幻与真实\",\n    \"author\": \"郑实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866\",\n    \"category\": \"影评\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何聊电影\",\n    \"author\": \"安・霍纳迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029709-5cea62?p=8866\",\n    \"category\": \"影评\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造和平：1919巴黎和会及其开启的战后世界\",\n    \"author\": \"玛格丽特・麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866\",\n    \"category\": \"巴黎和会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅者的初心\",\n    \"author\": \"铃木俊隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866\",\n    \"category\": \"禅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中9·禅的入门\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866\",\n    \"category\": \"禅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铃木大拙说禅\",\n    \"author\": \"铃木大拙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014136-19a5b6?p=8866\",\n    \"category\": \"禅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鱼解字\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511992-0df03b?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字的故事\",\n    \"author\": \"王铁钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050379-f02840?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澄衷蒙学堂字课图说（全8册）\",\n    \"author\": \"刘树屏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十六个汉字里的日本\",\n    \"author\": \"姜建强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031203-be379f?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字看我一生\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866\",\n    \"category\": \"汉字\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事经济学\",\n    \"author\": \"罗伯特・麦基/哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告争夺战\",\n    \"author\": \"肯・奥莱塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509673-5b5abf?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秒赞：文案女王20年创作技巧与心法\",\n    \"author\": \"林桂枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案功夫\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004422-027126?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微文案\",\n    \"author\": \"朱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华百万大奖赛案例集\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥格威谈广告\",\n    \"author\": \"杨名皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037881-a442a5?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告文案\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何把产品打造成有生命的品牌\",\n    \"author\": \"叶明桂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案一句话就够了\",\n    \"author\": \"川上徹也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抢占心智\",\n    \"author\": \"江南春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"计算广告\",\n    \"author\": \"刘鹏/王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖叫感\",\n    \"author\": \"马楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个广告人的自白\",\n    \"author\": \"大卫・奥格威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案圣经\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866\",\n    \"category\": \"广告\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期表\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866\",\n    \"category\": \"化学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠化学\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031512-ccaaad?p=8866\",\n    \"category\": \"化学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在此时此刻\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866\",\n    \"category\": \"佛法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话\",\n    \"author\": \"学诚法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866\",\n    \"category\": \"佛法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈外编辑\",\n    \"author\": \"都筑响一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493812-a4c0be?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本色气\",\n    \"author\": \"九鬼周造/阿部次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497631-758154?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国茶文化（彩图修订本）\",\n    \"author\": \"王玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497658-a4bba9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本侘寂\",\n    \"author\": \"大西克礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497877-b3524b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京都漫步\",\n    \"author\": \"骆仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498195-a77d50?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奈川冲浪外\",\n    \"author\": \"南希・K. 斯托克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498489-286596?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本美学三部曲\",\n    \"author\": \"大西克礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499377-dc0d28?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凤凰：神鸟传奇\",\n    \"author\": \"约瑟夫・尼格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499722-63b477?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本社会变迁研究套书（全4卷）\",\n    \"author\": \"中国日本史学会东北师范大学东亚研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501510-03fea8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色雅典娜：古典文明的亚非之根（套装全3卷共5册）\",\n    \"author\": \"马丁・贝尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"川菜\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼米之乡\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知道咖啡系列（套装共3册）\",\n    \"author\": \"斯图尔德・李・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508371-3eb8b9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明：文化、野心，以及人与自然的伟大博弈\",\n    \"author\": \"菲利普・费尔南多-阿梅斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508923-b0e527?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单（全本全注全译）\",\n    \"author\": \"陈伟明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶经 续茶经（全本全注全译）\",\n    \"author\": \"杜斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现阴阳道\",\n    \"author\": \"山下克明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509379-3c5bbd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜间的战斗\",\n    \"author\": \"卡洛・金茨堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509478-1024cd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新文化运动史料丛编\",\n    \"author\": \"孙郁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510201-42c727?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现日本：60处日本最美古建筑之旅\",\n    \"author\": \"矶达雄/宫泽洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510525-107c20?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个成语中的古代生活史\",\n    \"author\": \"许晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神好多的日本\",\n    \"author\": \"山口谣司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师经典：王力先生的古代文化通识课\",\n    \"author\": \"王力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512367-d2614c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法老的宝藏\",\n    \"author\": \"约翰・高德特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512496-f7d5bd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华雅文化经典系列（套装共8册）\",\n    \"author\": \"陈敬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513279-73b746?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少时读书\",\n    \"author\": \"废名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野味读书\",\n    \"author\": \"孙犁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾小吃全书\",\n    \"author\": \"焦桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重寻巨浪\",\n    \"author\": \"神山典士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513675-542c4a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不哀之歌\",\n    \"author\": \"曹利群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513687-619e62?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮笑肉也笑\",\n    \"author\": \"典婆婆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004533-f9dbd4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这是真的，我在一本书里读到过\",\n    \"author\": \"巴斯卡尔・博尼法斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会设计\",\n    \"author\": \"笕裕介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自在京都\",\n    \"author\": \"库索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003879-27a2e4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度5\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归故里\",\n    \"author\": \"迪迪埃・埃里蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002355-543671?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化失忆\",\n    \"author\": \"克莱夫・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002394-6a02b6?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对欲望，绝对奇异\",\n    \"author\": \"马克弟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002109-90cc9f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饱食穷民\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001761-d44b46?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读：十周年特辑\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜色的故事\",\n    \"author\": \"加文・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类善恶小史\",\n    \"author\": \"策妄・阿拉布坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000900-ed1aca?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娱乐何为\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000798-72f1c7?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的细节\",\n    \"author\": \"叶克飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000312-ad2cbf?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文化漫游\",\n    \"author\": \"鲁成文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家海明威的生活剪贴簿\",\n    \"author\": \"迈克尔・卡塔基斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000297-a3eb2e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挥云而去：十张画里看中国\",\n    \"author\": \"韩涧明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999820-7f8c31?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津艺术史系列（第一辑）\",\n    \"author\": \"罗宾・奥斯本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"残酷剧场\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997615-258e96?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎注评\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的镜子（全新修订版）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大故宫六百年风云史\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人史纲\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之门\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"床的人类史\",\n    \"author\": \"布莱恩・费根/纳迪亚・杜兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安身立命\",\n    \"author\": \"许纪霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分身：新日本论\",\n    \"author\": \"李永晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993670-c0a10d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东言西语\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈仓天心东方美学三书\",\n    \"author\": \"冈仓天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991678-e1d2d9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊花王朝\",\n    \"author\": \"胡炜权\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991672-1fcdce?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民疯狂的欧洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不只中国木建筑\",\n    \"author\": \"赵广超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文精神的伟大冒险\",\n    \"author\": \"菲利普·E.毕肖普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中11·宇宙之道，就在围棋\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华文明史（全四卷）\",\n    \"author\": \"袁行霈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日47：源氏物语，一本满足！\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990349-816027?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"业余者说\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日53：好吃不过拉面\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990262-052cee?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溯洄\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990220-e56d20?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颂·雅·风\",\n    \"author\": \"徐迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989755-ec3df0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅、凤梨与穿山甲\",\n    \"author\": \"克莱尔・科克-斯塔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989284-df491a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日42：枯山水\",\n    \"author\": \"茶乌龙主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988927-f3482b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个李白\",\n    \"author\": \"王充闾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人与中国人\",\n    \"author\": \"许烺光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界音乐汇\",\n    \"author\": \"西蒙・布劳顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学法兰西\",\n    \"author\": \"普利西拉・帕克赫斯特・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扪虱谈鬼录（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡的山药粥\",\n    \"author\": \"徐佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周礼（全本全注全译）\",\n    \"author\": \"徐正英/常佩雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港味道1\",\n    \"author\": \"欧阳应霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985993-0ff83e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港味道2\",\n    \"author\": \"欧阳应霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986050-b290ba?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第四辑）\",\n    \"author\": \"弗吉尼亚・伍尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政论 昌言（全本全注全译）\",\n    \"author\": \"孙启治译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音调未定的传统（增订本）\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985084-f06396?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"留白：秋水堂文化随笔\",\n    \"author\": \"田晓菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984928-62a884?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海摩登（修订版）\",\n    \"author\": \"李欧梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世恒河\",\n    \"author\": \"乔治・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呻吟语（全本全注全译）\",\n    \"author\": \"吕坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之书\",\n    \"author\": \"余世存\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983830-3559ad?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀母的文化\",\n    \"author\": \"孙隆基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983671-269fff?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本风俗小物\",\n    \"author\": \"中川政七商店\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983593-3192f5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让木乃伊跳舞（新版）\",\n    \"author\": \"托马斯・霍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原宿牛仔\",\n    \"author\": \"W. 大卫・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053643-0a120a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人的画像\",\n    \"author\": \"李长声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053013-a69c08?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威大战DC\",\n    \"author\": \"里德・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景观社会\",\n    \"author\": \"居伊・德波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印尼Etc\",\n    \"author\": \"伊丽莎白・皮萨尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050922-272408?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影冷知识\",\n    \"author\": \"许立衡/张凯淯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化的江山·第一辑（全4册）\",\n    \"author\": \"刘刚/李冬君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西域余闻\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年（全新增订版）\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的隐秘角落\",\n    \"author\": \"陆波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金家族的最后一个王爷\",\n    \"author\": \"朱文楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"装腔指南\",\n    \"author\": \"托马斯· W. 霍奇金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048573-ba74e7?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日48：世上只有一个京都！\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047793-e18e51?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋穀梁传（全本全注全译）\",\n    \"author\": \"徐正英/邹皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋大义\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴人\",\n    \"author\": \"罗伯特・戴维斯/贝丝・琳达史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京风格\",\n    \"author\": \"都筑响一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047016-279986?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媚骨之书\",\n    \"author\": \"蒋蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超纲冷知识\",\n    \"author\": \"吉姆・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论文化\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046062-20408c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"占卜师的预言\",\n    \"author\": \"蒂齐亚诺・泰尔扎尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国常识全集（套装共10册）\",\n    \"author\": \"吴晗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045489-a1fa67?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度4\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说吧，叙利亚\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年悖论\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045231-d7d6f7?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南腔北调：在语言中重新发现中国\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典里的中国（套装共十册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊人\",\n    \"author\": \"伊迪丝・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵者不祥\",\n    \"author\": \"刘鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"节日之书\",\n    \"author\": \"余世存/老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044508-103e4d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民发呆的澳洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们最幸福\",\n    \"author\": \"芭芭拉・德米克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建筑改变日本\",\n    \"author\": \"伊东丰雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代唯心论简释\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适四十自述（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆书籍史话\",\n    \"author\": \"大卫・皮尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学治要（套装共三册）\",\n    \"author\": \"张文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光棍危机\",\n    \"author\": \"瓦莱丽・M. 赫德森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042783-f1c3cb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式诱惑\",\n    \"author\": \"伊莱恩・西奥利诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕\",\n    \"author\": \"阿敏・马卢夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失忆的爱丽丝\",\n    \"author\": \"莉安・莫利亚提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042543-545e28?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042417-58fafd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澄衷蒙学堂字课图说（全8册）\",\n    \"author\": \"刘树屏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八股新论\",\n    \"author\": \"金克木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040908-f77a1a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·家具篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·杂项篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·陶瓷篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039768-92e788?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·玉器篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039759-8e7733?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的没落（译林人文精选）\",\n    \"author\": \"奥斯瓦尔德・斯宾格勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会说脏话？\",\n    \"author\": \"埃玛・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方文明史：延续不断的遗产（第五版）\",\n    \"author\": \"马克・凯什岚斯基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"絕望者之歌\",\n    \"author\": \"杰德・凡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的肚脐\",\n    \"author\": \"迈克尔・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南京传\",\n    \"author\": \"叶兆言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038607-9ea609?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星条旗下的茶叶蛋\",\n    \"author\": \"方柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消费社会\",\n    \"author\": \"让・鲍德里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都嘟合集（套装共2册）\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037935-733bef?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征途美国\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035796-7503bb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字的力量\",\n    \"author\": \"马丁・普克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李开周说宋史套装（全3册）\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷家书（经典版）\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：众人受到召唤\",\n    \"author\": \"生活月刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈之书\",\n    \"author\": \"曼纽尔・利马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下巴黎\",\n    \"author\": \"洛朗・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕的金桃\",\n    \"author\": \"薛爱华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米开朗琪罗与教皇的天花板\",\n    \"author\": \"罗斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说中国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古江河\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化的精神\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶的国度\",\n    \"author\": \"戎新宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033186-d7f53e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"壶里春秋\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性文化简史\",\n    \"author\": \"李书崇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032655-45f763?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学简史\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中日之间：误解与错位\",\n    \"author\": \"李长声/贾葭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032559-447387?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本的细节\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032355-8598e5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文具盒里的时空漫游\",\n    \"author\": \"詹姆斯・沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032310-afb48d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通识：学问的门类\",\n    \"author\": \"茂木健一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032028-db8b7e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本名词故事\",\n    \"author\": \"新井一二三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初见卢浮宫\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十六个汉字里的日本\",\n    \"author\": \"姜建强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031203-be379f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风味人间\",\n    \"author\": \"陈晓卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030402-372ed3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的历史：诸神的踪迹\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一阅千年\",\n    \"author\": \"马克・科尔兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊与刀（精装插图版）\",\n    \"author\": \"伊恩・布鲁马/鲁思・本尼迪克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030060-8634c8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与古为徒和娟娟发屋\",\n    \"author\": \"白谦慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030021-8772c8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字里中国\",\n    \"author\": \"张素凤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029691-7b218d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深思与省悟\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人情、面子与权力的再生产（修订版）\",\n    \"author\": \"翟学伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029310-bc9143?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想的境界：历史真实中的山水画\",\n    \"author\": \"王平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029052-8dfc3b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那时的先生\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028962-13aa23?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国历史中的文化诱惑\",\n    \"author\": \"沃尔夫・勒佩尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学\",\n    \"author\": \"杰弗里・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗奇谭\",\n    \"author\": \"盛文强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028122-374cfe?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡王朝：翱翔欧洲700年的双头鹰\",\n    \"author\": \"卫克安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅心直指\",\n    \"author\": \"澄海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027864-99937c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"竞争的艺术\",\n    \"author\": \"塞巴斯蒂安・斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027540-ee0502?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大观茶论\",\n    \"author\": \"日月洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027285-051ff1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京百年史：从江户到昭和\",\n    \"author\": \"爱德华・赛登施蒂克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027168-a2ebb9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四朝高僧传（全5册）\",\n    \"author\": \"慧皎/道宣/赞宁/如惺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027009-b8f825?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空帝国\",\n    \"author\": \"徐刚/王燕平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027096-381168?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪的合众国\",\n    \"author\": \"帕梅拉・哈格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026259-12b415?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宴与家宴\",\n    \"author\": \"王宣一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街角的老北京\",\n    \"author\": \"卢文龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日28：和制汉语\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025533-3bbc70?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日05：猫\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025503-b1233d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日11：犬\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025488-384b95?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日20：燃\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025470-5edfce?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日09：森女\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025473-7a5674?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日12：断舍离\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025443-003ec0?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日13：暴走\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025458-0c2c9e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日14：家宅\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025449-ebed98?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日06：铁道\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025431-1b9519?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日16：写真\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025425-cad07f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日22：向日本人学礼仪\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025404-566e2f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日25：手帐最高\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025383-82a719?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日08：妖怪\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025377-a89ac1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日18：设计力\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025413-980d01?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣的现象学\",\n    \"author\": \"鹫田清一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025359-4d71c5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日31：我们在喫茶店见吧\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025347-18317c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日29：偶像\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025353-47b33b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日30：怪谈\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025323-55c821?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日26：机甲\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025326-ff55a1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中1·山水\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025278-3cb446?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中4·民谣啊民谣\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025260-f23d1e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中5·竹林七贤\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中6·一本读懂！山海经\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025233-398c4e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中7·幸会！苏东坡\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中8·了不起的宋版书\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025230-9eef33?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中10·以侠之名\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025200-8de2ab?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中12·洋人\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025209-e89b77?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中14·中国茶的基本\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中15·再认识丰子恺\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025182-3c8f73?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中16·西南联大的遗产\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日17：了不起的推理\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025146-e84104?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的智人\",\n    \"author\": \"河森堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的意识\",\n    \"author\": \"约翰・巴奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集续编\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的儒家\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见日本\",\n    \"author\": \"徐静波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024732-43de40?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的哲学密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说敦煌二五四窟\",\n    \"author\": \"陈海涛/陈琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾想（套装共2册）\",\n    \"author\": \"贾樟柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024177-5dc26f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈飞文化手册\",\n    \"author\": \"帕蒂・麦考德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西之道\",\n    \"author\": \"汉斯・格奥尔格・梅勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何想到又做到\",\n    \"author\": \"肖恩・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做出正确决定\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"于丹：重温最美古诗词\",\n    \"author\": \"于丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023889-0d327d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匠人\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023748-9674dd?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术馆里聊怪咖\",\n    \"author\": \"山田五郎/古山淳子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023745-138eaa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡征服世界\",\n    \"author\": \"安德鲁・劳勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山河小岁月\",\n    \"author\": \"李舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023418-3eafb8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔比恩的种子\",\n    \"author\": \"大卫・哈克特・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝话\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽然七日\",\n    \"author\": \"劳伦・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023253-db0f49?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街头巷尾\",\n    \"author\": \"领读文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023154-daa1de?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Jerusalem\",\n    \"author\": \"Simon Sebag Montefiore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023058-302eaa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐的极境\",\n    \"author\": \"爱德华·W.萨义德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022965-9d1e5c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的浏阳兄弟\",\n    \"author\": \"索文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第一集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022830-3ddcad?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品人录\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读城记\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022617-f7baf2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的男人和女人\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022629-7a5047?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲话中国人\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022614-e2ccf9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格调（修订第3版）\",\n    \"author\": \"保罗・福塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022470-f9a015?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日10：日本禅\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022464-0f5288?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日19：料理之魂\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022488-fcb817?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品读中国（套装共6册）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学起步\",\n    \"author\": \"邓晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022341-909e43?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之都\",\n    \"author\": \"拉纳・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁道之旅\",\n    \"author\": \"沃尔夫冈・希弗尔布施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列奥纳多·达·芬奇传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娱乐至死\",\n    \"author\": \"尼尔・波兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021261-711d62?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私想鲁迅\",\n    \"author\": \"刘春杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶席窥美\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021102-dfafb9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑微的套套\",\n    \"author\": \"安妮・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021051-972816?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国国民性演变历程\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020961-2b4f8d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑麋鹿如是说 ：生命与自然之诗\",\n    \"author\": \"尼古拉斯・黑麋鹿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020922-d80161?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本第一\",\n    \"author\": \"傅高义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020649-5d71fa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Illuminations\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020604-dce4aa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷信与暴力\",\n    \"author\": \"亨利・查尔斯・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020472-3eaa48?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现玛雅\",\n    \"author\": \"约翰・劳埃德・斯蒂芬斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020442-bd32ca?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本之镜：日本文化中的英雄与恶人\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020247-59edee?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知觉之门\",\n    \"author\": \"阿道斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019935-31f55b?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度，漂浮的次大陆\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆窜行记\",\n    \"author\": \"顺手牵猴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019548-8a4e08?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至味在人间\",\n    \"author\": \"陈晓卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019104-e77006?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹梵高博物馆\",\n    \"author\": \"保拉・拉佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018915-b0ed02?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏在地理中的历史学（共3册）\",\n    \"author\": \"林肯・佩恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018519-e91091?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌鸦之城：伦敦，伦敦塔与乌鸦的故事\",\n    \"author\": \"博里亚・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸年轮：民国以来百年中国私人读本\",\n    \"author\": \"张冠生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017922-775184?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以客户为中心\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度2\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017880-5bd0da?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明之光（全三册）\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017397-aefe13?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类智慧小史\",\n    \"author\": \"特雷弗・科诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017340-a7f51c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些难忘的声音\",\n    \"author\": \"张稼峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017289-27536c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国缺什么，日本缺什么\",\n    \"author\": \"近藤大介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017190-d077f5?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从黎明到衰落（上下册）\",\n    \"author\": \"雅克・巴尔赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代艺术150年\",\n    \"author\": \"威尔・贡培兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论摄影（插图珍藏本）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛊惑世界的力量：可卡因传奇\",\n    \"author\": \"多米尼克・斯特里特费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015042-67c9a9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014925-4b543e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书指南（国学经典精校版）\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014856-7dd474?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一把盐下饭菜\",\n    \"author\": \"左壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014430-7b97d6?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃的美德：餐桌上的哲学思考\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013992-1e7670?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本（套装共3册）\",\n    \"author\": \"黄亚南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013320-488041?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国式管理行为\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012855-72e7bc?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习\",\n    \"author\": \"本尼迪克特・凯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊与刀（增订版）\",\n    \"author\": \"鲁思・本尼迪克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012096-e918e2?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录\",\n    \"author\": \"孟元老\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是台湾，这才是台湾\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011721-b791c3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化简史（套装共4册）\",\n    \"author\": \"王立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私人生活的变革\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，改变一生的旅行\",\n    \"author\": \"尼玛达娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈克尔·波伦“饮食觉醒”系列（套装共3册）\",\n    \"author\": \"迈克尔・波伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草原帝国（全译插图本）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲常识\",\n    \"author\": \"吕夏乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的精神\",\n    \"author\": \"辜鸿铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生取义\",\n    \"author\": \"吴飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趣味生活简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千面英雄\",\n    \"author\": \"约瑟夫・坎贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画精品集（修订版）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华传统文化大百科套装50册\",\n    \"author\": \"刘心莲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008472-a35cc3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变美国的时刻\",\n    \"author\": \"刘戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布大交换\",\n    \"author\": \"艾尔弗雷德・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫的风花雪月\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好色的哈姆雷特\",\n    \"author\": \"小白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫修文物\",\n    \"author\": \"萧寒/绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被劫持的私生活\",\n    \"author\": \"肉唐僧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008037-46dd88?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北大授课：中华文化四十七讲\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007980-4d8887?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾五百年\",\n    \"author\": \"戴维・考特莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意大利黑手党的历史\",\n    \"author\": \"约翰・迪基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007902-b4007c?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血酬定律：中国历史中的生存游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学观止（上下册）\",\n    \"author\": \"贺兰特・凯查杜里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学五章\",\n    \"author\": \"江晓原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得读完的书\",\n    \"author\": \"聂震宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈：日本动漫中的传统妖怪\",\n    \"author\": \"周英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在汉朝不容易\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南渡北归（增订版）套装\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教科书里没有的历史细节\",\n    \"author\": \"王国华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人的故事：寻找失落的字符\",\n    \"author\": \"西门·沙马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米，面，鱼\",\n    \"author\": \"马特・古尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006654-03c347?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人与中国人\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006471-f2b909?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学、数术与政治\",\n    \"author\": \"陈侃理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006072-66be1f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉讲中国历史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005865-39afd4?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的空白处\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年之痒\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简欧洲史\",\n    \"author\": \"约翰・赫斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的残渣\",\n    \"author\": \"冯峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866\",\n    \"category\": \"文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重读甲午：中日国运大对决\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012939-c8481b?p=8866\",\n    \"category\": \"甲午战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我知道光在哪里\",\n    \"author\": \"安东尼・雷・辛顿/劳拉・洛夫・哈丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509493-31e3e9?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉多纳自传\",\n    \"author\": \"迭戈・阿曼多・马拉多纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999238-9530a8?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大梦无疆\",\n    \"author\": \"西蒙・佩雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"启与魅\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994519-34f572?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前半生（全本）\",\n    \"author\": \"爱新觉罗・溥仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适四十自述（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗3：童年岛屿\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040794-82ba8e?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Becoming\",\n    \"author\": \"Michelle Obama\",\n    \"link\": \"链接未找到\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"I Am, I Am, I Am\",\n    \"author\": \"Maggie O'Farrell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034404-5f9292?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生有罪\",\n    \"author\": \"特雷弗・诺亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不放弃\",\n    \"author\": \"唐纳德・特朗普/梅瑞迪斯・麦基沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我生有涯愿无尽\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020394-9d305d?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着为了讲述\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016920-233354?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林自传\",\n    \"author\": \"富兰克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014847-bd9379?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"28岁赚千万\",\n    \"author\": \"穷富弹指间\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨迹：留在生命和记忆中\",\n    \"author\": \"曾子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866\",\n    \"category\": \"自传\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭火：美国金融危机及其教训\",\n    \"author\": \"本・伯南克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866\",\n    \"category\": \"危机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的心迟到了：佩索阿情诗\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493809-0d4478?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我将宇宙随身携带：佩索阿诗集\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493875-8ebc30?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月球家族三部曲\",\n    \"author\": \"伊恩・麦克唐纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497508-09b5df?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋元笔记小说大观（全35册）\",\n    \"author\": \"王应麟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（全三册）\",\n    \"author\": \"但丁・阿利格耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本短诗套装（共5册）\",\n    \"author\": \"松尾芭蕉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500349-0632a1?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的经典诗歌译丛1（套装共4册）\",\n    \"author\": \"戴维・赫伯特・劳伦斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500385-56b9bc?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的经典诗歌译丛2（套装共4册）\",\n    \"author\": \"露易丝・格丽克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500388-f84a0c?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫诗选（外国文学名著丛书）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡赋格：保罗·策兰诗精选\",\n    \"author\": \"保罗・策兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510972-2fc82c?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人与诗歌\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512106-566b82?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别去读诗\",\n    \"author\": \"斯蒂芬妮・伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512253-297890?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国作家朱自清作品典藏全集（套装共十六册）\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513285-ea02d5?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之殿\",\n    \"author\": \"但丁・罗塞蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004035-0d555d?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人音乐\",\n    \"author\": \"莱昂纳德・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003981-ba89b3?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗的引诱（大家读大家）\",\n    \"author\": \"宇文所安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003492-0ca141?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集\",\n    \"author\": \"赵崇祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003321-4f2249?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心有猛虎，细嗅蔷薇（果麦经典）\",\n    \"author\": \"西格夫里・萨松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗歌手册：诗歌阅读与创作指南\",\n    \"author\": \"玛丽・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002031-f4b308?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大山里的小诗人\",\n    \"author\": \"“是光”的孩子们\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001554-8c8cf0?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火焰\",\n    \"author\": \"莱昂纳德・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000321-1f47fc?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的焦虑是一束火花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999841-6b89b0?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桂花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗选注\",\n    \"author\": \"葛兆光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不三\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988819-9f6970?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗圣杜甫\",\n    \"author\": \"吕正惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986797-203237?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡的山药粥\",\n    \"author\": \"徐佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文诗集\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏与西伯利亚\",\n    \"author\": \"倪湛舸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠悠我心\",\n    \"author\": \"史杰鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人十四个\",\n    \"author\": \"黄晓丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052656-80a0a8?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（国学典藏）\",\n    \"author\": \"洪兴祖 补注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗排行榜\",\n    \"author\": \"王兆鹏/邵大为/张静/唐元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱啊美啊人生啊\",\n    \"author\": \"石川啄木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047964-020a7a?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛波斯卡诗选三部曲\",\n    \"author\": \"维斯拉瓦・辛波斯卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045282-d2f37d?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲古诗十九首\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044709-330c0b?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致后代\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"覆舟的愉悦\",\n    \"author\": \"朱塞培・翁加雷蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花与恶心\",\n    \"author\": \"卡洛斯・德鲁蒙德・德・安德拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽尔（果麦经典）\",\n    \"author\": \"西尔维娅・普拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我将敢于亲吻你\",\n    \"author\": \"阿方斯娜・斯托尔妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043794-7c46f5?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风景中的少年\",\n    \"author\": \"胡戈・冯・霍夫曼斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043686-99ceaf?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希尼三十年文选\",\n    \"author\": \"谢默斯・希尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特文集（全5卷）\",\n    \"author\": \"托・斯・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040791-73a240?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窥豹录\",\n    \"author\": \"胡亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035628-c24e75?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔诗选（名著名译丛书）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035529-81da8d?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象：劳伦斯诗集\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Goblin Market\",\n    \"author\": \"Rossetti, Christina; Rackham, Arthur;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我用古典的方式爱过你\",\n    \"author\": \"艾米莉・狄金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033786-700cbe?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧阳修词集（词系列）\",\n    \"author\": \"欧阳修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我愿意是急流\",\n    \"author\": \"裴多菲・山陀尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033246-a24a75?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第二辑（套装共12册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白雨斋词话（词系列）\",\n    \"author\": \"陈廷焯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十首情诗和一支绝望的歌\",\n    \"author\": \"巴勃罗・聂鲁达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词鉴赏辞典\",\n    \"author\": \"唐圭璋/钟振振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的歌\",\n    \"author\": \"余光中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032004-ffb2cf?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词里的趣事套装（全4册）\",\n    \"author\": \"王月亮/黄震/黄秀春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物归一\",\n    \"author\": \"君特・格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030096-2f337a?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桑德堡诗选\",\n    \"author\": \"卡尔・桑德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029511-e8bfc2?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金性尧选唐宋诗新注\",\n    \"author\": \"金性尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028893-8fd3a1?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是一百只眼睛的水面\",\n    \"author\": \"加布列拉・米斯特拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027525-6abbc5?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨牧诗选（1956-2013）\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026265-7f9451?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩画集（译文经典）\",\n    \"author\": \"兰波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024798-46febb?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子们的诗\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017097-fec3aa?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李太白全集\",\n    \"author\": \"李白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（译文名著精选）\",\n    \"author\": \"但丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005313-5d3225?p=8866\",\n    \"category\": \"诗歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯吉斯野外生存系列（套装四册）\",\n    \"author\": \"桑顿・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866\",\n    \"category\": \"读物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有条喷火龙（第一辑）\",\n    \"author\": \"凯特・麦克马伦/比尔・巴索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866\",\n    \"category\": \"读物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏洛书屋电子书大套装（套装共27本）\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015618-ef6dd5?p=8866\",\n    \"category\": \"读物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（读客经典）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028821-f3f217?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（读客经典）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航3\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027561-bda2a4?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督山伯爵（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰小说精选（读客经典）\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河铁道之夜（读客经典）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022767-1f1a92?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶花女（读客经典）\",\n    \"author\": \"小仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022494-778de5?p=8866\",\n    \"category\": \"读客\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏见\",\n    \"author\": \"珍妮弗・埃伯哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510933-ef0322?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿透：像社会学家一样思考\",\n    \"author\": \"严飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002463-b7f860?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有思想的世界\",\n    \"author\": \"富兰克林・福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的当下与未来\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧变\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（理想国新版）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988420-f2ca45?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控分寸\",\n    \"author\": \"珍妮・米勒/维多利亚・兰伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相与错觉\",\n    \"author\": \"塔莎・欧里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲世纪\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学原来很有趣\",\n    \"author\": \"刘帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052497-71e6ec?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使（见识丛书）\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖先的故事\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"议程\",\n    \"author\": \"埃里克・维亚尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039354-676672?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三千年来谁铸币\",\n    \"author\": \"王永生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个观点，不一定对\",\n    \"author\": \"黄章晋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱暗流\",\n    \"author\": \"简・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪勒索\",\n    \"author\": \"朱迪斯·P·西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021009-58665a?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现玛雅\",\n    \"author\": \"约翰・劳埃德・斯蒂芬斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020442-bd32ca?p=8866\",\n    \"category\": \"社科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的巴黎\",\n    \"author\": \"乔乔・莫伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050619-04e97f?p=8866\",\n    \"category\": \"巴黎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎美人\",\n    \"author\": \"珍妮・达玛斯/劳伦・巴斯蒂德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866\",\n    \"category\": \"巴黎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人在巴黎\",\n    \"author\": \"大卫・麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015738-b4c6cb?p=8866\",\n    \"category\": \"巴黎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不设限（中英双语版）\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866\",\n    \"category\": \"双语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐数学\",\n    \"author\": \"本・奥尔林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509988-85b379?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠扬的素数\",\n    \"author\": \"马库斯・杜・索托伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510315-8d1e4a?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉数学书\",\n    \"author\": \"杰森・威尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510984-d5459b?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑的力量\",\n    \"author\": \"郑乐隽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000540-cc1401?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学好数学并不难（套装共2册）\",\n    \"author\": \"孙亮朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990406-b55265?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学本来很简单\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学不简单\",\n    \"author\": \"吴悦辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985834-983ed5?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字起源\",\n    \"author\": \"凯莱布・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷小\",\n    \"author\": \"阿米尔・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的逻辑题\",\n    \"author\": \"亚历克斯・贝洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（果麦经典）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（果麦版）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简算法史\",\n    \"author\": \"吕克・德・布拉班迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简数学\",\n    \"author\": \"克里斯・韦林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036807-4542b9?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列（套装共7册）\",\n    \"author\": \"梅拉妮・米歇尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷茫的旅行商\",\n    \"author\": \"William J. Cook\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035454-7affdc?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10堂极简概率课\",\n    \"author\": \"佩尔西・戴康尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个逻辑学家去酒吧\",\n    \"author\": \"霍格尔・丹贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032730-cc30a1?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（完整精修珍藏译本）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的数字零\",\n    \"author\": \"查尔斯・塞弗\",\n    \"link\": \"链接未找到\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"码书：编码与解码的战争\",\n    \"author\": \"西蒙・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027210-1192ec?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统计学关我什么事\",\n    \"author\": \"小岛宽之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎曼猜想漫谈\",\n    \"author\": \"卢昌海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022899-88af93?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Princeton Companion to Mathematics\",\n    \"author\": \"Gowers, Timothy\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021243-933c06?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学简史\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021195-ee63f5?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学现场：另类世界史\",\n    \"author\": \"王雁斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019836-4f4794?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌神数学家\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费马大定理：一个困惑了世间智者358年的谜\",\n    \"author\": \"西蒙・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014706-602d01?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞大开的微积分\",\n    \"author\": \"刘祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013872-96990e?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度量：一首献给数学的情歌\",\n    \"author\": \"保罗・洛克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013179-ed1db5?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与数学\",\n    \"author\": \"爱德华・弗伦克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012663-712e79?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的乐趣：Matrix67数学笔记\",\n    \"author\": \"顾森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学沉思录\",\n    \"author\": \"Mario Livio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010926-6eb53d?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（全译插图本）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010761-329742?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学女孩\",\n    \"author\": \"结城浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010338-f745a3?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学女孩2：费马大定理\",\n    \"author\": \"结城浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010332-f2891c?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数理化通俗演义\",\n    \"author\": \"梁衡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008178-f506c2?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧几里得之窗\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006591-0ff2c9?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学那些事儿\",\n    \"author\": \"William Dunham\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866\",\n    \"category\": \"数学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于火星的一切\",\n    \"author\": \"李德范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的地外生命\",\n    \"author\": \"刘易斯・达特奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492573-a93ad2?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的奥秘\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497319-411984?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空居民\",\n    \"author\": \"克里斯托弗・万杰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宇宙大爆炸\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果宇宙可以伸缩\",\n    \"author\": \"凯莱布・沙夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508368-cf05f3?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的怪物\",\n    \"author\": \"克里斯・伊姆佩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508134-74bc4c?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的起源\",\n    \"author\": \"约翰・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508191-ec962a?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的结构\",\n    \"author\": \"斯蒂芬・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极观星指南\",\n    \"author\": \"鲍勃・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们身处的宇宙究竟有多古怪？\",\n    \"author\": \"伊拉・马克・爱格多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的最后三分钟\",\n    \"author\": \"保罗・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC夜空探索系列（套装全8册）\",\n    \"author\": \"BBC仰望夜空杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解宇宙的尺度\",\n    \"author\": \"金伯莉・阿坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512424-f9a069?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的未完成交响曲\",\n    \"author\": \"玛西亚・芭楚莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多云的宇宙\",\n    \"author\": \"小谷太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987340-afdf8f?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未解的宇宙\",\n    \"author\": \"汪诘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985645-e44e5a?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大图景\",\n    \"author\": \"肖恩・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"140亿年宇宙演化全史\",\n    \"author\": \"尼尔・德格拉斯・泰森/唐纳德・戈德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽之问\",\n    \"author\": \"弗兰克・维尔切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物起源\",\n    \"author\": \"格雷厄姆・劳顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空故事\",\n    \"author\": \"苏珊娜・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简天文学\",\n    \"author\": \"科林・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从一粒尘埃开始\",\n    \"author\": \"布莱恩・考克斯/杰夫・福修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叩响天堂之门\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弯曲的旅行\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022818-41a87e?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·宇宙系列（套装共6册）\",\n    \"author\": \"史蒂芬・霍金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022812-304b75?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空全书\",\n    \"author\": \"詹姆斯・特赖菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙：从起源到未来\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010935-644bd6?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越平行宇宙\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简宇宙史\",\n    \"author\": \"克里斯托弗・加尔法德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙简史：起源与归宿\",\n    \"author\": \"斯蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群星都是你们的世界\",\n    \"author\": \"乔恩・威利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006396-8de5aa?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给忙碌者的天体物理学\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866\",\n    \"category\": \"宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖10：早餐，真的太重要了\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866\",\n    \"category\": \"早餐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，西藏！\",\n    \"author\": \"卡布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496611-f0aac2?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌金的牙齿\",\n    \"author\": \"万玛才旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048714-87e33e?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏传佛教极简史\",\n    \"author\": \"德昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，不止旅行\",\n    \"author\": \"周硚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘埃落定（十五周年纪念版）\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026241-e45527?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站，西藏\",\n    \"author\": \"山小\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈底斯遗书\",\n    \"author\": \"陈庆港\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011769-d9d5d5?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，改变一生的旅行\",\n    \"author\": \"尼玛达娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏生死书\",\n    \"author\": \"索甲仁波切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艽野尘梦\",\n    \"author\": \"陈渠珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地密码（珍藏版大全集）\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866\",\n    \"category\": \"西藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为可怕的自律人\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499233-71cb99?p=8866\",\n    \"category\": \"自律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健身笔记\",\n    \"author\": \"叔贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866\",\n    \"category\": \"自律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本减肥书\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866\",\n    \"category\": \"减脂\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去你的脂肪\",\n    \"author\": \"格兰特・斯科菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866\",\n    \"category\": \"减脂\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练减脂圣经\",\n    \"author\": \"尼克・特米勒罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033306-9ad46f?p=8866\",\n    \"category\": \"减脂\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能减脂\",\n    \"author\": \"张景琦/孟令超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866\",\n    \"category\": \"减脂\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三叉戟\",\n    \"author\": \"吕铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986530-0dddac?p=8866\",\n    \"category\": \"罪案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行实录\",\n    \"author\": \"徐浪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052968-eec90d?p=8866\",\n    \"category\": \"罪案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪6\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866\",\n    \"category\": \"罪案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五个目标\",\n    \"author\": \"白雾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037845-992b8d?p=8866\",\n    \"category\": \"罪案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始玩转抖音\",\n    \"author\": \"黑马唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051885-f479db?p=8866\",\n    \"category\": \"抖音\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新引爆点：抖音运营从0到1实战指南\",\n    \"author\": \"头条易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034614-ada148?p=8866\",\n    \"category\": \"抖音\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗：意志征服世界\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866\",\n    \"category\": \"成吉思汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国清流那些大师们（全四册）\",\n    \"author\": \"汪兆骞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010944-bdb64a?p=8866\",\n    \"category\": \"大师\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐页书城三部曲\",\n    \"author\": \"凯・迈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866\",\n    \"category\": \"理想国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"6点27分的朗读者\",\n    \"author\": \"让-保尔・迪迪耶洛朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033048-452f4a?p=8866\",\n    \"category\": \"理想国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治天皇：1852-1912\",\n    \"author\": \"唐纳德・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021156-b23e9c?p=8866\",\n    \"category\": \"理想国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Python爬虫框架Scrapy\",\n    \"author\": \"迪米特里奥斯 考奇斯-劳卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用Python写网络爬虫（第2版）\",\n    \"author\": \"Katharine Jarmul\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Scrapy网络爬虫\",\n    \"author\": \"刘硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019203-cea982?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python爬虫开发与项目实战\",\n    \"author\": \"范传辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018354-f08e57?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python网络数据采集\",\n    \"author\": \"Ryan Mitchell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866\",\n    \"category\": \"爬虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要钱还是要生活\",\n    \"author\": \"维姬・罗宾/乔・多明格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493644-fd98ee?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为战略财务讲义\",\n    \"author\": \"何绍茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509100-205637?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"账簿与权力\",\n    \"author\": \"雅各布・索尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004521-f2651d?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报就像一本兵法书\",\n    \"author\": \"刘顺仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可撼动的财务自由\",\n    \"author\": \"托尼・罗宾斯/彼得・默劳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让财报说话\",\n    \"author\": \"郑永强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务诡计\",\n    \"author\": \"霍华德·M.施利特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂财报\",\n    \"author\": \"肖星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售进阶指南（套装共5册）\",\n    \"author\": \"埃尔默・惠勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最简单的会计书\",\n    \"author\": \"达雷尔・穆利斯/朱迪斯・奥洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027939-522929?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Money Master the Game\",\n    \"author\": \"Tony Robbins\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026346-d7e225?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理者14天看懂财务报表\",\n    \"author\": \"闫静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021048-ccb824?p=8866\",\n    \"category\": \"财务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔学述\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044370-525bea?p=8866\",\n    \"category\": \"黑格尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔哲学讲演集\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043905-0f7e12?p=8866\",\n    \"category\": \"黑格尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去他的巴西\",\n    \"author\": \"胡续冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866\",\n    \"category\": \"巴西\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无边的土地\",\n    \"author\": \"若热・亚马多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022407-bb2b7c?p=8866\",\n    \"category\": \"巴西\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"味似丁香、色如肉桂的加布里埃拉\",\n    \"author\": \"若热・亚马多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016035-85d4b9?p=8866\",\n    \"category\": \"巴西\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"党员、党权与党争\",\n    \"author\": \"王奇生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866\",\n    \"category\": \"国民党\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国民党高层的派系政治（修订本）\",\n    \"author\": \"金以林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866\",\n    \"category\": \"国民党\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲骨文有故事\",\n    \"author\": \"许进雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512556-901413?p=8866\",\n    \"category\": \"甲骨文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谜一样的清明上河图（精致版）\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035433-9e1141?p=8866\",\n    \"category\": \"甲骨文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情的革命\",\n    \"author\": \"乔伊斯・阿普尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866\",\n    \"category\": \"甲骨文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午两甲子：忆与思\",\n    \"author\": \"姜鸣/贾葭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866\",\n    \"category\": \"甲骨文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学经典课程分享（套装9册）\",\n    \"author\": \"哈佛大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866\",\n    \"category\": \"课程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统整的力量\",\n    \"author\": \"陈怡倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038664-3ab357?p=8866\",\n    \"category\": \"课程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪与玫瑰的使用方法\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023379-ac0f90?p=8866\",\n    \"category\": \"果壳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谣言粉碎机系列（套装共3册）\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866\",\n    \"category\": \"果壳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知道咖啡系列（套装共3册）\",\n    \"author\": \"斯图尔德・李・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508371-3eb8b9?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左手咖啡，右手世界\",\n    \"author\": \"马克・彭德格拉斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512196-0468bd?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡新零售\",\n    \"author\": \"场景实验室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰的咖啡馆\",\n    \"author\": \"佐拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡 咖啡\",\n    \"author\": \"齐鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015963-7019a0?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界咖啡学\",\n    \"author\": \"韩怀宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015366-f832b2?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡咖啡处处开\",\n    \"author\": \"杰里米・托茨/史蒂文・马卡东尼亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015165-adf5d0?p=8866\",\n    \"category\": \"咖啡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩全集（12册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050778-80555d?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的经济课\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨人的成圣之道：曾国藩\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩：又笨又慢平天下\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006087-c38b42?p=8866\",\n    \"category\": \"曾国藩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值：难点、解决方案及相关案例（原书第3版）\",\n    \"author\": \"阿斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866\",\n    \"category\": \"估值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事与估值\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866\",\n    \"category\": \"估值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会估值，轻松投资\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866\",\n    \"category\": \"估值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿育王\",\n    \"author\": \"文森特・阿瑟・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996580-36df48?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度文明史\",\n    \"author\": \"常磐大定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995485-394351?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孟买：欲望丛林\",\n    \"author\": \"苏科图・梅塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991444-36c1f2?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世恒河\",\n    \"author\": \"乔治・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫卧儿帝国\",\n    \"author\": \"H.G.基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053571-9577f0?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犍陀罗文明史\",\n    \"author\": \"孙英刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045543-bc6145?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇位之争\",\n    \"author\": \"贾杜纳斯・萨卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043626-79ec52?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽暗国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：受伤的文明\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038451-62394a?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：百万叛变的今天\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季风帝国\",\n    \"author\": \"理查德・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度佛教史\",\n    \"author\": \"平川彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的印度通史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023724-9ae83b?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Association of Small Bombs\",\n    \"author\": \"Mahajan Karan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023568-86906f?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之都\",\n    \"author\": \"拉纳・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度，漂浮的次大陆\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西天到中土\",\n    \"author\": \"西天中土项目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甘地自传\",\n    \"author\": \"甘地\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008160-0e39e0?p=8866\",\n    \"category\": \"印度\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推开红酒的门\",\n    \"author\": \"王胜寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502554-c90c21?p=8866\",\n    \"category\": \"葡萄酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把这瓶开了！\",\n    \"author\": \"玛德琳・帕克特/贾斯汀琳・海默克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866\",\n    \"category\": \"葡萄酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬功夫：助你精进的八大硬核技能\",\n    \"author\": \"崔诚靓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866\",\n    \"category\": \"心智\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变提问，改变人生（原书第3版）\",\n    \"author\": \"梅若李・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866\",\n    \"category\": \"心智\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化自我\",\n    \"author\": \"吉娜・聂夫/唐恩・娜芙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零起点Python大数据与量化交易\",\n    \"author\": \"何海群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小散逆袭：手把手教你做量化定投\",\n    \"author\": \"万磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益融合战法\",\n    \"author\": \"约翰・帕利卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜一切市场的人\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化投资策略\",\n    \"author\": \"理查德・托托里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读量化投资\",\n    \"author\": \"忻海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开量化投资的黑箱（原书第2版）\",\n    \"author\": \"里什・纳兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866\",\n    \"category\": \"量化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潮来潮去：海关与中国现代性的全球起源\",\n    \"author\": \"方德万\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866\",\n    \"category\": \"海关\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子夜（果麦经典）\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000102-ac0b0d?p=8866\",\n    \"category\": \"矛盾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人世间（全三册）\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038496-ed84a7?p=8866\",\n    \"category\": \"矛盾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然万物科普百科（套装共2册）\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866\",\n    \"category\": \"大自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命前夕的图书世界\",\n    \"author\": \"罗伯特・达恩顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498648-a7b92b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎陷落\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499338-db0284?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命史译丛（套装共六册）\",\n    \"author\": \"哈里・狄金森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506574-7351e2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西双皇后\",\n    \"author\": \"南希・戈德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与革命心理学\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为公民\",\n    \"author\": \"皮埃尔・罗桑瓦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511836-25cf44?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命和拿破仑\",\n    \"author\": \"林恩・亨特/杰克・R. 森瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512043-6f670b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨果文集（全12册）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513198-97bfd1?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西世界史\",\n    \"author\": \"帕特里克・布琼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513288-07aed4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弥补\",\n    \"author\": \"科隆布・施内克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002862-a99b5a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯卡与玫瑰奶奶\",\n    \"author\": \"埃里克-埃马纽埃尔·施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002568-5d28cc?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论爱美\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的爱\",\n    \"author\": \"埃里克-埃马纽埃尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002421-00aa03?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·德·莱斯案\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平静的风暴\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001590-272377?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不正经的卢浮宫\",\n    \"author\": \"西塞尔・巴隆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国文学经典译丛（共6本）\",\n    \"author\": \"乔治・桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997660-f91dd1?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与法兰西第一帝国\",\n    \"author\": \"威廉・奥康纳・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996736-b9c328?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红项圈\",\n    \"author\": \"让-克利斯托夫·吕芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996508-05afae?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地心游记（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色睡莲\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994783-a62041?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史性的体制\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰上斯芬克斯\",\n    \"author\": \"儒尔・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰传\",\n    \"author\": \"安德烈・莫洛亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫三部曲\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990385-be527b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可怕的孩子\",\n    \"author\": \"让・谷克多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990043-5f0e5f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个来自远方的故事（短经典）\",\n    \"author\": \"让-克利斯托夫・吕芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990028-c5cf11?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯科塔的太阳\",\n    \"author\": \"洛朗・戈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989932-49b7ce?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字传奇\",\n    \"author\": \"袁筱一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989881-f84d16?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜小说集（套装共4册）\",\n    \"author\": \"居斯塔夫・福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989761-e1636e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学法兰西\",\n    \"author\": \"普利西拉・帕克赫斯特・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与戛纳\",\n    \"author\": \"蒂耶里・福茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要塞（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985693-c622f6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的大地（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子（成为小王子系列）\",\n    \"author\": \"小王子（成为小王子系列）\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985462-e42ce2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活的隐喻（二十世纪西方哲学经典）\",\n    \"author\": \"保罗・利科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985294-b76e94?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方邮航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985288-11c68c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空军飞行员（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹病房\",\n    \"author\": \"朱利安・桑德勒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983974-3ed4fc?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德里达（牛津通识读本）\",\n    \"author\": \"西蒙・格伦迪宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的幽灵：文学与常识\",\n    \"author\": \"安托万・孔帕尼翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052251-1b4968?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空之蓝\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052230-fa9975?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗丹艺术论\",\n    \"author\": \"奥古斯特・罗丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052005-e1851b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙田全集（套装共4册）\",\n    \"author\": \"蒙田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051849-bb912e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群氓的狂欢\",\n    \"author\": \"塞奇・莫斯科维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能性\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火光之色\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051579-ec6e6c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗盘\",\n    \"author\": \"马蒂亚斯・埃纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051156-4846ed?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪念天使协奏曲\",\n    \"author\": \"埃里克-埃马纽埃尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050433-94333a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《荒岛》及其他文本\",\n    \"author\": \"吉尔・德勒兹/大卫・拉普雅德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"导体\",\n    \"author\": \"克洛德・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049389-41abeb?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枫丹白露宫\",\n    \"author\": \"蒂埃里・萨尔芒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴尔特文集（套装）\",\n    \"author\": \"罗兰・巴尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（果麦经典）\",\n    \"author\": \"普罗斯珀・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辫子\",\n    \"author\": \"莱蒂西娅・科隆巴尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047979-c242df?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃梅短篇小说精选\",\n    \"author\": \"马塞尔・埃梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046686-e8fde9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"居里夫人自传（果麦经典）\",\n    \"author\": \"玛丽・居里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046320-31d73f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（果麦经典）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046152-a5184c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别列津纳河\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命\",\n    \"author\": \"维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞纳河畔的一把椅子\",\n    \"author\": \"阿明・马洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式诱惑\",\n    \"author\": \"伊莱恩・西奥利诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名人传（译文经典）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042477-5d0e3f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困在宜家衣柜里的苦行僧\",\n    \"author\": \"罗曼・普埃尔多拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042039-20cc0f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的声音\",\n    \"author\": \"米歇尔・维诺克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041064-ba5df3?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义是一种人道主义（译文经典）\",\n    \"author\": \"让-保罗・萨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039642-f8eb49?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间的诗学（译文经典）\",\n    \"author\": \"加斯东・巴什拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"议程\",\n    \"author\": \"埃里克・维亚尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039354-676672?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自遗忘的最深处\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039075-4c44c6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样你就不会迷路\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039021-60295e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用主义和语用论\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消费社会\",\n    \"author\": \"让・鲍德里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎仗剑寻书记\",\n    \"author\": \"阿图罗・佩雷斯-雷维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035358-e49843?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡利古拉\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流亡与独立王国\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035040-722b2f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034953-de3083?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方之星\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034878-849ebc?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反与正·婚礼集·夏\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·布拉斯（名著名译丛书）\",\n    \"author\": \"勒萨日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034791-747b5e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034764-a88dde?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034710-aee0ac?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式优雅\",\n    \"author\": \"弗雷德里克・维塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都兰趣话（名著名译丛书）\",\n    \"author\": \"奥诺雷・德・巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034479-984c05?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下巴黎\",\n    \"author\": \"洛朗・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异乡人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033951-f2a1e6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类不平等的起源和基础（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"6点27分的朗读者\",\n    \"author\": \"让-保尔・迪迪耶洛朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033048-452f4a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与你重逢\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032469-49b649?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与毁灭\",\n    \"author\": \"彼得・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被诅咒的部分\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑三世与法兰西第二帝国\",\n    \"author\": \"皮埃尔・德・拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影是什么？\",\n    \"author\": \"安德烈・巴赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真汉\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029955-6e8063?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个火枪手（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028785-d4755a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（经典译林）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"链接未找到\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他跟我聊到樱桃树、灰尘以及一座山\",\n    \"author\": \"安东尼・帕耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028206-7f784d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴特文选（全6册）\",\n    \"author\": \"罗兰・巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜的草\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027684-2969f4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒谬的墙\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜月旅行\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027522-eb2fb2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米赫尔\",\n    \"author\": \"弗雷德里克・米斯特拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027495-1c4f2a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（读客经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月的星期天\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027435-819263?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地铁姑娘扎姬\",\n    \"author\": \"雷蒙・格诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027417-3b5646?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不乖的哲学家\",\n    \"author\": \"罗朗・古内尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027357-6fca3e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交际花盛衰记（企鹅经典）\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027228-7f0546?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流动的盛宴（果麦经典）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027051-6a3fc0?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包法利夫人\",\n    \"author\": \"福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026808-2efd7e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨人传（译文名著典藏）\",\n    \"author\": \"拉伯雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026739-9c8fe8?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当美拯救我们\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走，一堂哲学课\",\n    \"author\": \"弗里德里克・格鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（果麦经典）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窄门（果麦经典）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024099-8f56cf?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督山伯爵（读客经典）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻影恐惧\",\n    \"author\": \"亚当・查莫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021573-27153d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶之花\",\n    \"author\": \"夏尔・波德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020898-48caea?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风沙星辰\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019329-972eda?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔之歌\",\n    \"author\": \"蕾拉・斯利玛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017928-dad628?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（译文名著精选）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017592-9191d1?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫Ⅲ：何谓永恒\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017004-62308e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫I：虔诚的回忆\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016569-c1efc9?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫Ⅱ：北方档案\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016566-788ff4?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非普通人系列（套装共6册）\",\n    \"author\": \"弗雷德里克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015228-fba95a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多拉・布吕代\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014472-b52db7?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十七度二（译文经典）\",\n    \"author\": \"菲利普・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013452-6e212b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家谱\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012681-1ffe87?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废墟的花朵\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012504-c2ae8c?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷影子的人\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011811-525654?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天上再见\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010554-368938?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪全集（小说卷）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009885-1f723b?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到那一天\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青春咖啡馆\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009726-977513?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008871-2380b6?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（套装上中下册）\",\n    \"author\": \"雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八十天环游地球（译文名著精选）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007725-e9294d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十年后（套装上下册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007203-5ad2db?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众：大众心理研究（修订版）\",\n    \"author\": \"古斯塔夫·勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧院魅影（译文名著精选）\",\n    \"author\": \"卡斯顿・勒胡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006849-571d7d?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你们再也不写了？（短经典）\",\n    \"author\": \"洛朗丝・柯赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006438-e0248f?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫廷社会（译文经典）\",\n    \"author\": \"诺贝特・埃利亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代哲学的智慧（译文经典）\",\n    \"author\": \"皮埃尔・阿多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006372-3fb9a1?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国知识分子史\",\n    \"author\": \"吕一民/朱晓罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无尽的谈话\",\n    \"author\": \"莫里斯・布朗肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005043-e237a2?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的池塘（短经典）\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004749-de3f5a?p=8866\",\n    \"category\": \"法国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论美国的民主（全2册）\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997912-ae03bf?p=8866\",\n    \"category\": \"民主\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽签与民主、共和\",\n    \"author\": \"王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866\",\n    \"category\": \"民主\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾准文集\",\n    \"author\": \"顾准\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866\",\n    \"category\": \"民主\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主新论（套装2册）\",\n    \"author\": \"乔万尼・萨托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007968-d5ef21?p=8866\",\n    \"category\": \"民主\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命\",\n    \"author\": \"维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"33场革命\",\n    \"author\": \"卡内克・桑切斯・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034071-1f266c?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的转型\",\n    \"author\": \"诺姆・马格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛虻\",\n    \"author\": \"艾捷尔・丽莲・伏尼契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012474-cb8e19?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红岩\",\n    \"author\": \"罗广斌/杨益言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009657-7a2398?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凋零\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866\",\n    \"category\": \"革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙子兵法青少版（作家榜经典文库）\",\n    \"author\": \"孙武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493158-bd5029?p=8866\",\n    \"category\": \"启蒙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：基础学习篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866\",\n    \"category\": \"Linux\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：服务器架设篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866\",\n    \"category\": \"Linux\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Linux就该这么学\",\n    \"author\": \"刘遄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020865-7cfd40?p=8866\",\n    \"category\": \"Linux\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Linux环境编程：从应用到内核\",\n    \"author\": \"高峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019278-91aa23?p=8866\",\n    \"category\": \"Linux\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯传\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866\",\n    \"category\": \"亚马逊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊编年史\",\n    \"author\": \"宁向东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866\",\n    \"category\": \"亚马逊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯的数字帝国\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866\",\n    \"category\": \"亚马逊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊效应\",\n    \"author\": \"娜塔莉・伯格/米娅・奈茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866\",\n    \"category\": \"亚马逊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度营养\",\n    \"author\": \"凯瑟琳・沙纳汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866\",\n    \"category\": \"营养\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是你吃出来的\",\n    \"author\": \"夏萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866\",\n    \"category\": \"营养\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总觉得饿？\",\n    \"author\": \"大卫. 路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866\",\n    \"category\": \"营养\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界奇幻地图\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501741-13c2f5?p=8866\",\n    \"category\": \"航海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海盗时代\",\n    \"author\": \"海盗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866\",\n    \"category\": \"航海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与情商\",\n    \"author\": \"张小宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866\",\n    \"category\": \"自信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信思考\",\n    \"author\": \"泉忠司著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866\",\n    \"category\": \"自信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为什么离开高盛\",\n    \"author\": \"格雷格・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866\",\n    \"category\": \"高盛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高盛帝国（套装上下册）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023976-b41d46?p=8866\",\n    \"category\": \"高盛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾小吃全书\",\n    \"author\": \"焦桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的24则运算\",\n    \"author\": \"林婉瑜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000729-a46ceb?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在台湾发现历史\",\n    \"author\": \"杨渡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982489-7f9cfb?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫中的恋人\",\n    \"author\": \"陈雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053472-87b733?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨狗空间\",\n    \"author\": \"卧斧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051516-baea86?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬将军来的夏天\",\n    \"author\": \"甘耀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033342-c27b37?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来前书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来后书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾风云（1368-1683）\",\n    \"author\": \"张嵚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029589-c7bec5?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有神的所在 ：私房阅读《金瓶梅》\",\n    \"author\": \"侯文咏\",\n    \"link\": \"链接未找到\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十三年梦\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027630-221dda?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邦查女孩\",\n    \"author\": \"甘耀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026436-0c6072?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷震传\",\n    \"author\": \"范泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞的游戏\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023985-064394?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由之魂\",\n    \"author\": \"刘台平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春灯公子\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016404-86542e?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的优雅\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014619-e2d4f6?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都市速写簿\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直航台海：我在台湾牢狱的日子\",\n    \"author\": \"张力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012021-e78d70?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾这些年所知道的祖国\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们台湾这些年\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011574-9729a0?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们台湾这些年2\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011571-5ec4cc?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是台湾，这才是台湾\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011721-b791c3?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老兵自述：我在台湾40年\",\n    \"author\": \"于秀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009210-bceb7c?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房思琪的初恋乐园\",\n    \"author\": \"林奕含\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008127-c9eeda?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统一大业（合订本）\",\n    \"author\": \"郭晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南渡北归（增订版）套装\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴立宁的传记与文集\",\n    \"author\": \"戴立宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866\",\n    \"category\": \"台湾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴的故事（全六册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866\",\n    \"category\": \"文艺复兴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海都物语\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866\",\n    \"category\": \"文艺复兴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华方法\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键的少数\",\n    \"author\": \"乔恩・卡岑巴赫/詹姆斯・托马斯/格雷琴・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997447-983a7c?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫经营实录（共5册）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995602-63c5f5?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法（口袋版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轻战略：量子时代的敏捷决策\",\n    \"author\": \"许正\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健经营哲学系列（套装共3册）\",\n    \"author\": \"张小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王道的经营（套装共6册）\",\n    \"author\": \"施振荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义系列（共四册）\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米巴核能\",\n    \"author\": \"胡八一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027267-f8932f?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左脑思考，右脑执行\",\n    \"author\": \"罗森维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026472-343411?p=8866\",\n    \"category\": \"经营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服亚马孙\",\n    \"author\": \"埃德・斯塔福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅰ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅰ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬：极地求生700天\",\n    \"author\": \"阿尔弗雷德・兰辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫图腾（套装共5册）\",\n    \"author\": \"闫志洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理日记（套装1-9册）\",\n    \"author\": \"西西弗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生少年生存小说系列（全6册）\",\n    \"author\": \"贝尔·格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地密码（珍藏版大全集）\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866\",\n    \"category\": \"探险，艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教史（套装共2册）\",\n    \"author\": \"胡斯托・冈萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866\",\n    \"category\": \"基督教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代巨人：明末耶稣会士在中国的故事\",\n    \"author\": \"邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866\",\n    \"category\": \"基督\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（全4册）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014469-ed82dc?p=8866\",\n    \"category\": \"傅雷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雕刻大地\",\n    \"author\": \"林璎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499059-e0fff6?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清华建筑小史全系套装（套装共6册）\",\n    \"author\": \"孙大章等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500016-12c10e?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珞珈筑记\",\n    \"author\": \"刘文祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499812-bde5c1?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑与历史文化精选（套装共5本）\",\n    \"author\": \"汪荣祖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古寺巡礼\",\n    \"author\": \"和辻哲郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509676-6befb2?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界建筑漫游指南（套装共6册）\",\n    \"author\": \"陈文捷等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511977-1ed179?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的建筑有多重？\",\n    \"author\": \"迪耶・萨迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003549-268c81?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不只中国木建筑\",\n    \"author\": \"赵广超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构是什么\",\n    \"author\": \"詹姆斯・爱德华・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到你的世界\",\n    \"author\": \"莎拉・威廉姆斯・戈德哈根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的城墙与城门\",\n    \"author\": \"喜仁龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044700-c36d74?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建筑改变日本\",\n    \"author\": \"伊东丰雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邬达克\",\n    \"author\": \"卢卡・彭切里尼/尤利娅・切伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日14：家宅\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025449-ebed98?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八面来风\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014949-70bd3c?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晨钟暮鼓\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红墙黄瓦\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014904-b28aee?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反建筑\",\n    \"author\": \"伊东丰雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014718-1944d8?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方建筑小史\",\n    \"author\": \"陈杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"建筑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报一看就懂\",\n    \"author\": \"薛兆亨/徐林宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509232-8957d6?p=8866\",\n    \"category\": \"财报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报就像一本兵法书\",\n    \"author\": \"刘顺仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866\",\n    \"category\": \"财报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让财报说话\",\n    \"author\": \"郑永强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866\",\n    \"category\": \"财报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂财报\",\n    \"author\": \"肖星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866\",\n    \"category\": \"财报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据资本时代\",\n    \"author\": \"Viktor Mayer-Schnberger\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据呈现之美\",\n    \"author\": \"凌祯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988333-c13fbe?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诚实的信号\",\n    \"author\": \"阿莱克斯・彭特兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用数据解决实际问题\",\n    \"author\": \"柏木吉基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984538-3d33ff?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化自我\",\n    \"author\": \"吉娜・聂夫/唐恩・娜芙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高阶运营\",\n    \"author\": \"龙共火火\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据的真相\",\n    \"author\": \"约翰・H. 约翰逊/迈克・格鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法霸权\",\n    \"author\": \"凯西・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利用Python进行数据分析\",\n    \"author\": \"Wes McKinney\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017943-1de00a?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能数据\",\n    \"author\": \"比约恩・布劳卿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用数据讲故事\",\n    \"author\": \"Cole Nussbaumer Knaflic\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016071-ab97a7?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信号与噪声\",\n    \"author\": \"纳特・西尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012051-590465?p=8866\",\n    \"category\": \"数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林童话全集（套装共3册）\",\n    \"author\": \"格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006672-9efda3?p=8866\",\n    \"category\": \"格林童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听你的\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日郊外的旅店\",\n    \"author\": \"安娜-卡埃勒・雨昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038115-2ded2b?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而为猫挺好的\",\n    \"author\": \"猫小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪认知\",\n    \"author\": \"尹惟楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福需要等待\",\n    \"author\": \"安娜・戈华达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030705-407eec?p=8866\",\n    \"category\": \"暖心\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水经注套装全五册（全本全注全译）\",\n    \"author\": \"郦道元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491544-98a70b?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶经 续茶经（全本全注全译）\",\n    \"author\": \"杜斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十四史：文白对照版（全12册）\",\n    \"author\": \"《二十四史》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509637-6f1905?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明年谱长编（全四册）\",\n    \"author\": \"束景南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004326-b1739c?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书杂志\",\n    \"author\": \"王念孙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史学要籍丛刊\",\n    \"author\": \"左丘明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992179-55d354?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅微草堂笔记（全本全注全译）\",\n    \"author\": \"纪昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985663-f34ed2?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏子春秋校注（中华国学文库）\",\n    \"author\": \"张纯一撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拾遗记（全本全注全译）\",\n    \"author\": \"王兴芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983911-a2e9a3?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劝学篇（全本全注全译）\",\n    \"author\": \"张之洞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983266-6db10e?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳伽蓝记（全本全注全译）\",\n    \"author\": \"尚荣译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书五经（全本全注全译）\",\n    \"author\": \"陈晓芬/徐儒宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053883-1b6ff5?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古籍校勘方法论\",\n    \"author\": \"王瑞来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051468-1a95e2?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋穀梁传（全本全注全译）\",\n    \"author\": \"徐正英/邹皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经典古典名著套装20册\",\n    \"author\": \"司马迁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041949-2c728c?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澄衷蒙学堂字课图说（全8册）\",\n    \"author\": \"刘树屏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典藏书全套装（全61册）\",\n    \"author\": \"胡平生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038349-85eafc?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛弃疾词集（词系列）\",\n    \"author\": \"辛弃疾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029985-edf7ad?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕氏春秋译注（修订本）\",\n    \"author\": \"张双棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866\",\n    \"category\": \"古籍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深海：探索寂静的未知\",\n    \"author\": \"詹姆斯・内斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866\",\n    \"category\": \"潜水\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语密码\",\n    \"author\": \"冶文彪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493707-543fdf?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樊登讲论语：先进\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502053-71d6f8?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语今读（增订版）\",\n    \"author\": \"李泽厚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语别裁\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透论语\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017736-fae163?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书讲义（中华国学文库）\",\n    \"author\": \"吕留良撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012750-bf36f4?p=8866\",\n    \"category\": \"论语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一座城市，一部历史\",\n    \"author\": \"李永石等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866\",\n    \"category\": \"韩国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"82年生的金智英\",\n    \"author\": \"赵南柱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039924-8e05df?p=8866\",\n    \"category\": \"韩国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可不知的朝韩史\",\n    \"author\": \"杨益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019653-a807c8?p=8866\",\n    \"category\": \"韩国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"素媛\",\n    \"author\": \"苏在沅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015792-2888ba?p=8866\",\n    \"category\": \"韩国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒品史：美国和墨西哥的百年恩怨\",\n    \"author\": \"卡门・博洛萨/迈克・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510021-718e77?p=8866\",\n    \"category\": \"毒品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你说的那个朋友是不是你自己\",\n    \"author\": \"山羊卡罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866\",\n    \"category\": \"搞笑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆笑校园（套装共12册）\",\n    \"author\": \"朱斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866\",\n    \"category\": \"搞笑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子4\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866\",\n    \"category\": \"搞笑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末代沙皇：尼古拉二世的最后503天\",\n    \"author\": \"罗伯特・瑟维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491478-017375?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（名著名译丛书）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死魂灵（名著名译丛书）\",\n    \"author\": \"果戈理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035190-455dfe?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上尉的女儿（企鹅经典）\",\n    \"author\": \"普希金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033594-5c7f0b?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代英雄（企鹅经典）\",\n    \"author\": \"米哈伊尔・莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032583-5401e7?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死屋手记（企鹅经典）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"链接未找到\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027531-e0ac8e?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼王\",\n    \"author\": \"维克托・阿斯塔菲耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008928-ed9c64?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变色龙（译文名著精选）\",\n    \"author\": \"安东・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007737-3fd6bc?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（译文名著精选）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005319-d938bf?p=8866\",\n    \"category\": \"俄国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤川次郎作品系列（套装共五册）\",\n    \"author\": \"赤川次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048447-5436f5?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下倾歌（共2册）\",\n    \"author\": \"青林之初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045369-5592ba?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大雪无痕（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042507-28ce63?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅盾文学奖传世经典15部装（共33册）\",\n    \"author\": \"李国文等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041607-c640ec?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武志红经典作品合集（套装共4册）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被偷走的人生\",\n    \"author\": \"三七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035772-784a6d?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国著名作家的必读短篇小说集（套装8本）\",\n    \"author\": \"契诃夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035313-d1c72e?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"村上春树长篇代表作品集（套装共10册）\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034989-a89d3c?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"篇篇十万+：朋友圈的戎马江湖（套装共11册）\",\n    \"author\": \"咪蒙/张小娴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034755-6f1025?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学百年经典（套装三册）\",\n    \"author\": \"李朝全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"归乡\",\n    \"author\": \"尤凤伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034413-483475?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔维诺精选作品集（套装23册）\",\n    \"author\": \"伊塔洛・卡尔维诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034284-3a66b1?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朔文集（典藏版）\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"速求共眠\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033828-cbebcf?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"严歌苓小说精选（10册套装）\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033429-3c24c1?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"严歌苓长篇精品（套装共3册）\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031872-89a7fd?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈阁是座城\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031431-3b1b40?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石黑一雄中英双语作品集（套装共8册）\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031413-441a7b?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊恩·麦克尤恩作品集（套装共15册）\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030873-4d30db?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈希我疼痛小说三部曲\",\n    \"author\": \"陈希我\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030783-193739?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟藏\",\n    \"author\": \"老王子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030411-768a7d?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师精选典藏系列套装33册\",\n    \"author\": \"林徽因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李劼人文学作品合集（套装九册）\",\n    \"author\": \"李劼人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028308-3a0522?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街道江湖\",\n    \"author\": \"王占黑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028230-cbb04c?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郎骑竹马来\",\n    \"author\": \"半夏\",\n    \"link\": \"链接未找到\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027516-22199b?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿耐精选作品集（套装共5册）\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026907-4e8ab6?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薛忆沩作品（共6册）\",\n    \"author\": \"薛忆沩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024573-1a5905?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天黑得很慢\",\n    \"author\": \"周大新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022179-0f5935?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷失的军刺\",\n    \"author\": \"火狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019152-9eb6d7?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说部之乱\",\n    \"author\": \"朱岳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017805-d00a95?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲马\",\n    \"author\": \"默音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016590-59b466?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芳华\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015696-61e77a?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷崎润一郎精选集（套装共11册）\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014514-989557?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈悲\",\n    \"author\": \"路内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013974-4df8cd?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原上的摩西\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013002-6e48be?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫城七日\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012729-5d6efa?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天浴\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011631-d26689?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丙申故事集\",\n    \"author\": \"弋舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011514-e0566b?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桃之夭夭\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011418-b385c2?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏菲的世界（贾德名作系列三部曲）\",\n    \"author\": \"乔斯坦・贾德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011355-c8762d?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米奇·阿尔博姆作品系列套装（套装共5册）\",\n    \"author\": \"米奇・阿尔博姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011112-201397?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏威夷史诗(共2册）\",\n    \"author\": \"詹姆斯・米切纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010758-140387?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿游戏（套装共3册）\",\n    \"author\": \"苏珊・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010443-27b9b4?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妹头\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010377-d27ee2?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹·布朗作品系列（套装共6册）\",\n    \"author\": \"丹・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010287-e7276e?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出梁庄记\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等等灵魂\",\n    \"author\": \"李佩甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008343-34970f?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆作品系列套装（套装共13本）\",\n    \"author\": \"威廉・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007653-8459d0?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮躁\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005049-2a2f9d?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦腔\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005046-8b111a?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废都\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004731-02bb60?p=8866\",\n    \"category\": \"当代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED说话的力量\",\n    \"author\": \"阿卡什·P.卡里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866\",\n    \"category\": \"表达\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做一场精彩的演讲\",\n    \"author\": \"琼・戴兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866\",\n    \"category\": \"表达\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴演讲\",\n    \"author\": \"朱迪思・汉弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866\",\n    \"category\": \"表达\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效资产管理（典藏版）\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866\",\n    \"category\": \"资产\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十分钟智商运动\",\n    \"author\": \"李永乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984940-6dc445?p=8866\",\n    \"category\": \"趣味\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全新万物简史\",\n    \"author\": \"鲍勃・伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866\",\n    \"category\": \"趣味\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中译经典文库•世界文学名著精选50册\",\n    \"author\": \"中国对外翻译出版公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译大师谈翻译：译家之言套装\",\n    \"author\": \"许渊冲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500748-930d1b?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丽声指南针英语名著分级读物高中版第三级（套装共6册）\",\n    \"author\": \"Joanna Davidson等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506067-2ec3d5?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布莱森英语简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001344-4ed33f?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱歌川英语学习大全（套装共5册）\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威超级英雄双语故事集（套装共10本）\",\n    \"author\": \"美国漫威公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053103-e6f1dc?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《自然》百年科学经典（第一卷）\",\n    \"author\": \"赫胥黎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津国际关系手册\",\n    \"author\": \"罗伯特・基欧汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（八）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043593-cd4e90?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（七）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043164-770743?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（三）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043062-c23c04?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王佐良全集（套装共12卷）\",\n    \"author\": \"王佐良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042960-41e26a?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（五）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042861-1cb1cb?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（二）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042696-3e0f87?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被解释的美\",\n    \"author\": \"金雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041943-2f0dec?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语写作手册：风格的要素\",\n    \"author\": \"威廉・斯特伦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语民族史（套装共4本）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023793-341588?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再会，契普斯先生\",\n    \"author\": \"詹姆斯・希尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021627-c108f7?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Sense of Style\",\n    \"author\": \"Steven Pinker\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021594-60f68e?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无聊的魅力\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1368个单词就够了\",\n    \"author\": \"王乐平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译的技巧\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015609-4aebb7?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语的故事\",\n    \"author\": \"戴维・克里斯特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013851-0cea4d?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功就靠这点破英语\",\n    \"author\": \"孙铁麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011910-c8a840?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟各国人都聊的来\",\n    \"author\": \"本尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外语是怎样学会的\",\n    \"author\": \"王初明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866\",\n    \"category\": \"英语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨提亚冥想\",\n    \"author\": \"约翰・贝曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866\",\n    \"category\": \"冥想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新情商\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866\",\n    \"category\": \"冥想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用安静改变世界\",\n    \"author\": \"拉塞尔・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023886-49af84?p=8866\",\n    \"category\": \"冥想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平面设计200年\",\n    \"author\": \"史蒂文・海勒/西摩・切瓦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510684-c22f94?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意选择\",\n    \"author\": \"肯・科钦达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我们阅读时，我们看到了什么\",\n    \"author\": \"彼得・门德尔桑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书籍形态艺术\",\n    \"author\": \"善本出版有限公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985075-19633a?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造境记\",\n    \"author\": \"曾仁臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构是什么\",\n    \"author\": \"詹姆斯・爱德华・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极计算\",\n    \"author\": \"拉斐尔·A.卡里罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽象城市\",\n    \"author\": \"克里斯托夫・尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计大师的商业课\",\n    \"author\": \"戴维・舍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Design Systems\",\n    \"author\": \"Alla Kholmatova\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031929-0301f2?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点艺术\",\n    \"author\": \"谭力勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日18：设计力\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025413-980d01?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益设计（第2版）\",\n    \"author\": \"Jeff Gothelf\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果首席设计师：乔纳森传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形式感+\",\n    \"author\": \"晋小彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计心理学（全四册）\",\n    \"author\": \"唐纳德・A・诺曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016626-0875e7?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计模式之禅（第2版）\",\n    \"author\": \"秦小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计冲刺\",\n    \"author\": \"杰克・纳普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866\",\n    \"category\": \"设计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众妙之门（精装插图版）\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009396-d57366?p=8866\",\n    \"category\": \"迷幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石全集：临川先生文集\",\n    \"author\": \"王水照主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866\",\n    \"category\": \"儒学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法言（全本全注全译）\",\n    \"author\": \"扬雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866\",\n    \"category\": \"儒学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学小史\",\n    \"author\": \"干春松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866\",\n    \"category\": \"儒学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾四书精讲（套装共11册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029571-16066b?p=8866\",\n    \"category\": \"儒学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战：繁荣的幻灭\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战（贝克知识丛书）\",\n    \"author\": \"弗尔克・贝克汉恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彗星年代\",\n    \"author\": \"丹尼尔・舍恩普夫卢格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国与第一次世界大战\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骄傲之塔\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡的灭亡\",\n    \"author\": \"杰弗里・瓦夫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032763-6ef5f4?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022260-f72b1c?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1913，一战前的世界\",\n    \"author\": \"查尔斯・埃默森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019293-a852b8?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩塌的世界\",\n    \"author\": \"梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013923-111e75?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯曼帝国的衰亡\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009525-0dfc4f?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战回忆录（全五卷）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争就是这么回事儿（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866\",\n    \"category\": \"一战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图和鸭嘴兽一起去酒吧\",\n    \"author\": \"托马斯・卡斯卡特/丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866\",\n    \"category\": \"冷笑话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海传：叶辛眼中的上海\",\n    \"author\": \"叶辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家肴\",\n    \"author\": \"唐颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁花\",\n    \"author\": \"金宇澄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027180-6130db?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长乐路\",\n    \"author\": \"史明智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"上海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Web安全之深度学习实战\",\n    \"author\": \"刘焱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027117-20aa4a?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Flask Web开发\",\n    \"author\": \"Miguel Grinberg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018324-e7bedb?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS禅意花园（修订版）\",\n    \"author\": \"Dave Shea/Mollv E\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通CSS（第2版）\",\n    \"author\": \"Andy Budd/Cameron Moll\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HTML5秘籍\",\n    \"author\": \"Matthew MacDonald\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006540-4fb712?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS设计指南（第3版）\",\n    \"author\": \"Charles Wyke-Smith\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866\",\n    \"category\": \"WEB\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱锺书选唐诗\",\n    \"author\": \"钱锺书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513468-25af5c?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（果麦经典）\",\n    \"author\": \"陈引驰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004200-106e00?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗选注\",\n    \"author\": \"葛兆光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗排行榜\",\n    \"author\": \"王兆鹏/邵大为/张静/唐元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的唐诗课\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043047-73180f?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040122-5a5f09?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说唐诗\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021003-a4fa60?p=8866\",\n    \"category\": \"唐诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳大利亚史\",\n    \"author\": \"欧内斯特・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996043-23ee0f?p=8866\",\n    \"category\": \"澳大利亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民发呆的澳洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866\",\n    \"category\": \"澳大利亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸：适合全家人的健身与运动\",\n    \"author\": \"杨克新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051009-b7847b?p=8866\",\n    \"category\": \"拉伸\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸运动系统训练（全彩图解第2版）\",\n    \"author\": \"阿诺德·G.尼尔森/尤卡・科科宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866\",\n    \"category\": \"拉伸\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富是认知的变现\",\n    \"author\": \"舒泰峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490950-03b116?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中高净值人群财富管理的顶层设计（全5册）\",\n    \"author\": \"李升等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491427-50aa01?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资的十项核心原则\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491475-157297?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攻守：可转债投资实用手册\",\n    \"author\": \"饕餮海等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492006-a0e7e3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（原书第3版）（典藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492738-ab0390?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房价的逻辑\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493002-d88db9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级资管\",\n    \"author\": \"乔永远/孔祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为金融学\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497613-50ebe9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师3\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势投资\",\n    \"author\": \"丁圣元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498825-647703?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资者\",\n    \"author\": \"丹尼尔・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资三部曲\",\n    \"author\": \"杰弗里・肯尼迪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498966-b96f00?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识的力量\",\n    \"author\": \"梁宇峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期主义\",\n    \"author\": \"高德威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资核心资产\",\n    \"author\": \"王德伦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资攻略\",\n    \"author\": \"翁量\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资理财红宝书\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非凡的成功\",\n    \"author\": \"大卫・史文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499398-92a3da?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆精解证券分析\",\n    \"author\": \"杰森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499647-43f62c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街教父格雷厄姆传\",\n    \"author\": \"本杰明・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500121-c5ae86?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学4：理财篇\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500430-536636?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同基金常识（10周年纪念版）\",\n    \"author\": \"约翰・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500526-edcefa?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱的属性\",\n    \"author\": \"金胜镐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500652-0252d7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往财富自由之路\",\n    \"author\": \"阿什文・B. 查布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501078-233e0c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"预测：经济、周期与市场泡沫\",\n    \"author\": \"洪灝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、资本与投资\",\n    \"author\": \"丁昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复利信徒\",\n    \"author\": \"李杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509553-ecceff?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势的力量\",\n    \"author\": \"李迅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：嘉信理财持续创新之道\",\n    \"author\": \"查尔斯・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的逻辑与艺术\",\n    \"author\": \"陈侃迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则：成长股投资要义\",\n    \"author\": \"吉姆・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手利弗莫尔的交易精髓\",\n    \"author\": \"李路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的真相\",\n    \"author\": \"极地之鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴芒演义\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510399-e55bd3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高净值人士投资指南\",\n    \"author\": \"潘添礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510582-618a3b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资经典战例之中国恒大\",\n    \"author\": \"正合奇胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510600-59043f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们终将变富\",\n    \"author\": \"兰启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚守\",\n    \"author\": \"约翰・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511698-19f58e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险投资的逻辑与常识\",\n    \"author\": \"莱恩・巴特森/肯・弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512811-ca0121?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服市场的人\",\n    \"author\": \"格里高利・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513291-9c5177?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"方舟：数字经济创新史\",\n    \"author\": \"赵小兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513465-e21bc9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（上）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（下）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513720-6f59ab?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资者的朋友\",\n    \"author\": \"朱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513738-d81882?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特内部讲话\",\n    \"author\": \"孙力科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513780-5bfbe2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图方法（原书第2版）\",\n    \"author\": \"斯蒂芬·W. 比加洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004659-15d3f7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资者的敌人\",\n    \"author\": \"朱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004545-ac76c4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资策略实战分析（原书第4版·典藏版）\",\n    \"author\": \"詹姆斯・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（典藏版）\",\n    \"author\": \"格里高里・莫里斯/赖安・里奇菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为金融与投资心理学（原书第6版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004407-2a20bf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球创新投资\",\n    \"author\": \"睦大均\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆精选集\",\n    \"author\": \"珍妮特・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004341-efe06a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稳赚：提升理财收益的投资工具\",\n    \"author\": \"李红萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资的24堂必修课（典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值发现\",\n    \"author\": \"张靖东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004107-ba8cf8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货狙击手\",\n    \"author\": \"彼得 ·L. 勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004131-eff6fd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常赢投资系列（套装共5册）\",\n    \"author\": \"帕特・多尔西等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆经典投资策略\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、现代化、价值投资与中国\",\n    \"author\": \"李录\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003972-3db08b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒掉你的股票分析师（原书第2版）\",\n    \"author\": \"哈里・多马什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003948-063db9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资至简\",\n    \"author\": \"静逸投资\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003885-267ca3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资交易心理分析（典藏版）\",\n    \"author\": \"布雷特 N. 斯蒂恩博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭周期：自上而下的投资逻辑\",\n    \"author\": \"乔治・达格尼诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003702-297e59?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世风日上\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐远的投资课\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24堂财富课\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002823-f70963?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易圣经\",\n    \"author\": \"布伦特・奔富\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理财就是理生活：6个受益一生的财富思维\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001803-f962c9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富管理的行为金融\",\n    \"author\": \"迈克尔·M.庞皮恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001725-bf1b89?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由新思维\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000711-ebbf11?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值：难点、解决方案及相关案例（原书第3版）\",\n    \"author\": \"阿斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富思维\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000345-3f82f4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"并购估值：构建和衡量非上市公司价值（原书第3版）\",\n    \"author\": \"克里斯・梅林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000339-2527cd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值\",\n    \"author\": \"张磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特和查理·芒格内部讲话\",\n    \"author\": \"丹尼尔・佩科/科里・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999487-966255?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画投资学一看就懂\",\n    \"author\": \"武敬敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999472-902044?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾（珍藏版）\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998941-39104e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识投资（原书第10版）\",\n    \"author\": \"滋维・博迪/亚历克斯・凯恩/艾伦 J. 马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995317-3a8c8c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资21戒\",\n    \"author\": \"本・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数定投实现财务自由\",\n    \"author\": \"姬建东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可撼动的财务自由\",\n    \"author\": \"托尼・罗宾斯/彼得・默劳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"ETF全球投资指南\",\n    \"author\": \"王延巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994768-9ce779?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴比伦富翁新解\",\n    \"author\": \"乔治・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报背后的投资机会\",\n    \"author\": \"蒋豹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大钱细思\",\n    \"author\": \"乔尔・蒂林哈斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资从入门到精通\",\n    \"author\": \"老罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的怪圈\",\n    \"author\": \"贾森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家庭财富保卫攻略\",\n    \"author\": \"王昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直面不确定性\",\n    \"author\": \"大辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险自选手册\",\n    \"author\": \"许春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期投资\",\n    \"author\": \"弗朗西斯科・加西亚・帕拉梅斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991150-020ce0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房法典\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990313-a6a495?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房可以很简单\",\n    \"author\": \"子安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益2\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989473-64fb2e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投机者的告白（实战版）\",\n    \"author\": \"安纳金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券分析（原书第6版）\",\n    \"author\": \"本杰明・格雷厄姆/戴维・多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的常识\",\n    \"author\": \"布拉德福德・康纳尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性市场\",\n    \"author\": \"罗闻全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让财报说话\",\n    \"author\": \"郑永强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水库论坛欧神作品（共2册）\",\n    \"author\": \"欧成效\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无常的博弈\",\n    \"author\": \"陆一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985033-817187?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让时间陪你慢慢变富\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984862-b62e79?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏世民：我的经验与教训\",\n    \"author\": \"苏世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富可敌国（经典版）\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲\",\n    \"author\": \"阿莉森・施拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精明投资者的满分课\",\n    \"author\": \"孙旭东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析圣经\",\n    \"author\": \"理查德·W·夏巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读华尔街（原书第5版）\",\n    \"author\": \"杰弗里 B 利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051507-55c3ee?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易之路\",\n    \"author\": \"陈凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资心理学（原书第5版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人的逻辑\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权、期货及其他衍生产品（原书第9版）\",\n    \"author\": \"约翰・赫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效资产管理（典藏版）\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得懂的金融投资课\",\n    \"author\": \"向松祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资思想史（珍藏版）\",\n    \"author\": \"马克・鲁宾斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050625-389c43?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员\",\n    \"author\": \"杰克D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万富翁快车道\",\n    \"author\": \"MJ·德马科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050346-fb40ee?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的眼睛\",\n    \"author\": \"吴卫军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进我的交易室\",\n    \"author\": \"亚历山大・艾尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的护城河（新版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭交易（原书第2版）\",\n    \"author\": \"约翰・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金股博弈（第4版）\",\n    \"author\": \"弈樊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大熊市启示录（原书第4版）\",\n    \"author\": \"拉塞尔・纳皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书（第2版）\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向投资策略\",\n    \"author\": \"大卫・德雷曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"副业赚钱\",\n    \"author\": \"Angie\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048438-cb560b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易冠军\",\n    \"author\": \"马丁・舒华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个农民的亿万传奇\",\n    \"author\": \"傅海棠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融市场与金融机构（原书第7版）\",\n    \"author\": \"弗雷德里克 S. 米什金/斯坦利 G. 埃金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年一梦（修订版）\",\n    \"author\": \"青泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特波浪理论：研判股市底部与顶部的有效工具\",\n    \"author\": \"拉尔夫·N·艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权：就这么简单\",\n    \"author\": \"韩冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期（珍藏版）\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期2\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经Ⅱ\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046155-96b7bf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股权战争（全新升级版）\",\n    \"author\": \"苏龙飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新金融怪杰\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市遇见凯恩斯\",\n    \"author\": \"约翰 F. 瓦辛科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易（原书第2版）\",\n    \"author\": \"艾琳・奥尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的第一桶金\",\n    \"author\": \"格伦・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历巴菲特股东大会\",\n    \"author\": \"杰夫・马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我如何从股市赚了200万（珍藏版）\",\n    \"author\": \"尼古拉斯・达瓦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂黄金白银投资理财\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资入门与实战技巧\",\n    \"author\": \"王坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌：信息不足时如何做出高明决策\",\n    \"author\": \"安妮・杜克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小散逆袭：手把手教你做量化定投\",\n    \"author\": \"万磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看盘方法与技巧一本通\",\n    \"author\": \"老牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益融合战法\",\n    \"author\": \"约翰・帕利卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白矮星：交易员的心理与交易体系\",\n    \"author\": \"赛博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043554-fc98f2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸系列全集（套装共32册）\",\n    \"author\": \"罗伯特・清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043707-53aa09?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特与索罗斯的投资习惯（纪念版）\",\n    \"author\": \"马克・泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑马波段操盘术（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独立，从财富开始\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌（纪念版）\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"振荡指标MACD（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿过迷雾\",\n    \"author\": \"任俊杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在苍茫中传灯\",\n    \"author\": \"姚斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生Ⅱ\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易员\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市场真相\",\n    \"author\": \"杰克D.施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大破局\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042051-f213e9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步华尔街（原书第11版）\",\n    \"author\": \"伯顿G.马尔基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密硅谷\",\n    \"author\": \"米歇尔 E. 梅西纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定投十年财务自由\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球投资\",\n    \"author\": \"林起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险，高回报\",\n    \"author\": \"皮姆・万・弗利特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041322-fd0d46?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特高收益投资策略\",\n    \"author\": \"吉瓦・拉玛斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债券投资实战\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12年20倍\",\n    \"author\": \"唐彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（原书第3版）\",\n    \"author\": \"格里高里・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的投资组合（珍藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票作手回忆录\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索罗斯传（白金珍藏版）\",\n    \"author\": \"罗伯特・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量价分析\",\n    \"author\": \"安娜・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票基本面分析清单\",\n    \"author\": \"迈克尔・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039261-a095a3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背离技术分析\",\n    \"author\": \"江南小隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中投资\",\n    \"author\": \"艾伦・卡尔普・波尼洛等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事（全新升级版）\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃伦·巴菲特如是说\",\n    \"author\": \"珍妮特・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038517-e8a9af?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的智慧（原书第2版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038406-87e81f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎杀黑马\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038283-074510?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过顶擒龙\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038112-a98e13?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期录\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力K线擒大牛\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极型资产配置指南\",\n    \"author\": \"马丁 J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员（典藏版）\",\n    \"author\": \"杰克 D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇的成功投资（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金怪杰（典藏版）\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市大崩溃前抛出的人（典藏版）\",\n    \"author\": \"伯纳德・巴鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第4版·典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036117-c98548?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨市场交易策略（典藏版）\",\n    \"author\": \"约翰 J. 墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035916-7ada89?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜华尔街（典藏版）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解（典藏版）\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向格雷厄姆学思考，向巴菲特学投资\",\n    \"author\": \"劳伦斯・坎宁安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透股权架构\",\n    \"author\": \"李利威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客户的游艇在哪里（典藏版）\",\n    \"author\": \"小弗雷德・施韦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035148-7cc8c3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特阴谋\",\n    \"author\": \"余治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球证券投资经典译丛（共16卷）\",\n    \"author\": \"拉尔夫・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034941-5999f0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢得输家的游戏（原书第6版）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理财就是理生活\",\n    \"author\": \"艾玛・沈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034665-bb12ef?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务诡计\",\n    \"author\": \"霍华德·M.施利特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活用理财金三角\",\n    \"author\": \"方士维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033393-0eaf41?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚定不移\",\n    \"author\": \"保罗・沃尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢变富\",\n    \"author\": \"张居营\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033147-38eae6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越金融（纪念版）\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透IPO\",\n    \"author\": \"沈春晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂生活中的金融常识\",\n    \"author\": \"陈思进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准投资\",\n    \"author\": \"管清友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032097-a4efc4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养（增订版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴维斯王朝\",\n    \"author\": \"约翰・罗斯柴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031242-bfcf62?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜一切市场的人\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美林传奇\",\n    \"author\": \"小温斯洛普 H.史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好赚钱\",\n    \"author\": \"简七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030909-335fc1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人穷口袋，富人富脑袋\",\n    \"author\": \"曾驿翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济增长的迷雾\",\n    \"author\": \"威廉・伊斯特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事与估值\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企业生命周期\",\n    \"author\": \"伊查克・爱迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股的智慧（第四版）\",\n    \"author\": \"陈江挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029619-c30e77?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务危机\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资的秘密\",\n    \"author\": \"Joel Greenblatt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028044-74e8a0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅱ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027984-a043c5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌金者：长期资本管理公司的升腾与陨落\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027954-43ce5e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的投资思想\",\n    \"author\": \"戴维・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅲ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期论\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信：投资原则篇\",\n    \"author\": \"杰里米・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027714-2bcfdf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势戒律\",\n    \"author\": \"柯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人思维\",\n    \"author\": \"贾森・卡拉卡尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的财富帝国\",\n    \"author\": \"彼得・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Money Master the Game\",\n    \"author\": \"Tony Robbins\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026346-d7e225?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧2\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（学习篇）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师2\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势交易\",\n    \"author\": \"安德烈亚斯 F. 克列诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的玫瑰（全新升级版）\",\n    \"author\": \"但斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022164-b67987?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022098-fc2d5f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私募的进化\",\n    \"author\": \"格上研究中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手回忆录\",\n    \"author\": \"埃德文・拉斐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手操盘术\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股民的眼泪\",\n    \"author\": \"张华桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最富足的投资\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020763-38a84b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亿万：围剿华尔街大白鲨\",\n    \"author\": \"茜拉・科尔哈特卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年（第2版）\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020628-097a89?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：金融之王卡尔·伊坎传\",\n    \"author\": \"马克・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020559-859f48?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的估值逻辑\",\n    \"author\": \"林安霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击败庄家\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融投资400年\",\n    \"author\": \"查尔斯・马凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020064-c7c756?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影子银行内幕：下一个次贷危机的源头（修订版）\",\n    \"author\": \"张化桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的规则\",\n    \"author\": \"张巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019746-4daf20?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值\",\n    \"author\": \"埃斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019614-245776?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"King of Capital\",\n    \"author\": \"David Carey/John E. Morris\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析（原书第10版）\",\n    \"author\": \"罗伯特 D. 爱德华兹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"并购估值\",\n    \"author\": \"克里斯 M. 梅林/弗兰克 C. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019248-0fcfaa?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密交易人的圣杯 &#8211; 卡玛利拉方程\",\n    \"author\": \"何塞・曼纽尔・莫雷拉・巴蒂斯塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018888-a3598c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（原书第4版）\",\n    \"author\": \"沃伦・巴菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018366-414491?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资指南\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3G资本帝国\",\n    \"author\": \"克里斯蒂娜・柯利娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的原则\",\n    \"author\": \"特兰・格里芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017835-758d98?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Momentum Masters\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017724-0cf662?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级强势股：如何投资小盘价值成长股（珍藏版）\",\n    \"author\": \"肯尼斯・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017625-c61710?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报2\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷查理宝典：查理·芒格智慧箴言录\",\n    \"author\": \"查理・芒格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017781-abd324?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"您厉害，您赚得多\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（原书第3版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017424-7fb305?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股的智慧\",\n    \"author\": \"陈江挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017415-1f1d36?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邓普顿教你逆向投资\",\n    \"author\": \"劳伦・邓普顿/斯科特・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017418-95c7db?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲刺白马股\",\n    \"author\": \"启明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30年后，你拿什么养活自己？2\",\n    \"author\": \"高得诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017409-fba58b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Principles\",\n    \"author\": \"Ray Dalio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017202-d00a86?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资中不简单的事\",\n    \"author\": \"邱国鹭等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017031-9bb190?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资中最简单的事\",\n    \"author\": \"邱国鹭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017019-676d89?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌神数学家\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳着踢踏舞去上班\",\n    \"author\": \"卡萝尔・卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的投资者\",\n    \"author\": \"本杰明・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016575-efb66d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得林奇投资经典全集（共3册）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱永不眠：资本世界的暗流涌动和金融逻辑\",\n    \"author\": \"香帅无花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货市场技术分析\",\n    \"author\": \"约翰・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特幕后智囊：查理·芒格传\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作前5年，决定你一生的财富\",\n    \"author\": \"三公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014817-68b046?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌（2017全新修订版）\",\n    \"author\": \"陈楫宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014739-d21b56?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资学手册\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014502-344441?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不落俗套的成功\",\n    \"author\": \"大卫・斯文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球系列（套装共6册）\",\n    \"author\": \"唐朝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013536-91355d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化投资策略\",\n    \"author\": \"理查德・托托里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A股赚钱必修课\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012393-e3ca99?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战上海：决胜股市未来三十年\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读量化投资\",\n    \"author\": \"忻海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开量化投资的黑箱（原书第2版）\",\n    \"author\": \"里什・纳兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特传（纪念版）\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资哲学：保守主义的智慧之灯\",\n    \"author\": \"刘军宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012027-429b8e?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货大作手风云录\",\n    \"author\": \"刘强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易：高手训练营\",\n    \"author\": \"埃德・蓬西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：一部历史\",\n    \"author\": \"诺顿・雷默/杰西・唐宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011655-2f93f9?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟交易法则（珍藏版）\",\n    \"author\": \"柯蒂斯・费思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贼巢\",\n    \"author\": \"詹姆斯・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会估值，轻松投资\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小花的投资魔法书\",\n    \"author\": \"小花小花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010716-f4a679?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱的爸爸教你实现财务自由\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010704-c5de17?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菜场经济学\",\n    \"author\": \"财上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010680-4deff8?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资异类\",\n    \"author\": \"王利杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宽客人生：从物理学家到数量金融大师的传奇\",\n    \"author\": \"伊曼纽尔・德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街幽灵\",\n    \"author\": \"阿瑟・辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随机漫步的傻瓜\",\n    \"author\": \"戴纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"套利的常识\",\n    \"author\": \"章文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009060-a4097b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街潜规则\",\n    \"author\": \"乔舒亚・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非富不可：曹仁超给年轻人的投资忠告\",\n    \"author\": \"曹仁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007572-2aa1dc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"操盘手Ⅰ：自由救赎\",\n    \"author\": \"花荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最需要的理财常识书\",\n    \"author\": \"王华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大牛市・股殇系列（全两册）\",\n    \"author\": \"诸葛就是不亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百箭穿杨\",\n    \"author\": \"小小辛巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非赚不可\",\n    \"author\": \"袁园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股怎能不懂波段\",\n    \"author\": \"宋建文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱（套装全2册）\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克米伦谈期权\",\n    \"author\": \"劳伦斯G.麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金奇才\",\n    \"author\": \"杰克·施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市长线法宝（原书第5版）\",\n    \"author\": \"杰里米J. 西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸穷爸爸\",\n    \"author\": \"罗伯特.T.清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读私募股权基金\",\n    \"author\": \"周炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（精华篇）\",\n    \"author\": \"L·J·瑞德豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街头智慧\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007074-d9d1d7?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从20万到30亿：特朗普自传\",\n    \"author\": \"唐纳德・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩根财团\",\n    \"author\": \"罗恩·彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦想与浮沉：A股十年上市博弈（2004～2014）\",\n    \"author\": \"王骥跃/班妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是部金融史（全新修订典藏版）\",\n    \"author\": \"陈雨露/杨栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产江湖\",\n    \"author\": \"肖宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006465-0c5bcc?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金到底是什么？\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由选择（珍藏版）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005688-284601?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则\",\n    \"author\": \"吉姆·斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安东尼·波顿的成功投资\",\n    \"author\": \"安东尼·波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短线交易秘诀（原书第2版）\",\n    \"author\": \"拉里·威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门口的野蛮人\",\n    \"author\": \"布赖恩・伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球「岛」系列・投资入门套装（共七册）\",\n    \"author\": \"雪球用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005484-765294?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·聂夫的成功投资（珍藏版）\",\n    \"author\": \"约翰・聂夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生（珍藏版）\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通向财务自由之路（原书第2版·珍藏版）\",\n    \"author\": \"范・撒普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的雪球\",\n    \"author\": \"吕波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样选择成长股\",\n    \"author\": \"菲利普·A·费舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第四版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风生水起：水皮股市创富录\",\n    \"author\": \"水皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004770-b214ba?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些滚雪球的人\",\n    \"author\": \"王星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866\",\n    \"category\": \"投资\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在此时此刻\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866\",\n    \"category\": \"禅修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅者的初心\",\n    \"author\": \"铃木俊隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866\",\n    \"category\": \"禅修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和繁重的工作一起修行\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029163-8fb11a?p=8866\",\n    \"category\": \"禅修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿布鞋的马云：决定阿里巴巴生死的27个节点\",\n    \"author\": \"王利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866\",\n    \"category\": \"马云\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑大脑回路\",\n    \"author\": \"亚历克斯・科布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052773-076a3d?p=8866\",\n    \"category\": \"抑郁\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去的理由\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866\",\n    \"category\": \"抑郁\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年井上靖\",\n    \"author\": \"宫崎润一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507408-d785fd?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩田先生\",\n    \"author\": \"HOBO日刊ITOI新闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509361-e4316e?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雨琳琅\",\n    \"author\": \"陈新华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509841-8c539e?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书合集（套装共8册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510048-990016?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索恩人物传记生而为王（全13册）\",\n    \"author\": \"汉内斯・默林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传：现代的发明者\",\n    \"author\": \"理查德・芒森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510540-98d20d?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马名人传（全五册）\",\n    \"author\": \"普鲁塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不畏：陆克文自传\",\n    \"author\": \"陆克文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510705-549377?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文\",\n    \"author\": \"泷井一博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴高乐将军（全二册）\",\n    \"author\": \"朱利安・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513408-b5f76e?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找卡夫卡\",\n    \"author\": \"拉德克・马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513639-141090?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常之人\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999418-3ae058?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡：十年二十人\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定人物论\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟南山传\",\n    \"author\": \"叶依\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049332-254452?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾志所向\",\n    \"author\": \"孙中山/许仕廉编著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永久记录\",\n    \"author\": \"爱德华・斯诺登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046221-17fc18?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说说十大日本侵华人物\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045075-ebfb55?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国人物传记（全4册）\",\n    \"author\": \"罗志田/娄岙菲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044847-db4f81?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格调崔永元\",\n    \"author\": \"白安娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042573-8c69e3?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的一生略小于美国现代史\",\n    \"author\": \"凯瑟琳・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039954-7c2c91?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆里尼奥传：葡萄牙制造（修订版）\",\n    \"author\": \"路易斯・洛伦索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师书系（全6册）\",\n    \"author\": \"梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧太后\",\n    \"author\": \"菲利普・威廉姆斯・萨金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找寻真实的蒋介石（套装共2册）\",\n    \"author\": \"杨天石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033129-0da7f4?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猛兽总是独行：鲁迅与他的朋友圈\",\n    \"author\": \"孙玉祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033105-83d7cd?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列一共8册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋经国传\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邬达克\",\n    \"author\": \"卢卡・彭切里尼/尤利娅・切伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生有罪\",\n    \"author\": \"特雷弗・诺亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关羽：神化的《三国志》英雄\",\n    \"author\": \"渡边义浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉：帝国重臣的人生起落\",\n    \"author\": \"范军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027960-c3f3a3?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健传\",\n    \"author\": \"周桦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中2·再认识李小龙\",\n    \"author\": \"约翰・里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025305-200ba5?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家、水手、士兵、间谍\",\n    \"author\": \"尼古拉斯・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟爱华传：洋医生的中国心\",\n    \"author\": \"约翰・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金庸传（修订版）\",\n    \"author\": \"傅国涌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023109-66a0ea?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息，折腾不止\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先知三部曲（套装共三册）\",\n    \"author\": \"伊萨克・多伊彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019818-fab788?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格经典作品集\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019506-ec53cc?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Open\",\n    \"author\": \"Andre Agassi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019482-94cced?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的兴亡\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴敬琏传\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018321-53a373?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠传\",\n    \"author\": \"贝尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017298-68c107?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致所有疯狂的家伙\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章（全三册）\",\n    \"author\": \"张鸿福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的局座：悄悄话\",\n    \"author\": \"张召忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李世民权力的逻辑（全4册）\",\n    \"author\": \"陈唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015375-ee641f?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁思成、林徽因与我\",\n    \"author\": \"林洙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014934-8a35b4?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠的正面与背面\",\n    \"author\": \"徐志频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014202-e625fe?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪与傅斯年（全新修订版）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俾斯麦传\",\n    \"author\": \"艾密尔・鲁特维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013704-70c38a?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张学良的政治生涯\",\n    \"author\": \"傅虹霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人心至上：杜月笙\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米尔·汗：我行我素\",\n    \"author\": \"克里斯蒂娜・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009441-d75778?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫漫自由路\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009420-a23ae5?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾伦・图灵传\",\n    \"author\": \"安德鲁・霍奇斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009402-9c2f8a?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的烤火者：杨绛传\",\n    \"author\": \"慕容素衣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009006-32c036?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坐天下：张宏杰解读中国帝王\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野寒山\",\n    \"author\": \"何善蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天正传\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在火星上退休：伊隆・马斯克传\",\n    \"author\": \"亚当・杰佛逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡斯特罗传\",\n    \"author\": \"克劳迪娅・福丽娅蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007353-db4a05?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库克：苹果的后乔布斯时代\",\n    \"author\": \"冷湖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一战神：韩信\",\n    \"author\": \"姜狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007233-0e5888?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明晚清三部曲\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大变局\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本·拉登传\",\n    \"author\": \"简·萨森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006387-47e6ef?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年袁家\",\n    \"author\": \"王碧蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪的最后二十年\",\n    \"author\": \"陆键东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006321-90dcb0?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战神粟裕\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大太监李莲英全传\",\n    \"author\": \"王牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的正面与侧面\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡雪岩（全三册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国误会了袁世凯\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866\",\n    \"category\": \"人物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人译文全集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044202-ce9b41?p=8866\",\n    \"category\": \"译文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇石：来自东西方的报道\",\n    \"author\": \"彼得·海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866\",\n    \"category\": \"译文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣殿骑士团：从神坛跌落尘埃\",\n    \"author\": \"迈克尔・克里根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493314-61cf2a?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑士团九百年\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501162-ae68dd?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪与蛆虫\",\n    \"author\": \"卡洛・金茨堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509391-1e6f1a?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金犀牛\",\n    \"author\": \"富威尔-艾玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次十字军东征\",\n    \"author\": \"彼得・弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱德华一世\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑死病\",\n    \"author\": \"弗朗西斯・艾丹・加斯凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032304-c5b139?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪欧洲\",\n    \"author\": \"理查・威廉・丘奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：中世纪盛期的欧洲\",\n    \"author\": \"威廉・乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪人\",\n    \"author\": \"艾琳・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025578-a85503?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝腓特烈二世的故事（全2册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023466-0fbdd9?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲中世纪史\",\n    \"author\": \"朱迪斯・M・本内特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017151-2a3e9a?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明破晓的世界\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866\",\n    \"category\": \"中世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读23：破碎之家\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001347-5914af?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来三十年（修订版）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986467-d00263?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖11：美食漫画万岁\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·与书私奔\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日13：暴走\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025458-0c2c9e?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些消失的文明\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866\",\n    \"category\": \"杂志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡土中国、江村经济套装\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866\",\n    \"category\": \"乡村\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"望春风\",\n    \"author\": \"格非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008655-3a2be5?p=8866\",\n    \"category\": \"乡村\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股权战争（全新升级版）\",\n    \"author\": \"苏龙飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透股权架构\",\n    \"author\": \"李利威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合伙人制度\",\n    \"author\": \"郑指梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"King of Capital\",\n    \"author\": \"David Carey/John E. Morris\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读私募股权基金\",\n    \"author\": \"周炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866\",\n    \"category\": \"股权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为何结婚，又为何不忠\",\n    \"author\": \"海伦・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500571-d4970f?p=8866\",\n    \"category\": \"恋爱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖3\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985279-dd3b48?p=8866\",\n    \"category\": \"魔术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖2\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049356-1b7e9b?p=8866\",\n    \"category\": \"魔术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大魔术师\",\n    \"author\": \"张海帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047799-4641cf?p=8866\",\n    \"category\": \"魔术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866\",\n    \"category\": \"魔术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏执乐观\",\n    \"author\": \"李思拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七次转型\",\n    \"author\": \"罗伯特 A. 伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长五线\",\n    \"author\": \"王赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轻战略：量子时代的敏捷决策\",\n    \"author\": \"许正\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略几何学\",\n    \"author\": \"罗伯特・凯德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能战略\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破现实的困境\",\n    \"author\": \"克里斯・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌22律\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论大战略\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：一部历史\",\n    \"author\": \"劳伦斯・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赚钱的逻辑\",\n    \"author\": \"钱伯鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027744-0af2ee?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：从思维到行动\",\n    \"author\": \"刘学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好战略，坏战略\",\n    \"author\": \"理查德・鲁梅尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商战\",\n    \"author\": \"杰克・特劳特 / 阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是战略\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866\",\n    \"category\": \"战略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈允斌顺时生活的智慧（全12册）\",\n    \"author\": \"陈允斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498798-9bff2a?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活蒙太奇\",\n    \"author\": \"天然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饭太稀个人绘本画集合辑\",\n    \"author\": \"饭太稀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼米之乡\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人超会吃\",\n    \"author\": \"王恺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508890-237674?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃和远方\",\n    \"author\": \"程磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509802-3be4da?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简主义改变了我\",\n    \"author\": \"乔舒亚・贝克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511542-2d95fe?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海风电影院\",\n    \"author\": \"吴忠全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513090-0c3561?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠什么都知道\",\n    \"author\": \"海带\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513681-e01d68?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美顺与长生\",\n    \"author\": \"毛建军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513723-731852?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众的反叛\",\n    \"author\": \"何塞・奥尔特加・伊・加塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002775-9ae93e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上收纳\",\n    \"author\": \"蚂小蚁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001383-d555a4?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画生活哲学一看就懂\",\n    \"author\": \"李静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒原来是这么回事儿\",\n    \"author\": \"吉雷克・奥贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡尾酒原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多/亚尼斯・瓦卢西克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪原来是这么回事儿\",\n    \"author\": \"特里斯坦・西卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活需要界限感\",\n    \"author\": \"景天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995263-2bc9b2?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画预防常见病\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金缮生活法\",\n    \"author\": \"坎迪斯・熊井\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995173-3a3c44?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食生活新提案系列（套装共5册）\",\n    \"author\": \"特里斯坦・西卡尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993028-2b5773?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是个年轻人，请你好好生活\",\n    \"author\": \"吕不同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991471-8feb15?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默感\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界竞争\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人生活\",\n    \"author\": \"谷川俊太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989908-bc769a?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人张灯结彩\",\n    \"author\": \"田耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988828-6d4776?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名区+1\",\n    \"author\": \"匿名用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986368-d69b14?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩的就是规则\",\n    \"author\": \"伊恩・伯格斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果没有明天\",\n    \"author\": \"余耕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983716-ce8642?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本风俗小物\",\n    \"author\": \"中川政七商店\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983593-3192f5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄小厨的春夏秋冬\",\n    \"author\": \"黄磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控分寸\",\n    \"author\": \"珍妮・米勒/维多利亚・兰伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准购买\",\n    \"author\": \"塔拉・巴顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053505-96c3ff?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱器皿\",\n    \"author\": \"祥见知生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052851-3d9768?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公园生活\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052704-8e3824?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动的人生整理魔法\",\n    \"author\": \"近藤麻理惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052008-1e4ed5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动的人生整理魔法2\",\n    \"author\": \"近藤麻理惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美之地图\",\n    \"author\": \"米哈埃拉・诺洛茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也要认真穿\",\n    \"author\": \"黎贝卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"久坐不伤身\",\n    \"author\": \"哈丽特・格里菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身创造力\",\n    \"author\": \"斯科特・科克伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡个好觉\",\n    \"author\": \"迈尔・克利格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风格的练习\",\n    \"author\": \"艾莉森・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046617-f68956?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生十二法则\",\n    \"author\": \"乔丹・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精彩人生的一分钟小习惯\",\n    \"author\": \"冲幸子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍谈吃\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044742-1db99f?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖21：酒的全事典\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家的书\",\n    \"author\": \"考薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖19：下午茶时间到\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买买买的乐趣\",\n    \"author\": \"山内麻里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043890-8d74b4?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖17：蔬菜多好吃啊\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖16：大满足！就爱锅料理\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖13：腐的品格\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖14：小聚会教科书\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖10：早餐，真的太重要了\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖11：美食漫画万岁\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖12：厨房，治愈人生的避难所\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖08：自给自足指南书\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖04：肉!肉!肉!\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖05：全宇宙都在吃甜品\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖03：食鲜最高\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大杯咖啡经济学\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041637-5af127?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"26城记\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康零食：知道这些就够了\",\n    \"author\": \"戴尔・沃勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤博士的啤酒札记\",\n    \"author\": \"太空精酿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Unfu*k Yourself\",\n    \"author\": \"Gary John Bishop\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书Ⅱ\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039144-9df9ca?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶与茶器\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10分钟扫除术\",\n    \"author\": \"贝基・拉平竺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036390-b0f5e3?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎美人\",\n    \"author\": \"珍妮・达玛斯/劳伦・巴斯蒂德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李开周说宋史套装（全3册）\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式优雅\",\n    \"author\": \"弗雷德里克・维塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会吃饭\",\n    \"author\": \"珍・克里斯特勒/艾莉莎・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列的诞生（全四册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断网生活\",\n    \"author\": \"贾健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033096-f85ae2?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何畅享啤酒\",\n    \"author\": \"约翰・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032259-138919?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩儿\",\n    \"author\": \"于谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就想开间小小咖啡馆\",\n    \"author\": \"王森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031806-c9aa38?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就想开间自己的小店\",\n    \"author\": \"夏小暖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031782-511b94?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰的咖啡馆\",\n    \"author\": \"佐拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读蒙田，是为了生活\",\n    \"author\": \"萨拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小野兽\",\n    \"author\": \"艾明雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030312-d9a911?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和谐两性：从了解对方到相互吸引（套装共3册）\",\n    \"author\": \"埃德蒙・沙夫茨伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029880-48513c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做二休五\",\n    \"author\": \"大原扁理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029772-21cd6b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一怒之下\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029214-6346e3?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You Are a Badass at Making Money\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再忙也要用心生活\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基本穿搭\",\n    \"author\": \"大山旬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028179-6a7a86?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些伤不起的年轻人\",\n    \"author\": \"二白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027111-bfde42?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑林广记（作家榜经典文库）\",\n    \"author\": \"游戏主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有风吹过厨房\",\n    \"author\": \"食家饭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025518-067637?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日12：断舍离\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025443-003ec0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日24：杂货\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025368-2d5b91?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耕种 食物 爱情\",\n    \"author\": \"克里斯汀・金博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的哲学\",\n    \"author\": \"朱尔斯・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回答不了\",\n    \"author\": \"匡扶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福的完美睡眠法\",\n    \"author\": \"西野精致\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024213-e8d4ce?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四维人类\",\n    \"author\": \"劳伦斯・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明年更年轻\",\n    \"author\": \"克里斯・克劳利/亨利・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话2\",\n    \"author\": \"马薇薇/黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明天我要去冰岛\",\n    \"author\": \"嘉倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简\",\n    \"author\": \"乔舒亚・贝克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023433-7c8ffb?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活上瘾指南\",\n    \"author\": \"姚瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·鱼鸟篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼翅与花椒\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不太多，不太少\",\n    \"author\": \"罗拉・A.阿克斯特伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021063-bc15d6?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命最后的读书会\",\n    \"author\": \"威尔・施瓦尔贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019641-a06ea5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命中最美好的事都是免费的\",\n    \"author\": \"尼尔・帕斯理查\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019473-2bce99?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒健身全集（共4册）\",\n    \"author\": \"保罗・威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019035-5dda2c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Furiously Happy\",\n    \"author\": \"Jenny Lawson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018477-7d1e06?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑幸福：如何活成你想要的模样\",\n    \"author\": \"马克・曼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018303-5054fe?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代艺术150年\",\n    \"author\": \"威尔・贡培兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上来信\",\n    \"author\": \"胡子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，小确幸\",\n    \"author\": \"加肥猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016305-40563d?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡 咖啡\",\n    \"author\": \"齐鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015963-7019a0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把这瓶开了！\",\n    \"author\": \"玛德琳・帕克特/贾斯汀琳・海默克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界咖啡学\",\n    \"author\": \"韩怀宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015366-f832b2?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡咖啡处处开\",\n    \"author\": \"杰里米・托茨/史蒂文・马卡东尼亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015165-adf5d0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻的意义\",\n    \"author\": \"提摩太・凯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014898-c319af?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代的互联网\",\n    \"author\": \"汤姆・斯坦迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹麦人为什么幸福\",\n    \"author\": \"迈克・维金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断舍离\",\n    \"author\": \"山下英子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014298-651b59?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡康永的说话之道\",\n    \"author\": \"蔡康永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014031-30040b?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡眠革命\",\n    \"author\": \"尼克・利特尔黑尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：厦门\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的驼峰之旅\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013344-7beb9e?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的世外桃源\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013326-79c181?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的狂欢\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013329-02ec90?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去，你的旅行\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013356-e5707c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这书能让你戒烟\",\n    \"author\": \"亚伦・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011292-5c7edf?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪咖的自我修养\",\n    \"author\": \"闫景歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖食：质朴的味道，家的味道\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人时代\",\n    \"author\": \"克莱・舍基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009798-cd52c6?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简主义：活出生命真意\",\n    \"author\": \"乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趣味生活简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在底层的生活\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背包十年\",\n    \"author\": \"小鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上午咖啡下午茶\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的女孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话\",\n    \"author\": \"学诚法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经：我跑故我在\",\n    \"author\": \"乔治・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽烟喝酒防癌书\",\n    \"author\": \"柳垂亮/李万瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007020-4eeab1?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白说\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乖，摸摸头\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866\",\n    \"category\": \"生活\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙发上的心理学\",\n    \"author\": \"菲利帕・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497946-e0bf91?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"入夜识\",\n    \"author\": \"FL-ZC小花/何敬尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498510-74f5f2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抱住棒棒的自己\",\n    \"author\": \"徐慢慢心理话\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只猫的存在主义思考\",\n    \"author\": \"卡尔・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活蒙太奇\",\n    \"author\": \"天然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝暮集\",\n    \"author\": \"呼葱觅蒜/白落梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的天工开物·绘本版（全三册）\",\n    \"author\": \"一页书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你说的那个朋友是不是你自己\",\n    \"author\": \"山羊卡罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忍不住想打扰你\",\n    \"author\": \"bibi园长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500922-1b9c21?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高木直子系列（套装共4册）\",\n    \"author\": \"高木直子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503232-de6e88?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饭太稀个人绘本画集合辑\",\n    \"author\": \"饭太稀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第2部：卷7~卷12）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508347-d4d29b?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海怪兽\",\n    \"author\": \"彭磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511941-7ee0fe?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的老板不苛责摸鱼的人\",\n    \"author\": \"哎呀我兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513525-565ebf?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠什么都知道\",\n    \"author\": \"海带\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513681-e01d68?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爸爸妈妈，这就是我自己喜欢的！\",\n    \"author\": \"阿斯特丽德・戴斯博尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513690-7699b6?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃郡往事\",\n    \"author\": \"杰夫・勒米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000252-e32b66?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊与狸的四季之旅\",\n    \"author\": \"帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999634-e42cb4?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我离开之后\",\n    \"author\": \"苏西・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第七部：卷37-卷42）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998470-967b6a?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第八部：卷43-卷45）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997591-eabcd8?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第五部：卷25-卷30）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997618-932079?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第六部：卷31-卷36）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997519-73ae65?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第三部：卷13-卷18）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997318-46ced3?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第四部：卷19-卷24）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996397-964930?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第一部：卷1-卷6）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第二部：卷7-卷12）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996145-6743c1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BEASTARS 动物狂想曲（第2部：卷9~卷15）\",\n    \"author\": \"板垣巴留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994582-4fd0a8?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BEASTARS 动物狂想曲（第1部：卷1~卷8）\",\n    \"author\": \"板垣巴留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993796-d76c26?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从早“茫”到晚\",\n    \"author\": \"西沃恩・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990868-fddced?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫兽谱\",\n    \"author\": \"小海/夏雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫海错图\",\n    \"author\": \"夏雪著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫鸟谱\",\n    \"author\": \"小海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990010-138e10?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你总说没事，但我知道你偷偷哭过很多次\",\n    \"author\": \"一禅小和尚诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妖怪大全\",\n    \"author\": \"孙见坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第11部：卷81~卷88）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054771-56c4aa?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第12部：卷89~卷95）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054726-43235d?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第8部：卷57~卷64）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054645-c4772c?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第9部：卷65~卷72）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054474-d26884?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第10部：卷73~卷80）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054366-0dccb2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第5部：卷33~卷40）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054279-6954ac?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第6部：卷41~卷48）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054189-c343d7?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第7部：卷49~卷56）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053856-fdbd3f?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第1部：卷1~卷8）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053607-cae7ea?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第2部：卷9~卷16）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053487-daf28b?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第3部：卷17~卷24）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053508-e33a08?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第4部：卷25~卷32）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053445-22ed13?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造境记\",\n    \"author\": \"曾仁臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装者：巴黎往事\",\n    \"author\": \"蚕蚕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053010-bfbea0?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一见你就好心情\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可怕的中年\",\n    \"author\": \"贾森・黑兹利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052275-fe05f1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅都市生存指南（套装全9册）\",\n    \"author\": \"贾森・黑兹利/乔尔・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜见女皇陛下（套装10册）\",\n    \"author\": \"ZCloud\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050091-232091?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"才不要让你知道\",\n    \"author\": \"方小孬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049062-ca8818?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三分钟漫画汽车史\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第10部：卷65~卷72）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049263-5b61c1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（外传：宇智波莎罗娜）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048198-844218?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第8部：卷49~卷56）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048327-ad09a2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第9部：卷57~卷64）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048300-dcb294?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第5部：卷28~卷34）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047895-7c9166?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第6部：卷35~卷41）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047679-80d7b1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第7部：卷42~卷48）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047649-541ed0?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第3部：卷15~卷21）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047475-b30d93?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第4部：卷22~卷27）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047292-9a2d01?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子（果麦经典）\",\n    \"author\": \"埃·奥·卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046836-36864d?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第1部：卷1~卷7）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第2部：卷8~卷14）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047043-883e2e?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事的开始\",\n    \"author\": \"幾米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆笑校园（套装共12册）\",\n    \"author\": \"朱斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们林地里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们迷人的鸟：猫头鹰\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅与其他海鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱歌的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗小黑战记1\",\n    \"author\": \"MTJJ\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039825-7c8219?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌是我的调色盘\",\n    \"author\": \"夏威夷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034944-4e1c17?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子4\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粗糙食堂\",\n    \"author\": \"莲小兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画古诗文\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而为猫挺好的\",\n    \"author\": \"猫小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的聪明人太多了，我必须为笨蛋争口气！\",\n    \"author\": \"书单狗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子3\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032709-0558a6?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子2\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032409-a7c4f5?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也吸收了猫能量\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰的咖啡馆\",\n    \"author\": \"佐拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪医杜立德（果麦经典）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回答不了\",\n    \"author\": \"匡扶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：苏州·杭州\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站，西藏\",\n    \"author\": \"山小\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·鱼鸟篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·异兽篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021321-ab85f8?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·人神篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡了吗？摘颗星星给你\",\n    \"author\": \"LOST7\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020397-464256?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡不着：Tango一日一画\",\n    \"author\": \"Tango\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017952-e205a1?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尾文字鱼\",\n    \"author\": \"伍肆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013374-cb4cf7?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪咖的自我修养\",\n    \"author\": \"闫景歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你今天真好看\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我可以咬一口吗？\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006363-81268e?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我所有的朋友都死了（套装共2册）\",\n    \"author\": \"艾弗里・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866\",\n    \"category\": \"绘本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"策略：如何在复杂的世界里成为高手\",\n    \"author\": \"江潮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866\",\n    \"category\": \"激励\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三道门\",\n    \"author\": \"亚历克斯・班纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866\",\n    \"category\": \"激励\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不懂员工激励，如何做管理\",\n    \"author\": \"肖祥银\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030405-968764?p=8866\",\n    \"category\": \"激励\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级激励者\",\n    \"author\": \"西蒙・斯涅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866\",\n    \"category\": \"激励\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见野兔的那一年\",\n    \"author\": \"阿托・帕西林纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013932-463f69?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评官员的尺度\",\n    \"author\": \"安东尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生有何意义\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们能做什么\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下铁道\",\n    \"author\": \"科尔森・怀特黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866\",\n    \"category\": \"自由\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以武论道：李小龙的功夫心法（套装共5册）\",\n    \"author\": \"李小龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866\",\n    \"category\": \"武术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据如何误导了我们\",\n    \"author\": \"桑内・布劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女士品茶\",\n    \"author\": \"戴维・萨尔斯伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512682-fdee18?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原因与结果的经济学\",\n    \"author\": \"中室牧子/津川友介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052284-b4a58c?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据的真相\",\n    \"author\": \"约翰・H. 约翰逊/迈克・格鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单统计学\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤裸裸的统计学\",\n    \"author\": \"查尔斯・惠伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866\",\n    \"category\": \"统计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱革命\",\n    \"author\": \"安妮・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490917-6f069c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智造中国\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491232-200000?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则：应对变化中的世界秩序\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492075-4f7b4c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的力量\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492024-2f20d3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·罗杰斯的大预测\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房价的逻辑\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493002-d88db9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温铁军套装（共5册）\",\n    \"author\": \"温铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493437-a29263?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量4\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493833-c77a73?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芯片陷阱\",\n    \"author\": \"马克・拉叙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495186-db8ef2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级资管\",\n    \"author\": \"乔永远/孔祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国资本市场变革\",\n    \"author\": \"肖钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497634-635389?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小白经济学：带你欢快地进入经济学的大门\",\n    \"author\": \"大墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497655-f6b05a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动荡时代\",\n    \"author\": \"白川方明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497670-93f060?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年论中国系列（套装6册）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂碳中和\",\n    \"author\": \"中国长期低碳发展战略与转型路径研究课题组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498108-447de0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：个人、组织如何与风险共舞\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利益相关者\",\n    \"author\": \"克劳斯・施瓦布/彼得・万哈姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498156-b93f87?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条前夜的繁荣与疯狂\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造性破坏的力量\",\n    \"author\": \"菲利普・阿吉翁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498252-63196c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口大逆转\",\n    \"author\": \"查尔斯・古德哈特/马诺杰・普拉丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资者\",\n    \"author\": \"丹尼尔・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大侦探经济学\",\n    \"author\": \"李井奎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499014-c19e74?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业革命前的欧洲社会与经济\",\n    \"author\": \"卡洛·M. 奇波拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国货币史（精校本）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国经济风暴\",\n    \"author\": \"张昕冉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499353-a57622?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资理财红宝书\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹤老师说经济\",\n    \"author\": \"鹤老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499413-bdea83?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球化简史\",\n    \"author\": \"杰弗里・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499440-2ab9ca?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的选择\",\n    \"author\": \"马凯硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厉以宁经济史文集套装\",\n    \"author\": \"厉以宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500088-41a814?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作、消费主义和新穷人\",\n    \"author\": \"齐格蒙特・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500127-368b0a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊群的共识\",\n    \"author\": \"肖小跑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500187-e6d4a0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"置身事内\",\n    \"author\": \"兰小欢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500901-c3b7ff?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪声：人类判断的缺陷\",\n    \"author\": \"丹尼尔・卡尼曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济金融学专业核心课（套装共8册）\",\n    \"author\": \"王文寅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501984-beaef1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"预测：经济、周期与市场泡沫\",\n    \"author\": \"洪灝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储\",\n    \"author\": \"威廉・格雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502575-8350f8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、资本与投资\",\n    \"author\": \"丁昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界钱币2000年\",\n    \"author\": \"伯恩德・克鲁格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503277-39fb14?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事经济学\",\n    \"author\": \"罗伯特・麦基/哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论与生活\",\n    \"author\": \"兰・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507066-43abdb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元真相\",\n    \"author\": \"达尔辛妮・大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的经济学\",\n    \"author\": \"张夏准\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509256-c1030a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链实战：从技术创新到商业模式\",\n    \"author\": \"冒志鸿/陈俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势的力量\",\n    \"author\": \"李迅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变中国\",\n    \"author\": \"张军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509850-d9c207?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩盘：全球金融危机如何重塑世界\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510096-bd2d0a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手利弗莫尔的交易精髓\",\n    \"author\": \"李路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切皆契约\",\n    \"author\": \"聂辉华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510423-f1d70c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"透过经济看国学\",\n    \"author\": \"翁礼华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510531-3f4603?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新增点\",\n    \"author\": \"管清友等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510843-826852?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们终将变富\",\n    \"author\": \"兰启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济2020\",\n    \"author\": \"王德培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511185-ea4e0f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国陷阱\",\n    \"author\": \"诺埃尔・毛雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海星式组织\",\n    \"author\": \"奥瑞・布莱福曼/罗德・贝克斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云上的中国\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511269-087c56?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越财富\",\n    \"author\": \"赵晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511332-7490f1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大营销哲学\",\n    \"author\": \"陈军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511335-35eeb4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从绿到金\",\n    \"author\": \"丹尼尔・埃斯蒂/安德鲁・温斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511350-277a7e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱的千年兴衰史\",\n    \"author\": \"金菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本5000年\",\n    \"author\": \"彭兴庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512352-c23aa4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与中国经济\",\n    \"author\": \"盛松成等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512808-94f8bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金的故事\",\n    \"author\": \"詹姆斯・莱德贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513099-a6d2c2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷搅局者\",\n    \"author\": \"莱斯利・柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美的正义\",\n    \"author\": \"熊秉元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513342-6d19a6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义增长\",\n    \"author\": \"马丁・R.斯塔奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513630-010be2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融激荡300年\",\n    \"author\": \"瀛洲客\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513660-81fac3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513711-251b40?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国怎么了\",\n    \"author\": \"安妮・凯斯/安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端经济\",\n    \"author\": \"理查德・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513786-ca7531?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"账簿与权力\",\n    \"author\": \"雅各布・索尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004521-f2651d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量3\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004476-186d31?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香帅财富报告\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球创新投资\",\n    \"author\": \"睦大均\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资的24堂必修课（典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油的时代\",\n    \"author\": \"王能全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"票据革命\",\n    \"author\": \"张立洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003528-1640ad?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年变局\",\n    \"author\": \"王文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003465-977d4c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争\",\n    \"author\": \"詹姆斯・里卡兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003357-d4da5a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与贫困\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002337-9bd116?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济情操论\",\n    \"author\": \"艾玛・罗斯柴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002307-c67bdb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国出行\",\n    \"author\": \"王千马/何丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002166-292e8e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流媒体时代\",\n    \"author\": \"迈克尔·D.史密斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002094-d7ffa9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易圣经\",\n    \"author\": \"布伦特・奔富\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聚焦\",\n    \"author\": \"布兰登・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001644-216a13?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从工业化到城市化\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001290-856734?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉：AI如何通过数据挖掘误导我们\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技新时代\",\n    \"author\": \"伊夫・埃奥内/埃尔维・芒斯龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的贸易\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的悖论\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（经济篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构性改革\",\n    \"author\": \"黄奇帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997597-3d930f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国真相\",\n    \"author\": \"約瑟夫・斯蒂格利茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新基建：全球大变局下的中国经济新引擎\",\n    \"author\": \"任泽平/马家进/连一席\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣与金融危机（第二版）\",\n    \"author\": \"罗伯特・席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995335-19a9c7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富千年史\",\n    \"author\": \"辛西娅・克罗森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别施舍\",\n    \"author\": \"格里高利・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995314-0d2cae?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价格的发现\",\n    \"author\": \"保尔・米格罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995308-ba31df?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激进市场\",\n    \"author\": \"埃里克·A.波斯纳/E.格伦·韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995302-d77728?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后谷歌时代\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业实战三部曲\",\n    \"author\": \"唐纳德・米勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商从商朝来\",\n    \"author\": \"傅奕群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994669-267453?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴比伦富翁新解\",\n    \"author\": \"乔治・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资从入门到精通\",\n    \"author\": \"老罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响商业的50本书\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻：新全球化时代的中国韧性与创新\",\n    \"author\": \"秦朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖峰对话区块链\",\n    \"author\": \"王峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992212-9a31a5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒经济学\",\n    \"author\": \"约翰・思文/德文・布里斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反直觉\",\n    \"author\": \"理查德・肖顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好奇心杂货铺\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991786-260d2f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识创造管理\",\n    \"author\": \"野中郁次郎/绀野登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991759-1130f2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链浪潮\",\n    \"author\": \"贾英昊/江泽武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991633-222d1d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长危机\",\n    \"author\": \"丹比萨・莫约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险的未来\",\n    \"author\": \"王和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991489-b536e1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球贸易摩擦与大国兴衰\",\n    \"author\": \"任泽平/罗志恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991219-d430c3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球不平等逸史\",\n    \"author\": \"布兰科・米兰诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991216-73f59c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丝绸到硅\",\n    \"author\": \"杰弗里・加滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新货币战争\",\n    \"author\": \"诺伯特・海林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990925-93e06e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代谢增长论\",\n    \"author\": \"陈平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990715-9d84b3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来站在中国这一边\",\n    \"author\": \"宁南山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的经济学\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网四大\",\n    \"author\": \"斯科特・加洛韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国货币史\",\n    \"author\": \"彭信威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事经济学\",\n    \"author\": \"罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基本收入·鹈鹕丛书\",\n    \"author\": \"盖伊・斯坦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990058-b0a6de?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂区块链\",\n    \"author\": \"王腾鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989131-40f05d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（理想国新版）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988420-f2ca45?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球房地产\",\n    \"author\": \"夏磊/任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八次危机\",\n    \"author\": \"温铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987595-1cd401?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李光耀观天下\",\n    \"author\": \"李光耀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券分析（原书第6版）\",\n    \"author\": \"本杰明・格雷厄姆/戴维・多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的处方\",\n    \"author\": \"伊齐基尔・伊曼纽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院时间管理课（修订版）\",\n    \"author\": \"穆然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985804-d73c79?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性市场\",\n    \"author\": \"罗闻全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据驱动的智能城市\",\n    \"author\": \"史蒂芬・戈德史密斯/苏珊・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水库论坛欧神作品（共2册）\",\n    \"author\": \"欧成效\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界不是平的\",\n    \"author\": \"简世勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐铁论（全本全注全译）\",\n    \"author\": \"陈桐生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985165-67a2d3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无霸主的世界经济\",\n    \"author\": \"彼得・特明/戴维・瓦因斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985009-8b5974?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会与经济\",\n    \"author\": \"马克・格兰诺维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984793-a39f61?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是怎么割韭菜的\",\n    \"author\": \"查尔斯・庞兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984592-f438eb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商务思维工具箱系列（套装共3册）\",\n    \"author\": \"HRInstitute\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984514-700431?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）新版\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983944-d80749?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆流行\",\n    \"author\": \"德里克・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处不在\",\n    \"author\": \"中国邮政快递报社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（金融危机完结篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054291-a6d1dc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本经济如何走出迷失\",\n    \"author\": \"三木谷浩史/三木谷良一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054201-9f5f9e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡：十年二十人\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔弗格森谈经济（共3册）\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053535-d2aa30?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与改革：厉以宁文选（套装共4册）\",\n    \"author\": \"厉以宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053469-e816bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量2\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052989-6d9cbb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一学就会的经济学\",\n    \"author\": \"张彩彩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052974-9a4739?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢：有钱人和你想的不一样\",\n    \"author\": \"塞缪尔・斯迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精明投资者的满分课\",\n    \"author\": \"孙旭东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用图表看懂世界经济\",\n    \"author\": \"宫崎勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052677-8ce5f4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拯救资本主义\",\n    \"author\": \"罗伯特・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052308-144997?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原因与结果的经济学\",\n    \"author\": \"中室牧子/津川友介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052284-b4a58c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球金融体系\",\n    \"author\": \"黄海洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051942-839ed7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类网络\",\n    \"author\": \"马修・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱从哪里来\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明斯基时刻\",\n    \"author\": \"兰德尔・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051318-a2c092?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色的羁绊\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人的逻辑\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简斯维尔\",\n    \"author\": \"艾米・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明世界经济史\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051012-e71f74?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家、经济与大分流\",\n    \"author\": \"皮尔・弗里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得懂的金融投资课\",\n    \"author\": \"向松祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与权力\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐秘战争\",\n    \"author\": \"阿里・拉伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币围城\",\n    \"author\": \"约翰・莫尔丁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国经济下半场（套装共25册）\",\n    \"author\": \"陈元/钱颖一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币之惑\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的经济课\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭火：美国金融危机及其教训\",\n    \"author\": \"本・伯南克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币变局\",\n    \"author\": \"巴里・艾肯格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞行为学6\",\n    \"author\": \"丹・艾瑞里/马特・R.特劳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048546-c8fffc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就业、利息与货币通论（去梯言系列）\",\n    \"author\": \"约翰・梅纳德・凯恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047628-8cc56b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“芯”想事成\",\n    \"author\": \"陈芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的起源\",\n    \"author\": \"埃里克・拜因霍克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047400-b0091e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币金融学（原书第2版）\",\n    \"author\": \"弗雷德里克S.米什金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融市场与金融机构（原书第7版）\",\n    \"author\": \"弗雷德里克 S. 米什金/斯坦利 G. 埃金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超脑行为金融学\",\n    \"author\": \"薛冰岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047115-117230?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权：就这么简单\",\n    \"author\": \"韩冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期（珍藏版）\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣与衰退\",\n    \"author\": \"艾伦・格林斯潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油战争\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：中国周边\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市遇见凯恩斯\",\n    \"author\": \"约翰 F. 瓦辛科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火枪与账簿\",\n    \"author\": \"李伯重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有（新版）\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞行为学（全5册）\",\n    \"author\": \"丹・艾瑞里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045105-dcaec5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一个欧洲\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本财经大腕谈中国\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044982-a1df0d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互惠资本主义\",\n    \"author\": \"布鲁诺・罗奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044532-bf397f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人缺什么\",\n    \"author\": \"古古\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈耶克作品（共6册）\",\n    \"author\": \"弗里德里希・奥古斯特・哈耶克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质套装（全3册）\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤老板自述三十年\",\n    \"author\": \"老五/劲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043788-51d196?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林斯潘传\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方经济学说史教程\",\n    \"author\": \"晏智杰编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043584-8bd3af?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从雇佣到自由人\",\n    \"author\": \"吕廷杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（金融危机篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043179-7c4aeb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"振荡指标MACD（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的冲突\",\n    \"author\": \"道格拉斯・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业冒险\",\n    \"author\": \"约翰・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要害怕中国\",\n    \"author\": \"菲利普・巴莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市隐秩序\",\n    \"author\": \"刘春成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042336-7a14a0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"购物凶猛\",\n    \"author\": \"孙骁骥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打造消费天堂\",\n    \"author\": \"连玲玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大破局\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042051-f213e9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大杯咖啡经济学\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041637-5af127?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无论如何都想告诉你的世界史\",\n    \"author\": \"玉木俊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040368-13eaaa?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济2019\",\n    \"author\": \"王德培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040161-184485?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的本质（修订版）\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂营销上\",\n    \"author\": \"戈非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的真谛\",\n    \"author\": \"路易吉・津加莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王道的经营（套装共6册）\",\n    \"author\": \"施振荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的与看不见的\",\n    \"author\": \"巴斯夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038388-dd5409?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期录\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（生活常识篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大浪潮\",\n    \"author\": \"斯蒂芬・拉德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037386-86cf50?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压力测试\",\n    \"author\": \"蒂莫西・盖特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极型资产配置指南\",\n    \"author\": \"马丁 J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债：第一个5000年\",\n    \"author\": \"大卫・格雷伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037263-d306b9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银的故事\",\n    \"author\": \"威廉・L.西尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037239-ead4cb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卧底经济学（套装共4册）\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037194-590484?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与城市发展\",\n    \"author\": \"陈杰/陆铭/黄益平/潘英丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的真相\",\n    \"author\": \"丹尼・罗德里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037065-bd5341?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇的成功投资（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嚣张的特权\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"50人的二十年\",\n    \"author\": \"樊纲/易纲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶大盗\",\n    \"author\": \"萨拉・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由\",\n    \"author\": \"托马斯・斯坦利/萨拉斯坦利・弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掉队的拉美\",\n    \"author\": \"塞巴斯蒂安・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么不平等至关重要\",\n    \"author\": \"托马斯・斯坎伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特阴谋\",\n    \"author\": \"余治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不平等社会\",\n    \"author\": \"沃尔特・沙伊德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的终结\",\n    \"author\": \"安妮・罗瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033516-85ae36?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚定不移\",\n    \"author\": \"保罗・沃尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨变：当代政治与经济的起源\",\n    \"author\": \"卡尔・波兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郁金香热\",\n    \"author\": \"迈克・达什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低增长社会\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032994-77e8ac?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越金融（纪念版）\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化：顶级企业家自述40年成长心法\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的帝国\",\n    \"author\": \"约翰.S.戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画理财课\",\n    \"author\": \"八宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力密码\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032886-a0070a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透信贷\",\n    \"author\": \"何华平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现价格\",\n    \"author\": \"姜洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新规则\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易打造的世界\",\n    \"author\": \"彭慕兰/史蒂文・托皮克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂生活中的金融常识\",\n    \"author\": \"陈思进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济史\",\n    \"author\": \"钱穆/叶龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美林传奇\",\n    \"author\": \"小温斯洛普 H.史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释：王福重金融学通识课\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030924-fca2c3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙特公司\",\n    \"author\": \"埃伦·R.沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史：从货币的起源到货币的未来\",\n    \"author\": \"苗延波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030525-dfd919?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁统治美国？公司富豪的胜利\",\n    \"author\": \"威廉・多姆霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被掩盖的原罪\",\n    \"author\": \"爱德华・巴普蒂斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒：如何用价值观创造价值\",\n    \"author\": \"弗雷德・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廉价的代价\",\n    \"author\": \"拉杰・帕特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029697-5b7480?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国陷阱\",\n    \"author\": \"弗雷德里克・皮耶鲁齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革三部曲\",\n    \"author\": \"吴敬琏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉花帝国\",\n    \"author\": \"斯文・贝克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029418-eec041?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"较量：乐观的经济学与悲观的生态学\",\n    \"author\": \"保罗・萨宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从困境走向成功\",\n    \"author\": \"Pepe Nummi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029271-694df0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞经济\",\n    \"author\": \"蔡湫雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029121-564941?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非商业的逻辑\",\n    \"author\": \"申辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029109-348519?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学的思维方式（套装共2册）\",\n    \"author\": \"托马斯・索维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028518-678150?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过剩之地\",\n    \"author\": \"莫妮卡・普拉萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激情创业\",\n    \"author\": \"于刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富豪的心理\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028158-e90c4b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务危机\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识经济\",\n    \"author\": \"迪恩・卡尔兰/乔纳森・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028074-3310e2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八〇年代\",\n    \"author\": \"柳红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027843-4ff995?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期论\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效管理\",\n    \"author\": \"乔纳森・莱蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不颠覆，就会被淘汰\",\n    \"author\": \"杰・萨米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技\",\n    \"author\": \"张健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026967-ef96b8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小趋势²\",\n    \"author\": \"马克・佩恩/梅勒迪斯・法恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026817-44ce10?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅（原书第2版）\",\n    \"author\": \"皮厄特拉・里佛利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026250-f993f8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈层效应\",\n    \"author\": \"托马斯・科洛波洛斯/丹・克尔德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025653-5dccf9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国增长的起落\",\n    \"author\": \"罗伯特・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025557-5fe21b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贪婪的七宗罪\",\n    \"author\": \"斯图尔特・西姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025005-486788?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币大师\",\n    \"author\": \"埃里克・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024936-eb9734?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值规律\",\n    \"author\": \"水木然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024876-c08f98?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读中国经济（增订版）\",\n    \"author\": \"林毅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"订阅：数字时代的商业变现路径\",\n    \"author\": \"罗伯特・金奇尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024594-662d48?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为什么离开高盛\",\n    \"author\": \"格雷格・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅沟通力系列合集\",\n    \"author\": \"马丁・曼瑟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024171-e3e647?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨大的鸿沟\",\n    \"author\": \"约瑟夫・斯蒂格利茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024129-2ba25b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底特律往事\",\n    \"author\": \"比尔・弗拉斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高盛帝国（套装上下册）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023976-b41d46?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧元的思想之争\",\n    \"author\": \"马库斯・布伦纳迈耶等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023955-ebc85a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的陷阱\",\n    \"author\": \"阿里尔・扎拉奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡土中国、江村经济套装\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识商业\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国风云录（共5册）\",\n    \"author\": \"茜拉・科尔哈特卡等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023586-f64635?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大而不倒\",\n    \"author\": \"安德鲁・罗斯・索尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数文明\",\n    \"author\": \"涂子沛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解增长\",\n    \"author\": \"道格拉斯・洛西科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023250-ff1bb1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学关我什么事\",\n    \"author\": \"文安德・冯・彼特尔斯多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022896-9538ae?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择的悖论\",\n    \"author\": \"巴里・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤裸裸的统计学\",\n    \"author\": \"查尔斯・惠伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的玫瑰（全新升级版）\",\n    \"author\": \"但斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022164-b67987?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年轮回（第三版）\",\n    \"author\": \"沈联涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022110-935967?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022098-fc2d5f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑石的选择\",\n    \"author\": \"彼得・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021963-e5f1f3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的发现\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021693-d754a0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见未来商业（套装共4册）\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义简史\",\n    \"author\": \"于尔根・科卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后日本经济史\",\n    \"author\": \"野口悠纪雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021297-512a7a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济的律动\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021153-d537b4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众经济学\",\n    \"author\": \"帕萨・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021042-91492b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济的本质\",\n    \"author\": \"简·雅各布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021006-706a67?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"比赛中的行为经济学\",\n    \"author\": \"托拜厄斯・莫斯科维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020904-4868bc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崛起大战略\",\n    \"author\": \"新玉言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020853-23b46a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储的诞生\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击败庄家\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动的勇气\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020406-9e3f24?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的时代\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020283-d423d5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薛兆丰经济学讲义\",\n    \"author\": \"薛兆丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020289-11672c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈与社会\",\n    \"author\": \"张维迎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020199-4cd873?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搞定（全三册）\",\n    \"author\": \"戴维・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020034-d97493?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错误的行为+助推+赢家的诅咒\",\n    \"author\": \"理查德・塞勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019986-7e603f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横越未知\",\n    \"author\": \"周健工\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019683-4e86be?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱：7步创造终身收入\",\n    \"author\": \"托尼・罗宾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019368-76a1cb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国财政史十六讲\",\n    \"author\": \"刘守刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019311-2e842e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条与罗斯福新政\",\n    \"author\": \"埃里克・劳赫威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融可以颠覆历史\",\n    \"author\": \"王巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的代价\",\n    \"author\": \"托德·G·布赫霍尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019242-46e661?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功与运气\",\n    \"author\": \"罗伯特・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019080-7e8875?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞经济学\",\n    \"author\": \"温义飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018693-2f6ae5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅\",\n    \"author\": \"皮翠拉・瑞沃莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的中国工业革命\",\n    \"author\": \"文一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018393-aa4452?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨缪尔森经济学精选套装（第19版共4册）\",\n    \"author\": \"保罗・萨缪尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018045-002052?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一盘大棋？中国新命运解析\",\n    \"author\": \"罗思义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017718-94ee07?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级强势股：如何投资小盘价值成长股（珍藏版）\",\n    \"author\": \"肯尼斯・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当音乐停止之后\",\n    \"author\": \"艾伦・布林德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017622-dcb745?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与中国打交道\",\n    \"author\": \"亨利・鲍尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡十年，水大鱼大\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017037-4de889?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Business Adventures\",\n    \"author\": \"John Brooks\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能数据\",\n    \"author\": \"比约恩・布劳卿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国雄心\",\n    \"author\": \"马丁・雅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016716-d4f605?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级版图\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016413-98fcdd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"松下幸之助三书（套装共3本）\",\n    \"author\": \"松下幸之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016254-1869c5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Fintech：全球金融科技权威指南\",\n    \"author\": \"苏珊娜・奇斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑组织\",\n    \"author\": \"弗雷德里克・莱卢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016041-672fb1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱永不眠：资本世界的暗流涌动和金融逻辑\",\n    \"author\": \"香帅无花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容经济\",\n    \"author\": \"谢利明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济思想简史\",\n    \"author\": \"海因茨・库尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015903-3a8b81?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富足：改变人类未来的4大力量\",\n    \"author\": \"彼得・戴曼迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015900-a0dfb0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（全译本）\",\n    \"author\": \"亚当・斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015849-0975d2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策的智慧\",\n    \"author\": \"大卫・亨德森/查尔斯・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学通识课\",\n    \"author\": \"尼尔・基什特尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015651-08daff?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大拐点\",\n    \"author\": \"袁剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015597-bc638c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济解释（四卷本）\",\n    \"author\": \"张五常\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015558-88b6f3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济奇点\",\n    \"author\": \"史蒂文・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015492-0b15f1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新制造时代\",\n    \"author\": \"王千马/梁冬梅/何丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015264-52fd08?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术的终结\",\n    \"author\": \"默文・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015246-2b570e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币野史\",\n    \"author\": \"菲利克斯・马汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人时代\",\n    \"author\": \"马丁・福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015234-30ae0c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的本质\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简GDP史\",\n    \"author\": \"黛安娜・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015075-588dba?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史\",\n    \"author\": \"卡比尔・塞加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银资本：重视经济全球化中的东方\",\n    \"author\": \"贡德・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014439-33d3c7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一大亨（套装共2册）\",\n    \"author\": \"斯泰尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014319-72a8ef?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助推\",\n    \"author\": \"理查德・泰勒/卡斯・桑斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014280-c17c13?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众创新\",\n    \"author\": \"埃里克・冯・希佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妙趣横生博弈论（珍藏版）\",\n    \"author\": \"阿维纳什・迪克西特/巴里・奈尔伯夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014160-37866b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用博弈的思维看世界\",\n    \"author\": \"蒋文华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014109-0ed381?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯粹经济学\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013980-1ffdbe?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“错误”的行为\",\n    \"author\": \"理查德・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013920-5d454d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论的诡计\",\n    \"author\": \"王春永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论平话\",\n    \"author\": \"王则柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的财政密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的博弈\",\n    \"author\": \"约翰・斯蒂尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无价\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济大萧条还有多远\",\n    \"author\": \"刘军洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012900-3ec719?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国富人为何变穷\",\n    \"author\": \"张庭宾/艾经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降维攻击：未来互联网商业的三体法则\",\n    \"author\": \"高德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012711-3075ba?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻璃笼子\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品没有秘密\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃离不平等\",\n    \"author\": \"安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012318-a4fae0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本金融入门书\",\n    \"author\": \"邹一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012303-007194?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力与繁荣\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012258-603067?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信号与噪声\",\n    \"author\": \"纳特・西尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012051-590465?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物精神\",\n    \"author\": \"乔治・阿克洛夫/罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011916-aa3741?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务和魔鬼\",\n    \"author\": \"阿代尔・特纳勋爵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011802-eff8c4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国大城\",\n    \"author\": \"陆铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011787-8e42f4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本社会的17个矛盾\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011637-aacc42?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史2\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岛经济学\",\n    \"author\": \"彼得・希夫/安德鲁・希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011544-598357?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的逻辑\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011373-733a50?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国大趋势：新社会的八大支柱\",\n    \"author\": \"约翰・奈斯比特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011295-ef8ccd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克要买大杯咖啡\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年金融史\",\n    \"author\": \"威廉・戈兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的先知\",\n    \"author\": \"托马斯・麦克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010812-0d5497?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链社会\",\n    \"author\": \"龚鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菜场经济学\",\n    \"author\": \"财上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010680-4deff8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的皮球\",\n    \"author\": \"辉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010674-bc3805?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・像管理者一样思考（全15册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势研判：经济、政策与资本市场\",\n    \"author\": \"任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系力\",\n    \"author\": \"蒂姆・邓普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争（套装共5册）\",\n    \"author\": \"宋鸿兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾听全球的声音（全10册）\",\n    \"author\": \"经济学人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010230-dfe349?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑天鹅：如何应对不可预知的未来（升级版）\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信任\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009633-ce67ee?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资异类\",\n    \"author\": \"王利杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱不能买什么\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009447-bec7f0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革中国：市场经济的中国之路\",\n    \"author\": \"罗纳德・哈里・科斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009333-847c6a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类货币史\",\n    \"author\": \"戴维・欧瑞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是红的：看懂中国经济格局的一本书\",\n    \"author\": \"白云先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家兴衰\",\n    \"author\": \"鲁奇尔・夏尔马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大揭秘：庞氏骗局的前世今生\",\n    \"author\": \"柯琳・克罗丝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008772-79825d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性乐观派：一部人类经济进步史\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008781-b8b9ad?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜厅\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008706-d0afd8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能\",\n    \"author\": \"李开复/王咏刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学的思维方式\",\n    \"author\": \"保罗・海恩/彼得・勃特克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008682-5efea1?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活学活用博弈论\",\n    \"author\": \"詹姆斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风口上的猪：一本书看懂互联网金融\",\n    \"author\": \"肖璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的兴衰（套装共2册）\",\n    \"author\": \"保罗・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆点：如何制造流行\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可思议的年代\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本读通10位经济学大师\",\n    \"author\": \"菲尔・桑顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007854-f5a6d5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非富不可：曹仁超给年轻人的投资忠告\",\n    \"author\": \"曹仁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新一轮产业革命\",\n    \"author\": \"亚力克・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年河东：权力市场经济的困境\",\n    \"author\": \"杨继绳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱有术\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌舵三部曲（掌舵＋掌舵2+舵手）\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最需要的理财常识书\",\n    \"author\": \"王华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稀缺：我们是如何陷入贫穷与忙碌的\",\n    \"author\": \"塞德希尔・穆来纳森 / 埃尔德・沙菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德鲁克的最后忠告\",\n    \"author\": \"伊丽莎白・哈斯・埃德莎姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进步时代\",\n    \"author\": \"张国庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郎咸平说：新经济颠覆了什么\",\n    \"author\": \"郎咸平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007194-87eec7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集装箱改变世界（修订版）\",\n    \"author\": \"马克・莱文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻资本\",\n    \"author\": \"凯文·鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市长线法宝（原书第5版）\",\n    \"author\": \"杰里米J. 西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸穷爸爸\",\n    \"author\": \"罗伯特.T.清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（缩译全彩插图本）\",\n    \"author\": \"亚当·斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩根财团\",\n    \"author\": \"罗恩·彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟爱上管理学\",\n    \"author\": \"姚余梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006891-f90357?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草民经济学\",\n    \"author\": \"南勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006894-56ae7d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓愚：操纵与欺骗的经济学\",\n    \"author\": \"乔治·阿克洛夫/罗伯特·席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国：美国金融霸权的来源和基础\",\n    \"author\": \"迈克尔·赫德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦想与浮沉：A股十年上市博弈（2004～2014）\",\n    \"author\": \"王骥跃/班妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED竞争心理学\",\n    \"author\": \"玛格丽特·赫夫南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时寒冰说：未来二十年，经济大趋势（合集）\",\n    \"author\": \"时寒冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是部金融史（全新修订典藏版）\",\n    \"author\": \"陈雨露/杨栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上帝国\",\n    \"author\": \"萝莉·安·拉罗科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006567-e71694?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"还原真实的美联储\",\n    \"author\": \"王健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产江湖\",\n    \"author\": \"肖宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006465-0c5bcc?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿什么拯救中国经济？\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴立宁的传记与文集\",\n    \"author\": \"戴立宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融之王\",\n    \"author\": \"利雅卡特・艾哈迈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006060-6d6043?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"豪门兴衰：百年香港商业\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣氏百年：中国商业第一家族\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由选择（珍藏版）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005688-284601?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活中的经济学\",\n    \"author\": \"吉蒂・贝克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005685-e57087?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长的极限\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘活：中国民间金融百年风云\",\n    \"author\": \"王千马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历代经济变革得失\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005394-6e2c3b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跌荡一百年：中国企业1870-1977（纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩荡两千年：中国企业公元前7世纪-1869年\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集体行动的逻辑\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才的回声\",\n    \"author\": \"托德・布赫霍尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005325-8061fd?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学常识1000问（超值金版）\",\n    \"author\": \"孙豆豆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005202-d6a781?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的雪球\",\n    \"author\": \"吕波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福极简经济学\",\n    \"author\": \"蒂莫西・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大江东去（全3册）\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005040-5558e2?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大败局（十周年套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反脆弱：从不确定性中获益\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾十五年\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡三十年（套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼经济学\",\n    \"author\": \"史蒂芬・列维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004776-64c28d?p=8866\",\n    \"category\": \"经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大流感\",\n    \"author\": \"约翰 M.巴里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866\",\n    \"category\": \"流感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命流感\",\n    \"author\": \"杰里米・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866\",\n    \"category\": \"流感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新史学&#038;多元对话系列（第一辑）\",\n    \"author\": \"陈怀宇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509076-0c1223?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国名家史学典藏系列（共14册）\",\n    \"author\": \"吕思勉/郑振铎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989620-4f5379?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：康有为与章太炎（全二册）\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放言有忌\",\n    \"author\": \"虞云国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042660-f57275?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"資治通鑑·繁體豎排版（胡三省注）\",\n    \"author\": \"司馬光編集/胡三省輯注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030630-44c1c2?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝那些事儿（1-9）\",\n    \"author\": \"当年明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866\",\n    \"category\": \"史学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古埃及女性\",\n    \"author\": \"克里斯蒂安・雅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512898-c00ee5?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃及四千年\",\n    \"author\": \"乔安・弗莱彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029427-79b57f?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃及神话\",\n    \"author\": \"加里·J.肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025149-2a44c7?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开罗埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀金字塔\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008451-7b089f?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漠法则\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008442-61c5a4?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首相的正义\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008430-839940?p=8866\",\n    \"category\": \"埃及\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三体秘密\",\n    \"author\": \"田加刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508785-577194?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《三体》中的物理学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Three-Body Problem\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013644-82ce19?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Dark Forest\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013641-7de59a?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Death&#8217;s End\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013638-dd39ad?p=8866\",\n    \"category\": \"三体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一旦能放声嘲笑自己，你就自由了\",\n    \"author\": \"梅丽莎・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499704-86a34e?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的沟通力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无压力社交\",\n    \"author\": \"吉莉恩・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512292-5b84b2?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朋友圈的人际高手\",\n    \"author\": \"诸葛思远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997123-04d286?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效沟通的100种方法\",\n    \"author\": \"王利利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向心理学\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲切的艺术\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界没有陌生人\",\n    \"author\": \"洪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990346-669e7d?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诚实的信号\",\n    \"author\": \"阿莱克斯・彭特兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有意识的社交\",\n    \"author\": \"肯・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简社交\",\n    \"author\": \"莫拉格・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓情商高，就是会说话\",\n    \"author\": \"佐佐木圭一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通赢家\",\n    \"author\": \"徐丽丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049902-070654?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津式高效沟通\",\n    \"author\": \"冈田昭人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受益一生的六本书（套装六册）\",\n    \"author\": \"鬼谷子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会说脏话？\",\n    \"author\": \"埃玛・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何结交比你更优秀的人\",\n    \"author\": \"康妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从受欢迎到被需要\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10秒沟通\",\n    \"author\": \"荒木真理子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话第一步\",\n    \"author\": \"麦克▪P.尼可斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话2\",\n    \"author\": \"马薇薇/黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑说服力\",\n    \"author\": \"陈浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020013-f61abe?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"披着羊皮的狼\",\n    \"author\": \"乔治.K.西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018948-a7cfe4?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何实现有效社交\",\n    \"author\": \"凯伦・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018606-3ed13e?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至关重要的关系\",\n    \"author\": \"里德・霍夫曼/本・卡斯诺瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018369-4bb227?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再也不怕跟人打交道\",\n    \"author\": \"莉尔・朗兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交的本质\",\n    \"author\": \"兰迪・扎克伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交天性\",\n    \"author\": \"马修・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡康永的说话之道\",\n    \"author\": \"蔡康永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014031-30040b?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决冲突的关键技巧\",\n    \"author\": \"达纳・卡斯帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼搭讪学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼约会学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008952-8a6737?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通的艺术\",\n    \"author\": \"罗纳德・阿德勒/拉塞尔・普罗克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力四射：如何打动、亲近和影响他人\",\n    \"author\": \"帕特里克・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都聊得来\",\n    \"author\": \"迈克・贝克特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生的中国人\",\n    \"author\": \"杨猛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005721-fc7d62?p=8866\",\n    \"category\": \"社交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰小说精选（读客经典）\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866\",\n    \"category\": \"伏尔泰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生自传\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042621-63bfda?p=8866\",\n    \"category\": \"丹麦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹麦女孩\",\n    \"author\": \"大卫・埃贝尔舍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019593-1352dc?p=8866\",\n    \"category\": \"丹麦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹麦人为什么幸福\",\n    \"author\": \"迈克・维金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866\",\n    \"category\": \"丹麦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866\",\n    \"category\": \"丹麦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通天人物\",\n    \"author\": \"李佩甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023817-c140d9?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参谋助手论\",\n    \"author\": \"王怀志/郭政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015459-a2ef41?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在大清官场30年\",\n    \"author\": \"黄云凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011568-9f64c1?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幕僚\",\n    \"author\": \"黄晓阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008985-7da4cb?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大哥：流血的商战1-3\",\n    \"author\": \"庹政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008979-6d092b?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二号首长\",\n    \"author\": \"黄晓阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008580-78b9e7?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳谋为上\",\n    \"author\": \"夏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007908-6e6069?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌舵三部曲（掌舵＋掌舵2+舵手）\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯卫东官场笔记（1-8册+巴国侯氏）\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006186-fed3db?p=8866\",\n    \"category\": \"官场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗塞塔夫人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493737-177581?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤汤奇幻童年故事本（套装6册）\",\n    \"author\": \"汤汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐王子（译文经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042723-bfc360?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空故事\",\n    \"author\": \"苏珊娜・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘿，小家伙\",\n    \"author\": \"温酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公主走进黑森林\",\n    \"author\": \"吕旭亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032340-822a73?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺与玫瑰（读客经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028629-d7c7bb?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子（作家榜经典文库）\",\n    \"author\": \"圣-埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027807-091fea?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔斯骑鹅历险记（作家榜经典文库）\",\n    \"author\": \"塞尔玛・拉格洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林童话（果麦经典）\",\n    \"author\": \"格林兄弟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027186-65bb3b?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽丝漫游奇境（作家榜经典文库）\",\n    \"author\": \"刘易斯・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027171-b9c3bc?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·潘\",\n    \"author\": \"詹姆斯・马修・巴利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024849-4284ce?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞男孩\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024714-b9a35e?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊索寓言\",\n    \"author\": \"伊索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022137-b00931?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尔德·达尔作品典藏（共13册）\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好心眼儿巨人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866\",\n    \"category\": \"童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词里的趣事套装（全4册）\",\n    \"author\": \"王月亮/黄震/黄秀春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866\",\n    \"category\": \"词曲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰教育全球第一的秘密（珍藏版）\",\n    \"author\": \"陈之华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866\",\n    \"category\": \"芬兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰人的噩梦\",\n    \"author\": \"卡罗利娜・科尔霍宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866\",\n    \"category\": \"芬兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊朗四千年\",\n    \"author\": \"霍昌・纳哈万迪/伊夫・博马提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499314-26cba2?p=8866\",\n    \"category\": \"伊朗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中原大战：民国军阀的终极逐鹿\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006606-dd3be8?p=8866\",\n    \"category\": \"中原大战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的战斗：美国人眼中的朝鲜战争（修订版）\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008763-ceb9cf?p=8866\",\n    \"category\": \"朝鲜战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借钱：利息、债务和资本的故事\",\n    \"author\": \"查尔斯・盖斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866\",\n    \"category\": \"借贷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝定居指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝穿越指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉（增订版）\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984574-129632?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5000年文明启示录\",\n    \"author\": \"威廉·H.麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982480-ddd078?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的误区\",\n    \"author\": \"韦恩・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051744-d5fffa?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的心理学\",\n    \"author\": \"G. 尼尔・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035829-d36c8b?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣重说晚清民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009573-2a5b19?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哇，历史原来可以这样学（套装共2册）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866\",\n    \"category\": \"通俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸神的黄昏\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反战之战\",\n    \"author\": \"乌娜·A. 海瑟薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495162-eff7e1?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬与狮\",\n    \"author\": \"兰晓龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498414-f46279?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔登战役\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代兵器大百科（套装共12册）\",\n    \"author\": \"《深度军事》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争艺术史（全4卷）\",\n    \"author\": \"汉斯・德尔布吕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502593-9217ce?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王树增战争系列（全5册）\",\n    \"author\": \"王树增\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506748-bc1f58?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西线无战事（果麦经典）\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509091-e5d1af?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滔天洪水\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战的终结：1985-1991\",\n    \"author\": \"罗伯特・瑟维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510135-274388?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上谈兵\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与革命心理学\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高清一战全史（套装全3册）\",\n    \"author\": \"特霍兰・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511767-d6f291?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空王冠\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511281-8b102c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍与叛徒\",\n    \"author\": \"本・麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512889-07541d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚汉双雄\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄山：穿插\",\n    \"author\": \"徐贵祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513300-ed86c6?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汗之怒\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004506-1bb50d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的抵抗\",\n    \"author\": \"宿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004233-6220df?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪战争论\",\n    \"author\": \"克里斯托弗・科克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002808-69f5f4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的本质\",\n    \"author\": \"A.C.葛瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（041-050）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空军飞行员（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影师的妻子\",\n    \"author\": \"苏珊・乔伊森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争论（全三册）\",\n    \"author\": \"克劳塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争哀歌\",\n    \"author\": \"保宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052341-f29a44?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中法海战\",\n    \"author\": \"陈悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052590-a0f649?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最残酷的夏天：美国人眼中的越南战争\",\n    \"author\": \"菲利普・卡普托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1683维也纳之战\",\n    \"author\": \"安德鲁・惠克罗夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战火家园\",\n    \"author\": \"卡米拉・夏姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042651-db3e89?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵攻击（经典纪念版）\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国抗日战争史（四卷套装）\",\n    \"author\": \"张宪文/左用章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战完整历史实录（套装共38册）\",\n    \"author\": \"马夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球使命\",\n    \"author\": \"亨利・H・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国与拿破仑的决战\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牵风记\",\n    \"author\": \"徐怀中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034086-23a522?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口气读完的大国战史系列\",\n    \"author\": \"郭强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033447-bee645?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史（修订珍藏版）\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西线无战事\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030507-dc3c15?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利维亚日记\",\n    \"author\": \"切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战风云：史上最大规模战争的伤痛（全3册）\",\n    \"author\": \"杨少丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争系列\",\n    \"author\": \"青梅煮酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命的倔强\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029979-766e1f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争\",\n    \"author\": \"赫克特·C. 拜沃特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永别了，武器（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029100-d7f57e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丹药到枪炮\",\n    \"author\": \"欧阳泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅲ：血战长津湖\",\n    \"author\": \"何楚舞/凤鸣/陆宏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天：美国人眼中的朝鲜战争\",\n    \"author\": \"大卫・哈伯斯塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争\",\n    \"author\": \"儿岛襄\",\n    \"link\": \"链接未找到\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷山\",\n    \"author\": \"查尔斯・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025053-beeeae?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的面目\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赫尔曼·沃克作品集（共9册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024753-9ab4e4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国创世记：埃利斯建国史系列（套装共4册）\",\n    \"author\": \"约瑟夫·J.埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凛冬\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我从战场归来\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典特辑\",\n    \"author\": \"李湖光/王子午/宋毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023829-119ac1?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（001-040）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024885-e1f1b0?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克里米亚战争\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023688-1a0b47?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里的黎明静悄悄……\",\n    \"author\": \"鲍・瓦西里耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年战争简史\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争风云（全2册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020166-6166b7?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与回忆（全2册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020172-35770b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史上的南京之战（套装共2册）\",\n    \"author\": \"王洪光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019944-5497a4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的内战\",\n    \"author\": \"胡素珊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019377-b3f66d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨人的对决：日德兰海战中的主力舰\",\n    \"author\": \"张宇翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019386-bcedf2?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无敌舰队\",\n    \"author\": \"加勒特・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血性军人：百年中国战争亲历纪（共13册）\",\n    \"author\": \"全国政协文史和学习委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滇西抗战三部曲\",\n    \"author\": \"余戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015765-b0be9b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012468-207f9d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新派遣\",\n    \"author\": \"菲尔・克莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012450-4c35c5?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争简史（套装共2册）\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012003-13f38f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲的陨落\",\n    \"author\": \"马克思・加罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦刻尔克\",\n    \"author\": \"沃尔特・劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人眼中最真实的越南战争\",\n    \"author\": \"卡尔・马兰提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010791-35d8b5?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：中国八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1943黄金大争战\",\n    \"author\": \"岩波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008448-f2a49c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越南密战：1950-1954中国援越战争纪实\",\n    \"author\": \"钱江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵贩子（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008028-fba137?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪峰山决战（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008007-bd9450?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难一日：海豹六队击毙本・拉登行动亲历\",\n    \"author\": \"马克・欧文/凯文・莫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的分裂：美国独立战争的起源\",\n    \"author\": \"郑非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战太平洋（HBO官方完整版）\",\n    \"author\": \"休·安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪孽的报应\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天行健（套装全7册）\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006582-7f3c57?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青铜时代：五百年的大局观（套装共5册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵军（译文经典）\",\n    \"author\": \"伊萨克・巴别尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006369-d34b18?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006264-a3a0da?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争2\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎部队：国民党抗日王牌七十四军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一只眼看鸦片战争\",\n    \"author\": \"瞿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005928-95ec0a?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战回忆录（全五卷）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战回忆录（全六卷）\",\n    \"author\": \"温斯顿·丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年乱局：争霸东北亚（套装共二册）\",\n    \"author\": \"方俞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005217-0b648c?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清日战争\",\n    \"author\": \"宗泽亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004950-0d79b6?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争就是这么回事儿（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可退的战士\",\n    \"author\": \"杰克·希金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004932-962a95?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国式英雄\",\n    \"author\": \"杰克·希金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004926-351dc3?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争从未如此热血：二战美日太平洋大对决（全四册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866\",\n    \"category\": \"战争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李小龙：不朽的东方传奇（图文版）\",\n    \"author\": \"郑杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029616-f92b6d?p=8866\",\n    \"category\": \"李小龙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我所有的朋友都死了（套装共2册）\",\n    \"author\": \"艾弗里・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866\",\n    \"category\": \"孤独感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡的视线\",\n    \"author\": \"刘易斯・M.科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002592-e3895f?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法学讲义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宪法学讲义（第三版）\",\n    \"author\": \"林来梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990535-066ef2?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈正义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲人奥里翁\",\n    \"author\": \"龚祥瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028482-369eaa?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司法的细节\",\n    \"author\": \"刘仁文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022755-7efa0d?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法格言的展开（第三版）\",\n    \"author\": \"张明楷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866\",\n    \"category\": \"法学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威士忌原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866\",\n    \"category\": \"威士忌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：苏州·杭州\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866\",\n    \"category\": \"苏州\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主的不满\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的多角度解读（套装共20册）\",\n    \"author\": \"蒋廷黻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑麋鹿如是说 ：生命与自然之诗\",\n    \"author\": \"尼古拉斯・黑麋鹿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020922-d80161?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草原帝国（全译插图本）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的精神\",\n    \"author\": \"辜鸿铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合理的怀疑\",\n    \"author\": \"德肖维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独裁者手册\",\n    \"author\": \"布鲁斯・布鲁诺・德・梅斯奎塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866\",\n    \"category\": \"民族\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的天\",\n    \"author\": \"子日山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰糖炖雪梨（全两册）\",\n    \"author\": \"酒小七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053997-27d41f?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野\",\n    \"author\": \"巫哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪案迷城\",\n    \"author\": \"张瑞兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，旧时光（全三册）\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016317-8d59ff?p=8866\",\n    \"category\": \"校园\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤鹰（全2册）\",\n    \"author\": \"邵雪城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046029-a3ef29?p=8866\",\n    \"category\": \"缉毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无夜边境\",\n    \"author\": \"田浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038571-bea58f?p=8866\",\n    \"category\": \"缉毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破冰行动\",\n    \"author\": \"千羽之城\",\n    \"link\": \"链接未找到\",\n    \"category\": \"缉毒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工不智能\",\n    \"author\": \"梅瑞狄斯・布鲁萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491643-5332a8?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能学习的未来\",\n    \"author\": \"罗斯玛丽・卢金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511113-9bb24f?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能的本质\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029304-4060a7?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命3.0\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021120-2c89e2?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点临近\",\n    \"author\": \"雷・库兹韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017070-174382?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能数据\",\n    \"author\": \"比约恩・布劳卿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能浪潮\",\n    \"author\": \"布雷特・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015984-23b495?p=8866\",\n    \"category\": \"智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在中国大地上\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的柠檬\",\n    \"author\": \"海伦娜・阿特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文化漫游\",\n    \"author\": \"鲁成文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大吉岭到克什米尔\",\n    \"author\": \"闻中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沿坟墓而行\",\n    \"author\": \"纳韦德・凯尔曼尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去他的巴西\",\n    \"author\": \"胡续冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午6：旧山河，新故事\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和伊壁鸠鲁一起旅行\",\n    \"author\": \"丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日46：东京就是日本！\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047952-aa1e1c?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘境\",\n    \"author\": \"乔舒亚・福尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅰ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅰ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠峰史诗\",\n    \"author\": \"荣赫鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国环岛之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045783-b17647?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯是一条鱼\",\n    \"author\": \"提齐安诺・斯卡帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航西飞\",\n    \"author\": \"柏瑞尔・马卡姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山旅书札\",\n    \"author\": \"伊莎贝拉・博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说吧，叙利亚\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨西哥湾千里徒步行\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前往阿姆河之乡\",\n    \"author\": \"罗伯特・拜伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老巴塔哥尼亚快车\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别列津纳河\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国深南之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往印度次大陆\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨天炎天\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边境·近境\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下巴黎\",\n    \"author\": \"洛朗・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方的鼓声\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔\",\n    \"author\": \"埃布鲁・宝雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，不止旅行\",\n    \"author\": \"周硚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡苦不苦\",\n    \"author\": \"陈丹燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明天我要去冰岛\",\n    \"author\": \"嘉倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：苏州·杭州\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这世界啊，随他去吧\",\n    \"author\": \"李沐泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017355-7f8a21?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机场里的小旅行\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016749-ca198e?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与爱之地：入以色列记\",\n    \"author\": \"云也退\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014499-251f20?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞乐鸟的手绘旅行笔记：厦门\",\n    \"author\": \"飞乐鸟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的驼峰之旅\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013344-7beb9e?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的世外桃源\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013326-79c181?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老两口儿的狂欢\",\n    \"author\": \"维多利亚・特威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013329-02ec90?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去，你的旅行\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013356-e5707c?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣地亚哥朝圣之路\",\n    \"author\": \"王赛男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011304-11a0bb?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，改变一生的旅行\",\n    \"author\": \"尼玛达娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的朝圣\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009921-87bfcb?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们最幸福\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背包十年\",\n    \"author\": \"小鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进入空气稀薄地带\",\n    \"author\": \"乔恩・克拉考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旅行与读书\",\n    \"author\": \"詹宏志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生：面对冰封的海洋\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好吗好的\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007014-27f7a8?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅与摩托车维修艺术\",\n    \"author\": \"罗伯特·M.波西格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是尘埃也是光\",\n    \"author\": \"梁子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乖，摸摸头\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866\",\n    \"category\": \"旅行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芭比：一个娃娃风靡世界的秘密\",\n    \"author\": \"罗宾・格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866\",\n    \"category\": \"芭比\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧：冰与火之地的寻真之旅\",\n    \"author\": \"迈克尔・布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498264-40e9d6?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的材料\",\n    \"author\": \"艾妮莎・拉米雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506454-00e823?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常人文课（共5册）\",\n    \"author\": \"泰吉万・帕丁格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506901-fb7ee6?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代人的日常生活2\",\n    \"author\": \"王磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509049-84a6b4?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人论（果麦经典）\",\n    \"author\": \"恩斯特・卡西尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513714-66cf91?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生只为守敦煌\",\n    \"author\": \"叶文玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004449-d3ed62?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这是真的，我在一本书里读到过\",\n    \"author\": \"巴斯卡尔・博尼法斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后望书（最终修订本）\",\n    \"author\": \"朱幼棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003348-6516f4?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妆束：大唐女儿行\",\n    \"author\": \"左丘萌/末春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁豫有约：说出你的故事（共5册）\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫六百年\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001329-12e528?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不让生育的社会\",\n    \"author\": \"小林美希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文精神的伟大冒险\",\n    \"author\": \"菲利普·E.毕肖普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无神论（牛津通识读本）\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轴心时代\",\n    \"author\": \"凯伦・阿姆斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才为何成群地来\",\n    \"author\": \"王汎森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简哲学史\",\n    \"author\": \"莱斯莉・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学是怎样炼成的\",\n    \"author\": \"蒂莫西・威廉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我心归处是敦煌\",\n    \"author\": \"樊锦诗口述/顾春芳撰写\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史：从上古传说到1949\",\n    \"author\": \"邓广铭/田余庆/戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘境\",\n    \"author\": \"乔舒亚・福尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪思想史：从弗洛伊德到互联网\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037851-de25ea?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC艺术经典三部曲\",\n    \"author\": \"肯尼斯・克拉克/罗伯特・休斯/西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033444-1d3101?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字人文\",\n    \"author\": \"安妮·博迪克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳朵借我\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明大传：知行合一的心学智慧（全新修订版）\",\n    \"author\": \"冈田武彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029652-25187b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅山的交往和应酬（增订本）\",\n    \"author\": \"白谦慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028113-e9791a?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛读书札记\",\n    \"author\": \"赵一凡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027321-89ad70?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叶礼庭作品集（套装共3册）\",\n    \"author\": \"叶礼庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026292-6b6467?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集续编\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开一颗心\",\n    \"author\": \"斯蒂芬・韦斯塔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜威选集（5卷本）\",\n    \"author\": \"刘放桐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓶花谱 瓶史\",\n    \"author\": \"张谦德/袁宏道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020061-e5ca31?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明大历史\",\n    \"author\": \"伊恩・克夫顿/杰里米・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019500-4367ef?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾柯谈美丑（套装共2册）\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019590-c15b80?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后物欲时代的来临\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019419-3b77fe?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只名叫鲍勃的流浪猫\",\n    \"author\": \"詹姆斯・鲍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018270-7946fb?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珍物：中国文艺百人物语\",\n    \"author\": \"生活月刊编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018216-c353d3?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的智慧（套装共6册）\",\n    \"author\": \"赵丽荣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017973-981516?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本精选集（第一辑共58册）\",\n    \"author\": \"雷蒙德・瓦克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016143-e41d19?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协和医事\",\n    \"author\": \"常青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界佛教通史（套装共14卷）\",\n    \"author\": \"周贵华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活过\",\n    \"author\": \"南方人物周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014892-297fa9?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十里红妆\",\n    \"author\": \"吴瑞贤/吴静波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014310-ce95e8?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗物质与恐龙\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都市速写簿\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书（套装共6册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间地图\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011370-deef54?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师讲国学经典文库（套装共5册）\",\n    \"author\": \"季风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011094-ca367b?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识大融通：21世纪的科学与人文\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009588-edfc82?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴阳五要奇书\",\n    \"author\": \"郭璞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009429-d6e794?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传记文学书系（套装共4册）\",\n    \"author\": \"唐德刚/梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008748-e9f5e7?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾五百年\",\n    \"author\": \"戴维・考特莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些消失的文明\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯庸笑翻中国简史\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866\",\n    \"category\": \"人文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈话录\",\n    \"author\": \"王安忆/张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866\",\n    \"category\": \"访谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己作为方法\",\n    \"author\": \"项飙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002262-18b150?p=8866\",\n    \"category\": \"访谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁豫有约：说出你的故事（共5册）\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866\",\n    \"category\": \"访谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表演者言\",\n    \"author\": \"电影频道《今日影评》栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866\",\n    \"category\": \"访谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦格纳事件\",\n    \"author\": \"弗雷德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028971-e22892?p=8866\",\n    \"category\": \"尼采\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教育家叔本华\",\n    \"author\": \"韦启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009453-72d4ea?p=8866\",\n    \"category\": \"尼采\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效清单工作法\",\n    \"author\": \"达蒙・扎哈里亚德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866\",\n    \"category\": \"清单\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力清单\",\n    \"author\": \"吉恩・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866\",\n    \"category\": \"清单\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在人间：肿瘤科女医生亲历记录\",\n    \"author\": \"沈琳/戴志悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498033-dfa046?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体由我\",\n    \"author\": \"希拉・德利兹/路易莎・施托默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林病人\",\n    \"author\": \"娜塔莉亚・霍尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498453-ee35c9?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学简史\",\n    \"author\": \"杰克琳・杜芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499506-2cac2b?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告2\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499542-190a47?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狡猾的细胞\",\n    \"author\": \"雅典娜・阿克蒂皮斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500322-b11884?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解国医典藏系列套装（全6册）\",\n    \"author\": \"张仲景等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500892-16aa17?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外科的诞生\",\n    \"author\": \"大卫・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500703-c0710c?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"药物简史\",\n    \"author\": \"德劳因・伯奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500718-9137b0?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耐药菌小史\",\n    \"author\": \"穆罕默德·H.扎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500787-4ece60?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·免疫与治愈\",\n    \"author\": \"迈克尔・金奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张文鹤护肤指南\",\n    \"author\": \"张文鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21个被“淘汰”的人体器官\",\n    \"author\": \"坂井建雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509247-6918f2?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命敌人\",\n    \"author\": \"迈克尔·T.奥斯特霍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类大瘟疫\",\n    \"author\": \"马克・霍尼斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手术刀下的历史\",\n    \"author\": \"阿诺德・范德拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510960-26a6f8?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当死亡化作生命\",\n    \"author\": \"书亚・梅兹里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史·中国篇\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512193-724ebd?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血液循环\",\n    \"author\": \"弗朗索瓦・布斯塔尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512286-58e5e6?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午之魔\",\n    \"author\": \"安德鲁・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病的文化史\",\n    \"author\": \"洛伊斯·N.玛格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染\",\n    \"author\": \"亚当・库哈尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003660-c8d8ff?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远的现在时\",\n    \"author\": \"苏珊・科金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003021-92ad62?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中西医的博弈\",\n    \"author\": \"皮国立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎药师\",\n    \"author\": \"唐纳德・R・基尔希/奥吉・奥加斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000702-1890cd?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"薄世宁医学通识讲义\",\n    \"author\": \"薄世宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999703-5d8070?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触（第二版）\",\n    \"author\": \"大卫・奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何睡个好觉\",\n    \"author\": \"劳伦斯·J. 爱泼斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大流感\",\n    \"author\": \"约翰 M.巴里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法医报告\",\n    \"author\": \"苏・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口一口“吃掉”你\",\n    \"author\": \"生命时报\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命流感\",\n    \"author\": \"杰里米・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《新科学家》杂志轻科普系列（套装全3册）\",\n    \"author\": \"新科学家杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新型冠状病毒感染防护\",\n    \"author\": \"何剑峰/宋铁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级潜能\",\n    \"author\": \"亚当・皮奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自愈力的真相\",\n    \"author\": \"乔・马钱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045252-1206fc?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同的生命线\",\n    \"author\": \"约翰・苏尔斯顿/乔治娜・费里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产科男医生手记\",\n    \"author\": \"田吉顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病者生存\",\n    \"author\": \"沙龙・莫勒姆/乔纳森・普林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12个我\",\n    \"author\": \"安定医院郝医生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040833-aa12b3?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"免疫\",\n    \"author\": \"尤拉・比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的遗传学\",\n    \"author\": \"伯顿・格特曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新药的故事\",\n    \"author\": \"梁贵柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的法庭科学\",\n    \"author\": \"杰伊・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体2\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对笑喷之弃业医生日志\",\n    \"author\": \"亚当・凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌群大脑\",\n    \"author\": \"戴维・珀尔马特/克里斯廷・洛伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"急救，比医生快一步\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破解生死大数据\",\n    \"author\": \"杰瑞米・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的意识\",\n    \"author\": \"约翰・巴奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开一颗心\",\n    \"author\": \"斯蒂芬・韦斯塔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医生的精进\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西1\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史\",\n    \"author\": \"莉迪亚・康/内特・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑医疗史\",\n    \"author\": \"苏上豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学的真相\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的微生物\",\n    \"author\": \"马丁・布莱泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020871-3d589b?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安慰剂效应\",\n    \"author\": \"莉萨・兰金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020814-39b49a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒防御和心理复原力三部曲\",\n    \"author\": \"内森・沃尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020532-469146?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿图医生（第一季）\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020301-9a986a?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿图医生（第二季）\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020292-b5bcc6?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的战争\",\n    \"author\": \"大卫・塞尔旺・施莱伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020205-f17668?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们应当行走\",\n    \"author\": \"戴维・M. 奥辛斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017937-987b61?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越人类\",\n    \"author\": \"伊芙・赫洛尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017697-b3e68f?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症科普（套装共2册）\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协和医事\",\n    \"author\": \"常青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湛庐文化医学人文经典书系（套装共5册）\",\n    \"author\": \"阿图・葛文德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012834-c2175e?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的抉择\",\n    \"author\": \"杰尔姆・格罗普曼/帕米拉・哈茨班德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012789-a455a7?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的故事：进化、健康与疾病\",\n    \"author\": \"丹尼尔・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈克尔·波伦“饮食觉醒”系列（套装共3册）\",\n    \"author\": \"迈克尔・波伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触：全球大型传染病探秘之旅\",\n    \"author\": \"大卫·奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·真相\",\n    \"author\": \"菠萝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众病之王：癌症传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866\",\n    \"category\": \"医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不敢懈怠\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866\",\n    \"category\": \"南非\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南非的启示\",\n    \"author\": \"秦晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012105-8052a4?p=8866\",\n    \"category\": \"南非\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有宽恕就没有未来\",\n    \"author\": \"德斯蒙德・图图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866\",\n    \"category\": \"南非\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有人必须死\",\n    \"author\": \"李非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051657-e02af4?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅的忧郁\",\n    \"author\": \"安德烈・库尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045798-191757?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034809-9dfcdb?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红拂夜奔\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032253-de9ad1?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万寿寺\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030480-1e074b?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙超度指南\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866\",\n    \"category\": \"荒诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长安客\",\n    \"author\": \"北溟鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995563-0b6444?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝定居指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝穿越指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐兴亡三百年\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023952-0cff73?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贞观幽明谭\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023625-5e1243?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝那些事儿（套装共7册）\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐这二百九十年1：贞观之路\",\n    \"author\": \"吃青菜的蜗牛\",\n    \"link\": \"链接未找到\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐这二百九十年2：天皇天后\",\n    \"author\": \"吃青菜的蜗牛\",\n    \"link\": \"链接未找到\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界性的帝国：唐朝\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009291-f01621?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝绝对很邪乎\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009138-deec69?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日落九世纪：大唐帝国的衰亡\",\n    \"author\": \"赵益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐太宗（全三卷）\",\n    \"author\": \"赵扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007050-bb3026?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录2：长安鬼迹\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐的四张面孔（套装共四册）\",\n    \"author\": \"东江月明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005238-f97e96?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血腥的盛唐大全集（珍藏版）\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005133-8ad8de?p=8866\",\n    \"category\": \"唐朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑书系（套装7册）\",\n    \"author\": \"吉姆・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497502-218ca7?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们星球上的生命\",\n    \"author\": \"大卫・爱登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503952-5bd190?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界自然文学经典：博物图鉴版（共12册）\",\n    \"author\": \"伊迪丝・霍尔登等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505827-9f090e?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳台人的植物生活\",\n    \"author\": \"伊藤正幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508935-c37c4a?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极观星指南\",\n    \"author\": \"鲍勃・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津大学自然史博物馆的寻宝之旅\",\n    \"author\": \"凯特・迪思顿/佐薇・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510750-5b4a2a?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方草木之美\",\n    \"author\": \"西莉亚・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然界的印象（作家榜经典文库）\",\n    \"author\": \"儒勒・列那尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511644-242e91?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达尔文的战争\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步的艺术（果麦经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004617-10c91b?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳗鱼的旅行\",\n    \"author\": \"帕特里克・斯文松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水的密码\",\n    \"author\": \"特里斯坦・古利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004038-2e1bbb?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的故事\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海鸟的哭泣\",\n    \"author\": \"亚当・尼科尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000207-89a275?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与达尔文共进晚餐\",\n    \"author\": \"乔纳森・西尔弗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然的音符\",\n    \"author\": \"自然科研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之源\",\n    \"author\": \"尼克・連恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨：一部自然与文化的历史\",\n    \"author\": \"辛西娅・巴内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造物记：人与树的故事\",\n    \"author\": \"罗伯特・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052899-8745d3?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《科学美国人》精选系列科学全景套装（共14册）\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉鲨\",\n    \"author\": \"莫腾・安德雷亚斯・斯特罗克奈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山之四季（果麦经典）\",\n    \"author\": \"高村光太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠峰史诗\",\n    \"author\": \"荣赫鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在西伯利亚森林中\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二堂经典科普课\",\n    \"author\": \"吴京平/汪诘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045681-e1cc56?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一道曙光下的真实\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的事情\",\n    \"author\": \"苇岸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听客溪的朝圣\",\n    \"author\": \"安妮・迪拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们花园里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们林地里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱歌的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC自然探索系列（套装共7册）\",\n    \"author\": \"阿拉斯泰尔・福瑟吉尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035511-2fd3b9?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一想到还有95%的问题留给人类，我就放心了\",\n    \"author\": \"豪尔赫・陈/丹尼尔・怀特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟类的天赋\",\n    \"author\": \"珍妮弗・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"起源：万物大历史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029259-608e4e?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有极限的科学\",\n    \"author\": \"周建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029220-f6becc?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的历程（修订第4版）\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缤纷的生命\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云彩收集者手册\",\n    \"author\": \"加文・普雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024291-bd3b5c?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的法则\",\n    \"author\": \"肖恩·B·卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道生命的答案\",\n    \"author\": \"丹尼尔・查莫维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好！植物（全彩）\",\n    \"author\": \"喵喵植物控\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造自然\",\n    \"author\": \"安德烈娅・武尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017490-5b557e?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土：文明的侵蚀\",\n    \"author\": \"戴维·R. 蒙哥马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016863-fce466?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞鸟记\",\n    \"author\": \"欧仁・朗贝尔/保罗・罗贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016632-58b036?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅定荒野\",\n    \"author\": \"加里・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理学与生活：全彩插图第11版\",\n    \"author\": \"阿瑟・格蒂斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的森林\",\n    \"author\": \"戴维・哈斯凯尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的精神生活\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳底下的新鲜事\",\n    \"author\": \"约翰・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"森林的奇妙旅行\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006462-24745a?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大自然的社交网络\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006459-66ad57?p=8866\",\n    \"category\": \"自然\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"磨坊信札（作家榜经典文库）\",\n    \"author\": \"阿尔封斯・都德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491025-903fa5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年百部红色经典系列：第一辑（套装共20册）\",\n    \"author\": \"周梅森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491169-00db51?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代作品集\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491061-7ee4c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读29：当代剧作选\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491283-25cf73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名利场（作家榜经典文库）\",\n    \"author\": \"萨克雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491325-e911e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长岛小记\",\n    \"author\": \"郭红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491448-bef079?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不定的荣耀\",\n    \"author\": \"胡安・萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491469-ed6e5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别的声音，别的房间\",\n    \"author\": \"杜鲁门・卡波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491487-56594b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读28：明亮的时刻-女导演特辑\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491529-ab13d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水经注套装全五册（全本全注全译）\",\n    \"author\": \"郦道元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491544-98a70b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一把刀，千个字\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491508-43620c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身着狮皮\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491568-737c21?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伍尔夫经典作品集\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491682-d32ac0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我和我的命\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491784-b14e76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感知•理知•自我认知\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491952-add17f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿川有许多粪\",\n    \"author\": \"李沧东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492009-7adb9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃动物\",\n    \"author\": \"乔纳森・萨福兰・弗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492030-8fffdb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不对称\",\n    \"author\": \"莉萨・哈利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492102-378845?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱这哭不出来的浪漫\",\n    \"author\": \"严明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492279-da9a63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联文史新论（套装21册）\",\n    \"author\": \"王家范等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492912-36485b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毓老师说系列（共十八册）\",\n    \"author\": \"爱新觉罗・毓鋆讲述\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492564-bdeea5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪念碑\",\n    \"author\": \"王小鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492576-fe1eda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗来见我\",\n    \"author\": \"李修文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492600-2ff9d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借山而居（珍藏版）\",\n    \"author\": \"张二冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492669-bdbbd4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事便利店\",\n    \"author\": \"骆以军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492792-7294cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的边界\",\n    \"author\": \"滕肖澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493026-02c981?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"躺平\",\n    \"author\": \"贝恩德・布伦纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493068-3a03e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她来自马里乌波尔\",\n    \"author\": \"娜塔莎・沃丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"糜骨之壤\",\n    \"author\": \"奥尔加・托卡尔丘克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493194-10dea4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸在夜晚来临\",\n    \"author\": \"塞斯・诺特博姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493197-9582ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太多值得思考的事物\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493218-ba0ce5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破晓时分\",\n    \"author\": \"朱西甯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493230-5de6c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声誉\",\n    \"author\": \"唐诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡夫卡中短篇德文直译全集（套装共6册）\",\n    \"author\": \"弗朗茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493329-993645?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨夜\",\n    \"author\": \"詹姆斯・索特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493422-c08ce3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里约折叠\",\n    \"author\": \"米沙・格兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493452-eb3a63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攀登尼采\",\n    \"author\": \"约翰・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493479-e7baa8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李佩甫作品全集（共16册）\",\n    \"author\": \"李佩甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493590-629a68?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰烬的光辉：保罗策兰诗选\",\n    \"author\": \"保罗・策兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493716-834b61?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮木\",\n    \"author\": \"杨本芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493731-a2dea1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗塞塔夫人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493737-177581?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇妙的盘算社团\",\n    \"author\": \"高井浩章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493755-6d2ec3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天吾手记\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493800-6736c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的心迟到了：佩索阿情诗\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493809-0d4478?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上校的大衣\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493869-0cd243?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我将宇宙随身携带：佩索阿诗集\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493875-8ebc30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美好时代的背后\",\n    \"author\": \"凯瑟琳・布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495399-0e9e0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新冠时代的我们\",\n    \"author\": \"保罗・乔尔达诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚的自由\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496479-715b72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第三辑）\",\n    \"author\": \"唐克扬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496881-d79a75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原狼\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497058-c79f7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学的读法\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497127-2181e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文经典·第一辑（套装共20册）\",\n    \"author\": \"福楼拜等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497409-47086f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生必读之书：文景古典·名译插图本\",\n    \"author\": \"埃斯库罗斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497523-e093d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联苏俄文学经典译著（套装15册）\",\n    \"author\": \"高尔基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497571-7a9471?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文城\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497568-d87c4f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读水浒\",\n    \"author\": \"押沙龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497586-5c95ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唱吧！未安葬的魂灵\",\n    \"author\": \"杰丝米妮・瓦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497583-c26717?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找不到工作的一年\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497619-b0a991?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著名家经典译本·译文40（套装共40册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497904-e167f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏童作品精选集（套装共13册）\",\n    \"author\": \"苏童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497748-a7ae4a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦本三步的喜爱之物\",\n    \"author\": \"住野夜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497886-afc031?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中译经典文库•世界文学名著精选50册\",\n    \"author\": \"中国对外翻译出版公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文心理分析作品集（套装共12册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韦伯作品集（套装9册）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498366-dfd378?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋元笔记小说大观（全35册）\",\n    \"author\": \"王应麟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以鸟兽之名\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498450-91d7f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电视人\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498462-448cc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕飞宇经典套装（共19册）\",\n    \"author\": \"毕飞宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498528-823d87?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜利特医生的历险故事（套装共12册）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498603-bd23d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史前一万年（套装共6册）\",\n    \"author\": \"琼・奥尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498657-c6133a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东大教授世界文学讲义系列（套装全5册）\",\n    \"author\": \"沼野充义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498672-8a6511?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去中国的小船\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498675-d23546?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说六讲\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498696-3bd541?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的孩子\",\n    \"author\": \"迈克尔・乔莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498705-4c11d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芥川龙之介妄想者手记\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498792-06a460?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日三秋\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498819-4d3d6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐谷路\",\n    \"author\": \"罗伯特・科尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498873-def7c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇到百分之百的女孩\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498864-6cca63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫罗博士岛（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498885-f259b0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳马作品集（套装共4册）\",\n    \"author\": \"劳马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498891-72407b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马尼亚三部曲\",\n    \"author\": \"赫塔・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498903-726c74?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普希金经典文选小集\",\n    \"author\": \"普希金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498909-3f9a1a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长眠不醒（作家榜经典文库）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498939-95f078?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（全三册）\",\n    \"author\": \"但丁・阿利格耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华丽人生\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498960-0cf371?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石天金山\",\n    \"author\": \"米兰迪・里沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498972-06d8ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（作家榜经典文库）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498984-f45284?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要把读书当回事\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499101-3b0d57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张医生与王医生\",\n    \"author\": \"伊险峰/杨樱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499125-925a06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲的眼泪（短经典精选）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499179-428891?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲人石珍藏版第一辑（套装6册）\",\n    \"author\": \"约翰・巴里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499248-e688f8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴翳礼赞（作家榜经典文库）\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499281-c94bb8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基文集套装（全八册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499341-f43d73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谎言守护人\",\n    \"author\": \"埃马努埃尔・伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499326-19c32c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀疑者年鉴\",\n    \"author\": \"伊桑・卡宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499344-721099?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的巴黎\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499392-a3a61b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绞河镇的最后一夜\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499416-98145b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牙买加旅馆\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499431-9c1104?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间词话：叶嘉莹讲评本\",\n    \"author\": \"叶嘉莹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499446-d9ea31?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇山飘香（短经典精选）\",\n    \"author\": \"罗伯特・奥伦・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499500-13bb69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷漠的人\",\n    \"author\": \"阿尔贝托・莫拉维亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499545-626d92?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四先生（短经典精选）\",\n    \"author\": \"贡萨洛・曼努埃尔・塔瓦雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499566-0f75c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啼笑因缘\",\n    \"author\": \"张恨水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499575-45e4fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活出最乐观的自己\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499620-1feacf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的局限性\",\n    \"author\": \"塞缪尔・约翰生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499611-c45040?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房间里的阿尔及尔女人（短经典精选）\",\n    \"author\": \"阿西娅・吉巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499626-02d858?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶稣之死（库切文集）\",\n    \"author\": \"J.M. 库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499638-c627d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群星灿烂的年代\",\n    \"author\": \"伊・伊・巴纳耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499674-569481?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变色龙（作家榜经典文库）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499692-2e4742?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来艺术丛书（全7册）\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499785-9d1eba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波拉尼奥的肖像\",\n    \"author\": \"莫妮卡・马里斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499713-7eebf4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明图传（全新注释本）\",\n    \"author\": \"冯梦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499725-989ddd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物小说大王沈石溪·品藏书系（升级版）（套装36册）\",\n    \"author\": \"沈石溪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499866-7f7659?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熔炉\",\n    \"author\": \"孔枝泳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500031-1ac20c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的饥渴\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500154-231e6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙马特遗书\",\n    \"author\": \"邱妙津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500163-f3a93e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我从哪里来\",\n    \"author\": \"萨沙・斯坦尼西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500220-b2442f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文传记作品系列（套装共15册）\",\n    \"author\": \"斯特凡・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500337-e1be2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦图机\",\n    \"author\": \"萨曼塔・施维伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500316-5cb7e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽的约定（作家榜经典文库）\",\n    \"author\": \"阿兰・傅尼埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500358-f4641f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉玲珑（全三册）\",\n    \"author\": \"十四夜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500328-54bba2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新手死神五部曲\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500334-03aa1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺纪念文集水墨珍藏版套装全六册\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500346-c90acd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本短诗套装（共5册）\",\n    \"author\": \"松尾芭蕉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500349-0632a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吹牛大王历险记（作家榜经典文库）\",\n    \"author\": \"埃・拉斯伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500382-8e5f6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的经典诗歌译丛1（套装共4册）\",\n    \"author\": \"戴维・赫伯特・劳伦斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500385-56b9bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的经典诗歌译丛2（套装共4册）\",\n    \"author\": \"露易丝・格丽克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500388-f84a0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喜剧\",\n    \"author\": \"陈彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500394-78b974?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃生路线\",\n    \"author\": \"石黑直美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500397-35f789?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归家庭\",\n    \"author\": \"沙尼・奥加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500403-34b60f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单向街（作家榜经典文库）\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500412-ae61d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博雅文丛（全11册）\",\n    \"author\": \"蔡彦峰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500472-bc6cfa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桤木王\",\n    \"author\": \"米歇尔・图尼埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500547-eeac56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失业白领的职场漂流\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500553-5edab3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身人（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500565-7bdbb5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国知识·信仰·制度研究书系（全11册）\",\n    \"author\": \"仇鹿鸣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501066-c19ce4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七座空屋\",\n    \"author\": \"萨曼塔・施维伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500610-8edd47?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海蒂（果麦经典）\",\n    \"author\": \"约翰娜・斯比丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500616-d44508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙曼精选套装（共9册）\",\n    \"author\": \"蒙曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500643-e84655?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读26：全球真实故事集\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500649-4348f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷路员\",\n    \"author\": \"沈大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500664-558ad3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名人传（作家榜经典文库）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500694-85d5d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁庄十年\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500706-b2fafd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳄鱼手记\",\n    \"author\": \"邱妙津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500712-a64c03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代大师林语堂作品全新修订版（全25册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500832-ce5662?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译大师谈翻译：译家之言套装\",\n    \"author\": \"许渊冲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500748-930d1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余秋雨学术四卷（套装共4册）\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500850-128583?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受戒：汪曾祺小说精选（读客经典文库）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500805-5cbab0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大江健三郎人生成长系列（套装共4册）\",\n    \"author\": \"大江健三郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500874-a07323?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林格雷的画像（作家榜经典文库）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500937-3c3b07?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉译世界学术名著丛书（120册精选大合集）\",\n    \"author\": \"黑格尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501654-989079?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的接力棒\",\n    \"author\": \"濑尾麻衣子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500955-1f1827?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安之夜\",\n    \"author\": \"玛丽克・卢卡斯・莱纳菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501039-f8d924?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞选（古典文学大字本）\",\n    \"author\": \"陆侃如/龚克昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501081-311ef3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"S.A.阿列克谢耶维奇作品集（套装共五册）\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501123-bc5f17?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间清醒\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501171-da5945?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"素食者\",\n    \"author\": \"韩江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501180-b1e098?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达摩流浪者\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501198-87ebe7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有人比你更属于这里\",\n    \"author\": \"米兰达・裘丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501216-582372?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏天空\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501315-32622d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六神磊磊读金庸\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501339-8defa2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（读客经典文库）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501381-675b76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿来经典作品集（共36册）\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501711-956da5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本文学之美（套装共5册）\",\n    \"author\": \"紫式部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501609-456bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂旅行团\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501435-2b3e87?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的柠檬\",\n    \"author\": \"海伦娜・阿特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501474-62c218?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经选（古典文学大字本）\",\n    \"author\": \"褚斌杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501477-e31d54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼克·霍恩比作品集（套装共6册）\",\n    \"author\": \"尼克・霍恩比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501483-fd26c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克拉多克太太（毛姆文集）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501519-463e06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑的人\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501522-67f7bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原上的城市\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501537-1986a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词选（古典文学大字本）\",\n    \"author\": \"刘石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501546-485495?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清洁女工手册\",\n    \"author\": \"露西亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501630-adf775?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海边的房间\",\n    \"author\": \"黄丽群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501639-43e02e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛弃疾词选（古典文学大字本）\",\n    \"author\": \"刘扬忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501651-12c86d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画《论语》\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501885-a28305?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库：悬疑冒险书系（套装共67本）\",\n    \"author\": \"卡罗尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502272-aa3e15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱光潜全集\",\n    \"author\": \"朱光潜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501777-4c22d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（古典文学大字本）\",\n    \"author\": \"孙洙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501939-d54a1c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历代名家词集精华录（全22册）\",\n    \"author\": \"温庭筠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502101-12a823?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克尔凯郭尔文集10册大全集\",\n    \"author\": \"索伦・克尔凯郭尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502005-543a3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樊登讲论语：先进\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502053-71d6f8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樊登讲论语：学而\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502065-aaa0f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆短篇小说全集（读客经典文库）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502116-5455c0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元曲三百首（古典文学大字本）\",\n    \"author\": \"张燕瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502113-fcbdaa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫作品系列（全7册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502164-c23087?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聚斯金德文集（套装共5册）\",\n    \"author\": \"帕特里克・聚斯金德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502188-2f2edc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下骏马\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502305-27ec50?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古文观止（古典文学大字本）\",\n    \"author\": \"吴楚材/吴调侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502311-70f080?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强蚁\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502317-8ffcba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳永词选（古典文学大字本）\",\n    \"author\": \"柳永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502314-b5e7e4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学名家选集（全17册）\",\n    \"author\": \"王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502398-fe5b0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库：西方文学社科经典大套装（套装194本）\",\n    \"author\": \"劳伦斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503094-de74e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨照作品集（套装9册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502629-9ef10e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千家诗（古典文学大字本）\",\n    \"author\": \"谷一然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503001-f69279?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·社会文化书系（套装共61本）\",\n    \"author\": \"杰罗姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503208-381270?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈彦经典代表作品合集\",\n    \"author\": \"陈彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503118-785d73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸侦探系列（3册）\",\n    \"author\": \"弗朗齐斯卡・比尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503268-1bec63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词三百首（古典文学大字本）\",\n    \"author\": \"武玉成/顾丛龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503301-c03e33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯癫亚当三部曲\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503436-886cdc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华学人丛书（第二辑）（套种共十六册）\",\n    \"author\": \"李伯杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503694-ac5276?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳田国男文集（套装共十册）\",\n    \"author\": \"柳田国男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503697-8daafb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草婴译列夫·托尔斯泰中短篇小说全集\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503823-cc7f6a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李白诗选（古典文学大字本）\",\n    \"author\": \"熊礼汇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503748-0bb90d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明（全三册）\",\n    \"author\": \"许葆云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503904-76511f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未被摧毁的生活\",\n    \"author\": \"李伟长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503928-467c01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照词选（古典文学大字本）\",\n    \"author\": \"陈祖美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503934-42bda0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖得主莫言文集（套装共26册）\",\n    \"author\": \"莫言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504021-e0068c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狮子之家的点心日\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504180-50d4c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成年人的谎言生活\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504189-ca8d83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白居易诗选（古典文学大字本）\",\n    \"author\": \"孙明君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504276-543fa0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恩古吉·瓦·提安哥文集（全7册）\",\n    \"author\": \"恩古吉・瓦・提安哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504327-8ea788?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外文大家小藏本（全17册）\",\n    \"author\": \"弗吉尼亚・吴尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504330-6dce17?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时空摆渡人\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504369-0e8e24?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜甫诗选（古典文学大字本）\",\n    \"author\": \"杜甫/谢思炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504429-062f6a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著大师课合集（套装全7册）\",\n    \"author\": \"柳鸣九等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词选（古典文学大字本）\",\n    \"author\": \"韩经太/王维若\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504993-b34598?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕慕克别样的色彩系列\",\n    \"author\": \"奥尔罕・帕慕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505356-3bb734?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学鉴赏辞典大系（套装共17部22册）\",\n    \"author\": \"上海辞书出版社文学鉴赏辞典编纂中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506529-6d5879?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄、情人、势利鬼、恶人\",\n    \"author\": \"塞巴斯蒂安・福克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505842-7f6488?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字与图像间的重庆（套装3册）\",\n    \"author\": \"杨宇振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506388-3c8521?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河铁道之夜（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506277-c17653?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生答案之书\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506391-6ca6c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓶梅的艺术\",\n    \"author\": \"孙述宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506652-ddc7ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏蛋与大象（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506616-7f1f34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木心路遥年谱套装（全2册）\",\n    \"author\": \"夏春锦/王刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506673-e8d422?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在最后一页等我\",\n    \"author\": \"索菲亚・蕾依\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506712-efdf8e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李商隐诗选（古典文学大字本）\",\n    \"author\": \"董乃斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506757-ccee5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书店日记套装（全2册）\",\n    \"author\": \"肖恩・白塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506799-7d0cc6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜降临前抵达\",\n    \"author\": \"刘子超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506844-8f9979?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃浮沉录\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506922-9eeba1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫中短篇小说全集（全8册）\",\n    \"author\": \"安东・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507030-e46ffb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李煜诗词全集（作家榜经典文库）\",\n    \"author\": \"李煜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507048-37f6d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重走：在公路、河流和驿道上寻找西南联大\",\n    \"author\": \"杨潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507096-34bbb4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原典书坊合辑（全八册）\",\n    \"author\": \"鲁迅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青梅竹马·樋口一叶选集（作家榜经典文库）\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507315-77109b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪事务所（作家榜经典文库）\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507474-204cb6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第3部：卷13~卷18）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509205-71e3f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国诗人徐志摩作品典藏全集\",\n    \"author\": \"徐志摩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英诗经典名家名译全集（套装共21本）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508305-0fc203?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（全四册）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508653-1087bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国通俗文学大家张恨水小说全集（套装共37册）\",\n    \"author\": \"张恨水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508677-137d11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神鬼奇兽夜读装（全5册）\",\n    \"author\": \"刘星等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508746-96e162?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学纪念译丛（套装共五册）\",\n    \"author\": \"利季娅・丘可夫斯卡娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508689-868443?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康德文集（注释版）\",\n    \"author\": \"伊曼努尔・康德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508737-9992e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫大合集（全10册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508854-9a7e1f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国文学史全系（套装共5本）\",\n    \"author\": \"李赋宁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508770-b38c29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想家和思想导读丛书精选（套装共5册）\",\n    \"author\": \"雷克斯・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·初中部分·全49种\",\n    \"author\": \"儒勒・凡尔纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508971-dab70d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆传：全本\",\n    \"author\": \"赛琳娜・黑斯廷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508869-f773e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘心武妙品红楼梦\",\n    \"author\": \"刘心武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508878-a5cdd8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·高中部分·全56种\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509052-6ba338?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叶芝：真人与假面\",\n    \"author\": \"理查德・艾尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508917-dea401?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柴纳·米耶维“新怪谭”奇幻文学系列（套装5册）\",\n    \"author\": \"柴纳・米耶维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508938-52b065?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学读本丛书典藏（第二辑全15册）\",\n    \"author\": \"王起主等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508965-0eb459?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯原版作品大合集（套装共70册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508989-b952cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抚顺故事集\",\n    \"author\": \"赵松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508974-9040b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文白对照四书五经全本（精注全译）\",\n    \"author\": \"李伯钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学纪念碑豆瓣高分套装（共十册）\",\n    \"author\": \"尼古拉・别尔嘉耶夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509055-03be36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫典藏作品九部\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509082-f028fe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫诗选（外国文学名著丛书）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西线无战事（果麦经典）\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509091-e5d1af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫禁色作品集（套装共15册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509106-9bcd46?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代文学批评史（全八卷）\",\n    \"author\": \"雷纳・韦勒克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509199-0aab12?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格中短篇小说选（外国文学名著丛书）\",\n    \"author\": \"斯・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509109-d38600?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字套装全五册（全本全注全译）\",\n    \"author\": \"许慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509451-f7225a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·小学部分·全27册\",\n    \"author\": \"格林兄弟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509292-20cf9c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草婴译列夫·托尔斯泰·全3种6册\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509229-b42707?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宁美文精选（全3册）\",\n    \"author\": \"伊凡・阿列克谢耶维奇・布宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509214-c671f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有本事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509241-f5b13a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯至译文全集（共四册）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509274-6808a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去年的树（果麦经典）\",\n    \"author\": \"新美南吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509280-4384dd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建党百年百篇文学短经典（全5册）\",\n    \"author\": \"贺绍俊等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509304-7fb398?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大书院（套装40册）\",\n    \"author\": \"孙武等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509625-852982?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐才子传（作家榜经典文库 ）\",\n    \"author\": \"辛文房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509463-4e9ff9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社博雅文库大全集（套装共24本）\",\n    \"author\": \"费孝通等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509547-14b151?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我知道光在哪里\",\n    \"author\": \"安东尼・雷・辛顿/劳拉・洛夫・哈丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509493-31e3e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝物录\",\n    \"author\": \"尤迪特・沙朗斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晴日木屐\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509502-0e8b9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的复出\",\n    \"author\": \"姜立涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509511-655a97?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无知\",\n    \"author\": \"迈克・詹姆斯・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509577-8fec76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅奖作家短经典（全14册）\",\n    \"author\": \"陈忠实等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509631-093196?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯文集·逝世150周年纪念版\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509703-27e896?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大城北京\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509667-8e85ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新中国70年长篇小说典藏（全38种50册）\",\n    \"author\": \"陈忠实等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509979-a70d0a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻小说的人\",\n    \"author\": \"比目鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509745-085174?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢生命根底里的宁静\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文与社会译丛·精选集（套装20册）\",\n    \"author\": \"汉娜・阿伦特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509832-1b9259?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录（全本全注全译）\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509775-46c4c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对着天空散漫射击\",\n    \"author\": \"李柳杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509805-142d19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁斯特的百万横财\",\n    \"author\": \"乔治・巴尔・麦克奇翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509847-3f5a73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第二季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典散文精选注译（套装共8册）\",\n    \"author\": \"傅璇琮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生因孤独而丰盛\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509907-f0c5ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尔·杜兰特经典系列（套装共4册）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509931-1e8eab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桶川跟踪狂杀人事件\",\n    \"author\": \"清水洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509955-7d12b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琉璃棺\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509976-f774f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云没有回答\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510006-ca0590?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木心上海往事\",\n    \"author\": \"铁戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510105-8d778a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜（果麦经典）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510144-7fa451?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳如是别传全三册\",\n    \"author\": \"陈寅恪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510150-87600a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被嫌弃的松子的一生（2021版）\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510186-029168?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漱石日记\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510213-f80a7f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自世界的消息\",\n    \"author\": \"波莱特・吉尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510216-bd22d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好结局\",\n    \"author\": \"伍子豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510261-53d911?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死之间\",\n    \"author\": \"汤姆・克兰西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510270-5965ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫客\",\n    \"author\": \"平出隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510357-6f1a60?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武汉女孩阿念日记\",\n    \"author\": \"吴尚哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510366-230d26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藤泽周平作品集（共5册）\",\n    \"author\": \"藤泽周平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510396-639bff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的个天\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510420-ff10a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理要在本格前\",\n    \"author\": \"谷崎润一郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510438-80e787?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华章同人重现经典（套装24册）\",\n    \"author\": \"安・兰德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510513-78819a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性的时刻\",\n    \"author\": \"梅琳达・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午后四点\",\n    \"author\": \"阿梅丽・诺冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510534-18488f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的编年史\",\n    \"author\": \"苔菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510567-c874f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给青年诗人的十封信\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510591-1f0423?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张荫麟作品集（套装共四册）\",\n    \"author\": \"张荫麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510609-e084e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基作品集（套装共9册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510720-d03973?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"围炉夜话（作家榜经典文库）\",\n    \"author\": \"王永彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510696-9e23ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明文选\",\n    \"author\": \"赵伯陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510711-3cd429?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凶年\",\n    \"author\": \"大卫・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛姆文学课：如何阅读与写作（作家榜经典文库）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510771-e7d7c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清文选\",\n    \"author\": \"刘世南/刘松来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510765-68d5d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敲响密室之门2\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510768-eb84c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑豹红狼\",\n    \"author\": \"马龙・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510780-2bb087?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借命而生\",\n    \"author\": \"石一枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510786-72ad5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的朋友阿波罗\",\n    \"author\": \"西格丽德・努涅斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510783-f66375?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（读客经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510825-94b6a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克拉拉与太阳\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510816-45d617?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骗子来到南方\",\n    \"author\": \"阿乙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510810-153214?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桑切斯的孩子们\",\n    \"author\": \"奥斯卡・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510819-58d021?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天地人丛书（全8册）\",\n    \"author\": \"周敦颐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510834-84e3cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小窗幽记（作家榜经典文库）\",\n    \"author\": \"陈继儒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510867-7b596f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学读本丛书典藏全集（共23册）\",\n    \"author\": \"薛天纬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510990-2cbfc9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经（锁线图文版）\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510882-3771c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉语四千年\",\n    \"author\": \"黎锦熙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510942-d4292c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录（全本全注全译）\",\n    \"author\": \"杨春俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"处世三大奇书（套装共3册）\",\n    \"author\": \"洪应明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510918-b3a5ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉魏六朝文选\",\n    \"author\": \"刘文忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510924-186bf2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好兵帅克（精美收藏版）\",\n    \"author\": \"雅・哈谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510987-790bec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂：足本（全三册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510981-38511d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋文选\",\n    \"author\": \"丁放等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510966-7feb6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔船\",\n    \"author\": \"西格弗里德・伦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510969-3e51f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡赋格：保罗·策兰诗精选\",\n    \"author\": \"保罗・策兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510972-2fc82c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溪山琴况 琴声十六法（全本全注全译）\",\n    \"author\": \"陈忱译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511044-5300d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人知晓的真由子\",\n    \"author\": \"今村夏子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511020-cf968e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独东京\",\n    \"author\": \"三浦紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511023-1cdc53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度光阴的人\",\n    \"author\": \"苏辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511038-a9bf9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑磨坊\",\n    \"author\": \"孙浩元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511041-59df79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦魇\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511050-520d2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典小白书（全14册）\",\n    \"author\": \"戴维・布朗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511128-49e429?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古物记\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511083-8bffd6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝范 臣轨 庭训格言（全本全注全译）\",\n    \"author\": \"王双怀等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511086-2c38d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的图书馆\",\n    \"author\": \"苏珊・奥尔琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511101-21bf23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死一只知更鸟（图像小说）\",\n    \"author\": \"哈珀・李/弗雷德哈珀・李福德姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511326-6ffb36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京百景\",\n    \"author\": \"又吉直树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511176-08526d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉家天下（1-4册）\",\n    \"author\": \"清秋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请照顾好我妈妈\",\n    \"author\": \"申京淑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511275-55c4a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为波伏瓦\",\n    \"author\": \"凯特・柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511278-68fad7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大真探赵赶鹅\",\n    \"author\": \"赵赶鹅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511287-36a95e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绅士肖像：毛姆短篇小说全集4\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511293-da7703?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返暗夜\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511299-1f11b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你学会独处\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511314-f0d8b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆记忆\",\n    \"author\": \"玛丽亚・斯捷潘诺娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511308-7680dd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的用途与滥用\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变形记（作家榜经典文库）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511323-ecb5b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚·希普洛斯套装（共6本）\",\n    \"author\": \"维多利亚・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511380-def7da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话（读客经典文库）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511362-ce4957?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匡超人\",\n    \"author\": \"骆以军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511404-a45907?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻人的国文课\",\n    \"author\": \"张一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511407-8e7f3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人笔记（作家榜经典文库）\",\n    \"author\": \"伊万・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511440-340449?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永隔一江水\",\n    \"author\": \"邓安庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511416-be1bd8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜之孤城\",\n    \"author\": \"辻村深月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511485-ef75a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步神保町\",\n    \"author\": \"鹿岛茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511500-50bc66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生处处是修行\",\n    \"author\": \"鬼脚七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511509-cd8ae1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（果麦经典）\",\n    \"author\": \"刘向/刘歆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511605-ee4d4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国特工阿申登：毛姆短篇小说全集3\",\n    \"author\": \"威廉・毛姆萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511611-1db5b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘大道\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511629-3fbd6f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好嘴杨巴\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511635-6f1834?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和日本文豪一起漫游老东京\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511725-b74903?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（作家榜经典文库）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511782-eaea45?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记（2020全新编校精美插图典藏本）\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511932-7b6bb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季羡林全集（套装全套三十卷）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511971-8fd3a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从山贼到水寇\",\n    \"author\": \"侯会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511998-036e05?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿：一部身体的回忆录\",\n    \"author\": \"罗克珊・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512007-c856a9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著丛书（第二辑）\",\n    \"author\": \"托尔斯泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512160-ee215b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原（果麦经典）\",\n    \"author\": \"托・斯・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512013-24591d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影意志\",\n    \"author\": \"王小鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512109-561eca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人与诗歌\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512106-566b82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个青年艺术家的画像（果麦经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512145-efc308?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应向花园安放灵魂\",\n    \"author\": \"达蒙・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512184-8c90b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李自成（全10册）\",\n    \"author\": \"姚雪垠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512232-b61f9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷心书店\",\n    \"author\": \"卡塔琳娜・碧瓦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512223-e07962?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"停靠，一座城\",\n    \"author\": \"李婧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512250-e4c3ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别去读诗\",\n    \"author\": \"斯蒂芬妮・伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512253-297890?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著丛书（第一辑）\",\n    \"author\": \"斯威夫特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512493-553b6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游荡集\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐收藏者\",\n    \"author\": \"娜塔莎・所罗门斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512265-2cf8be?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗境浅说\",\n    \"author\": \"俞陛云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512271-003d58?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咏叹生死\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512277-397e33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐媚记\",\n    \"author\": \"涩泽龙彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512298-9c9af8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋之星\",\n    \"author\": \"约瑟夫・奥康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512376-10a1f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女佣的故事\",\n    \"author\": \"斯蒂芬妮・兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512379-69c390?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士的故事\",\n    \"author\": \"克里斯蒂・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（作家榜经典文库）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512541-3dc7db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独小说家（作家榜经典文库）\",\n    \"author\": \"郁达夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512583-7a6408?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一瓣河川\",\n    \"author\": \"雨楼清歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512562-a90f94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学的形式与历史\",\n    \"author\": \"小森阳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512571-eb5773?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的天\",\n    \"author\": \"子日山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的丁一之旅\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512586-6d307a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星期天早上的远足\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512592-37f965?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗夜与黎明（全2册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512589-2157f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放熊归山\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512667-507cc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡波蒂作品集（套装共5册）\",\n    \"author\": \"杜鲁门・卡波蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512718-934d53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菜根谭（作家榜经典文库）\",\n    \"author\": \"洪应明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512730-2183ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺绘画鲁迅小说\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512835-de753e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚熟的人\",\n    \"author\": \"莫言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513048-bdef9c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和你一起读卡佛\",\n    \"author\": \"唐颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513054-4656f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎评论·女性作家访谈\",\n    \"author\": \"《巴黎评论》编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513063-257efa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有关品味\",\n    \"author\": \"彼得・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513072-dd4998?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海风电影院\",\n    \"author\": \"吴忠全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513090-0c3561?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真情\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513105-4d53e4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煮海时光\",\n    \"author\": \"白睿文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513129-02d351?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨夜短文\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513132-48b671?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来也不会好过现在\",\n    \"author\": \"基兰・塞蒂亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513138-ab2d02?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球上最后的夜晚\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513141-f4a8bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小约翰\",\n    \"author\": \"弗雷德里克・凡・伊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513147-416841?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨果文集（全12册）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513198-97bfd1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙语文学译丛（套装十册）\",\n    \"author\": \"皮格利亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513252-b17d34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挚友\",\n    \"author\": \"川端康成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513282-fc82c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄山：穿插\",\n    \"author\": \"徐贵祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513300-ed86c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄山：伏击\",\n    \"author\": \"徐贵祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513306-316b55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之间\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513309-1f761f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲利普·罗斯美国三部曲\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513318-997eb1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异乡记\",\n    \"author\": \"苏方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513339-7c356b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们深陷泥潭\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513357-b71e8f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无岸之岛\",\n    \"author\": \"维舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513354-8d56d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗5：雨必将落下\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513363-ea608c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平凹四书\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513396-3afcd4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈丹燕上海七部曲\",\n    \"author\": \"陈丹燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513546-381b04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金枝（全两册）\",\n    \"author\": \"詹姆斯・乔治・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513420-73750d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿勒颇养蜂人\",\n    \"author\": \"克里丝蒂・莱夫特里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513432-097de6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电子脑叶\",\n    \"author\": \"野崎惑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513429-a35151?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如空气般存在的我\",\n    \"author\": \"中田永一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513438-f251a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姥爷，我们天上见\",\n    \"author\": \"蒋雯丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513441-514038?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱锺书选唐诗\",\n    \"author\": \"钱锺书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513468-25af5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十侠\",\n    \"author\": \"邱华栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513444-b5cc64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第一季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午之魔\",\n    \"author\": \"安德鲁・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常看电影的人们\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513504-810102?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗4：在黑暗中舞蹈\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513585-9dcc19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突然死亡\",\n    \"author\": \"阿尔瓦罗・恩里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513627-aa9aba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的原野盛宴\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513663-a26536?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缘缘堂随笔：足本\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513684-7de20d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏杨曰（套装共3册）\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513699-311696?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美顺与长生\",\n    \"author\": \"毛建军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513723-731852?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女生徒（果麦经典）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513747-3ea885?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斑斓志\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513771-700ab7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛虻（果麦经典）\",\n    \"author\": \"埃塞尔・丽莲・伏尼契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513789-ea804a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到找到你\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004641-24f42b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步的艺术（果麦经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004617-10c91b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通向往昔之旅\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004584-516cd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸子的声音\",\n    \"author\": \"史一棋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004572-5c43ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张先生说\",\n    \"author\": \"张五毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004569-4fbbb6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛天赐传（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004530-ae8ca6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶人三部曲\",\n    \"author\": \"王旭烽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004542-8e6eba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术家们\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004527-7eb6bd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪假日\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004509-22c040?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本雅明作品集（套装共六册）\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004428-bf2da4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安德鲁不想孤独终老\",\n    \"author\": \"理查德・罗珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004413-c89f5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灿若黎明\",\n    \"author\": \"艾米・哈蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004398-f7de17?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的枷锁（作家榜经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004386-bd9f54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张炜中篇八部\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004383-06f415?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年曾祺：1920-2020\",\n    \"author\": \"梁由之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004320-812970?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先知：纪伯伦散文诗选（果麦经典）\",\n    \"author\": \"纪伯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004314-4501b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明年谱长编（全四册）\",\n    \"author\": \"束景南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004326-b1739c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风声（全新修订版）\",\n    \"author\": \"麦家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004296-d38126?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漠\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004275-783fd7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受害者\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004227-e12147?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神在人间的时光（修订版）\",\n    \"author\": \"陈喜辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004272-ae9f00?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弃猫\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004212-808499?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第二辑）\",\n    \"author\": \"詹姆斯・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004257-24dc6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"送行\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004179-a1ebc2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈话录\",\n    \"author\": \"王安忆/张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的姐姐住在壁炉上\",\n    \"author\": \"安娜贝尔・皮彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004167-6ca4ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文精选散文系列（全6册）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布莱希特作品集（套装共四册）\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004098-26f5ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年维特之烦恼（果麦经典）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004071-6309ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕边书\",\n    \"author\": \"帕梅拉・保罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004080-533237?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对着水牛唱歌的女孩\",\n    \"author\": \"肯特・奈尔本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004050-79200f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之殿\",\n    \"author\": \"但丁・罗塞蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004035-0d555d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典诗文之美（共13册）\",\n    \"author\": \"徐中玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004032-266b3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一间只属于自己的房间（果麦经典）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004002-2acb0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我去那花花世界\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003999-efb1ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墓志铭图书馆\",\n    \"author\": \"萨缪尔・法努斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003990-425456?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海百灵\",\n    \"author\": \"王新禧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004023-a305af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人音乐\",\n    \"author\": \"莱昂纳德・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003981-ba89b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清叙事文学中的城市与生活（大家读大家）\",\n    \"author\": \"胡晓真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003978-424fb6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热爱生命\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003963-6c71c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果萨莉没离开\",\n    \"author\": \"丽贝卡・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003960-ba3f4b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生文集（纪念版·全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003975-a3b5c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的病人\",\n    \"author\": \"亚历克斯・麦克利兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑文库（第一辑）\",\n    \"author\": \"詹姆斯・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003933-43e390?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003906-785783?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪击而不沉\",\n    \"author\": \"原田舞叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003864-ca2f3c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细读的乐趣（大家读大家）\",\n    \"author\": \"孙康宜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003852-6e5fd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流溪\",\n    \"author\": \"林棹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003843-927dda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵的焦灼（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003828-b5debe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名字之歌\",\n    \"author\": \"诺曼・莱布雷希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003795-864162?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"体验日本艺术和文学之美（套装共8册）\",\n    \"author\": \"叶渭渠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004164-e0848c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋汊子（全两册）\",\n    \"author\": \"董均伦/江源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003747-87ed89?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能人\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003732-389f14?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文本与阐释（大家读大家）\",\n    \"author\": \"夏志清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003720-c4af7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺散文全编（全6卷）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人鼠之间（果麦经典）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003681-64a126?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学不死（大家读大家）\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003597-028466?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧纸\",\n    \"author\": \"李沧东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003585-2b3e75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光明共和国\",\n    \"author\": \"安德烈斯・巴尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003576-2ca280?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七发（大家读大家）\",\n    \"author\": \"田晓菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003573-58cef2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返美丽新世界\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003570-70aa54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碎片\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003567-532213?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦因·西域游历丛书（15卷本）\",\n    \"author\": \"奥雷尔・斯坦因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003783-1b5133?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋灯琐忆（果麦经典）\",\n    \"author\": \"蒋坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003561-7f6be6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟道：周梦蝶世纪诗选\",\n    \"author\": \"周梦蝶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003564-b99874?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日之东·月之西：北欧故事集\",\n    \"author\": \"彼得・克利斯登・亚柏容森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003552-8f56f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"项塔兰（套装全三册）\",\n    \"author\": \"格里高利・大卫・罗伯兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003516-7758a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她们\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003504-32b574?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小手\",\n    \"author\": \"安德烈斯・巴尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003498-5cabcf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗的引诱（大家读大家）\",\n    \"author\": \"宇文所安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003492-0ca141?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯坦德的梦想家\",\n    \"author\": \"埃里克-埃马纽埃尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003474-2b56d5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间机器（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003399-288485?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"露水的世\",\n    \"author\": \"文泉子/小林一茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003459-74a562?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦二画集：春夏秋冬（全四册）\",\n    \"author\": \"竹久梦二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003501-1f3a89?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥拉·泼泥翁\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003300-429a97?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮城\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003294-d41047?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好狗朱迪\",\n    \"author\": \"达米恩・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003291-6710c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞巴尔德作品集\",\n    \"author\": \"温弗里德・塞巴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003279-53f936?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬崖边的树（大家读大家）\",\n    \"author\": \"王德威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003186-dd0d38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日食之后\",\n    \"author\": \"萨拉・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003177-593f47?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰猎犬号\",\n    \"author\": \"C.S.佛瑞斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003174-b32007?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尼亚传奇（果麦经典）\",\n    \"author\": \"C. S. 刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003126-d6c87d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逍遥游\",\n    \"author\": \"班宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003105-860ab0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸳鸯六七四\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003099-a7036d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市是件花衣裳（大家读大家）\",\n    \"author\": \"张小虹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003096-533f9d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看护杀人\",\n    \"author\": \"每日新闻大阪社会部采访组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003012-070566?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空下的两万条街道（果麦经典）\",\n    \"author\": \"帕特里克・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002991-2be3d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尼亚传奇全集（套装共7册）\",\n    \"author\": \"C.S.路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002988-6b8b50?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗三百首（作家榜经典文库）\",\n    \"author\": \"蘅塘退士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002970-071756?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"停车暂借问\",\n    \"author\": \"钟晓阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002892-c12e94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代志怪小说鉴赏辞典\",\n    \"author\": \"上海辞书出版社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002868-8633d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生未完成（增订新版）\",\n    \"author\": \"于娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁光文集（全七卷）\",\n    \"author\": \"鲁光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002922-4d0e34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的卫星\",\n    \"author\": \"刘子超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002802-e743e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文章家与先知\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002784-df3f39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庸人自扰（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002778-5d4c54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿（读客经典）\",\n    \"author\": \"尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002727-32bf78?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师周作人作品大全集（套装七十八册）\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002694-d93afe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史诗\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002601-f15366?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天命（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002598-5f628b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非虚构的艺术\",\n    \"author\": \"特雷西・基德尔/理查德・托德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002583-d3c7fb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时（果麦经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002574-f02fe9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生\",\n    \"author\": \"刘汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯卡与玫瑰奶奶\",\n    \"author\": \"埃里克-埃马纽埃尔·施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002568-5d28cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地孤旅（纪念版）\",\n    \"author\": \"村郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002541-35ef19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短篇小说家与作品\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002460-fcb78c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光天化日\",\n    \"author\": \"埃里克・安布勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002457-f1a8f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心有猛虎，细嗅蔷薇（果麦经典）\",\n    \"author\": \"西格夫里・萨松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"路内·追随三部曲\",\n    \"author\": \"路内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002436-983fb0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的爱\",\n    \"author\": \"埃里克-埃马纽埃尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002421-00aa03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李娃\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002409-e39509?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海边小屋\",\n    \"author\": \"梅・萨藤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002400-bbe7a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛尔戈王后\",\n    \"author\": \"亚历山大・仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002424-836ef4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌以言志\",\n    \"author\": \"周毅/舒明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002397-3d9575?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顿悟的时刻\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002361-5fc211?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化失忆\",\n    \"author\": \"克莱夫・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002394-6a02b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧作家与戏剧\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002349-c2d4cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷泉港（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002343-3176c0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九月寓言\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002331-a9f1f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食，祈祷，恋爱\",\n    \"author\": \"伊丽莎白・吉尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旅程结束时\",\n    \"author\": \"张其鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002322-049cce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格非先锋文学精选（全套7册）\",\n    \"author\": \"格非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002298-e16dd6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说家与小说\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002274-876831?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（果麦经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾经典合集（共24册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002232-b29b6a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方正典\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002175-1336fb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脚客\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002142-08a9b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五魁\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002136-93e7f1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山本\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002145-c287a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·德·莱斯案\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的夏天还好吗？\",\n    \"author\": \"金爱烂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002130-affe9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗歌手册：诗歌阅读与创作指南\",\n    \"author\": \"玛丽・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002031-f4b308?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋带\",\n    \"author\": \"多梅尼科・斯塔尔诺内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002025-658d6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜晚的潜水艇\",\n    \"author\": \"陈春成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001971-6b549b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事（果麦经典）\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001968-e8ada4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃醋的人生\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001887-dba4a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的池塘\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001884-f17b91?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"误读全书\",\n    \"author\": \"萧萧树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001878-58c86e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人笔记（果麦经典）\",\n    \"author\": \"伊凡・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001815-50efa3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曼哈顿的中国杂技\",\n    \"author\": \"李尤松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001836-8e306e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐透\",\n    \"author\": \"雪莉・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001788-f28c88?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舞台音乐\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001740-f3e084?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格作品集（套装共9册）\",\n    \"author\": \"斯特凡・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001710-78d962?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马科斯与猫科动物\",\n    \"author\": \"莫瓦西尔・斯克利亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001650-610d1d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·情感故事书系（套装共66本）\",\n    \"author\": \"歌德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岁月的针脚\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001560-cd381e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大山里的小诗人\",\n    \"author\": \"“是光”的孩子们\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001554-8c8cf0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（作家榜经典文库）\",\n    \"author\": \"但丁・阿利吉耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001539-6e9215?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家们\",\n    \"author\": \"巴里・吉福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001497-2f3153?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古事记（果麦经典）\",\n    \"author\": \"安万侣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001485-8d7c2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪客美食家\",\n    \"author\": \"久住昌之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001461-2bebba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集评注\",\n    \"author\": \"李冰若\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001446-d19d15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁实秋经典作品雅致生活系列（套装共5册）\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001419-010171?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思恩格斯文集1~10卷（套装共10册）\",\n    \"author\": \"中共中央马克思恩格斯列宁斯大林著作编译局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001404-2469af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李健吾译文集（套装共14册）\",\n    \"author\": \"福楼拜等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001437-81e8a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读23：破碎之家\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001347-5914af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银汤匙（果麦经典）\",\n    \"author\": \"中勘助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001314-314d93?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读：十周年特辑\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南货店\",\n    \"author\": \"张忌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001296-9000ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凌乱的床\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001293-92ab13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情的逻辑\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001287-7558eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传统应该这样读系列（套装共6册）\",\n    \"author\": \"叶嘉莹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001284-6eca82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉檀迦利（果麦经典）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001179-3f0045?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为我自己：欧文·亚隆回忆录\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001128-9e4690?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（作家榜经典文库）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001044-27b101?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉萨河女神\",\n    \"author\": \"马原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001026-91a00f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄罗斯文学（牛津通识读本）\",\n    \"author\": \"卡特里奥娜・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000954-afc95e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李洱精选集（全八册）\",\n    \"author\": \"李洱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000927-e9ba0b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读20：新新新青年\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000882-338614?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木心全集（典藏套装十六册）\",\n    \"author\": \"木心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000903-881927?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的24则运算\",\n    \"author\": \"林婉瑜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000729-a46ceb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不属于我们的世纪（修订版）\",\n    \"author\": \"马修・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000720-d0d47d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（读客经典）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000699-3c0b68?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事的本质\",\n    \"author\": \"罗伯特・斯科尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000672-1aa743?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明前说我爱你\",\n    \"author\": \"彼得・加尔多什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000621-4328cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐贩卖机\",\n    \"author\": \"凯蒂・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色俄罗斯系列（第二辑）\",\n    \"author\": \"普希金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000600-533ea6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春潮（作家榜经典文库）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000564-12b502?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵魂有香气的女子\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000549-02c63e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达摩流浪者（作家榜经典文库）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000387-669fb4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活力\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000384-b839c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个基本\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000378-a3882f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗心\",\n    \"author\": \"米・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000375-39b101?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字的思考\",\n    \"author\": \"张克敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000396-76b5eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"觉醒\",\n    \"author\": \"凯特・肖邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000351-1aaa04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安之书\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000333-bab6a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活（读客经典）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000327-3b980c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回到故乡的陌生人\",\n    \"author\": \"莫欣・哈米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000318-567b63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火焰\",\n    \"author\": \"莱昂纳德・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000321-1f47fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖喱香肠的诞生\",\n    \"author\": \"乌韦・提姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000282-bf0d55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柄谷行人文集（套装六册）\",\n    \"author\": \"柄谷行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000243-dc2d0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群雄逐鹿：彩绘三国演义\",\n    \"author\": \"金协中绘/成长著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000246-278283?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自深深处（果麦经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000213-ef7333?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海鸟的哭泣\",\n    \"author\": \"亚当・尼科尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000207-89a275?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年中国记忆·文艺大家系列丛书（全十册）\",\n    \"author\": \"李苦禅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000171-232908?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子夜（果麦经典）\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000102-ac0b0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲（读客经典）\",\n    \"author\": \"卡伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999988-a065d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证言\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999934-d6daab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的四十条法则\",\n    \"author\": \"艾丽芙・沙法克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999928-5cb3a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快意江湖：彩绘水浒传\",\n    \"author\": \"张琳绘/张睿著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999922-583382?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（作家榜经典文库）\",\n    \"author\": \"费奥多尔・米哈伊洛维奇・陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999847-be2ddd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的焦虑是一束火花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999841-6b89b0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桂花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降魔修心：彩绘西游记\",\n    \"author\": \"林遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000642-780a39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培根随笔全集（作家榜经典文库）\",\n    \"author\": \"弗朗西斯・培根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余事勿取\",\n    \"author\": \"魏思孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999541-42eaff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说精选（果麦经典）\",\n    \"author\": \"安东・巴甫洛维奇・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999523-d0d9cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林人（作家榜经典文库）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999451-b07ef2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的孤独\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999223-931baf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"订书匠\",\n    \"author\": \"布里奇特・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999211-bda260?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"济公传奇（套装9册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999598-b81231?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初恋（作家榜经典文库）\",\n    \"author\": \"伊凡・谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999073-2cb9f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知晓我姓名\",\n    \"author\": \"香奈儿・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒凉山庄（插图珍藏版）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999151-c700d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（果麦经典）\",\n    \"author\": \"屈原等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999010-1d65d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性本恶\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998977-2d9306?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋园\",\n    \"author\": \"杨本芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998932-5bad21?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（果麦经典）\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998860-dbddd1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩灭之赋\",\n    \"author\": \"四方田犬彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998827-81b786?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书杂志\",\n    \"author\": \"王念孙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘世梦影：彩绘红楼梦\",\n    \"author\": \"孙温/王典弋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999178-c5dc11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草枕（果麦经典）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998569-850adf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三人\",\n    \"author\": \"格雷厄姆・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998491-6dbde1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聋哑时代\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998479-a545ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查拉图斯特拉如是说（果麦经典）\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997918-4ecd27?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把地上的事往天上聊\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997897-ff709e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼魂的盛宴\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997819-57a1d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱的桥\",\n    \"author\": \"马库斯・苏萨克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997768-6031fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗雷德蒙德·马利克作品集（全套6册）\",\n    \"author\": \"弗雷德蒙德・马利克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997756-56b1da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书与行走\",\n    \"author\": \"陈忠实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997663-5f95e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废墟曾经辉煌\",\n    \"author\": \"张翎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997651-35de85?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国文学经典译丛（共6本）\",\n    \"author\": \"乔治・桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997660-f91dd1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（作家榜经典文库）2020版\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997672-b67be3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙乡年鉴（经典译林）\",\n    \"author\": \"奥尔多・利奥波德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997633-c1cc0f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终于\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997603-36513e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记丛书\",\n    \"author\": \"沈复/陈裴之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诺“读书四部曲”\",\n    \"author\": \"唐诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996982-7a2e32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏辽兹回忆录\",\n    \"author\": \"埃克托尔・柏辽兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996952-cf4c12?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈忠实文集（全10册）\",\n    \"author\": \"陈忠实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996946-fc37da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算了\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996913-f147a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下町火箭4\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996895-a2928b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗吉尼亚·伍尔夫作品集（套装共6册）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996826-c6f60d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"觉醒（2020年精装版）\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996625-acb6fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花园中的处子\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996616-1be3ff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红项圈\",\n    \"author\": \"让-克利斯托夫·吕芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996508-05afae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词境浅说\",\n    \"author\": \"俞陛云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996517-e39145?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里\",\n    \"author\": \"石钟山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996502-a07470?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十月国度\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996484-1dafee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噩耗\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996463-7a111b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎注评\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶稣的学生时代（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995869-614b2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽暗之地（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995590-9c1e13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄\",\n    \"author\": \"斯蒂芬・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995575-9cd60e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季羡林精选集（套装共8册）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995536-2bdb8c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪伯伦大全集名家译著经典套装（全七册）\",\n    \"author\": \"纪伯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995524-a19e30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无愁河的浪荡汉子：朱雀城·八年（全12卷）\",\n    \"author\": \"黄永玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995611-ef385a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此时此地（库切文集）\",\n    \"author\": \"保罗・奥斯特/J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995512-7d1912?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神话\",\n    \"author\": \"斯蒂芬・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995473-1daa2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995452-005b32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河系边缘的小失常\",\n    \"author\": \"埃特加・凯雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995446-9b276f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶稣的童年（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995413-aa1656?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草婴译著全集（套装共21册）\",\n    \"author\": \"草婴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995386-861aa3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列那狐的故事（作家榜经典文库）\",\n    \"author\": \"威廉・卡克斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995368-9b04db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏珊·桑塔格文集套装（套装共16册）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995377-7fe3c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴老师魔性诗词课\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995359-399e21?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（作家榜经典文库）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995341-51019b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迪伦马特戏剧集（全2册）\",\n    \"author\": \"弗里德里希・迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995305-1b9e72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生童话（果麦经典）\",\n    \"author\": \"汉斯・克里斯汀・安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995311-bfdc72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"施尼茨勒作品集（全3册）\",\n    \"author\": \"阿图尔・施尼茨勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995290-617c79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎评论（套装共7册）\",\n    \"author\": \"《巴黎评论》编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995236-9e2014?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克小说集（傅雷译文经典）\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995194-58db5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一次真相\",\n    \"author\": \"赤蝶飞飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995176-68895f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番石榴飘香\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995158-d063ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"葡萄牙的高山\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995155-2caaad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相约星期二\",\n    \"author\": \"米奇・阿尔博姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995149-c4bf6c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记（读客经典文库）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995134-d8eeaf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张洁文集（九卷本）\",\n    \"author\": \"张洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随大全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995206-7fee3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象（短经典）\",\n    \"author\": \"斯拉沃米尔・姆罗热克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995086-94f6de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪夜来客\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995071-9ecd56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地心游记（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅的都市漫游\",\n    \"author\": \"藤井省三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995002-8ac38e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祈念守护人\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994984-d37bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交错的世界\",\n    \"author\": \"詹姆斯・冈恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994981-3f09d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"因为性别\",\n    \"author\": \"吉莉恩・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994912-c2c6df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发明小说的人\",\n    \"author\": \"威廉・埃金顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994825-34c441?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"比尔·波特全集（共8册）\",\n    \"author\": \"比尔・波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994852-852931?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血殇\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牧羊少年奇迹之书大全集（12册）\",\n    \"author\": \"保罗・柯艾略\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994774-be21cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学与人：20世纪西方哲学精选（套装共5本）\",\n    \"author\": \"卡尔・雅斯贝斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在别人的句子里\",\n    \"author\": \"陈以侃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994660-ef8591?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基：作家与他的时代\",\n    \"author\": \"玛丽・彼得鲁塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994630-9c340a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廷巴克图\",\n    \"author\": \"约书亚・哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写在身体上\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994540-f64a45?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保罗·奥斯特作品集（套装共8册）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994537-3a23e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲人之歌\",\n    \"author\": \"卡洛斯・富恩特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994528-250ca1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见马戏团\",\n    \"author\": \"伊坂幸太郎/曼努埃尔・菲奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994525-225149?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿条纹睡衣的男孩\",\n    \"author\": \"约翰・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993655-b05aae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到婚礼去\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993640-c1034d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗忘通论\",\n    \"author\": \"若泽・爱德华多・阿瓜卢萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992440-d7256d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大小谎言\",\n    \"author\": \"莉安・莫里亚蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992374-c85ca5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勃朗特姐妹\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992371-22ab0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要和你妈争辩\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下町火箭3\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992200-402e14?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八十天环游地球（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992194-dd571f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生删除事务所\",\n    \"author\": \"本多孝好\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992101-c22289?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在雨中等你\",\n    \"author\": \"加思・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992038-e92926?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史学要籍丛刊\",\n    \"author\": \"左丘明等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992179-55d354?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的奥尔加\",\n    \"author\": \"本哈德・施林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991903-a21efe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰下的人\",\n    \"author\": \"侯磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991882-f6f0a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种死法（读客版）\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991855-3d9ab3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陆王\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991852-a7e2da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰上斯芬克斯\",\n    \"author\": \"儒尔・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（博集天卷）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，我是接体员\",\n    \"author\": \"大师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日永别\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991768-6563a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假作真时\",\n    \"author\": \"黄昱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯（全3册）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991588-669fa5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大名著（彩皮版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（作家榜经典文库）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991585-a3b4c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民王\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991564-4f72db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十部小说及其作者\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991540-89a5e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（果麦经典）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991528-1cf2cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同体的焚毁\",\n    \"author\": \"希利斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991525-c08881?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰传\",\n    \"author\": \"安德烈・莫洛亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯友兰三松堂全集\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991363-e10961?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八千里路云和月\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光阴似剪\",\n    \"author\": \"达娜・斯皮奥塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991126-9b7881?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乔治·西默农作品精华选\",\n    \"author\": \"乔治・西默农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991147-dca421?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短经典系列（套装共15册）\",\n    \"author\": \"路易吉・马莱巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991078-23a4a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们不是虹城人\",\n    \"author\": \"王苏辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990964-b8afd7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五重塔\",\n    \"author\": \"幸田露伴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991000-d7b7e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的孤独者\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990946-509c94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪者（读客经典）\",\n    \"author\": \"卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990928-0ab20b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死玛丽苏\",\n    \"author\": \"乙一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990913-f79fa7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（作家榜经典文库）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990895-2603f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人行世界\",\n    \"author\": \"七马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990592-949566?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间与河流\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990580-4bae0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的人生歌单\",\n    \"author\": \"格雷姆・辛浦生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的思想（中英双语版·全48册）\",\n    \"author\": \"马可・波罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万有引力之虹（全译修订本）\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990430-11e25b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫三部曲\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990385-be527b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的安吉维拉\",\n    \"author\": \"奇玛曼达・恩戈兹・阿迪契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990373-e61286?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天平之甍\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990343-181c26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"N个国王和他的疆土\",\n    \"author\": \"李浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990331-428bda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要问我\",\n    \"author\": \"东西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990325-750d79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个人的车站\",\n    \"author\": \"埃・韦・布拉金斯基/埃・亚・梁赞诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不回家的诱惑\",\n    \"author\": \"山本文绪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990292-643c61?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两地书（套装共三册）\",\n    \"author\": \"鲁迅/景宋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990286-f28c56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不一样的文学史\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之路（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990163-9fe5c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈扎尔绅士\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990151-0b2e68?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的茶话会\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990148-18dd3b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一次将是烈火\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见毕加索\",\n    \"author\": \"让・科克托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990127-c4de9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非正常死亡事件簿\",\n    \"author\": \"上野正彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990121-2cc599?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷2）\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990103-846409?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光狂想曲\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三言二拍插图典藏版（全六册）\",\n    \"author\": \"冯梦龙等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990106-7735f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟往来书信集\",\n    \"author\": \"梁培宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可怕的孩子\",\n    \"author\": \"让・谷克多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990043-5f0e5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔桶（短经典）\",\n    \"author\": \"伯纳德・马拉默德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990034-7cb146?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青梅竹马\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990031-2346b0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗选注\",\n    \"author\": \"葛兆光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日45：这就是三岛由纪夫\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990112-b7b25e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国游戏\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989977-a49ce1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下町火箭2\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989959-18c2d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十三夜\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989941-4ca418?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯科塔的太阳\",\n    \"author\": \"洛朗・戈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989932-49b7ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京二十三区女子\",\n    \"author\": \"长江俊和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989896-b88cb7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字传奇\",\n    \"author\": \"袁筱一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989881-f84d16?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十六陂烟水\",\n    \"author\": \"刘荒田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989779-84dc83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颂·雅·风\",\n    \"author\": \"徐迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989755-ec3df0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韦力芷兰斋书店寻访三部曲\",\n    \"author\": \"韦力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990037-71fc2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜小说集（套装共4册）\",\n    \"author\": \"居斯塔夫・福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989761-e1636e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等伯：金与墨\",\n    \"author\": \"安部龙太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989644-6d8faf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拍卖第四十九批\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989599-5f3577?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见你之前\",\n    \"author\": \"乔乔・莫伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989596-f44ddf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野果\",\n    \"author\": \"亨利・大卫・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989572-668ed4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国往事1905-1949（共四册）\",\n    \"author\": \"赵柏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989617-e19045?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷1）\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家训（全本全注全译）\",\n    \"author\": \"檀作文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989560-a0570d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔山（读客经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989524-5ccc77?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如比尔街可以作证\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989149-9bb539?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全面战争·日式三国（套装共5册）\",\n    \"author\": \"吉川英治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989020-6eb90a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大吉岭到克什米尔\",\n    \"author\": \"闻中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞万提斯全集（全八卷）\",\n    \"author\": \"米格尔・德・塞万提斯・萨阿维德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988813-dff794?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的面孔\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988498-04aa6e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国·点评本（全11册）\",\n    \"author\": \"孙皓晖/谢有顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988537-4ac278?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无颜者\",\n    \"author\": \"平野启一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988444-bd6c9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风暴眼\",\n    \"author\": \"帕特里克・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988402-cf5517?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二代目归来\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988351-2d0fbe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全7册）\",\n    \"author\": \"伊万谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对不在场证明\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988114-a2c7ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日蚀\",\n    \"author\": \"平野启一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988099-05a34a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝的驿站\",\n    \"author\": \"夏坚勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988093-4ba392?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大话西方艺术史\",\n    \"author\": \"意公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988072-ecbb42?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啸天说诗（全6册）\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987703-41f27c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手绘儒生\",\n    \"author\": \"金龠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987880-6e72c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系度假指南\",\n    \"author\": \"奥莉维亚・科斯基/加纳・格鲁赛维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学法兰西\",\n    \"author\": \"普利西拉・帕克赫斯特・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说药丸\",\n    \"author\": \"埃拉・伯绍德/苏珊・埃尔德金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987217-831e84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"童年兽\",\n    \"author\": \"陆源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987160-9de6e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣懒汉的冒险\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987163-633c4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余秋雨作品全集（套装共12册）\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987538-9bf3bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣家族\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987097-c13163?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳与少女\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987055-66c73f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默书房丛书（套装共8册）\",\n    \"author\": \"J.K.杰罗姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986989-a243cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗圣杜甫\",\n    \"author\": \"吕正惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986797-203237?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水妖\",\n    \"author\": \"内森・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986659-c94878?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情就是堆积如山的笔记\",\n    \"author\": \"苏美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使的孩子\",\n    \"author\": \"丹尼尔・斯蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986575-694e6f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学课\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986485-1c1bd5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的虚构\",\n    \"author\": \"劳拉・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986272-57d69c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚风如诉\",\n    \"author\": \"肯特・哈鲁夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986068-b1f20b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小文艺口袋文库·知人系列（全7册）\",\n    \"author\": \"安妮・海勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985999-ba1691?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周锐幽默三国、西游记、水浒传、红楼梦系列套装4本\",\n    \"author\": \"周锐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985975-9f41e8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第五辑）\",\n    \"author\": \"蒲松龄等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985930-aed100?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听你的\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌蒙山记\",\n    \"author\": \"雷平阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与戛纳\",\n    \"author\": \"蒂耶里・福茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学履途\",\n    \"author\": \"纽约时报主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985852-f9ca35?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶的肉身\",\n    \"author\": \"伊夫林・沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985819-c6fc66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方百年学术经典著作（套装共30品38册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985768-ab1baa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们失去的光\",\n    \"author\": \"吉尔・桑托波罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985711-f7b9ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮尔士论符号 （二十世纪西方哲学经典）\",\n    \"author\": \"查尔斯・皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要塞（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985693-c622f6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奢侈贫穷\",\n    \"author\": \"森茉莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985675-b44dc3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·伯格作品13册套装\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985822-e14dbb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅微草堂笔记（全本全注全译）\",\n    \"author\": \"纪昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985663-f34ed2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第四辑）\",\n    \"author\": \"弗吉尼亚・伍尔夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（中英双语典藏版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯德哥尔摩情人\",\n    \"author\": \"陆俊文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985576-dc8c8a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的音乐笔记\",\n    \"author\": \"肖复兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声色野记\",\n    \"author\": \"侯磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神性的温柔\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的大地（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我们阅读时，我们看到了什么\",\n    \"author\": \"彼得・门德尔桑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流放的老国王\",\n    \"author\": \"阿尔诺・盖格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985414-66b2dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石全集：临川先生文集\",\n    \"author\": \"王水照主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"充闾文集（套装共21册）\",\n    \"author\": \"王充闾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985405-cbee79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜氏家训（全本全注全译）\",\n    \"author\": \"檀作文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985381-82364d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是什么\",\n    \"author\": \"戴夫・艾格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985360-030e8e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智利之夜\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985345-9f6534?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小报戏梦\",\n    \"author\": \"罗伯特・奥伦・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985342-fd9e50?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚经典作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后来的事\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985330-0cbe3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四月女友\",\n    \"author\": \"川村元气\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985327-88b7a9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韦启昌译叔本华系列（共6册）\",\n    \"author\": \"叔本华/尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985312-e66849?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方邮航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985288-11c68c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护身符\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985258-000242?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋水堂论金瓶梅\",\n    \"author\": \"田晓菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985261-d50df1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死96小时\",\n    \"author\": \"冯韵娴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985246-d27bd2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俗世奇人全本\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985231-a9ccfe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狩猎游戏\",\n    \"author\": \"M·A·本内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985216-54d753?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙田随笔全集（共3册）\",\n    \"author\": \"米歇尔・德・蒙田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985171-fc3c5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佩恩先生\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985156-46b0f6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人设\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985153-a9d04a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野侦探\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985138-fcc4c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三岛由纪夫作品（共15册）\",\n    \"author\": \"三岛由纪夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985132-9232ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我余生的第一天\",\n    \"author\": \"维尔吉妮・格里马尔蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985000-fd55f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺全集（全十二卷）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984991-c81bdf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐霞客游记（全本全注全译）\",\n    \"author\": \"朱惠荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984961-6859f1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"留白：秋水堂文化随笔\",\n    \"author\": \"田晓菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984928-62a884?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海摩登（修订版）\",\n    \"author\": \"李欧梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文诗集\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是孤独的旅程\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实：一个小说家的自传\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984871-7df3e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦蛇\",\n    \"author\": \"冯达·N.麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984835-beb8f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漏做招牌的疗养院\",\n    \"author\": \"布鲁诺・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984817-29e172?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集校注（中华国学文库）\",\n    \"author\": \"赵崇祚编/杨景龙校注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984802-9d5c8d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文选（全本全注全译）\",\n    \"author\": \"萧统\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球编年史（套装全七册）\",\n    \"author\": \"撒迦利亚・西琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善心女神\",\n    \"author\": \"乔纳森・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984781-170459?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影师的妻子\",\n    \"author\": \"苏珊・乔伊森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昭明文选（套装共五册）\",\n    \"author\": \"萧统\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984763-46c527?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人幸免\",\n    \"author\": \"奥马尔・阿卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛格丽特·杜拉斯作品（共16册）\",\n    \"author\": \"玛格丽特・杜拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984718-62127c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏子春秋校注（中华国学文库）\",\n    \"author\": \"张纯一撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马家辉家行散记（共3册）\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984712-10fe3b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我和这个世界不熟\",\n    \"author\": \"城迟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984640-5ee8f4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坟场之书\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984631-c99749?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人，做得到任何事\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984625-a03251?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李娟阿勒泰系列（共4册）\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚全集（套装共10本）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984475-8c8d8a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搜神记（全本全注全译）\",\n    \"author\": \"马银琴译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984313-21a38c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界英雄史诗译丛（套装14册）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984031-b9ecb5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾行者\",\n    \"author\": \"路内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983968-99377d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的一瞬间\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983962-13cbc9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴尔夫文集（全6册）\",\n    \"author\": \"艾德琳・弗吉尼亚・伍尔芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983956-3901fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月球房地产推销员\",\n    \"author\": \"李唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983935-c8e067?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨贵妃\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983926-a15f34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏与西伯利亚\",\n    \"author\": \"倪湛舸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢你，像风走了八千里\",\n    \"author\": \"末那大叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拾遗记（全本全注全译）\",\n    \"author\": \"王兴芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983911-a2e9a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕碧城著作（上下册）\",\n    \"author\": \"会闲/鈡锦/李保民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984652-1b7978?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热带\",\n    \"author\": \"李唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983884-d6578c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠悠我心\",\n    \"author\": \"史杰鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年灯火要人归\",\n    \"author\": \"陆蓓容\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983866-8a5362?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹·布朗作品系列新版（套装共7册）\",\n    \"author\": \"丹・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983848-1b6061?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫游者\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983791-958502?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血与火：坦格利安王朝史\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983806-ec2271?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周大新文集（全18册）\",\n    \"author\": \"周大新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983764-c45416?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目漱石作品（共15册）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983740-02e528?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"路遥作品（新版典藏）\",\n    \"author\": \"路遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983668-b0b836?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想我苦哈哈的一生\",\n    \"author\": \"詹姆斯・瑟伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983644-9228c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忏悔录（上下册）\",\n    \"author\": \"卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文字发展史（套装共5册）\",\n    \"author\": \"臧克和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983776-60f56e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身外之海\",\n    \"author\": \"李唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983404-123992?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐祈诗全编\",\n    \"author\": \"唐祈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983401-76fd36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正的接纳，就是爱上不完美的自己\",\n    \"author\": \"爱丽丝・博伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983356-42cd5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹈鹕丛书（共6册）\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劝学篇（全本全注全译）\",\n    \"author\": \"张之洞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983266-6db10e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作的诞生\",\n    \"author\": \"多萝西娅・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983179-258589?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想我眷村的兄弟们\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983164-66ee40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕哈萨帕之歌\",\n    \"author\": \"肯特・纳尔本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983140-a2a003?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睿文馆系列（共十五册）\",\n    \"author\": \"贾雷德・戴蒙德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983122-3c98aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉戈萨手稿\",\n    \"author\": \"扬・波托茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982513-606bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦溪笔谈（全本全注全译）\",\n    \"author\": \"沈括\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982498-8c1213?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（读客经典）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982507-7418ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坡道上的家\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982486-16b5cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的桌子\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982483-fa4e5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去圣伯多禄的路上\",\n    \"author\": \"吴文君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982468-74bc82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小文65\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982444-87cc64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲情偶寄（全本全注全译）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982435-f2b94d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何爱会伤人（珍藏版）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾作品（共21册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982492-7bf040?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对决人生：解读海明威\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054528-4f1dae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一片树叶的颤动\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054492-7e8119?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐之屋\",\n    \"author\": \"哈拉・艾兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054483-84cfa5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华古典文库典藏（共40册）\",\n    \"author\": \"李汝珍等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054597-4de0db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔战时文集\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国四大名著（插图典藏版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054390-341814?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样写故事\",\n    \"author\": \"莉萨・克龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中产阶级看月亮\",\n    \"author\": \"萧耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054210-33aec6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲诗经\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切特立独行的人都意味着强大\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053730-614dee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迁徙的间隙\",\n    \"author\": \"董劼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053526-6e3a84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历滇缅公路（套装共4本）\",\n    \"author\": \"内维尔・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文学（牛津通识读本）\",\n    \"author\": \"尼古拉斯・博伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与神对话（全五卷）\",\n    \"author\": \"尼尔・唐纳德・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫中的恋人\",\n    \"author\": \"陈雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053472-87b733?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柠檬\",\n    \"author\": \"梶井基次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053202-8991a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岛西岸的来信\",\n    \"author\": \"洛丽・施皮尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053124-ef774c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性盲症患者的爱情\",\n    \"author\": \"张天翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053070-b8c727?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重逢\",\n    \"author\": \"弗雷德・乌尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳台上\",\n    \"author\": \"任晓雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053022-ae07ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰的预言\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053016-dca2af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午5：有人送我西兰花\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052992-b766ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写出娱乐的力量\",\n    \"author\": \"貴志祐介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052950-ffb7f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午6：旧山河，新故事\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午7：我们的生活\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052818-d04d83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午2：此地不宜久留\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052698-caedb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人十四个\",\n    \"author\": \"黄晓丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052656-80a0a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走：Green和张早故事集\",\n    \"author\": \"司屠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052647-06ffd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午3：到海底去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052620-5a8fe8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字里行间读鲁迅\",\n    \"author\": \"黄乔生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052611-2c45de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国网络文学二十年\",\n    \"author\": \"欧阳友权\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052599-e1d803?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证词\",\n    \"author\": \"斯科特・特罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052581-58983f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴建业作品集（套装共9册）\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052557-227327?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午4：我的黎明骊歌\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052587-a22353?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火车大巴扎\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052536-571f79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的儿子\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052317-472f57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也是鲁迅的遗物：朱安传\",\n    \"author\": \"乔丽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午1：我穿墙过去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的幽灵：文学与常识\",\n    \"author\": \"安托万・孔帕尼翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052251-1b4968?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空之蓝\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052230-fa9975?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去洞庭\",\n    \"author\": \"郑小驴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052212-1322ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静物\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052191-7b68a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金宇澄作品集\",\n    \"author\": \"金宇澄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052182-8d46f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁宗岱译集（套装共8册）\",\n    \"author\": \"梁宗岱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051921-b46f2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日将至\",\n    \"author\": \"朱利安・费罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051855-91f788?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙田全集（套装共4册）\",\n    \"author\": \"蒙田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051849-bb912e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐页书城三部曲\",\n    \"author\": \"凯・迈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不是来演讲的\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051756-7d2dc4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那时上帝是只兔子\",\n    \"author\": \"莎拉・韦曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051723-905b0e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米格尔在智利的地下行动\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051711-d0d758?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能性\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑塞文集（全10卷）\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051813-4fbe8f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（国学典藏）\",\n    \"author\": \"洪兴祖 补注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生姜头，你疯了\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051588-88d28b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火光之色\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051579-ec6e6c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追逐新月的人\",\n    \"author\": \"森绘都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051576-507427?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等待\",\n    \"author\": \"哈金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051564-255e15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦脂评汇校本\",\n    \"author\": \"吴铭恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051549-30467b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失聪宣判\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051540-75c665?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林语堂传\",\n    \"author\": \"钱锁桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051534-d8c6fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙刑\",\n    \"author\": \"莫琳・派森・吉莉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051519-fb7329?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃勒里·奎因（30本合集）\",\n    \"author\": \"埃勒里・奎因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051606-c33e83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出防空洞\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051501-efedaf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉祥纹莲花楼（套装4册）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051408-db1302?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低地\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051336-a76694?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第三辑）\",\n    \"author\": \"简・奥斯汀等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051342-44a7e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赖床的男人\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051324-774754?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮色将至\",\n    \"author\": \"凯蒂・洛芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051303-448c94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法外套\",\n    \"author\": \"迪诺・布扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051177-97588d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11字谜案\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051162-6633d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗盘\",\n    \"author\": \"马蒂亚斯・埃纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051156-4846ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情和其他魔鬼\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051126-9665e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二十二条军规\",\n    \"author\": \"约瑟夫・海勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051087-ca589a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞芳心小姐（守望者经典）\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051063-a08447?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茧\",\n    \"author\": \"青山七恵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051060-bdf1d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景恒街\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051015-aa2384?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的世界\",\n    \"author\": \"莉兹・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051006-6c5df6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果戈理文集（全7册）\",\n    \"author\": \"果戈理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051000-119a99?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上大教堂\",\n    \"author\": \"伊德方索・法孔内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050892-c80017?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红字（果麦经典）\",\n    \"author\": \"纳撒尼尔・霍桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050886-37cf4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天将会不一样\",\n    \"author\": \"玛利亚・森普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050877-93c812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式婚姻\",\n    \"author\": \"塔亚莉・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050862-f21a03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食货《金瓶梅》\",\n    \"author\": \"侯会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050868-bb8823?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚瑟王之死（果麦经典）\",\n    \"author\": \"托马斯・马洛礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生（名著名译丛书）\",\n    \"author\": \"帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050841-ba42c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美人生的解答书（套装8册）\",\n    \"author\": \"陈海贤等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050835-a3af55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗读者Ⅱ（全3册）\",\n    \"author\": \"董卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050823-8e7bc0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家肴\",\n    \"author\": \"唐颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白驯鹿的九叉犄角\",\n    \"author\": \"张云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050748-d01060?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曹雪芹大传（共14册）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050604-976667?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观音在远远的山上\",\n    \"author\": \"伊沙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050556-84c9cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫（影子经典）\",\n    \"author\": \"加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050511-978701?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生（果麦经典）\",\n    \"author\": \"鲍里斯・帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050505-1511fe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"村上春树和我\",\n    \"author\": \"杰伊・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050466-f3b436?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回不去的旅人\",\n    \"author\": \"杰西・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050415-6b055d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰风谷三部曲\",\n    \"author\": \"R.A.萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050406-705d67?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字的故事\",\n    \"author\": \"王铁钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050379-f02840?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴别塔\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050370-722d26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丘\",\n    \"author\": \"石田衣良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050361-ede86b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江南三部曲\",\n    \"author\": \"格非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050136-657c5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全怪谈：扶桑鬼话（套装共6册）\",\n    \"author\": \"小泉八云等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050130-bed007?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说4）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我离开你\",\n    \"author\": \"艾米莉・布勒克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049989-793bfd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野（木小瓷作品）\",\n    \"author\": \"木小瓷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049983-aec537?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野\",\n    \"author\": \"巫哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生\",\n    \"author\": \"鲍里斯・帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049863-602d2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哪吒\",\n    \"author\": \"奚淞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049710-0661df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大夏教育文存（全11卷）\",\n    \"author\": \"杜成宪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049830-9cf21a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加西亚·马尔克斯访谈录\",\n    \"author\": \"加西亚・马尔克斯/吉恩・贝尔-维亚达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049599-516265?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"E.M.福斯特文集（套装共8册）\",\n    \"author\": \"E.M.福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049557-ddb05b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外出偷马\",\n    \"author\": \"佩尔・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困惑的三文鱼\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创水记\",\n    \"author\": \"赛斯・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《荒岛》及其他文本\",\n    \"author\": \"吉尔・德勒兹/大卫・拉普雅德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"导体\",\n    \"author\": \"克洛德・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049389-41abeb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅格时空大冒险（套装全5册）\",\n    \"author\": \"马德琳・英格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语别裁\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力思维\",\n    \"author\": \"安东尼・塔斯加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书大全套\",\n    \"author\": \"朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细说民国大文人系列（增订版）\",\n    \"author\": \"民国文林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049203-a57f9d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂之死\",\n    \"author\": \"汉妮・明策尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少林很忙\",\n    \"author\": \"马修・波利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049068-7ff5e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（纪念版）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴尔特文集（套装）\",\n    \"author\": \"罗兰・巴尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的迷途\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌金的牙齿\",\n    \"author\": \"万玛才旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048714-87e33e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格练习曲\",\n    \"author\": \"兹旦内克・斯维拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048654-840616?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青青校树\",\n    \"author\": \"兹旦内克・斯维拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048651-3c2d76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰克·凯鲁亚克作品集（套装共13册）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048672-0f790e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词排行榜\",\n    \"author\": \"王兆鹏/郁玉英/郭红欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗排行榜\",\n    \"author\": \"王兆鹏/邵大为/张静/唐元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"装腔指南\",\n    \"author\": \"托马斯· W. 霍奇金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048573-ba74e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷场\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048561-99f922?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲茨杰拉德作品全集（套装共10册）\",\n    \"author\": \"菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048531-da8069?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书店\",\n    \"author\": \"佩内洛普・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048501-57d0d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蓝花\",\n    \"author\": \"佩内洛普・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048498-7b3dc7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤川次郎作品系列（套装共五册）\",\n    \"author\": \"赤川次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048447-5436f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非典十年祭\",\n    \"author\": \"何建明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048432-7a243d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾娃·拉文德奇异而美丽的忧伤\",\n    \"author\": \"蕾丝莱・沃顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048315-3325ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金蔷薇（果麦经典）\",\n    \"author\": \"康・帕乌斯托夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048282-b6e283?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂的奥兰多\",\n    \"author\": \"卢多维科・阿里奥斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世理发馆\",\n    \"author\": \"式亭三马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048219-f2fc1e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉鲨\",\n    \"author\": \"莫腾・安德雷亚斯・斯特罗克奈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公孙龙子（全本全注全译）\",\n    \"author\": \"黄克剑译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（果麦经典）\",\n    \"author\": \"普罗斯珀・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酒鬼与圣徒\",\n    \"author\": \"劳伦斯・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管子（全本全注全译）\",\n    \"author\": \"李山/轩新丽译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离婚（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱啊美啊人生啊\",\n    \"author\": \"石川啄木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047964-020a7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女观众\",\n    \"author\": \"兹旦内克・斯维拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047907-ccdbb7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错失之爱\",\n    \"author\": \"兹旦内克・斯维拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047901-7edab4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔纪实作品全集（套装共3册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大树小虫\",\n    \"author\": \"池莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047805-44bd73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡在汽车里的女孩\",\n    \"author\": \"珍妮弗・克莱门特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047661-1ca554?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独梦想家\",\n    \"author\": \"戴维・巴尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047646-c1f65b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小彩虹（第一辑）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎人\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047529-50899a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（果麦经典）\",\n    \"author\": \"爱米丽・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047481-49fc2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恐妻家\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047436-da2420?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲与哀矜\",\n    \"author\": \"张定浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047418-fe398a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些忧伤的年轻人\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（果麦经典）\",\n    \"author\": \"尼古拉・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047319-612f67?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小城畸人\",\n    \"author\": \"舍伍德・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047148-e62f8e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从捕鲸船上一路走来\",\n    \"author\": \"孙康宜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047139-072e6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大河深处\",\n    \"author\": \"东来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047136-68689e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔小说全集（套装共6册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047130-74f0d5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔雅（全本全注全译）\",\n    \"author\": \"管锡华译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德谈话录（果麦经典）\",\n    \"author\": \"爱克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047061-9b3ce0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第84封情书\",\n    \"author\": \"骆淑景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨浪下的小学\",\n    \"author\": \"理查德・劳埃德・帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046986-bb9508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅰ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅱ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强风吹拂\",\n    \"author\": \"三浦紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046827-b2725e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三个警察\",\n    \"author\": \"弗兰・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046809-668e12?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"返朴\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046800-b689fb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝲蛄吟唱的地方\",\n    \"author\": \"迪莉娅・欧文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046752-6d776b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不识字的人\",\n    \"author\": \"雅歌塔・克里斯多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046671-ef211b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷谈艺录及其他\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的晃荡的青春\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046584-e51f3a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波动\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046539-3edfdf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾年度套装（共56册）\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046530-4e40c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力的胎动\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046440-06c86c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋公羊传（全本全注全译）\",\n    \"author\": \"孔子/公羊寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046404-436973?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（果麦经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046398-388e26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二次吸引\",\n    \"author\": \"“小鹿情感”专家组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅰ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开市大吉（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲民间故事\",\n    \"author\": \"保罗・拉丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046212-6c1ced?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草莓人生\",\n    \"author\": \"荻原浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046182-614108?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（果麦经典）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046152-a5184c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被弃养的女孩\",\n    \"author\": \"多娜泰拉・迪皮耶特兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046107-0c342f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九功舞系列（套装9册）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046071-f8bd41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异（全校会注集评）\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046074-8abd51?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤鹰（全2册）\",\n    \"author\": \"邵雪城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046029-a3ef29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠峰史诗\",\n    \"author\": \"荣赫鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（读客经典）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045993-9650b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家书（全本全注全译）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045999-309b55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"整个巴黎属于我\",\n    \"author\": \"莱斯利·M.M.布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡子有脸\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045900-ac03ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Trust Exercise\",\n    \"author\": \"Susan Choi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045894-05a1ea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅的忧郁\",\n    \"author\": \"安德烈・库尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045798-191757?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国环岛之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045783-b17647?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝版民国小书馆\",\n    \"author\": \"叶鋆生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045771-730497?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖马的女人\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045738-eb7bec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在西伯利亚森林中\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾城之恋（2019版）\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045720-2b6e2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（全本全注全译）\",\n    \"author\": \"方韬译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故都的秋（果麦经典）\",\n    \"author\": \"郁达夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045714-445e3b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萝西与苹果酒\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵魂漫长而黑暗的茶点时间\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045672-dda13f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神仙传（全本全注全译）\",\n    \"author\": \"葛洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有一个人生\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华生活经典系列（第一辑共11册）\",\n    \"author\": \"林洪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046236-5c0c2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸽羽（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045633-3b7458?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航西飞\",\n    \"author\": \"柏瑞尔・马卡姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣洁百合（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045435-80896e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运与狂怒\",\n    \"author\": \"劳伦・格罗夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045408-c43a32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评家之死\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045375-92d933?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著名译典藏（套装共50册）\",\n    \"author\": \"亚历山大・仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045579-8eb63c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古都\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045330-d9a79d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山旅书札\",\n    \"author\": \"伊莎贝拉・博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特（果麦经典）\",\n    \"author\": \"米・阿・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045261-32db15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去海拉尔\",\n    \"author\": \"王咸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045237-1155f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土之界\",\n    \"author\": \"希拉莉・乔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑白\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045204-4b1239?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白牙（果麦经典）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045189-be69e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子富了\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045186-124685?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前往阿姆河之乡\",\n    \"author\": \"罗伯特・拜伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨房太平记\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045153-e2431a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书（果麦经典）\",\n    \"author\": \"鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045132-c19a7a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子歇了\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045129-8b542b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国精神读本\",\n    \"author\": \"王蒙/王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日升之处\",\n    \"author\": \"A.W.金莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒海妖船\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045072-9ea87c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经点醒\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子，跑吧\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045000-71d22e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老巴塔哥尼亚快车\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛兰德镜子\",\n    \"author\": \"dome\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044964-66fcfd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张爱玲作品精选（共8册）\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044931-653d40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子归来\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044880-adae9d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果木桌子及其他简记\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044877-c7b3c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒海救援\",\n    \"author\": \"凯西・谢尔曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044832-8b760f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长眠不醒（读客版）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044850-14a642?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间值得\",\n    \"author\": \"中村恒子/奥田弘美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多瑙河之旅\",\n    \"author\": \"克劳迪欧・马格里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱风堂书店\",\n    \"author\": \"村山早纪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044775-82e48b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（果麦经典）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044751-279929?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙河讲古诗十九首\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044709-330c0b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老先生\",\n    \"author\": \"周实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044673-2e0611?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陶渊明集（作家榜经典文库）\",\n    \"author\": \"陶渊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰夫·戴尔作品套装（共5册）\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044583-471d7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（作家榜经典文库）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海译文TOP30名家名作大套装（套装共30本·2019年版）\",\n    \"author\": \"贾雷德・戴蒙德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045210-c6ded3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，吾爱（读客经典）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044367-02fe4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐大脑\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044223-76e5dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致后代\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶馆（作家榜经典文库）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张岪与木心\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人译文全集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044202-ce9b41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（作家榜经典文库）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044055-3a2105?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你当像鸟飞往你的山\",\n    \"author\": \"塔拉・韦斯特弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"覆舟的愉悦\",\n    \"author\": \"朱塞培・翁加雷蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日一善（套装全4册）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笠翁对韵（作家榜经典文库）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球无应答\",\n    \"author\": \"王诺诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043929-c25390?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威诞辰120周年图文珍藏版文集（全18卷）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044511-3d087b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花与恶心\",\n    \"author\": \"卡洛斯・德鲁蒙德・德・安德拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽尔（果麦经典）\",\n    \"author\": \"西尔维娅・普拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的事情\",\n    \"author\": \"苇岸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米沃什词典\",\n    \"author\": \"切斯瓦夫・米沃什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043800-b2c0ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我将敢于亲吻你\",\n    \"author\": \"阿方斯娜・斯托尔妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043794-7c46f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的中国历史故事（作家榜经典文库）\",\n    \"author\": \"汤芸畦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康德《纯粹理性批判》句读\",\n    \"author\": \"邓晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043740-d2094f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代唯心论简释\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风景中的少年\",\n    \"author\": \"胡戈・冯・霍夫曼斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043686-99ceaf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏天、烟火和我的尸体\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043674-f51d72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照诗词全集（作家榜经典文集）\",\n    \"author\": \"李清照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敌人的名字是宫本武藏\",\n    \"author\": \"木下昌辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043602-ae92e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典普及文库（精选共15种20册）\",\n    \"author\": \"中华书局编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉本家的猫咪们\",\n    \"author\": \"春野宵子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043533-a39c3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧书（作家榜经典文库）\",\n    \"author\": \"巴尔塔萨尔・格拉西安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从诗经到红楼梦\",\n    \"author\": \"一条课堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043464-ad95e4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听客溪的朝圣\",\n    \"author\": \"安妮・迪拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威作品精选系列（套装共6册）\",\n    \"author\": \"欧内斯特・米勒尔・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043368-29e606?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦理学知性改进论\",\n    \"author\": \"斯宾诺莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林，亚历山大广场（译文经典）\",\n    \"author\": \"阿尔弗雷德・德布林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043308-cc3071?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎（全本全注全译）\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043302-be1cec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适19堂文学课（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043251-5f125a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡的百年史\",\n    \"author\": \"吉田茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043236-c78d00?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你老去\",\n    \"author\": \"伊塔洛・斯韦沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043218-37b8f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李白传\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风之影四部曲\",\n    \"author\": \"卡洛斯・鲁依兹・萨丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043113-dd5324?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忍不住的新努力（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043095-cf02bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宪益中译作品集（全五卷）\",\n    \"author\": \"阿里斯托芬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043053-24a2f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希尼三十年文选\",\n    \"author\": \"谢默斯・希尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格拉斯医生（译文经典）\",\n    \"author\": \"雅尔玛尔・瑟德尔贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042873-c12a32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异（全本全注全译）\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042888-47daec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（作家榜经典文库）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042867-c3483f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粉笔人\",\n    \"author\": \"C.J.图德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042825-f56dbd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉思录（译文经典）\",\n    \"author\": \"马可・奥勒留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画梁春尽落香尘\",\n    \"author\": \"刘心武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042753-f657fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐王子（译文经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042723-bfc360?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战火家园\",\n    \"author\": \"卡米拉・夏姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042651-db3e89?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金蔷薇（译文经典）\",\n    \"author\": \"帕乌斯托夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042630-5634d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕\",\n    \"author\": \"阿敏・马卢夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简世界神话\",\n    \"author\": \"马克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰冻时光之窗\",\n    \"author\": \"尤里・维尼楚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042510-b9497c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大雪无痕（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042507-28ce63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名人传（译文经典）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042477-5d0e3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格兰贝的年轻人\",\n    \"author\": \"科林・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042450-f7cc4e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042417-58fafd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉被（译文经典）\",\n    \"author\": \"田山花袋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042351-df86cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的独角兽\",\n    \"author\": \"彼得・毕格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042258-61b812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"省委书记（修订典藏版）\",\n    \"author\": \"陆天明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042276-7487a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔的交易\",\n    \"author\": \"克劳斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042216-d97448?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24个比利\",\n    \"author\": \"丹尼尔・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042204-b0cec2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大脑\",\n    \"author\": \"苏珊娜・卡哈兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042210-b00ec5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸽子隧道\",\n    \"author\": \"约翰・勒卡雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041985-d82b4b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆流（译文经典）\",\n    \"author\": \"于斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041973-baab99?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫年纪事（译文经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041763-ddc224?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅盾文学奖传世经典15部装（共33册）\",\n    \"author\": \"李国文等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041607-c640ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱迪克\",\n    \"author\": \"克丽丝・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041391-026711?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳王与海妖\",\n    \"author\": \"冯达·N.麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041379-6263bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星一号\",\n    \"author\": \"朱个\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041376-a5c0bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔杂文全集（全2册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我在一个仲夏清晨出走\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041316-13ceb7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大河恋\",\n    \"author\": \"诺曼・麦克林恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041232-aec3d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被涂污的鸟\",\n    \"author\": \"耶日・科辛斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041022-bb6b72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眩晕\",\n    \"author\": \"祁媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040989-c5fa85?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵、自我与社会（译文经典）\",\n    \"author\": \"米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无麂岛之夜\",\n    \"author\": \"池上\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040830-a8c559?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特文集（全5卷）\",\n    \"author\": \"托・斯・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040791-73a240?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们与祖先交谈的夜晚\",\n    \"author\": \"萨沙・斯坦尼西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040701-145d11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方与北方（名著名译丛书）\",\n    \"author\": \"盖斯凯尔夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040674-6dd07a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城堡（名著名译丛书）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040650-b9b5bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最深的水是泪水\",\n    \"author\": \"鲍尔吉・原野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040617-eb3c15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃普萧纪事\",\n    \"author\": \"约翰・契弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040563-3844e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界少年文学经典文库·中国经典篇（全套30册）\",\n    \"author\": \"吴承恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040800-945097?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兔\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040452-a92efa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奔跑的查理\",\n    \"author\": \"查理・恩格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040404-94e03c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过（2019全新修订）\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040293-137a08?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不锈时光\",\n    \"author\": \"任曙林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040479-46f77b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安娜表哥\",\n    \"author\": \"余静如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040278-6816f4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识与通识（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拔蒲歌\",\n    \"author\": \"沈书枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯日记\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039990-dbfb2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅毅说中华英雄史（全10册）\",\n    \"author\": \"梅毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040140-0d274d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只胳膊的拳击\",\n    \"author\": \"庞羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039870-60c650?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃普萧丑闻\",\n    \"author\": \"约翰・契弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039864-fe0768?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第二辑）\",\n    \"author\": \"奥斯卡・王尔德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039732-4d4163?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老舍经典作品集（套装共10册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039705-ce0174?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义是一种人道主义（译文经典）\",\n    \"author\": \"让-保罗・萨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039642-f8eb49?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终止\",\n    \"author\": \"樱木紫乃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039603-f961ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静\",\n    \"author\": \"艾林・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说的八百万种写法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039474-4b3e24?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间的诗学（译文经典）\",\n    \"author\": \"加斯东・巴什拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同名人\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039456-5cef3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骂观众\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039432-b8a3ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第一辑）\",\n    \"author\": \"薄伽丘等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海浪（译文经典）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039228-13707b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨必将落下\",\n    \"author\": \"米歇尔・法柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039216-164527?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海浪（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039150-6a4545?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自遗忘的最深处\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039075-4c44c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何，以及如何谋划一场火灾\",\n    \"author\": \"杰西・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039045-ac9204?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗生门（译文经典）\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039024-fbf276?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样你就不会迷路\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039021-60295e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤城闭\",\n    \"author\": \"米兰Lady\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039006-1aa3c4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳船上的孩子\",\n    \"author\": \"雅丝米娜・米哈伊洛维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖大师作品集（套装共19册）\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038964-9471dd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥兰多（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038967-31be31?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细雪\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038934-2fa053?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第四只手\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038940-7b7b24?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"田园交响曲（译文经典）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038904-bcb0b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小丑之花\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038895-3f3d8d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的新生\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038802-5275a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国典藏小钩沉系列（套装书共7册）\",\n    \"author\": \"芥川龙之介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038805-48bea2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缓慢的归乡\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038769-f672c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左撇子女人\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038766-406e59?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔特手记（译文经典）\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038694-91674f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨齿鲨\",\n    \"author\": \"斯蒂夫・奥顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038691-82187b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗勒希（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038658-5b950b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"残雪经典作品集（24本套装）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038718-2c72e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末世之城（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038598-b6383b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多余的人（果麦经典）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038595-0cf589?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽暗国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在地图结束的地方（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038514-a54c28?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人世间（全三册）\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038496-ed84a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：受伤的文明\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038451-62394a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惜别\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038448-089ef0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隔壁的女人\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038424-52f601?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球飞船\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小说与小说家（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038409-cb997a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为奴十二年（译文经典）\",\n    \"author\": \"所罗门・诺瑟普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038358-15a854?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：百万叛变的今天\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守门员面对罚点球时的焦虑\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038346-ef6963?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失控的地球\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038337-71ff2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"津轻\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038310-49be36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世间之路\",\n    \"author\": \"V. S. 奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038304-7876a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日郊外的旅店\",\n    \"author\": \"安娜-卡埃勒・雨昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038115-2ded2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡瓦利与克雷的神奇冒险\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038055-ad70de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起连环绑架案的新闻\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037893-b383ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯通与骑士伙伴\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037887-c76d6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室中的旅行（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037878-b5f9c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗1：父亲的葬礼\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037839-6b7aa9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂消息\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037815-c1d2ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜巴士\",\n    \"author\": \"梅雷迪斯・梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037812-224f59?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶人传\",\n    \"author\": \"约翰・班扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿吽\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037725-ba9a2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恋爱中的男人\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037671-0d7dcf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弃儿汤姆·琼斯史（全2册）\",\n    \"author\": \"亨利・菲尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037641-305812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"模仿者\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037554-1eae8b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民选举\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037491-26ed83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人经典作品合集（套装共9册）\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037461-7d9d06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河界区三部曲\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037371-702f6f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给大人的睡前故事\",\n    \"author\": \"陈谌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037335-23997b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕司沃斯先生的房子\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037305-c3a875?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊甸园（译文经典）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037275-21f613?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发条橙（全新译本）\",\n    \"author\": \"安东尼・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037221-aea276?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方视野里的中国合集（共10册）\",\n    \"author\": \"庄士敦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武志红经典作品合集（套装共4册）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八部半\",\n    \"author\": \"黄昱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037161-fb1ee6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏油娃娃\",\n    \"author\": \"托妮・莫里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037164-700704?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫怪兽（套装共3册）\",\n    \"author\": \"常怡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037149-71d4a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（译文经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子不语（果麦经典）\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036864-3b3707?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈保尔家书\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐宋传奇集（精装典藏版）\",\n    \"author\": \"蔡义江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036696-49672a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊天记录\",\n    \"author\": \"萨莉・鲁尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036489-b8b57d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被猜死的人\",\n    \"author\": \"田耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036468-e0797b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安吾人生谈（坂口安吾系列作品）\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036459-ecdec0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不连续杀人事件（坂口安吾系列作品）\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036450-e44554?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈里·戈贝尔事件的真相（全两册）\",\n    \"author\": \"若埃尔・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036234-8b66ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100：小小说百篇\",\n    \"author\": \"乔治・曼加内利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036240-367630?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第三辑）\",\n    \"author\": \"圣埃克苏佩里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036372-54fcf2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"T.S.艾略特传\",\n    \"author\": \"林德尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第四辑）\",\n    \"author\": \"大仲马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱书单\",\n    \"author\": \"格雷迪・亨德里克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036225-7848b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（名著名译丛书）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第一辑）\",\n    \"author\": \"莫泊桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪传\",\n    \"author\": \"赫伯特・R.洛特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字的力量\",\n    \"author\": \"马丁・普克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第二辑）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔诗选（名著名译丛书）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035529-81da8d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑铁时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035502-811759?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼作家\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035496-5bc64f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学小史\",\n    \"author\": \"干春松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噩梦巷\",\n    \"author\": \"威廉・林赛・格雷沙姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035349-f24c2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皆大欢喜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱桃园（名著名译丛书）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035322-e80b3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴间神探（套装6册）\",\n    \"author\": \"道门老九\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035340-f48b63?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时灯火（读客版）\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035298-2002db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愤怒的葡萄\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035292-fafe32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被释放的祖克曼\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035274-ec6a81?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说选（名著名译丛书）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035244-18370e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格狂欢\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035217-ccde38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像雪一样温暖\",\n    \"author\": \"王大进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035193-47ab0e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死魂灵（名著名译丛书）\",\n    \"author\": \"果戈理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035190-455dfe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"垂死的肉身\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035178-cb8804?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035160-d37674?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是开豆腐店的，我只做豆腐\",\n    \"author\": \"小津安二郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035157-62d9ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡利古拉\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米德尔马契（名著名译丛书）\",\n    \"author\": \"乔治・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035091-250be1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退场的鬼魂\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035064-53a301?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找无双\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035061-224a42?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克白（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035055-a52df3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流亡与独立王国\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035040-722b2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著名译丛书）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035043-4a5759?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的阴阳两界\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035031-a60fc1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖课\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035028-a2b7ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评论文集\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035013-9a2b5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老妇还乡（名著名译丛书）\",\n    \"author\": \"迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035007-9dda46?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日的世界\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方之星\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034878-849ebc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反抗者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034860-79f647?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲望教授\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034836-976ed6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银时代\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034809-9dfcdb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾《传记文学》珍藏系列（全15册）\",\n    \"author\": \"梁实秋/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·布拉斯（名著名译丛书）\",\n    \"author\": \"勒萨日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034791-747b5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乳房\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行记\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034770-67707c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034764-a88dde?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034776-4f89d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034710-aee0ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Lost Hero\",\n    \"author\": \"Rick Riordan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034704-83b347?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Son of Neptune\",\n    \"author\": \"Riordan, Rick\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034701-12ce38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Blood of Olympus\",\n    \"author\": \"Rick Riordan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034686-547a10?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Year of the Flood\",\n    \"author\": \"Margaret Atwood\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034677-627783?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有人给他写信的上校\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034659-dfacc3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈克贝利·费恩历险记（读客经典）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034635-bafac9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学巨匠老舍作品珍藏集（套装53册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034650-848b00?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳舞女郎\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034623-126b75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯癫亚当\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034611-1bb945?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学百年经典（套装三册）\",\n    \"author\": \"李朝全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特（名著名译丛书）\",\n    \"author\": \"布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034545-231c0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洪水之年\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034530-12e063?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"既生魄\",\n    \"author\": \"张广天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034497-a955e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都兰趣话（名著名译丛书）\",\n    \"author\": \"奥诺雷・德・巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034479-984c05?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"源氏物语（全译彩插绝美版）\",\n    \"author\": \"紫式部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034587-717afe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强盗新娘\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034449-93c7ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（果麦经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034425-ba996e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Thousand Years of Good Prayers\",\n    \"author\": \"Yiyun Li\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034410-7818fe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是你爸爸\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034359-948c8d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034326-c79462?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上\",\n    \"author\": \"徐则臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034275-7ee0c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说选（名著名译丛书）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034254-5ce4c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国婉约（套装7本）\",\n    \"author\": \"江晓英/林杉/臧宪柱/李婍/牧来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朔文集（典藏版）\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应物兄（全2册）\",\n    \"author\": \"李洱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034098-e62c03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和电风扇一起摇头\",\n    \"author\": \"大岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034092-9f46c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牵风记\",\n    \"author\": \"徐怀中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034086-23a522?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致女儿书\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033981-f30b64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异乡人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033951-f2a1e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲兹杰拉德小说精选（套装共4册）\",\n    \"author\": \"弗朗西斯・司各特・菲兹杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033936-250a7b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看上去很美\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书就是一个喷嚏\",\n    \"author\": \"杰克・格罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033873-d0d32c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的访谈系列（套装共6册）\",\n    \"author\": \"欧内斯特・米勒尔・海明威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"速求共眠\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033828-cbebcf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典咏流传诗词曲赋集（套装21册）\",\n    \"author\": \"李白/王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从月亮来的男孩\",\n    \"author\": \"安德鲁・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033777-207e83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（名著名译丛书）\",\n    \"author\": \"赫尔曼・梅尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033726-6ae4d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飘（企鹅经典）\",\n    \"author\": \"玛格丽特・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033714-39755f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（企鹅经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033651-3000d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词集（词系列）\",\n    \"author\": \"姜夔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌本纪\",\n    \"author\": \"叶舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033609-6e7d3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上尉的女儿（企鹅经典）\",\n    \"author\": \"普希金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033594-5c7f0b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不分心\",\n    \"author\": \"亚历克斯・索勇－金・庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033558-d65235?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物，怎么办？（企鹅经典）\",\n    \"author\": \"汉斯・法拉达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033552-fc5367?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶意之山\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033504-13c2d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写小说最重要的十件事\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033486-6785a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧阳修词集（词系列）\",\n    \"author\": \"欧阳修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（果麦经典）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独是一朵莲花（作家榜经典文库）\",\n    \"author\": \"郁达夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033468-53acb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜色温柔（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033453-716b81?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛蛙\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033435-2bd061?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐宋词格律（词系列）\",\n    \"author\": \"龙榆生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033402-d9e7be?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚特兰蒂斯之心\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033399-aedb1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词集（词系列）\",\n    \"author\": \"苏轼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬将军来的夏天\",\n    \"author\": \"甘耀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033342-c27b37?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔山（企鹅经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033270-e62351?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸骨袋\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033264-2ab845?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏殊词集·晏幾道词集（词系列）\",\n    \"author\": \"晏殊/晏几道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我愿意是急流\",\n    \"author\": \"裴多菲・山陀尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033246-a24a75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰在黄昏起飞\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033234-b6cfcb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生：苏珊·桑塔格日记与笔记（1947-1963）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC经典文化纪录片配套著作精选合集\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033249-7df812?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说选（企鹅经典）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033195-5988c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香山帮\",\n    \"author\": \"朱宏梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033168-09c55f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊镇2\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033165-9e1f41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第一辑（套装共16册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033171-09f6c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短篇小说写作指南\",\n    \"author\": \"美国《作家文摘》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间里的痴人\",\n    \"author\": \"珍妮弗・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033180-e2b5a5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茵梦湖（企鹅经典）\",\n    \"author\": \"施托姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033138-01b7da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第二辑（套装共12册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食家\",\n    \"author\": \"陆文夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033072-217156?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单：应对复杂世界的高级思维\",\n    \"author\": \"木鱼/柳白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033039-6a69db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周邦彦词集（词系列）\",\n    \"author\": \"周邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033030-271dc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争与和平（名著名译丛书）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被封印的唐史\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033009-fa3de9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贺铸词集（词系列）\",\n    \"author\": \"贺铸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032997-d1ca33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗昭昭（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032988-e8826f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陆游词集（词系列）\",\n    \"author\": \"陆游\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"IT84\",\n    \"author\": \"张辛欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032934-09488a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教堂尖塔（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032922-ca9637?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李煜词集（词系列）\",\n    \"author\": \"李煜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032910-cc40de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的人（企鹅经典）\",\n    \"author\": \"拉尔夫・艾里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032838-8e346a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘以鬯经典三部曲\",\n    \"author\": \"刘以鬯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032823-8e9769?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独角兽\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032814-2310b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第五辑）\",\n    \"author\": \"雅各布・布克哈特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坟墓的闯入者（企鹅经典）\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032805-2fdf34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘿，小家伙\",\n    \"author\": \"温酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑王子\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032775-2d8d02?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京女子图鉴\",\n    \"author\": \"王欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032742-fb8407?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十五条狗\",\n    \"author\": \"安德烈・亚历克西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032739-cd5508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花雨枪\",\n    \"author\": \"夏生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间鲁迅\",\n    \"author\": \"林贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"修道院纪事\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032682-f9c457?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无名指\",\n    \"author\": \"李陀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032643-ea6a01?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代英雄（企鹅经典）\",\n    \"author\": \"米哈伊尔・莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032583-5401e7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海，大海\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032586-efa32a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美婚姻\",\n    \"author\": \"米歇尔・里奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦文学小史\",\n    \"author\": \"埃洛伊丝・米勒/萨姆・乔迪森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法定幸福\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032517-74cfb2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖得主石黑一雄作品集（套装共8册）\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032526-985657?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蠹鱼文丛系列（套装10册）\",\n    \"author\": \"陈子善/叶瑜荪/李辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电厂之夜\",\n    \"author\": \"爱德华多・萨切里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032484-941c2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔血案\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032475-a3eb97?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡的故事\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032478-145139?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四季，三餐，都随你\",\n    \"author\": \"简猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国病人（企鹅经典）\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032424-c5dfca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编舟记\",\n    \"author\": \"三浦紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032418-a424c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十首情诗和一支绝望的歌\",\n    \"author\": \"巴勃罗・聂鲁达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小于一\",\n    \"author\": \"约瑟夫・布罗茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布隆夫曼脱单历险记\",\n    \"author\": \"丹尼尔・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小丑\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽丝旅馆\",\n    \"author\": \"小川洋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032292-1db373?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾拉·格雷的歌\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱桃的滋味\",\n    \"author\": \"阿巴斯・基阿鲁斯达米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032268-b0e557?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忧郁的热带\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红拂夜奔\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032253-de9ad1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林的雨\",\n    \"author\": \"卡尔・盖瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032241-04972e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟随周恩来过草地\",\n    \"author\": \"张文宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032232-26530e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造梦师（套装共4册）\",\n    \"author\": \"陈佳同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032256-0c0e76?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棋王（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032205-bbe80d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岗村40年\",\n    \"author\": \"贾鸿彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的大多数\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032169-8cecf3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾米丽的一朵玫瑰\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032145-b37d53?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗生门（读客经典）\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032109-6ad93e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲话闲说（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032094-c45426?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词鉴赏辞典\",\n    \"author\": \"唐圭璋/钟振振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的答案\",\n    \"author\": \"卢思浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032070-1c4c86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七侯笔录\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032064-f516e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打字机上的缪斯\",\n    \"author\": \"杰西・波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032046-bcf6eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感悟文学大师经典100册套装\",\n    \"author\": \"萧枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愤怒的葡萄（译文名著精选）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032013-d0d355?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三杯茶\",\n    \"author\": \"葛瑞格・摩顿森/大卫・奥利佛・瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032001-2bc835?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学荟萃（全36册）\",\n    \"author\": \"沈复/吴楚材/吴调侯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032133-b8e344?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（作家榜经典文库）\",\n    \"author\": \"弗・司各特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031977-f1c06b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生如夏花（作家榜经典文库）\",\n    \"author\": \"拉宾德拉纳特・泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生是我吗\",\n    \"author\": \"刘苇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师精品（套装三十册）\",\n    \"author\": \"鲁迅/徐志摩/朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031935-49b0cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"17岁，成为星或兽的季节\",\n    \"author\": \"最果夕日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031896-68686f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游泳回家\",\n    \"author\": \"德博拉・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031884-0e53c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下：东京地铁沙林毒气事件实录（套装共2册）\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031869-499ce7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩5：遗失的羽毛\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物农场（译文经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031764-29356d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031746-95d746?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"素年锦时\",\n    \"author\": \"安妮宝贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031728-e066c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煎饼坪（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031713-7bf0a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小红马（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银茶匙\",\n    \"author\": \"中勘助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031662-02c1ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿野仙踪全集（全14册）\",\n    \"author\": \"莱曼・弗兰克・鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031788-1a3b36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交错的场景\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031620-109a71?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英格兰，英格兰\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031614-a56b26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凝视太阳\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031605-7148b5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典文学名著四师深度解读推荐版（套装七册）\",\n    \"author\": \"威廉・福克纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的外国文学经典（套装35册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烦恼的冬天（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031449-a7ec38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罐头厂街（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031428-357e47?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冒牌人生\",\n    \"author\": \"陈思安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031416-d3e501?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选剧本集（套装21册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031395-dbf371?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍作品全集（套装五十五册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031389-1fea08?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮下去了（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031368-763178?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人，岁月，生活\",\n    \"author\": \"爱伦堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031377-705e7b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮\",\n    \"author\": \"库尔齐奥・马拉巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031356-2f3f74?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为妮可\",\n    \"author\": \"艾米・埃利斯・纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来前书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来后书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师与玛格丽特\",\n    \"author\": \"布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031275-8620c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍代表作作品集（套装九册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人鼠之间（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031245-271805?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结的感觉\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031236-897f5d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢学\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031233-027c9c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（果麦经典）\",\n    \"author\": \"弗朗西斯・司各特・菲兹杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031194-680961?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著名译化境文库（套装共9册）\",\n    \"author\": \"化境文库编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁克林的荒唐事（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031161-0663b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审判（果麦经典）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031086-d0d0f1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与死的年代\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031077-d1a6b0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伙伴进行曲\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031065-ab7513?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山月记（果麦经典）\",\n    \"author\": \"中岛敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031062-5d4286?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他从凤凰来：沈从文传\",\n    \"author\": \"金介甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030948-655c86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有人在周围走动\",\n    \"author\": \"胡里奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030918-9751a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被占的宅子\",\n    \"author\": \"胡里奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030912-f6d256?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞑靼人沙漠\",\n    \"author\": \"迪诺・布扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030852-8f4137?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装六十册）\",\n    \"author\": \"奥斯丁/勃朗特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031182-92bef5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阁楼上的疯女人\",\n    \"author\": \"桑德拉・吉尔伯特/苏珊・古芭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030792-df1d6e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈希我疼痛小说三部曲\",\n    \"author\": \"陈希我\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030783-193739?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说稗类\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030765-dedc99?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦灰堆 美人计\",\n    \"author\": \"萧耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030711-cffcd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸短情长，民国大师们的最美情书（全6册套装）\",\n    \"author\": \"朱生豪/鲁迅/闻一多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文豆瓣高分必读经典套装\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030654-cbc641?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦（修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学、通俗文化和社会\",\n    \"author\": \"利奥・洛文塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030576-bd1f90?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生三部曲\",\n    \"author\": \"派特・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030570-38049c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山月记\",\n    \"author\": \"中岛敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030540-cf1f19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不焦虑了\",\n    \"author\": \"安藤俊介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030516-b637e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网与石（套装共2册）\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030513-f4512b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色方尖碑\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030498-51ee22?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单独中的洞见\",\n    \"author\": \"张方宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间词话（作家榜经典文库）\",\n    \"author\": \"王国维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030492-572067?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学大师经典必读（套装100册）\",\n    \"author\": \"鲁迅/徐志摩/朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030450-b187cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟藏\",\n    \"author\": \"老王子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030411-768a7d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘震云经典文集\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030384-476010?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Red, White &#038; Royal Blue\",\n    \"author\": \"Casey McQuiston\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030360-475186?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三毛典藏全集（14本套装）\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030303-88ee37?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师精选典藏系列套装33册\",\n    \"author\": \"林徽因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找更明亮的天空\",\n    \"author\": \"古尔瓦力・帕萨雷/娜德纳・古力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030261-83d050?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果能重来，我想做熊孩\",\n    \"author\": \"左手韩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030297-38302e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（果麦经典）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030258-b58d79?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有终点的列车\",\n    \"author\": \"劳拉・麦克维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030246-4da254?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"念楼学短\",\n    \"author\": \"锺叔河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总统先生\",\n    \"author\": \"米盖尔・安赫尔・阿斯图里亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030231-1af550?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玉米人\",\n    \"author\": \"米盖尔・安赫尔・阿斯图里亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030225-70b6ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危地马拉传说\",\n    \"author\": \"米盖尔・安赫尔・阿斯图里亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030228-0809f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的幽默家\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜空总有最大密度的蓝色\",\n    \"author\": \"最果夕日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030162-20452d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字十二讲\",\n    \"author\": \"万献初/刘会龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030201-30e984?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时震\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030117-9f931a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在新疆\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030111-69f33f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装共50册）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物归一\",\n    \"author\": \"君特・格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030096-2f337a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的村庄\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030066-8b5d8b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翁贝托·埃科作品系列套装（共6册）\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030105-3621bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古云霄\",\n    \"author\": \"陈之藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030048-2b15f8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一叶秋\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030045-dffd66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家书（果麦经典）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030027-90dc35?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国诗歌选集（珍藏版）（套装上下册）\",\n    \"author\": \"王佐良等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030003-5f317b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头是北京\",\n    \"author\": \"绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029982-4d17b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一朵桔梗花\",\n    \"author\": \"连城三纪彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029967-d5cad4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真汉\",\n    \"author\": \"伏尔泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029955-6e8063?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秀才的手表\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029946-9676a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨\",\n    \"author\": \"黄锦树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029928-6f83f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长崎\",\n    \"author\": \"埃里克・法伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029961-dd1cae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"示弱的勇气\",\n    \"author\": \"田口佳史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029919-38941e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣的事实\",\n    \"author\": \"亚当・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029871-ef5328?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对岸的她\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029859-6cc541?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凹凸相对论\",\n    \"author\": \"傅首尔/吴瑟斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029856-671c30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪闪发光的人生\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029838-3b3f7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万有引力之虹\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029823-fa6ccd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·时间胶囊\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029820-93da62?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·与书私奔\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·文艺青年\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029814-7a5327?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·旅馆\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029808-80bff1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·匿名作家\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029811-0cd352?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"童年（名著译林）\",\n    \"author\": \"马克西姆・高尔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029802-95cf59?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著译林）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（名著译林）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029796-8ad781?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（名著译林）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029787-13d237?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（名著译林）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向着光明\",\n    \"author\": \"太田治子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029775-bfc8a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家和出版人\",\n    \"author\": \"西格弗里德・温塞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029769-5eb081?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Saga of Gunnlaug Serpent-tongue\",\n    \"author\": \"Anon Anon\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029748-cd4b3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅古复仇记\",\n    \"author\": \"欧仁・勒儒瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029712-35b82d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样读经典\",\n    \"author\": \"王宁/彭林/孙钦善\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029706-559436?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咒语\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029688-251b45?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·写作课\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029592-8f188f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生海海\",\n    \"author\": \"麦家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029568-bb14ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃科谈文学\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029565-dea3c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正本清源说红楼\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029559-e08768?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脚步，是文化的刻度\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029556-27c945?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒旦探戈\",\n    \"author\": \"克拉斯诺霍尔卡伊・拉斯洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029538-ece48b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人岛生存十六人\",\n    \"author\": \"须川邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长长的回家路\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029496-883d15?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"足球往事\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029478-ccc720?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洋相\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029469-3e7113?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林自传（译文名著精选）\",\n    \"author\": \"本杰明・富兰克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029466-e938e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四个春天\",\n    \"author\": \"陆庆屹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029481-41006d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新刻绣像批评金瓶梅\",\n    \"author\": \"兰陵笑笑生\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑箱：日本之耻\",\n    \"author\": \"伊藤诗织\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029460-1e1c60?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞之井\",\n    \"author\": \"拉德克利夫・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029445-062f0e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的文艺复兴\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029421-adc6a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失乐园（全新林译本）\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029388-72e790?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（作家榜经典文库）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029385-ae493f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒先生\",\n    \"author\": \"亚伦・锡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029370-2862a0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深思与省悟\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方高速\",\n    \"author\": \"胡里奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029331-edca3c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日熄\",\n    \"author\": \"閻連科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029322-0f8d7b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚人船（典藏本）\",\n    \"author\": \"塞巴斯蒂安・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029340-24d8b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱德华·巴纳德的堕落：毛姆短篇小说全集1\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029307-46c4ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周国平尼采译著系列\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029268-e62a4a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情、疯狂和死亡的故事\",\n    \"author\": \"奥拉西奥・基罗加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029241-fe0943?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏洛克是我的名字\",\n    \"author\": \"霍华德・雅各布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029223-e61818?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何研究中国（增订本）\",\n    \"author\": \"曹锦清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029193-76f098?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱理群作品精编（共8册）\",\n    \"author\": \"钱理群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029190-be6f44?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（果麦经典）\",\n    \"author\": \"曹雪芹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（果麦经典）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（果麦经典）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029133-504b14?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（果麦经典）\",\n    \"author\": \"施耐庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纽约三部曲（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029091-7d5ea9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有神的所在 ：私房阅读《金瓶梅》\",\n    \"author\": \"侯文咏\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捎话\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029082-d44a5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗地母的礼物（下）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029073-348075?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群山回唱\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029064-c691c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（修订典藏本）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029007-403416?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普通读者\",\n    \"author\": \"西闪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窃天书\",\n    \"author\": \"逆水行舸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028977-26b93c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我知道你们又来这一套\",\n    \"author\": \"罗杰・伊伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028974-b269a9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与父辈\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028956-93737c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要快乐，不必正常\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美的真空\",\n    \"author\": \"斯坦尼斯拉夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028944-66d399?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六里庄遗事\",\n    \"author\": \"东东枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028917-a4cf2d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金性尧选唐宋诗新注\",\n    \"author\": \"金性尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028893-8fd3a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金圣叹批评本西厢记\",\n    \"author\": \"王实甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028926-90d03b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猴子·罗汉池\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028848-ed714f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高尔基自传三部曲（读客经典）\",\n    \"author\": \"玛克西姆・高尔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028830-4eb235?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028860-2bbd11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裂\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028737-811323?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疼\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028722-09f04e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮与六便士（读客经典）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028707-7117d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底两万里（读客经典）\",\n    \"author\": \"凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028590-8917cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随风飘舞的塑料布\",\n    \"author\": \"森绘都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028566-77b8a6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木星的卫星\",\n    \"author\": \"艾丽丝・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028542-203e6c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗地母的礼物（上）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028494-c2546a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻衣神探（套装4册）\",\n    \"author\": \"御风楼主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028446-56fb55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空响炮\",\n    \"author\": \"王占黑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028413-0d58b2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库蒙的食人兽\",\n    \"author\": \"吉姆・科比特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028389-9bc0c8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到灯塔去（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028380-bf539a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苦儿流浪记（果麦经典）\",\n    \"author\": \"埃克多・马洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028341-fbd188?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老虎的妻子\",\n    \"author\": \"蒂亚・奥布莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028332-33c1fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李劼人文学作品合集（套装九册）\",\n    \"author\": \"李劼人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028308-3a0522?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（权威全译典藏版）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028281-88645a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（经典译林）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（世界十大文学名著）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（作家榜经典文库）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028299-c59dc2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罐头厂街\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028224-9cdc07?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"濹东绮谭\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028218-eb6279?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"竞艳\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028212-1dd394?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱之花\",\n    \"author\": \"永井荷风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028209-66a767?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余生\",\n    \"author\": \"黎紫书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028194-692d38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无可无不可的王国\",\n    \"author\": \"汪若\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028152-bb43b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独及其所创造的（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028131-874bba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪医杜立德（果麦经典）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龟背上的世界\",\n    \"author\": \"约翰・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028080-60ab23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"见字如来\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028047-c7408c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜饼人\",\n    \"author\": \"詹姆斯・帕特里克・唐利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028035-cacb46?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊\",\n    \"author\": \"奥古斯托・蒙特罗索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028038-89760c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花园里的机器人\",\n    \"author\": \"黛博拉・因斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028026-01f454?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴山夜雨\",\n    \"author\": \"张恨水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028020-cdc0f8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大树\",\n    \"author\": \"贝尔纳・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027990-fdb107?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿努比斯之门\",\n    \"author\": \"提姆・鲍尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027972-26c9ea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉万象记\",\n    \"author\": \"毛晓雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都会中的孤岛\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027945-d6bfc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利维尔和我\",\n    \"author\": \"罗伯特・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027951-0e0d4c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"试论疲倦\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027906-d5f6a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世间的名字都是秘密\",\n    \"author\": \"苏缨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027894-123174?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去往第九王国\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027882-f1d960?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凄凉别墅\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027876-9c32a7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春时樱，秋时叶\",\n    \"author\": \"德富芦花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027903-12eb42?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被遗忘的花园\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027867-edef3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保龄球的意识流\",\n    \"author\": \"陆源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027822-5f8f1a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（作家榜经典文库）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027870-72fe86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔斯骑鹅历险记（作家榜经典文库）\",\n    \"author\": \"塞尔玛・拉格洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威精选集（套装共4册）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027795-430894?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴特文选（全6册）\",\n    \"author\": \"罗兰・巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找邓巴\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027765-9137a9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的小梨窝\",\n    \"author\": \"唧唧的猫\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿为西南风\",\n    \"author\": \"闻人可轻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027759-a931a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠游小说林\",\n    \"author\": \"安贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027741-c5060a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个市民的自白\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027729-f9c575?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"殷红的花朵\",\n    \"author\": \"约翰・高尔斯华绥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027726-5b41c4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个女人\",\n    \"author\": \"艾斯特哈兹・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027705-4c0ba5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的遭遇\",\n    \"author\": \"肖洛霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027708-872d37?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸存者回忆录\",\n    \"author\": \"多丽丝・莱辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027693-2cafef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荨麻开花\",\n    \"author\": \"哈瑞・马丁松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027696-7f9578?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜的草\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027684-2969f4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"365夜故事：春夏秋冬（套装共4册）\",\n    \"author\": \"叶圣陶/赵冰波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027690-6c12c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老残游记（作家榜经典文库）\",\n    \"author\": \"刘鹗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027681-26f941?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水滴的音乐\",\n    \"author\": \"阿尔多斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027666-cf6538?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿山墙的安妮（作家榜经典文库）\",\n    \"author\": \"露西・莫德・蒙格玛丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骆驼祥子（作家榜经典文库）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027672-0c6153?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菩萨蛮\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向日葵\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛇为什么会飞\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神女峰\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死屋手记（企鹅经典）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喂喂下北泽\",\n    \"author\": \"吉本芭娜娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027651-fd0eab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十三年梦\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027630-221dda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使，望故乡\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027621-312a39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处还乡（套装共2册）\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027618-b08e33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书籍的世界\",\n    \"author\": \"赫尔曼黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027612-b2d143?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喜剧作家\",\n    \"author\": \"止庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027600-a9ddae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包法利夫人\",\n    \"author\": \"居斯达夫・福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027603-cfcf3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（读客经典）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读17：人的困境\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027582-858cfb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读18：都市一无所有\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027570-69e4e0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读19：到未来去\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027576-7935d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒谬的墙\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛非虚构写作课：怎样讲好一个故事\",\n    \"author\": \"马克・克雷默/温迪・考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027537-a21903?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静静的顿河（名著名译丛书）\",\n    \"author\": \"米・肖洛霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027588-0583b9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027531-e0ac8e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密西西比\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027534-c6bd4e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是一百只眼睛的水面\",\n    \"author\": \"加布列拉・米斯特拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027525-6abbc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027516-22199b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖梦\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027507-c137e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人的食指\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027498-8a4dd7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米赫尔\",\n    \"author\": \"弗雷德里克・米斯特拉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027495-1c4f2a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平家物语\",\n    \"author\": \"郑清茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027519-13da66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林家铺子\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027486-d72605?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妻妾成群\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的帝王生涯\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红粉\",\n    \"author\": \"苏童\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（果麦经典）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027510-2f2be5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迸涌的流泉\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027471-98fa46?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（读客经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（作家榜经典文库）\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027480-eb7b21?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伤心咖啡馆之歌（作家榜经典文库）\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027462-3af9cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（作家榜经典文库）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027459-37a5f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春天与阿修罗\",\n    \"author\": \"宫泽贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027450-e73925?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痴儿西木传\",\n    \"author\": \"格里美尔斯豪森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痴人之爱\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027447-870701?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草叶集\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027444-42197e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搏击俱乐部\",\n    \"author\": \"恰克・帕拉尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027441-67fe4b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月的星期天\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027435-819263?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反叛者\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027423-a2e18f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地铁姑娘扎姬\",\n    \"author\": \"雷蒙・格诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027417-3b5646?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书\",\n    \"author\": \"鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027414-2e39b2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斗牛士之名\",\n    \"author\": \"路易斯・塞普尔维达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027405-82e241?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国轶闻\",\n    \"author\": \"费尔南多・德尔帕索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027411-d99e3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多情客游记\",\n    \"author\": \"劳伦斯・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027396-557075?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三言二拍典藏版套装（作家榜经典文库）\",\n    \"author\": \"冯梦龙/凌濛初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027468-fe4fe6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯（读客经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027420-0f8297?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赴宴之前\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027378-2b2b27?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨之夜（译文经典）\",\n    \"author\": \"海因里希・海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027390-c641ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰饶与贫瘠\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027381-2af7f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分手在布达\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027363-6c9da6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不乖的哲学家\",\n    \"author\": \"罗朗・古内尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027357-6fca3e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独家记忆\",\n    \"author\": \"木浮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027354-a1ded4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青鸟故事集\",\n    \"author\": \"李敬泽\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地铁上读书的女孩\",\n    \"author\": \"克里斯蒂娜・费雷-弗勒里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027249-327cf8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交际花盛衰记（企鹅经典）\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027228-7f0546?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅青少年文学经典系列（套装共10册）\",\n    \"author\": \"刘易斯・卡罗尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027315-5cf5f6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁花\",\n    \"author\": \"金宇澄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027180-6130db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城南旧事\",\n    \"author\": \"林海音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027150-9fa4ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋（果麦经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027141-8e7a86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食人魔花园\",\n    \"author\": \"蕾拉・斯利玛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027132-121fe8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽丝漫游奇境（作家榜经典文库）\",\n    \"author\": \"刘易斯・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027171-b9c3bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的小孩\",\n    \"author\": \"露西・狄伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027099-2e54b5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词三百首（作家榜经典文库）\",\n    \"author\": \"上彊村民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027120-8ec566?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻中的陌生人\",\n    \"author\": \"埃米尔・库斯图里卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027054-9b8a7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落论\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027048-a40738?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白天的房子，夜晚的房子\",\n    \"author\": \"奥尔加・托卡尔丘克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027042-2e68ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流动的盛宴（果麦经典）\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027051-6a3fc0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太古和其他的时间\",\n    \"author\": \"奥尔加・托卡尔丘克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027003-d5d748?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世说新语译注\",\n    \"author\": \"刘义庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026997-7dd4f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男女有别\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026973-55e3ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶之路\",\n    \"author\": \"格拉齐娅・黛莱达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026976-20eadc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老中医\",\n    \"author\": \"高满堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026979-4cd157?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘埃之书\",\n    \"author\": \"布劳姆・普里瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026961-941833?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻影书（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026946-7a477b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的丫头\",\n    \"author\": \"柯继铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026934-41b6dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巧克力时代（全3册）\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026931-f13515?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失物之书\",\n    \"author\": \"约翰・康诺利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026871-7e2ade?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲍勃·迪伦：诗人之歌\",\n    \"author\": \"让-多米尼克·布里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我弥留之际\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026847-d105d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的妹妹\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026841-1d5453?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包法利夫人\",\n    \"author\": \"福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026808-2efd7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上几个人渣\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死于威尼斯（译文经典）\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026790-ec3dad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（李卓吾批评本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026781-f18846?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（译文名著典藏）\",\n    \"author\": \"但丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026799-5090ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十日谈（译文名著典藏）\",\n    \"author\": \"卜伽丘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026835-513c66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（译文名著典藏）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026787-5f99fe?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叶甫盖尼·奥涅金（译文名著典藏）\",\n    \"author\": \"普希金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026778-6025bd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（译文名著典藏）\",\n    \"author\": \"雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026766-fe791a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事（译文名著典藏）\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026763-3a2c91?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮士德（译文名著典藏）\",\n    \"author\": \"约翰・沃尔夫冈・歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026772-9e30ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（译文名著典藏）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026754-a8199f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（译文名著典藏）\",\n    \"author\": \"艾米莉・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026745-cb9946?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（译文名著典藏）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026733-0e7678?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（译文名著典藏）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026730-bb23d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安娜·卡列尼娜（译文名著典藏）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026712-2d67fc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眼之壁\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026703-ce4abd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找死亡的男人\",\n    \"author\": \"马丁・瓦尔泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026691-082508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我发现了（完全修订版）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026475-c6b3d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邦查女孩\",\n    \"author\": \"甘耀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026436-0c6072?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"官场现形记\",\n    \"author\": \"李宝嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026424-31227d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情迷佛罗伦萨\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026394-fb0c3f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的枷锁\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026397-998dcb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙主题变奏\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026391-dafb28?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随性而至\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026382-2185ca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国特工\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026379-aeed5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木麻黄树\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026430-c550f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在中国屏风上\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026370-6f3490?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家笔记\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026373-6fd2ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰贝斯的丽莎\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026367-8e7126?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过去和现在\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026361-f7520e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨匠与杰作\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026352-cee4c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观点\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026349-f8a587?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧院风情\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026340-c12b43?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笔花钗影录\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026343-6052b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚四大悲剧（译文名著典藏）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026406-61388c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨牧诗选（1956-2013）\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026265-7f9451?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航船\",\n    \"author\": \"张岱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐人小说\",\n    \"author\": \"汪辟疆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026247-8f16c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘埃落定（十五周年纪念版）\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026241-e45527?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂与远雷\",\n    \"author\": \"恩田陆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026211-53c0b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可爱的骨头\",\n    \"author\": \"艾丽斯・西伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026208-fdf6e1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海胆\",\n    \"author\": \"雷晓宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇手记（珍藏版）\",\n    \"author\": \"达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚土\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025698-a4bd7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（绘图珍藏本）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐队女孩\",\n    \"author\": \"金・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻圣光的人\",\n    \"author\": \"玛蒂娜・莱维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025641-a9e803?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苔丝（译文名著典藏）\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025656-f77567?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫术师\",\n    \"author\": \"约翰・福尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025632-4de61f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一遍老爷\",\n    \"author\": \"朱川凑人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025620-d6e0fa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传声筒\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025599-9a708c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪音\",\n    \"author\": \"梁文道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025527-55faa6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵心小史\",\n    \"author\": \"小德兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025500-9364d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒火焰（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025335-aad644?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京女子会\",\n    \"author\": \"柚木麻子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025272-9473aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Book of Ebenezer Le Page\",\n    \"author\": \"Edwards\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025245-f5258d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马神话\",\n    \"author\": \"菲利普・马蒂塞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025155-94a814?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧神话\",\n    \"author\": \"卡罗琳・拉灵顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红与黑（果麦经典）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"种玫瑰的男人\",\n    \"author\": \"奥杜・阿娃・奥拉夫斯多蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025083-feb78a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025074-44fa95?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张居正：全4册\",\n    \"author\": \"熊召政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025059-cac065?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷山\",\n    \"author\": \"查尔斯・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025053-beeeae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必须牺牲卡米尔\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025026-1615ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城堡\",\n    \"author\": \"卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025014-46844e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书（读客经典）\",\n    \"author\": \"约瑟夫・鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024987-cfbbc7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全6册）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025002-6ad075?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个青年艺术家的画像（读客经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024966-4ddb18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵军\",\n    \"author\": \"伊萨克・巴别尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024948-2a7089?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耕种 食物 爱情\",\n    \"author\": \"克里斯汀・金博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不执着，叫看破 不完美，是生活\",\n    \"author\": \"莫妮卡・拉米雷斯・巴斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴\",\n    \"author\": \"塞尔希奥・拉米雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024861-a5cc92?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小偷家族\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024855-a4d8aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·潘\",\n    \"author\": \"詹姆斯・马修・巴利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024849-4284ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最危险的书\",\n    \"author\": \"凯文・伯明翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024819-d1aa94?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词史\",\n    \"author\": \"刘毓盘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024807-5e3b7f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩画集（译文经典）\",\n    \"author\": \"兰波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024798-46febb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沧浪诗话\",\n    \"author\": \"严羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿堂风\",\n    \"author\": \"曹文轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024801-ced57d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"往事与随想（共3册）\",\n    \"author\": \"赫尔岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翅鬼\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024771-35d4c6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女勇士\",\n    \"author\": \"汤亭亭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024768-569cc0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血色子午线\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024720-04f5eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列那狐的故事（读客经典）\",\n    \"author\": \"玛特・艾・季罗夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024705-152cdc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬妮·希尔\",\n    \"author\": \"约翰・克利兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024696-f27937?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爷爷一定要离婚\",\n    \"author\": \"帕斯卡・鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024636-095fcc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞芳心小姐\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024618-6365f1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大鳄三部曲\",\n    \"author\": \"仇晓慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024561-f0ec75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯纳黛特，你要去哪\",\n    \"author\": \"玛利亚・森普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024531-bf243b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日终曲\",\n    \"author\": \"安德烈・艾西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024519-7dbbd6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在另一个宇宙的1003天\",\n    \"author\": \"张春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国十大禁毁小说文库\",\n    \"author\": \"雪樵主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024510-63968c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（果麦经典）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024498-232c2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乞力马扎罗的雪（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024483-1cc6ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光边缘的男人\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024444-7f3cf5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美，看不见的竞争力\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024381-dc676d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼叫助产士\",\n    \"author\": \"珍妮弗・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024336-bc2744?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断代\",\n    \"author\": \"郭强生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024321-3e4d24?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬泳\",\n    \"author\": \"班宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024318-af87d7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代文学大师林语堂逝世40周年纪念典藏版（全18册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024327-391a41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文全传\",\n    \"author\": \"张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024288-a2737b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿毛水怪\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024270-c14537?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天边一星子\",\n    \"author\": \"邓安庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024252-c13ed1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞女孩\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二个圣诞故事\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024231-15cc1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（插图珍藏版）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024228-8bc84a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身失忆人\",\n    \"author\": \"卢克・迪特里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024192-0076c9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊镇\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024174-567c22?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄代表作\",\n    \"author\": \"河合隼雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间回旋\",\n    \"author\": \"罗伯特・威尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024120-f2c94d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（读客经典）\",\n    \"author\": \"艾米莉・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024126-44fd04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窄门（果麦经典）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024099-8f56cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故园风雨后\",\n    \"author\": \"伊夫林・沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024093-fba3b7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲（果麦经典）\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024081-b60289?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（作家榜经典文库）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024075-de0a5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追忆似水年华（徐和瑾译本全4卷）\",\n    \"author\": \"马塞尔・普鲁斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024090-3f610e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"依赖共生\",\n    \"author\": \"巴里・温霍尔德/贾内・温霍尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024069-b92767?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我忏悔\",\n    \"author\": \"乔莫・卡夫雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024045-21af78?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野性的呼唤（读客经典）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024048-f76d1c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛夏方程式\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024042-17c929?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木匠手记\",\n    \"author\": \"尼娜・麦克劳林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞的游戏\",\n    \"author\": \"袁哲生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023985-064394?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追忆似水年华（套装全7册）\",\n    \"author\": \"马塞尔・普鲁斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023958-e0af26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北回归线\",\n    \"author\": \"亨利・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023901-5575f9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南回归线\",\n    \"author\": \"亨利・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023904-244b91?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂收音机\",\n    \"author\": \"伊藤正幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023868-5e0097?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我只知道人是什么\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（读客经典）\",\n    \"author\": \"弗・司各特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023826-c18ccc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语民族史（套装共4本）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023793-341588?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼兰河传（完整版插图本）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023718-574708?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文学常识\",\n    \"author\": \"郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启人：终结篇\",\n    \"author\": \"艾米・亭特拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023604-fdee86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无理时代\",\n    \"author\": \"奥田英朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023589-934cb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Association of Small Bombs\",\n    \"author\": \"Mahajan Karan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023568-86906f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后假期\",\n    \"author\": \"保丽娜・弗洛雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023508-b0db4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经楚辞鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023427-f856e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春琴抄（果麦经典）\",\n    \"author\": \"谷崎润一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023364-b46653?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远不要找别人要安全感2\",\n    \"author\": \"韩梅梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023358-da9edb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为生命而阅读\",\n    \"author\": \"威尔・施瓦尔贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023328-a9e738?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使节\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023319-c926c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才的编辑\",\n    \"author\": \"司各特・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023316-2d09bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大纲\",\n    \"author\": \"汪震/王正己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023292-710c34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独抒己见\",\n    \"author\": \"弗拉基米尔・纳博科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023283-fe22ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（完整版）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别（果麦经典）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023229-b94dc3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与黑暗的故事\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023226-44689c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱变\",\n    \"author\": \"芥川龙之介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023220-c8b441?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不过，一场生活\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作这门手艺\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023196-9d8958?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡村生活图景\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023187-1ce16f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的米海尔\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023184-f8dc9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费玛\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023181-dd9e49?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事开始了\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023169-13fbb8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙海无澜\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023166-3f7b75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯丁全集（英文版）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023130-faa3ba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九个人\",\n    \"author\": \"张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023121-e03fbf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑林广记\",\n    \"author\": \"游戏主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023100-3e0c16?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们一无所有\",\n    \"author\": \"安东尼・马拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023091-47cf9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的早年岁月\",\n    \"author\": \"苏尔坦・本・穆罕默德・卡西米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只过必要生活\",\n    \"author\": \"匠久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023070-774ca6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间喜剧（读客经典）\",\n    \"author\": \"奥诺雷・德・巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023082-d9ba2c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命冒险\",\n    \"author\": \"闪米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023085-ade96e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"箱男\",\n    \"author\": \"安部公房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023010-1946e0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿野仙踪\",\n    \"author\": \"莱曼・弗兰克・鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023013-03a6a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事：材质、结构、风格和银幕剧作的原理\",\n    \"author\": \"罗伯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022953-524f05?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天长地久：给美君的信\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不知道该说什么，关于死亡还是爱情\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022905-60dc96?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的浏阳兄弟\",\n    \"author\": \"索文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为你洒下月光\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022869-d5741b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第二集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个海难幸存者的故事\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022824-01cd68?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白轮船\",\n    \"author\": \"钦吉斯・·艾特玛托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022752-04c29a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一瞬一生\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022680-a83bd2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的名字叫红（新版）\",\n    \"author\": \"奥尔罕・帕慕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022632-2bebcc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿山墙的安妮（全译本）\",\n    \"author\": \"露西・莫德・蒙格玛利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022590-0d58d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野性的呼唤\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022581-919f29?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到灯塔去\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022578-1cdcd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙之书\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022560-fb10c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一念桃花源\",\n    \"author\": \"比尔・波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022563-9a7313?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云边有个小卖部\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022539-f60fa4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是孤独的行路人\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022542-cf4133?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类灭绝\",\n    \"author\": \"高野和明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022524-d31fba?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜长梦多\",\n    \"author\": \"赵兰振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022518-85acd6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破狱\",\n    \"author\": \"李重民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022503-eaf459?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无尽世界（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022506-8a2088?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡门（读客经典）\",\n    \"author\": \"普罗斯佩・梅里美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022485-c0ed82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与你（果麦经典）\",\n    \"author\": \"马丁・布伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022446-f472b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜阳（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间失格（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022434-822828?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潘多拉之匣（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022431-d56ce6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的妻子\",\n    \"author\": \"卡洛琳・艾瑞克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022428-864380?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同情者\",\n    \"author\": \"阮清越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022422-07238e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无边的土地\",\n    \"author\": \"若热・亚马多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022407-bb2b7c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世上最美的溺水者\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022392-ea1ebf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五朝宰相\",\n    \"author\": \"姜狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022383-05455f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世事如刀，我来领教\",\n    \"author\": \"房昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022374-2e403d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遮蔽的天空\",\n    \"author\": \"保罗・鲍尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022362-ff57cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"族长的秋天\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022356-073aeb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品读中国（套装共6册）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到孤独尽头\",\n    \"author\": \"贝内迪克特・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022347-89429b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林达作品集（套装共10册）\",\n    \"author\": \"林达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背影\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我牙齿的故事\",\n    \"author\": \"瓦莱里娅・路易塞利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022296-a08525?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处停歇\",\n    \"author\": \"杰米・阿滕贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022275-8a9145?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛系：如何成为一个快乐的人\",\n    \"author\": \"草薙龙瞬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022269-176d06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大雪将至\",\n    \"author\": \"罗伯特・泽塔勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022254-844fb9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物既伟大又渺小\",\n    \"author\": \"吉米・哈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022239-aef96c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔集（全六册）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司汤达集（全四册）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫集（套装共2册）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022194-6adc55?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左拉集（全四册）\",\n    \"author\": \"左拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍夫曼集（套装共2册）\",\n    \"author\": \"霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022191-d724ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜集（套装共3册）\",\n    \"author\": \"福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022185-594952?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的教育\",\n    \"author\": \"艾德蒙多・德・亚米契斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忆往谈旧录\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长翅膀的女孩\",\n    \"author\": \"苏・蒙克・基德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022125-11fbcf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间便利店\",\n    \"author\": \"村田沙耶香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022116-1d4596?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹唱片行\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022113-7cd057?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯特的选择\",\n    \"author\": \"安・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022047-60243c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯集（套装共10册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈察洛夫集（全四册）\",\n    \"author\": \"冈察洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代集（共五册）\",\n    \"author\": \"哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德集（全五册）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪德集（全五册）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德莱塞集（全四册）\",\n    \"author\": \"德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫集（全二册）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托尔斯泰集（共6册）\",\n    \"author\": \"托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格集（全2册）\",\n    \"author\": \"茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马集（共八册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯集（共5册）\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科绅士\",\n    \"author\": \"埃默・托尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021897-2b0983?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山茶文具店\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021900-38dea3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潦草\",\n    \"author\": \"贾行家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021888-5f25ff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝那些事儿（套装共7册）\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鸟之歌\",\n    \"author\": \"巴勃罗・卡萨尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021879-f9153e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许子东现代文学课\",\n    \"author\": \"许子东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021855-47d98d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命清单\",\n    \"author\": \"洛里・斯皮尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021849-9bd33d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份\",\n    \"author\": \"米兰・昆德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021843-019c3a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣橱里的女孩\",\n    \"author\": \"弗朗丝・盖兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021819-929df9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021816-c6992a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的天使\",\n    \"author\": \"瓦・勃留索夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021813-6662d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔谢尼耶夫的一生\",\n    \"author\": \"伊万・布宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021804-a41a4f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊神话故事集\",\n    \"author\": \"纳撒尼尔・霍桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021801-b47cf4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有如候鸟\",\n    \"author\": \"周晓枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列奥纳多·达·芬奇传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫武士首部曲（套装共6册）\",\n    \"author\": \"艾琳・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021747-2318d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生梦\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021705-6e4f6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸男孩\",\n    \"author\": \"米拉・巴尔托克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021681-5ea59b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青苔不会消失\",\n    \"author\": \"袁凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的生活\",\n    \"author\": \"艾丽丝・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021654-2b4ee2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再会，契普斯先生\",\n    \"author\": \"詹姆斯・希尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021627-c108f7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禹域鸿爪\",\n    \"author\": \"内藤湖南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021618-f78c8b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船山遗书\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如父如子\",\n    \"author\": \"是枝裕和/佐野晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021579-c017d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国梦\",\n    \"author\": \"斯塔兹・特克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃离\",\n    \"author\": \"艾丽丝・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021558-5fd9e2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基度山伯爵（全2册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021567-8fdb13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦卡勒斯作品系列（套装共6册）\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021537-c2fc56?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神枪手迪克\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021288-92f5e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜光的阶梯\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021294-fc9a03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣殿春秋（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021252-8a62ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间食粮\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021168-e7d281?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人之妻\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我和厄尔以及将死的女孩\",\n    \"author\": \"杰西・安德鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021093-451af6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（风雅颂三卷）\",\n    \"author\": \"骆玉明/细井徇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021144-d46886?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的自然史\",\n    \"author\": \"戴安娜・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021021-362752?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说唐诗\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021003-a4fa60?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥吉和我\",\n    \"author\": \"帕拉西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020976-b53ede?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（完整版插图本）\",\n    \"author\": \"菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020946-7648ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼辞典\",\n    \"author\": \"安布罗斯・比尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020925-e0b984?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶之花\",\n    \"author\": \"夏尔・波德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020898-48caea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北野武的小酒馆\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020850-7ed159?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那个不为人知的故事\",\n    \"author\": \"Twentine\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020829-f14985?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的告白\",\n    \"author\": \"莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020826-fb6b6b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗网\",\n    \"author\": \"杰米・巴特利特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020808-518d1f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文章皆岁月\",\n    \"author\": \"萧乾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020781-294c5e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喧哗与骚动\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020775-4c22b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高山上的小邮局\",\n    \"author\": \"安赫莱斯・多尼亚特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020757-97f09e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三毛作品精选（共6册）\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020745-33663b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果酒屋的规则\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020694-be7e51?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜神科尔内尔\",\n    \"author\": \"汪玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020679-f90668?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光下的旅人\",\n    \"author\": \"瑟尔伯・昂托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020676-aff023?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与罗摩相会\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020670-98bbf9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也有过小时候\",\n    \"author\": \"任溶溶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020673-497c78?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰激凌家族\",\n    \"author\": \"恩斯特・凡德奎斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020658-1a3b66?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大裂\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020646-4d4fca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密金鱼\",\n    \"author\": \"大卫・米恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020652-6cea44?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"V.S.奈保尔作品精选（共8册）\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020655-78a379?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉马戈：复明症漫记\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020637-70e547?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉马戈：失明症漫记\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020634-20292b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜的鹦鹉\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020619-8713f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别对我温柔\",\n    \"author\": \"玛丽・库比卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020508-bbe9ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以读攻读\",\n    \"author\": \"但汉松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020502-f49829?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机村史诗（六部曲）\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020427-e079e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯坦德1936\",\n    \"author\": \"福尔克尔・魏德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020391-a49d11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把你交给时间\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020520-c95774?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"换心\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020223-e95fa1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇风岁月\",\n    \"author\": \"罗伯特・麦卡蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020187-d7c04c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星星上的人\",\n    \"author\": \"卡罗琳・帕克丝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020163-0016df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫子旁\",\n    \"author\": \"朱赢椿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020127-6ae8cd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影绘\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020091-2dc43f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风格感觉：21世纪写作指南\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020082-efde84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小书馆系列第一辑（共8册）\",\n    \"author\": \"冯友兰/瞿蜕园/俞剑华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020055-b5b7a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟雾弥漫你的眼\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020016-418bb3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十一月的此刻\",\n    \"author\": \"约瑟芬・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019962-e22cb4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海的那一边\",\n    \"author\": \"梅丽莎・弗莱明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019899-e0deb6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水云（果麦经典）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"源泉\",\n    \"author\": \"安・兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019848-36d967?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹\",\n    \"author\": \"是枝裕和/中村航\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019839-d71f93?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾约堡秘史\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019698-04d6ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得堡\",\n    \"author\": \"安德列・别雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019671-73434e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫士唐望的教诲\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019626-626739?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解离的真实\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019611-2b333c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前往伊斯特兰的旅程\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019608-b17024?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡短篇小说集\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019605-f1d5f0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小小小小的火\",\n    \"author\": \"伍绮诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019566-1aaf84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚来寂静\",\n    \"author\": \"李海鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019530-323af2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛丽·安妮\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东瀛文人·印象中国（套装共5册）\",\n    \"author\": \"芥川龙之介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019443-64d478?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅经典全集全四册\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019455-217bae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盖普眼中的世界\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清单人生\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019404-6cba1f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"染匠之手\",\n    \"author\": \"奥登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019410-f0261a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（果麦经典）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019365-ccc402?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风沙星辰\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019329-972eda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的习俗\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019323-98e502?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子三部曲\",\n    \"author\": \"埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019302-5cad9b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"比海更深\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019257-c13005?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白噪音\",\n    \"author\": \"唐・德里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019245-efeee7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩4：末日风暴\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019206-354ef9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛开的樱花林下\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019194-9c60da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商市街（果麦经典）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019179-fa4281?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如丧\",\n    \"author\": \"高晓松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长乐路\",\n    \"author\": \"史明智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在未来等你\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019131-e9de0c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多湾\",\n    \"author\": \"周瑄璞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019128-e0d1aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不要你死于一事无成\",\n    \"author\": \"法齐娅・库菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与绝迹之鸟的短暂邂逅\",\n    \"author\": \"本・方登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018930-3b2cac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌克兰拖拉机简史\",\n    \"author\": \"玛琳娜・柳薇卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018897-8c9b10?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢愉\",\n    \"author\": \"莉莉・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018687-bbe3c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜巡\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018639-a3c4cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一度青春\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018636-633616?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高兴死了！！！\",\n    \"author\": \"珍妮・罗森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018624-333039?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝鸟\",\n    \"author\": \"詹姆斯・麦克布莱德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018618-407d9e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼河岸小店\",\n    \"author\": \"西加奈子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018603-716606?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅全集（全20册）\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018621-414c16?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色皮革手册\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018501-e054d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方有乔木（纪念版）\",\n    \"author\": \"小狐濡尾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018402-84c931?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万火归一\",\n    \"author\": \"胡利奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018396-97fb5c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李敖混世宝典三部曲\",\n    \"author\": \"李敖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018234-614afb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嬉笑怒骂李敖大全集（套装10本）\",\n    \"author\": \"李敖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018222-00f809?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔之歌\",\n    \"author\": \"蕾拉・斯利玛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017928-dad628?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗店街\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017823-461c0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赫拉巴尔之书\",\n    \"author\": \"艾斯特哈兹・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017838-f75e41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"环城大道\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017817-222f39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星形广场\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017814-a3504b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克罗诺皮奥与法玛的故事\",\n    \"author\": \"胡利奥・科塔萨尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017775-747156?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥杜邦的祈祷\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017745-73b9e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传家之物：艾丽丝·门罗自选集\",\n    \"author\": \"艾丽丝・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017661-ec171d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意写作书系·走进大师（套装18册全）\",\n    \"author\": \"杰里・克利弗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017733-0f8010?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（译文名著精选）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017592-9191d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寓言\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017493-1b3020?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眠\",\n    \"author\": \"村上春树\",\n    \"link\": \"链接未找到\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是人间四月天\",\n    \"author\": \"林徽因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017307-901fb8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呐喊彷徨故事新编\",\n    \"author\": \"鲁迅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017259-271898?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼克·亚当斯故事集\",\n    \"author\": \"海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017073-0fe1ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七十二堂写作课\",\n    \"author\": \"夏丏尊/叶圣陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017064-cd4bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子们的诗\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017097-fec3aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫Ⅲ：何谓永恒\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017004-62308e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔种\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016932-d3cb9a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯乐\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016926-0073c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人之彼岸\",\n    \"author\": \"郝景芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016878-0a3553?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗澡\",\n    \"author\": \"杨绛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016821-12754d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯子记\",\n    \"author\": \"苏童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016812-99d2d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪安娜穿过漫漫长夜\",\n    \"author\": \"加瑞尔・萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界迷宫I：虔诚的回忆\",\n    \"author\": \"玛格丽特・尤瑟纳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016569-c1efc9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被仰望与被遗忘的\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016455-8ba51c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的职业是小说家\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016446-df464d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追风筝的人\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016443-983457?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅定荒野\",\n    \"author\": \"加里・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春灯公子\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016404-86542e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯吉斯野外生存系列（套装四册）\",\n    \"author\": \"桑顿・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫中的将军\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016203-716374?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情人\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016200-5669ab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波吉亚家族\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016059-1a1324?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地裂三百年（下）\",\n    \"author\": \"覃仕勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016044-4b2a48?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜漫漫路迢迢\",\n    \"author\": \"尤金・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016038-fb4be7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠疫（果麦经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016017-b4cf30?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李太白全集\",\n    \"author\": \"李白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王蒙作品精选集（套装16本）\",\n    \"author\": \"王蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015960-48f0af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群鸟飞舞的世界末日\",\n    \"author\": \"查莉・简・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015921-312cfa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苦妓回忆录\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015906-0e3416?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国中尉的女人\",\n    \"author\": \"约翰・福尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015723-9b3d26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芳华\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015696-61e77a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有条喷火龙（第一辑）\",\n    \"author\": \"凯特・麦克马伦/比尔・巴索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒悬的地平线\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015582-34e2c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记（全本全译全注插图珍藏版）\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015576-cbd161?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲的失乐园\",\n    \"author\": \"阿里埃勒・萨巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柒\",\n    \"author\": \"文珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015498-d668fd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶童安伦\",\n    \"author\": \"吉姆・谢泼德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015462-c0e6e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去，并且要记住\",\n    \"author\": \"拉斯普京\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015465-8edfc5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被伤害与侮辱的人们（译文名著精选）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015438-1fdc43?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达洛卫夫人（译文名著精选）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015435-2a37de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头的图书馆\",\n    \"author\": \"费莉希蒂・海斯-麦科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015411-92cba0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解说疾病的人\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015408-005737?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的枷锁\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015369-cdc221?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遥远的星辰\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015288-0eebf3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不成问题的问题\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015252-eb9267?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人2：重返荒原\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015192-9058db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的中场休息\",\n    \"author\": \"本・方登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015132-9c1e9a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不畅销小说写作指南\",\n    \"author\": \"大头马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015129-764c03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说文学之美（全5册修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015126-9255a6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天过得怎么样\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015108-00eb73?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠，从牛A到牛C\",\n    \"author\": \"大脸撑在小胸上\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015081-08667c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到大地尽头\",\n    \"author\": \"大卫・格罗斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015066-bcbe3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通灵的按摩师\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015030-38e4bf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不适之地\",\n    \"author\": \"裘帕・拉希利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014985-9e6283?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜之子\",\n    \"author\": \"萨曼・鲁西迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014967-759eef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林孤谍\",\n    \"author\": \"约瑟夫・卡农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复明症漫记\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014748-8511f3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间停止的那一天\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014655-debad3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字看我一生\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查拉图斯特拉如是说\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014622-0410f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上流法则\",\n    \"author\": \"埃默・托尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014616-694625?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悉达多（果麦经典）\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014601-c70ef2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读是一座随身携带的避难所\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014526-6e422e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（译文经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014481-bc2114?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物凶猛\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014457-a7030d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼兰河传（1940年初刊还原版）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014454-6db54f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王小波作品大全集（15册）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014463-323335?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲刺客\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014304-350e20?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萝卜和难挑的鳄梨\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014292-185e18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁小历史系列（全三册）\",\n    \"author\": \"詹姆斯・韦斯特・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014289-4430ac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不允许自己难过太久\",\n    \"author\": \"凯茜・苏丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014112-37b6b5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫里哀先生传\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013956-e85b77?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃亡\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013950-1259d9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南十字星共和国\",\n    \"author\": \"费・索洛古勃/瓦・勃留索夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013944-a6bd04?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013971-811c23?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见野兔的那一年\",\n    \"author\": \"阿托・帕西林纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013932-463f69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲情偶寄（果麦经典）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013896-9da2db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新选组血风录\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013905-3e7df8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文稿拾零\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013854-de3eab?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君士坦丁堡最后之恋\",\n    \"author\": \"米洛拉德・帕维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013839-6df24f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（译文名著典藏）\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013803-9f3bf0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长日留痕\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013677-6e7b44?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平民之宴\",\n    \"author\": \"林真理子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013668-46916b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别名格蕾丝\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013734-95fbc6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深入北方的小路\",\n    \"author\": \"理查德・弗兰纳根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013632-920634?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯万的一次爱情\",\n    \"author\": \"马塞尔・普鲁斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013623-896944?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被掩埋的巨人\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013614-0c53d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世画家\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013608-834a7f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无可慰藉\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013617-d81e38?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远山淡影\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013599-85090f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小夜曲\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013602-a6afe2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今昔物语（浮世绘插图珍藏版）\",\n    \"author\": \"不详\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013569-1d2e80?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六神磊磊读唐诗\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013521-bdd110?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"居山而行\",\n    \"author\": \"雲姑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013512-eda5a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗读者Ⅰ（全3册）\",\n    \"author\": \"董卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013494-19c678?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十七度二（译文经典）\",\n    \"author\": \"菲利普・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013452-6e212b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形同陌路的时刻\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013440-fec756?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛百年经典（01-38卷）\",\n    \"author\": \"伊索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013542-8c1815?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我谈跑步时，我谈些什么\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013386-6178c4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不属于我们的世纪\",\n    \"author\": \"马修・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013275-4a608c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅课\",\n    \"author\": \"汤姆・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让时间停止的女孩\",\n    \"author\": \"罗伯特・富兰克林・杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013245-4e6466?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞行家\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013146-61b96e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1984\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013032-d786be?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马爱经（企鹅经典）\",\n    \"author\": \"奥维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布登勃洛克一家\",\n    \"author\": \"托马斯・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013014-8c13d3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无欲的悲歌\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013011-411202?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原上的摩西\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013002-6e48be?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同栖生活\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012996-143f82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛苦的中国人\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012993-90c384?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝇王（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012984-413b5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原\",\n    \"author\": \"毕飞宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012975-9d2262?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"葛亮小说集（共四册）\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012978-46d74d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爸爸（短经典）\",\n    \"author\": \"瓦西利斯・亚历克萨基斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012786-703c7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发条橙\",\n    \"author\": \"安东尼・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012759-69a04a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本小说\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012762-cfdccc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本文学书\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012756-430541?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨周翰作品集（全6卷）\",\n    \"author\": \"杨周翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012693-67e2e6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家谱\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012681-1ffe87?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平家物语（译文名著精选）\",\n    \"author\": \"佚名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012687-34135a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的悲鸣\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给青年诗人的信\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012636-064601?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳄鱼街\",\n    \"author\": \"林蔚昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012648-211e67?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中营的舞者\",\n    \"author\": \"保罗・格拉泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012684-e07dca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜘蛛女之吻\",\n    \"author\": \"曼努埃尔・普伊格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012618-4143a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书之书\",\n    \"author\": \"福尔克尔・魏德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012615-56e5ad?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管家\",\n    \"author\": \"玛丽莲・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012600-1fdf69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摘星星的男孩\",\n    \"author\": \"约翰・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应许之地\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012585-de8060?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的进化论\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗样的春天\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012612-81d19d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺旋之谜\",\n    \"author\": \"圣地亚哥・帕哈雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012579-c32ac7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生最美是清欢\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012576-33020b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流浪者史诗\",\n    \"author\": \"詹姆斯・米切纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012555-1f6116?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平凡的世界（套装共3册）\",\n    \"author\": \"路遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012519-dcdb11?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废墟的花朵\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012504-c2ae8c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012480-bb6ba7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012498-08c134?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012468-207f9d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉吟（短经典）\",\n    \"author\": \"梅尔塞・罗多雷达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012465-2aeabb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从此以后\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012462-214ab8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新派遣\",\n    \"author\": \"菲尔・克莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012450-4c35c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如明天来临\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012417-3590de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆斯林的葬礼\",\n    \"author\": \"霍达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012387-7d3306?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寓言集\",\n    \"author\": \"胡安・何塞・阿雷奥拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012381-3d0134?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小妹妹\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012345-2556ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长眠不醒\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012336-5ebd47?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的告别\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012330-ad272f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的国\",\n    \"author\": \"寇研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半轮黄日\",\n    \"author\": \"奇玛曼达・恩戈兹・阿迪契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012108-afced2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物集\",\n    \"author\": \"胡安・何塞・阿雷奥拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012090-8ddb82?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀的简约之道\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012057-9e177a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等你呼唤我的名字\",\n    \"author\": \"阿尔伯特・埃斯皮诺萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿条纹衣服的男孩\",\n    \"author\": \"约翰・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011964-f9985f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京一年\",\n    \"author\": \"蒋方舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011895-9ac584?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡暗黑故事全集（下册）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011853-51ba43?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷影子的人\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011811-525654?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尼\",\n    \"author\": \"安德鲁・麦克尔・赫尔利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011778-9792d8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上的最后一天\",\n    \"author\": \"卡米尔・佩简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011763-477c20?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗处\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩托日记\",\n    \"author\": \"埃内斯托・切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多斯的城堡\",\n    \"author\": \"露西・蒙哥马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011712-fe2f13?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"围城\",\n    \"author\": \"钱钟书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011688-6b9ffc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤儿列车\",\n    \"author\": \"克里斯蒂娜・贝克・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011670-4e3c98?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份的焦虑\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011703-4d4366?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有女人的男人们\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011598-891967?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步履不停\",\n    \"author\": \"是枝裕和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011592-cde9e5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦刻尔克\",\n    \"author\": \"沃尔特・劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡暗黑故事全集（上册）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011532-a09ea4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丙申故事集\",\n    \"author\": \"弋舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011514-e0566b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠夫十字镇\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011511-06936a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：02陪伴\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011460-0422ee?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：03分离\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011451-c5bdd9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日走过山间（果麦经典）\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一千零一夜（果麦经典）\",\n    \"author\": \"邓嘉宛译\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011433-69e0ef?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（全本全注全译）\",\n    \"author\": \"王秀梅译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自深深处\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011409-a27899?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"席勒文集（全6册）\",\n    \"author\": \"席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011478-c63c69?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生插图版经典作品选（全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部招妻\",\n    \"author\": \"马宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舞姬\",\n    \"author\": \"森鸥外\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011316-ad1e18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍遗珠\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由\",\n    \"author\": \"乔纳森・弗兰岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011283-cb0e40?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡未冷前\",\n    \"author\": \"川口俊和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011202-0121ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只特立独行的猪（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011154-36b895?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖作品典藏书系全集（共31册）\",\n    \"author\": \"海明威/泰戈尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011121-5976eb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情节与人物\",\n    \"author\": \"杰夫・格尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011055-c9592f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"依偎\",\n    \"author\": \"丁捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010914-197d3d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独居的一年\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010776-6affa0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦田里的守望者\",\n    \"author\": \"杰罗姆・大卫・塞林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010602-c11552?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍乱时期的爱情\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010596-537f33?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明破晓的世界\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯通纳\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010497-2da934?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿百年\",\n    \"author\": \"罗伟章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010440-50916d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的河山：抗日正面战场全纪实（套装共3册）\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦文体与话语方式研究\",\n    \"author\": \"过常宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：01相遇\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010389-32ec03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妹头\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010377-d27ee2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒木圣经\",\n    \"author\": \"芭芭拉・金索沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010254-370a86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文集（套装共7册）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·奥斯丁小说全集\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010251-5f85e0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡拉马佐夫兄弟\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010242-7facf4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还是想你，妈妈\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010209-11eeec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，萤火虫小巷\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010206-82872c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人与永恒\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找阿拉斯加\",\n    \"author\": \"约翰・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010146-a65cb5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四十个房间\",\n    \"author\": \"奥尔加・格鲁辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010137-2f066d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙头凤尾\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010032-914b4e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮和六便士\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010029-35b91e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的技艺：塔奇曼论历史\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典人物原型45种\",\n    \"author\": \"维多利亚・林恩・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009954-f64d06?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的朝圣2：奎妮的情歌\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009930-818355?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷\",\n    \"author\": \"徐则臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009918-2c00da?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高的火柴\",\n    \"author\": \"张楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009900-0ac672?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪全集（小说卷）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009885-1f723b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国趣读系列（共5册）\",\n    \"author\": \"编辑组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009972-90b3b7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚鸟\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009828-d819d2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是女兵，也是女人\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2666\",\n    \"author\": \"罗贝托・波拉尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009816-01607a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白先勇细说红楼梦\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009822-88e0d4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偶发空缺\",\n    \"author\": \"J.K.罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009801-91629b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漂亮朋友\",\n    \"author\": \"莫泊桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009795-28962c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茵梦湖：施托姆抒情小说选\",\n    \"author\": \"施托姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009780-5324ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009786-616590?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝴蝶梦\",\n    \"author\": \"达夫妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009771-997a5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曼德施塔姆夫人回忆录\",\n    \"author\": \"娜杰日达・曼德施塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009744-9ce9e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努门诺尔与中洲之未完的传说\",\n    \"author\": \"J.R.R.托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009759-306ebf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青春咖啡馆\",\n    \"author\": \"帕特里克・莫迪亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009726-977513?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Stoner\",\n    \"author\": \"John Williams\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009696-f1deec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克精选集16册\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像我这样的一个读者\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红岩\",\n    \"author\": \"罗广斌/杨益言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009657-7a2398?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余华长篇小说（套装共4册）\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009645-718a5f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇动物在哪里\",\n    \"author\": \"J.K.罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009636-41157c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有你，什么都不甜蜜\",\n    \"author\": \"约恩・卡尔曼・斯特凡松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009612-883618?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩智慧精髓大合集（套装共三册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江城\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009462-96eec5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看，这个世界\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009435-6a6ded?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞忆旧集\",\n    \"author\": \"杜鲁门・卡坡蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009408-7c05b5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔作品集（套装共9册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳科幻经典（套装11册）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009561-49bf9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"H档案\",\n    \"author\": \"伊斯梅尔・卡达莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009339-12c917?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船夫日记\",\n    \"author\": \"凯尔泰斯・伊姆莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009303-181850?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徒步中国\",\n    \"author\": \"雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009309-befe4d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一半是火焰，一半是海水\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009294-b318d0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲洛梅娜\",\n    \"author\": \"马丁・西克史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009285-3f7aa9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈默手稿\",\n    \"author\": \"列奥纳多・达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒原狼\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009234-487551?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着本来单纯：丰子恺散文漫画精品集\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界史纲：生物和人类的简明史\",\n    \"author\": \"吴文藻/冰心等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009207-280a2c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守望之心\",\n    \"author\": \"哈珀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009153-c9ba37?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词大会：品味古文人的“八卦”人生（套装共4册）\",\n    \"author\": \"张觅/郭瑞祥/江晓英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009096-8baf10?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生于一九八四\",\n    \"author\": \"郝景芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009078-efa13f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009066-01e1b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009063-7f3a81?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"容忍比自由更重要\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009045-8da7c3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生有何意义\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们能做什么\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息\",\n    \"author\": \"凯特・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009015-52993b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮光之城（豪华珍藏套装）\",\n    \"author\": \"斯蒂芬妮・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008949-e8803d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼王\",\n    \"author\": \"维克托・阿斯塔菲耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008928-ed9c64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"树号\",\n    \"author\": \"维克托・阿斯塔菲耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008916-7b913a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失乐园（中英插图珍藏本）\",\n    \"author\": \"约翰・弥尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008913-ba5a39?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008871-2380b6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡罗尔\",\n    \"author\": \"帕特里夏・海史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008898-271551?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子共和国（果麦经典）\",\n    \"author\": \"理查德・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008853-deb5e3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新名字的故事\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008784-b8943f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡夫卡全集（插图本）全9卷\",\n    \"author\": \"叶廷芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008856-95c871?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死一只知更鸟\",\n    \"author\": \"哈珀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008760-83b113?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们仨\",\n    \"author\": \"杨绛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反乌托邦三部曲\",\n    \"author\": \"扎米亚京/阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008736-24eb0d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独小说家\",\n    \"author\": \"石田衣良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008721-33de84?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河流之声\",\n    \"author\": \"乔莫・卡夫雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008703-83cb6f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"望春风\",\n    \"author\": \"格非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008655-3a2be5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁克林有棵树\",\n    \"author\": \"贝蒂・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008640-fcdadb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓶梅（崇祯本）\",\n    \"author\": \"兰陵笑笑生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008631-0b6df9?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（校注本）\",\n    \"author\": \"施耐庵/罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（校注本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（校注本）\",\n    \"author\": \"曹雪芹/高鹗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（校注本）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008598-ec27d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师们的写作课：好文笔是读出来的\",\n    \"author\": \"舒明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008586-9602d1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鹿原\",\n    \"author\": \"陈忠实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008565-f635ea?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾准文集\",\n    \"author\": \"顾准\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文选\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008550-543725?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晃来晃去的人\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008463-5b54a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你：与冯唐聊天\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008421-7af3cb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲惨世界（套装上中下册）\",\n    \"author\": \"雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追问\",\n    \"author\": \"丁捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当尼采哭泣\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008346-a7d90b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"等等灵魂\",\n    \"author\": \"李佩甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008343-34970f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东亚近代文明史上的梁启超\",\n    \"author\": \"狭间直树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东周列国志（上下）\",\n    \"author\": \"蔡元放/冯梦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008370-900bac?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天局\",\n    \"author\": \"矫健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008208-18ccc8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一百个人的十年\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下铁道\",\n    \"author\": \"科尔森・怀特黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十层地狱\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008106-e60331?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿Q生命中的六个瞬间\",\n    \"author\": \"汪晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008061-a92e4b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野寒山\",\n    \"author\": \"何善蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年孤独\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008040-9c2191?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把生命浪费在美好的事物上\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008034-2d080f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤独是一座花园\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007998-862b6d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻欢作乐\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008001-2f0063?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苔丝（果麦经典）\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007950-e22210?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张德芬身心灵四部曲（套装共4册）\",\n    \"author\": \"张德芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上午咖啡下午茶\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪满洲国（套装共三册）\",\n    \"author\": \"迟子建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007920-212a9c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的读书计划\",\n    \"author\": \"克里夫顿・费迪曼/约翰・S・梅杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫小巷\",\n    \"author\": \"克莉丝汀・汉娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007914-abfad4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正全集：王阳明全集\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北鸢\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007899-24deaf?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先谋生，再谋爱\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙应台“人生三书”（套装共3册）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十日谈（译文名著精选）\",\n    \"author\": \"卜伽丘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007794-cbc429?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科雷马故事\",\n    \"author\": \"瓦尔拉姆・沙拉莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺与玫瑰\",\n    \"author\": \"王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007755-dc10b4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙乡年鉴（果麦经典）\",\n    \"author\": \"奥尔多・利奥波德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007749-a6a55e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变色龙（译文名著精选）\",\n    \"author\": \"安东・契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007737-3fd6bc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当呼吸化为空气\",\n    \"author\": \"保罗・卡拉尼什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马丁·伊登（译文名著精选）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007722-8c323e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声告白\",\n    \"author\": \"伍绮诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007752-de9648?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊神话故事\",\n    \"author\": \"古斯塔夫・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓鱼的男孩\",\n    \"author\": \"奇戈希・奥比奥玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007668-848bf7?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的天才女友\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007614-1518ae?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棋王\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007548-c1b611?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年一叹\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读小说\",\n    \"author\": \"安德烈・布林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007539-6200aa?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师细说中国历史（套装共12册）\",\n    \"author\": \"吕思勉/吴晗/傅斯年等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比\",\n    \"author\": \"斯科特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007428-711e86?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮囊\",\n    \"author\": \"蔡崇达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说故事的人\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007407-3d5566?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿甘正传\",\n    \"author\": \"温斯顿・葛詹姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007395-34fe2b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚四大悲剧（译文名著精选）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007458-01f132?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一地鸡毛\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007380-c504ff?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白宫岁月：基辛格回忆录（套装共4册）\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一句顶一万句\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007404-3f81af?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十年后（套装上下册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007203-5ad2db?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不是潘金莲\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007218-272acd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾中回忆\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轮\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007125-fc1448?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子\",\n    \"author\": \"安托万・德・圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007098-6d08d6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好心眼儿巨人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目送（插图版）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行者：一念一生\",\n    \"author\": \"六小龄童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007038-8367b2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡关何处\",\n    \"author\": \"土家野夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006978-c20038?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上书店\",\n    \"author\": \"加布瑞埃拉·泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006963-ca71a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水手比利·巴德\",\n    \"author\": \"赫尔曼・梅尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006942-b622ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的大多数（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧院魅影（译文名著精选）\",\n    \"author\": \"卡斯顿・勒胡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006849-571d7d?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘鸟（修订版）\",\n    \"author\": \"考琳·麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见\",\n    \"author\": \"柴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记\",\n    \"author\": \"保罗·奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不能承受的生命之轻\",\n    \"author\": \"米兰·昆德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006690-905dbd?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎乐美（译文经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006588-7b673f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你永远都无法叫醒一个装睡的人\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你们再也不写了？（短经典）\",\n    \"author\": \"洛朗丝・柯赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006438-e0248f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四先生（短经典）\",\n    \"author\": \"贡萨洛・曼努埃尔・塔瓦雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006435-b445a1?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变形的陶醉（译文经典）\",\n    \"author\": \"斯台芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006381-1473bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵军（译文经典）\",\n    \"author\": \"伊萨克・巴别尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006369-d34b18?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说选（经典译林）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006429-a8db77?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲三万里\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华的智慧\",\n    \"author\": \"刘笑敢等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006306-708bf4?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤单，我的自我\",\n    \"author\": \"丽贝卡・特雷斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（经典译林）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨迹：留在生命和记忆中\",\n    \"author\": \"曾子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邯郸记\",\n    \"author\": \"汤显祖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教父三部曲（典藏版套装）\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地海传奇六部曲\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白门柳（套装共3册）\",\n    \"author\": \"刘斯奋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006099-ca9e83?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红顶商人胡雪岩珍藏版大全集（套装共6册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有个性的人\",\n    \"author\": \"罗伯特・穆齐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005946-b00b64?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果我们的语言是威士忌\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005961-43a508?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005907-b6423c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜半蜘蛛猴\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005913-712f9f?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触摸历史与进入五四\",\n    \"author\": \"陈平原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船夫日记2\",\n    \"author\": \"凯尔泰斯・伊姆莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005754-20f950?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷尔蒙夜谈\",\n    \"author\": \"鲁敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005748-131ca5?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字通论\",\n    \"author\": \"陆宗达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005763-d13af3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症楼\",\n    \"author\": \"亚历山大・索尔仁尼琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005730-e81dcc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的26部欧美人文经典译丛（套装26册）\",\n    \"author\": \"尼采/柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005814-2644a8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个孤独漫步者的遐想（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005694-ef74ce?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿弥陀佛么么哒\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005679-dc7332?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的我们\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要活的有尊严\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005640-fbc1a6?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜色人生\",\n    \"author\": \"丹尼斯・勒翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005625-b10eda?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿（经典译林）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005643-ae482c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的阿勒泰\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005583-4653e8?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查令十字街84号\",\n    \"author\": \"海莲·汉芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005511-6ba615?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妩媚航班\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005385-b07161?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宵待草夜情\",\n    \"author\": \"连城三纪彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005346-8b2d5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找时间的人\",\n    \"author\": \"凯特・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005340-cf1021?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的西部\",\n    \"author\": \"雪漠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005343-8070a3?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万英镑（译文名著精选）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005322-1058e0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（译文名著精选）\",\n    \"author\": \"但丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005313-5d3225?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世说新语\",\n    \"author\": \"刘义庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005316-e1c6a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勃朗宁夫人十四行诗\",\n    \"author\": \"伊丽莎白・芭蕾特・勃朗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005118-5abcfc?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国知识分子史\",\n    \"author\": \"吕一民/朱晓罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无尽的谈话\",\n    \"author\": \"莫里斯・布朗肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005043-e237a2?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"修配工\",\n    \"author\": \"伯纳德・马拉默德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004899-b12544?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜的苦楚\",\n    \"author\": \"考琳・麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004812-31eee0?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的池塘（短经典）\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004749-de3f5a?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们这个时代的怕和爱\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004716-7b334c?p=8866\",\n    \"category\": \"文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越财富\",\n    \"author\": \"赵晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511332-7490f1?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香帅财富报告\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富千年史\",\n    \"author\": \"辛西娅・克罗森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢：有钱人和你想的不一样\",\n    \"author\": \"塞缪尔・斯迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱从哪里来\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人的逻辑\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万富翁快车道\",\n    \"author\": \"MJ·德马科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050346-fb40ee?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的起源\",\n    \"author\": \"埃里克・拜因霍克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047400-b0091e?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人缺什么\",\n    \"author\": \"古古\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由\",\n    \"author\": \"托马斯・斯坦利/萨拉斯坦利・弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7分钟理财\",\n    \"author\": \"罗元裳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034965-f28528?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人穷口袋，富人富脑袋\",\n    \"author\": \"曾驿翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑优势（第二版）\",\n    \"author\": \"奈德・赫曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富豪的心理\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028158-e90c4b?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Fifth Discipline Fieldbook\",\n    \"author\": \"Peter M. Senge/et al\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021675-47e500?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国富人为何变穷\",\n    \"author\": \"张庭宾/艾经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866\",\n    \"category\": \"财富\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方现代思想家精品译丛（18卷）\",\n    \"author\": \"哈耶克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498924-4e23e7?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想家和思想导读丛书精选（套装共5册）\",\n    \"author\": \"雷克斯・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖无聊\",\n    \"author\": \"马克・金维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（果麦经典）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的用途与滥用\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术师时代\",\n    \"author\": \"沃尔夫拉姆・艾伦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003984-f36531?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲思与海\",\n    \"author\": \"戴维・法雷尔・克雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有思想的世界\",\n    \"author\": \"富兰克林・福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制造儒家\",\n    \"author\": \"詹启华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992017-ecbdd9?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的思想（中英双语版·全48册）\",\n    \"author\": \"马可・波罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋玄学史（第二版）\",\n    \"author\": \"余敦康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判理论（牛津通识读本）\",\n    \"author\": \"斯蒂芬・埃里克・布朗纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053451-652219?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语今读（增订版）\",\n    \"author\": \"李泽厚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学是怎样炼成的\",\n    \"author\": \"蒂莫西・威廉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类的认识（校勘全译本）\",\n    \"author\": \"约翰・洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的迷途\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越哈佛\",\n    \"author\": \"马克·H.麦考梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046038-9c7a11?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪思想史：从弗洛伊德到互联网\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆的思想家\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化与人生\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：自由与财产\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的启蒙运动\",\n    \"author\": \"吉隆・・奥哈拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"壶里春秋\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第六辑）\",\n    \"author\": \"乔治・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第三辑）\",\n    \"author\": \"爱德华・吉本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032616-894226?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第一辑）\",\n    \"author\": \"亨利・戴维・梭罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032496-a4b82d?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第二辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032466-45f355?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的故事\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030186-7ef3cf?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（理想国新版）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本论（套装共3册）\",\n    \"author\": \"中共中央马克思恩格斯列宁斯大林著作编译局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029451-0ebaad?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的启蒙\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027996-39914b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小宣言\",\n    \"author\": \"马格努斯・林奎斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027162-16e6c5?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界哲学简史\",\n    \"author\": \"罗伯特·C·所罗门等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026994-8f39ae?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《人权宣言》在晚清中国的旅行\",\n    \"author\": \"程梦婧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019650-a84eeb?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想史：从火到弗洛伊德（全二册）\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想的力量\",\n    \"author\": \"布鲁克・诺埃尔・穆尔/肯尼思・布鲁德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019563-28ba63?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义咖啡馆\",\n    \"author\": \"莎拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019089-4e2eda?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治传统：近代自由主义之发展\",\n    \"author\": \"弗雷德里克・沃特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义：一场思辨之旅\",\n    \"author\": \"迈可・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012036-0c58f8?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（上卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（下卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想本质\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西天到中土\",\n    \"author\": \"西天中土项目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾准文集\",\n    \"author\": \"顾准\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿Q生命中的六个瞬间\",\n    \"author\": \"汪晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008061-a92e4b?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想丰满\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国知识分子史\",\n    \"author\": \"吕一民/朱晓罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866\",\n    \"category\": \"思想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上丝绸之路\",\n    \"author\": \"罗德里希・普塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002505-7e6ed9?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲思与海\",\n    \"author\": \"戴维・法雷尔・克雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海权：海洋帝国与今日世界\",\n    \"author\": \"詹姆斯・斯塔夫里迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997723-fe76ef?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上帝国：现代航运世界的故事\",\n    \"author\": \"洛丽・安・拉罗科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995551-55cc18?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端生存\",\n    \"author\": \"史蒂芬・帕鲁比/安东尼・帕鲁比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深海：探索寂静的未知\",\n    \"author\": \"詹姆斯・内斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群\",\n    \"author\": \"弗兰克・施茨廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025491-553cf5?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋与文明\",\n    \"author\": \"林肯・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简海洋文明史\",\n    \"author\": \"菲利普・德・索萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上帝国\",\n    \"author\": \"萝莉·安·拉罗科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006567-e71694?p=8866\",\n    \"category\": \"海洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对比Excel，轻松学习Python数据分析\",\n    \"author\": \"张俊红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866\",\n    \"category\": \"Excel\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是Excel控\",\n    \"author\": \"熊野整\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015744-ec5cf7?p=8866\",\n    \"category\": \"Excel\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别怕，Excel VBA其实很简单\",\n    \"author\": \"罗国发\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005424-36e2bc?p=8866\",\n    \"category\": \"Excel\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大头侃人：任正非\",\n    \"author\": \"于立坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从偶然到必然\",\n    \"author\": \"夏忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熵减：华为活力之源\",\n    \"author\": \"华为大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003804-77cb09?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为增长法\",\n    \"author\": \"胡赛雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994717-50ac38?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为管理变革\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036516-884b3b?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为方法论\",\n    \"author\": \"周锡冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033705-5ef0ea?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非传\",\n    \"author\": \"孙力科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值为纲：华为公司财经管理纲要\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017811-05f4eb?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为没有秘密\",\n    \"author\": \"吴春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866\",\n    \"category\": \"华为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库：西方文学社科经典大套装（套装194本）\",\n    \"author\": \"劳伦斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503094-de74e2?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社双语读库·社会文化书系（套装共61本）\",\n    \"author\": \"杰罗姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503208-381270?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德里达（牛津通识读本）\",\n    \"author\": \"西蒙・格伦迪宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔的精神现象学\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052602-06e6fe?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《荒岛》及其他文本\",\n    \"author\": \"吉尔・德勒兹/大卫・拉普雅德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学史讲演录（4卷）\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代西方哲学讲演集\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044244-278ff8?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方哲学常识\",\n    \"author\": \"菲利普・斯托克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032880-081e2d?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一神论的影子\",\n    \"author\": \"赵汀阳/阿兰・乐比雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被诅咒的部分\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开：周濂的100堂西方哲学课\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简西方哲学史\",\n    \"author\": \"杰瑞米・斯坦格鲁/詹姆斯・加维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024156-e74da6?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性、美德和灵魂的声音\",\n    \"author\": \"西塞罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023961-69cf76?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的人（译文经典）\",\n    \"author\": \"威廉・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的快乐\",\n    \"author\": \"罗伯特・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019143-2bee90?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名家名译·大师人生智慧精华丛书\",\n    \"author\": \"柏拉图/叔本华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018189-56ffc0?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙娜拉之剑（全3册）\",\n    \"author\": \"特里・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014520-838f52?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方建筑小史\",\n    \"author\": \"陈杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方哲学史（套装共2册）\",\n    \"author\": \"弗兰克・梯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009582-0a04b7?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史\",\n    \"author\": \"特奥多尔・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866\",\n    \"category\": \"西方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HR转型突破\",\n    \"author\": \"康志军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016836-d313c3?p=8866\",\n    \"category\": \"人力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激活个体\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866\",\n    \"category\": \"人力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代朝鲜与日本\",\n    \"author\": \"赵景达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000528-ff6dab?p=8866\",\n    \"category\": \"朝鲜\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅲ：血战长津湖\",\n    \"author\": \"何楚舞/凤鸣/陆宏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866\",\n    \"category\": \"朝鲜\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天：美国人眼中的朝鲜战争\",\n    \"author\": \"大卫・哈伯斯塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866\",\n    \"category\": \"朝鲜\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代政治的正当性基础\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491484-c06fa6?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏特加政治\",\n    \"author\": \"马克・劳伦斯・施拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495120-2dd6c4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力\",\n    \"author\": \"德博拉・格林菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498009-cbe216?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘擎西方现代思想讲义\",\n    \"author\": \"刘擎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498162-6d669a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份政治\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499002-9f16d0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的选择\",\n    \"author\": \"马凯硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精英的傲慢\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500601-accc90?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破茧\",\n    \"author\": \"施展\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500925-acb6ff?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国际政治精品文库精选套装（套装11册）\",\n    \"author\": \"塞缪尔・亨廷顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509124-80f0aa?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹劾\",\n    \"author\": \"戴维・E.凯卫格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐观而不绝望\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510429-5ca9fe?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六论自发性\",\n    \"author\": \"詹姆斯·C. 斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承认：一部欧洲观念史\",\n    \"author\": \"阿克塞尔・霍耐特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为公民\",\n    \"author\": \"皮埃尔・罗桑瓦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511836-25cf44?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秩序与历史（套装全五卷）\",\n    \"author\": \"埃里克・沃格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513159-e66ba2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么是中国\",\n    \"author\": \"金一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘政治三部曲\",\n    \"author\": \"罗伯特·D.卡普兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513753-cc4d25?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国不平等的起源\",\n    \"author\": \"伊莎贝尔・威尔克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧盟的危机\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济情操论\",\n    \"author\": \"艾玛・罗斯柴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002307-c67bdb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（果麦经典）\",\n    \"author\": \"尼科洛・马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治哲学\",\n    \"author\": \"乔纳森・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999835-300928?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"右派国家（新版）\",\n    \"author\": \"约翰・米克尔思韦特/阿德里安・伍尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国霸权\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"誓言：白宫与最高法院\",\n    \"author\": \"杰弗里・图宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国会（牛津通识读本）\",\n    \"author\": \"唐纳德・A.里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义的未来\",\n    \"author\": \"保罗・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997324-2dab97?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的视角\",\n    \"author\": \"詹姆斯·C.斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996523-b7c691?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰斐逊总统\",\n    \"author\": \"约翰・托里・莫尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国真相\",\n    \"author\": \"約瑟夫・斯蒂格利茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨兽：工厂与现代世界的形成\",\n    \"author\": \"乔舒亚・B.弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力与反暴力\",\n    \"author\": \"谭旋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994615-7c3ab4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代中国学术思想史（套装共19卷）\",\n    \"author\": \"成一农等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会政体\",\n    \"author\": \"伍德罗・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国治理\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的当下与未来\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国政治思想史（套装共3册）\",\n    \"author\": \"刘泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港社会三部曲\",\n    \"author\": \"刘兆佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观念的力量\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学术与政治（理想国新版）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988129-ec950b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李光耀观天下\",\n    \"author\": \"李光耀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政论 昌言（全本全注全译）\",\n    \"author\": \"孙启治译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界不是平的\",\n    \"author\": \"简世勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人民共和国\",\n    \"author\": \"文扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985249-14c66e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败（牛津通识读本）\",\n    \"author\": \"莱斯利・霍姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984613-d3354c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败：人性与文化\",\n    \"author\": \"克里斯・肖尔/迪特尔・哈勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治动物\",\n    \"author\": \"里克・申克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"士大夫政治演生史稿\",\n    \"author\": \"阎步克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的决裂\",\n    \"author\": \"汤姆斯·F. 密勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国政党与选举（牛津通识读本）\",\n    \"author\": \"桑迪・梅塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群氓的狂欢\",\n    \"author\": \"塞奇・莫斯科维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何故为敌\",\n    \"author\": \"卡罗琳・艾姆克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051798-658124?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"化蝶：一个滇南小镇的政治史\",\n    \"author\": \"刘永刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051804-1856d3?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的危机\",\n    \"author\": \"斯科特・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2020：用数据看懂中国发展\",\n    \"author\": \"谢伏瞻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大外交\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖们（全译修订版）\",\n    \"author\": \"理查德・尼克松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与权力\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独霸中东\",\n    \"author\": \"雅科夫・卡茨/阿米尔・鲍博特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐秘战争\",\n    \"author\": \"阿里・拉伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩护的政治\",\n    \"author\": \"陈肖生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049620-9477eb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（拿破仑批注版）\",\n    \"author\": \"马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049287-a0aa34?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史（套装15册）\",\n    \"author\": \"哈罗德坦珀利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋大义\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的自信\",\n    \"author\": \"陈曙光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046188-7efacb?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"党员、党权与党争\",\n    \"author\": \"王奇生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治学通识\",\n    \"author\": \"包刚升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油战争\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：中国周边\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马基雅维利语录\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045288-8aa412?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国精神读本\",\n    \"author\": \"王蒙/王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运攸关的抉择\",\n    \"author\": \"伊恩・克肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家安全局\",\n    \"author\": \"克劳德・德莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇宫日落（全2册）\",\n    \"author\": \"姜建强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043920-9d3751?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国在巴蜀\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的冲突\",\n    \"author\": \"道格拉斯・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自愿为奴（译文经典）\",\n    \"author\": \"艾蒂安・德・拉・波埃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝希摩斯\",\n    \"author\": \"托马斯・霍布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注定一战\",\n    \"author\": \"格雷厄姆・艾利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新马克思主义导引\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038226-094d97?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚政进行曲\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大浪潮\",\n    \"author\": \"斯蒂芬・拉德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037386-86cf50?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民粹主义大爆炸\",\n    \"author\": \"约翰・朱迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：公民到领主\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力的教训\",\n    \"author\": \"弗朗索瓦・奥朗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：自由与财产\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"50人的二十年\",\n    \"author\": \"樊纲/易纲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大趋势\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九月的十三天\",\n    \"author\": \"劳伦斯・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么不平等至关重要\",\n    \"author\": \"托马斯・斯坎伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理与世界霸权\",\n    \"author\": \"詹姆斯・费尔格里夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀戮与文化\",\n    \"author\": \"维克托・戴维斯・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不平等社会\",\n    \"author\": \"沃尔特・沙伊德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处可藏\",\n    \"author\": \"格伦・格林沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：一部历史\",\n    \"author\": \"劳伦斯・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨变：当代政治与经济的起源\",\n    \"author\": \"卡尔・波兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴政\",\n    \"author\": \"提摩希・史奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033231-d43b3e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总统班底\",\n    \"author\": \"卡尔・伯恩斯坦/鲍勃・伍德沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物农场（果麦经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032811-2781ba?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国民党高层的派系政治（修订本）\",\n    \"author\": \"金以林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力：思无所限\",\n    \"author\": \"理查德·J.伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小丑\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙特公司\",\n    \"author\": \"埃伦·R.沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首届国会\",\n    \"author\": \"弗格斯·M.博德韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿登纳回忆录（套装共4册）\",\n    \"author\": \"康拉德・阿登纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不敢懈怠\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁统治美国？公司富豪的胜利\",\n    \"author\": \"威廉・多姆霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔的正义\",\n    \"author\": \"琳达・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会理论的核心问题\",\n    \"author\": \"安东尼・吉登斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029886-fe1bf2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华夏传统政治文明书系（全四册）\",\n    \"author\": \"马平安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029841-addcd2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天降之任：学术与政治\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029682-d3a753?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（理想国新版）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞缪尔·亨廷顿经典著作集（套装4册）\",\n    \"author\": \"塞缪尔・亨廷顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029049-0daa60?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔霍恩文集（上、下）\",\n    \"author\": \"约翰·C.卡尔霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗盘与风向标\",\n    \"author\": \"雷蒙德・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028383-8bed41?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的帝国\",\n    \"author\": \"波波・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽签与民主、共和\",\n    \"author\": \"王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史学的境界\",\n    \"author\": \"高华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寡头\",\n    \"author\": \"戴维・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅（原书第2版）\",\n    \"author\": \"皮厄特拉・里佛利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叶礼庭作品集（套装共3册）\",\n    \"author\": \"叶礼庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026292-6b6467?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国秩序的根基\",\n    \"author\": \"拉塞尔・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的对面是你\",\n    \"author\": \"傅莹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024765-1f9c07?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式幸福\",\n    \"author\": \"亚瑟·C.布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"椰壳碗外的人生\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论美国的民主（套装共4册）\",\n    \"author\": \"亚力克西·德·托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024132-df8a85?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱暗流\",\n    \"author\": \"简・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"How Democracies Die\",\n    \"author\": \"Levitsky Steven\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023883-93d110?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞跃5000年\",\n    \"author\": \"克里昂・斯考森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Coddling of the American Mind\",\n    \"author\": \"Greg Lukianoff/Jonathan Haidt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022932-efa525?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放战争（套装共6册）\",\n    \"author\": \"刘统等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"峰会：影响20世纪的六场元首会谈\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无政府、国家和乌托邦\",\n    \"author\": \"罗伯特・诺齐克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022605-61758e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宪法学说（修订译本）\",\n    \"author\": \"卡尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022602-de44b4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Fifth Risk\",\n    \"author\": \"Michael Lewis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022572-e36b2f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现民众\",\n    \"author\": \"林红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021852-b5cbe5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义简史\",\n    \"author\": \"于尔根・科卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"档案：一部个人史\",\n    \"author\": \"蒂莫西・加顿艾什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Our Kids\",\n    \"author\": \"Robert D. Putnam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争、枪炮与选票\",\n    \"author\": \"保罗・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021162-f86e9b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家构建\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021159-d86f25?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别霸权!\",\n    \"author\": \"蒙・赖克/理查德・内德・勒博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020550-3cfb43?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国独行：西方世界的末日\",\n    \"author\": \"马克・斯坦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020337-7905c5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两面之词：关于革命问题的通信\",\n    \"author\": \"雷吉斯・德布雷/赵汀阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020256-b9bfc5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国之弧\",\n    \"author\": \"乔良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020010-32ddc9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困顿与突围\",\n    \"author\": \"田文林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019911-f7637f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条与罗斯福新政\",\n    \"author\": \"埃里克・劳赫威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用地图看懂世界格局\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019215-fc1753?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的兴衰\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019092-d58e9a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实改变之后\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下的当代性\",\n    \"author\": \"赵汀阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017931-313da6?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代政治得失\",\n    \"author\": \"钱穆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017871-5874f6?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国王的两个身体\",\n    \"author\": \"恩斯特・康托洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界秩序\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017367-b1f56a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与中国打交道\",\n    \"author\": \"亨利・鲍尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国雄心\",\n    \"author\": \"马丁・雅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016716-d4f605?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联邦论：美国宪法评述\",\n    \"author\": \"亚历山大・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治传统：近代自由主义之发展\",\n    \"author\": \"弗雷德里克・沃特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物庄园\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013113-3cbe8f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力与繁荣\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012258-603067?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南非的启示\",\n    \"author\": \"秦晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012105-8052a4?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘大战略\",\n    \"author\": \"丁力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往大国之路：中国的知识重建和文明复兴\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011517-f964c0?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的后人类未来\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（上卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（下卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普京政治\",\n    \"author\": \"李鸿谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009723-3b1f21?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝与黄金\",\n    \"author\": \"沃尔特・拉塞尔・米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国事机密档（全10册）\",\n    \"author\": \"凤凰周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009705-558073?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有宽恕就没有未来\",\n    \"author\": \"德斯蒙德・图图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序的起源\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序与政治衰败\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的终结与最后的人\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲洛梅娜\",\n    \"author\": \"马丁・西克史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009285-3f7aa9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家兴衰\",\n    \"author\": \"鲁奇尔・夏尔马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开放社会及其敌人（全二卷）\",\n    \"author\": \"卡尔・波普尔爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩论：美国制宪会议记录\",\n    \"author\": \"詹姆斯・麦迪逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗伯特议事规则\",\n    \"author\": \"袁天鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008811-e8cf3b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论中国\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧制度与大革命\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大法官说了算\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的兴衰（套装共2册）\",\n    \"author\": \"保罗・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坐天下：张宏杰解读中国帝王\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公正：该如何做是好\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008139-f61de9?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天“帝国与共和”三部曲\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可思议的年代\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"C形包围：内忧外患下的中国突围\",\n    \"author\": \"戴旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007992-9f9eb2?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主新论（套装2册）\",\n    \"author\": \"乔万尼・萨托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007968-d5ef21?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人民的名义\",\n    \"author\": \"周梅森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007896-f02fcd?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年河东：权力市场经济的困境\",\n    \"author\": \"杨继绳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联的最后一天\",\n    \"author\": \"康纳・奥克莱利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白宫岁月：基辛格回忆录（套装共4册）\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬球：政治是这样玩的\",\n    \"author\": \"克里斯·马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年看中国系列（共8本）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006609-d621da?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人以什么理由来记忆\",\n    \"author\": \"徐贲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006453-f30ed5?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个大国的崛起与崩溃\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的应许之地\",\n    \"author\": \"阿里・沙维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独裁者手册\",\n    \"author\": \"布鲁斯・布鲁诺・德・梅斯奎塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集体行动的逻辑\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866\",\n    \"category\": \"政治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治学通识\",\n    \"author\": \"包刚升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866\",\n    \"category\": \"入门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给投资新手的极简股票课\",\n    \"author\": \"lip师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866\",\n    \"category\": \"入门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学要义\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044937-083bb7?p=8866\",\n    \"category\": \"入门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"团队赋能\",\n    \"author\": \"迈克・布伦特/菲奥娜・爱尔莎・丹特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：如何打造高联动团队\",\n    \"author\": \"马克・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义系列（共四册）\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义团队\",\n    \"author\": \"拉斯洛・博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我这就跟你走\",\n    \"author\": \"科里・鲍克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024180-eaf889?p=8866\",\n    \"category\": \"团队\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动的人生整理魔法2\",\n    \"author\": \"近藤麻理惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866\",\n    \"category\": \"收纳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲人与权臣\",\n    \"author\": \"詹姆斯・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491652-6fd685?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国与蛮族\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史纲\",\n    \"author\": \"李筠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498807-cf24d9?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国统治的逻辑\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马文学史（全3册）\",\n    \"author\": \"江澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506940-b655c7?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人们的故事（套装3册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512532-808aae?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵帝国拜占庭\",\n    \"author\": \"理查德・菲德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝：一座罗马城市的生与死\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001596-3c92ea?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马三巨头\",\n    \"author\": \"查尔斯・梅里维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995458-5d95b6?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌徒恺撒\",\n    \"author\": \"马丁・耶内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津古罗马史\",\n    \"author\": \"约翰・博德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马技术史（贝克知识丛书）\",\n    \"author\": \"赫尔穆特・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典时代的终结（贝克知识丛书）\",\n    \"author\": \"哈特温・布兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的复辟\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国兴亡史三部曲\",\n    \"author\": \"罗伯特・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047541-286b5b?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的命运\",\n    \"author\": \"凯尔・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040251-bcd0df?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的崛起\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039726-2352c5?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迦太基必须毁灭\",\n    \"author\": \"理查德・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033276-eb158a?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高卢战记\",\n    \"author\": \"盖乌斯・尤利乌斯・恺撒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030762-72487f?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的梦魇\",\n    \"author\": \"刘衍钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029178-61ff6d?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马共和国的衰落\",\n    \"author\": \"A.H.比斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027213-bd8c70?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全译罗马帝国衰亡史（全12册）\",\n    \"author\": \"爱德华・吉本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022686-8c5d14?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥古斯都\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019974-84c627?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马：一座城市的兴衰史\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019185-aa4682?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代的希腊和罗马\",\n    \"author\": \"吴于廑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017154-8d701b?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马爱经（企鹅经典）\",\n    \"author\": \"奥维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的陨落\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010386-84b362?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马人的故事（套装共15册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史\",\n    \"author\": \"特奥多尔・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马灭亡后的地中海世界（上下册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本最危险的书\",\n    \"author\": \"克里斯托夫·克里布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866\",\n    \"category\": \"罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规划最好的一年\",\n    \"author\": \"迈克尔・海亚特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512514-02047a?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新城市科学\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995401-9787ba?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职业通道\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是我要的工作\",\n    \"author\": \"克里斯・吉耶博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习：10个你必须掌握的未来生存法则\",\n    \"author\": \"丹・苏利文/凯瑟琳・野村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转行：发现一个未知的自己\",\n    \"author\": \"埃米尼亚・伊瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30年后，你拿什么养活自己？\",\n    \"author\": \"高得诚/郑成镇/崔秉熙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017421-191d50?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：如何规划职业生涯3大阶段\",\n    \"author\": \"布赖恩・费瑟斯通豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生命有什么可能\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866\",\n    \"category\": \"规划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化：顶级企业家自述40年成长心法\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866\",\n    \"category\": \"企业家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健传\",\n    \"author\": \"周桦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866\",\n    \"category\": \"企业家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript函数式编程\",\n    \"author\": \"Michael Fogus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS重构：样式表性能调优\",\n    \"author\": \"Steve Lindstrom\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017682-29904e?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锋利的jQuery（第2版）\",\n    \"author\": \"单东林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016728-3282f4?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通CSS（第2版）\",\n    \"author\": \"Andy Budd/Cameron Moll\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript权威指南（第6版）\",\n    \"author\": \"David Flanagan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866\",\n    \"category\": \"前端\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骂观众\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039432-b8a3ae?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缓慢的归乡\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038769-f672c1?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左撇子女人\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038766-406e59?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔特手记（译文经典）\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038694-91674f?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以上帝和恺撒之名\",\n    \"author\": \"理查德・巴塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个女人一生中的二十四小时（企鹅经典）\",\n    \"author\": \"斯台芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033507-fe6b8e?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形同陌路的时刻\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013440-fec756?p=8866\",\n    \"category\": \"奥地利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捍卫隐私\",\n    \"author\": \"凯文・米特尼克/罗伯特・瓦摩西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866\",\n    \"category\": \"隐私\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"并购估值：构建和衡量非上市公司价值（原书第3版）\",\n    \"author\": \"克里斯・梅林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000339-2527cd?p=8866\",\n    \"category\": \"并购\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她来自马里乌波尔\",\n    \"author\": \"娜塔莎・沃丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹猎人\",\n    \"author\": \"安德鲁・纳戈尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499107-ffa76f?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被隔绝的女孩\",\n    \"author\": \"巴尔特・范埃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501051-01d0ce?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本1941：导向深渊的决策\",\n    \"author\": \"堀田江理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502557-d83fcc?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反败为胜\",\n    \"author\": \"威廉・斯利姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510168-994493?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战东线全史（套装全13卷）\",\n    \"author\": \"朱世巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513234-e38f4b?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰猎犬号\",\n    \"author\": \"C.S.佛瑞斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003174-b32007?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大洋\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服的怒潮\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000099-60af65?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国史\",\n    \"author\": \"郑寅达/陈旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998593-2b2916?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盟友\",\n    \"author\": \"琳恩・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战：黑暗的年代\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995848-9bb1c2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯维辛的文身师\",\n    \"author\": \"希瑟・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991558-daf390?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（增订版）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当权的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的到来\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战解放三部曲系列（套装共6册）\",\n    \"author\": \"里克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986572-e0e277?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身大师\",\n    \"author\": \"萨拉・卡明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空军飞行员（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失去名字的女孩\",\n    \"author\": \"玛莎・霍尔・凯莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984901-789579?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善心女神\",\n    \"author\": \"乔纳森・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984781-170459?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重逢\",\n    \"author\": \"弗雷德・乌尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进攻日本\",\n    \"author\": \"雷蒙德・戴维斯/丹・温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051780-7e58b0?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争时期日本精神史\",\n    \"author\": \"鹤见俊辅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049854-91db68?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂之死\",\n    \"author\": \"汉妮・明策尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与记忆中的第三帝国\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自纳粹地狱的报告\",\n    \"author\": \"米克洛斯・尼斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运攸关的抉择\",\n    \"author\": \"伊恩・克肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人为何选择了战争\",\n    \"author\": \"加藤阳子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043608-500337?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中途岛奇迹\",\n    \"author\": \"戈登・普兰奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲（珍藏版）\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开往伊斯坦布尔的最后列车\",\n    \"author\": \"艾雪・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043023-4cbbe6?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被涂污的鸟\",\n    \"author\": \"耶日・科辛斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041022-bb6b72?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轰炸东京\",\n    \"author\": \"詹姆斯·M.斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039969-7b615d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隆美尔战时文件\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪击英雄\",\n    \"author\": \"海因茨・威廉・古德里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史迪威与美国在中国的经验（1911-1945）\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1944阿登战役\",\n    \"author\": \"安东尼・比弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第4卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎烧了吗？\",\n    \"author\": \"拉莱・科林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第1卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第2卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第3卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮大陆\",\n    \"author\": \"基思・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生幸存者\",\n    \"author\": \"温迪・霍尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033942-f423d9?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的试毒者\",\n    \"author\": \"罗塞拉・波斯托里诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战爆发前十天\",\n    \"author\": \"理查德・奥弗里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战在亚洲及太平洋的起源\",\n    \"author\": \"入江昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032592-58ba06?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞行战犬\",\n    \"author\": \"达米恩・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031125-c70223?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力与文化\",\n    \"author\": \"入江昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031056-457560?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里斯本之夜\",\n    \"author\": \"埃里希・玛丽亚・雷马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030501-6ecfa7?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战风云：史上最大规模战争的伤痛（全3册）\",\n    \"author\": \"杨少丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争系列\",\n    \"author\": \"青梅煮酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情之战\",\n    \"author\": \"约翰·W.道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029877-ef77af?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎拉的钥匙\",\n    \"author\": \"塔季雅娜・德・罗斯奈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029079-199577?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兄弟连（译林纪念版）\",\n    \"author\": \"斯蒂芬•E．安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当图书进入战争\",\n    \"author\": \"莫里・古皮提尔・曼宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猩红色的天空下\",\n    \"author\": \"马克・苏利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026145-807343?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战中的巴黎\",\n    \"author\": \"提拉・马奇奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025701-0b1776?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国\",\n    \"author\": \"克劳斯・P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹医生\",\n    \"author\": \"罗伯特・杰伊・利夫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025107-90ecdb?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简二战史\",\n    \"author\": \"奈杰尔・考索恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023217-136ca3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅尔塔：改变世界格局的八天\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022569-a065df?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人\",\n    \"author\": \"杨·T.格罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022545-465fc9?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里的黎明静悄悄……\",\n    \"author\": \"鲍・瓦西里耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人的战争\",\n    \"author\": \"尼古拉斯・斯塔加特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教宗与墨索里尼\",\n    \"author\": \"大卫·I.科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赎罪\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021276-1a6b77?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五个人的战争\",\n    \"author\": \"马克・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020868-e951f3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科战役1941\",\n    \"author\": \"尼克拉斯・泽特林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019668-09e230?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审问欧洲：二战时期的合作、抵抗与报复\",\n    \"author\": \"伊斯特万・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着回来的男人\",\n    \"author\": \"小熊英二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018474-680890?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Book Thief\",\n    \"author\": \"Markus Zusak\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017181-5f6d27?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾希曼在耶路撒冷\",\n    \"author\": \"汉娜・阿伦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015621-ee315c?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩瀚大洋是赌场（全3册）\",\n    \"author\": \"俞天任\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015387-cec59e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战纵横录（套装二十四册）\",\n    \"author\": \"胡元斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015495-8bfeee?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深入北方的小路\",\n    \"author\": \"理查德・弗兰纳根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013632-920634?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后日本史\",\n    \"author\": \"王新生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013008-9417f2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而有罪\",\n    \"author\": \"彼得・西施罗夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012927-e5aba8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山顶上的男孩\",\n    \"author\": \"约翰・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012744-79efb3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中营的舞者\",\n    \"author\": \"保罗・格拉泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012684-e07dca?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查无此人\",\n    \"author\": \"凯瑟琳・克莱斯曼・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012564-30c377?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被淹没和被拯救的\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012249-55fbc8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远去的胜利\",\n    \"author\": \"威廉・理查德森/西摩・弗雷德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿条纹衣服的男孩\",\n    \"author\": \"约翰・伯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011964-f9985f?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"All the Light We Cannot See\",\n    \"author\": \"Anthony Doerr\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011754-cffc1b?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵蒂冈的乱世抉择（1922-1945）\",\n    \"author\": \"段琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010149-afb62f?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻关注：二战经典战役纪实（套装共10册）\",\n    \"author\": \"二战经典战役编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是女兵，也是女人\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的最后十四天\",\n    \"author\": \"约阿希姆·・费斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009762-976759?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯维辛\",\n    \"author\": \"劳伦斯・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009495-02ded5?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零年：1945\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的岛群\",\n    \"author\": \"宋宜昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009099-e8b13b?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南京大屠杀\",\n    \"author\": \"张纯如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008697-eb4356?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（全三册）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风暴岛\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007962-abffe2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：跃升年代\",\n    \"author\": \"福尔克尔・乌尔里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呐喊-大屠杀回忆录\",\n    \"author\": \"曼尼・斯坦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞虎队在桂林\",\n    \"author\": \"赵平/韦芳/蒋桂英/苏晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007470-7a5427?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战太平洋（HBO官方完整版）\",\n    \"author\": \"休·安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪孽的报应\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驼峰航线\",\n    \"author\": \"刘小童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战秘密档案\",\n    \"author\": \"鲍里斯・瓦季莫维奇・索科洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有一类战犯叫参谋\",\n    \"author\": \"俞天任\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006147-fac58d?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的二战史（上下卷）\",\n    \"author\": \"肖石忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006273-4b1128?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔的饱食：日本731细菌战部队揭秘\",\n    \"author\": \"森村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱绝杀：当关东军遇上苏联红军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005877-d8ae7b?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山的那一边\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战回忆录（全六卷）\",\n    \"author\": \"温斯顿·丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一寸河山一寸血（套装全五册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争就是这么回事儿（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可退的战士\",\n    \"author\": \"杰克·希金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004932-962a95?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国式英雄\",\n    \"author\": \"杰克·希金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004926-351dc3?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国之翼\",\n    \"author\": \"格雷戈里・克劳奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004914-6aa3a6?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争从未如此热血：二战美日太平洋大对决（全四册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866\",\n    \"category\": \"二战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秒赞：文案女王20年创作技巧与心法\",\n    \"author\": \"林桂枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案写作指南\",\n    \"author\": \"李洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案的基本修养\",\n    \"author\": \"东东枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案会说话\",\n    \"author\": \"梅田悟司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能学会的刷屏文案写作技巧\",\n    \"author\": \"吕白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案基本功\",\n    \"author\": \"苏芯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微文案\",\n    \"author\": \"朱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告文案\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案变现\",\n    \"author\": \"叶小鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10W+走心文案是怎样炼成的\",\n    \"author\": \"卢建彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029916-76a0fe?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体文案创作与传播\",\n    \"author\": \"秋叶/叶小鱼/勾俊伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案一句话就够了\",\n    \"author\": \"川上徹也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案创作完全手册\",\n    \"author\": \"罗伯特・布莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的16个关键词\",\n    \"author\": \"叶茂中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案\",\n    \"author\": \"关健明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017604-0d7b9e?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖叫感\",\n    \"author\": \"马楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案圣经\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866\",\n    \"category\": \"文案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么长这样\",\n    \"author\": \"爱丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达尔文的战争\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇葩进化论（套装共7册）\",\n    \"author\": \"玛拉·J. 哈尔特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513783-2e2ad9?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的故事\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进化的跃升\",\n    \"author\": \"尼克・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与达尔文共进晚餐\",\n    \"author\": \"乔纳森・西尔弗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类成功统治地球的秘密\",\n    \"author\": \"约瑟夫・亨里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类起源的故事\",\n    \"author\": \"大卫・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的算法\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯化\",\n    \"author\": \"艾丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼安德特人\",\n    \"author\": \"斯万特・帕博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美的进化\",\n    \"author\": \"理查德·O.普鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲眼钟表匠\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未完成的进化\",\n    \"author\": \"凯文・拉兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五次开始\",\n    \"author\": \"罗伯特・L .凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何活出生命的意义\",\n    \"author\": \"杰西・贝林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019359-395102?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们人类的进化\",\n    \"author\": \"亚历山大・哈考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球上最伟大的表演\",\n    \"author\": \"理查德・毛姆道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智探奇\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神似祖先\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866\",\n    \"category\": \"进化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏惧：颠覆你内心的脆弱\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510027-601beb?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当爱变成了情感操纵\",\n    \"author\": \"佐治·K.西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995245-aa31a6?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见了，伊藤君\",\n    \"author\": \"柚木麻子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991435-181d4c?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名区+1\",\n    \"author\": \"匿名用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986368-d69b14?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯德哥尔摩情人\",\n    \"author\": \"陆俊文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985576-dc8c8a?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巧合制造师\",\n    \"author\": \"约夫・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984553-fa83dc?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何爱会伤人（珍藏版）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我离开你\",\n    \"author\": \"艾米莉・布勒克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049989-793bfd?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赶路人\",\n    \"author\": \"李小晓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048240-d3013a?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二次吸引\",\n    \"author\": \"“小鹿情感”专家组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的我\",\n    \"author\": \"尼古拉斯・斯帕克思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032226-eda2d2?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感勒索\",\n    \"author\": \"苏珊・福沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021204-0a1bfc?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偶遇\",\n    \"author\": \"陈鲁豫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017523-714fb8?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱到绝处便逢生\",\n    \"author\": \"卢悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013566-43e5ee?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱，不释手\",\n    \"author\": \"琳・斯蒂格・斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010044-9bddf2?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莉莉和章鱼\",\n    \"author\": \"史蒂文・罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009783-3b87ff?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人来自火星，女人来自金星（套装共4册）\",\n    \"author\": \"约翰・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外婆的道歉信\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008808-17d5d1?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别天堂\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008511-0969ee?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芙蓉如面柳如眉\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008502-5170e3?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先谋生，再谋爱\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866\",\n    \"category\": \"情感\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权、期货及其他衍生产品（原书第9版）\",\n    \"author\": \"约翰・赫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866\",\n    \"category\": \"期权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权：就这么简单\",\n    \"author\": \"韩冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866\",\n    \"category\": \"期权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"期权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克米伦谈期权\",\n    \"author\": \"劳伦斯G.麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866\",\n    \"category\": \"期权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马来群岛自然考察记Ⅰ\",\n    \"author\": \"阿尔弗雷德・R.华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046353-0dfadd?p=8866\",\n    \"category\": \"马来西亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马来群岛自然考察记Ⅱ\",\n    \"author\": \"阿尔弗雷德・R.华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046371-066493?p=8866\",\n    \"category\": \"马来西亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂碳中和\",\n    \"author\": \"中国长期低碳发展战略与转型路径研究课题组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498108-447de0?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂碳中和\",\n    \"author\": \"安永碳中和课题组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507366-f36283?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候经济与人类未来\",\n    \"author\": \"比尔・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟囱与进步人士\",\n    \"author\": \"大卫・斯特拉德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512436-c178c9?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的春天（四师推荐精装版）\",\n    \"author\": \"蕾切尔・卡森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032802-2197eb?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的明天\",\n    \"author\": \"席里尔・迪翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废物星球：从中国到世界的天价垃圾之旅\",\n    \"author\": \"亚当・明特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014730-c288c9?p=8866\",\n    \"category\": \"环境\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小彩虹（第一辑）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866\",\n    \"category\": \"企鹅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅与其他海鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866\",\n    \"category\": \"企鹅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅经典：小黑书（第一辑）\",\n    \"author\": \"薄伽丘等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866\",\n    \"category\": \"企鹅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第六辑）\",\n    \"author\": \"乔治・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866\",\n    \"category\": \"企鹅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的秘密\",\n    \"author\": \"耶尔・阿德勒/卡佳・施皮策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003708-5ef7a9?p=8866\",\n    \"category\": \"人体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866\",\n    \"category\": \"人体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级潜能\",\n    \"author\": \"亚当・皮奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866\",\n    \"category\": \"人体\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的情绪生活\",\n    \"author\": \"理查德・戴维森/莎朗・伯格利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的故事\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033396-0dc284?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑与意识\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大脑自由\",\n    \"author\": \"约翰・梅迪纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015795-94cb6e?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑的阅读：破解人类阅读之谜\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑开发指南（全3册）\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008388-ce451a?p=8866\",\n    \"category\": \"大脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息技术简史\",\n    \"author\": \"吕廷杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043158-2c151c?p=8866\",\n    \"category\": \"信息\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息背后的信息\",\n    \"author\": \"马克斯・巴泽曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028227-08a419?p=8866\",\n    \"category\": \"信息\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息简史\",\n    \"author\": \"詹姆斯·格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866\",\n    \"category\": \"信息\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生少年生存小说系列（全6册）\",\n    \"author\": \"贝尔·格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866\",\n    \"category\": \"求生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元真相\",\n    \"author\": \"达尔辛妮・大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866\",\n    \"category\": \"美元\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元病\",\n    \"author\": \"叶冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998812-5c6954?p=8866\",\n    \"category\": \"美元\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866\",\n    \"category\": \"美元\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港社会三部曲\",\n    \"author\": \"刘兆佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港味道1\",\n    \"author\": \"欧阳应霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985993-0ff83e?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港味道2\",\n    \"author\": \"欧阳应霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986050-b290ba?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上几个人渣\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙头凤尾\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010032-914b4e?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港电影史记\",\n    \"author\": \"魏君子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006993-4a082b?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"豪门兴衰：百年香港商业\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866\",\n    \"category\": \"香港\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经（第2版）\",\n    \"author\": \"赫尔伯特・史迪凡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493785-dc64ee?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懒惰脑科学\",\n    \"author\": \"鲍里斯・薛瓦勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骨骼跑步法\",\n    \"author\": \"铃木清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学跑步\",\n    \"author\": \"罗炜樑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姿势跑法\",\n    \"author\": \"尼古拉斯・罗曼诺夫/约翰・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜值和身材一个都不能少（套装共10册）\",\n    \"author\": \"森拓郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983329-e2252e?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无伤跑法\",\n    \"author\": \"戴剑松/郑家轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电增肌\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"久坐不伤身\",\n    \"author\": \"哈丽特・格里菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会呼吸\",\n    \"author\": \"帕特里克・麦基翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网：阿加西自传\",\n    \"author\": \"安德烈・阿加西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025626-a758c0?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当体育遇上商业\",\n    \"author\": \"乌尔里克・瓦格纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025614-d87bae?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郝鹏飞极简派健身\",\n    \"author\": \"郝鹏飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024366-198ca6?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，健身房\",\n    \"author\": \"高宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太极跑：不费力、无伤害的革命性跑步法\",\n    \"author\": \"丹尼・德雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练套装\",\n    \"author\": \"马克・瑞比拖/安迪・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你可以跑得更快\",\n    \"author\": \"徐国峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸运动系统训练（全彩图解第2版）\",\n    \"author\": \"阿诺德·G.尼尔森/尤卡・科科宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"施瓦辛格健身全书\",\n    \"author\": \"阿诺德・施瓦辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021087-b4c0c0?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准拉伸\",\n    \"author\": \"克里斯蒂安・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020916-4b8c4a?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能减脂\",\n    \"author\": \"张景琦/孟令超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹尼尔斯经典跑步训练法\",\n    \"author\": \"杰克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤身绝壁\",\n    \"author\": \"亚历克斯・汉诺尔德/大卫・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011652-90caa3?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉松终极训练指南（原书第4版）\",\n    \"author\": \"霍尔・希格登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的一代：中国的上山下乡运动1968-1980\",\n    \"author\": \"潘鸣啸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跑步圣经：我跑故我在\",\n    \"author\": \"乔治・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866\",\n    \"category\": \"运动\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维（原书第10版）\",\n    \"author\": \"布鲁克·诺埃尔·摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866\",\n    \"category\": \"批判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维工具（原书第3版）\",\n    \"author\": \"理查德·保罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006525-573ffd?p=8866\",\n    \"category\": \"批判\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林童话全集（套装共3册）\",\n    \"author\": \"格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006672-9efda3?p=8866\",\n    \"category\": \"英语读物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪晶的重量\",\n    \"author\": \"索瓦尔德・斯蒂恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513150-bd79a9?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗5：雨必将落下\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513363-ea608c?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗4：在黑暗中舞蹈\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513585-9dcc19?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蟑螂\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外出偷马\",\n    \"author\": \"佩尔・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗3：童年岛屿\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040794-82ba8e?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静\",\n    \"author\": \"艾林・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗2：恋爱中的男人\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038484-c5673e?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复仇者\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦渴\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五芒星\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032607-6ae82c?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪人\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866\",\n    \"category\": \"挪威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金：权力与财富的世界简史\",\n    \"author\": \"伯德・史蒂芬・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491481-144bc0?p=8866\",\n    \"category\": \"黄金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色的羁绊\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866\",\n    \"category\": \"黄金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：如何打造高联动团队\",\n    \"author\": \"马克・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866\",\n    \"category\": \"协同\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"修道院纪事\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032682-f9c457?p=8866\",\n    \"category\": \"葡萄牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服者：葡萄牙帝国崛起\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018390-117462?p=8866\",\n    \"category\": \"葡萄牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书（第2版）\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866\",\n    \"category\": \"债券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债券投资实战\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866\",\n    \"category\": \"债券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流沙刑\",\n    \"author\": \"莫琳・派森・吉莉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051519-fb7329?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格拉斯医生（译文经典）\",\n    \"author\": \"雅尔玛尔・瑟德尔贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042873-c12a32?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥瑟罗（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔灯（全译本）\",\n    \"author\": \"英格玛・伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊镇2\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033165-9e1f41?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色地址簿\",\n    \"author\": \"苏菲亚・伦德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032307-65c5a3?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔斯骑鹅历险记（作家榜经典文库）\",\n    \"author\": \"塞尔玛・拉格洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不太多，不太少\",\n    \"author\": \"罗拉・A.阿克斯特伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021063-bc15d6?p=8866\",\n    \"category\": \"瑞典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作的意义\",\n    \"author\": \"詹姆斯・苏兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497598-753d90?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个工作基本\",\n    \"author\": \"松浦弥太郎/野尻哲也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512118-2798e5?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效清单工作法\",\n    \"author\": \"达蒙・扎哈里亚德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卓越工作\",\n    \"author\": \"莫滕·T·汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思考\",\n    \"author\": \"迈克・费廖洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法\",\n    \"author\": \"弗朗西斯科・西里洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突管理\",\n    \"author\": \"大卫・里德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡图表工作法\",\n    \"author\": \"齐藤显一/竹内里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米巴经营\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034248-76ecaf?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法：职场问题解决篇\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12个工作的基本\",\n    \"author\": \"大久保幸夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使命必达：百分之百实现目标的行为科学管理法\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何管好自己（第五版）\",\n    \"author\": \"约翰・康特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒工作\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效整理信息\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰田一页纸极简思考法\",\n    \"author\": \"浅田卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020367-535edd?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘书工作手记\",\n    \"author\": \"像玉的石头\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017100-e77e05?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作颂歌\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016866-d1189f?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作是最好的修行\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR工作法\",\n    \"author\": \"克里斯蒂娜・沃特克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简工作Ⅰ\",\n    \"author\": \"约根・库尔兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015267-2b86bb?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请给我结果\",\n    \"author\": \"姜汝祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015060-25a31d?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度工作\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012528-0a8a94?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作DNA\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的实践（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007080-44a05a?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法图解\",\n    \"author\": \"诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866\",\n    \"category\": \"工作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇传：自由的心灵\",\n    \"author\": \"查尔斯・尼科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491400-800bfb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯大林传\",\n    \"author\": \"德米特里・安东诺维奇・沃尔科戈诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491829-e707fa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基传\",\n    \"author\": \"安德里亚斯・古斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498042-d0a3d3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国浮沉：关于拿破仑一世的私人回忆（全2册）\",\n    \"author\": \"克劳德・梅尼瓦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498120-b235b7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文：近代日本奠基人\",\n    \"author\": \"伊藤之雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498831-0dc067?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志理想主义的诞生：席勒传\",\n    \"author\": \"吕迪格尔・萨弗兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499365-050061?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛顿传\",\n    \"author\": \"詹姆斯・格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499524-4bd6cf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绯闻艺术史\",\n    \"author\": \"林微云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499971-4d8b4d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·拉格斐传\",\n    \"author\": \"洛朗・阿朗-卡龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500028-a96942?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文传记作品系列（套装共15册）\",\n    \"author\": \"斯特凡・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500337-e1be2a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利瓦尔\",\n    \"author\": \"玛丽・阿拉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500586-2ba984?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯传\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术的故事（共12册）\",\n    \"author\": \"林家治等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503403-e9d087?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄德罗与自由思考的艺术\",\n    \"author\": \"安德鲁·S.柯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506505-4ae859?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年井上靖\",\n    \"author\": \"宫崎润一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507408-d785fd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方学者眼中的东方伟人（套装共三册）\",\n    \"author\": \"迪克・威尔逊/迪克・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508434-a870e5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩田先生\",\n    \"author\": \"HOBO日刊ITOI新闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509361-e4316e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克斯·韦伯：跨越时代的人生\",\n    \"author\": \"于尔根・考伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509481-7f34ec?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传奇之家：托马斯·曼一家的故事\",\n    \"author\": \"蒂尔曼・拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509748-852c52?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雨琳琅\",\n    \"author\": \"陈新华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509841-8c539e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书合集（套装共8册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510048-990016?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索恩人物传记生而为王（全13册）\",\n    \"author\": \"汉内斯・默林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘与荣耀\",\n    \"author\": \"马寅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510381-a861bf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传：现代的发明者\",\n    \"author\": \"理查德・芒森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510540-98d20d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马名人传（全五册）\",\n    \"author\": \"普鲁塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不畏：陆克文自传\",\n    \"author\": \"陆克文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510705-549377?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文\",\n    \"author\": \"泷井一博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛顿传（修订版）\",\n    \"author\": \"迈克尔・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511131-b2fcc1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勒布朗·詹姆斯的商业帝国\",\n    \"author\": \"布赖恩・文霍斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511371-8604c1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦室：大卫·林奇传\",\n    \"author\": \"大卫・林奇/克里斯汀・麦肯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511773-8b51cb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列二共13册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511929-1ff7f2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从头开始\",\n    \"author\": \"霍华德・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512121-a7c05d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴高乐将军（全二册）\",\n    \"author\": \"朱利安・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513408-b5f76e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇：500年纪念版\",\n    \"author\": \"马汀・坎普/法比奥・斯卡莱蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513528-1ecffb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺回忆录\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513501-daa881?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过得刚好\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513618-32fba3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找卡夫卡\",\n    \"author\": \"拉德克・马利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513639-141090?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿诺德·汤因比传\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003873-4b5f8b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码女王\",\n    \"author\": \"贾森・法戈内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理查德·费曼传\",\n    \"author\": \"劳伦斯・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001806-54b61b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁豫有约：说出你的故事（共5册）\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为我自己：欧文·亚隆回忆录\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001128-9e4690?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有点意思\",\n    \"author\": \"黄渤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000483-0f32e7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕竟战功谁第一（修订典藏本）\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999745-d06b6f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知晓我姓名\",\n    \"author\": \"香奈儿・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普京：权力的逻辑\",\n    \"author\": \"胡贝特・塞佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997114-7f3bf3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一往无前\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国第一夫人回忆录\",\n    \"author\": \"塔夫脱总统夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰斐逊总统\",\n    \"author\": \"约翰・托里・莫尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎评论（套装共7册）\",\n    \"author\": \"《巴黎评论》编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995236-9e2014?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大梦无疆\",\n    \"author\": \"西蒙・佩雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国外风云人物传记精选集（全10册）\",\n    \"author\": \"太田治子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995083-774357?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡新传\",\n    \"author\": \"李一冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994948-24d8ca?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生由我\",\n    \"author\": \"梅耶・马斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基：作家与他的时代\",\n    \"author\": \"玛丽・彼得鲁塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994630-9c340a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安身立命\",\n    \"author\": \"许纪霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲鸿生命\",\n    \"author\": \"范迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994642-86e3db?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"启与魅\",\n    \"author\": \"卡森・麦卡勒斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994519-34f572?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前半生（全本）\",\n    \"author\": \"爱新觉罗・溥仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的旅程\",\n    \"author\": \"罗伯特・艾格/乔尔・洛弗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌徒恺撒\",\n    \"author\": \"马丁・耶内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏执乐观\",\n    \"author\": \"李思拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏尔泰传\",\n    \"author\": \"安德烈・莫洛亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的情报与外交生涯\",\n    \"author\": \"熊向晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅特涅：帝国与世界（全2册）\",\n    \"author\": \"沃尔弗拉姆・希曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天空无界\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁漱溟往来书信集\",\n    \"author\": \"梁培宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙正义传\",\n    \"author\": \"杉本贵司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989806-2063fb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌的故事\",\n    \"author\": \"戴维・怀斯/马克・摩西德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装的艺术\",\n    \"author\": \"本・雅格达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏珊·桑塔格全传\",\n    \"author\": \"卡尔・罗利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986275-a21ab1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身大师\",\n    \"author\": \"萨拉・卡明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后叹息\",\n    \"author\": \"路易斯・布努艾尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子的故事（全彩美绘本）\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985696-3603c8?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子的故事\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985597-1b96e0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搜历史\",\n    \"author\": \"易小荷/曲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985588-42c02a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方画家及其作品套装（全4册）\",\n    \"author\": \"王月亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是落花生的女儿\",\n    \"author\": \"许燕吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984751-7442f4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫本武藏全传（套装共5册）\",\n    \"author\": \"吉川英治/小山胜清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983713-9b788f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忏悔录（上下册）\",\n    \"author\": \"卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏世民：我的经验与教训\",\n    \"author\": \"苏世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美孚石油公司史\",\n    \"author\": \"艾达・塔贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平如美棠：我俩的故事\",\n    \"author\": \"饶平如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西太后：薇薇安·威斯特伍德\",\n    \"author\": \"薇薇安・威斯特伍德/伊恩・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054321-5d3b9d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑大帝（全2册）\",\n    \"author\": \"安德鲁・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元好问传\",\n    \"author\": \"朱东润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053739-812d98?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡：十年二十人\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱锺书交游考\",\n    \"author\": \"谢泳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053523-510bb0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物：我和父亲乔布斯\",\n    \"author\": \"丽莎・布伦南・乔布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威大战DC\",\n    \"author\": \"里德・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至暗时刻\",\n    \"author\": \"安东尼・麦卡滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052338-7e11b2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也是鲁迅的遗物：朱安传\",\n    \"author\": \"乔丽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·马克思：生平与环境\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林语堂传\",\n    \"author\": \"钱锁桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051534-d8c6fd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米塞斯评传\",\n    \"author\": \"伊斯雷尔·M·柯兹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋大传\",\n    \"author\": \"陈梧桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝多芬传：扼住命运咽喉的英雄\",\n    \"author\": \"费利克斯・胡赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051042-dc8d6b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芭比：一个娃娃风靡世界的秘密\",\n    \"author\": \"罗宾・格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见莫扎特\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050742-52e166?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖们（全译修订版）\",\n    \"author\": \"理查德・尼克松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟南山传\",\n    \"author\": \"叶依\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049332-254452?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚女王：帝国女统治者的秘密传记（全2册）\",\n    \"author\": \"茱莉娅・贝尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我心归处是敦煌\",\n    \"author\": \"樊锦诗口述/顾春芳撰写\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实科比\",\n    \"author\": \"罗兰・拉赞比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048894-1929bd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾志所向\",\n    \"author\": \"孙中山/许仕廉编著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金家族的最后一个王爷\",\n    \"author\": \"朱文楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创始人手记\",\n    \"author\": \"季琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界皆营销\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫的人生哲学\",\n    \"author\": \"北康利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"居里夫人自传（果麦经典）\",\n    \"author\": \"玛丽・居里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046320-31d73f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永久记录\",\n    \"author\": \"爱德华・斯诺登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046221-17fc18?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"整个巴黎属于我\",\n    \"author\": \"莱斯利·M.M.布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事的开始\",\n    \"author\": \"幾米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毫无保留\",\n    \"author\": \"小比尔・马里奥特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045708-dae6d9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同的生命线\",\n    \"author\": \"约翰・苏尔斯顿/乔治娜・费里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜尚传（第二版）\",\n    \"author\": \"王瑞芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044862-f93665?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国人物传记（全4册）\",\n    \"author\": \"罗志田/娄岙菲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044847-db4f81?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一道曙光下的真实\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银元时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦传（全2册）\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪五大传记书系（全5册）\",\n    \"author\": \"吴晗/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044160-869a78?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马其顿的亚历山大\",\n    \"author\": \"彼得・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林斯潘传\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代的她们\",\n    \"author\": \"杰奎琳・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李白传\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞纳河畔的一把椅子\",\n    \"author\": \"阿明・马洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格调崔永元\",\n    \"author\": \"白安娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042573-8c69e3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安徒生自传\",\n    \"author\": \"安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042621-63bfda?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大脑\",\n    \"author\": \"苏珊娜・卡哈兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042210-b00ec5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝托尔特·布莱希特\",\n    \"author\": \"雅恩・克诺普夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040365-b4e7a4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的一生略小于美国现代史\",\n    \"author\": \"凯瑟琳・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039954-7c2c91?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索罗斯传（白金珍藏版）\",\n    \"author\": \"罗伯特・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆里尼奥传：葡萄牙制造（修订版）\",\n    \"author\": \"路易斯・洛伦索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗2：恋爱中的男人\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038484-c5673e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗1：父亲的葬礼\",\n    \"author\": \"卡尔・奥韦・克瑙斯高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037839-6b7aa9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Benjamin Franklin\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036897-1a5d9e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Believe Me\",\n    \"author\": \"Eddie Izzard\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037281-40eeb7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力的教训\",\n    \"author\": \"弗朗索瓦・奥朗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"T.S.艾略特传\",\n    \"author\": \"林德尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Facebook诞生记\",\n    \"author\": \"本・麦兹里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035721-c40b04?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪传\",\n    \"author\": \"赫伯特・R.洛特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正大传\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035448-d271fe?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师书系（全6册）\",\n    \"author\": \"梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是风口\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未了中国缘\",\n    \"author\": \"约翰・帕顿・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034959-e448e1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾《传记文学》珍藏系列（全15册）\",\n    \"author\": \"梁实秋/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Becoming\",\n    \"author\": \"Michelle Obama\",\n    \"link\": \"链接未找到\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第1卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔灯（全译本）\",\n    \"author\": \"英格玛・伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦勃朗1642\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧太后\",\n    \"author\": \"菲利普・威廉姆斯・萨金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周作人自编集\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的访谈系列（套装共6册）\",\n    \"author\": \"欧内斯特・米勒尔・海明威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大儒：王阳明\",\n    \"author\": \"周明河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国才子（套装3本）\",\n    \"author\": \"李克/沈燕/李平/孙琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033495-4c7802?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找寻真实的蒋介石（套装共2册）\",\n    \"author\": \"杨天石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033129-0da7f4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猛兽总是独行：鲁迅与他的朋友圈\",\n    \"author\": \"孙玉祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033105-83d7cd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常年代\",\n    \"author\": \"多莉丝・基恩斯・古德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列一共8册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化：顶级企业家自述40年成长心法\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋经国传\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安南回忆录\",\n    \"author\": \"科菲・安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032844-1da8c4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆拿破仑\",\n    \"author\": \"布里昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恺撒：巨人的一生\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间鲁迅\",\n    \"author\": \"林贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒切尔夫人\",\n    \"author\": \"乔纳森・艾特肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032679-f97385?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥古斯都：从革命者到皇帝\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊莎贝拉\",\n    \"author\": \"克斯汀・唐尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯的劳伦斯\",\n    \"author\": \"斯科特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年变革者\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊丽莎白女王\",\n    \"author\": \"艾莉森・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒂姆·库克传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德皇威廉二世回忆录\",\n    \"author\": \"威廉二世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一帝秦始皇（上下全2册）\",\n    \"author\": \"王立群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐悲鸿\",\n    \"author\": \"杨先让\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031851-179b0e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国清流系列（全七册）\",\n    \"author\": \"汪兆骞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031422-474dd4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往权力之路：叶卡捷琳娜大帝\",\n    \"author\": \"罗伯特·K·迈锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来后书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱彼迎传\",\n    \"author\": \"利・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邬达克\",\n    \"author\": \"卢卡・彭切里尼/尤利娅・切伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴维斯王朝\",\n    \"author\": \"约翰・罗斯柴尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031242-bfcf62?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他从凤凰来：沈从文传\",\n    \"author\": \"金介甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030948-655c86?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传\",\n    \"author\": \"哈米什・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明评点曾国藩家书\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030825-08c459?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子大历史\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平衡的智慧\",\n    \"author\": \"帕特・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030681-682c4a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿登纳回忆录（套装共4册）\",\n    \"author\": \"康拉德・阿登纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我曾走在崩溃的边缘\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非传\",\n    \"author\": \"孙力科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔的正义\",\n    \"author\": \"琳达・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋朝政坛319年系列丛书\",\n    \"author\": \"江永红/周宗奇/毕宝魁/郭晓晔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030120-a49339?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗\",\n    \"author\": \"杰克・威泽弗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030057-ad67d7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家书（果麦经典）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030027-90dc35?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险地活着\",\n    \"author\": \"汉斯・舒茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊本·赫勒敦\",\n    \"author\": \"罗伯特・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李小龙：不朽的东方传奇（图文版）\",\n    \"author\": \"郑杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029616-f92b6d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向前一步\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林自传（译文名著精选）\",\n    \"author\": \"本杰明・富兰克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029466-e938e1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜迪奥拉：胜利的另一种道路\",\n    \"author\": \"吉列姆・巴拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢创之旅：科勒百年传奇\",\n    \"author\": \"《敢创之旅》编写组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029376-1a0ae7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑传（果麦经典）\",\n    \"author\": \"埃米尔・路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029262-51cdbd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊万卡·特朗普\",\n    \"author\": \"伊万卡・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚历克斯·弗格森：我的自传\",\n    \"author\": \"亚历克斯・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029226-e94552?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲人奥里翁\",\n    \"author\": \"龚祥瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028482-369eaa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林肯传\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028323-24d764?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱迪生：创新之源与商业成就的秘密\",\n    \"author\": \"里昂纳多・迪格拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028344-204c61?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威之父斯坦·李\",\n    \"author\": \"鲍勃・巴彻勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028266-25f260?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大学与大师\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028077-546989?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特立斯非虚构经典著作\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027792-68778f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识分子\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027738-44fa7b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香农传\",\n    \"author\": \"吉米・索尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗素传（全2册）\",\n    \"author\": \"瑞・蒙克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027564-a1949f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种走法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027432-29294c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗与今日世界之形成\",\n    \"author\": \"杰克・威泽弗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027153-72f4c4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她是天使误入人间：奥黛丽·赫本传\",\n    \"author\": \"布可小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027087-9bc2f6?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健\",\n    \"author\": \"先燕云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026892-ff2ed7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健传\",\n    \"author\": \"周桦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲍勃·迪伦：诗人之歌\",\n    \"author\": \"让-多米尼克·布里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之轮\",\n    \"author\": \"伊丽莎白・库伯勒-罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐队女孩\",\n    \"author\": \"金・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网：阿加西自传\",\n    \"author\": \"安德烈・阿加西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025626-a758c0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中2·再认识李小龙\",\n    \"author\": \"约翰・里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025305-200ba5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中7·幸会！苏东坡\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为\",\n    \"author\": \"米歇尔・罗宾逊・奥巴马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025125-c91f09?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生真相\",\n    \"author\": \"彼得・斯莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025128-9ada14?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯南日记\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姚明传\",\n    \"author\": \"杨毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025023-0d966b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩传\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024924-c79780?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断头王后：玛丽·安托瓦内特传\",\n    \"author\": \"斯・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024828-0ecc23?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷震传\",\n    \"author\": \"范泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的儒家\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家、水手、士兵、间谍\",\n    \"author\": \"尼古拉斯・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗斯玛丽：肯尼迪家族隐藏的女儿\",\n    \"author\": \"凯特・克里福・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024627-9a0631?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂的真实人生\",\n    \"author\": \"安娜・马丁内蒂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024306-ad80e4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋徽宗\",\n    \"author\": \"伊沛霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我钻进了金字塔\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023844-04f9b7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己对话：曼德拉自传\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023478-a73738?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"IBM帝国缔造者：小沃森自传\",\n    \"author\": \"小托马斯・约翰・沃森/彼得・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才的编辑\",\n    \"author\": \"司各特・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023316-2d09bb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由之魂\",\n    \"author\": \"刘台平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不得贪胜\",\n    \"author\": \"李昌镐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023190-b21759?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果首席设计师：乔纳森传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃兹传：与苹果一起疯狂\",\n    \"author\": \"吉娜・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023163-c9e4da?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟爱华传：洋医生的中国心\",\n    \"author\": \"约翰・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强人治国：普京传\",\n    \"author\": \"安格斯・罗克斯伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023151-211707?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咏远有李\",\n    \"author\": \"李咏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023193-112edb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金庸传（修订版）\",\n    \"author\": \"傅国涌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023109-66a0ea?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的早年岁月\",\n    \"author\": \"苏尔坦・本・穆罕默德・卡西米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖：一项心理史学研究\",\n    \"author\": \"查尔斯・B．斯特罗齐尔/丹尼尔・奥弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个定理的诞生\",\n    \"author\": \"塞德里克・维拉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022608-e6a289?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运：文在寅自传\",\n    \"author\": \"文在寅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022554-9440d1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李嘉诚全传\",\n    \"author\": \"陈美华/辛磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022467-d6cebc?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年斯大林\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022413-7e0d2c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子传\",\n    \"author\": \"张远山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022350-a02974?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Short Nights of the Shadow Catcher\",\n    \"author\": \"Egan, Timothy\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022299-6675d1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息，折腾不止\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"列奥纳多·达·芬奇传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明2：四句话读懂阳明心学\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Leonardo da Vinci\",\n    \"author\": \"Walter Isaacson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021798-d76fb3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国梦\",\n    \"author\": \"斯塔兹・特克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚤满华袍：张爱玲后半生\",\n    \"author\": \"伊北\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020742-af9458?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卢作孚套装（全三册）\",\n    \"author\": \"鲁/张湛昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020706-3dfc66?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和国科学拓荒者传记（套装共9册）\",\n    \"author\": \"许鹿希等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020856-bcb915?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉密尔顿传\",\n    \"author\": \"罗恩・彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020625-ed77e3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"默克尔传：德国总理安格拉·默克尔和她的权力世界\",\n    \"author\": \"斯蒂凡・柯内琉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020523-ee7487?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我生有涯愿无尽\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020394-9d305d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我身在历史何处\",\n    \"author\": \"埃米尔・库斯图里卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019992-bd477d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个瑜伽行者的自传\",\n    \"author\": \"帕拉宏撒・尤迦南达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019968-e117f9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力之路：林登·约翰逊传\",\n    \"author\": \"罗伯特・A.卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先知三部曲（套装共三册）\",\n    \"author\": \"伊萨克・多伊彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019818-fab788?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张作霖大传\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019716-3c1ec2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格经典作品集\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019506-ec53cc?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Open\",\n    \"author\": \"Andre Agassi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019482-94cced?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天5：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019326-871ffb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉重的皇冠\",\n    \"author\": \"克里斯托弗・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的创业史\",\n    \"author\": \"方兴东/刘强东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019182-1f9b4c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不要你死于一事无成\",\n    \"author\": \"法齐娅・库菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辣道至简：老干妈陶华碧的经营智慧\",\n    \"author\": \"李琦晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019074-0c0d6b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的兴亡\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滚雪球：巴菲特和他的财富人生（套装共2册）\",\n    \"author\": \"艾丽斯・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴敬琏传\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018321-53a373?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"My Brief History\",\n    \"author\": \"Stephen Hawking\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018171-0525fe?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋介石后传\",\n    \"author\": \"师永刚/方旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017532-586f77?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赵匡胤：乱世枭雄开启文治盛世\",\n    \"author\": \"陈红晓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017484-9dba70?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘邦：汉民族文化的伟大开拓者\",\n    \"author\": \"洪亮亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017478-cb43ff?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠传\",\n    \"author\": \"贝尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017298-68c107?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠：帝国最后的“鹰派”\",\n    \"author\": \"徐志频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017196-e60417?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“雅众·影事”之日本导演系列（套装共4册）\",\n    \"author\": \"今敏/大岛渚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017130-8dc1b4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄河青山：黄仁宇回忆录\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016971-0cdd42?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着为了讲述\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016920-233354?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致所有疯狂的家伙\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘人偶记\",\n    \"author\": \"徐国琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016278-c6fdd0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚕丝：钱学森传\",\n    \"author\": \"张纯如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015879-9f8145?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章传\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的局座：悄悄话\",\n    \"author\": \"张召忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李世民权力的逻辑（全4册）\",\n    \"author\": \"陈唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015375-ee641f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁思成、林徽因与我\",\n    \"author\": \"林洙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014934-8a35b4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩：唐浩明钦定版\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014871-07622b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林自传\",\n    \"author\": \"富兰克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014847-bd9379?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆者：周鸿祎自传\",\n    \"author\": \"周鸿祎/范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014796-d33909?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个广告人的自白\",\n    \"author\": \"大卫・奥格威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孵化皮克斯\",\n    \"author\": \"劳伦斯・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠的正面与背面\",\n    \"author\": \"徐志频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014202-e625fe?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高传（全三部）\",\n    \"author\": \"史蒂文・奈菲/格雷戈里・怀特・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪与傅斯年（全新修订版）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大道当然\",\n    \"author\": \"王石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俾斯麦传\",\n    \"author\": \"艾密尔・鲁特维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013704-70c38a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别逗了，费曼先生\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11枚戒指禅：师菲尔·杰克逊自传\",\n    \"author\": \"菲尔・杰克逊/休・迪里汉提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013530-adcbea?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非偶然\",\n    \"author\": \"埃利奥特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海滩大亨黄金荣\",\n    \"author\": \"雅瑟/海华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012954-39abe5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国灯笼\",\n    \"author\": \"格蕾丝・汤普森・西登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢问路在何方\",\n    \"author\": \"杨洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012768-569107?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗兰克尔自传：活出生命的意义\",\n    \"author\": \"维克多・弗兰克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012507-1ce2f9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特传（纪念版）\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在绝望中寻找希望\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩托日记\",\n    \"author\": \"埃内斯托・切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011676-e33838?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣格自传：回忆・梦・思考\",\n    \"author\": \"卡尔・古斯塔夫・荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011127-2e5b54?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道金斯传（全2册）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010911-d31838?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张学良的政治生涯\",\n    \"author\": \"傅虹霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰臣秀吉（套装共6册）\",\n    \"author\": \"吉川英治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010482-f30192?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岳飞传\",\n    \"author\": \"邓广铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010176-918d2c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曼德施塔姆夫人回忆录\",\n    \"author\": \"娜杰日达・曼德施塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009744-9ce9e3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人心至上：杜月笙\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米尔·汗：我行我素\",\n    \"author\": \"克里斯蒂娜・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009441-d75778?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫漫自由路\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009420-a23ae5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿桑奇自传：不能不说的秘密\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009390-bd0480?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾伦・图灵传\",\n    \"author\": \"安德鲁・霍奇斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009402-9c2f8a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宽客人生：从物理学家到数量金融大师的传奇\",\n    \"author\": \"伊曼纽尔・德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仁者无敌：林肯的政治天才\",\n    \"author\": \"尤以丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009171-407c48?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的烤火者：杨绛传\",\n    \"author\": \"慕容素衣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009006-32c036?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章时代（1870-1895）\",\n    \"author\": \"王鼎杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008859-c5c5f2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"為了活下去：脫北女孩朴研美\",\n    \"author\": \"朴研美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008844-4ce616?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆小屋\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008715-f6ea28?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甘地自传\",\n    \"author\": \"甘地\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008160-0e39e0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天正传\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在火星上退休：伊隆・马斯克传\",\n    \"author\": \"亚当・杰佛逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个美国记者眼中的真实民国\",\n    \"author\": \"哈雷特・阿班\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希拉里传（纪念版）\",\n    \"author\": \"卡尔・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007839-6bdb2b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：从乞丐到元首\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还年轻，我还可以重新出发\",\n    \"author\": \"唐骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大历史的角度读蒋介石日记\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭德怀自传\",\n    \"author\": \"彭德怀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师细说中国历史（套装共12册）\",\n    \"author\": \"吕思勉/吴晗/傅斯年等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈大传\",\n    \"author\": \"王宏甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人当国：慈禧太后与晚清五十年\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰盛人生：安利创始人理查・狄维士自传\",\n    \"author\": \"理查・狄维士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双脑记：认知神经科学之父加扎尼加自传\",\n    \"author\": \"迈克尔・加扎尼加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里传：这是阿里巴巴的世界\",\n    \"author\": \"波特・埃里斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产狂人许家印\",\n    \"author\": \"魏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡斯特罗传\",\n    \"author\": \"克劳迪娅・福丽娅蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007353-db4a05?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库克：苹果的后乔布斯时代\",\n    \"author\": \"冷湖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一战神：韩信\",\n    \"author\": \"姜狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007233-0e5888?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南渡北归（增订版）套装\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红圈：海豹突击队前狙击手总教练回忆录\",\n    \"author\": \"布兰登・韦伯/约翰・大卫・曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从20万到30亿：特朗普自传\",\n    \"author\": \"唐纳德・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛并快乐着\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明晚清三部曲\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行者：一念一生\",\n    \"author\": \"六小龄童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007038-8367b2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷军：创业没有时间表\",\n    \"author\": \"胡以贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆自传\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独自上场\",\n    \"author\": \"李娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三大名臣发迹史（套装共6册）\",\n    \"author\": \"汪衍振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006798-f5d92b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出轨的盛唐：武后（套装共3册）\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006789-16cd14?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宗庆后：万有引力原理\",\n    \"author\": \"迟宇宙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨人的成圣之道：曾国藩\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记\",\n    \"author\": \"保罗·奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上半场\",\n    \"author\": \"刘建宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006687-7d3e9b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清相国\",\n    \"author\": \"王跃文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻觉师\",\n    \"author\": \"悲伤感应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006555-2ab14e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭大将军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艽野尘梦\",\n    \"author\": \"陈渠珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本·拉登传\",\n    \"author\": \"简·萨森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006387-47e6ef?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年袁家\",\n    \"author\": \"王碧蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝王师：张居正\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006345-151672?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝王师：刘伯温\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006339-c15817?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗：意志征服世界\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪的最后二十年\",\n    \"author\": \"陆键东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006321-90dcb0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣氏百年：中国商业第一家族\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红顶商人胡雪岩珍藏版大全集（套装共6册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个皇帝：袁世凯传\",\n    \"author\": \"陶菊隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005958-558d42?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿布鞋的马云：决定阿里巴巴生死的27个节点\",\n    \"author\": \"王利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五大传奇权谋人物传记（套装共5册）\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大谋小计五十年：诸葛亮传\",\n    \"author\": \"若虚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005889-9b8514?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃隆·马斯克传：用特斯拉撬动世界\",\n    \"author\": \"邱恒明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005745-0f69ba?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史玉柱自述：我的营销心得\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战神粟裕\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧全传\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国总理段祺瑞\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个曾国藩\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个袁世凯\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个李鸿章\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着就为征服世界\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝一哥王阳明\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005256-ea4e88?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因你不同：李开复自传\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005244-a5ac8a?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大太监李莲英全传\",\n    \"author\": \"王牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲南怀瑾\",\n    \"author\": \"南一鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005178-1fd0b7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米内幕\",\n    \"author\": \"吴帝聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋介石与现代中国\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005121-9824a2?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂夫·乔布斯传\",\n    \"author\": \"沃尔特·艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的正面与侧面\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷钢铁侠\",\n    \"author\": \"阿什利・万斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德川家康大全集\",\n    \"author\": \"山冈庄八\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004860-5761a5?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的汪精卫\",\n    \"author\": \"林思云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡雪岩（全三册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国误会了袁世凯\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866\",\n    \"category\": \"传记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师3\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的逻辑与艺术\",\n    \"author\": \"陈侃迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的真相\",\n    \"author\": \"极地之鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（下）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513720-6f59ab?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭交易（原书第3版）\",\n    \"author\": \"约翰·F.卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004470-5ede53?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资交易心理分析（典藏版）\",\n    \"author\": \"布雷特 N. 斯蒂恩博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易之路\",\n    \"author\": \"陈凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员\",\n    \"author\": \"杰克D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进我的交易室\",\n    \"author\": \"亚历山大・艾尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭交易（原书第2版）\",\n    \"author\": \"约翰・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易冠军\",\n    \"author\": \"马丁・舒华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个农民的亿万传奇\",\n    \"author\": \"傅海棠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年一梦（修订版）\",\n    \"author\": \"青泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特波浪理论：研判股市底部与顶部的有效工具\",\n    \"author\": \"拉尔夫·N·艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新金融怪杰\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易（原书第2版）\",\n    \"author\": \"艾琳・奥尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我如何从股市赚了200万（珍藏版）\",\n    \"author\": \"尼古拉斯・达瓦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生Ⅱ\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背离技术分析\",\n    \"author\": \"江南小隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴维·朗德里波段交易法则\",\n    \"author\": \"戴维・朗德里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037992-dbffa0?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员（典藏版）\",\n    \"author\": \"杰克 D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券混沌操作法（典藏版）\",\n    \"author\": \"比尔・威廉斯/贾丝廷・格雷戈里-威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势戒律\",\n    \"author\": \"柯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势交易\",\n    \"author\": \"安德烈亚斯 F. 克列诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗池\",\n    \"author\": \"帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密交易人的圣杯 &#8211; 卡玛利拉方程\",\n    \"author\": \"何塞・曼纽尔・莫雷拉・巴蒂斯塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018888-a3598c?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Momentum Masters\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017724-0cf662?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威科夫操盘法\",\n    \"author\": \"孟洪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开量化投资的黑箱（原书第2版）\",\n    \"author\": \"里什・纳兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易的10堂必修课\",\n    \"author\": \"贾里德・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟交易法则（珍藏版）\",\n    \"author\": \"柯蒂斯・费思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街幽灵\",\n    \"author\": \"阿瑟・辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"套利的常识\",\n    \"author\": \"章文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009060-a4097b?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克米伦谈期权\",\n    \"author\": \"劳伦斯G.麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金奇才\",\n    \"author\": \"杰克·施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸奔的钱\",\n    \"author\": \"沈良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短线交易秘诀（原书第2版）\",\n    \"author\": \"拉里·威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生（珍藏版）\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866\",\n    \"category\": \"交易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866\",\n    \"category\": \"简史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化简史（套装共4册）\",\n    \"author\": \"王立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866\",\n    \"category\": \"简史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简美国史\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866\",\n    \"category\": \"简史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唤醒创作力\",\n    \"author\": \"朱莉娅・卡梅伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命向前\",\n    \"author\": \"迈克尔・海厄特/丹尼尔・哈卡维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗压力：逆境重生法则\",\n    \"author\": \"久世浩司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020541-463985?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形人格\",\n    \"author\": \"海伦・麦格拉斯/哈泽尔・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020031-123343?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微习惯\",\n    \"author\": \"斯蒂芬・盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向管理\",\n    \"author\": \"埃米尼亚・伊贝拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007590-ce7cce?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清单革命\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866\",\n    \"category\": \"自我\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的本质（修订版）\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866\",\n    \"category\": \"贫穷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断裂的阶梯\",\n    \"author\": \"基思・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866\",\n    \"category\": \"贫穷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国落日：晚清大变局\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018723-5c346e?p=8866\",\n    \"category\": \"晚期\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失稳的帝国\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866\",\n    \"category\": \"晚期\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天浴\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011631-d26689?p=8866\",\n    \"category\": \"小说文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一弦琴\",\n    \"author\": \"宫尾登美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011628-8b7d59?p=8866\",\n    \"category\": \"小说文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天上再见\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010554-368938?p=8866\",\n    \"category\": \"小说文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时装（牛津通识读本）\",\n    \"author\": \"丽贝卡・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001443-1e6b5d?p=8866\",\n    \"category\": \"服装\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与神对话（全五卷）\",\n    \"author\": \"尼尔・唐纳德・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唤醒创作力\",\n    \"author\": \"朱莉娅・卡梅伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶人传\",\n    \"author\": \"约翰・班扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜加油站遇见苏格拉底\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无量之网\",\n    \"author\": \"格里格．布莱登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意识光谱\",\n    \"author\": \"肯・威尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866\",\n    \"category\": \"灵修\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油的时代\",\n    \"author\": \"王能全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866\",\n    \"category\": \"能源\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙特公司\",\n    \"author\": \"埃伦·R.沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866\",\n    \"category\": \"能源\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逢考必过\",\n    \"author\": \"布里特・本尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491946-02547b?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆宫殿\",\n    \"author\": \"石伟华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍学校\",\n    \"author\": \"丹尼斯・布金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000366-6508f7?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效记忆（原书第2版）\",\n    \"author\": \"肯尼思・希格比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991930-4a8ea6?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提高记忆的100种方法\",\n    \"author\": \"王小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985825-3dd88d?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是记性差，只是没找对方法\",\n    \"author\": \"池田义博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆\",\n    \"author\": \"卢龙斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身失忆人\",\n    \"author\": \"卢克・迪特里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024192-0076c9?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆魔法师\",\n    \"author\": \"袁文魁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022029-89926d?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何记忆\",\n    \"author\": \"罗恩・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020949-e41027?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"52周记忆魔法实战手册\",\n    \"author\": \"多米尼克・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004722-bce77e?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最想要的记忆魔法书\",\n    \"author\": \"多米尼克・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004725-2e954b?p=8866\",\n    \"category\": \"记忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑鄙的圣人：曹操（套装共10册）\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866\",\n    \"category\": \"曹操\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佩拉宫的午夜\",\n    \"author\": \"查尔斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498822-cf18fd?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国之衰\",\n    \"author\": \"王三义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046941-f63985?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔三城记\",\n    \"author\": \"贝塔妮・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔\",\n    \"author\": \"埃布鲁・宝雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯曼帝国六百年\",\n    \"author\": \"帕特里克・贝尔福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023592-246a21?p=8866\",\n    \"category\": \"土耳其\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的自我\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500376-01a4ec?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样用脑不会累\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑大脑回路\",\n    \"author\": \"亚历克斯・科布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052773-076a3d?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑训练手册\",\n    \"author\": \"塔拉・斯瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051024-e3c24d?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉心理学\",\n    \"author\": \"博・洛托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046674-506c48?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触感引擎\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042108-97942a?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜脑：在睡眠中自动学习的秘密\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笛卡尔的错误\",\n    \"author\": \"安东尼奥・达马西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018066-8ad3a0?p=8866\",\n    \"category\": \"脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED思想的力量系列（套装共11册）\",\n    \"author\": \"奇普・基德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012561-cc2ad1?p=8866\",\n    \"category\": \"系列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，西藏！\",\n    \"author\": \"卡布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496611-f0aac2?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学履途\",\n    \"author\": \"纽约时报主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985852-f9ca35?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘境\",\n    \"author\": \"乔舒亚・福尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多瑙河之旅\",\n    \"author\": \"克劳迪欧・马格里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民发呆的澳洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站，西藏\",\n    \"author\": \"山小\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徒步中国\",\n    \"author\": \"雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009309-befe4d?p=8866\",\n    \"category\": \"旅游\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难一日：海豹六队击毙本・拉登行动亲历\",\n    \"author\": \"马克・欧文/凯文・莫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866\",\n    \"category\": \"本拉登\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反溺爱\",\n    \"author\": \"罗恩・利伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866\",\n    \"category\": \"财商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20堂商业思维进阶课\",\n    \"author\": \"环球人物新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866\",\n    \"category\": \"财商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱意识\",\n    \"author\": \"沈诱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866\",\n    \"category\": \"财商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"延禧攻略\",\n    \"author\": \"周末\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028005-0b5b91?p=8866\",\n    \"category\": \"宫斗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离凰（套装共3册）\",\n    \"author\": \"猗兰霓裳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017595-0449e5?p=8866\",\n    \"category\": \"宫斗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我用古典的方式爱过你\",\n    \"author\": \"艾米莉・狄金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033786-700cbe?p=8866\",\n    \"category\": \"狄金森\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝶变：澳门博彩业田野叙事\",\n    \"author\": \"刘昭瑞/霍志钊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866\",\n    \"category\": \"澳门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳门往事之孤注一掷\",\n    \"author\": \"左四右五\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023019-0e273f?p=8866\",\n    \"category\": \"澳门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳门史1557-1999\",\n    \"author\": \"杰弗里・冈恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019521-94c448?p=8866\",\n    \"category\": \"澳门\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡新传\",\n    \"author\": \"李一冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994948-24d8ca?p=8866\",\n    \"category\": \"苏轼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词集（词系列）\",\n    \"author\": \"苏轼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866\",\n    \"category\": \"苏轼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛极简中国史\",\n    \"author\": \"阿尔伯特・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015678-11afee?p=8866\",\n    \"category\": \"哈佛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在哈佛的最后一堂课\",\n    \"author\": \"艾瑞克・赛诺威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866\",\n    \"category\": \"哈佛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：私募风云\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034311-81e387?p=8866\",\n    \"category\": \"私募\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：一个影子私募基金经理的自白\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033699-597e93?p=8866\",\n    \"category\": \"私募\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读私募股权基金\",\n    \"author\": \"周炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866\",\n    \"category\": \"私募\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之王\",\n    \"author\": \"戴维・凯里/约翰・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005829-d05ccb?p=8866\",\n    \"category\": \"私募\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午7：我们的生活\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052818-d04d83?p=8866\",\n    \"category\": \"非虚构\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"To Be a Machine\",\n    \"author\": \"Mark O'Connell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027078-09d6c7?p=8866\",\n    \"category\": \"非虚构\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘上之夜\",\n    \"author\": \"宫内悠介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499317-6f647b?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼灭之刃（第三部：卷16-卷23）\",\n    \"author\": \"吾峠呼世晴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995521-6d41fc?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全7册）\",\n    \"author\": \"伊万谢尔盖耶维奇・屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说4）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三口棺材\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031353-c23149?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星尘\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022449-2e132d?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜阳（太宰治作品精选集）\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866\",\n    \"category\": \"小时\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖丛谈（注音注释插图本）\",\n    \"author\": \"连阔如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984292-077343?p=8866\",\n    \"category\": \"江湖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866\",\n    \"category\": \"江湖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你坏\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022809-a0e444?p=8866\",\n    \"category\": \"江湖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸血鬼之女\",\n    \"author\": \"阿曼达・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028350-88de58?p=8866\",\n    \"category\": \"吸血鬼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸血鬼王系列（套装共3册）\",\n    \"author\": \"J.R.沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017319-773723?p=8866\",\n    \"category\": \"吸血鬼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平杂说\",\n    \"author\": \"潘旭澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之痒\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之秋\",\n    \"author\": \"裴士锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015171-03bda3?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失稳的帝国\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1856：纠结的大清、天国与列强\",\n    \"author\": \"陶短房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极乐诱惑：太平天国的兴亡\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866\",\n    \"category\": \"太平天国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异详注新评\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030834-021d30?p=8866\",\n    \"category\": \"聊斋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录2：长安鬼迹\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866\",\n    \"category\": \"聊斋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"条条大路通书法\",\n    \"author\": \"寇克让\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987247-df4df8?p=8866\",\n    \"category\": \"书法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永字八法\",\n    \"author\": \"周汝昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053631-407cc1?p=8866\",\n    \"category\": \"书法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动的人生整理魔法2\",\n    \"author\": \"近藤麻理惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866\",\n    \"category\": \"整理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10分钟扫除术\",\n    \"author\": \"贝基・拉平竺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036390-b0f5e3?p=8866\",\n    \"category\": \"整理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没时间休息的休息法\",\n    \"author\": \"荻野淳也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510219-79ad9b?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断舍离（全3册）\",\n    \"author\": \"山下英子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510945-54d643?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少有人走的路（1-8全套）\",\n    \"author\": \"斯科特・派克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000219-cda644?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"差异优势\",\n    \"author\": \"约翰·C. 马克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是失败，只是差一点成功\",\n    \"author\": \"萨拉・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受益一生的六本书（套装六册）\",\n    \"author\": \"鬼谷子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技巧：如何用一年时间获得十年的经验\",\n    \"author\": \"郝培强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人不可以穷\",\n    \"author\": \"正经婶儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对自控\",\n    \"author\": \"瑞安・霍利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020094-358288?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功，动机与目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在绝望中寻找希望\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意学习\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力法则：用一年时间积累一生财富（套装共3册）\",\n    \"author\": \"拿破仑・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷军：创业没有时间表\",\n    \"author\": \"胡以贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷禁书\",\n    \"author\": \"查尔斯・哈尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的真谛\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃隆·马斯克传：用特斯拉撬动世界\",\n    \"author\": \"邱恒明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005745-0f69ba?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米内幕\",\n    \"author\": \"吴帝聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866\",\n    \"category\": \"成功\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普京：权力的逻辑\",\n    \"author\": \"胡贝特・塞佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997114-7f3bf3?p=8866\",\n    \"category\": \"普京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强人治国：普京传\",\n    \"author\": \"安格斯・罗克斯伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023151-211707?p=8866\",\n    \"category\": \"普京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普京政治\",\n    \"author\": \"李鸿谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009723-3b1f21?p=8866\",\n    \"category\": \"普京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：让所有事情都能正确入手\",\n    \"author\": \"凯茜・拉舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866\",\n    \"category\": \"学习方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的升级\",\n    \"author\": \"约翰・库奇/贾森・汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866\",\n    \"category\": \"学习方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民族的重建\",\n    \"author\": \"蒂莫西・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511398-d8e38f?p=8866\",\n    \"category\": \"东欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客居己乡\",\n    \"author\": \"哲尔吉・康拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866\",\n    \"category\": \"东欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军骑士（名著名译丛书）\",\n    \"author\": \"亨利克・显克维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034416-c53e79?p=8866\",\n    \"category\": \"东欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回访历史\",\n    \"author\": \"伊娃・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023670-9aac87?p=8866\",\n    \"category\": \"东欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文明史（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866\",\n    \"category\": \"文明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生如夏花（作家榜经典文库）\",\n    \"author\": \"拉宾德拉纳特・泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866\",\n    \"category\": \"泰戈尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有你，什么都不甜蜜\",\n    \"author\": \"约恩・卡尔曼・斯特凡松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009612-883618?p=8866\",\n    \"category\": \"冰岛\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的商学课\",\n    \"author\": \"路骋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866\",\n    \"category\": \"MBA\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30天精读MBA（套装共3册）\",\n    \"author\": \"科林・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866\",\n    \"category\": \"MBA\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"MBA十日读（第四版）\",\n    \"author\": \"史蒂文・西尔比格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866\",\n    \"category\": \"MBA\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我心归处是敦煌\",\n    \"author\": \"樊锦诗口述/顾春芳撰写\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866\",\n    \"category\": \"自述\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁血蒙元\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋革新\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023322-d132ff?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石变法\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023325-383dbd?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风流南宋\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品人录\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天中华史：先秦到隋唐\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008340-6d454f?p=8866\",\n    \"category\": \"易中天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的科学哲学\",\n    \"author\": \"杰弗里・戈勒姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866\",\n    \"category\": \"世界观\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从头开始\",\n    \"author\": \"霍华德・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512121-a7c05d?p=8866\",\n    \"category\": \"星巴克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克要买大杯咖啡\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866\",\n    \"category\": \"星巴克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克遇见德鲁克\",\n    \"author\": \"李麦可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011139-8f0e63?p=8866\",\n    \"category\": \"星巴克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋南北朝简史\",\n    \"author\": \"劳榦先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990064-033d75?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋之际的政治权力与家族网络\",\n    \"author\": \"仇鹿鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989743-9081ea?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人物志（全本全注全译）\",\n    \"author\": \"刘劭/梁满仓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬崖边的名士\",\n    \"author\": \"大生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035499-d66334?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后三国战争史\",\n    \"author\": \"陈峰韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地裂三百年（上）\",\n    \"author\": \"覃仕勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016053-8fc9ae?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地裂三百年（下）\",\n    \"author\": \"覃仕勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016044-4b2a48?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世家的天下（全3册）\",\n    \"author\": \"潘彦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009249-56da80?p=8866\",\n    \"category\": \"魏晋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社百科通识文库（世界万象大套装共114本）\",\n    \"author\": \"伏尔泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502542-168165?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫兽谱\",\n    \"author\": \"小海/夏雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫鸟谱\",\n    \"author\": \"小海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990010-138e10?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊林经典科普小丛书（套装4册）\",\n    \"author\": \"伊林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985759-492e78?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然万物科普百科（套装共2册）\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航船\",\n    \"author\": \"张岱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希利尔儿童世界地理\",\n    \"author\": \"希利尔/休伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国儿科学会育儿百科（第6版）\",\n    \"author\": \"斯蒂文・谢尔弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华传统文化大百科套装50册\",\n    \"author\": \"刘心莲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008472-a35cc3?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定本育儿百科\",\n    \"author\": \"松田道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866\",\n    \"category\": \"百科\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志公敌\",\n    \"author\": \"杰弗里・赫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自纳粹地狱的报告\",\n    \"author\": \"米克洛斯・尼斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪潮\",\n    \"author\": \"托德・斯特拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015600-55b4aa?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时刻：希特勒、大屠杀与纳粹文化（上下册）\",\n    \"author\": \"单世联\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史：德国人的犹太恐惧症与大屠杀\",\n    \"author\": \"克劳斯・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（全三册）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国的腐败与反腐\",\n    \"author\": \"弗兰克・巴约尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866\",\n    \"category\": \"纳粹\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"责任病毒\",\n    \"author\": \"罗杰・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革的力量\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001737-a8b420?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：天才创造世界\",\n    \"author\": \"水木然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041298-4d7a2c?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高绩效团队\",\n    \"author\": \"琳达・亨曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034740-89cf01?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个天才团队的故事\",\n    \"author\": \"沃伦・本尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的领导力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017184-25e82f?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿景领导者\",\n    \"author\": \"迪帕克・乔普拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011211-07999a?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导梯队（原书第2版）\",\n    \"author\": \"拉姆・查兰/斯蒂芬・德罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866\",\n    \"category\": \"领导\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新：重新发现商业与未来\",\n    \"author\": \"萨提亚・纳德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017295-014e5b?p=8866\",\n    \"category\": \"微软\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代兵器大百科（套装共12册）\",\n    \"author\": \"《深度军事》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866\",\n    \"category\": \"武器\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵器史\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866\",\n    \"category\": \"武器\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯大林传\",\n    \"author\": \"德米特里・安东诺维奇・沃尔科戈诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491829-e707fa?p=8866\",\n    \"category\": \"斯大林\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年斯大林\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022413-7e0d2c?p=8866\",\n    \"category\": \"斯大林\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放你的大脑\",\n    \"author\": \"伊德里斯・阿贝尔坎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866\",\n    \"category\": \"大脑科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耐心的资本\",\n    \"author\": \"维多利亚・伊凡希娜/乔希・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495492-4e8778?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借钱：利息、债务和资本的故事\",\n    \"author\": \"查尔斯・盖斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透IPO\",\n    \"author\": \"沈春晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007572-2aa1dc?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的年代：1848～1875\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸奔的钱\",\n    \"author\": \"沈良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜伏在资本市场\",\n    \"author\": \"仇子明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006531-bbfae7?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿什么拯救中国经济？\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866\",\n    \"category\": \"资本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭2\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866\",\n    \"category\": \"逆袭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说话体现格局，决定结局\",\n    \"author\": \"凌岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866\",\n    \"category\": \"逆袭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年河东：权力市场经济的困境\",\n    \"author\": \"杨继绳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866\",\n    \"category\": \"权利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深海：探索寂静的未知\",\n    \"author\": \"詹姆斯・内斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866\",\n    \"category\": \"深海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词品（词系列）\",\n    \"author\": \"杨慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033549-efac50?p=8866\",\n    \"category\": \"词话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白雨斋词话（词系列）\",\n    \"author\": \"陈廷焯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866\",\n    \"category\": \"词话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（李卓吾批评本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026781-f18846?p=8866\",\n    \"category\": \"西游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煮酒探西游\",\n    \"author\": \"吴闲云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020517-dfd08e?p=8866\",\n    \"category\": \"西游记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript函数式编程\",\n    \"author\": \"Michael Fogus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866\",\n    \"category\": \"WEB开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Node即学即用\",\n    \"author\": \"Tom Hughes-Croucher/Mike Wilson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019341-c051bb?p=8866\",\n    \"category\": \"WEB开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"PHP和MySQL Web开发（原书第4版）\",\n    \"author\": \"Luke Welling\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866\",\n    \"category\": \"WEB开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后宫·甄嬛传（全7册）\",\n    \"author\": \"流潋紫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006210-d08087?p=8866\",\n    \"category\": \"后宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后宫·如懿传（套装全六册）\",\n    \"author\": \"流潋紫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006000-6ed972?p=8866\",\n    \"category\": \"后宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周礼（全本全注全译）\",\n    \"author\": \"徐正英/常佩雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仪礼（全本全注全译）\",\n    \"author\": \"彭林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985543-fb5537?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜夫论（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983326-206879?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼记（全本全注全译）\",\n    \"author\": \"胡平生译注/张萌译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"义疏学衰亡史论\",\n    \"author\": \"乔秀岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054387-22b652?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从六艺到十三经（上下册）\",\n    \"author\": \"程苏东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051807-3757fe?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：康有为与章太炎（全二册）\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋穀梁传（全本全注全译）\",\n    \"author\": \"徐正英/邹皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866\",\n    \"category\": \"经学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国（套装共2册）\",\n    \"author\": \"萧然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866\",\n    \"category\": \"大汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不忍细看的大汉史\",\n    \"author\": \"墨竹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008358-9b1891?p=8866\",\n    \"category\": \"大汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏殊词集·晏幾道词集（词系列）\",\n    \"author\": \"晏殊/晏几道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866\",\n    \"category\": \"词集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温庭筠词集·韦庄词集（词系列）\",\n    \"author\": \"温庭筠/韦庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866\",\n    \"category\": \"词集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未解之谜（套装共2册）\",\n    \"author\": \"克雷格·P·鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029346-23a41e?p=8866\",\n    \"category\": \"探索\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外星人已潜伏地球5000年\",\n    \"author\": \"吉姆・马尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007305-7428fc?p=8866\",\n    \"category\": \"探索\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节：如何轻松影响他人\",\n    \"author\": \"罗伯特・西奥迪尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866\",\n    \"category\": \"影响\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑来（22-28册）出版精校版\",\n    \"author\": \"烽火戏诸侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498294-5c9904?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖\",\n    \"author\": \"华发生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499257-a4fc63?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑来（1-14册）出版精校版\",\n    \"author\": \"烽火戏诸侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510003-9e4751?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白羽经典武侠小说（套装十五册）\",\n    \"author\": \"宫白羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513273-1d4daa?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条草鱼\",\n    \"author\": \"哈欠丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002037-f32c42?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人8\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048456-50027e?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人9\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鹤三绝\",\n    \"author\": \"二斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晋江大神Priest经典作品合集（套装10册）\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035787-47378b?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有匪（套装共4册）\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035424-611fd0?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千劫眉（套装5册）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034515-d69375?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五大贼王（全七册）\",\n    \"author\": \"张海帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033582-332d11?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人7\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032982-676f27?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁羽生作品集（全104册）\",\n    \"author\": \"梁羽生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031665-bac15f?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古龙作品文集（精装72册）\",\n    \"author\": \"古龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031251-1ca81d?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十六骑\",\n    \"author\": \"念远怀人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028368-c78c0c?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人5\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025581-ba94a5?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中10·以侠之名\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025200-8de2ab?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽明录\",\n    \"author\": \"卢隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024369-db1a0a?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺局（全六册）\",\n    \"author\": \"圆太极\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024114-fe0171?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖外史\",\n    \"author\": \"王怜花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023484-659443?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Hero Born\",\n    \"author\": \"金庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023235-ad50ef?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七杀碑\",\n    \"author\": \"朱贞木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022245-87f674?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人3\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022377-a26652?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁羽生天山系列武侠小说系列（套装共38册）\",\n    \"author\": \"梁羽生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020217-7a53db?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020004-6236a2?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金庸作品全集（新修版）（全36册）\",\n    \"author\": \"金庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015666-836a9a?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪中悍刀行（1-20册）全集\",\n    \"author\": \"烽火戏诸侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010569-63d2d4?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻秦记（套装全6卷）\",\n    \"author\": \"黄易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006882-2ead58?p=8866\",\n    \"category\": \"武侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866\",\n    \"category\": \"皮肤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮肤的秘密\",\n    \"author\": \"耶尔・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866\",\n    \"category\": \"皮肤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力思维\",\n    \"author\": \"珍妮弗・加维・伯格/基斯・约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866\",\n    \"category\": \"想读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维也纳艺术史博物馆\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018669-686c5d?p=8866\",\n    \"category\": \"维也纳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈：远野物语\",\n    \"author\": \"柳田国男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994702-793d65?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全怪谈：扶桑鬼话（套装共6册）\",\n    \"author\": \"小泉八云等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050130-bed007?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半妖司藤\",\n    \"author\": \"尾鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016350-8e1316?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录1：苗乡巫祖\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006627-77614f?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录2：清河鬼戏\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006624-d57c2b?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录3：血海鬼船\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006621-9caf12?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录4：亡魂列车\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006618-334515?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录5：赌城妖灵\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006615-c3e5c9?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录6：无边冥界\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006612-8ac654?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异域密码大全集（套装共四册）\",\n    \"author\": \"羊行屮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传古奇术（套装共四册）\",\n    \"author\": \"未六羊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866\",\n    \"category\": \"灵异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经史百家杂钞套装共8册（全本全注全译）\",\n    \"author\": \"余兴安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491943-3f0e5a?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙子兵法青少版（作家榜经典文库）\",\n    \"author\": \"孙武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493158-bd5029?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大书院（套装40册）\",\n    \"author\": \"孙武等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509625-852982?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"透过经济看国学\",\n    \"author\": \"翁礼华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510531-3f4603?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王蒙写给年轻人的中国智慧（全四册）\",\n    \"author\": \"王蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513588-2fdf16?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟大师学国学系列第一辑（套装共7册）\",\n    \"author\": \"梁启超等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513594-7db32f?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师周作人作品大全集（套装七十八册）\",\n    \"author\": \"周作人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002694-d93afe?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随大全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995206-7fee3d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周礼（全本全注全译）\",\n    \"author\": \"徐正英/常佩雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国策（全本全注全译）\",\n    \"author\": \"缪文远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985609-204824?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政论 昌言（全本全注全译）\",\n    \"author\": \"孙启治译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仪礼（全本全注全译）\",\n    \"author\": \"彭林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985543-fb5537?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜氏家训（全本全注全译）\",\n    \"author\": \"檀作文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985381-82364d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新序（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坛经（全本全注全译）\",\n    \"author\": \"尚荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文选（全本全注全译）\",\n    \"author\": \"萧统\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴越春秋（全本全注全译）\",\n    \"author\": \"崔冶译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏子春秋校注（中华国学文库）\",\n    \"author\": \"张纯一撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人物志（全本全注全译）\",\n    \"author\": \"刘劭/梁满仓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾作品（共21册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982492-7bf040?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子（全本全注全译）\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼记（全本全注全译）\",\n    \"author\": \"胡平生译注/张萌译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六韬（全本全注全译）\",\n    \"author\": \"陈曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语今读（增订版）\",\n    \"author\": \"李泽厚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：康有为与章太炎（全二册）\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书（全本全注全译）\",\n    \"author\": \"张建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公孙龙子（全本全注全译）\",\n    \"author\": \"黄克剑译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法言（全本全注全译）\",\n    \"author\": \"扬雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尔雅（全本全注全译）\",\n    \"author\": \"管锡华译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家书（全本全注全译）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045999-309b55?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩全集（全31册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从鹏扶摇到蝶蹁跹\",\n    \"author\": \"崔宜明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典里的中国（套装共十册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从诗经到红楼梦\",\n    \"author\": \"一条课堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043464-ad95e4?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平经（全本全注全译）\",\n    \"author\": \"杨寄林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的唐诗课\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043047-73180f?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学梯级公开课（套装共6册）\",\n    \"author\": \"摩罗/杨帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036837-519673?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡志忠经典解密系列6本\",\n    \"author\": \"蔡志忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035520-653d63?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾《传记文学》珍藏系列（全15册）\",\n    \"author\": \"梁实秋/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾著作全收录\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说文解字十二讲\",\n    \"author\": \"万献初/刘会龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030201-30e984?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透王阳明《传习录》\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029910-ae3bf9?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾人生精讲系列（套装共5册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029634-7b17a3?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的儒家\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大纲\",\n    \"author\": \"汪震/王正己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023292-710c34?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船山遗书\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：诸子百家（上册）\",\n    \"author\": \"陈耀南男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019713-a62b5d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：诸子百家（下册）\",\n    \"author\": \"趙善軒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019707-ed5d95?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书直解\",\n    \"author\": \"张居正整理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017934-78ec02?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透论语\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017736-fae163?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透孟子\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017730-33bfc2?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书指南（国学经典精校版）\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014856-7dd474?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（全本全注全译）\",\n    \"author\": \"王秀梅译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师讲国学经典文库（套装共5册）\",\n    \"author\": \"季风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011094-ca367b?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾颉刚国史讲话全本（三册）\",\n    \"author\": \"顾颉刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010383-dcf10f?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文集（套装共7册）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白话精编二十四史（全10册）\",\n    \"author\": \"龚书铎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010236-610f9d?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三大师谈国学\",\n    \"author\": \"梁启超/章太炎/朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009111-4abd60?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传记文学书系（套装共4册）\",\n    \"author\": \"唐德刚/梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008748-e9f5e7?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北大授课：中华文化四十七讲\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007980-4d8887?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群书治要译注\",\n    \"author\": \"魏徵等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006303-52769e?p=8866\",\n    \"category\": \"国学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都是数据分析师\",\n    \"author\": \"刘红阁/王淑娟/温融冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866\",\n    \"category\": \"数据可视化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裂变增长\",\n    \"author\": \"施襄/杨嘉伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866\",\n    \"category\": \"营运\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益转型\",\n    \"author\": \"约翰・涂尚徳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051252-2f48cb?p=8866\",\n    \"category\": \"营运\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章传\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866\",\n    \"category\": \"李鸿章\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章（全三册）\",\n    \"author\": \"张鸿福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866\",\n    \"category\": \"李鸿章\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呻吟语（全本全注全译）\",\n    \"author\": \"吕坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书（全本全注全译）\",\n    \"author\": \"张建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年颠沛与千年往复\",\n    \"author\": \"王家范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027825-d31c6f?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清之际士大夫研究\",\n    \"author\": \"赵园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023301-4261b5?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康熙盛世与帝王心术\",\n    \"author\": \"姚念慈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017247-df3930?p=8866\",\n    \"category\": \"明清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘心武妙品红楼梦\",\n    \"author\": \"刘心武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508878-a5cdd8?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尘世梦影：彩绘红楼梦\",\n    \"author\": \"孙温/王典弋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999178-c5dc11?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦脂评汇校本\",\n    \"author\": \"吴铭恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051549-30467b?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曹雪芹大传（共14册）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050604-976667?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼十二层：周汝昌妙解红楼\",\n    \"author\": \"周汝昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044889-ec39c7?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三春争及初春景（全三册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031890-2d8f96?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦（修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正本清源说红楼\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029559-e08768?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说红楼梦\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005907-b6423c?p=8866\",\n    \"category\": \"红楼梦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孙宝瑄日记\",\n    \"author\": \"孙宝瑄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866\",\n    \"category\": \"史料\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋人轶事汇编\",\n    \"author\": \"周勋初/葛渭君/周子来/王华宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866\",\n    \"category\": \"史料\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第二集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866\",\n    \"category\": \"史料\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择生命\",\n    \"author\": \"池田大作/阿诺德・约瑟夫・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054378-95bb9a?p=8866\",\n    \"category\": \"对谈录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开挂扩张\",\n    \"author\": \"卢诗翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511560-66cc54?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷之火（第3版）\",\n    \"author\": \"迈克尔・斯韦因/保罗・弗赖伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘网飞\",\n    \"author\": \"马克・伦道夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不拘一格\",\n    \"author\": \"里德・哈斯廷斯/艾琳・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯唐成事心法\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一往无前\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞轮效应\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去规模化\",\n    \"author\": \"赫曼特・塔内佳/凯文・梅尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扛住就是本事\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为超级创业英雄\",\n    \"author\": \"提姆・德瑞普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984295-7fd163?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品的101个新零售细节\",\n    \"author\": \"张桓/杨永朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢于不同：商业巨头白手起家的秘诀\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050898-fc81cd?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆炸式增长\",\n    \"author\": \"克里夫・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049836-66e2fa?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创始人手记\",\n    \"author\": \"季琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业突围\",\n    \"author\": \"郑旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045927-57d9d5?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电式扩张\",\n    \"author\": \"里德 · 霍夫曼/叶嘉新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇才\",\n    \"author\": \"梅利莎・席林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像开创者一样思考\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密硅谷\",\n    \"author\": \"米歇尔 E. 梅西纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20堂商业思维进阶课\",\n    \"author\": \"环球人物新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线创新\",\n    \"author\": \"李善友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西贝的服务员为什么总爱笑\",\n    \"author\": \"贾林男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的定位\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业头条\",\n    \"author\": \"兰德尔・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败课\",\n    \"author\": \"周磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透股权架构\",\n    \"author\": \"李利威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是风口\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的任务\",\n    \"author\": \"克莱顿・克里斯坦森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出版人\",\n    \"author\": \"艾伦・布里克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险创业\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就想开间自己的小店\",\n    \"author\": \"夏小暖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031782-511b94?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我曾走在崩溃的边缘\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能商业\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来，相信而看见\",\n    \"author\": \"星野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028395-7e1c0c?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激情创业\",\n    \"author\": \"于刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里铁军销售课\",\n    \"author\": \"李立恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不颠覆，就会被淘汰\",\n    \"author\": \"杰・萨米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人思维\",\n    \"author\": \"贾森・卡拉卡尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触点管理\",\n    \"author\": \"安妮·M·许勒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025596-850ca8?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业在路上\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025302-5c18dc?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走红：如何打造个人品牌\",\n    \"author\": \"杰瑞米・戈德曼/阿里・扎格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯长\",\n    \"author\": \"肖恩・阿美拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新理解创业\",\n    \"author\": \"周航\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌创业帮\",\n    \"author\": \"王丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉你的商业计划书\",\n    \"author\": \"卡尔·J. 施拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合伙人制度\",\n    \"author\": \"郑指梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来2：更为简单高效的远程工作方式\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业维艰\",\n    \"author\": \"本・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠创业家\",\n    \"author\": \"金伯莉・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Lean Startup\",\n    \"author\": \"Eric Ries\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019344-110690?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的创业史\",\n    \"author\": \"方兴东/刘强东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019182-1f9b4c?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大象飞\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一键下单：杰夫·贝佐斯与亚马逊的崛起\",\n    \"author\": \"理查德・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业36条军规\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离经叛道\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016914-9a3963?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致所有疯狂的家伙\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你凭什么做好互联网\",\n    \"author\": \"曹政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖故事：实践版\",\n    \"author\": \"高朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经营战略全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业就是要细分垄断\",\n    \"author\": \"李开复/汪华/傅盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众创新\",\n    \"author\": \"埃里克・冯・希佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数型组织\",\n    \"author\": \"萨利姆・伊斯梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑客与画家\",\n    \"author\": \"保罗・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012513-5443cb?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的方法\",\n    \"author\": \"内森・弗尔/杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的基因\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜利的法则\",\n    \"author\": \"铃木博毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国快递桐庐帮\",\n    \"author\": \"孙侃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011220-4eeecf?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"28岁赚千万\",\n    \"author\": \"穷富弹指间\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Elon Musk\",\n    \"author\": \"Ashlee Vance\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资异类\",\n    \"author\": \"王利杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在火星上退休：伊隆・马斯克传\",\n    \"author\": \"亚当・杰佛逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腾讯传1998-2016\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的解答\",\n    \"author\": \"克莱顿・克里斯坦森/迈克尔・雷纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业 : 新创企业的成长思维\",\n    \"author\": \"埃里克・莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宗庆后：万有引力原理\",\n    \"author\": \"迟宇宙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全中国最穷的小伙子发财日记\",\n    \"author\": \"重庆老康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维：商业颠覆与重构\",\n    \"author\": \"陈光锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业时，我们在知乎聊什么？\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周鸿祎自述：我的互联网方法论\",\n    \"author\": \"周鸿祎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创京东\",\n    \"author\": \"李志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005544-0bce57?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷钢铁侠\",\n    \"author\": \"阿什利・万斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1：开启商业与未来的秘密\",\n    \"author\": \"彼得・蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：创业公司的用户与收入增长秘籍\",\n    \"author\": \"范冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004839-80eb34?p=8866\",\n    \"category\": \"创业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说魂儿（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866\",\n    \"category\": \"志怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录3：大结局\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022287-27301b?p=8866\",\n    \"category\": \"志怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奠基者：独立战争那一代\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032793-3eb972?p=8866\",\n    \"category\": \"美国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之夏：美国独立的起源\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866\",\n    \"category\": \"美国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿山墙的安妮（作家榜经典文库）\",\n    \"author\": \"露西・莫德・蒙格玛丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866\",\n    \"category\": \"童书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希利尔儿童世界地理\",\n    \"author\": \"希利尔/休伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866\",\n    \"category\": \"童书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华民国专题史（套装共18册）\",\n    \"author\": \"王川等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513258-eca3f0?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国名家史学典藏系列（共14册）\",\n    \"author\": \"吕思勉/郑振铎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989620-4f5379?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋案重审\",\n    \"author\": \"尚小明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985948-5c1a66?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的逻辑\",\n    \"author\": \"胡悦晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985243-9b3e36?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细说民国大文人系列（增订版）\",\n    \"author\": \"民国文林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049203-a57f9d?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝版民国小书馆\",\n    \"author\": \"叶鋆生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045771-730497?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨天的中国\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾围城（全两册）\",\n    \"author\": \"匪我思存\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035541-d08688?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师书系（全6册）\",\n    \"author\": \"梁实秋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出帝制\",\n    \"author\": \"秦晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033669-f94efa?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国才子（套装3本）\",\n    \"author\": \"李克/沈燕/李平/孙琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033495-4c7802?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国逸史（全2册）\",\n    \"author\": \"王习耕/梅振田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033477-6c0e82?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史深处的民国（全3册）\",\n    \"author\": \"江城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国清流系列（全七册）\",\n    \"author\": \"汪兆骞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031422-474dd4?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1943：中国在十字路口\",\n    \"author\": \"周锡瑞/李皓天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忆往谈旧录\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗逻辑\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021993-ee1b86?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卢作孚套装（全三册）\",\n    \"author\": \"鲁/张湛昀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020706-3dfc66?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋风云人物\",\n    \"author\": \"董尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020238-6652c1?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海魂国殇\",\n    \"author\": \"肖璞韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020121-e8411c?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京，1912\",\n    \"author\": \"穆儒丐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017358-eeec31?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和十年（套装共2册）\",\n    \"author\": \"郑曦原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014727-5ab666?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华民国史（16册套装）\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012918-26053f?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国灯笼\",\n    \"author\": \"格蕾丝・汤普森・西登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国清流那些大师们（全四册）\",\n    \"author\": \"汪兆骞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010944-bdb64a?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走向共和\",\n    \"author\": \"张建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010215-9eb25f?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣重说晚清民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缠斗：方生与未死\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋大时代\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北鸢\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007899-24deaf?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱雀堂\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个美国记者眼中的真实民国\",\n    \"author\": \"哈雷特・阿班\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师细说中国历史（套装共12册）\",\n    \"author\": \"吕思勉/吴晗/傅斯年等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1933：聆听民国\",\n    \"author\": \"林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀1905大合集（共3册）\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋军阀史话\",\n    \"author\": \"丁中江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006738-a84f44?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录2：最后的复辟挣扎\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"败因：蒋介石为什么败退台湾？\",\n    \"author\": \"武更斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和中的帝制\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005838-df5318?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：角落里的民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005808-4cd3c9?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武夫当权：军阀集团的游戏规则\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005778-e952c5?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国总理段祺瑞\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005451-392314?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：摇晃的中国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005151-2a156e?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1927·谁主沉浮\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大变局1911\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会现场：1911—1928\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004872-0a13ad?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的汪精卫\",\n    \"author\": \"林思云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国就是这么生猛（全四册）\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004713-b94ab1?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国误会了袁世凯\",\n    \"author\": \"吕峥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866\",\n    \"category\": \"民国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空居民\",\n    \"author\": \"克里斯托弗・万杰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在太空的一年\",\n    \"author\": \"斯科特 · 凯利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050355-16803e?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类为什么要探索太空\",\n    \"author\": \"克里斯・英庇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"揭秘太空\",\n    \"author\": \"张天蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043209-6575f3?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空全书\",\n    \"author\": \"詹姆斯・特赖菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866\",\n    \"category\": \"太空\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论与生活\",\n    \"author\": \"兰・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507066-43abdb?p=8866\",\n    \"category\": \"博弈论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"角斗士、海盗与信任博弈\",\n    \"author\": \"哈伊姆・夏皮拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050799-329cef?p=8866\",\n    \"category\": \"博弈论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们被偷走的注意力\",\n    \"author\": \"斯特凡・范德斯蒂格谢尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五维思考法\",\n    \"author\": \"爱德华・伯格/迈克尔・斯塔伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510294-3b55d2?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像火箭科学家一样思考\",\n    \"author\": \"奥赞・瓦罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：透过表面看本质的六步思考法\",\n    \"author\": \"萧亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004149-6c477b?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喧哗的大多数\",\n    \"author\": \"艾伦・雅各布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995443-5d0afe?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案会说话\",\n    \"author\": \"梅田悟司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做出明智判断的10个方法\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的艺术（原书第11版）\",\n    \"author\": \"文森特・赖安・拉吉罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986845-3183cd?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"视觉笔记术\",\n    \"author\": \"卢慈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985774-afd8b0?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的技术\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用性思考的艺术\",\n    \"author\": \"小理查德・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985549-b0053e?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑：让选择变简单的方法\",\n    \"author\": \"欧文・瑟维斯/罗里・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何系统思考\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的策略\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向思考\",\n    \"author\": \"迈克尔・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的思考武器\",\n    \"author\": \"安宅和人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：让所有事情都能正确入手\",\n    \"author\": \"凯茜・拉舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读\",\n    \"author\": \"藤原和博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：不断逼近问题的本质\",\n    \"author\": \"莫琳・希凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻省理工深度思考法\",\n    \"author\": \"平井孝志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六顶思考帽：如何简单而高效的思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信思考\",\n    \"author\": \"泉忠司著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像间谍一样思考\",\n    \"author\": \"卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020934-24a0ae?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的灵魂\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你永远都无法叫醒一个装睡的人\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866\",\n    \"category\": \"思考\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离婚（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866\",\n    \"category\": \"讽刺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（名著名译丛书）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035391-f2f31c?p=8866\",\n    \"category\": \"讽刺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊脂球（读客经典）\",\n    \"author\": \"莫泊桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028713-de3407?p=8866\",\n    \"category\": \"讽刺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万英镑（译文名著精选）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005322-1058e0?p=8866\",\n    \"category\": \"讽刺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售经理的22条军规\",\n    \"author\": \"仲崇玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511158-7a7bd5?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快速成交\",\n    \"author\": \"俞赛前\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511488-43d314?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级话题\",\n    \"author\": \"肖大侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾客心理战\",\n    \"author\": \"菲利普・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从对抗到共赢\",\n    \"author\": \"杨杜泽/沈莉娟/王赛/范松璐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧②\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧①\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发式赢单\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探的救赎\",\n    \"author\": \"顾溪亭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053478-fd88a8?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意志力销售法\",\n    \"author\": \"杨朝福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售畅销秘籍\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045615-2e3e93?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是销售力\",\n    \"author\": \"余尚祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售铁军\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级营销必修课（套装全8册）\",\n    \"author\": \"帕科・昂德希尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售圣经\",\n    \"author\": \"杰弗里・吉特黙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"25%的回头客创造75%的利润\",\n    \"author\": \"高田靖久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密日本零售业（套装共4册）\",\n    \"author\": \"增田明子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：掌握直线销售的艺术\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售进阶指南（套装共5册）\",\n    \"author\": \"埃尔默・惠勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人岛生存十六人\",\n    \"author\": \"须川邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成交：如何实现可持续性销售\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027513-d2ebed?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑西游\",\n    \"author\": \"绯红色眼泪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025137-84c2d0?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极速成交\",\n    \"author\": \"吉尔・康耐斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024138-4ecf7d?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售脑\",\n    \"author\": \"帕特里克・任瓦茨/克里斯托弗・莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022623-017333?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要玩转情商\",\n    \"author\": \"科林・斯坦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要搞定人\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005031-3463fc?p=8866\",\n    \"category\": \"销售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑：看清这个世界的底牌\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何证明你不是僵尸\",\n    \"author\": \"杰里米・斯特朗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维与说服性写作\",\n    \"author\": \"路易丝・卡茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501387-c9409e?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给职场人的5堂逻辑思考课\",\n    \"author\": \"深泽真太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效论证\",\n    \"author\": \"大卫・莫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗辑思维（全5册）\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004005-539071?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金岳霖哲学三书\",\n    \"author\": \"金岳霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001944-360496?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑的力量\",\n    \"author\": \"郑乐隽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000540-cc1401?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑新引·怎样判别是非\",\n    \"author\": \"殷海光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000414-fe83d1?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的批判性思维\",\n    \"author\": \"莎伦・M. 凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春蚕吐丝\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本口才书\",\n    \"author\": \"陈慕妤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？\",\n    \"author\": \"朱利安・巴吉尼/杰里米・斯唐鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？2\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身边的逻辑学\",\n    \"author\": \"伯纳・派顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985057-68506c?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（原书第11版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼识破真相的思考力\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学原来很有趣\",\n    \"author\": \"齐露露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑演讲\",\n    \"author\": \"大卫祁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学入门很简单\",\n    \"author\": \"兰晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的逻辑题\",\n    \"author\": \"亚历克斯・贝洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑\",\n    \"author\": \"黑格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043518-deed3d?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的写作武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的谈判武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的思考武器\",\n    \"author\": \"安宅和人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惯性思维\",\n    \"author\": \"任白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12堂趣味逻辑课\",\n    \"author\": \"阿里・阿莫萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040821-2fd4bd?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性动物\",\n    \"author\": \"道格拉斯・肯里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11堂极简系统思维课\",\n    \"author\": \"史蒂文・舒斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037311-961ac9?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个逻辑学家去酒吧\",\n    \"author\": \"霍格尔・丹贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032730-cc30a1?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑思维与诡辩\",\n    \"author\": \"张晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030423-4cac61?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲（美国新思想运动之父的逻辑学入门读物）\",\n    \"author\": \"威廉・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有用的逻辑学（第2版）\",\n    \"author\": \"梅森・皮里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025659-255f15?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑工作法\",\n    \"author\": \"西村克己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲\",\n    \"author\": \"威廉姆・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐性逻辑\",\n    \"author\": \"卡尔・诺顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012783-6ffa1c?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的蓝色逻辑书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构思考力\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔原理\",\n    \"author\": \"芭芭拉・明托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007536-e10bf4?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神逻辑：不讲道理的人怎么总有理\",\n    \"author\": \"阿里·阿莫萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007029-6c71ef?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维（原书第10版）\",\n    \"author\": \"布鲁克·诺埃尔·摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866\",\n    \"category\": \"逻辑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Leonardo da Vinci\",\n    \"author\": \"Walter Isaacson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021798-d76fb3?p=8866\",\n    \"category\": \"达芬奇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈默手稿\",\n    \"author\": \"列奥纳多・达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866\",\n    \"category\": \"达芬奇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宪法学讲义（第三版）\",\n    \"author\": \"林来梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990535-066ef2?p=8866\",\n    \"category\": \"宪法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难的一跃\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866\",\n    \"category\": \"宪法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大酋长伊丽莎白\",\n    \"author\": \"贾尔斯・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491760-3ce9b1?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津欧洲史\",\n    \"author\": \"威廉·多伊尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495393-244d19?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的十字军东征\",\n    \"author\": \"奈杰尔・克利夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格：欧洲的十字路口\",\n    \"author\": \"德里克・塞耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497352-fa1e56?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：古典时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497439-2b024e?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：帝国时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497445-985dca?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：转型时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497463-481df6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国与蛮族\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业革命前的欧洲社会与经济\",\n    \"author\": \"卡洛·M. 奇波拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诅咒之塔\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499152-78edc0?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第三辑（套装共10册）\",\n    \"author\": \"汉娜・韦斯特莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499902-209173?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第一辑（套装共10册）\",\n    \"author\": \"乔恩・怀特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500310-1289b6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第二辑（套装共10册）\",\n    \"author\": \"艾米・贝斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500640-a5b55f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大帝国兴衰史（套装共4册）\",\n    \"author\": \"塞西尔・詹金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500286-2a28e0?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代\",\n    \"author\": \"马丁·J. 多尔蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501063-141e2f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服，1016-1130西西里的诺曼王朝Ⅰ\",\n    \"author\": \"约翰・朱利叶斯・诺威奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501414-844f43?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王国，1130-1194西西里的诺曼王朝Ⅱ\",\n    \"author\": \"约翰・朱利叶斯・诺威奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501453-a22ed4?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京时代与英格兰\",\n    \"author\": \"埃莉诺・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的五个德国\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：欧洲文明如何塑造现代世界\",\n    \"author\": \"胡里奥・克雷斯波・麦克伦南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512004-f37e6f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的战争（1618-1648）\",\n    \"author\": \"约翰内斯・布克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003393-26399e?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包罗万象中外历史精选集（套装共20册）\",\n    \"author\": \"汤姆・利文等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000627-ea3343?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争三部曲\",\n    \"author\": \"唐纳德・卡根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998965-3139a8?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年战争史：1618-1648\",\n    \"author\": \"塞缪尔・罗森・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国：一个国家的记忆\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺曼征服\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之门\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民疯狂的欧洲\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祸起1914\",\n    \"author\": \"克斯・黑斯廷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989533-0de9f7?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的世界史套装（全15卷）\",\n    \"author\": \"肖石忠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙史（贝克知识丛书）\",\n    \"author\": \"瓦尔特·L.伯尔奈克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才时代\",\n    \"author\": \"A.C.格雷林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的复辟\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：从古代源头到20世纪（全3册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲一万年（全三册）\",\n    \"author\": \"J.M.罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048477-099fc8?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马故事\",\n    \"author\": \"阿尔贝托・莫拉维亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045699-a7a41a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲之门\",\n    \"author\": \"谢尔希・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045066-209a47?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一个欧洲\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1848：革命之年\",\n    \"author\": \"迈克・拉波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊与灰鹰（套装共3册）\",\n    \"author\": \"丽贝卡・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1683维也纳之战\",\n    \"author\": \"安德鲁・惠克罗夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧罗巴一千年\",\n    \"author\": \"伊恩・莫蒂默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040827-7ff413?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁古典欧洲怪诞生活志\",\n    \"author\": \"伊丽莎白・阿奇博尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039012-b15b5d?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔干百年简史\",\n    \"author\": \"马细谱/余志和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038772-ae31dc?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以上帝和恺撒之名\",\n    \"author\": \"理查德・巴塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝圆舞曲\",\n    \"author\": \"高林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方之镜\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯教授讲世界历史（全6册）\",\n    \"author\": \"菲利普・范・内斯・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036933-5ae1e2?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴的故事（全六册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美第奇家族的兴衰\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1945：大国博弈下的世界秩序新格局\",\n    \"author\": \"迈克・内伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲与没有历史的人\",\n    \"author\": \"埃里克·R.沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潘帕蓝调\",\n    \"author\": \"罗尔夫・拉佩特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031257-c06207?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：中世纪盛期的欧洲\",\n    \"author\": \"威廉・乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国极简史\",\n    \"author\": \"詹姆斯・霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我未尽的苦难\",\n    \"author\": \"帕特里克・金斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028959-1f1f0f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡王朝：翱翔欧洲700年的双头鹰\",\n    \"author\": \"卫克安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：基督教欧洲的巨变\",\n    \"author\": \"马克・格林格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026463-94526e?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：竞逐权力\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026442-f6a633?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京传奇\",\n    \"author\": \"拉尔斯・布朗沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025038-59b85c?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲中世纪三部曲+燃烧的远征（套装共4册）\",\n    \"author\": \"拉尔斯・布朗沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023808-852d17?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的背影系列（套装共3册）\",\n    \"author\": \"诺曼・斯通等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019785-2a75d6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲现代史：从文艺复兴到现在（套装共2册）\",\n    \"author\": \"约翰・梅里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019770-f8308f?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国命运（套装共3册）\",\n    \"author\": \"席勒/基佐/米涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019497-15bf57?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审问欧洲：二战时期的合作、抵抗与报复\",\n    \"author\": \"伊斯特万・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军的故事（全四册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018033-c0a564?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Sea Wolves\",\n    \"author\": \"Lars Brownworth\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017679-c5a00a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲中世纪史\",\n    \"author\": \"朱迪斯・M・本内特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017151-2a3e9a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从黎明到衰落（上下册）\",\n    \"author\": \"雅克・巴尔赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的背影（套装共2册）\",\n    \"author\": \"彼得・贾德森/诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013590-8235a7?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金雀花王朝\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲的陨落\",\n    \"author\": \"马克思・加罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信历史的镜像系列（套装共10本）\",\n    \"author\": \"理查德・埃文斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国通史（套装共6册）\",\n    \"author\": \"钱乘旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后欧洲史（套装共4册）\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011190-f4b570?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从这里读懂第三帝国（套装共8册）\",\n    \"author\": \"齐格蒙・鲍曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：四天、三支大军和三场战役的历史\",\n    \"author\": \"伯纳德・康沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马人的故事（套装共15册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：1453年以来的争霸之途\",\n    \"author\": \"布伦丹・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马灭亡后的地中海世界（上下册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军东征简史（插图本）\",\n    \"author\": \"米肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫廷社会（译文经典）\",\n    \"author\": \"诺贝特・埃利亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：欧洲八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海史诗三部曲\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简欧洲史\",\n    \"author\": \"约翰・赫斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866\",\n    \"category\": \"欧洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866\",\n    \"category\": \"萌宠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挖历史（套装共2册）\",\n    \"author\": \"私家野史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039153-c70834?p=8866\",\n    \"category\": \"野史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清朝野史大观（全三册）\",\n    \"author\": \"小横香室主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020262-2939f2?p=8866\",\n    \"category\": \"野史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守望先锋（第一卷）\",\n    \"author\": \"美国暴雪娱乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866\",\n    \"category\": \"美漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠侠手记：超人类绝密档案\",\n    \"author\": \"S.D.佩里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985720-975708?p=8866\",\n    \"category\": \"美漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威大战DC\",\n    \"author\": \"里德・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866\",\n    \"category\": \"美漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰盛人生：安利创始人理查・狄维士自传\",\n    \"author\": \"理查・狄维士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866\",\n    \"category\": \"安利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物的追问（二十世纪西方哲学经典）\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985936-6e200a?p=8866\",\n    \"category\": \"现象学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现象学的方法（二十世纪西方哲学经典）\",\n    \"author\": \"埃德蒙德・胡塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985603-202a69?p=8866\",\n    \"category\": \"现象学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒂姆·库克传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果首席设计师：乔纳森传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃兹传：与苹果一起疯狂\",\n    \"author\": \"吉娜・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023163-c9e4da?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"库克：苹果的后乔布斯时代\",\n    \"author\": \"冷湖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂夫·乔布斯传\",\n    \"author\": \"沃尔特·艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866\",\n    \"category\": \"苹果\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很高兴认识“我”\",\n    \"author\": \"比尔・沙利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因蓝图\",\n    \"author\": \"罗伯特・普罗明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994126-6e174f?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因与命运\",\n    \"author\": \"斯蒂芬·J.海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的旅程\",\n    \"author\": \"斯宾塞・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同的生命线\",\n    \"author\": \"约翰・苏尔斯顿/乔治娜・费里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命密码\",\n    \"author\": \"尹烨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（40周年增订版）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023907-8aa3e0?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新设计生命\",\n    \"author\": \"约翰・帕林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因魔剪\",\n    \"author\": \"日本NHK“基因组编辑”采访组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020022-f75244?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的手术刀\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因组：人类自传\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866\",\n    \"category\": \"基因\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多极亚洲中的唐朝\",\n    \"author\": \"王贞平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512703-66fba9?p=8866\",\n    \"category\": \"唐代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：十二种唐朝人生\",\n    \"author\": \"魏泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513810-ba6f6d?p=8866\",\n    \"category\": \"唐代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酉阳杂俎（全本全注全译）\",\n    \"author\": \"段成式\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043302-be1cec?p=8866\",\n    \"category\": \"唐代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镀金时代\",\n    \"author\": \"夏清影\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032676-8550ac?p=8866\",\n    \"category\": \"留学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫眼看美国\",\n    \"author\": \"聂平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866\",\n    \"category\": \"留学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周鸿祎自述：我的互联网方法论\",\n    \"author\": \"周鸿祎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866\",\n    \"category\": \"周鸿祎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要把读书当回事\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499101-3b0d57?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读变现\",\n    \"author\": \"山口周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499122-5f9eef?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少时读书\",\n    \"author\": \"废名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野味读书\",\n    \"author\": \"孙犁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会读书\",\n    \"author\": \"叶圣陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003942-ca36b7?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂一本书\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸说经典作品集（套装共4册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星条旗下的茶叶蛋\",\n    \"author\": \"方柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用Kindle高效学习\",\n    \"author\": \"直树桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032121-9975ae?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书毁了我\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030408-4ed360?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样读经典\",\n    \"author\": \"王宁/彭林/孙钦善\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029706-559436?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深阅读\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准表达：让你的方案在最短的时间内打动人心\",\n    \"author\": \"高田贵久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022005-8ea54a?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洋葱阅读法\",\n    \"author\": \"彭小六\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021639-2cdecd?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书都不会读，你还想成功\",\n    \"author\": \"二志成/郑会一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019692-41d226?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命最后的读书会\",\n    \"author\": \"威尔・施瓦尔贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019641-a06ea5?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读一本书\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书是一辈子的事\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017013-d5b280?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旅行与读书\",\n    \"author\": \"詹宏志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866\",\n    \"category\": \"读书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的匠人（全20册套装）\",\n    \"author\": \"知了青年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007389-02fb3c?p=8866\",\n    \"category\": \"艺术文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷之火（第3版）\",\n    \"author\": \"迈克尔・斯韦因/保罗・弗赖伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光刻巨人\",\n    \"author\": \"瑞尼・雷吉梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"程序员编程语言经典合集（共5册）\",\n    \"author\": \"兰斯・尼塞斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996589-3e3123?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能机器如何思考\",\n    \"author\": \"肖恩・格里什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Excel 2019公式、函数应用大全\",\n    \"author\": \"张明真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053154-079bbd?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动手学深度学习\",\n    \"author\": \"阿斯顿・张等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python高性能编程\",\n    \"author\": \"戈雷利克/欧日沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技与和平\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047055-d0635a?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变未来的九大算法\",\n    \"author\": \"约翰・麦考密克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字人文\",\n    \"author\": \"安妮·博迪克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能的进化\",\n    \"author\": \"赫克托・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础读懂云计算\",\n    \"author\": \"纳扬・鲁帕拉里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028467-7f62ed?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香农传\",\n    \"author\": \"吉米・索尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码朋克\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的乐趣\",\n    \"author\": \"王晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用Python写网络爬虫（第2版）\",\n    \"author\": \"Katharine Jarmul\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：基础学习篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：服务器架设篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推荐系统实践\",\n    \"author\": \"项亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通正则表达式：第3版\",\n    \"author\": \"Jeffrey E·F·Friedl\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络是怎样连接的\",\n    \"author\": \"户根勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从Python开始学编程\",\n    \"author\": \"Vamei\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java程序员修炼之道\",\n    \"author\": \"Benjamin J. Evans/Martijn Verburg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Vim实用技巧\",\n    \"author\": \"Drew Neil\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020997-2ff693?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Linux就该这么学\",\n    \"author\": \"刘遄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020865-7cfd40?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Cloud微服务实战\",\n    \"author\": \"翟永超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020250-1e5ad7?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是数字的\",\n    \"author\": \"Brian W·Kernighan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019173-51d646?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Kubernetes实战（套装共2册）\",\n    \"author\": \"吴龙辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019200-6c0097?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"计算广告\",\n    \"author\": \"刘鹏/王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"GitHub入门与实践\",\n    \"author\": \"大塚弘记\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018630-3c62a1?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第3版）\",\n    \"author\": \"Wesley Chun\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大教堂与集市\",\n    \"author\": \"Eric S. Raymond\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017643-c49df8?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程：从入门到实践\",\n    \"author\": \"埃里克・马瑟斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计模式之禅（第2版）\",\n    \"author\": \"秦小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS禅意花园（修订版）\",\n    \"author\": \"Dave Shea/Mollv E\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习\",\n    \"author\": \"伊恩・古德费洛/约书亚・本吉奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013449-ede60c?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一本Docker书（修订版）\",\n    \"author\": \"詹姆斯・特恩布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013125-e87194?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极算法\",\n    \"author\": \"佩德罗・多明戈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解HTTP\",\n    \"author\": \"上野宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"iOS编程（第4版）\",\n    \"author\": \"Christian Keur/Aaron Hillegass\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法图解\",\n    \"author\": \"Aditya Bhargava\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程快速上手\",\n    \"author\": \"Al Sweigart\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法神探\",\n    \"author\": \"杰瑞米・库比卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009255-fb075f?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链\",\n    \"author\": \"长铗/韩锋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第二版）\",\n    \"author\": \"丘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子的编程之旅\",\n    \"author\": \"Warren Sande\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别怕，Excel VBA其实很简单\",\n    \"author\": \"罗国发\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005424-36e2bc?p=8866\",\n    \"category\": \"计算机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近视怎么办：眼科医生教你正确配镜和治疗\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007638-12f9a2?p=8866\",\n    \"category\": \"近视\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上岸：一个海淀妈妈的重点学校闯关记\",\n    \"author\": \"安柏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493359-744141?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子的品格\",\n    \"author\": \"彭凯平/闫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493764-ff4380?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是微学习\",\n    \"author\": \"罗宾・德费利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500091-56a0ca?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔玉涛自然养育法\",\n    \"author\": \"崔玉涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501618-4b43b7?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语文阅读推荐丛书·小学部分·全27册\",\n    \"author\": \"格林兄弟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509292-20cf9c?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的悔过书\",\n    \"author\": \"李柳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510222-3ee66f?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡前育儿法\",\n    \"author\": \"李永爱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510288-757ee6?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵程序设计丛书：Java进阶高手（套装共8册）\",\n    \"author\": \"沃伯顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往未来之路\",\n    \"author\": \"赵昂/任国荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半熟家庭\",\n    \"author\": \"金义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511065-6c9ffd?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让孩子像哲学家一样会思考\",\n    \"author\": \"张玮/沈文婕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教育的常识\",\n    \"author\": \"尹建莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511668-05c413?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然界的印象（作家榜经典文库）\",\n    \"author\": \"儒勒・列那尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511644-242e91?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小舍得\",\n    \"author\": \"鲁引弓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512214-5dda71?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顽童小番茄\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的学区房是你家的书房\",\n    \"author\": \"佐藤亮子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真希望我父母读过这本书\",\n    \"author\": \"菲利帕・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000732-ac2b7d?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"准备\",\n    \"author\": \"黛安娜・塔文纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998926-07fdc2?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大壮的信\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996169-ca0701?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们今天怎样做父亲\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995407-79bcac?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡骏24堂写作课\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995332-e2f2c1?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育女孩（成长版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994843-6e6be3?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陪孩子终身成长\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991630-eba848?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学好数学并不难（套装共2册）\",\n    \"author\": \"孙亮朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990406-b55265?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生非此\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作力\",\n    \"author\": \"高语罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发展心理学套装（第10版）\",\n    \"author\": \"戴安娜・帕帕拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050526-22b5f0?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大夏教育文存（全11卷）\",\n    \"author\": \"杜成宪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049830-9cf21a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的语言\",\n    \"author\": \"达娜・萨斯金德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童教育心理学\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反溺爱\",\n    \"author\": \"罗恩・利伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎妈战歌\",\n    \"author\": \"蔡美儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21招，让孩子独立\",\n    \"author\": \"叶壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040317-3e999a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"园丁与木匠\",\n    \"author\": \"艾莉森・高普尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039465-e654bf?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统整的力量\",\n    \"author\": \"陈怡倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038664-3ab357?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不管教的勇气\",\n    \"author\": \"岸见一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035196-6f1a79?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰教育全球第一的秘密（珍藏版）\",\n    \"author\": \"陈之华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的升级\",\n    \"author\": \"约翰・库奇/贾森・汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画古诗文\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理营养\",\n    \"author\": \"林文采/伍娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子全集（作家榜经典文库）\",\n    \"author\": \"埃・奥・卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高分智囊团\",\n    \"author\": \"郑书豪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030951-f6b083?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给所有人的编程思维\",\n    \"author\": \"吉姆・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作课\",\n    \"author\": \"叶开\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030036-d3ec1e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正面管教\",\n    \"author\": \"简・尼尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029700-2aae5a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给父母的未来之书\",\n    \"author\": \"童行学院教研团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大学的精神\",\n    \"author\": \"蒲实/陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026901-285fb4?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一流的教养\",\n    \"author\": \"杰瑞米・克拉克/乔若莎・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025281-72dc34?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄代表作\",\n    \"author\": \"河合隼雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身幼儿园\",\n    \"author\": \"米切尔・雷斯尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希利尔儿童世界地理\",\n    \"author\": \"希利尔/休伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的教育\",\n    \"author\": \"艾德蒙多・德・亚米契斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别的女生萨哈拉\",\n    \"author\": \"爱斯米・科德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022122-a16d36?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛通识教育红皮书\",\n    \"author\": \"哈佛委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020907-daf2ca?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孩子是脚，教育是鞋\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020505-1ae1af?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"0～12岁，给孩子一个好性格\",\n    \"author\": \"葛安妮/葛碧建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018738-0a0c03?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爸爸军团\",\n    \"author\": \"布鲁斯・费勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017754-627360?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让学校重生\",\n    \"author\": \"肯・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017646-ec3f15?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼老大，天使老二\",\n    \"author\": \"诸葛越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017640-9ed028?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么被霸凌？\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015261-36ff57?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的觉醒\",\n    \"author\": \"沙法丽・萨巴瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014697-afca27?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正的蒙氏教育在家庭精选（套装共三册）\",\n    \"author\": \"白玛琳/骆思洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014703-24621f?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏力\",\n    \"author\": \"劳伦斯・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014142-23eb93?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Between Parent and Child\",\n    \"author\": \"Haim G Ginott\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013977-185e23?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度量：一首献给数学的情歌\",\n    \"author\": \"保罗・洛克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013179-ed1db5?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湛庐文化心视界分心系列（套装共4册）\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012798-3a30e1?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾国教育病理\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本趣味数理化书（套装共三册）\",\n    \"author\": \"韩垒/田梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育男孩（典藏版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱智书系(套装共7册)\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011070-3f1f08?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾徳哲学启蒙少儿书系（套装6册）\",\n    \"author\": \"乔斯坦・贾德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009585-93bc28?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的绵羊\",\n    \"author\": \"威廉・德雷谢维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见孩子，遇见更好的自己\",\n    \"author\": \"赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"P.E.T.父母效能训练\",\n    \"author\": \"托马斯・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的男孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007704-26fa9e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的女孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱（套装全2册）\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理日记（套装1-9册）\",\n    \"author\": \"西西弗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小别离\",\n    \"author\": \"鲁引弓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼看懂小孩子\",\n    \"author\": \"王勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完整的成长：儿童生命的自我创造\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱和自由：孙瑞雪幼儿教育演讲录\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁拿走了孩子的幸福\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑玉巧育儿经·幼儿卷\",\n    \"author\": \"郑玉巧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006141-816059?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西尔斯育儿经\",\n    \"author\": \"西尔斯夫妇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定本育儿百科\",\n    \"author\": \"松田道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你慢慢长大\",\n    \"author\": \"刘瑜/周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005649-79868f?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像梁启超那样做父亲\",\n    \"author\": \"俞祖华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005115-40ae6c?p=8866\",\n    \"category\": \"教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六韬（全本全注全译）\",\n    \"author\": \"陈曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866\",\n    \"category\": \"谋略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬球：政治是这样玩的\",\n    \"author\": \"克里斯·马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866\",\n    \"category\": \"谋略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦制两千年\",\n    \"author\": \"谌旭彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509367-728e53?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦谜：重新发现秦始皇（插图增订版）\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511506-fe2b0a?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜夫论（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983326-206879?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一看就懂的大汉史（修订版）\",\n    \"author\": \"朱真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053139-fdde88?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邂逅秦始皇\",\n    \"author\": \"中信出版·大方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049749-255362?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦谜：重新发现秦始皇\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014271-174e75?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早期中华帝国：秦与汉\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009264-03cc70?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东汉的豪族\",\n    \"author\": \"杨联陛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006837-a944f1?p=8866\",\n    \"category\": \"秦汉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈允斌顺时生活的智慧（全12册）\",\n    \"author\": \"陈允斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498798-9bff2a?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起来粉碎朋友圈养生谣言\",\n    \"author\": \"好奇博士团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优雅老去\",\n    \"author\": \"杰罗尔德・温特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990655-a922dd?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨提亚冥想\",\n    \"author\": \"约翰・贝曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很老很老的老偏方大全集（共10册）\",\n    \"author\": \"胡丽娟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会呼吸\",\n    \"author\": \"帕特里克・麦基翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是你吃出来的\",\n    \"author\": \"夏萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食療聖經\",\n    \"author\": \"Michael Greger, MD\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031794-797945?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷物大脑\",\n    \"author\": \"戴维・珀尔马特/戴维・珀尔马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食的迷思\",\n    \"author\": \"蒂姆・斯佩克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破解生死大数据\",\n    \"author\": \"杰瑞米・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西1\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱：失眠、抑郁、焦虑（套装共3册）\",\n    \"author\": \"凯特・米德尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019281-098512?p=8866\",\n    \"category\": \"养生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与毁灭\",\n    \"author\": \"彼得・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866\",\n    \"category\": \"法国大革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑与法兰西第一帝国（全2册）\",\n    \"author\": \"约瑟夫・富歇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031704-299c68?p=8866\",\n    \"category\": \"法国大革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大外交\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866\",\n    \"category\": \"外交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力的教训\",\n    \"author\": \"弗朗索瓦・奥朗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866\",\n    \"category\": \"外交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗盘与风向标\",\n    \"author\": \"雷蒙德・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028383-8bed41?p=8866\",\n    \"category\": \"外交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"峰会：影响20世纪的六场元首会谈\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866\",\n    \"category\": \"外交\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知工具\",\n    \"author\": \"塞西莉亚・海耶斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491715-7dc597?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙（白金升级版）\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不必太用力\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿智者的法则\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维与说服性写作\",\n    \"author\": \"路易丝・卡茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501387-c9409e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的一天·鹈鹕丛书\",\n    \"author\": \"苏珊・格林菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501504-478cce?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九宫格写作法\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁：心理学实证研究社会思维\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509499-e67aab?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五维思考法\",\n    \"author\": \"爱德华・伯格/迈克尔・斯塔伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510294-3b55d2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给职场人的5堂逻辑思考课\",\n    \"author\": \"深泽真太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的世界\",\n    \"author\": \"许奔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大产品思维\",\n    \"author\": \"王雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放空\",\n    \"author\": \"曼诺诗・左莫若迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511116-f9cceb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交谈的要素\",\n    \"author\": \"N.J.恩菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511476-4db402?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗（青少版）\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511956-44780a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商2\",\n    \"author\": \"保罗·G.史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511989-b7bf29?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有钱人和你想的不一样\",\n    \"author\": \"哈维・艾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512172-8e2586?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费曼学习法\",\n    \"author\": \"尹红心/李伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512211-79ec46?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：一本故事丰富的决策行为指南\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧大脑\",\n    \"author\": \"艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513534-db2475?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明哲学逻辑思维读本（套装共5册）\",\n    \"author\": \"威廉姆・韦斯利・库克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513669-9bcbcb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"责任病毒\",\n    \"author\": \"罗杰・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常生活中的发明原理\",\n    \"author\": \"高木芳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果人类是整个宇宙的大脑\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003759-1d9daf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢思考\",\n    \"author\": \"特奥・康普诺利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003558-4cb404?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿透：像社会学家一样思考\",\n    \"author\": \"严飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002463-b7f860?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构化写作\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波斯公主选驸马\",\n    \"author\": \"帕维尔・莫托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆宫殿\",\n    \"author\": \"石伟华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闭环思维\",\n    \"author\": \"智俊启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2轴思维\",\n    \"author\": \"木部智之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999532-427444?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别想那只大象\",\n    \"author\": \"乔治・莱考夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999469-0222ec?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大器晚成\",\n    \"author\": \"里奇・卡尔加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的批判性思维\",\n    \"author\": \"莎伦・M. 凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的互联网思维\",\n    \"author\": \"伯纳多・A. 胡伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级个体\",\n    \"author\": \"徐大维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考\",\n    \"author\": \"樱田润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997600-d2665d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知红利\",\n    \"author\": \"谢春霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何不切实际地解决实际问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效迭代\",\n    \"author\": \"冯起升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式学习\",\n    \"author\": \"周林文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级大脑的七个习惯\",\n    \"author\": \"菅原道仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995182-38b399?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讲好一个故事\",\n    \"author\": \"默里・诺塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995053-9ef98f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？\",\n    \"author\": \"朱利安・巴吉尼/杰里米・斯唐鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？2\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好思考\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何形成清晰的观点\",\n    \"author\": \"查尔斯·S.皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何启动黄金圈思维\",\n    \"author\": \"西蒙・斯涅克/戴维・米德/彼得・多克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992221-a4d256?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反直觉\",\n    \"author\": \"理查德・肖顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直面不确定性\",\n    \"author\": \"大辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默感\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"允许被说服\",\n    \"author\": \"艾尔・比坦帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中11·宇宙之道，就在围棋\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会决断（原书第2版）\",\n    \"author\": \"苏・哈德菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界竞争\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维魔方\",\n    \"author\": \"陈波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图攻略\",\n    \"author\": \"王健文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样用脑不会累\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服\",\n    \"author\": \"邝大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的本质\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987280-13909c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维：关于决策、问题解决与预测的新科学\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987145-752493?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的方式\",\n    \"author\": \"阿尔弗雷德・诺思・怀特海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987088-319fee?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图完整手册\",\n    \"author\": \"东尼・博赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987073-f54ce6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是谁出的题这么难，到处都是正确答案\",\n    \"author\": \"邱天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考法\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非对称风险\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧与魔咒\",\n    \"author\": \"塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的艺术（原书第11版）\",\n    \"author\": \"文森特・赖安・拉吉罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986845-3183cd?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破天性\",\n    \"author\": \"布赖恩・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考与表达的20堂课\",\n    \"author\": \"久恒启一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985939-5f27b0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是动机控\",\n    \"author\": \"池田贵将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用性思考的艺术\",\n    \"author\": \"小理查德・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985549-b0053e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我们阅读时，我们看到了什么\",\n    \"author\": \"彼得・门德尔桑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课2：答的艺术\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985396-3ff85c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课1：说的艺术\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985207-998a83?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力清单\",\n    \"author\": \"吉恩・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（30周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生新算法\",\n    \"author\": \"矢野和男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用数据解决实际问题\",\n    \"author\": \"柏木吉基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984538-3d33ff?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商务思维工具箱系列（套装共3册）\",\n    \"author\": \"HRInstitute\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984514-700431?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新情商\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治动物\",\n    \"author\": \"里克・申克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相与错觉\",\n    \"author\": \"塔莎・欧里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找爽点\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学统治世界（全三册）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052998-895117?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（原书第11版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知·情感·意志\",\n    \"author\": \"詹姆斯・马克・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深奥的简洁\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重构\",\n    \"author\": \"村西边老王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学原来很有趣\",\n    \"author\": \"齐露露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑演讲\",\n    \"author\": \"大卫祁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专家之死\",\n    \"author\": \"托马斯・尼科尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052356-47c0eb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理如何改变商业模式\",\n    \"author\": \"卡拉・欧戴尔/辛迪・休伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的策略\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力迁移\",\n    \"author\": \"乔治・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简社交\",\n    \"author\": \"莫拉格・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界学习\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学入门很简单\",\n    \"author\": \"兰晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的逻辑题\",\n    \"author\": \"亚历克斯・贝洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡入职培训第一课\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西成功定律\",\n    \"author\": \"拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡笔记思考法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键提问\",\n    \"author\": \"詹姆斯·E.瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俞军产品方法论\",\n    \"author\": \"俞军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹性\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟沟通课\",\n    \"author\": \"鱼住理英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱共情\",\n    \"author\": \"保罗・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力思维\",\n    \"author\": \"安东尼・塔斯加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑\",\n    \"author\": \"张羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导就是让人追随\",\n    \"author\": \"约翰・科特/霍尔格・拉斯格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险认知\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维与陷阱\",\n    \"author\": \"史蒂夫・卡斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"模型思维\",\n    \"author\": \"斯科特・佩奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048045-63863d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度说服\",\n    \"author\": \"梁秋阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挫折复原力\",\n    \"author\": \"丹尼斯・穆蓝纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反套路\",\n    \"author\": \"大卫・迪萨沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046386-816bad?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被左右的独立思维\",\n    \"author\": \"塔利・沙罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物思维\",\n    \"author\": \"查尔斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简捷启发式：有限理性让我们更聪明\",\n    \"author\": \"格尔德・吉仁泽等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电式扩张\",\n    \"author\": \"里德 · 霍夫曼/叶嘉新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略几何学\",\n    \"author\": \"罗伯特・凯德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆天才\",\n    \"author\": \"弗朗西斯卡・吉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为未知而教，为未来而学\",\n    \"author\": \"戴维・珀金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶馆（作家榜经典文库）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌：信息不足时如何做出高明决策\",\n    \"author\": \"安妮・杜克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智识的冒险\",\n    \"author\": \"潘启雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043764-78293a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧书（作家榜经典文库）\",\n    \"author\": \"巴尔塔萨尔・格拉西安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而不凡\",\n    \"author\": \"维申・拉克雅礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像开创者一样思考\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡图表工作法\",\n    \"author\": \"齐藤显一/竹内里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的创造力类型\",\n    \"author\": \"梅塔・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惯性思维\",\n    \"author\": \"任白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人极简图表工作法\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要输在思维方法上\",\n    \"author\": \"夏欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040785-53d198?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12堂趣味逻辑课\",\n    \"author\": \"阿里・阿莫萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040821-2fd4bd?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔原理2\",\n    \"author\": \"芭芭拉・明托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040257-8090ee?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反常识\",\n    \"author\": \"邓肯·J. 瓦茨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038859-8c613f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用主义和语用论\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性动物\",\n    \"author\": \"道格拉斯・肯里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学习\",\n    \"author\": \"斯科特・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何结交比你更优秀的人\",\n    \"author\": \"康妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11堂极简系统思维课\",\n    \"author\": \"史蒂文・舒斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037311-961ac9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败课\",\n    \"author\": \"周磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技巧：如何用一年时间获得十年的经验\",\n    \"author\": \"郝培强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生涯线\",\n    \"author\": \"戴维・范鲁伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035568-93b2da?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么\",\n    \"author\": \"朱迪亚・珀尓/达纳・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论大战略\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰度决策\",\n    \"author\": \"小约瑟夫・巴达拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极速写作\",\n    \"author\": \"剑飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控关系\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大潜能\",\n    \"author\": \"肖恩・埃科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034437-0178db?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：让所有事情都能正确入手\",\n    \"author\": \"凯茜・拉舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变提问，改变人生（原书第3版）\",\n    \"author\": \"梅若李・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失误：为什么我们总爱犯错？\",\n    \"author\": \"凯瑟琳・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转变：应对复杂新世界的思维方式\",\n    \"author\": \"弗雷德蒙德・马利克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何创建天才团队\",\n    \"author\": \"里奇・卡尔加德/迈克尔・马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么需要生物学思维\",\n    \"author\": \"塞缪尔・阿贝斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲从与叛逆\",\n    \"author\": \"米歇尔・巴德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的升级\",\n    \"author\": \"约翰・库奇/贾森・汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑与意识\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞奔的物种\",\n    \"author\": \"大卫・伊格曼/安东尼・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道\",\n    \"author\": \"芭芭拉・奥克利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033018-b16bf2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道（第2版）\",\n    \"author\": \"乔希・维茨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法：职场问题解决篇\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险创业\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进2：解锁万物的心智进化法\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自下而上\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲点：为什么我们易被偏见左右\",\n    \"author\": \"约瑟夫・哈利南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031374-2ecc9a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"升维：让你人生出众的另类通道\",\n    \"author\": \"褚明宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放你的大脑\",\n    \"author\": \"伊德里斯・阿贝尔坎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商：我们该如何应对坏事件\",\n    \"author\": \"保罗・史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知尺度\",\n    \"author\": \"魏坤琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·心灵篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030789-52e5c2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表象与本质\",\n    \"author\": \"侯世达/桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消极情绪的力量\",\n    \"author\": \"托德・卡什丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给所有人的编程思维\",\n    \"author\": \"吉姆・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实\",\n    \"author\": \"汉斯・罗斯林/欧拉・罗斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众（作家榜经典文库）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑思维与诡辩\",\n    \"author\": \"张晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030423-4cac61?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高阶运营\",\n    \"author\": \"龙共火火\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会创新\",\n    \"author\": \"罗德・贾金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030234-48a5cc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的艺术\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有你的计划，世界另有计划\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029721-72fca7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的哲学\",\n    \"author\": \"彼得・卡夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You are a Badass\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲（美国新思想运动之父的逻辑学入门读物）\",\n    \"author\": \"威廉・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞大作战（套装三册）\",\n    \"author\": \"玛特・富尼耶等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028755-fd2efe?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界精英的带人术\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027900-f1558d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习：用更短的时间达到更佳效果和更好成绩\",\n    \"author\": \"亚当・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知突围：做复杂时代的明白人\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高手：精英的见识和我们的时代\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：如何有效利用注意力做出理性决策\",\n    \"author\": \"川上浩司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027192-709fbf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果我们错了呢？\",\n    \"author\": \"查克・克洛斯特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027147-aafe1f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力变现\",\n    \"author\": \"林宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单统计学\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知迭代\",\n    \"author\": \"卡罗琳・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性之谜\",\n    \"author\": \"雨果・梅西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思维\",\n    \"author\": \"S.J. Scott/Barrie Davenport\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思辨与立场\",\n    \"author\": \"理查德・保罗/琳达・埃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知升级\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025041-559d0c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑力升级手册\",\n    \"author\": \"杰夫・布朗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024762-dccfd0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉泵和其他思考工具\",\n    \"author\": \"丹尼尔・丹尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变世界\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023787-eebab9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超意识\",\n    \"author\": \"菲尔图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错不在我\",\n    \"author\": \"卡罗尔・塔夫里斯/艾略特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023679-7893fe?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与原生家庭和解\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体赋能\",\n    \"author\": \"YouCore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售进化论\",\n    \"author\": \"陈欢/陈澄波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思维\",\n    \"author\": \"叶修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023460-34d28e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：不断逼近问题的本质\",\n    \"author\": \"莫琳・希凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单的逻辑学\",\n    \"author\": \"麦克伦尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知天性\",\n    \"author\": \"彼得・布朗/亨利・勒迪格三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象思维\",\n    \"author\": \"帕甘・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同感\",\n    \"author\": \"吉姆・西诺雷利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经的逻辑\",\n    \"author\": \"埃利泽・斯滕伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"态度\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023064-924c58?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在革命：一本关于成长的书\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好奇心：保持对未知世界永不停息的热情\",\n    \"author\": \"伊恩・莱斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022995-3678fc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深阅读\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终有一天你会懂\",\n    \"author\": \"琢磨先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么总是看错人\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022611-49a550?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：从思维到行动\",\n    \"author\": \"刘学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万万没想到：用理工科思维理解世界\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生总会有办法 : 用逆向思维解决难题\",\n    \"author\": \"戴维・尼文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"延展：释放有限资源的无限潜能\",\n    \"author\": \"斯科特・索南沙因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒思考：像麦肯锡精英一样思考\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021822-d42b59?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今日简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六顶思考帽：如何简单而高效的思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时机管理：完美时机的隐秘模式\",\n    \"author\": \"丹尼尔・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变人生\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法之美：指导工作与生活的算法\",\n    \"author\": \"布莱恩・克里斯汀/汤姆・格里菲思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021150-6920ac?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X的奇幻之旅\",\n    \"author\": \"史蒂夫・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何记忆\",\n    \"author\": \"罗恩・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020949-e41027?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知心理学（原书第5版）\",\n    \"author\": \"凯瑟琳・加洛蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020787-06bc90?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Thinking, Fast and Slow\",\n    \"author\": \"Daniel Kahneman\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020733-b4e6fa?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度案例思考法\",\n    \"author\": \"井上达彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020535-71effc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度模仿\",\n    \"author\": \"井上达彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020490-8e6c68?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有序：关于心智效率的认知科学\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020190-284690?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡思维\",\n    \"author\": \"洛威茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大创意的诞生\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019743-14b1f9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当机立断\",\n    \"author\": \"出口治明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝佳提问：探询改变商业与生活\",\n    \"author\": \"沃伦・贝格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功与运气\",\n    \"author\": \"罗伯特・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019080-7e8875?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压榨式提问\",\n    \"author\": \"布莱恩・格雷泽/查尔斯・菲什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018912-d6e59c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识的错觉\",\n    \"author\": \"史蒂文・斯洛曼/菲利普・费恩巴赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018315-259ab2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台革命：改变世界的商业模式\",\n    \"author\": \"杰奥夫雷 G. 帕克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不过低配的人生\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017898-288643?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效学习\",\n    \"author\": \"乌尔里希・伯泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗火\",\n    \"author\": \"史蒂芬・科特勒/杰米・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017394-61ea85?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能\",\n    \"author\": \"卫蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017163-f4def7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书是一辈子的事\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017013-d5b280?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决断力\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效提问\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016725-e622b1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（第十版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016674-f06b5d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆转\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016524-460c47?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸工作整理术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016548-7f5190?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸创意思考术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷恋：如何制造持久的吸引力\",\n    \"author\": \"莎莉・霍格斯黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016335-64929d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事思维\",\n    \"author\": \"安妮特・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维与创造性思维\",\n    \"author\": \"加里・R・卡比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016056-730262?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲\",\n    \"author\": \"威廉姆・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理的迷宫\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策的智慧\",\n    \"author\": \"大卫・亨德森/查尔斯・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性的非理性\",\n    \"author\": \"郑毓煌/苏丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015717-410de3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与理性\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015546-5d6351?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非天赋\",\n    \"author\": \"斯科特・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015531-e896f7?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒的困境\",\n    \"author\": \"威廉姆・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的大猩猩\",\n    \"author\": \"克里斯托弗・查布利斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交天性\",\n    \"author\": \"马修・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们如何正确思维\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人溺水\",\n    \"author\": \"拉里莎・麦克法夸尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请停止无效努力\",\n    \"author\": \"孙圈圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与判断\",\n    \"author\": \"斯科特・普劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规则颠覆者\",\n    \"author\": \"内田和成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015054-0bd70a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第七感\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助推\",\n    \"author\": \"理查德・泰勒/卡斯・桑斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014280-c17c13?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑匣子思维：我们如何更理性地犯错\",\n    \"author\": \"马修・萨伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014211-1c5f9b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何打造你的独特观点\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014178-6adf58?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新自信力\",\n    \"author\": \"戴维・凯利/汤姆・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破自我的标签\",\n    \"author\": \"陈虎平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗时间\",\n    \"author\": \"刘未鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Stealing Fire\",\n    \"author\": \"Steven Kotler / Jamie Wheal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013662-bcb2e6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论的诡计\",\n    \"author\": \"王春永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论平话\",\n    \"author\": \"王则柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"系统之美\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跃迁：成为高手的技术\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013161-eaef0d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"U型理论（全新升级版）\",\n    \"author\": \"奥托・夏莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013143-40fa8b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追时间的人\",\n    \"author\": \"阳志平等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013005-f92fca?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐性逻辑\",\n    \"author\": \"卡尔・诺顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012783-6ffa1c?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先发影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012780-a20378?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顿悟：捕捉灵感的艺术\",\n    \"author\": \"查尔斯・基弗/马尔科姆・康斯特布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012723-eac5ab?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的蓝色逻辑书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼数学\",\n    \"author\": \"乔丹・艾伦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012669-8145da?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微创新\",\n    \"author\": \"德鲁・博迪/雅各布・戈登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福商业决策课\",\n    \"author\": \"卡尔・斯佩茨勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的方法\",\n    \"author\": \"内森・弗尔/杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的基因\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才源自刻意练习\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012300-54ef8d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粘住\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011994-36d924?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的乐趣：Matrix67数学笔记\",\n    \"author\": \"顾森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是思维\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011256-cc5193?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提问的力量\",\n    \"author\": \"弗兰克・赛斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010539-958825?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"习惯的力量（图文精编版）\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维力：高效的系统思维\",\n    \"author\": \"王世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的本能：类比思维的力量\",\n    \"author\": \"约翰・波拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑天鹅：如何应对不可预知的未来（升级版）\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜意识：控制你行为的秘密\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009711-44b0d1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最重要的事，只有一件\",\n    \"author\": \"加里・凯勒/杰伊・帕帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智行动的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009012-b48f59?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冥想5分钟，等于熟睡一小时\",\n    \"author\": \"里克・汉森/理查德・蒙迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008994-681a13?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些古怪又让人忧心的问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008988-3e59d8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学的思维方式\",\n    \"author\": \"保罗・海恩/彼得・勃特克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008682-5efea1?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精要主义\",\n    \"author\": \"格雷戈・麦吉沃恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008661-c552a6?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活学活用博弈论\",\n    \"author\": \"詹姆斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构思考力\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来：更为简单有效的商业思维\",\n    \"author\": \"贾森・弗里德/大卫・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷读术（白金珍藏版）\",\n    \"author\": \"石真语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔原理\",\n    \"author\": \"芭芭拉・明托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007536-e10bf4?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稀缺：我们是如何陷入贫穷与忙碌的\",\n    \"author\": \"塞德希尔・穆来纳森 / 埃尔德・沙菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡工具\",\n    \"author\": \"保罗・弗里嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要自学\",\n    \"author\": \"张玳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆谱：身份的潜规则\",\n    \"author\": \"余不讳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考，快与慢\",\n    \"author\": \"丹尼尔・卡尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清单革命\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决问题最简单的方法\",\n    \"author\": \"达伦・布里奇/戴维・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神逻辑：不讲道理的人怎么总有理\",\n    \"author\": \"阿里·阿莫萨维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007029-6c71ef?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进：如何成为一个很厉害的人\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险与好的决策\",\n    \"author\": \"格尔德·吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷禁书\",\n    \"author\": \"查尔斯・哈尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维（原书第10版）\",\n    \"author\": \"布鲁克·诺埃尔·摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维工具（原书第3版）\",\n    \"author\": \"理查德·保罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006525-573ffd?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台战略\",\n    \"author\": \"陈威如/余卓轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院最受欢迎的思维课\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行在宽处\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗辑思维合集（套装共5册）\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006180-058c85?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维：商业颠覆与重构\",\n    \"author\": \"陈光锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（20周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长的极限\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化思维\",\n    \"author\": \"凯文・韦巴赫/丹・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆力训练法\",\n    \"author\": \"刘志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005052-7a59fb?p=8866\",\n    \"category\": \"思维\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攻守：可转债投资实用手册\",\n    \"author\": \"饕餮海等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492006-a0e7e3?p=8866\",\n    \"category\": \"可转债\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书（第2版）\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866\",\n    \"category\": \"可转债\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866\",\n    \"category\": \"可转债\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三个警察\",\n    \"author\": \"弗兰・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046809-668e12?p=8866\",\n    \"category\": \"爱尔兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个青年艺术家的画像（读客经典）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024966-4ddb18?p=8866\",\n    \"category\": \"爱尔兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林人\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020115-886df2?p=8866\",\n    \"category\": \"爱尔兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤利西斯\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013971-811c23?p=8866\",\n    \"category\": \"爱尔兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤汤奇幻童年故事本（套装6册）\",\n    \"author\": \"汤汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事经济学\",\n    \"author\": \"罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样写故事\",\n    \"author\": \"莉萨・克龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的大脑失控了\",\n    \"author\": \"银教授/温酒/英国报姐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032685-82f30e?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你坏\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022809-a0e444?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事思维\",\n    \"author\": \"安妮特・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲出一个精彩故事\",\n    \"author\": \"麦成辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样写出好故事\",\n    \"author\": \"詹姆斯・斯科特・贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011034-28e8b6?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尔德·达尔作品典藏（共13册）\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866\",\n    \"category\": \"故事\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照诗词全集（作家榜经典文集）\",\n    \"author\": \"李清照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳永词集（词系列）\",\n    \"author\": \"柳永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033708-dc7a4b?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词集（词系列）\",\n    \"author\": \"姜夔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陆游词集（词系列）\",\n    \"author\": \"陆游\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词三百首（作家榜经典文库）\",\n    \"author\": \"上彊村民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027120-8ec566?p=8866\",\n    \"category\": \"宋词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知乎一小时「补课系列」套装\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011235-8d096d?p=8866\",\n    \"category\": \"知乎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近视怎么办：眼科医生教你正确配镜和治疗\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007638-12f9a2?p=8866\",\n    \"category\": \"知乎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱有术\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866\",\n    \"category\": \"知乎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业时，我们在知乎聊什么？\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866\",\n    \"category\": \"知乎\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长危机\",\n    \"author\": \"丹比萨・莫约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改革者\",\n    \"author\": \"深圳创新发展研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032715-7f3498?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小岗村40年\",\n    \"author\": \"贾鸿彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革三部曲\",\n    \"author\": \"吴敬琏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本维新六十年\",\n    \"author\": \"樱雪丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026166-909097?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两面之词：关于革命问题的通信\",\n    \"author\": \"雷吉斯・德布雷/赵汀阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020256-b9bfc5?p=8866\",\n    \"category\": \"改革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1打造个人品牌\",\n    \"author\": \"王一九\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级标签\",\n    \"author\": \"闫跃龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997891-01926e?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新品牌\",\n    \"author\": \"高端训\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2小时品牌素养\",\n    \"author\": \"邓德隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可口可乐传\",\n    \"author\": \"马克・彭德格拉斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌洗脑（珍藏版）\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866\",\n    \"category\": \"品牌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一往无前\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866\",\n    \"category\": \"小米\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米逻辑\",\n    \"author\": \"吴正炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018564-06c2df?p=8866\",\n    \"category\": \"小米\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米生态链战地笔记\",\n    \"author\": \"小米生态链谷仓学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866\",\n    \"category\": \"小米\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧烤怪谈\",\n    \"author\": \"蔡必贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866\",\n    \"category\": \"烧脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本书书名无法描述本书内容\",\n    \"author\": \"埃里克・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866\",\n    \"category\": \"烧脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎鲨游戏之十重人格女孩\",\n    \"author\": \"王健霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866\",\n    \"category\": \"烧脑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昭奚旧草（套装共2册）\",\n    \"author\": \"书海沧生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009678-61145d?p=8866\",\n    \"category\": \"古言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"临渊（全2册）\",\n    \"author\": \"尤四姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007251-590cf4?p=8866\",\n    \"category\": \"古言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新食货志\",\n    \"author\": \"杜君立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866\",\n    \"category\": \"经济史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情的革命\",\n    \"author\": \"乔伊斯・阿普尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866\",\n    \"category\": \"经济史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族、土地与祖先\",\n    \"author\": \"易劳逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866\",\n    \"category\": \"经济史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济增长的迷雾\",\n    \"author\": \"威廉・伊斯特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866\",\n    \"category\": \"经济史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事：材质、结构、风格和银幕剧作的原理\",\n    \"author\": \"罗伯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022953-524f05?p=8866\",\n    \"category\": \"创作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转化率实战技巧从入门到精通\",\n    \"author\": \"营销铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510741-6aef3c?p=8866\",\n    \"category\": \"电子商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"揭秘跨境电商\",\n    \"author\": \"李鹏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028146-739f5b?p=8866\",\n    \"category\": \"电子商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨境电商宝典（套装共2册）\",\n    \"author\": \"孙韬/老魏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021741-39f857?p=8866\",\n    \"category\": \"电子商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一键下单：杰夫·贝佐斯与亚马逊的崛起\",\n    \"author\": \"理查德・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866\",\n    \"category\": \"电子商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖24：啊！又想吃零食了\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖21：酒的全事典\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖22：多谢款待！\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044475-b4a83f?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖19：下午茶时间到\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖17：蔬菜多好吃啊\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖18：真的，烤箱什么都能做\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖15：便当灵感集\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖16：大满足！就爱锅料理\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖13：腐的品格\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖14：小聚会教科书\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖10：早餐，真的太重要了\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖12：厨房，治愈人生的避难所\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖09：了不起的面包\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042822-a3f181?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖05：全宇宙都在吃甜品\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866\",\n    \"category\": \"食帖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝者之书\",\n    \"author\": \"法医秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998971-364375?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗冤集录注评\",\n    \"author\": \"宋慈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053118-be8da5?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法醫·屍體·解剖室（套装共3册）\",\n    \"author\": \"道格拉斯．萊爾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034428-aee5f1?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024783-34b504?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈大传\",\n    \"author\": \"王宏甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑背鱼之谜\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医手记系列套装（全四册）\",\n    \"author\": \"刘真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之尸体加工厂\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之活体贩卖者\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之骨头收藏家\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸存者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清道夫\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一根手指\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声的证词\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸语者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866\",\n    \"category\": \"法医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你的肥胖自愈\",\n    \"author\": \"刘松景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004044-0541d7?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥胖代码\",\n    \"author\": \"冯子新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本减肥书\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样减肥不反弹\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭情绪的力量\",\n    \"author\": \"珍妮弗・泰兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会发胖\",\n    \"author\": \"盖里・陶比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去你的脂肪\",\n    \"author\": \"格兰特・斯科菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总觉得饿？\",\n    \"author\": \"大卫. 路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能减脂\",\n    \"author\": \"张景琦/孟令超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866\",\n    \"category\": \"减肥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像火箭科学家一样思考\",\n    \"author\": \"奥赞・瓦罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果人类是整个宇宙的大脑\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003759-1d9daf?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘾：让人上瘾的产品、广告与创意背后的秘密\",\n    \"author\": \"吴文芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意选择\",\n    \"author\": \"肯・科钦达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微文案\",\n    \"author\": \"朱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆流行\",\n    \"author\": \"德里克・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和毕加索一起淋浴\",\n    \"author\": \"克里斯蒂安・斯塔迪尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的创造力类型\",\n    \"author\": \"梅塔・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞\",\n    \"author\": \"马修・桑托罗/杰克・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029172-3654fd?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象思维\",\n    \"author\": \"帕甘・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形式感+\",\n    \"author\": \"晋小彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸创意思考术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866\",\n    \"category\": \"创意\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏着：一个西班牙人的33年内战人生\",\n    \"author\": \"罗纳德・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001866-8ba183?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞万提斯全集（全八卷）\",\n    \"author\": \"米格尔・德・塞万提斯・萨阿维德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988813-dff794?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙史（贝克知识丛书）\",\n    \"author\": \"瓦尔特·L.伯尔奈克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙无敌舰队\",\n    \"author\": \"加勒・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎仗剑寻书记\",\n    \"author\": \"阿图罗・佩雷斯-雷维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035358-e49843?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马俱乐部\",\n    \"author\": \"阿图罗・佩雷斯-雷维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035409-35f8e0?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊莎贝拉\",\n    \"author\": \"克斯汀・唐尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的影子帝国\",\n    \"author\": \"皮耶尔保罗・巴维里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙内战：真相、疯狂与死亡\",\n    \"author\": \"阿曼达・维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020454-d9c2eb?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉吟（短经典）\",\n    \"author\": \"梅尔塞・罗多雷达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012465-2aeabb?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河流之声\",\n    \"author\": \"乔莫・卡夫雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008703-83cb6f?p=8866\",\n    \"category\": \"西班牙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高卢战记\",\n    \"author\": \"盖乌斯・尤利乌斯・恺撒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030762-72487f?p=8866\",\n    \"category\": \"古代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：重说中国古代史\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005799-2834e7?p=8866\",\n    \"category\": \"古代史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌与钢铁（修订版）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金泽：江南民间祭祀探源\",\n    \"author\": \"李天纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西成功定律\",\n    \"author\": \"拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘型人格障碍\",\n    \"author\": \"兰迪・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（译文经典）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口浪潮\",\n    \"author\": \"保罗・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观从何而来\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才在左，疯子在右\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类不平等的起源和基础（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"色情\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"链接未找到\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的西方（译文经典）\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图绘暹罗\",\n    \"author\": \"通猜・威尼差恭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族、土地与祖先\",\n    \"author\": \"易劳逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德浪女\",\n    \"author\": \"朵思.伊斯頓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃在拂晓\",\n    \"author\": \"克里斯托弗・莱恩/卡西尔达・杰萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸猿三部曲（裸猿+人类动物园+亲密行为）\",\n    \"author\": \"德斯蒙德·莫利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866\",\n    \"category\": \"社会学人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"PHP和MySQL Web开发（原书第4版）\",\n    \"author\": \"Luke Welling\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866\",\n    \"category\": \"MYSQL\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场第一课（套装共5册）\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866\",\n    \"category\": \"商务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样发言\",\n    \"author\": \"久久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李诞脱口秀工作手册\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时这样说就好了\",\n    \"author\": \"伊庭正康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带货王\",\n    \"author\": \"李瑛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本口才书\",\n    \"author\": \"陈慕妤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场谈判经典书系（套装共3册）\",\n    \"author\": \"德雷克・阿顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课3\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED说话的力量\",\n    \"author\": \"阿卡什·P.卡里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判的艺术\",\n    \"author\": \"于反\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986518-9ea72b?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服力：如何让沟通充满逻辑与技巧\",\n    \"author\": \"白丽洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986359-ce2061?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服力：如何让沟通充满逻辑（全新升级版）\",\n    \"author\": \"白丽洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985729-c3f598?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓情商高，就是会说话\",\n    \"author\": \"佐佐木圭一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马云的说话之道（2019版）\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不怯场\",\n    \"author\": \"译夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042144-f8796b?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不会拒绝上\",\n    \"author\": \"李劲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准表达：开口就能说重点\",\n    \"author\": \"牛津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026985-8d194b?p=8866\",\n    \"category\": \"口才\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌（纪念版）\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：掌握直线销售的艺术\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的财富帝国\",\n    \"author\": \"彼得・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大而不倒\",\n    \"author\": \"安德鲁・罗斯・索尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020553-c64dc1?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的博弈\",\n    \"author\": \"约翰・斯蒂尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街潜规则\",\n    \"author\": \"乔舒亚・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大空头\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻资本\",\n    \"author\": \"凯文·鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门口的野蛮人\",\n    \"author\": \"布赖恩・伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866\",\n    \"category\": \"华尔街\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英殖民帝国\",\n    \"author\": \"阿尔弗雷德・考尔德科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866\",\n    \"category\": \"全球史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东言西语\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866\",\n    \"category\": \"方言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南腔北调：在语言中重新发现中国\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866\",\n    \"category\": \"方言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道地球的奥秘\",\n    \"author\": \"戴维・比尔林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499872-69554e?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖动植物图鉴\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方草木之美\",\n    \"author\": \"西莉亚・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌物志\",\n    \"author\": \"斑斑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的浪漫史\",\n    \"author\": \"诺曼・C.埃尔斯特兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512688-2974e3?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法布尔植物记：手绘珍藏版（套装共2册）\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040536-bfadef?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之美：奇异植物的生存智慧\",\n    \"author\": \"林十之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031011-6d2792?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"植物知道生命的答案\",\n    \"author\": \"丹尼尔・查莫维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好！植物（全彩）\",\n    \"author\": \"喵喵植物控\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物文库精美丛书\",\n    \"author\": \"约瑟夫・胡克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017430-ca5c6c?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的森林\",\n    \"author\": \"戴维・哈斯凯尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866\",\n    \"category\": \"植物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript权威指南（第6版）\",\n    \"author\": \"David Flanagan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866\",\n    \"category\": \"开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险地活着\",\n    \"author\": \"汉斯・舒茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866\",\n    \"category\": \"记录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢问路在何方\",\n    \"author\": \"杨洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012768-569107?p=8866\",\n    \"category\": \"记录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾雷德·戴蒙德作品集（套装共4册）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛雅三千年\",\n    \"author\": \"西尔韦纳斯・莫利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499653-c0d007?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落文明系列（套装共7卷）\",\n    \"author\": \"克里斯蒂娜・里格斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轴心时代\",\n    \"author\": \"凯伦・阿姆斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明（套装共2册）\",\n    \"author\": \"玛丽・比尔德/戴维・奥卢索加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年文明史\",\n    \"author\": \"勒尔・兹威克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的历史（全5册）\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联结：通向未来的文明史\",\n    \"author\": \"詹姆斯・伯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典遗产：希腊的遗产+罗马的遗产\",\n    \"author\": \"M.I.芬利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029247-2b7b69?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的故事（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗失的姆大陆之谜\",\n    \"author\": \"詹姆斯・乔治瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝路回响-文明的交融（套装共7册)\",\n    \"author\": \"三联生活周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020697-bb72e0?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国原生文明启示录\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些惊心动魄的人类文明史（套装共18册）\",\n    \"author\": \"曹胜高等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简欧洲史\",\n    \"author\": \"约翰・赫斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866\",\n    \"category\": \"文明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技新时代\",\n    \"author\": \"伊夫・埃奥内/埃尔维・芒斯龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866\",\n    \"category\": \"银行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天我们怎样做银行\",\n    \"author\": \"陈琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990358-270f5d?p=8866\",\n    \"category\": \"银行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣的金融\",\n    \"author\": \"董希淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044286-e08e10?p=8866\",\n    \"category\": \"银行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信贷的逻辑与常识\",\n    \"author\": \"刘元庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866\",\n    \"category\": \"银行\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅\",\n    \"author\": \"皮翠拉・瑞沃莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866\",\n    \"category\": \"国际\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争哀歌\",\n    \"author\": \"保宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052341-f29a44?p=8866\",\n    \"category\": \"越南\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越南密战：1950-1954中国援越战争纪实\",\n    \"author\": \"钱江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866\",\n    \"category\": \"越南\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱革命\",\n    \"author\": \"安妮・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490917-6f069c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富是认知的变现\",\n    \"author\": \"舒泰峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490950-03b116?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耐心的资本\",\n    \"author\": \"维多利亚・伊凡希娜/乔希・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495492-4e8778?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级资管\",\n    \"author\": \"乔永远/孔祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为金融学\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497613-50ebe9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新金融帝国\",\n    \"author\": \"田中道昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497616-4a5b13?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国资本市场变革\",\n    \"author\": \"肖钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497634-635389?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资者\",\n    \"author\": \"丹尼尔・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资核心资产\",\n    \"author\": \"王德伦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国货币史（精校本）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非凡的成功\",\n    \"author\": \"大卫・史文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499398-92a3da?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街教父格雷厄姆传\",\n    \"author\": \"本杰明・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500121-c5ae86?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊群的共识\",\n    \"author\": \"肖小跑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500187-e6d4a0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学4：理财篇\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500430-536636?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"预测：经济、周期与市场泡沫\",\n    \"author\": \"洪灝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储\",\n    \"author\": \"威廉・格雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502575-8350f8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、资本与投资\",\n    \"author\": \"丁昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CFA协会金融前沿译丛（套装共5册）\",\n    \"author\": \"杰弗里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504405-6fda6c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元真相\",\n    \"author\": \"达尔辛妮・大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链实战：从技术创新到商业模式\",\n    \"author\": \"冒志鸿/陈俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势的力量\",\n    \"author\": \"李迅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：嘉信理财持续创新之道\",\n    \"author\": \"查尔斯・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的逻辑与艺术\",\n    \"author\": \"陈侃迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩盘：全球金融危机如何重塑世界\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510096-bd2d0a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易的真相\",\n    \"author\": \"极地之鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴芒演义\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510399-e55bd3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新增点\",\n    \"author\": \"管清友等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510843-826852?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产是部金融史\",\n    \"author\": \"黄立坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱的千年兴衰史\",\n    \"author\": \"金菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险投资的逻辑与常识\",\n    \"author\": \"莱恩・巴特森/肯・弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512811-ca0121?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金的故事\",\n    \"author\": \"詹姆斯・莱德贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513099-a6d2c2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服市场的人\",\n    \"author\": \"格里高利・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513291-9c5177?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融激荡300年\",\n    \"author\": \"瀛洲客\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513660-81fac3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（上）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资者的朋友\",\n    \"author\": \"朱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513738-d81882?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图方法（原书第2版）\",\n    \"author\": \"斯蒂芬·W. 比加洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004659-15d3f7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资者的敌人\",\n    \"author\": \"朱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004545-ac76c4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资策略实战分析（原书第4版·典藏版）\",\n    \"author\": \"詹姆斯・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（典藏版）\",\n    \"author\": \"格里高里・莫里斯/赖安・里奇菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为金融与投资心理学（原书第6版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004407-2a20bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稳赚：提升理财收益的投资工具\",\n    \"author\": \"李红萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常赢投资系列（套装共5册）\",\n    \"author\": \"帕特・多尔西等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆经典投资策略\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明、现代化、价值投资与中国\",\n    \"author\": \"李录\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003972-3db08b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资交易心理分析（典藏版）\",\n    \"author\": \"布雷特 N. 斯蒂恩博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭周期：自上而下的投资逻辑\",\n    \"author\": \"乔治・达格尼诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003702-297e59?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"票据革命\",\n    \"author\": \"张立洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003528-1640ad?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世风日上\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争\",\n    \"author\": \"詹姆斯・里卡兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003357-d4da5a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐远的投资课\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24堂财富课\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002823-f70963?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像读悬疑小说一样读懂会计学\",\n    \"author\": \"田中靖浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002445-d51d8d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易圣经\",\n    \"author\": \"布伦特・奔富\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富管理的行为金融\",\n    \"author\": \"迈克尔·M.庞皮恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001725-bf1b89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技新时代\",\n    \"author\": \"伊夫・埃奥内/埃尔维・芒斯龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富思维\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000345-3f82f4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画投资学一看就懂\",\n    \"author\": \"武敬敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999472-902044?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美元病\",\n    \"author\": \"叶冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998812-5c6954?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构性改革\",\n    \"author\": \"黄奇帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997597-3d930f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资21戒\",\n    \"author\": \"本・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"ETF全球投资指南\",\n    \"author\": \"王延巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994768-9ce779?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大钱细思\",\n    \"author\": \"乔尔・蒂林哈斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的怪圈\",\n    \"author\": \"贾森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家庭财富保卫攻略\",\n    \"author\": \"王昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借钱：利息、债务和资本的故事\",\n    \"author\": \"查尔斯・盖斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期投资\",\n    \"author\": \"弗朗西斯科・加西亚・帕拉梅斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991150-020ce0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新货币战争\",\n    \"author\": \"诺伯特・海林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990925-93e06e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天我们怎样做银行\",\n    \"author\": \"陈琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990358-270f5d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事经济学\",\n    \"author\": \"罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益2\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989473-64fb2e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G金融\",\n    \"author\": \"莫开伟/陈名银/邱泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988384-74644e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球房地产\",\n    \"author\": \"夏磊/任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非对称风险\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投机者的告白（实战版）\",\n    \"author\": \"安纳金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的常识\",\n    \"author\": \"布拉德福德・康纳尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性市场\",\n    \"author\": \"罗闻全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水库论坛欧神作品（共2册）\",\n    \"author\": \"欧成效\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无常的博弈\",\n    \"author\": \"陆一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985033-817187?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是怎么割韭菜的\",\n    \"author\": \"查尔斯・庞兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984592-f438eb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富可敌国（经典版）\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲\",\n    \"author\": \"阿莉森・施拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精明投资者的满分课\",\n    \"author\": \"孙旭东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个金融大鳄2\",\n    \"author\": \"邓荣栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052422-c462a6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球金融体系\",\n    \"author\": \"黄海洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051942-839ed7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个金融大鳄\",\n    \"author\": \"邓荣栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051852-ff30a4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析圣经\",\n    \"author\": \"理查德·W·夏巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读华尔街（原书第5版）\",\n    \"author\": \"杰弗里 B 利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051507-55c3ee?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资心理学（原书第5版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱从哪里来\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明斯基时刻\",\n    \"author\": \"兰德尔・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051318-a2c092?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色的羁绊\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权、期货及其他衍生产品（原书第9版）\",\n    \"author\": \"约翰・赫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得懂的金融投资课\",\n    \"author\": \"向松祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资思想史（珍藏版）\",\n    \"author\": \"马克・鲁宾斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050625-389c43?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员\",\n    \"author\": \"杰克D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的眼睛\",\n    \"author\": \"吴卫军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进我的交易室\",\n    \"author\": \"亚历山大・艾尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的护城河（新版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭交易（原书第2版）\",\n    \"author\": \"约翰・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币围城\",\n    \"author\": \"约翰・莫尔丁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国经济下半场（套装共25册）\",\n    \"author\": \"陈元/钱颖一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币之惑\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金股博弈（第4版）\",\n    \"author\": \"弈樊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大熊市启示录（原书第4版）\",\n    \"author\": \"拉塞尔・纳皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭火：美国金融危机及其教训\",\n    \"author\": \"本・伯南克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python金融大数据分析\",\n    \"author\": \"伊夫・希尔皮斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币变局\",\n    \"author\": \"巴里・艾肯格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向投资策略\",\n    \"author\": \"大卫・德雷曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战（典藏版）\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048705-a6c49c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给年轻人的极简金融课\",\n    \"author\": \"童哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047652-cac8d7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就业、利息与货币通论（去梯言系列）\",\n    \"author\": \"约翰・梅纳德・凯恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047628-8cc56b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零起点Python大数据与量化交易\",\n    \"author\": \"何海群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易冠军\",\n    \"author\": \"马丁・舒华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币金融学（原书第2版）\",\n    \"author\": \"弗雷德里克S.米什金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个农民的亿万传奇\",\n    \"author\": \"傅海棠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融市场与金融机构（原书第7版）\",\n    \"author\": \"弗雷德里克 S. 米什金/斯坦利 G. 埃金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来之路：金融的力量与责任\",\n    \"author\": \"贲圣林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046938-1c5b3e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特波浪理论：研判股市底部与顶部的有效工具\",\n    \"author\": \"拉尔夫·N·艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权：就这么简单\",\n    \"author\": \"韩冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期（珍藏版）\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期2\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣与衰退\",\n    \"author\": \"艾伦・格林斯潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经Ⅱ\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046155-96b7bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股权战争（全新升级版）\",\n    \"author\": \"苏龙飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新金融怪杰\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市遇见凯恩斯\",\n    \"author\": \"约翰 F. 瓦辛科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给投资新手的极简股票课\",\n    \"author\": \"lip师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易（原书第2版）\",\n    \"author\": \"艾琳・奥尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有（新版）\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗斯柴尔德家族（套装上中下册）\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044967-b617e0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本圈\",\n    \"author\": \"熊昌烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044658-bf19ba?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历巴菲特股东大会\",\n    \"author\": \"杰夫・马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣的金融\",\n    \"author\": \"董希淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044286-e08e10?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我如何从股市赚了200万（珍藏版）\",\n    \"author\": \"尼古拉斯・达瓦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂黄金白银投资理财\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资入门与实战技巧\",\n    \"author\": \"王坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看盘方法与技巧一本通\",\n    \"author\": \"老牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格林斯潘传\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益融合战法\",\n    \"author\": \"约翰・帕利卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白矮星：交易员的心理与交易体系\",\n    \"author\": \"赛博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043554-fc98f2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸系列全集（套装共32册）\",\n    \"author\": \"罗伯特・清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043707-53aa09?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特与索罗斯的投资习惯（纪念版）\",\n    \"author\": \"马克・泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑马波段操盘术（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌（纪念版）\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"振荡指标MACD（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（一）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042762-ba6b8b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业冒险\",\n    \"author\": \"约翰・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在苍茫中传灯\",\n    \"author\": \"姚斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生Ⅱ\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易员\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市场真相\",\n    \"author\": \"杰克D.施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步华尔街（原书第11版）\",\n    \"author\": \"伯顿G.马尔基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球投资\",\n    \"author\": \"林起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特高收益投资策略\",\n    \"author\": \"吉瓦・拉玛斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债券投资实战\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12年20倍\",\n    \"author\": \"唐彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的投资组合（珍藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本炒股书\",\n    \"author\": \"杨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索罗斯传（白金珍藏版）\",\n    \"author\": \"罗伯特・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量价分析\",\n    \"author\": \"安娜・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的真谛\",\n    \"author\": \"路易吉・津加莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事（全新升级版）\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的与看不见的\",\n    \"author\": \"巴斯夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038388-dd5409?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的智慧（原书第2版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038406-87e81f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被平均的风险\",\n    \"author\": \"萨姆・萨维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038088-8edfbb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期录\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力K线擒大牛\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压力测试\",\n    \"author\": \"蒂莫西・盖特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极型资产配置指南\",\n    \"author\": \"马丁 J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债：第一个5000年\",\n    \"author\": \"大卫・格雷伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037263-d306b9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卧底经济学（套装共4册）\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037194-590484?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员（典藏版）\",\n    \"author\": \"杰克 D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界金融危机史经典丛书共6册\",\n    \"author\": \"约翰・莫尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037032-23759e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券混沌操作法（典藏版）\",\n    \"author\": \"比尔・威廉斯/贾丝廷・格雷戈里-威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嚣张的特权\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金怪杰（典藏版）\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"50人的二十年\",\n    \"author\": \"樊纲/易纲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第4版·典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036117-c98548?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨市场交易策略（典藏版）\",\n    \"author\": \"约翰 J. 墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035916-7ada89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜华尔街（典藏版）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解（典藏版）\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向格雷厄姆学思考，向巴菲特学投资\",\n    \"author\": \"劳伦斯・坎宁安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客户的游艇在哪里（典藏版）\",\n    \"author\": \"小弗雷德・施韦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035148-7cc8c3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特阴谋\",\n    \"author\": \"余治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢得输家的游戏（原书第6版）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：私募风云\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034311-81e387?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转变：应对复杂新世界的思维方式\",\n    \"author\": \"弗雷德蒙德・马利克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：一个影子私募基金经理的自白\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033699-597e93?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务诡计\",\n    \"author\": \"霍华德·M.施利特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：危险交易\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚定不移\",\n    \"author\": \"保罗・沃尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越金融（纪念版）\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透信贷\",\n    \"author\": \"何华平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现价格\",\n    \"author\": \"姜洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透IPO\",\n    \"author\": \"沈春晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂生活中的金融常识\",\n    \"author\": \"陈思进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济史\",\n    \"author\": \"钱穆/叶龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养（增订版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂财报\",\n    \"author\": \"肖星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜一切市场的人\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美林传奇\",\n    \"author\": \"小温斯洛普 H.史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释：王福重金融学通识课\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030924-fca2c3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔经济学奖的逻辑\",\n    \"author\": \"阿夫纳・奥弗尔/加布里埃尔・索德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030366-30de9b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事与估值\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务危机\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌金者：长期资本管理公司的升腾与陨落\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027954-43ce5e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的投资思想\",\n    \"author\": \"戴维・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涛动周期论\",\n    \"author\": \"周金涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本保险指南\",\n    \"author\": \"槽叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融科技\",\n    \"author\": \"张健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026967-ef96b8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的财富帝国\",\n    \"author\": \"彼得・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧2\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗钱内幕\",\n    \"author\": \"姚耀/秋叶良和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025722-0dbcb6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从众危机\",\n    \"author\": \"路德维希 B. 钦塞瑞尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025674-a4b790?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币大师\",\n    \"author\": \"埃里克・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024936-eb9734?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（学习篇）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大鳄三部曲\",\n    \"author\": \"仇晓慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024561-f0ec75?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为什么离开高盛\",\n    \"author\": \"格雷格・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师2\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧元的思想之争\",\n    \"author\": \"马库斯・布伦纳迈耶等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023955-ebc85a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国风云录（共5册）\",\n    \"author\": \"茜拉・科尔哈特卡等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023586-f64635?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大而不倒\",\n    \"author\": \"安德鲁・罗斯・索尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理美元\",\n    \"author\": \"船桥洋一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023124-73dd6d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人2\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022887-a6b83d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金牌投资人3\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022890-b575df?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势交易\",\n    \"author\": \"安德烈亚斯 F. 克列诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本全球化\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑石的选择\",\n    \"author\": \"彼得・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021963-e5f1f3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私募的进化\",\n    \"author\": \"格上研究中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济的律动\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021153-d537b4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手回忆录\",\n    \"author\": \"埃德文・拉斐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理者14天看懂财务报表\",\n    \"author\": \"闫静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021048-ccb824?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股民的眼泪\",\n    \"author\": \"张华桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最富足的投资\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020763-38a84b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亿万：围剿华尔街大白鲨\",\n    \"author\": \"茜拉・科尔哈特卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：金融之王卡尔·伊坎传\",\n    \"author\": \"马克・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020559-859f48?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020553-c64dc1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储的诞生\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的估值逻辑\",\n    \"author\": \"林安霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动的勇气\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020406-9e3f24?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融投资400年\",\n    \"author\": \"查尔斯・马凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020064-c7c756?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国之弧\",\n    \"author\": \"乔良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020010-32ddc9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影子银行内幕：下一个次贷危机的源头（修订版）\",\n    \"author\": \"张化桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的规则\",\n    \"author\": \"张巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019746-4daf20?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗池\",\n    \"author\": \"帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值\",\n    \"author\": \"埃斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019614-245776?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"King of Capital\",\n    \"author\": \"David Carey/John E. Morris\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析（原书第10版）\",\n    \"author\": \"罗伯特 D. 爱德华兹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融可以颠覆历史\",\n    \"author\": \"王巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"并购估值\",\n    \"author\": \"克里斯 M. 梅林/弗兰克 C. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019248-0fcfaa?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3G资本帝国\",\n    \"author\": \"克里斯蒂娜・柯利娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的原则\",\n    \"author\": \"特兰・格里芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017835-758d98?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁金服：从支付宝到新金融生态圈\",\n    \"author\": \"廉薇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017802-c45526?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当音乐停止之后\",\n    \"author\": \"艾伦・布林德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017622-dcb745?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷查理宝典：查理·芒格智慧箴言录\",\n    \"author\": \"查理・芒格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017781-abd324?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可转债投资魔法书\",\n    \"author\": \"安道全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"您厉害，您赚得多\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邓普顿教你逆向投资\",\n    \"author\": \"劳伦・邓普顿/斯科特・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017418-95c7db?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲刺白马股\",\n    \"author\": \"启明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资中不简单的事\",\n    \"author\": \"邱国鹭等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017031-9bb190?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资中最简单的事\",\n    \"author\": \"邱国鹭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017019-676d89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Business Adventures\",\n    \"author\": \"John Brooks\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌神数学家\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳着踢踏舞去上班\",\n    \"author\": \"卡萝尔・卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的投资者\",\n    \"author\": \"本杰明・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016575-efb66d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得林奇投资经典全集（共3册）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Fintech：全球金融科技权威指南\",\n    \"author\": \"苏珊娜・奇斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱永不眠：资本世界的暗流涌动和金融逻辑\",\n    \"author\": \"香帅无花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术的终结\",\n    \"author\": \"默文・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015246-2b570e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币野史\",\n    \"author\": \"菲利克斯・马汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的本质\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特幕后智囊：查理·芒格传\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史\",\n    \"author\": \"卡比尔・塞加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威科夫操盘法\",\n    \"author\": \"孟洪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为投资学手册\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014502-344441?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不落俗套的成功\",\n    \"author\": \"大卫・斯文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯粹经济学\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013980-1ffdbe?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球系列（套装共6册）\",\n    \"author\": \"唐朝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013536-91355d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化投资策略\",\n    \"author\": \"理查德・托托里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的博弈\",\n    \"author\": \"约翰・斯蒂尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济大萧条还有多远\",\n    \"author\": \"刘军洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012900-3ec719?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国富人为何变穷\",\n    \"author\": \"张庭宾/艾经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本金融入门书\",\n    \"author\": \"邹一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012303-007194?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读量化投资\",\n    \"author\": \"忻海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资哲学：保守主义的智慧之灯\",\n    \"author\": \"刘军宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012027-429b8e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银帝国\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物精神\",\n    \"author\": \"乔治・阿克洛夫/罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011916-aa3741?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货大作手风云录\",\n    \"author\": \"刘强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易：高手训练营\",\n    \"author\": \"埃德・蓬西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易的10堂必修课\",\n    \"author\": \"贾里德・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"债务和魔鬼\",\n    \"author\": \"阿代尔・特纳勋爵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011802-eff8c4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：一部历史\",\n    \"author\": \"诺顿・雷默/杰西・唐宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011655-2f93f9?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链革命\",\n    \"author\": \"唐塔普斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011610-23b769?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史2\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟交易法则（珍藏版）\",\n    \"author\": \"柯蒂斯・费思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贼巢\",\n    \"author\": \"詹姆斯・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会估值，轻松投资\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年金融史\",\n    \"author\": \"威廉・戈兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链社会\",\n    \"author\": \"龚鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融炼金术\",\n    \"author\": \"乔治・索罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势研判：经济、政策与资本市场\",\n    \"author\": \"任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争（套装共5册）\",\n    \"author\": \"宋鸿兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱商\",\n    \"author\": \"阿瑟・黑利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009600-e4c107?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类货币史\",\n    \"author\": \"戴维・欧瑞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宽客人生：从物理学家到数量金融大师的传奇\",\n    \"author\": \"伊曼纽尔・德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街幽灵\",\n    \"author\": \"阿瑟・辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随机漫步的傻瓜\",\n    \"author\": \"戴纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁金服\",\n    \"author\": \"由曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008874-46e181?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大揭秘：庞氏骗局的前世今生\",\n    \"author\": \"柯琳・克罗丝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008772-79825d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜厅\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008706-d0afd8?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街潜规则\",\n    \"author\": \"乔舒亚・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风口上的猪：一本书看懂互联网金融\",\n    \"author\": \"肖璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦教你的10堂理财课\",\n    \"author\": \"朱国凤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007884-57754e?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非富不可：曹仁超给年轻人的投资忠告\",\n    \"author\": \"曹仁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专业投机原理（珍藏版）\",\n    \"author\": \"维克托・斯波朗迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱有术\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"操盘手Ⅰ：自由救赎\",\n    \"author\": \"花荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大牛市・股殇系列（全两册）\",\n    \"author\": \"诸葛就是不亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大空头\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国是个大公司\",\n    \"author\": \"闵纬国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻资本\",\n    \"author\": \"凯文·鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦克米伦谈期权\",\n    \"author\": \"劳伦斯G.麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金奇才\",\n    \"author\": \"杰克·施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市长线法宝（原书第5版）\",\n    \"author\": \"杰里米J. 西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读私募股权基金\",\n    \"author\": \"周炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（精华篇）\",\n    \"author\": \"L·J·瑞德豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街头智慧\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007074-d9d1d7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩根财团\",\n    \"author\": \"罗恩·彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国：美国金融霸权的来源和基础\",\n    \"author\": \"迈克尔·赫德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时寒冰说：未来二十年，经济大趋势（合集）\",\n    \"author\": \"时寒冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是部金融史（全新修订典藏版）\",\n    \"author\": \"陈雨露/杨栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大猎杀\",\n    \"author\": \"庄欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006630-919838?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"还原真实的美联储\",\n    \"author\": \"王健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜伏在资本市场\",\n    \"author\": \"仇子明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006531-bbfae7?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白手套\",\n    \"author\": \"陈楫宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006468-79d6ba?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴立宁的传记与文集\",\n    \"author\": \"戴立宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融之王\",\n    \"author\": \"利雅卡特・艾哈迈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006060-6d6043?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之王\",\n    \"author\": \"戴维・凯里/约翰・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005829-d05ccb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金到底是什么？\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘活：中国民间金融百年风云\",\n    \"author\": \"王千马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则\",\n    \"author\": \"吉姆·斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安东尼·波顿的成功投资\",\n    \"author\": \"安东尼·波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门口的野蛮人\",\n    \"author\": \"布赖恩・伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·聂夫的成功投资（珍藏版）\",\n    \"author\": \"约翰・聂夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生（珍藏版）\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通向财务自由之路（原书第2版·珍藏版）\",\n    \"author\": \"范・撒普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样选择成长股\",\n    \"author\": \"菲利普·A·费舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福极简经济学\",\n    \"author\": \"蒂莫西・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信贷的逻辑与常识\",\n    \"author\": \"刘元庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第四版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些滚雪球的人\",\n    \"author\": \"王星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866\",\n    \"category\": \"金融\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（六）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043296-42eb15?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（四）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（一）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042762-ba6b8b?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Warnings\",\n    \"author\": \"Richard A. Clarke/R.P. Eddy\",\n    \"link\": \"链接未找到\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Saga of Gunnlaug Serpent-tongue\",\n    \"author\": \"Anon Anon\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029748-cd4b3f?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Machines Like Me\",\n    \"author\": \"Ian McEwan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029739-328612?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Then She Was Gone\",\n    \"author\": \"Lisa Jewell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023349-f937e5?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Fifth Risk\",\n    \"author\": \"Michael Lewis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022572-e36b2f?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Killing Floor\",\n    \"author\": \"Child, Lee\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020754-1c2d0f?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Wonder\",\n    \"author\": \"R. J. Palacio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017160-80e85a?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Morning Star\",\n    \"author\": \"Pierce Brown\",\n    \"link\": \"链接未找到\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Three-Body Problem\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013644-82ce19?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Dark Forest\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013641-7de59a?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Death&#8217;s End\",\n    \"author\": \"Cixin Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013638-dd39ad?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Never Let Me Go\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013593-c4885e?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Remains of the Day\",\n    \"author\": \"Kazuo Ishiguro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013581-23b14c?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"101 Classic Short Stories\",\n    \"author\": \"Henry\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013203-22727d?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Winter of the World\",\n    \"author\": \"Ken Follett\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013173-f5d994?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Lolita\",\n    \"author\": \"Vladimir Nabokov\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009768-8023b1?p=8866\",\n    \"category\": \"英文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子疏解\",\n    \"author\": \"黄克剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051570-dc56d2?p=8866\",\n    \"category\": \"老子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么：一部教你做得道之人的生命学宝典\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866\",\n    \"category\": \"老子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866\",\n    \"category\": \"老子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多卖三倍\",\n    \"author\": \"弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491256-088984?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事经济学\",\n    \"author\": \"罗伯特・麦基/哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"催化：让一切加速改变\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510570-5a6471?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1打造个人品牌\",\n    \"author\": \"王一九\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级参与者\",\n    \"author\": \"杰里米・海曼斯/亨利・蒂姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511710-5d87a4?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好视频一秒抓住人心\",\n    \"author\": \"高桥弘树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化营销\",\n    \"author\": \"胡华成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秒赞：文案女王20年创作技巧与心法\",\n    \"author\": \"林桂枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开家书店，顺便赚钱\",\n    \"author\": \"徐智明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512910-991799?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力变现\",\n    \"author\": \"徐悦佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Z世代营销\",\n    \"author\": \"杰夫・弗若姆/安吉・瑞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513471-fe46fd?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案功夫\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004422-027126?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识顾客（原书第13版）\",\n    \"author\": \"戴维·L.马瑟斯博等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004203-857c83?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致零售\",\n    \"author\": \"杜凤林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘾：让人上瘾的产品、广告与创意背后的秘密\",\n    \"author\": \"吴文芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级标签\",\n    \"author\": \"闫跃龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997891-01926e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级话题\",\n    \"author\": \"肖大侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾客心理战\",\n    \"author\": \"菲利普・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带货王\",\n    \"author\": \"李瑛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抖音营销系统\",\n    \"author\": \"刘大贺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案的基本修养\",\n    \"author\": \"东东枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外卖超级运营术\",\n    \"author\": \"饿了么\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的行动\",\n    \"author\": \"乔舒亚・甘斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新品牌\",\n    \"author\": \"高端训\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能学会的刷屏文案写作技巧\",\n    \"author\": \"吕白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服\",\n    \"author\": \"邝大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微文案\",\n    \"author\": \"朱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧②\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧①\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户画像\",\n    \"author\": \"赵宏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式4.0\",\n    \"author\": \"梁宇亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆流行\",\n    \"author\": \"德里克・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发式赢单\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的商学课\",\n    \"author\": \"路骋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长五线\",\n    \"author\": \"王赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意志力销售法\",\n    \"author\": \"杨朝福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始玩转抖音\",\n    \"author\": \"黑马唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051885-f479db?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让顾客都成为回头客\",\n    \"author\": \"安部修仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑞幸闪电战\",\n    \"author\": \"沈帅波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品的101个新零售细节\",\n    \"author\": \"张桓/杨永朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归商业常识\",\n    \"author\": \"麦克・霍夫林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡新零售\",\n    \"author\": \"场景实验室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆炸式增长\",\n    \"author\": \"克里夫・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049836-66e2fa?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级转化率\",\n    \"author\": \"陈勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质（珍藏版）\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华百万大奖赛案例集\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界皆营销\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命3.0（轻携版）\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046362-c6312f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命4.0\",\n    \"author\": \"菲利普・科特勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良性增长\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是销售力\",\n    \"author\": \"余尚祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新定位\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂营销上\",\n    \"author\": \"戈非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级营销必修课（套装全8册）\",\n    \"author\": \"帕科・昂德希尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥格威谈广告\",\n    \"author\": \"杨名皓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037881-a442a5?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告文案\",\n    \"author\": \"乐剑峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新引爆点：抖音运营从0到1实战指南\",\n    \"author\": \"头条易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034614-ada148?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"获客\",\n    \"author\": \"何润/张艳琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031698-1c4d3d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密日本零售业（套装共4册）\",\n    \"author\": \"增田明子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街之狼：掌握直线销售的艺术\",\n    \"author\": \"乔丹・贝尔福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷蓝图\",\n    \"author\": \"雅各・范德库伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案变现\",\n    \"author\": \"叶小鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售\",\n    \"author\": \"范鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028200-21484f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微信营销与运营\",\n    \"author\": \"秦阳/秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025686-646e79?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销实战手册\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销概论\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何把产品打造成有生命的品牌\",\n    \"author\": \"叶明桂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常青：如何持久吸引客户\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走红：如何打造个人品牌\",\n    \"author\": \"杰瑞米・戈德曼/阿里・扎格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度粉销\",\n    \"author\": \"丁丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案一句话就够了\",\n    \"author\": \"川上徹也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感驱动\",\n    \"author\": \"维尔・桑切斯・拉米拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒循环\",\n    \"author\": \"亚当・潘恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：零成本改变\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023532-18abb2?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：打造峰值体验\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同感\",\n    \"author\": \"吉姆・西诺雷利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抢占心智\",\n    \"author\": \"江南春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售脑\",\n    \"author\": \"帕特里克・任瓦茨/克里斯托弗・莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022623-017333?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷启动：零成本做营销\",\n    \"author\": \"高臻臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销圣经\",\n    \"author\": \"加里・维纳查克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020331-3d803b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接：顾客价值时代的营销战略\",\n    \"author\": \"施炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020277-549efc?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案创作完全手册\",\n    \"author\": \"罗伯特・布莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的16个关键词\",\n    \"author\": \"叶茂中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销与运营\",\n    \"author\": \"秋叶/秦阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"视觉锤\",\n    \"author\": \"劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019587-9bb3b2?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流量池\",\n    \"author\": \"杨飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热点：引爆内容营销的6个密码\",\n    \"author\": \"马克・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019395-c60176?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不做无效的营销\",\n    \"author\": \"王泽蕴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018744-787c46?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全栈市场人\",\n    \"author\": \"Lydia\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生定位：特劳特教你营销自己\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案\",\n    \"author\": \"关健明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017604-0d7b9e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与感\",\n    \"author\": \"黎万强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：如何低成本实现爆发式成长\",\n    \"author\": \"Sean Ellis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2小时品牌素养\",\n    \"author\": \"邓德隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小群效应\",\n    \"author\": \"徐志斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖故事：实践版\",\n    \"author\": \"高朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售心理战\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015999-2d2d27?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回头客战略\",\n    \"author\": \"谢家华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆品战略\",\n    \"author\": \"金错刀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个广告人的自白\",\n    \"author\": \"大卫・奥格威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样卖龙虾\",\n    \"author\": \"比尔・毕晓普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新物种爆炸\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014184-7e8d0a?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆势销售：UGG创始人自述\",\n    \"author\": \"布莱恩・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AsK.反直觉询问\",\n    \"author\": \"莱恩・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无价\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粘住\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011994-36d924?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌洗脑（珍藏版）\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案圣经\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系力\",\n    \"author\": \"蒂姆・邓普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户力：需求驱动的产品、运营和商业模式\",\n    \"author\": \"郝志中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告+我的广告生涯\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要玩转情商\",\n    \"author\": \"科林・斯坦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董事会里的战争\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆点：如何制造流行\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与众不同\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定位（珍藏版）\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定位\",\n    \"author\": \"杰克・特劳特/阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底捞你学不会\",\n    \"author\": \"黄铁鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨越鸿沟：颠覆性产品营销圣经\",\n    \"author\": \"杰弗里・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商战\",\n    \"author\": \"杰克・特劳特 / 阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是战略\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"22条商规\",\n    \"author\": \"艾・里斯 / 杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯传：让你的产品、思想、行为像病毒一样入侵\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史玉柱自述：我的营销心得\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作，打造个人IP，成就企业品牌\",\n    \"author\": \"陈志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866\",\n    \"category\": \"营销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HTML5秘籍\",\n    \"author\": \"Matthew MacDonald\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006540-4fb712?p=8866\",\n    \"category\": \"前端开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS设计指南（第3版）\",\n    \"author\": \"Charles Wyke-Smith\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866\",\n    \"category\": \"前端开发\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口大逆转\",\n    \"author\": \"查尔斯・古德哈特/马诺杰・普拉丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙王的嬗变\",\n    \"author\": \"杨德爱/杨跃雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509319-b9f6e6?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空荡荡的地球\",\n    \"author\": \"达雷尔・布里克/约翰・伊比特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口浪潮\",\n    \"author\": \"保罗・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国空巢\",\n    \"author\": \"易富贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008244-1d0cc5?p=8866\",\n    \"category\": \"人口\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作力\",\n    \"author\": \"高语罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866\",\n    \"category\": \"语文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样学习文言文\",\n    \"author\": \"张中行著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866\",\n    \"category\": \"语文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滚雪球：巴菲特和他的财富人生（套装共2册）\",\n    \"author\": \"艾丽斯・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866\",\n    \"category\": \"滚雪球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋南北朝史十二讲\",\n    \"author\": \"周一良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989491-004df4?p=8866\",\n    \"category\": \"南北朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南北战争三百年\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021018-29e73a?p=8866\",\n    \"category\": \"南北朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后三国战争史\",\n    \"author\": \"陈峰韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866\",\n    \"category\": \"南北朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的帝国：南北朝\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009144-7f2fef?p=8866\",\n    \"category\": \"南北朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代兵器大百科（套装共12册）\",\n    \"author\": \"《深度军事》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866\",\n    \"category\": \"兵器\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆者\",\n    \"author\": \"畀愚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510285-84f4ea?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色\",\n    \"author\": \"徐兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023499-da43d2?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗战时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的河山：抗日正面战场全纪实（套装共3册）\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅰ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅱ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驼峰航线\",\n    \"author\": \"刘小童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争2\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎部队：国民党抗日王牌七十四军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗日战争的细节大全集（共4册）\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一寸河山一寸血（套装全五册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866\",\n    \"category\": \"抗战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋帝国的崛起\",\n    \"author\": \"安东・范德伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅特涅：帝国与世界（全2册）\",\n    \"author\": \"沃尔弗拉姆・希曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：决定欧洲命运的四天\",\n    \"author\": \"蒂姆・克莱顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枫丹白露宫\",\n    \"author\": \"蒂埃里・萨尔芒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次十字军东征\",\n    \"author\": \"彼得・弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝物语（套装全四册）\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造大英帝国\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骄傲之塔\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮大陆\",\n    \"author\": \"基思・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡的灭亡\",\n    \"author\": \"杰弗里・瓦夫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032763-6ef5f4?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪欧洲\",\n    \"author\": \"理查・威廉・丘奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：古典欧洲的诞生\",\n    \"author\": \"西蒙・普莱斯/彼得・索恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031152-135022?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：罗马帝国的遗产\",\n    \"author\": \"克里斯・威克姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗大陆：20世纪的欧洲\",\n    \"author\": \"马克・马佐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029334-f32666?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：追逐荣耀\",\n    \"author\": \"蒂莫西・布莱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026451-3049ac?p=8866\",\n    \"category\": \"欧洲史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔制\",\n    \"author\": \"胡国栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491937-798132?p=8866\",\n    \"category\": \"海尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔是海：张瑞敏随笔选录\",\n    \"author\": \"张瑞敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866\",\n    \"category\": \"海尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔转型：人人都是CEO\",\n    \"author\": \"曹仰锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014961-4d7acd?p=8866\",\n    \"category\": \"海尔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站火星\",\n    \"author\": \"克里斯蒂安・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866\",\n    \"category\": \"航天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿波罗\",\n    \"author\": \"扎克・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024600-7d239d?p=8866\",\n    \"category\": \"航天\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简主义：活出生命真意\",\n    \"author\": \"乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866\",\n    \"category\": \"修养\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年一梦（修订版）\",\n    \"author\": \"青泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票作手回忆录\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手操盘术\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟交易法则（珍藏版）\",\n    \"author\": \"柯蒂斯・费思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专业投机原理（珍藏版）\",\n    \"author\": \"维克托・斯波朗迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权波动率与定价：高级交易策略与技巧\",\n    \"author\": \"谢尔登・纳坦恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大空头\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866\",\n    \"category\": \"投机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推荐系统实践\",\n    \"author\": \"项亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866\",\n    \"category\": \"系统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"系统之美\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866\",\n    \"category\": \"系统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维力：高效的系统思维\",\n    \"author\": \"王世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866\",\n    \"category\": \"系统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读心神探：FBI心理侧写术\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866\",\n    \"category\": \"FBI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺顿音乐断代史丛书（套装共4册）\",\n    \"author\": \"菲利普・唐斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余下只有噪音\",\n    \"author\": \"亚历克斯・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509967-ee6928?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星船与大树\",\n    \"author\": \"马慧元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有意义就没有摇摆\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511080-f945a2?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不哀之歌\",\n    \"author\": \"曹利群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513687-619e62?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏辽兹回忆录\",\n    \"author\": \"埃克托尔・柏辽兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996952-cf4c12?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何假装懂音乐\",\n    \"author\": \"王硕/储智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992167-7c7309?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界音乐汇\",\n    \"author\": \"西蒙・布劳顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的音乐笔记\",\n    \"author\": \"肖复兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游艺黑白（全四册）\",\n    \"author\": \"焦元溥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982555-e57eb3?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝多芬传：扼住命运咽喉的英雄\",\n    \"author\": \"费利克斯・胡赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051042-dc8d6b?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见莫扎特\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050742-52e166?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日52：BGM之魂\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047412-210b95?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爵士乐群英谱\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046266-bc8656?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下乡愁蓝调\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031992-c6a7a5?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日书\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳朵借我\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛丰年音乐文集（套装共六册）\",\n    \"author\": \"辛丰年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030315-421cb1?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱\",\n    \"author\": \"叶三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027609-3c8930?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐符号\",\n    \"author\": \"塔拉斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐队女孩\",\n    \"author\": \"金・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中4·民谣啊民谣\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025260-f23d1e?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐的极境\",\n    \"author\": \"爱德华·W.萨义德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022965-9d1e5c?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹唱片行\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022113-7cd057?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老灵魂\",\n    \"author\": \"韩松落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020712-1dcbf2?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论巴赫\",\n    \"author\": \"阿尔贝特・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018666-493f7e?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简音乐史\",\n    \"author\": \"冈田晓生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866\",\n    \"category\": \"音乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用手机拍一部电影\",\n    \"author\": \"英国Little White Lies编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866\",\n    \"category\": \"拍摄\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亿万：围剿华尔街大白鲨\",\n    \"author\": \"茜拉・科尔哈特卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866\",\n    \"category\": \"商场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创水记\",\n    \"author\": \"赛斯・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866\",\n    \"category\": \"环保\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与荒原同行\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866\",\n    \"category\": \"环保\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让数字说话：审计，就这么简单\",\n    \"author\": \"孙含晖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866\",\n    \"category\": \"审计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜脑：在睡眠中自动学习的秘密\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866\",\n    \"category\": \"焦虑症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新定位\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的定位\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生定位：特劳特教你营销自己\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定位（珍藏版）\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定位\",\n    \"author\": \"杰克・特劳特/阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是战略\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"22条商规\",\n    \"author\": \"艾・里斯 / 杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866\",\n    \"category\": \"定位\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默就是说话让人舒服\",\n    \"author\": \"王荣华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993952-7eaaf2?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"会说话的人运气都不会太差\",\n    \"author\": \"矢野香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好接话\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话第一步\",\n    \"author\": \"麦克▪P.尼可斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话：新鲜有趣的话术精进技巧\",\n    \"author\": \"马东/马薇薇/黄执中等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话\",\n    \"author\": \"学诚法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866\",\n    \"category\": \"说话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦想与浮沉：A股十年上市博弈（2004～2014）\",\n    \"author\": \"王骥跃/班妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866\",\n    \"category\": \"上市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案基本功\",\n    \"author\": \"苏芯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866\",\n    \"category\": \"策划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10W+走心文案是怎样炼成的\",\n    \"author\": \"卢建彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029916-76a0fe?p=8866\",\n    \"category\": \"策划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度粉销\",\n    \"author\": \"丁丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866\",\n    \"category\": \"策划\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Brief Answers to the Big Questions\",\n    \"author\": \"Stephen Hawking\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023337-520d53?p=8866\",\n    \"category\": \"霍金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"My Brief History\",\n    \"author\": \"Stephen Hawking\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018171-0525fe?p=8866\",\n    \"category\": \"霍金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙简史：起源与归宿\",\n    \"author\": \"斯蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866\",\n    \"category\": \"霍金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规训、惩罚与征服\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503931-6e6be2?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隳三都\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507117-ec7ad5?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国的世界征服\",\n    \"author\": \"约西姆・巴克汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512010-b9109b?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古历史拼图\",\n    \"author\": \"邹进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984655-a06873?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游牧民的世界史（修订版）\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国中亚征服史\",\n    \"author\": \"G. D.古拉提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053502-bdd0ab?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金家族的最后一个王爷\",\n    \"author\": \"朱文楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国\",\n    \"author\": \"易强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Genghis Khan and the Making of the Modern World\",\n    \"author\": \"Jack Weatherford\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022176-fe3719?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史上的蒙古征服\",\n    \"author\": \"梅天穆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020139-2566c0?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着就为征服世界\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866\",\n    \"category\": \"蒙古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列：伽利略的手指\",\n    \"author\": \"彼得・阿特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学物理化学大师经典系列（16册套装）\",\n    \"author\": \"薛定谔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505011-15ac5f?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的结构\",\n    \"author\": \"斯蒂芬・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们身处的宇宙究竟有多古怪？\",\n    \"author\": \"伊拉・马克・爱格多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响历史进程的九大科学家代表作图释书（套装9册）\",\n    \"author\": \"阿尔伯特・爱因斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510252-9e4341?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙的最后三分钟\",\n    \"author\": \"保罗・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费曼的彩虹\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511389-9a7177?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六极物理\",\n    \"author\": \"严伯钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511584-57f21d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的六件事\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗意的宇宙\",\n    \"author\": \"斯特凡・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513624-bf8549?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：活细胞的物理观\",\n    \"author\": \"埃尔温・薛定谔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子空间\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的未完成交响曲\",\n    \"author\": \"玛西亚・芭楚莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相对论之路\",\n    \"author\": \"哈诺赫・古特弗罗因德/于尔根・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦语录（终极版）\",\n    \"author\": \"阿尔伯特・爱因斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000372-db0ba3?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何不切实际地解决实际问题\",\n    \"author\": \"兰道尔・门罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质是什么\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《三体》中的物理学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课\",\n    \"author\": \"凯瑟琳・玛丽・布伦德尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱布尼茨、牛顿与发明时间\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·彭罗斯作品集（套装共4册）\",\n    \"author\": \"罗杰・彭罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988642-62c533?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我想多了吗？\",\n    \"author\": \"新科学家杂志/邱涛涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系简史\",\n    \"author\": \"约翰・钱伯斯/杰奎琳・米顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟物理套装\",\n    \"author\": \"中科院物理所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985375-1c626d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理学的进化\",\n    \"author\": \"阿尔伯特・爱因斯坦/利奥波德・英费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深奥的简洁\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简量子力学\",\n    \"author\": \"张天蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050145-239ab3?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与爱因斯坦共进早餐\",\n    \"author\": \"查德・奥泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费恩曼物理学讲义（新千年版）（套装共3册）\",\n    \"author\": \"费恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类为什么要探索太空\",\n    \"author\": \"克里斯・英庇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽之问\",\n    \"author\": \"弗兰克・维尔切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（果麦版）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦传（全2册）\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗？（升级版）\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039567-9b107f?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共9册）\",\n    \"author\": \"布莱恩・格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给好奇者的暗黑物理学\",\n    \"author\": \"罗兰・勒乌克/文森特・博滕斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036114-dbe6f4?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·诺贝尔奖得主作品（新版套装共8册）\",\n    \"author\": \"基普·S.索恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036132-d2b94c?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无中生有的世界\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的秩序\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邀你共进量子早餐\",\n    \"author\": \"索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一想到还有95%的问题留给人类，我就放心了\",\n    \"author\": \"豪尔赫・陈/丹尼尔・怀特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠物理\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031503-32fac0?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑洞之书\",\n    \"author\": \"史蒂文・古布泽/弗兰斯・比勒陀利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空的琴弦\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶杯里的风暴\",\n    \"author\": \"海伦・切尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从一粒尘埃开始\",\n    \"author\": \"布莱恩・考克斯/杰夫・福修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质的秘密\",\n    \"author\": \"埃蒂安・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叩响天堂之门\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共7册）\",\n    \"author\": \"罗伯特・劳克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022836-5a2cdc?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲量子力学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间重生\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柔软的宇宙\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实不似你所见\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学起源课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的温度\",\n    \"author\": \"吉诺・格塞雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019803-f6c866?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗意的原子\",\n    \"author\": \"科特・施塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017949-15be38?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的形状：相对论史话\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲宇宙\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016302-ce02e5?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子大唠嗑\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016011-0b3bbf?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰道尔宇宙三部曲\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015930-649116?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引力波\",\n    \"author\": \"珍娜・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014196-53b378?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际穿越\",\n    \"author\": \"基普・索恩/基普・索恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014238-883094?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七堂极简物理课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013917-9f1be2?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗物质与恐龙\",\n    \"author\": \"丽莎・兰道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别逗了，费曼先生\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越平行宇宙\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极客物理学：地球上最有趣的问题和最出人意料的答案\",\n    \"author\": \"瑞特・阿莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界奇遇记\",\n    \"author\": \"伽莫夫/斯坦纳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的宇宙\",\n    \"author\": \"加来道雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005760-1c0736?p=8866\",\n    \"category\": \"物理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书大全套\",\n    \"author\": \"朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866\",\n    \"category\": \"评论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窥豹录\",\n    \"author\": \"胡亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035628-c24e75?p=8866\",\n    \"category\": \"评论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评论文集\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035013-9a2b5c?p=8866\",\n    \"category\": \"评论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前行笔记之耕耘心田\",\n    \"author\": \"希阿荣博堪布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491703-fada1f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感知•理知•自我认知\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491952-add17f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毓老师说系列（共十八册）\",\n    \"author\": \"爱新觉罗・毓鋆讲述\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492564-bdeea5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛系：中国人的生活智慧\",\n    \"author\": \"果麦文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493296-11aa38?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攀登尼采\",\n    \"author\": \"约翰・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493479-e7baa8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第一卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘擎西方现代思想讲义\",\n    \"author\": \"刘擎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498162-6d669a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学100问（套装共3册）\",\n    \"author\": \"书杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498444-830a41?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方现代思想家精品译丛（18卷）\",\n    \"author\": \"哈耶克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498924-4e23e7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如猫狗会说话\",\n    \"author\": \"拉斯・弗雷德里克·H.史文德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499347-09c400?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的局限性\",\n    \"author\": \"塞缪尔・约翰生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499611-c45040?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈鼓应著作精选合集（套装共6册）\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499644-a23b2a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作、消费主义和新穷人\",\n    \"author\": \"齐格蒙特・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500127-368b0a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优雅变老的艺术\",\n    \"author\": \"奥特弗里德・赫费\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500535-92fecd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何证明你不是僵尸\",\n    \"author\": \"杰里米・斯特朗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501417-ad432d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明心学口诀\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503745-b8ddbc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生答案之书\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506391-6ca6c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄德罗与自由思考的艺术\",\n    \"author\": \"安德鲁·S.柯伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506505-4ae859?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康德文集（注释版）\",\n    \"author\": \"伊曼努尔・康德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508737-9992e1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想家和思想导读丛书精选（套装共5册）\",\n    \"author\": \"雷克斯・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只是眷恋这人间烟火（全新修订版）\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508929-c650ea?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"也许你该找个人聊聊\",\n    \"author\": \"洛莉・戈特利布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508959-595ed0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文白对照四书五经全本（精注全译）\",\n    \"author\": \"李伯钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖无聊\",\n    \"author\": \"马克・金维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚无时代\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图哲学作品集（套装6册）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509394-d47210?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子\",\n    \"author\": \"和辻哲郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509535-569088?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（果麦经典）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢生命根底里的宁静\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜托，哲学没有那么难\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509877-4157bd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尔·杜兰特经典系列（套装共4册）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509931-1e8eab?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由主义被遗忘的历史\",\n    \"author\": \"海伦娜・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510303-b7bcd2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天谈美\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510363-f6a67e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于痛苦的七堂哲学课\",\n    \"author\": \"斯科特・塞缪尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510948-7b1f45?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识世界：古代与中世纪哲学\",\n    \"author\": \"理查德・大卫・普莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511017-ad42d5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超现实主义宣言\",\n    \"author\": \"安德烈・布勒东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511032-8e425b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承认：一部欧洲观念史\",\n    \"author\": \"阿克塞尔・霍耐特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你学会独处\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511314-f0d8b4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的用途与滥用\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让孩子像哲学家一样会思考\",\n    \"author\": \"张玮/沈文婕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做一个清醒的现代人\",\n    \"author\": \"刘擎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511419-5571b1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯林传\",\n    \"author\": \"叶礼庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512067-e53a08?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应向花园安放灵魂\",\n    \"author\": \"达蒙・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512184-8c90b3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值的理由\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512478-959447?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和狗狗的十二次哲学漫步\",\n    \"author\": \"安东尼・麦高恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512505-d10692?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来也不会好过现在\",\n    \"author\": \"基兰・塞蒂亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513138-ab2d02?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明哲学逻辑思维读本（套装共5册）\",\n    \"author\": \"威廉姆・韦斯利・库克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513669-9bcbcb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人论（果麦经典）\",\n    \"author\": \"恩斯特・卡西尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513714-66cf91?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众哲学\",\n    \"author\": \"艾思奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004557-14bc8a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明及其不满（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004269-ea87b0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鳗鱼的旅行\",\n    \"author\": \"帕特里克・斯文松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯友兰哲思录\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004101-553863?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布莱希特作品集（套装共四册）\",\n    \"author\": \"贝托尔特・布莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004098-26f5ec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣的存在\",\n    \"author\": \"米尔恰・伊利亚德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术师时代\",\n    \"author\": \"沃尔夫拉姆・艾伦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003984-f36531?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形而上学俱乐部\",\n    \"author\": \"路易斯・梅南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003579-09071b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧盟的危机\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍勒作品集（套装共七册）\",\n    \"author\": \"马克思・舍勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003123-717cf7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主的不满\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众的反叛\",\n    \"author\": \"何塞・奥尔特加・伊・加塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002775-9ae93e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论爱美\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲思与海\",\n    \"author\": \"戴维・法雷尔・克雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉尔·德·莱斯案\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金岳霖哲学三书\",\n    \"author\": \"金岳霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001944-360496?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目光\",\n    \"author\": \"陶勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性的边界\",\n    \"author\": \"诺桑・亚诺夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001614-cc8dce?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性经验史（3卷本）\",\n    \"author\": \"米歇尔・福柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001113-170e8b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娱乐何为\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000798-72f1c7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安之书\",\n    \"author\": \"费尔南多・佩索阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000333-bab6a5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码时间\",\n    \"author\": \"阿德里安・巴登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他者的消失\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000279-32504e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治哲学\",\n    \"author\": \"乔纳森・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999835-300928?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倦怠社会\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999751-ac5097?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德哲学\",\n    \"author\": \"乔纳森・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999415-d9e5bb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书与书籍\",\n    \"author\": \"叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999265-48afc3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的认识论\",\n    \"author\": \"罗伯特・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999046-10db8e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见：从科学到哲学，打开人类的认知真相\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999022-8e84da?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的批判性思维\",\n    \"author\": \"莎伦・M. 凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的美学\",\n    \"author\": \"查尔斯・塔利亚费罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998848-bdbcb5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查拉图斯特拉如是说（果麦经典）\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997918-4ecd27?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春蚕吐丝\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊雍：自性现象学研究\",\n    \"author\": \"C. G. 荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995866-2fee9e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"移情心理学\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995587-b19864?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的智慧\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出唯一真理观\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995503-31ccb1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炼金术之梦\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相约星期二\",\n    \"author\": \"米奇・阿尔博姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995149-c4bf6c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学（作家榜经典文库）\",\n    \"author\": \"H. A. 丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？\",\n    \"author\": \"朱利安・巴吉尼/杰里米・斯唐鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你以为你以为的就是你以为的吗？2\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心：稻盛和夫的一生嘱托\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学与人：20世纪西方哲学精选（套装共5本）\",\n    \"author\": \"卡尔・雅斯贝斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何形成清晰的观点\",\n    \"author\": \"查尔斯·S.皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩波：日本社会写实精选系列\",\n    \"author\": \"森冈孝二等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993460-3e8452?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制造儒家\",\n    \"author\": \"詹启华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992017-ecbdd9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学100问\",\n    \"author\": \"书杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991753-47c268?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的思想（中英双语版·全48册）\",\n    \"author\": \"马可・波罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的智慧（全译本）\",\n    \"author\": \"伯特兰・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990757-a6caa2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人生哲学\",\n    \"author\": \"方东美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990337-fd3773?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界边缘的秘密\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基本收入·鹈鹕丛书\",\n    \"author\": \"盖伊・斯坦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990058-b0a6de?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍勒作品系列（全七册）\",\n    \"author\": \"马克思・舍勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990016-2b1ab0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维魔方\",\n    \"author\": \"陈波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概念与范畴\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989650-26d77f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷1）\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩家训（全本全注全译）\",\n    \"author\": \"檀作文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989560-a0570d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱布尼茨、牛顿与发明时间\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学术与政治（理想国新版）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988129-ec950b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧与魔咒\",\n    \"author\": \"塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物的追问（二十世纪西方哲学经典）\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985936-6e200a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维特根斯坦说逻辑与语言\",\n    \"author\": \"维特根斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985915-d52a79?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理与人（二十世纪西方哲学经典）\",\n    \"author\": \"德里克・帕菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985840-14e9cf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏菲的哲学课\",\n    \"author\": \"多米尼克・贾尼科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985762-968eb9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮尔士论符号 （二十世纪西方哲学经典）\",\n    \"author\": \"查尔斯・皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心、脑与科学（二十世纪西方哲学经典）\",\n    \"author\": \"约翰・塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现象学的方法（二十世纪西方哲学经典）\",\n    \"author\": \"埃德蒙德・胡塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985603-202a69?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神性的温柔\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客观知识（二十世纪西方哲学经典）\",\n    \"author\": \"卡尔・波普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985501-f55e56?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的大地（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像哲学家一样生活\",\n    \"author\": \"威廉·B.欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与真理（二十世纪西方哲学经典）\",\n    \"author\": \"保罗・利科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985459-26b47c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"享乐主义宣言\",\n    \"author\": \"米歇尔・翁福雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985336-4cdc66?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活的隐喻（二十世纪西方哲学经典）\",\n    \"author\": \"保罗・利科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985294-b76e94?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猜想与反驳（二十世纪西方哲学经典）\",\n    \"author\": \"卡尔・波普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985108-70772e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坛经（全本全注全译）\",\n    \"author\": \"尚荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简朴的哲学\",\n    \"author\": \"埃默里斯・韦斯特科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984784-db9149?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷的开始\",\n    \"author\": \"戴维・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲散的哲学\",\n    \"author\": \"布莱恩・奥康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983638-36d26e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的指引\",\n    \"author\": \"马西莫・匹格里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982504-6a843c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么2\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982450-7b0f04?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学\",\n    \"author\": \"丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982453-5594f6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子（全本全注全译）\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异端：进击的哲学现场\",\n    \"author\": \"史蒂文・纳德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择生命\",\n    \"author\": \"池田大作/阿诺德・约瑟夫・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054378-95bb9a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六韬（全本全注全译）\",\n    \"author\": \"陈曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子现代版（最新修订版）\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053886-547f3d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书五经（全本全注全译）\",\n    \"author\": \"陈晓芬/徐儒宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053883-1b6ff5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德里达（牛津通识读本）\",\n    \"author\": \"西蒙・格伦迪宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文学（牛津通识读本）\",\n    \"author\": \"尼古拉斯・博伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与神对话（全五卷）\",\n    \"author\": \"尼尔・唐纳德・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋玄学史（第二版）\",\n    \"author\": \"余敦康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判理论（牛津通识读本）\",\n    \"author\": \"斯蒂芬・埃里克・布朗纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053451-652219?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无神论（牛津通识读本）\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的底色\",\n    \"author\": \"提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053025-11c135?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景观社会\",\n    \"author\": \"居伊・德波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔的精神现象学\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052602-06e6fe?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔\",\n    \"author\": \"马丁・海德格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052539-7f6be3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学原来很有趣\",\n    \"author\": \"刘帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052497-71e6ec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的亚里士多德\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051708-d0a98b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能性\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论语今读（增订版）\",\n    \"author\": \"李泽厚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老子疏解\",\n    \"author\": \"黄克剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051570-dc56d2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·马克思：生平与环境\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学入门很简单\",\n    \"author\": \"兰晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和伊壁鸠鲁一起旅行\",\n    \"author\": \"丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国问题\",\n    \"author\": \"伯特兰・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简哲学史\",\n    \"author\": \"莱斯莉・莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学是怎样炼成的\",\n    \"author\": \"蒂莫西・威廉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩护的政治\",\n    \"author\": \"陈肖生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049620-9477eb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱共情\",\n    \"author\": \"保罗・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（果麦经典）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最神奇的24堂课\",\n    \"author\": \"查尔斯・哈奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《荒岛》及其他文本\",\n    \"author\": \"吉尔・德勒兹/大卫・拉普雅德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类的认识（校勘全译本）\",\n    \"author\": \"约翰・洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴尔特文集（套装）\",\n    \"author\": \"罗兰・巴尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的迷途\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺爱\",\n    \"author\": \"罗伯特・纳伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱默生和中国\",\n    \"author\": \"钱满素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048462-5cb91a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果敢力\",\n    \"author\": \"蒋齐仕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开哲学家的正确方式\",\n    \"author\": \"畠山创\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047841-67f2ce?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法言（全本全注全译）\",\n    \"author\": \"扬雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫的人生哲学\",\n    \"author\": \"北康利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被左右的独立思维\",\n    \"author\": \"塔利・沙罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力拓扑学\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045756-006b45?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生十二法则\",\n    \"author\": \"乔丹・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（全本全注全译）\",\n    \"author\": \"方韬译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从鹏扶摇到蝶蹁跹\",\n    \"author\": \"崔宜明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪思想史：从弗洛伊德到互联网\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学史讲演录（4卷）\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思博士论文\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044634-5ea046?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个行业都离不开心理学（套装共5册）\",\n    \"author\": \"王梓等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔学述\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044370-525bea?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代西方哲学讲演集\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044244-278ff8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五十年来的中国哲学\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044184-1eb4a5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔早期神学著作\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044037-106386?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日一善（套装全4册）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔哲学讲演集\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043905-0f7e12?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆的思想家\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈耶克作品（共6册）\",\n    \"author\": \"弗里德里希・奥古斯特・哈耶克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康德《纯粹理性批判》句读\",\n    \"author\": \"邓晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043740-d2094f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代唯心论简释\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑\",\n    \"author\": \"黑格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043518-deed3d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧书（作家榜经典文库）\",\n    \"author\": \"巴尔塔萨尔・格拉西安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦理学知性改进论\",\n    \"author\": \"斯宾诺莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉思录（译文经典）\",\n    \"author\": \"马可・奥勒留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自愿为奴（译文经典）\",\n    \"author\": \"艾蒂安・德・拉・波埃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时代的精神状况（译文经典）\",\n    \"author\": \"卡尔・雅斯贝斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042081-4c4aec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格拉底之死（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵、自我与社会（译文经典）\",\n    \"author\": \"米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（译文经典）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我与本我（译文经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的没落（译林人文精选）\",\n    \"author\": \"奥斯瓦尔德・斯宾格勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲与文明（译文经典）\",\n    \"author\": \"赫伯特・马尔库塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039576-5787a8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静\",\n    \"author\": \"艾林・卡格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间的诗学（译文经典）\",\n    \"author\": \"加斯东・巴什拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁冬说庄子（套装共九册）\",\n    \"author\": \"梁冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039057-19d5a8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新马克思主义导引\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038226-094d97?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意会时刻\",\n    \"author\": \"克里斯琴・马兹比尔格/米凯尔・拉斯马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实用主义和语用论\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037851-de25ea?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消费社会\",\n    \"author\": \"让・鲍德里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗素哲学概论\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037785-1e18fb?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构主义\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037434-aff26f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福哲学书\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036993-8eb226?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼采经典著作及研究丛书（四册全）\",\n    \"author\": \"尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036969-f5e56d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图和鸭嘴兽一起去酒吧\",\n    \"author\": \"托马斯・卡斯卡特/丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：公民到领主\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（四）\",\n    \"author\": \"约翰・布鲁德斯・华生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035742-b3a5b1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的启蒙运动\",\n    \"author\": \"吉隆・・奥哈拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的科学哲学\",\n    \"author\": \"杰弗里・戈勒姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学小史\",\n    \"author\": \"干春松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（三）\",\n    \"author\": \"开普勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因何美妙而优雅地运行\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能梦的解析\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035280-e7c7d0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（一）\",\n    \"author\": \"摩尔根等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（二）\",\n    \"author\": \"玛丽・居里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类心理学\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035106-50ba06?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034953-de3083?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反抗者\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034860-79f647?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾著作全收录\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西西弗神话\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁？如果有我，有几个我？\",\n    \"author\": \"理查德・大卫・普列斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么：一部教你做得道之人的生命学宝典\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大儒：王阳明\",\n    \"author\": \"周明河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的秩序\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜加油站遇见苏格拉底\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在群中\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033090-248e22?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲之死\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033084-abadc2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精神政治学\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033087-6bd310?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类不平等的起源和基础（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方哲学常识\",\n    \"author\": \"菲利普・斯托克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032880-081e2d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第五辑）\",\n    \"author\": \"雅各布・布克哈特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第六辑）\",\n    \"author\": \"乔治・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第三辑）\",\n    \"author\": \"爱德华・吉本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032616-894226?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学简史\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第四辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生学校：阿兰·德波顿的生活哲学课（套装共5册）\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032523-3b4094?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第一辑）\",\n    \"author\": \"亨利・戴维・梭罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032496-a4b82d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第二辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032466-45f355?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一神论的影子\",\n    \"author\": \"赵汀阳/阿兰・乐比雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"色情\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"链接未找到\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被诅咒的部分\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁冬说庄子系列（套装共六册）\",\n    \"author\": \"梁冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031500-73ab77?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类愚蠢辞典\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表象与本质\",\n    \"author\": \"侯世达/桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叔本华哲学经典（套装共5册）\",\n    \"author\": \"叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030699-1c8a13?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学经典必读系列（套装共5册）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读蒙田，是为了生活\",\n    \"author\": \"萨拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单独中的洞见\",\n    \"author\": \"张方宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开：周濂的100堂西方哲学课\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会创新\",\n    \"author\": \"罗德・贾金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030234-48a5cc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瞩望新轴心时代\",\n    \"author\": \"汤一介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030210-9be232?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的故事\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030186-7ef3cf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的艺术\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翁贝托·埃科作品系列套装（共6册）\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030105-3621bc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直面人生的困惑\",\n    \"author\": \"郭继承\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029922-c7333c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透王阳明《传习录》\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029910-ae3bf9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸书院（套装共8册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029850-c5adf5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王阳明大传：知行合一的心学智慧（全新修订版）\",\n    \"author\": \"冈田武彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029652-25187b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书写的疗愈力量（原书第3版）\",\n    \"author\": \"詹姆斯・彭尼贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029613-545650?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子的领悟\",\n    \"author\": \"周保松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029604-147daf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝笑了99次\",\n    \"author\": \"彼得・凯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029406-b5a217?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自由（理想国新版）\",\n    \"author\": \"约翰・穆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本论（套装共3册）\",\n    \"author\": \"中共中央马克思恩格斯列宁斯大林著作编译局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029451-0ebaad?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周国平尼采译著系列\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029268-e62a4a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的哲学\",\n    \"author\": \"彼得・卡夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的智慧（作家榜经典文库）\",\n    \"author\": \"阿图尔・叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029181-2bb63c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思与《资本论》\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029055-50e394?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美学讲稿\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029019-43518f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦格纳事件\",\n    \"author\": \"弗雷德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028971-e22892?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔霍恩文集（上、下）\",\n    \"author\": \"约翰·C.卡尔霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲（美国新思想运动之父的逻辑学入门读物）\",\n    \"author\": \"威廉・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼采哲学经典（套装共5册）\",\n    \"author\": \"尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028356-b09317?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"箭术与禅心\",\n    \"author\": \"奥根・赫立格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028221-f5198d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的爱情\",\n    \"author\": \"陈果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027975-a6a097?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二性（合卷本）\",\n    \"author\": \"西蒙娜・德・波伏瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的启蒙\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027996-39914b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单向度的人\",\n    \"author\": \"赫伯特・马尔库塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027930-c2ca75?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴特文选（全6册）\",\n    \"author\": \"罗兰・巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平常的恶\",\n    \"author\": \"朱迪丝·N.施克莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027648-d9850c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗素传（全2册）\",\n    \"author\": \"瑞・蒙克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027564-a1949f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力意志与永恒轮回（译文经典）\",\n    \"author\": \"弗里德里希·威廉·尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想国（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027216-6c81c9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐符号\",\n    \"author\": \"塔拉斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界哲学简史\",\n    \"author\": \"罗伯特·C·所罗门等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026994-8f39ae?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自立\",\n    \"author\": \"拉尔夫・瓦尔多・爱默生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026919-bdb3e9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界观（原书第2版）\",\n    \"author\": \"理查德・德威特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026505-be18f3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撼动世界史的思想家格斗\",\n    \"author\": \"茂木诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026415-5855e5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们时代的精神状况\",\n    \"author\": \"海因里希・盖瑟尔伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026277-82d739?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之轮\",\n    \"author\": \"伊丽莎白・库伯勒-罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当美拯救我们\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走，一堂哲学课\",\n    \"author\": \"弗里德里克・格鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福，一次哲学之旅\",\n    \"author\": \"弗雷德里克・勒诺瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025566-82e0dc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界第一好懂的哲学课（修订版）\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025569-9209ca?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中9·禅的入门\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学三论（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024942-0c5d1b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天幕红尘\",\n    \"author\": \"豆豆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024933-e961b6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意识光谱\",\n    \"author\": \"肯・威尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的哲学\",\n    \"author\": \"朱尔斯・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜威选集（5卷本）\",\n    \"author\": \"刘放桐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的哲学密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学·科学·常识\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024279-dcadb0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简西方哲学史\",\n    \"author\": \"杰瑞米・斯坦格鲁/詹姆斯・加维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024156-e74da6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉泵和其他思考工具\",\n    \"author\": \"丹尼尔・丹尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西之道\",\n    \"author\": \"汉斯・格奥尔格・梅勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性、美德和灵魂的声音\",\n    \"author\": \"西塞罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023961-69cf76?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学常识\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023640-fe3bfc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，我是正经哲学书\",\n    \"author\": \"富增章成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023448-35b5d1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单的逻辑学\",\n    \"author\": \"麦克伦尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝话\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实主义者的乌托邦\",\n    \"author\": \"鲁特格尔・布雷格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023271-cc8268?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学之美\",\n    \"author\": \"艾克哈特・玛腾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023118-bb94c1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级智能\",\n    \"author\": \"尼克・波斯特洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶的科学\",\n    \"author\": \"西蒙・巴伦-科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无政府、国家和乌托邦\",\n    \"author\": \"罗伯特・诺齐克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022605-61758e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宪法学说（修订译本）\",\n    \"author\": \"卡尔・施米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022602-de44b4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与你（果麦经典）\",\n    \"author\": \"马丁・布伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022446-f472b6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学起步\",\n    \"author\": \"邓晓芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022341-909e43?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本书书名无法描述本书内容\",\n    \"author\": \"埃里克・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的人（译文经典）\",\n    \"author\": \"威廉・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间重生\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知三部曲\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明2：四句话读懂阳明心学\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明3：王阳明家训\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类存在的意义\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的博弈\",\n    \"author\": \"约翰・戈特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021213-4c529b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中西方哲学史（套装共2册）\",\n    \"author\": \"冯友兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021030-097825?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Illuminations\",\n    \"author\": \"瓦尔特・本雅明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020604-dce4aa?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卸下心头重担\",\n    \"author\": \"阿鲁老和尚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020496-159444?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看，这是哲学\",\n    \"author\": \"唐纳德・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020112-4d9cd4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小书馆系列第一辑（共8册）\",\n    \"author\": \"冯友兰/瞿蜕园/俞剑华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020055-b5b7a8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学学习：斯坦福黄金学习法则\",\n    \"author\": \"丹尼尔 L. 施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020025-038e41?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个瑜伽行者的自传\",\n    \"author\": \"帕拉宏撒・尤迦南达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019968-e117f9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想史：从火到弗洛伊德（全二册）\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想的力量\",\n    \"author\": \"布鲁克・诺埃尔・穆尔/肯尼思・布鲁德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019563-28ba63?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾柯谈美丑（套装共2册）\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019590-c15b80?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学家们都干了些什么？（2015年全新修订版）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019287-bbfe16?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：哲学宗教（上册）\",\n    \"author\": \"周锡䪖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019221-2ec92b?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：哲学宗教（下册）\",\n    \"author\": \"杨祖汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019209-42a853?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Why Buddhism is True\",\n    \"author\": \"Robert Wright\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019161-b5bee8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的快乐\",\n    \"author\": \"罗伯特・所罗门\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019143-2bee90?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"存在主义咖啡馆\",\n    \"author\": \"莎拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019089-4e2eda?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的智慧：如何才能幸福度过一生\",\n    \"author\": \"阿图尔・叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018105-7725a4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名家名译·大师人生智慧精华丛书\",\n    \"author\": \"柏拉图/叔本华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018189-56ffc0?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的智慧（套装共6册）\",\n    \"author\": \"赵丽荣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017973-981516?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实验是如何终结的？\",\n    \"author\": \"彼得・伽里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017994-a7216f?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下的当代性\",\n    \"author\": \"赵汀阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017931-313da6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的孤独\",\n    \"author\": \"陈果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017451-8689ec?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国王的两个身体\",\n    \"author\": \"恩斯特・康托洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活法（修订版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016905-37a500?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给无神论者\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016830-fff7c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的慰藉\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016734-154cfc?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就要很独特\",\n    \"author\": \"西蒙・布莱克本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016554-bec7cf?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静冥想的力量（十册套装）\",\n    \"author\": \"帕拉宏撒・尤迦南达等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016377-d348d3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批判性思维与创造性思维\",\n    \"author\": \"加里・R・卡比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016056-730262?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑十九讲\",\n    \"author\": \"威廉姆・沃克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国的智慧（全2册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015927-98a2b1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界哲学史\",\n    \"author\": \"汉斯・约阿西姆・施杜里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015684-127350?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们如何正确思维\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人溺水\",\n    \"author\": \"拉里莎・麦克法夸尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术的本质\",\n    \"author\": \"布莱恩・阿瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015207-84ea05?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红书\",\n    \"author\": \"荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015039-8a6091?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学的40项研究（第7版）\",\n    \"author\": \"罗杰・R・霍克博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014838-650722?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查拉图斯特拉如是说\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014622-0410f5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悉达多（果麦经典）\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014601-c70ef2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铃木大拙说禅\",\n    \"author\": \"铃木大拙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014136-19a5b6?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界顶级思维\",\n    \"author\": \"沧海满月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013860-8e324d?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书译馆系列（套装10本）\",\n    \"author\": \"尼采等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013554-def23e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本哲学书\",\n    \"author\": \"托马斯・内格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012999-032fe2?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顿悟：捕捉灵感的艺术\",\n    \"author\": \"查尔斯・基弗/马尔科姆・康斯特布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012723-eac5ab?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的蓝色逻辑书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学家们都干了些什么？\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012042-46b91e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义：一场思辨之旅\",\n    \"author\": \"迈可・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012036-0c58f8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《存在与时间》释义\",\n    \"author\": \"张汝伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011925-622b16?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你会杀死那个胖子吗？\",\n    \"author\": \"戴维・埃德蒙兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪漫主义的根源\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011475-a98679?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁是谁的太阳：尼采随笔\",\n    \"author\": \"弗里德里希・威廉・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011469-72eb20?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太傻天书\",\n    \"author\": \"太傻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱智书系(套装共7册)\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011070-3f1f08?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界的本质\",\n    \"author\": \"亚瑟・斯坦利・爱丁顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010893-b337b8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果没有今天，明天会不会有昨天？\",\n    \"author\": \"伊夫・博萨尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010665-9c2c9a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德景观\",\n    \"author\": \"萨姆・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考中医\",\n    \"author\": \"刘力红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010455-725a39?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的灵魂\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的后人类未来\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗洛伊德经典作品集\",\n    \"author\": \"弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010278-e9d59e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人与永恒\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的艺术\",\n    \"author\": \"艾里希・弗洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010122-1f898c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"控制论与科学方法论\",\n    \"author\": \"金观涛/华国凡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009942-8968ed?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方哲学史（套装共2册）\",\n    \"author\": \"弗兰克・梯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009582-0a04b7?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎贝尔生活美学\",\n    \"author\": \"戴安娜・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009570-bbd908?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西天到中土\",\n    \"author\": \"西天中土项目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教育家叔本华\",\n    \"author\": \"韦启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009453-72d4ea?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大断裂\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009438-2a63df?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴阳五要奇书\",\n    \"author\": \"郭璞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009429-d6e794?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的解析\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009282-2232c8?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开放社会及其敌人（全二卷）\",\n    \"author\": \"卡尔・波普尔爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：华夏世界的历史建构\",\n    \"author\": \"刘仲敬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞穴奇案\",\n    \"author\": \"萨伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008175-d08cdd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公正：该如何做是好\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008139-f61de9?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正全集：王阳明全集\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞利格曼幸福五部曲\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是食人族\",\n    \"author\": \"克劳德・列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学究竟是什么（第3版）\",\n    \"author\": \"A.F.查尔默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当道家统治中国\",\n    \"author\": \"林嘉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（30周年纪念版）\",\n    \"author\": \"理查德·道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不能承受的生命之轻\",\n    \"author\": \"米兰·昆德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006690-905dbd?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅与摩托车维修艺术\",\n    \"author\": \"罗伯特·M.波西格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的权利（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006564-636a09?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你永远都无法叫醒一个装睡的人\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代哲学的智慧（译文经典）\",\n    \"author\": \"皮埃尔・阿多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006372-3fb9a1?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华的智慧\",\n    \"author\": \"刘笑敢等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006306-708bf4?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（经典译林）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厚黑学大全集\",\n    \"author\": \"李宗吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005253-80c12a?p=8866\",\n    \"category\": \"哲学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十四史：文白对照版（全12册）\",\n    \"author\": \"《二十四史》编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509637-6f1905?p=8866\",\n    \"category\": \"史书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递1\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866\",\n    \"category\": \"国漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人9\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866\",\n    \"category\": \"国漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鹤三绝\",\n    \"author\": \"二斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866\",\n    \"category\": \"国漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会幸福\",\n    \"author\": \"陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866\",\n    \"category\": \"幸福\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们最幸福\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866\",\n    \"category\": \"幸福\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫与黑：K.J.帕克短篇小说集\",\n    \"author\": \"K.J.帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498744-f6d482?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界奇幻地图\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501741-13c2f5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一律法三部曲\",\n    \"author\": \"乔・阿克罗比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504495-3b4c30?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都市异闻录\",\n    \"author\": \"烟萝萤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510576-c3a618?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长日尽处\",\n    \"author\": \"斯蒂芬妮・加伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512178-3ce912?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟与镜\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512340-683bae?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古王国传奇五部曲\",\n    \"author\": \"加思・尼克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513600-9434c9?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"订书匠\",\n    \"author\": \"布里奇特・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999211-bda260?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刚多林的陷落（插图本）\",\n    \"author\": \"J. R. R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995080-a6b324?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐骨\",\n    \"author\": \"天涯野草\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991843-ed92a9?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人行世界\",\n    \"author\": \"七马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990592-949566?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一月物语\",\n    \"author\": \"平野启一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989392-a006fe?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有顶天家族\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988357-5975f0?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二代目归来\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988351-2d0fbe?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶力量：超自然生物图鉴\",\n    \"author\": \"提姆・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985678-c429a7?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兽国\",\n    \"author\": \"戴夫・艾格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985486-dcca8d?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破战者\",\n    \"author\": \"布兰登・桑德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985150-3bb1ea?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谭恩美作品集（套装共3本）\",\n    \"author\": \"谭恩美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985123-02ba5b?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漏做招牌的疗养院\",\n    \"author\": \"布鲁诺・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984817-29e172?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坟场之书\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984631-c99749?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血与火：坦格利安王朝史\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983806-ec2271?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉戈萨手稿\",\n    \"author\": \"扬・波托茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982513-606bac?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血之遗产\",\n    \"author\": \"理查德˙A.纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054489-624f55?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略级天使\",\n    \"author\": \"白伯欢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052299-3d2050?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐页书城三部曲\",\n    \"author\": \"凯・迈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇想博物志\",\n    \"author\": \"涩泽龙彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051621-c26076?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇物语·噩梦\",\n    \"author\": \"宁航一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051531-fb4a6f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚瑟王之死（果麦经典）\",\n    \"author\": \"托马斯・马洛礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰风谷三部曲\",\n    \"author\": \"R.A.萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050406-705d67?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说3）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051225-10a03f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说1）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050733-ce5a62?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗物质三部曲\",\n    \"author\": \"菲利普・普尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说2）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050352-c86d54?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡林的子女（插图本）\",\n    \"author\": \"J.R.R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044868-5b0ca5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空中城\",\n    \"author\": \"夏芒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043191-5eb35a?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（作家榜经典文库）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042867-c3483f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳王与海妖\",\n    \"author\": \"冯达·N.麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041379-6263bc?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜袭动物园\",\n    \"author\": \"比尔・布龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039288-50ece6?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子不语（果麦经典）\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036864-3b3707?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝魂\",\n    \"author\": \"布兰登・桑德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036789-63a21f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亡者归来\",\n    \"author\": \"詹森・莫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035871-b3b323?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Lost Hero\",\n    \"author\": \"Rick Riordan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034704-83b347?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Son of Neptune\",\n    \"author\": \"Riordan, Rick\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034701-12ce38?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Blood of Olympus\",\n    \"author\": \"Rick Riordan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034686-547a10?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（果麦经典）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿里\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌有乡\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033015-db0e92?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Season of Storms\",\n    \"author\": \"Sapkowski/Andrzej\",\n    \"link\": \"链接未找到\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔文学奖得主石黑一雄作品集（套装共8册）\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032526-985657?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九州缥缈录\",\n    \"author\": \"江南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032490-b7d958?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七侯笔录\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032064-f516e5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪物比利·迪恩的真实故事\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031716-c957b8?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英伦魔法拾遗\",\n    \"author\": \"苏珊娜・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029736-2034c2?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十六骑\",\n    \"author\": \"念远怀人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028368-c78c0c?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地疤\",\n    \"author\": \"柴纳・米耶维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027942-9566c1?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能预警\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027366-bb5633?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未亡日\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027129-0db3f5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（插图珍藏版）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024228-8bc84a?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘与白骨的王国（全4册）\",\n    \"author\": \"格里格・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023694-8bd945?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贞观幽明谭\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023625-5e1243?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗精灵三部曲\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022644-fd884f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧众神\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022500-26f71b?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星尘\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022449-2e132d?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狐狸男孩\",\n    \"author\": \"米拉・巴尔托克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021681-5ea59b?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死灵之书\",\n    \"author\": \"洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021267-6d09de?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迦梨之歌\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021000-5d08a4?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无根之木\",\n    \"author\": \"娜奥米・诺维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018459-bda9be?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫川（全五册）\",\n    \"author\": \"老猪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017499-3d0e79?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵血脉01：血脉\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017235-f0c794?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵血脉02：无星之夜\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017223-2c3fc2?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵血脉03：暗军突袭\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017217-b9f9f5?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵血脉04：破晓之路\",\n    \"author\": \"萨尔瓦多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017214-545592?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妖猫传（全4册）\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015699-96e7ca?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵宝钻\",\n    \"author\": \"托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015567-02c2c7?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上牧云记\",\n    \"author\": \"今何在\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015468-1af3e8?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：魔法的颜色\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015024-5ce406?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：异光\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015021-76665f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：平等权利\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015015-402a9f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：死神学徒\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015012-4369ec?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：大法\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015006-a1b497?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：金字塔\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014994-1dde5b?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：卫兵！卫兵！\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015009-cfd897?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014685-b41a25?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩2：沉默之歌\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014682-90a977?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙娜拉之剑（全3册）\",\n    \"author\": \"特里・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014520-838f52?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：猫和少年魔笛手\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014460-bde9de?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四海鲸骑（套装共2册）\",\n    \"author\": \"马伯庸/驰骋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014385-34f7fa?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法活船1：魔法之船\",\n    \"author\": \"罗宾・霍布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011976-488bf7?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法活船2：疯狂之船\",\n    \"author\": \"罗宾・霍布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011961-e632a9?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法活船3：命运之船\",\n    \"author\": \"罗宾・霍布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011949-ace384?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝伦与露西恩（插图本）\",\n    \"author\": \"托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011979-e75e80?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰龙\",\n    \"author\": \"乔治・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011706-1a3d77?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"觉醒日（套装共4册）\",\n    \"author\": \"唐缺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010131-879962?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金沙古卷（套装全4册）\",\n    \"author\": \"鱼离泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009879-c71aec?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努门诺尔与中洲之未完的传说\",\n    \"author\": \"J.R.R.托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009759-306ebf?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安珀志系列（1-10册）\",\n    \"author\": \"罗杰・泽拉兹尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009735-823f6f?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇动物在哪里\",\n    \"author\": \"J.K.罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009636-41157c?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悟空传（完美纪念版）\",\n    \"author\": \"今何在\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009351-e1b571?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狼的恩赐\",\n    \"author\": \"安妮・赖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008847-6c1eed?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国众神（十周年作者修订版）\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008802-e10699?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪屋女孩\",\n    \"author\": \"兰萨姆・里格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008331-4ae033?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪屋女孩2：空城\",\n    \"author\": \"兰萨姆・里格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008328-d243c1?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光明王系列（套装共2册）\",\n    \"author\": \"罗杰・泽拉兹尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008265-d3532c?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴阳师典藏合集（共5册）\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007383-629588?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙族（共5册）\",\n    \"author\": \"江南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007161-bed205?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天赋者\",\n    \"author\": \"林洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007005-788784?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录2：长安鬼迹\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之一·入唐\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006813-c02669?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之二·咒俑\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006810-5335bf?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之三·胡术\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006801-6964e4?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之四·不空\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006795-b95cc7?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天行健（套装全7册）\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006582-7f3c57?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地海传奇六部曲\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光之轮全集\",\n    \"author\": \"罗伯特·乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006192-45f890?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌1-5卷（全15册）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005802-26b297?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"殷商舰队玛雅征服史\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005349-29bb67?p=8866\",\n    \"category\": \"奇幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：企业数字化生存指南\",\n    \"author\": \"尤尔根・梅菲特/沙莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866\",\n    \"category\": \"数字化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好视频一秒抓住人心\",\n    \"author\": \"高桥弘树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866\",\n    \"category\": \"视频\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷屏\",\n    \"author\": \"凯文・阿洛卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866\",\n    \"category\": \"视频\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华遗韵\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华心影\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老北京的记忆\",\n    \"author\": \"张善培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051321-5b328c?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的隐秘角落\",\n    \"author\": \"陆波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再会，老北京\",\n    \"author\": \"迈克尔・麦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022461-d6df24?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京，1912\",\n    \"author\": \"穆儒丐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017358-eeec31?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八面来风\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014949-70bd3c?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晨钟暮鼓\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红墙黄瓦\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014904-b28aee?p=8866\",\n    \"category\": \"北京\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观念的力量\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866\",\n    \"category\": \"柏林\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林：一座城市的肖像\",\n    \"author\": \"罗里・麦克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866\",\n    \"category\": \"柏林\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡尾酒原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多/亚尼斯・瓦卢西克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866\",\n    \"category\": \"鸡尾酒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔制\",\n    \"author\": \"胡国栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491937-798132?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化的力量\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492024-2f20d3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来呼啸而来\",\n    \"author\": \"彼得・戴曼迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496473-11e887?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生生不息\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497664-326a21?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识的力量\",\n    \"author\": \"梁宇峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期主义\",\n    \"author\": \"高德威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑：看清这个世界的底牌\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样解决问题\",\n    \"author\": \"伯纳德・加雷特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500307-6d78d2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力：全新升级版\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯传\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往财富自由之路\",\n    \"author\": \"阿什文・B. 查布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501078-233e0c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊编年史\",\n    \"author\": \"宁向东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯致股东的信\",\n    \"author\": \"史蒂夫・安德森/卡伦・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502302-565477?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网口述历史第1辑（全8册）\",\n    \"author\": \"方兴东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503886-a36268?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509649-bb9c5c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光环效应\",\n    \"author\": \"罗森维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509661-105edd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广告争夺战\",\n    \"author\": \"肯・奥莱塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509673-5b5abf?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"副业赚钱之道\",\n    \"author\": \"安晓辉/程涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509718-cf4b4b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资：嘉信理财持续创新之道\",\n    \"author\": \"查尔斯・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡&#038;波士顿解决问题方法和创造价值技巧\",\n    \"author\": \"名和高司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509916-d4a822?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来3\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森（\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁军团队\",\n    \"author\": \"欧德张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510093-23e3eb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大头侃人：任正非\",\n    \"author\": \"于立坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬核晋升\",\n    \"author\": \"朱莉・卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的世界\",\n    \"author\": \"许奔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资经典战例之中国恒大\",\n    \"author\": \"正合奇胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510600-59043f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产是部金融史\",\n    \"author\": \"黄立坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本质：贝佐斯的商业逻辑与领导力法则\",\n    \"author\": \"海伦娜・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511119-ae55f7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共创对话\",\n    \"author\": \"林小桢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511161-a37ad3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海星式组织\",\n    \"author\": \"奥瑞・布莱福曼/罗德・贝克斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大营销哲学\",\n    \"author\": \"陈军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511335-35eeb4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从绿到金\",\n    \"author\": \"丹尼尔・埃斯蒂/安德鲁・温斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511350-277a7e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勒布朗·詹姆斯的商业帝国\",\n    \"author\": \"布赖恩・文霍斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511371-8604c1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学危机管理课\",\n    \"author\": \"伦纳德・马库斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511461-c57e66?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级参与者\",\n    \"author\": \"杰里米・海曼斯/亨利・蒂姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511710-5d87a4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好视频一秒抓住人心\",\n    \"author\": \"高桥弘树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造差异\",\n    \"author\": \"斯科特・麦克凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512001-af91e6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密Instagram\",\n    \"author\": \"莎拉・弗莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无止之境\",\n    \"author\": \"秦朔/陈天翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512349-8a08a2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化营销\",\n    \"author\": \"胡华成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售冠军是如何炼成的\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512427-0c8976?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷搅局者\",\n    \"author\": \"莱斯利・柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力变现\",\n    \"author\": \"徐悦佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘网飞\",\n    \"author\": \"马克・伦道夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"方舟：数字经济创新史\",\n    \"author\": \"赵小兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513465-e21bc9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁道之心\",\n    \"author\": \"水户冈锐治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513615-da47d3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义增长\",\n    \"author\": \"马丁・R.斯塔奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513630-010be2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工具，还是武器？\",\n    \"author\": \"布拉德・史密斯/卡罗尔・安・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工匠哲学\",\n    \"author\": \"马修・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004671-7199ef?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从偶然到必然\",\n    \"author\": \"夏忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不拘一格\",\n    \"author\": \"里德・哈斯廷斯/艾琳・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是茅台\",\n    \"author\": \"张小军/马玥/熊玥伽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004500-5515a4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富管理与传承\",\n    \"author\": \"云大慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004485-01b160?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球创新投资\",\n    \"author\": \"睦大均\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉模式\",\n    \"author\": \"迈克尔・瓦伦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004248-9ec263?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识顾客（原书第13版）\",\n    \"author\": \"戴维·L.马瑟斯博等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004203-857c83?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转机\",\n    \"author\": \"萨拉・罗布・奥黑根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯唐成事心法\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世风日上\",\n    \"author\": \"方三文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国出行\",\n    \"author\": \"王千马/何丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002166-292e8e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被看见的力量\",\n    \"author\": \"快手研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001092-9126ac?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"估值：难点、解决方案及相关案例（原书第3版）\",\n    \"author\": \"阿斯瓦斯・达莫达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案写作指南\",\n    \"author\": \"李洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的贸易\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对坦率\",\n    \"author\": \"金・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光刻巨人\",\n    \"author\": \"瑞尼・雷吉梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华方法\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革性创新\",\n    \"author\": \"加里・皮萨诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的悖论\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越寒冬\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998776-90be10?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级话题\",\n    \"author\": \"肖大侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智转向\",\n    \"author\": \"奥马尔・阿布什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾客心理战\",\n    \"author\": \"菲利普・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激进市场\",\n    \"author\": \"埃里克·A.波斯纳/E.格伦·韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995302-d77728?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业之巅\",\n    \"author\": \"周导\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995260-2128f8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞轮效应\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业实战三部曲\",\n    \"author\": \"唐纳德・米勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心：稻盛和夫的一生嘱托\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为增长法\",\n    \"author\": \"胡赛雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994717-50ac38?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去规模化\",\n    \"author\": \"赫曼特・塔内佳/凯文・梅尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商从商朝来\",\n    \"author\": \"傅奕群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994669-267453?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的旅程\",\n    \"author\": \"罗伯特・艾格/乔尔・洛弗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的实践\",\n    \"author\": \"野中郁次郎/西原文乃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻：新全球化时代的中国韧性与创新\",\n    \"author\": \"秦朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啤酒经济学\",\n    \"author\": \"约翰・思文/德文・布里斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从对抗到共赢\",\n    \"author\": \"杨杜泽/沈莉娟/王赛/范松璐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏执乐观\",\n    \"author\": \"李思拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优步：算法重新定义工作\",\n    \"author\": \"亚力克斯・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的经济学\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网四大\",\n    \"author\": \"斯科特・加洛韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叙事经济学\",\n    \"author\": \"罗伯特・希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨界竞争\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扛住就是本事\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯的数字帝国\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七次转型\",\n    \"author\": \"罗伯特 A. 伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢的答案（尊享版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式4.0\",\n    \"author\": \"梁宇亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处不在\",\n    \"author\": \"中国邮政快递报社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发式赢单\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏世民：我的经验与教训\",\n    \"author\": \"苏世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美孚石油公司史\",\n    \"author\": \"艾达・塔贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的行为\",\n    \"author\": \"托马斯・科洛波洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的商学课\",\n    \"author\": \"路骋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长五线\",\n    \"author\": \"王赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：数字化时代组织效率的本质\",\n    \"author\": \"陈春花/朱丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053076-87dade?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无印良品世界观\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052854-1168e3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无印良品笔记术\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052794-d169d9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理如何改变商业模式\",\n    \"author\": \"卡拉・欧戴尔/辛迪・休伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门到门时代\",\n    \"author\": \"Edward Humes\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让顾客都成为回头客\",\n    \"author\": \"安部修仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑞幸闪电战\",\n    \"author\": \"沈帅波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品的101个新零售细节\",\n    \"author\": \"张桓/杨永朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芭比：一个娃娃风靡世界的秘密\",\n    \"author\": \"罗宾・格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢于不同：商业巨头白手起家的秘诀\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050898-fc81cd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉新\",\n    \"author\": \"加布里埃尔・温伯格/贾斯汀・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗经济学\",\n    \"author\": \"彼得・里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050655-a3539f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归商业常识\",\n    \"author\": \"麦克・霍夫林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理是个技术活\",\n    \"author\": \"芭芭拉・米切尔/科妮莉亚・甘伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡新零售\",\n    \"author\": \"场景实验室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹性\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：经济增长新引擎\",\n    \"author\": \"孙松林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华百万大奖赛案例集\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创始人手记\",\n    \"author\": \"季琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“芯”想事成\",\n    \"author\": \"陈芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超脑行为金融学\",\n    \"author\": \"薛冰岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047115-117230?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界皆营销\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫的人生哲学\",\n    \"author\": \"北康利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃不开的经济周期2\",\n    \"author\": \"拉斯・特维德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命4.0\",\n    \"author\": \"菲利普・科特勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越哈佛\",\n    \"author\": \"马克·H.麦考梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046038-9c7a11?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业突围\",\n    \"author\": \"郑旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045927-57d9d5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良性增长\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电式扩张\",\n    \"author\": \"里德 · 霍夫曼/叶嘉新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30天精读MBA（套装共3册）\",\n    \"author\": \"科林・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能战略\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽：风口上的独角兽\",\n    \"author\": \"陈歆磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互惠资本主义\",\n    \"author\": \"布鲁诺・罗奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044532-bf397f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和毕加索一起淋浴\",\n    \"author\": \"克里斯蒂安・斯塔迪尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质套装（全3册）\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱的猴子\",\n    \"author\": \"安东尼奥・加西亚・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像开创者一样思考\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说谎者的扑克牌\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独立，从财富开始\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破之道\",\n    \"author\": \"基思 R. 麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的写作武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的逻辑思维\",\n    \"author\": \"高杉尚伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业冒险\",\n    \"author\": \"约翰・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密硅谷\",\n    \"author\": \"米歇尔 E. 梅西纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20堂商业思维进阶课\",\n    \"author\": \"环球人物新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来版图\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极限创新\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来工作\",\n    \"author\": \"泰勒・皮尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040533-619ca7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破现实的困境\",\n    \"author\": \"克里斯・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售铁军\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线创新\",\n    \"author\": \"李善友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西贝的服务员为什么总爱笑\",\n    \"author\": \"贾林男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反常识\",\n    \"author\": \"邓肯·J. 瓦茨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038859-8c613f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级营销必修课（套装全8册）\",\n    \"author\": \"帕科・昂德希尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意会时刻\",\n    \"author\": \"克里斯琴・马兹比尔格/米凯尔・拉斯马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷帝国\",\n    \"author\": \"露西・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的定位\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的国度\",\n    \"author\": \"詹姆斯・布雷丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从颠覆到创新\",\n    \"author\": \"长江商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业头条\",\n    \"author\": \"兰德尔・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌22律\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Facebook诞生记\",\n    \"author\": \"本・麦兹里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035721-c40b04?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售圣经\",\n    \"author\": \"杰弗里・吉特黙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透股权架构\",\n    \"author\": \"李利威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是风口\",\n    \"author\": \"理查德・布兰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰度决策\",\n    \"author\": \"小约瑟夫・巴达拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌方法\",\n    \"author\": \"比尔・基尔迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的路径\",\n    \"author\": \"斯蒂芬・温克尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"25%的回头客创造75%的利润\",\n    \"author\": \"高田靖久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进化：顶级企业家自述40年成长心法\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出版人\",\n    \"author\": \"艾伦・布里克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险创业\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计大师的商业课\",\n    \"author\": \"戴维・舍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生存\",\n    \"author\": \"李凯旋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032421-4c536f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒂姆·库克传\",\n    \"author\": \"利恩德・卡尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互动\",\n    \"author\": \"詹妮弗・杜尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031617-5f50a6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱彼迎传\",\n    \"author\": \"利・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传\",\n    \"author\": \"哈米什・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售的本质\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷蓝图\",\n    \"author\": \"雅各・范德库伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不放弃\",\n    \"author\": \"唐纳德・特朗普/梅瑞迪斯・麦基沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线：跨越“S型曲线”的二次增长\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时空内爆\",\n    \"author\": \"常政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030543-02217e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃\",\n    \"author\": \"克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事与估值\",\n    \"author\": \"阿斯沃斯・达摩达兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企业生命周期\",\n    \"author\": \"伊查克・爱迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户的本质\",\n    \"author\": \"史蒂文・范・贝莱格姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米哲学\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030237-138f5e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒：如何用价值观创造价值\",\n    \"author\": \"弗雷德・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Trillion Dollar Coach\",\n    \"author\": \"Eric Schmidt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029766-d3bd25?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国陷阱\",\n    \"author\": \"弗雷德里克・皮耶鲁齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏血：一个硅谷巨头的秘密与谎言\",\n    \"author\": \"约翰・卡雷鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能商业\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本质\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029286-80bcf0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊万卡·特朗普\",\n    \"author\": \"伊万卡・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一站火星\",\n    \"author\": \"克里斯蒂安・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是OKR\",\n    \"author\": \"约翰・杜尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028263-0178b7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密无印良品\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028110-182231?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识经济\",\n    \"author\": \"迪恩・卡尔兰/乔纳森・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028074-3310e2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的七个秘密\",\n    \"author\": \"戴维・奥德兹/埃里克・莱曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027957-1bbf09?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是执行力\",\n    \"author\": \"赵伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027924-49edb9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性创新\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027912-c374f8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里铁军销售课\",\n    \"author\": \"李立恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成交：如何实现可持续性销售\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027513-d2ebed?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不颠覆，就会被淘汰\",\n    \"author\": \"杰・萨米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HBO的内容战略\",\n    \"author\": \"小比尔・梅西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026886-3c5154?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人思维\",\n    \"author\": \"贾森・卡拉卡尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小趋势²\",\n    \"author\": \"马克・佩恩/梅勒迪斯・法恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026817-44ce10?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业在路上\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025302-5c18dc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革的基因\",\n    \"author\": \"杨国安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024687-a63a0b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Bad Blood\",\n    \"author\": \"John Carreyrou\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024663-88d5e5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"订阅：数字时代的商业变现路径\",\n    \"author\": \"罗伯特・金奇尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024594-662d48?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常青：如何持久吸引客户\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义团队\",\n    \"author\": \"拉斯洛・博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义公司\",\n    \"author\": \"埃里克・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯长\",\n    \"author\": \"肖恩・阿美拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度粉销\",\n    \"author\": \"丁丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈飞文化手册\",\n    \"author\": \"帕蒂・麦考德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛决策课\",\n    \"author\": \"迈克尔・罗伯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024012-dc6cf8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底特律往事\",\n    \"author\": \"比尔・弗拉斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光电帝国\",\n    \"author\": \"吉尔・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023925-f4200b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的陷阱\",\n    \"author\": \"阿里尔・扎拉奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新理解创业\",\n    \"author\": \"周航\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感驱动\",\n    \"author\": \"维尔・桑切斯・拉米拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识商业\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒循环\",\n    \"author\": \"亚当・潘恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售进化论\",\n    \"author\": \"陈欢/陈澄波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"IBM帝国缔造者：小沃森自传\",\n    \"author\": \"小托马斯・约翰・沃森/彼得・彼得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同感\",\n    \"author\": \"吉姆・西诺雷利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数文明\",\n    \"author\": \"涂子沛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢（纪念版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌创业帮\",\n    \"author\": \"王丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抢占心智\",\n    \"author\": \"江南春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新法则：名企破局秘笈\",\n    \"author\": \"理查德・科克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI·未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众媒时代\",\n    \"author\": \"腾讯传媒研究\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Fifth Discipline Fieldbook\",\n    \"author\": \"Peter M. Senge/et al\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021675-47e500?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见未来商业（套装共4册）\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉你的商业计划书\",\n    \"author\": \"卡尔·J. 施拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远的零售\",\n    \"author\": \"厉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021438-4c2d0b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资源革命\",\n    \"author\": \"斯蒂芬・赫克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变人生\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"MBA十日读（第四版）\",\n    \"author\": \"史蒂文・西尔比格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合伙人制度\",\n    \"author\": \"郑指梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷启动：零成本做营销\",\n    \"author\": \"高臻臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴与四十大道\",\n    \"author\": \"赵先超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020613-0c1a46?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的16个关键词\",\n    \"author\": \"叶茂中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡思维\",\n    \"author\": \"洛威茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智力：商业奇迹的底层思维\",\n    \"author\": \"李中莹/舒瀚霆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019779-447881?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一网打尽：贝佐斯与亚马逊时代\",\n    \"author\": \"布拉德・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019773-9e4c6d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横越未知\",\n    \"author\": \"周健工\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019683-4e86be?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"视觉锤\",\n    \"author\": \"劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019587-9bb3b2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本制造\",\n    \"author\": \"盛田昭夫/下村满子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019545-1177bd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝佳提问：探询改变商业与生活\",\n    \"author\": \"沃伦・贝格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史\",\n    \"author\": \"杨旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大象飞\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞氏企业：设计未来组织新模式\",\n    \"author\": \"里卡多・塞姆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019056-a8bb99?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不做无效的营销\",\n    \"author\": \"王泽蕴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018744-787c46?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米逻辑\",\n    \"author\": \"吴正炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018564-06c2df?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链项目开发指南\",\n    \"author\": \"纳拉扬・普鲁斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018585-e3a2cc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Under New Management\",\n    \"author\": \"David Burkus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018441-015a18?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群思维：精神商业时代的创新创业法\",\n    \"author\": \"付岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018435-120347?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台革命：改变世界的商业模式\",\n    \"author\": \"杰奥夫雷 G. 帕克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺基亚总裁自述：重压之下\",\n    \"author\": \"约玛・奥利拉/哈利・沙库马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017967-f37367?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决战大数据（升级版）\",\n    \"author\": \"车品觉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017913-52f044?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3G资本帝国\",\n    \"author\": \"克里斯蒂娜・柯利娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业36条军规\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与感\",\n    \"author\": \"黎万强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交的本质\",\n    \"author\": \"兰迪・扎克伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质\",\n    \"author\": \"杰克・韦尔奇/苏西・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017043-68bb69?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017052-d7e7bd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡十年，水大鱼大\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017037-4de889?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离经叛道\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016914-9a3963?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Business Adventures\",\n    \"author\": \"John Brooks\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR：源于英特尔和谷歌的目标管理利器\",\n    \"author\": \"保罗・尼文/本・拉莫尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共赢\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016227-aa004f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小群效应\",\n    \"author\": \"徐志斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球风口\",\n    \"author\": \"王煜全/薛兆丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016092-2982cb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容经济\",\n    \"author\": \"谢利明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经营战略全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极复制\",\n    \"author\": \"李智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势红利\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新制造时代\",\n    \"author\": \"王千马/梁冬梅/何丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015264-52fd08?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激活个体\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光变：一个企业及其工业史\",\n    \"author\": \"路风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规则颠覆者\",\n    \"author\": \"内田和成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015054-0bd70a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回头客战略\",\n    \"author\": \"谢家华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔转型：人人都是CEO\",\n    \"author\": \"曹仰锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014961-4d7acd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HR+三支柱\",\n    \"author\": \"彭剑锋/马海刚/西楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014970-7e75ae?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为没有秘密\",\n    \"author\": \"吴春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富甲美国\",\n    \"author\": \"山姆・沃尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014853-c66266?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆品战略\",\n    \"author\": \"金错刀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌（2017全新修订版）\",\n    \"author\": \"陈楫宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014739-d21b56?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公司的概念（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014736-217047?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孵化皮克斯\",\n    \"author\": \"劳伦斯・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业就是要细分垄断\",\n    \"author\": \"李开复/汪华/傅盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样卖龙虾\",\n    \"author\": \"比尔・毕晓普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新物种爆炸\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014184-7e8d0a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆势销售：UGG创始人自述\",\n    \"author\": \"布莱恩・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健管理法\",\n    \"author\": \"张小军/马玥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013983-1e34a0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大道当然\",\n    \"author\": \"王石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精酿啤酒革命\",\n    \"author\": \"史蒂夫・欣迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪潮之巅\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AsK.反直觉询问\",\n    \"author\": \"莱恩・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数型组织\",\n    \"author\": \"萨利姆・伊斯梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无价\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CEO说：像企业家一样思考\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012924-0396bc?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微创新\",\n    \"author\": \"德鲁・博迪/雅各布・戈登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品没有秘密\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福商业决策课\",\n    \"author\": \"卡尔・斯佩茨勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的方法\",\n    \"author\": \"内森・弗尔/杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为工作法\",\n    \"author\": \"黄继伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012357-a75698?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜利的法则\",\n    \"author\": \"铃木博毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可口可乐传\",\n    \"author\": \"马克・彭德格拉斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅2\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活的日本财阀\",\n    \"author\": \"陈霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011748-a353c5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售时代三部曲（套装共三册）\",\n    \"author\": \"杰弗里・米勒/大卫・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的皮球\",\n    \"author\": \"辉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010674-bc3805?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・职场那些事（全10册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010470-365bbf?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・像管理者一样思考（全15册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帮你省时间！替你划重点！教你学管理！\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·道森优势谈判系列\",\n    \"author\": \"罗杰・道森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维独孤九剑\",\n    \"author\": \"赵大伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾\",\n    \"author\": \"尼尔・埃亚尔/瑞安・胡佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级IP：互联网新物种方法论\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱商\",\n    \"author\": \"阿瑟・黑利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009600-e4c107?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十亿美金的教训\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米生态链战地笔记\",\n    \"author\": \"小米生态链谷仓学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能\",\n    \"author\": \"李开复/王咏刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董事会里的战争\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风口上的猪：一本书看懂互联网金融\",\n    \"author\": \"肖璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂到位\",\n    \"author\": \"亚当・施特尔茨/威廉・帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好战略，坏战略\",\n    \"author\": \"理查德・鲁梅尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与众不同\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来：更为简单有效的商业思维\",\n    \"author\": \"贾森・弗里德/大卫・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在火星上退休：伊隆・马斯克传\",\n    \"author\": \"亚当・杰佛逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定位（珍藏版）\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英的48个工作习惯\",\n    \"author\": \"户塚隆将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007767-d82cd1?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·柯林斯成就卓越系列（套装共4册）\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新一轮产业革命\",\n    \"author\": \"亚力克・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳问：柳传志的管理三要素\",\n    \"author\": \"张涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007566-7946b7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰盛人生：安利创始人理查・狄维士自传\",\n    \"author\": \"理查・狄维士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴晓波细说商业史（套装共5册）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007437-79d20a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里传：这是阿里巴巴的世界\",\n    \"author\": \"波特・埃里斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底捞你学不会\",\n    \"author\": \"黄铁鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的解答\",\n    \"author\": \"克莱顿・克里斯坦森/迈克尔・雷纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨越鸿沟：颠覆性产品营销圣经\",\n    \"author\": \"杰弗里・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联想风云三十年\",\n    \"author\": \"赵雪/姜美芝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007260-d642e2?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商战\",\n    \"author\": \"杰克・特劳特 / 阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集装箱改变世界（修订版）\",\n    \"author\": \"马克・莱文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达工作法\",\n    \"author\": \"万达集团企业文化中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"22条商规\",\n    \"author\": \"艾・里斯 / 杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售哲学系列：7-11便利店创始人自述（套装共2册）\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯传：让你的产品、思想、行为像病毒一样入侵\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从20万到30亿：特朗普自传\",\n    \"author\": \"唐纳德・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业 : 新创企业的成长思维\",\n    \"author\": \"埃里克・莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大是熬出来的\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达哲学：王健林首次自述经营之道\",\n    \"author\": \"王健林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白手套\",\n    \"author\": \"陈楫宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006468-79d6ba?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台战略\",\n    \"author\": \"陈威如/余卓轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行在宽处\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想丰满\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生长（权威未删节）\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"豪门兴衰：百年香港商业\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣氏百年：中国商业第一家族\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一个倒下的会不会是华为\",\n    \"author\": \"吴春波/田涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005934-356c47?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门口的野蛮人\",\n    \"author\": \"布赖恩・伯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历代经济变革得失\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005394-6e2c3b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跌荡一百年：中国企业1870-1977（纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩荡两千年：中国企业公元前7世纪-1869年\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网新商业时代（套装共三册）\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化思维\",\n    \"author\": \"凯文・韦巴赫/丹・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大败局（十周年套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1：开启商业与未来的秘密\",\n    \"author\": \"彼得・蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾十五年\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡三十年（套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866\",\n    \"category\": \"商业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间词话：叶嘉莹讲评本\",\n    \"author\": \"叶嘉莹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499446-d9ea31?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画必背古诗词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499623-bea742?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙曼精选套装（共9册）\",\n    \"author\": \"蒙曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500643-e84655?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千家诗（古典文学大字本）\",\n    \"author\": \"谷一然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503001-f69279?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗境浅说\",\n    \"author\": \"俞陛云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512271-003d58?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典诗文之美（共13册）\",\n    \"author\": \"徐中玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004032-266b3e?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴老师魔性诗词课\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995359-399e21?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集校注（中华国学文库）\",\n    \"author\": \"赵崇祚编/杨景龙校注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984802-9d5c8d?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠悠我心\",\n    \"author\": \"史杰鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年灯火要人归\",\n    \"author\": \"陆蓓容\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983866-8a5362?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐祈诗全编\",\n    \"author\": \"唐祈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983401-76fd36?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词排行榜\",\n    \"author\": \"王兆鹏/郁玉英/郭红欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经点醒\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陶渊明集（作家榜经典文库）\",\n    \"author\": \"陶渊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（作家榜经典文库）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笠翁对韵（作家榜经典文库）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典咏流传诗词曲赋集（套装21册）\",\n    \"author\": \"李白/王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳永词集（词系列）\",\n    \"author\": \"柳永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033708-dc7a4b?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姜夔词集（词系列）\",\n    \"author\": \"姜夔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词学通论（词系列）\",\n    \"author\": \"吴梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033588-ce609f?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词品（词系列）\",\n    \"author\": \"杨慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033549-efac50?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧阳修词集（词系列）\",\n    \"author\": \"欧阳修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄庭坚词集（词系列）\",\n    \"author\": \"黄庭坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033456-e77dbf?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐宋词格律（词系列）\",\n    \"author\": \"龙榆生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033402-d9e7be?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏轼词集（词系列）\",\n    \"author\": \"苏轼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晏殊词集·晏幾道词集（词系列）\",\n    \"author\": \"晏殊/晏几道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词集（词系列）\",\n    \"author\": \"张草纫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033222-a4ae5e?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温庭筠词集·韦庄词集（词系列）\",\n    \"author\": \"温庭筠/韦庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦观词集（词系列）\",\n    \"author\": \"秦观\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033132-aa3b54?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白雨斋词话（词系列）\",\n    \"author\": \"陈廷焯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周邦彦词集（词系列）\",\n    \"author\": \"周邦彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033030-271dc5?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贺铸词集（词系列）\",\n    \"author\": \"贺铸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032997-d1ca33?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陆游词集（词系列）\",\n    \"author\": \"陆游\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词鉴赏辞典\",\n    \"author\": \"唐圭璋/钟振振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐诗鉴赏辞典\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛弃疾词集（词系列）\",\n    \"author\": \"辛弃疾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029985-edf7ad?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋诗鉴赏辞典\",\n    \"author\": \"缪钺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029934-f3d31f?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小山词\",\n    \"author\": \"晏几道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026337-eedc64?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国诗词大会第二季（上册）\",\n    \"author\": \"栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015846-9ab93d?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国诗词大会第二季（下册）\",\n    \"author\": \"栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015822-5a5bf1?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词大会：品味古文人的“八卦”人生（套装共4册）\",\n    \"author\": \"张觅/郭瑞祥/江晓英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009096-8baf10?p=8866\",\n    \"category\": \"诗词\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰烬的光辉：保罗策兰诗选\",\n    \"author\": \"保罗・策兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493716-834b61?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新冠时代的我们\",\n    \"author\": \"保罗・乔尔达诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切境\",\n    \"author\": \"庆山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498237-63e633?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫里的中国\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498681-511b6c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万个明天\",\n    \"author\": \"秦萤亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498915-531f5e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的巴黎\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499392-a3a61b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间清醒\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501171-da5945?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国诗人徐志摩作品典藏全集\",\n    \"author\": \"徐志摩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只是眷恋这人间烟火（全新修订版）\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508929-c650ea?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡澜生活美学系列（套装共9册）\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509004-95a6e4?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢生命根底里的宁静\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第二季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典散文精选注译（套装共8册）\",\n    \"author\": \"傅璇琮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生因孤独而丰盛\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509907-f0c5ef?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉魏六朝文选\",\n    \"author\": \"刘文忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510924-186bf2?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度光阴的人\",\n    \"author\": \"苏辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511038-a9bf9b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书鱼知小\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511173-ce7dc0?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白沙：来自外部世界的经历\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511329-9cfa6d?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生处处是修行\",\n    \"author\": \"鬼脚七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511509-cd8ae1?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱天下一切狗\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511947-976f66?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥肉（增订版）\",\n    \"author\": \"朱赢椿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512190-f52a7f?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游荡集\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和狗狗的十二次哲学漫步\",\n    \"author\": \"安东尼・麦高恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512505-d10692?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨夜短文\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513132-48b671?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国作家朱自清作品典藏全集（套装共十六册）\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513285-ea02d5?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第一季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书读完了\",\n    \"author\": \"金克木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513549-f99712?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的原野盛宴\",\n    \"author\": \"张炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513663-a26536?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张先生说\",\n    \"author\": \"张五毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004569-4fbbb6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此刻的温柔\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004431-6e97cd?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文精选散文系列（全6册）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汪曾祺散文全编（全6卷）\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋灯琐忆（果麦经典）\",\n    \"author\": \"蒋坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003561-7f6be6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"露水的世\",\n    \"author\": \"文泉子/小林一茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003459-74a562?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生未完成（增订新版）\",\n    \"author\": \"于娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生\",\n    \"author\": \"刘汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌以言志\",\n    \"author\": \"周毅/舒明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002397-3d9575?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祝你快乐勇敢\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废墟曾经辉煌\",\n    \"author\": \"张翎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997651-35de85?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记丛书\",\n    \"author\": \"沈复/陈裴之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张洁文集（九卷本）\",\n    \"author\": \"张洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯骥才记述文化五十年（全四册）\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994882-c8931c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善哉善哉，就你话多\",\n    \"author\": \"明安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，我是接体员\",\n    \"author\": \"大师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假作真时\",\n    \"author\": \"黄昱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八千里路云和月\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一次将是烈火\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大吉岭到克什米尔\",\n    \"author\": \"闻中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的面孔\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988498-04aa6e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝的驿站\",\n    \"author\": \"夏坚勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988093-4ba392?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏东坡的山药粥\",\n    \"author\": \"徐佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986113-258fce?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评说历史系列丛书（套装共7册）\",\n    \"author\": \"夏坚勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的美的世界\",\n    \"author\": \"森茉莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985480-47ad93?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的寻根记\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985477-568b84?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李娟阿勒泰系列（共4册）\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身外之海\",\n    \"author\": \"李唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983404-123992?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切特立独行的人都意味着强大\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053730-614dee?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长皱了的小孩\",\n    \"author\": \"严明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052575-e2c228?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有人必须死\",\n    \"author\": \"李非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051657-e02af4?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书大全套\",\n    \"author\": \"朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书（全本全注全译）\",\n    \"author\": \"张建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山之四季（果麦经典）\",\n    \"author\": \"高村光太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有一个人生\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰夫·戴尔作品套装（共5册）\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044583-471d7c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的事情\",\n    \"author\": \"苇岸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国深南之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拔蒲歌\",\n    \"author\": \"沈书枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"津轻\",\n    \"author\": \"太宰治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038310-49be36?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搭子\",\n    \"author\": \"张忌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037710-a0a7d8?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（译文经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的善良必须有点锋利\",\n    \"author\": \"拉尔夫・沃尔多・爱默生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035928-db8b0b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反与正·婚礼集·夏\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨天炎天\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韩寒的杂文们（套装共4册）\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食家\",\n    \"author\": \"陆文夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033072-217156?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢人生快活的样子\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蠹鱼文丛系列（套装10册）\",\n    \"author\": \"陈子善/叶瑜荪/李辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉住气，吃硬饭\",\n    \"author\": \"王路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪认知\",\n    \"author\": \"尹惟楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小于一\",\n    \"author\": \"约瑟夫・布罗茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩儿\",\n    \"author\": \"于谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日书\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生是我吗\",\n    \"author\": \"刘苇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱你就像爱生命\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清欢三卷（唯美珍藏版）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寥寥中年事\",\n    \"author\": \"秋色连波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一个蛋开始\",\n    \"author\": \"徐则臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031023-96e5b6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸短情长，民国大师们的最美情书（全6册套装）\",\n    \"author\": \"朱生豪/鲁迅/闻一多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿皮火车（精装增补图文版）\",\n    \"author\": \"周云蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030276-97ed20?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天真的幽默家\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的村庄\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030066-8b5d8b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古云霄\",\n    \"author\": \"陈之藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030048-2b15f8?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·与书私奔\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲤·文艺青年\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029814-7a5327?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书贩笑忘录\",\n    \"author\": \"陈晓维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029508-bfbc07?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"足球往事\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029478-ccc720?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林清玄经典作品合集（套装共十二册）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029175-3e7510?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普通读者\",\n    \"author\": \"西闪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与父辈\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028956-93737c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林中水滴\",\n    \"author\": \"米・普里什文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028419-0eee62?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古文辞类纂（全2册）\",\n    \"author\": \"姚鼐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028095-524f25?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕草子（作家榜经典文库）\",\n    \"author\": \"清少纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027870-72fe86?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水滴的音乐\",\n    \"author\": \"阿尔多斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027666-cf6538?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒谬的墙\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击壤歌\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027555-f77b84?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖梦\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027507-c137e1?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草叶集\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027444-42197e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青鸟故事集\",\n    \"author\": \"李敬泽\",\n    \"link\": \"链接未找到\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自在独行\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026964-7741e7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自立\",\n    \"author\": \"拉尔夫・瓦尔多・爱默生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026919-bdb3e9?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚土\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025698-a4bd7e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走，一堂哲学课\",\n    \"author\": \"弗里德里克・格鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福，一次哲学之旅\",\n    \"author\": \"弗雷德里克・勒诺瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025566-82e0dc?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出荒野\",\n    \"author\": \"谢丽尔・斯特雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我讲个笑话，你可别哭啊\",\n    \"author\": \"囧叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024642-ca56cb?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在另一个宇宙的1003天\",\n    \"author\": \"张春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人爱我\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢煮生活\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023556-6ec377?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不过，一场生活\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天长地久：给美君的信\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林达作品集（套装共10册）\",\n    \"author\": \"林达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背影\",\n    \"author\": \"朱自清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有如候鸟\",\n    \"author\": \"周晓枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一瓢纽约\",\n    \"author\": \"张北海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021135-c37724?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有时\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020499-b76fe6?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水云（果麦经典）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东瀛文人·印象中国（套装共5册）\",\n    \"author\": \"芥川龙之介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019443-64d478?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间卧底\",\n    \"author\": \"马良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019188-c5a941?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商市街（果麦经典）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019179-fa4281?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人是一根会思考的芦苇\",\n    \"author\": \"帕斯卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018051-3c51aa?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是人间四月天\",\n    \"author\": \"林徽因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017307-901fb8?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无聊的魅力\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱逝水年华\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016731-8427f1?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知道分子\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014475-8625ba?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"居山而行\",\n    \"author\": \"雲姑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013512-eda5a3?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生最美是清欢\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012576-33020b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你与这世界温暖相拥\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012573-78aa7b?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深山夏牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012348-5be301?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前山夏牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012354-ef6a56?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012315-5f2f15?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒哈拉的故事\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011679-8f3c6e?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日走过山间（果麦经典）\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生插图版经典作品选（全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍遗珠\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间世\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010728-b43c36?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿司匹林博物馆\",\n    \"author\": \"赵越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊次郎与佐纪\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009915-10ba80?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国趣读系列（共5册）\",\n    \"author\": \"编辑组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009972-90b3b7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像我这样的一个读者\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔作品集（套装共9册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着本来单纯：丰子恺散文漫画精品集\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上午咖啡下午茶\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当呼吸化为空气\",\n    \"author\": \"保罗・卡拉尼什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得读完的书\",\n    \"author\": \"聂震宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年一叹\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮囊\",\n    \"author\": \"蔡崇达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清的角落\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目送（插图版）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1933：聆听民国\",\n    \"author\": \"林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是爬行者小江\",\n    \"author\": \"江一燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006828-cf34d0?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（经典译林）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打回原形\",\n    \"author\": \"朱新建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的阿勒泰\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005583-4653e8?p=8866\",\n    \"category\": \"散文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意短视频策划、推广、引流、爆粉与变现全能攻略\",\n    \"author\": \"肖恩・卡内尔/本吉・特拉维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"催化：让一切加速改变\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510570-5a6471?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转化率实战技巧从入门到精通\",\n    \"author\": \"营销铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510741-6aef3c?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"点亮视频号\",\n    \"author\": \"刘兴亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511014-d8a952?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无止之境\",\n    \"author\": \"秦朔/陈天翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512349-8a08a2?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"得粉丝者得天下\",\n    \"author\": \"佐伊・弗拉德・布拉纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004536-baa43e?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抖音营销系统\",\n    \"author\": \"刘大贺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外卖超级运营术\",\n    \"author\": \"饿了么\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据呈现之美\",\n    \"author\": \"凌祯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988333-c13fbe?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"15秒的商机\",\n    \"author\": \"胡涵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051903-88c85f?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉新\",\n    \"author\": \"加布里埃尔・温伯格/贾斯汀・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级转化率\",\n    \"author\": \"陈勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破之道\",\n    \"author\": \"基思 R. 麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首席增长官\",\n    \"author\": \"张溪梦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高阶运营\",\n    \"author\": \"龙共火火\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户的本质\",\n    \"author\": \"史蒂文・范・贝莱格姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微博营销与运营\",\n    \"author\": \"秋叶/萧秋水/刘勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025710-bd18ec?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微信营销与运营\",\n    \"author\": \"秦阳/秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025686-646e79?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销实战手册\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体写作平台策划与运营\",\n    \"author\": \"哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025650-823a65?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯长\",\n    \"author\": \"肖恩・阿美拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新理解创业\",\n    \"author\": \"周航\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作是最好的自我投资\",\n    \"author\": \"Spenser\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023547-075742?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷屏\",\n    \"author\": \"凯文・阿洛卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷启动：零成本做营销\",\n    \"author\": \"高臻臻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销与运营\",\n    \"author\": \"秋叶/秦阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网下半场\",\n    \"author\": \"李光斗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017361-0a5786?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光2.0\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11.11如何卖到一个亿\",\n    \"author\": \"陈炉均/陈威/马国良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户力：需求驱动的产品、运营和商业模式\",\n    \"author\": \"郝志中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始做运营进阶篇\",\n    \"author\": \"张亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010224-4cbecb?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始做运营入门篇\",\n    \"author\": \"张亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009843-bcf808?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛点：挖掘小数据满足用户需求\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866\",\n    \"category\": \"运营\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的读书计划\",\n    \"author\": \"克里夫顿・费迪曼/约翰・S・梅杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866\",\n    \"category\": \"书单\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读水浒\",\n    \"author\": \"押沙龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497586-5c95ce?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜之家\",\n    \"author\": \"殳俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511095-b66fd2?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理分析\",\n    \"author\": \"张蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的骑士男孩\",\n    \"author\": \"金・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989767-a100a8?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果没有明天\",\n    \"author\": \"余耕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983716-ce8642?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（果麦经典）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使（见识丛书）\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪与罚（名著名译丛书）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束（理想国）\",\n    \"author\": \"丹尼尔・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海鲸梦\",\n    \"author\": \"伊恩・麦奎尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033870-13a526?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十五条狗\",\n    \"author\": \"安德烈・亚历克西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032739-cd5508?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日尽处\",\n    \"author\": \"荷曼・柯赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030960-3f8658?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028746-af85fd?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高老头（作家榜经典文库）\",\n    \"author\": \"奥诺雷·德·巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027474-27cba5?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛德勒名单（译文经典）\",\n    \"author\": \"托马斯・基尼利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027282-8e342c?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原谅我红尘颠倒\",\n    \"author\": \"慕容雪村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019941-47b45f?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追风筝的人\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016443-983457?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从此以后\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012462-214ab8?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香蕉的低语\",\n    \"author\": \"伊切・泰玛尔库兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011982-494983?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以诈止诈\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011319-2fc00d?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小心，无良是一种病\",\n    \"author\": \"玛莎・斯托特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010494-d80680?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到那一天\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝秦书：民国十八年饥馑\",\n    \"author\": \"张浩文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009609-b22205?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂静的烽塔\",\n    \"author\": \"卡伊斯・阿克巴尔・奥马尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008757-f55e62?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓鱼的男孩\",\n    \"author\": \"奇戈希・奥比奥玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007668-848bf7?p=8866\",\n    \"category\": \"人性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哪吒：业火红莲\",\n    \"author\": \"马御\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051309-a8695f?p=8866\",\n    \"category\": \"哪吒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哪吒\",\n    \"author\": \"奚淞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049710-0661df?p=8866\",\n    \"category\": \"哪吒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销与运营\",\n    \"author\": \"秋叶/秦阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866\",\n    \"category\": \"社群\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群思维：精神商业时代的创新创业法\",\n    \"author\": \"付岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018435-120347?p=8866\",\n    \"category\": \"社群\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后谷歌时代\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网四大\",\n    \"author\": \"斯科特・加洛韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌的故事\",\n    \"author\": \"戴维・怀斯/马克・摩西德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌方法\",\n    \"author\": \"比尔・基尔迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计冲刺\",\n    \"author\": \"杰克・纳普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866\",\n    \"category\": \"谷歌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人三千年简史\",\n    \"author\": \"雷蒙德・P.谢德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"&#8216;犹&#8217;钱的思维\",\n    \"author\": \"蓝龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000435-849e35?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史\",\n    \"author\": \"克劳斯·P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太文明\",\n    \"author\": \"S.N.艾森斯塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人的故事：寻找失落的字符\",\n    \"author\": \"西门·沙马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866\",\n    \"category\": \"犹太\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守望先锋（第一卷）\",\n    \"author\": \"美国暴雪娱乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866\",\n    \"category\": \"暴雪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血之遗产\",\n    \"author\": \"理查德˙A.纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054489-624f55?p=8866\",\n    \"category\": \"暴雪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么不平等至关重要\",\n    \"author\": \"托马斯・斯坎伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866\",\n    \"category\": \"不平等\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断裂的阶梯\",\n    \"author\": \"基思・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866\",\n    \"category\": \"不平等\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"整个巴黎属于我\",\n    \"author\": \"莱斯利·M.M.布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866\",\n    \"category\": \"海明威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丧钟为谁而鸣（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866\",\n    \"category\": \"海明威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在此时此刻\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866\",\n    \"category\": \"正念\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会吃饭\",\n    \"author\": \"珍・克里斯特勒/艾莉莎・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866\",\n    \"category\": \"正念\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码时间\",\n    \"author\": \"阿德里安・巴登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间观\",\n    \"author\": \"西蒙・加菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054399-46d739?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造时间\",\n    \"author\": \"杰克・纳普/约翰・泽拉茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的秩序\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之问\",\n    \"author\": \"汪波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031944-64d9c3?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天最重要的2小时\",\n    \"author\": \"乔西・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的礼物\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029586-943dca?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Order of Time\",\n    \"author\": \"Carlo Rovelli\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023880-1dbfad?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是时间控\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间不存在\",\n    \"author\": \"韩松/刘宇昆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022311-2d6973?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来时间使用手册\",\n    \"author\": \"松冈真宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020493-4cfaea?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇特的一生\",\n    \"author\": \"格拉宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019428-6d23f0?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把时间当作朋友（第3版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一年的8760小时\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效15法则\",\n    \"author\": \"凯文・克鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015645-a8ae79?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗时间\",\n    \"author\": \"刘未鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别再用勤奋掩饰你的懒惰\",\n    \"author\": \"阿何\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自制力\",\n    \"author\": \"高原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法图解\",\n    \"author\": \"诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866\",\n    \"category\": \"时间\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大历史的角度读蒋介石日记\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866\",\n    \"category\": \"蒋介石\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"败因：蒋介石为什么败退台湾？\",\n    \"author\": \"武更斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866\",\n    \"category\": \"蒋介石\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大灭绝时代：一部反常的自然史\",\n    \"author\": \"伊丽莎白·科尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866\",\n    \"category\": \"自然科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋带\",\n    \"author\": \"多梅尼科・斯塔尔诺内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002025-658d6b?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马的日常生活\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法外套\",\n    \"author\": \"迪诺・布扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051177-97588d?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂的奥兰多\",\n    \"author\": \"卢多维科・阿里奥斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被弃养的女孩\",\n    \"author\": \"多娜泰拉・迪皮耶特兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046107-0c342f?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马故事\",\n    \"author\": \"阿尔贝托・莫拉维亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045699-a7a41a?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上威尼斯\",\n    \"author\": \"亚历山德罗・马尔佐・马尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"覆舟的愉悦\",\n    \"author\": \"朱塞培・翁加雷蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你老去\",\n    \"author\": \"伊塔洛・斯韦沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043218-37b8f5?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看懂艺术2\",\n    \"author\": \"翁昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042954-894e44?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100：小小说百篇\",\n    \"author\": \"乔治・曼加内利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036240-367630?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美第奇家族的兴衰\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八山\",\n    \"author\": \"保罗・科涅蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032958-286774?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周期表\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮\",\n    \"author\": \"库尔齐奥・马拉巴特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031356-2f3f74?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞑靼人沙漠\",\n    \"author\": \"迪诺・布扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030852-8f4137?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Mrs Rosie and the Priest\",\n    \"author\": \"Giovanni Boccaccio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029754-27a45a?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃科谈文学\",\n    \"author\": \"翁贝托・埃科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029565-dea3c1?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶之路\",\n    \"author\": \"格拉齐娅・黛莱达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026976-20eadc?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十日谈（译文名著典藏）\",\n    \"author\": \"卜伽丘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026835-513c66?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥意大利史\",\n    \"author\": \"克里斯托弗・达根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022665-152e48?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵萨包达美术馆\",\n    \"author\": \"弗朗西斯卡・萨尔瓦多里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022152-0c3bb2?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨圣母百花大教堂博物馆\",\n    \"author\": \"蒂莫西・弗登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯国家考古博物馆\",\n    \"author\": \"迪雷塔・哥伦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马博尔盖塞美术馆\",\n    \"author\": \"弗朗切斯卡・卡丝特丽雅・马尔凯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰波尔迪·佩佐利博物馆\",\n    \"author\": \"玛利亚·特蕾莎·巴尔博尼·布雷萨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯卡波迪蒙特博物馆\",\n    \"author\": \"马蒂亚・盖塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教宗与墨索里尼\",\n    \"author\": \"大卫·I.科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰斯福尔扎古堡博物馆\",\n    \"author\": \"马蒂诺・阿斯托尔菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019149-58301b?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯学院美术馆\",\n    \"author\": \"露琪亚・伊姆佩鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019119-338773?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热那亚新街博物馆\",\n    \"author\": \"皮耶罗・波卡尔多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018768-b9b484?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马德里普拉多博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018684-d7b281?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝三日\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十日谈（译文名著精选）\",\n    \"author\": \"卜伽丘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007794-cbc429?p=8866\",\n    \"category\": \"意大利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·家具篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866\",\n    \"category\": \"收藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·杂项篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866\",\n    \"category\": \"收藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·陶瓷篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039768-92e788?p=8866\",\n    \"category\": \"收藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·玉器篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039759-8e7733?p=8866\",\n    \"category\": \"收藏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们被偷走的注意力\",\n    \"author\": \"斯特凡・范德斯蒂格谢尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866\",\n    \"category\": \"注意力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注意力曲线\",\n    \"author\": \"露西・乔・帕拉迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022548-72319e?p=8866\",\n    \"category\": \"注意力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻业的怀乡病\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513351-511f7d?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《纽约时报》是怎么做新闻的\",\n    \"author\": \"尼基・阿瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003819-60e127?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"效应\",\n    \"author\": \"中璋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997804-194bf8?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国科学新闻精选套装\",\n    \"author\": \"《科学新闻》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的对面是你\",\n    \"author\": \"傅莹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024765-1f9c07?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王国与权力\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022410-4ed181?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度：惊心动魄三十年国运家事纪实\",\n    \"author\": \"李锦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020544-1aec28?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻抄袭历史\",\n    \"author\": \"宋燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866\",\n    \"category\": \"新闻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇传：自由的心灵\",\n    \"author\": \"查尔斯・尼科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491400-800bfb?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺顿音乐断代史丛书（套装共4册）\",\n    \"author\": \"菲利普・唐斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿经典作品集（套装10册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝来了\",\n    \"author\": \"马菁菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雕刻大地\",\n    \"author\": \"林璎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499059-e0fff6?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来艺术丛书（全7册）\",\n    \"author\": \"弗里德里希・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499785-9d1eba?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝暮集\",\n    \"author\": \"呼葱觅蒜/白落梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画以人传\",\n    \"author\": \"陈文璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优雅变老的艺术\",\n    \"author\": \"奥特弗里德・赫费\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500535-92fecd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本艺术之美（套装共5册）\",\n    \"author\": \"叶渭渠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501900-e2790a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术的故事（共12册）\",\n    \"author\": \"林家治等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503403-e9d087?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读电影·百年奥斯卡佳片品鉴（套装3册）\",\n    \"author\": \"杨晓林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503820-7cf8c0?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原典书坊合辑（全八册）\",\n    \"author\": \"鲁迅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对立之美：西方艺术500年\",\n    \"author\": \"严伯钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508380-723c56?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看名画的眼睛系列（套装共7册）\",\n    \"author\": \"尾崎彰宏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508881-f0aabb?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝物录\",\n    \"author\": \"尤迪特・沙朗斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余下只有噪音\",\n    \"author\": \"亚历克斯・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509967-ee6928?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体的语言\",\n    \"author\": \"列夫・马诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天谈美\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510363-f6a67e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平面设计200年\",\n    \"author\": \"史蒂文・海勒/西摩・切瓦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510684-c22f94?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星船与大树\",\n    \"author\": \"马慧元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超现实主义宣言\",\n    \"author\": \"安德烈・布勒东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511032-8e425b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布光是门大学问\",\n    \"author\": \"克里斯汀・霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511296-8d6ccf?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界建筑漫游指南（套装共6册）\",\n    \"author\": \"陈文捷等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511977-1ed179?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培生艺术史（套装6册）\",\n    \"author\": \"大卫·G.威尔金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511581-0d0d59?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影管理课\",\n    \"author\": \"汤姆・雷利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511722-52b940?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非凡抄本寻访录\",\n    \"author\": \"克里斯托弗・德・哈梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512256-da56df?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画家的一天\",\n    \"author\": \"段张取艺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512166-2a760f?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高的耳朵\",\n    \"author\": \"贝尔纳黛特・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512619-adecfe?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"号角：世界经典制服徽章艺术全集（套装共10册）\",\n    \"author\": \"指文号角工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513021-755d2a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世绘\",\n    \"author\": \"潘力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512862-662b8e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高品质摄影全流程解析（套装全9册）\",\n    \"author\": \"斯科特・凯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513114-e51622?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高手稿（典藏修订版）\",\n    \"author\": \"文森特・凡高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513045-85b0e4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻美：摄影中的东方美学\",\n    \"author\": \"青简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇：500年纪念版\",\n    \"author\": \"马汀・坎普/法比奥・斯卡莱蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513528-1ecffb?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"探戈艺术的中国之花\",\n    \"author\": \"欧占明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513636-a3ca87?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴戏剧\",\n    \"author\": \"苏广辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003891-a41242?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的建筑有多重？\",\n    \"author\": \"迪耶・萨迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003549-268c81?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妆束：大唐女儿行\",\n    \"author\": \"左丘萌/末春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美学漫步\",\n    \"author\": \"宗白华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002514-7384a3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大道既隐\",\n    \"author\": \"彭卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002205-8879ae?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定义邪典电影\",\n    \"author\": \"马克・扬克维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002151-9c4719?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曼哈顿的中国杂技\",\n    \"author\": \"李尤松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001836-8e306e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名画中的符号\",\n    \"author\": \"平松洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001521-888cfc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不正经的卢浮宫\",\n    \"author\": \"西塞尔・巴隆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挥云而去：十张画里看中国\",\n    \"author\": \"韩涧明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999820-7f8c31?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表演者言\",\n    \"author\": \"电影频道《今日影评》栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津艺术史系列（第一辑）\",\n    \"author\": \"罗宾・奥斯本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的美学\",\n    \"author\": \"查尔斯・塔利亚费罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998848-bdbcb5?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的艺术\",\n    \"author\": \"劳里・施耐德・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997810-a286ea?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"残酷剧场\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997615-258e96?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影的元素\",\n    \"author\": \"罗伯特・伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996553-12e06b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学（作家榜经典文库）\",\n    \"author\": \"H. A. 丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编剧的艺术\",\n    \"author\": \"拉约什・埃格里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994639-027e11?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲鸿生命\",\n    \"author\": \"范迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994642-86e3db?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑老绘画陈列馆（伟大的博物馆）\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文精神的伟大冒险\",\n    \"author\": \"菲利普·E.毕肖普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国艺术精神\",\n    \"author\": \"徐复观\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990142-c2cdbd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见毕加索\",\n    \"author\": \"让・科克托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990127-c4de9b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个天文学家的夜空漫游指南\",\n    \"author\": \"郑春顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国绘画史\",\n    \"author\": \"陈师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手作理想国\",\n    \"author\": \"墨念女塾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990022-e0865e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日42：枯山水\",\n    \"author\": \"茶乌龙主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988927-f3482b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大话西方艺术史\",\n    \"author\": \"意公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988072-ecbb42?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"条条大路通书法\",\n    \"author\": \"寇克让\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987247-df4df8?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装的艺术\",\n    \"author\": \"本・雅格达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术馆漫步：法国、伦敦、西班牙（全三册）\",\n    \"author\": \"崔瓊化等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986452-33c37f?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术精神\",\n    \"author\": \"罗伯特・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985927-d00167?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光博物馆\",\n    \"author\": \"人民日报社新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方画家及其作品套装（全4册）\",\n    \"author\": \"王月亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书籍形态艺术\",\n    \"author\": \"善本出版有限公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985075-19633a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代主义：从波德莱尔到贝克特之后\",\n    \"author\": \"彼得・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游艺黑白（全四册）\",\n    \"author\": \"焦元溥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982555-e57eb3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让木乃伊跳舞（新版）\",\n    \"author\": \"托马斯・霍文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学\",\n    \"author\": \"丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982453-5594f6?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永字八法\",\n    \"author\": \"周汝昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053631-407cc1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术史：1940年至今天\",\n    \"author\": \"乔纳森・费恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影（牛津通识读本）\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戏剧（牛津通识读本）\",\n    \"author\": \"马文・卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗丹艺术论\",\n    \"author\": \"奥古斯特・罗丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052005-e1851b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美之地图\",\n    \"author\": \"米哈埃拉・诺洛茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗兰·巴尔特文集（套装）\",\n    \"author\": \"罗兰・巴尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术史十议\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴人\",\n    \"author\": \"罗伯特・戴维斯/贝丝・琳达史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷谈艺录及其他\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"章服之实\",\n    \"author\": \"王亚蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺：写给大家的简明艺术启蒙（套装共5册）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045609-c32fd3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽之问\",\n    \"author\": \"弗兰克・维尔切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到你的世界\",\n    \"author\": \"莎拉・威廉姆斯・戈德哈根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜尚传（第二版）\",\n    \"author\": \"王瑞芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044862-f93665?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"建筑改变日本\",\n    \"author\": \"伊东丰雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美不言\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看懂艺术\",\n    \"author\": \"翁昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043074-fa6d7a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看懂艺术2\",\n    \"author\": \"翁昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042954-894e44?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽象城市\",\n    \"author\": \"克里斯托夫・尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·家具篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马未都说收藏·杂项篇\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方文明史：延续不断的遗产（第五版）\",\n    \"author\": \"马克・凯什岚斯基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶与茶器\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非平面\",\n    \"author\": \"尼克・索萨尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷家书（经典版）\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥艺术史（套装全8册）\",\n    \"author\": \"苏珊・伍德福德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034887-1b0a28?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：众人受到召唤\",\n    \"author\": \"生活月刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈之书\",\n    \"author\": \"曼纽尔・利马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光影里的梦幻与真实\",\n    \"author\": \"郑实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画见\",\n    \"author\": \"止庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米开朗琪罗与教皇的天花板\",\n    \"author\": \"罗斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC艺术经典三部曲\",\n    \"author\": \"肯尼斯・克拉克/罗伯特・休斯/西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033444-1d3101?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界美术名作二十讲\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032403-de23a0?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱桃的滋味\",\n    \"author\": \"阿巴斯・基阿鲁斯达米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032268-b0e557?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生是我吗\",\n    \"author\": \"刘苇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"初见卢浮宫\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点艺术\",\n    \"author\": \"谭力勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捡来的瓷器史\",\n    \"author\": \"涂睿明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031281-17ad02?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影是什么？\",\n    \"author\": \"安德烈・巴赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛丰年音乐文集（套装共六册）\",\n    \"author\": \"辛丰年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030315-421cb1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传统即创造\",\n    \"author\": \"冈本太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029670-6ab6ca?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今日的艺术\",\n    \"author\": \"冈本太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029625-e03046?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想的境界：历史真实中的山水画\",\n    \"author\": \"王平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029052-8dfc3b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无限的清单\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029040-0003df?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"竞争的艺术\",\n    \"author\": \"塞巴斯蒂安・斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027540-ee0502?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音乐符号\",\n    \"author\": \"塔拉斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明亮的泥土\",\n    \"author\": \"菲利普・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026793-14240d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：德加\",\n    \"author\": \"唐一帆/牛雪彤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026688-6d5b37?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：梵高\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：莫奈\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师原作：塞尚\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026727-604405?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇手记（珍藏版）\",\n    \"author\": \"达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Book of Ebenezer Le Page\",\n    \"author\": \"Edwards\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025245-f5258d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中5·竹林七贤\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中15·再认识丰子恺\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025182-3c8f73?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集续编\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一幅画开启的世界\",\n    \"author\": \"高畑勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024951-5f5325?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说敦煌二五四窟\",\n    \"author\": \"陈海涛/陈琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解一张照片\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普鲁斯特是个神经学家\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术馆里聊怪咖\",\n    \"author\": \"山田五郎/古山淳子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023745-138eaa?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街头巷尾\",\n    \"author\": \"领读文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023154-daa1de?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误诊的艺术史\",\n    \"author\": \"董悠悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何欣赏一部电影\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022224-caab80?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵萨包达美术馆\",\n    \"author\": \"弗朗西斯卡・萨尔瓦多里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022152-0c3bb2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨圣母百花大教堂博物馆\",\n    \"author\": \"蒂莫西・弗登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典考古博物馆\",\n    \"author\": \"卢卡・莫扎蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022161-31f368?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯国家考古博物馆\",\n    \"author\": \"迪雷塔・哥伦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马博尔盖塞美术馆\",\n    \"author\": \"弗朗切斯卡・卡丝特丽雅・马尔凯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰波尔迪·佩佐利博物馆\",\n    \"author\": \"玛利亚·特蕾莎·巴尔博尼·布雷萨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开罗埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那不勒斯卡波迪蒙特博物馆\",\n    \"author\": \"马蒂亚・盖塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鸟之歌\",\n    \"author\": \"巴勃罗・卡萨尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021879-f9153e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走神的艺术与科学\",\n    \"author\": \"迈克尔・C.科尔巴里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑的历史\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020424-b520de?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓶花谱 瓶史\",\n    \"author\": \"张谦德/袁宏道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020061-e5ca31?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名画背后的故事（全五册）\",\n    \"author\": \"中野京子/顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019560-5d3b15?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"К.С.斯坦尼斯拉夫斯基作品集（套装共四册）\",\n    \"author\": \"斯坦尼斯拉夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019338-3fa8a5?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米兰布雷拉美术馆\",\n    \"author\": \"斯蒂芬尼・祖菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019170-dd2f29?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕尔马国家美术馆\",\n    \"author\": \"乔瓦娜・达米亚尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019065-def2cc?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科普希金博物馆\",\n    \"author\": \"西莫内塔・佩卢西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019038-d6ede3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林画廊\",\n    \"author\": \"威廉・德罗・鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018807-775ac1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博洛尼亚国家艺术画廊\",\n    \"author\": \"贝亚特莉切・布斯卡罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华盛顿国家艺术馆\",\n    \"author\": \"罗萨娜・乔尔吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热那亚新街博物馆\",\n    \"author\": \"皮耶罗・波卡尔多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018768-b9b484?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦国家美术馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018696-513898?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论巴赫\",\n    \"author\": \"阿尔贝特・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018666-493f7e?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌尔比诺马尔凯国家美术馆\",\n    \"author\": \"罗伦查・莫基・奥诺里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018648-5c52b0?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对白：文字、舞台、银幕的言语行为艺术\",\n    \"author\": \"罗伯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018612-e3095d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珍物：中国文艺百人物语\",\n    \"author\": \"生活月刊编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018216-c353d3?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的提奥：梵高传\",\n    \"author\": \"文森特・威廉・梵高/约翰娜・梵高・邦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017379-8fa602?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界电影史（套装共3册）\",\n    \"author\": \"杰弗里・诺维尔・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017265-9718d5?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物文库精美丛书\",\n    \"author\": \"约瑟夫・胡克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017430-ca5c6c?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代艺术150年\",\n    \"author\": \"威尔・贡培兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论摄影（插图珍藏本）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊绘画·壹\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014850-625ef1?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊绘画·贰\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014826-5cb55d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊神话\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵高传（全三部）\",\n    \"author\": \"史蒂文・奈菲/格雷戈里・怀特・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此时此地\",\n    \"author\": \"艾未未\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013965-add43d?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与火同行：大卫·林奇谈电影\",\n    \"author\": \"大卫・林奇/克里斯・罗德雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎卢浮宫\",\n    \"author\": \"亚历山德拉・弗雷格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012414-10182f?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹国家博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨皮蒂宫\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012279-fd065b?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛罗伦萨乌菲齐画廊\",\n    \"author\": \"艾莱娜・吉纳耐斯奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012285-af45df?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎奥赛美术馆\",\n    \"author\": \"西蒙娜・巴尔多蕾娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012240-1bee54?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿美术史著作经典（共3册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010881-0327d9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈默手稿\",\n    \"author\": \"列奥纳多・达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画精品集（修订版）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫的风花雪月\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好色的哈姆雷特\",\n    \"author\": \"小白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的残渣\",\n    \"author\": \"冯峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写真的思考\",\n    \"author\": \"饭泽耕太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005058-c4eaa8?p=8866\",\n    \"category\": \"艺术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清戏曲序跋纂笺（12册）\",\n    \"author\": \"郭英德/李志远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499515-e7ed9c?p=8866\",\n    \"category\": \"戏曲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“四人帮”兴亡（增订版）\",\n    \"author\": \"叶永烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866\",\n    \"category\": \"文化大革命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"国外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的中场休息\",\n    \"author\": \"本・方登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015132-9c1e9a?p=8866\",\n    \"category\": \"国外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克精选集16册\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866\",\n    \"category\": \"国外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教父三部曲（典藏版套装）\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866\",\n    \"category\": \"国外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"表演者言\",\n    \"author\": \"电影频道《今日影评》栏目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866\",\n    \"category\": \"演员\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力（经典套装三册）\",\n    \"author\": \"凯利・麦格尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866\",\n    \"category\": \"自控力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉花糖实验\",\n    \"author\": \"沃尔特・米歇尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009000-8191ee?p=8866\",\n    \"category\": \"自控力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼魂的盛宴\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997819-57a1d8?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宜诺斯艾利斯传\",\n    \"author\": \"詹姆斯・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兔\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040452-a92efa?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第一辑（套装共16册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033171-09f6c3?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博尔赫斯全集第二辑（套装共12册）\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风景画家的片段人生\",\n    \"author\": \"塞萨尔・艾拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032295-900cb5?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶棍列传\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008670-83c1da?p=8866\",\n    \"category\": \"阿根廷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我为你洒下月光\",\n    \"author\": \"简媜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022869-d5741b?p=8866\",\n    \"category\": \"随便\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿弥陀佛么么哒\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005679-dc7332?p=8866\",\n    \"category\": \"随便\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的十字军东征\",\n    \"author\": \"奈杰尔・克利夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866\",\n    \"category\": \"十字军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次十字军东征\",\n    \"author\": \"彼得・弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866\",\n    \"category\": \"十字军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经与利剑\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866\",\n    \"category\": \"十字军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军东征简史（插图本）\",\n    \"author\": \"米肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866\",\n    \"category\": \"十字军\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆精解证券分析\",\n    \"author\": \"杰森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499647-43f62c?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报背后的投资机会\",\n    \"author\": \"蒋豹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券分析（原书第6版）\",\n    \"author\": \"本杰明・格雷厄姆/戴维・多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球证券投资经典译丛（共16卷）\",\n    \"author\": \"拉尔夫・艾略特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034941-5999f0?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济增长的迷雾\",\n    \"author\": \"威廉・伊斯特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战上海：决胜股市未来三十年\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样选择成长股\",\n    \"author\": \"菲利普·A·费舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866\",\n    \"category\": \"证券\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救猫咪：电影编剧指南\",\n    \"author\": \"布莱克・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512766-6f75de?p=8866\",\n    \"category\": \"编剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样写故事\",\n    \"author\": \"莉萨・克龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866\",\n    \"category\": \"编剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典人物原型45种\",\n    \"author\": \"维多利亚・林恩・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866\",\n    \"category\": \"编剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G金融\",\n    \"author\": \"莫开伟/陈名银/邱泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988384-74644e?p=8866\",\n    \"category\": \"5G\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：经济增长新引擎\",\n    \"author\": \"孙松林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866\",\n    \"category\": \"5G\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：生活方式和商业模式的大变革\",\n    \"author\": \"龟井卓也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866\",\n    \"category\": \"5G\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代\",\n    \"author\": \"项立刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866\",\n    \"category\": \"5G\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间杭州\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498333-278c6e?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市与压力\",\n    \"author\": \"马兹达・阿德里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509655-c19810?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟囱与进步人士\",\n    \"author\": \"大卫・斯特拉德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512436-c178c9?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的古城\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰晤士：大河大城\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯：晨昏岛屿的集市\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新城市科学\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995401-9787ba?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孟买：欲望丛林\",\n    \"author\": \"苏科图・梅塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991444-36c1f2?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一座城市，一部历史\",\n    \"author\": \"李永石等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据驱动的智能城市\",\n    \"author\": \"史蒂芬・戈德史密斯/苏珊・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海摩登（修订版）\",\n    \"author\": \"李欧梵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海传：叶辛眼中的上海\",\n    \"author\": \"叶辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造未来城市\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的隐秘角落\",\n    \"author\": \"陆波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能城市\",\n    \"author\": \"卡洛・拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺桐城\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市隐秩序\",\n    \"author\": \"刘春成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042336-7a14a0?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"26城记\",\n    \"author\": \"蔡天新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房地产与城市发展\",\n    \"author\": \"陈杰/陆铭/黄益平/潘英丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"城市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺顿音乐断代史丛书（套装共4册）\",\n    \"author\": \"菲利普・唐斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第一卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋元笔记小说大观（全35册）\",\n    \"author\": \"王应麟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（全三册）\",\n    \"author\": \"但丁・阿利格耶里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清戏曲序跋纂笺（12册）\",\n    \"author\": \"郭英德/李志远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499515-e7ed9c?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学名家选集（全17册）\",\n    \"author\": \"王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502398-fe5b0d?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜甫诗选（古典文学大字本）\",\n    \"author\": \"杜甫/谢思炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504429-062f6a?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学读本丛书典藏（第二辑全15册）\",\n    \"author\": \"王起主等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508965-0eb459?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫诗选（外国文学名著丛书）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明文选\",\n    \"author\": \"赵伯陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510711-3cd429?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清叙事文学中的城市与生活（大家读大家）\",\n    \"author\": \"胡晓真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003978-424fb6?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快意江湖：彩绘水浒传\",\n    \"author\": \"张琳绘/张睿著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999922-583382?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（果麦经典）\",\n    \"author\": \"屈原等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999010-1d65d7?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三言二拍插图典藏版（全六册）\",\n    \"author\": \"冯梦龙等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990106-7735f0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手绘儒生\",\n    \"author\": \"金龠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987880-6e72c2?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文选（全本全注全译）\",\n    \"author\": \"萧统\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华古典文库典藏（共40册）\",\n    \"author\": \"李汝珍等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054597-4de0db?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚辞（国学典藏）\",\n    \"author\": \"洪兴祖 补注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管子（全本全注全译）\",\n    \"author\": \"李山/轩新丽译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋公羊传（全本全注全译）\",\n    \"author\": \"孔子/公羊寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046404-436973?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异（全校会注集评）\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046074-8abd51?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经（全本全注全译）\",\n    \"author\": \"方韬译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神仙传（全本全注全译）\",\n    \"author\": \"葛洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李清照诗词全集（作家榜经典文集）\",\n    \"author\": \"李清照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典普及文库（精选共15种20册）\",\n    \"author\": \"中华书局编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋志异（全本全注全译）\",\n    \"author\": \"蒲松龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042888-47daec?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的文化\",\n    \"author\": \"克里斯蒂安・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词集（词系列）\",\n    \"author\": \"张草纫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033222-a4ae5e?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典文学荟萃（全36册）\",\n    \"author\": \"沈复/吴楚材/吴调侯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032133-b8e344?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读古典小说系列（套装共10册）\",\n    \"author\": \"曾朴/凌蒙初等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031902-43a76c?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗词里的趣事套装（全4册）\",\n    \"author\": \"王月亮/黄震/黄秀春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透《大学中庸》\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029907-e28d12?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋诗鉴赏辞典\",\n    \"author\": \"缪钺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029934-f3d31f?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金圣叹批评本西厢记\",\n    \"author\": \"王实甫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028926-90d03b?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜花缘（作家榜经典文库）\",\n    \"author\": \"李汝珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027699-5765f0?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世说新语译注\",\n    \"author\": \"刘义庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026997-7dd4f3?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沧浪诗话\",\n    \"author\": \"严羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国十大禁毁小说文库\",\n    \"author\": \"雪樵主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024510-63968c?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗经（风雅颂三卷）\",\n    \"author\": \"骆玉明/细井徇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021144-d46886?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲情偶寄（果麦经典）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013896-9da2db?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒林外史（果麦经典）\",\n    \"author\": \"吴敬梓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008754-58ab37?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简音乐史\",\n    \"author\": \"冈田晓生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866\",\n    \"category\": \"古典\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华经典普及文库（精选共15种20册）\",\n    \"author\": \"中华书局编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866\",\n    \"category\": \"中国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐史并不如烟系列（共6册）\",\n    \"author\": \"曲昌春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032079-38cfae?p=8866\",\n    \"category\": \"中国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清案探秘（全三册）\",\n    \"author\": \"唐博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029499-d5c447?p=8866\",\n    \"category\": \"中国史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚全集（套装共10本）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984475-8c8d8a?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯商人（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036159-3537ae?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仲夏夜之梦（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李尔王（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035631-63e1ab?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈姆莱特（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035400-4bace1?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥瑟罗（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035214-ce0c10?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十二夜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035130-63ad7b?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧悲剧全集（套装共6册）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚悲剧喜剧全集\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866\",\n    \"category\": \"莎士比亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从雇佣到自由人\",\n    \"author\": \"吕廷杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866\",\n    \"category\": \"职业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转行：发现一个未知的自己\",\n    \"author\": \"埃米尼亚・伊瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866\",\n    \"category\": \"职业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：如何规划职业生涯3大阶段\",\n    \"author\": \"布赖恩・费瑟斯通豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866\",\n    \"category\": \"职业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导梯队（原书第2版）\",\n    \"author\": \"拉姆・查兰/斯蒂芬・德罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866\",\n    \"category\": \"职业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"急救，比医生快一步\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866\",\n    \"category\": \"急救\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救护车到来前，你能做什么？\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866\",\n    \"category\": \"急救\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被统治的艺术\",\n    \"author\": \"宋怡明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983314-16ffcd?p=8866\",\n    \"category\": \"明清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家人父子\",\n    \"author\": \"赵园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053889-726410?p=8866\",\n    \"category\": \"明清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一等人\",\n    \"author\": \"宋华丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042015-7eebfb?p=8866\",\n    \"category\": \"明清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代政治的正当性基础\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491484-c06fa6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱里的希望\",\n    \"author\": \"丹・波托洛蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492060-2c8fad?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾雷德·戴蒙德作品集（套装共4册）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·罗杰斯的大预测\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温铁军套装（共5册）\",\n    \"author\": \"温铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493437-a29263?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网上遗产\",\n    \"author\": \"伊莱恩・卡斯凯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493404-9f5bf0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国史译（全7册）\",\n    \"author\": \"伊利娜・谢尔盖耶夫娜・雷巴乔诺克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运气的诱饵\",\n    \"author\": \"娜塔莎・道・舒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493695-e4930e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在中国大地上\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身偏见\",\n    \"author\": \"克莱尔・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493863-2752fc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体的历史（三卷本）\",\n    \"author\": \"乔治・维加埃罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494961-7ca170?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯“革命”隐藏的另一面\",\n    \"author\": \"埃里克・德尼西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496482-040f62?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压裂的底层\",\n    \"author\": \"伊丽莎・格里斯沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497073-d5a61b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作的意义\",\n    \"author\": \"詹姆斯・苏兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497598-753d90?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国合集（套装共4册）\",\n    \"author\": \"余玮等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497739-6909f1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年论中国系列（套装6册）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新乌合之众\",\n    \"author\": \"迈赫迪・穆萨伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497907-396975?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力\",\n    \"author\": \"德博拉・格林菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498009-cbe216?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始的女性主义\",\n    \"author\": \"上野千鹤子/田房永子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498135-bec29a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十种人性\",\n    \"author\": \"德克斯特・迪亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利益相关者\",\n    \"author\": \"克劳斯・施瓦布/彼得・万哈姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498156-b93f87?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧：冰与火之地的寻真之旅\",\n    \"author\": \"迈克尔・布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498264-40e9d6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韦伯作品集（套装9册）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498366-dfd378?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口大逆转\",\n    \"author\": \"查尔斯・古德哈特/马诺杰・普拉丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厌女：日本的女性嫌恶\",\n    \"author\": \"上野千鹤子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498933-3437c3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份政治\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499002-9f16d0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碳中和时代\",\n    \"author\": \"汪军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499221-bf6b0d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反内卷\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499245-6c8e89?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老后两代破产\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499251-4a9792?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大加速：1945年以来人类世的环境史\",\n    \"author\": \"约翰·R.麦克尼尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499380-1d1f87?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是主播\",\n    \"author\": \"国谷裕子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499404-105834?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转向：世界如何步入现代\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共有的习惯\",\n    \"author\": \"E.P. 汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500268-020026?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精英的傲慢\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500601-accc90?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读26：全球真实故事集\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500649-4348f2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私立小学闯关记\",\n    \"author\": \"槙原久美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500793-2c71ca?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破茧\",\n    \"author\": \"施展\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500925-acb6ff?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夹缝生存：不堪重负的中产家庭\",\n    \"author\": \"阿莉莎・夸特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501354-ff97b8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何像人类学家一样思考·鹈鹕丛书\",\n    \"author\": \"马修・恩格尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501426-4e56e5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高中生穷忙族\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501642-8081e6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国人文社会（套装共8册）\",\n    \"author\": \"冯友兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502341-52b551?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美名校通识课（第一辑）（套装7册）\",\n    \"author\": \"亨利·M.塞尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基层女性\",\n    \"author\": \"王慧玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书理解中国（套装共15册）\",\n    \"author\": \"蔡昉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506709-9a88fd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社百科通识大套装·社会卷（共49本）\",\n    \"author\": \"柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507051-2a2f7d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国的反智传统\",\n    \"author\": \"理查德・霍夫施塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506823-0cc3c2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人为何物\",\n    \"author\": \"王一江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507411-9a3746?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锥形帐篷的起源\",\n    \"author\": \"喬尼・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507432-99ca3f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"殿军：山一证券最后的12人\",\n    \"author\": \"清武英利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507573-379911?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"川菜\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百科通识文库：西方学科奠基精选大套装（套装共88本）\",\n    \"author\": \"柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508041-895ae1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无隐私时代\",\n    \"author\": \"阿奇科・布希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508872-0496be?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国际政治精品文库精选套装（套装11册）\",\n    \"author\": \"塞缪尔・亨廷顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509124-80f0aa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚无时代\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙王的嬗变\",\n    \"author\": \"杨德爱/杨跃雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509319-b9f6e6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年南开日本研究文库（共18册）\",\n    \"author\": \"吴廷璆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509472-9832f9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些特别善于表达自己观点的女人们\",\n    \"author\": \"米歇尔・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509370-466dcd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现阴阳道\",\n    \"author\": \"山下克明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509379-3c5bbd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克斯·韦伯：跨越时代的人生\",\n    \"author\": \"于尔根・考伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509481-7f34ec?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变或免疫\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509568-e95089?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城市与压力\",\n    \"author\": \"马兹达・阿德里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509655-c19810?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本还是第一吗\",\n    \"author\": \"傅高义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509790-9c9f84?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新文化运动史料丛编\",\n    \"author\": \"孙郁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510201-42c727?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雨横渡\",\n    \"author\": \"西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510204-4a529b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失信：公共卫生体系的崩溃\",\n    \"author\": \"劳丽・加勒特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510282-6f16d7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被绑架的心灵\",\n    \"author\": \"戴维・凯斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510372-1db3f6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乐观而不绝望\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510429-5ca9fe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现日本：60处日本最美古建筑之旅\",\n    \"author\": \"矶达雄/宫泽洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510525-107c20?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性的时刻\",\n    \"author\": \"梅琳达・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清华社会学讲义（全四册）\",\n    \"author\": \"李强等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510564-1079f3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桑切斯的孩子们\",\n    \"author\": \"奥斯卡・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510819-58d021?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲家族物语\",\n    \"author\": \"濑户正人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510855-c0b32b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下流社会\",\n    \"author\": \"三浦展\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510957-9e78c5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别睡，这里有蛇\",\n    \"author\": \"丹尼尔・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510891-4ad519?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身社会\",\n    \"author\": \"伊利亚金・奇斯列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511056-3aa444?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低欲望社会\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511137-51d5bb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六论自发性\",\n    \"author\": \"詹姆斯·C. 斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承认：一部欧洲观念史\",\n    \"author\": \"阿克塞尔・霍耐特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神好多的日本\",\n    \"author\": \"山口谣司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类学讲义稿\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从部落到国家\",\n    \"author\": \"马克·W. 莫菲特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511962-90a78c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯林传\",\n    \"author\": \"叶礼庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512067-e53a08?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小镇美国\",\n    \"author\": \"罗伯特・伍斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512082-f8d626?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候经济与人类未来\",\n    \"author\": \"比尔・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秩序与历史（套装全五卷）\",\n    \"author\": \"埃里克・沃格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513159-e66ba2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通俗心理学百科合集（套装共18册）\",\n    \"author\": \"约翰・华生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513492-f070e3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性贫困\",\n    \"author\": \"NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513486-69ca43?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的古城\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的铁证\",\n    \"author\": \"安吉拉・盖洛普/简・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513696-53c951?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513711-251b40?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么是中国\",\n    \"author\": \"金一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513735-fe1296?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地缘政治三部曲\",\n    \"author\": \"罗伯特·D.卡普兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513753-cc4d25?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国怎么了\",\n    \"author\": \"安妮・凯斯/安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端经济\",\n    \"author\": \"理查德・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513786-ca7531?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下沉年代\",\n    \"author\": \"乔治・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513777-106914?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一印象手册\",\n    \"author\": \"柳沼佐千子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513798-47c741?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱鹮的遗言\",\n    \"author\": \"小林照幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004575-299851?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量3\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004476-186d31?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们内心的冲突（果麦经典）\",\n    \"author\": \"卡伦・霍妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004464-e0bf3e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香帅财富报告\",\n    \"author\": \"香帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级社会\",\n    \"author\": \"彼得・图尔钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004446-8c0263?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会设计\",\n    \"author\": \"笕裕介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《纽约时报》是怎么做新闻的\",\n    \"author\": \"尼基・阿瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003819-60e127?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返美丽新世界\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003570-70aa54?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧盟的危机\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父权制与资本主义\",\n    \"author\": \"上野千鹤子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003507-3f7b6a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年变局\",\n    \"author\": \"王文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003465-977d4c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国革命的激进主义\",\n    \"author\": \"戈登·S.伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003327-20516e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主的不满\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度5\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡的视线\",\n    \"author\": \"刘易斯・M.科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002592-e3895f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生\",\n    \"author\": \"刘汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西街\",\n    \"author\": \"菲利普・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002484-3fc686?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归故里\",\n    \"author\": \"迪迪埃・埃里蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002355-543671?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己作为方法\",\n    \"author\": \"项飙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002262-18b150?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的二本学生\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对欲望，绝对奇异\",\n    \"author\": \"马克弟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002109-90cc9f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饱食穷民\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001761-d44b46?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学作为天职\",\n    \"author\": \"李猛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001632-142eb7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜色的故事\",\n    \"author\": \"加文・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性经验史（3卷本）\",\n    \"author\": \"米歇尔・福柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001113-170e8b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本权力结构之谜\",\n    \"author\": \"卡瑞尔・范・沃尔夫伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000906-aafbe6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他者的消失\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000279-32504e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倦怠社会\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999751-ac5097?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好老师，坏老师\",\n    \"author\": \"达娜・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"右派国家（新版）\",\n    \"author\": \"约翰・米克尔思韦特/阿德里安・伍尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许倬云说美国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国独行\",\n    \"author\": \"马克・斯坦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997540-afe385?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国监狱\",\n    \"author\": \"肖恩・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义的未来\",\n    \"author\": \"保罗・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997324-2dab97?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新美国\",\n    \"author\": \"弗雷德里克・洛根・帕克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄与母亲\",\n    \"author\": \"C.G. 荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996685-df9910?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的视角\",\n    \"author\": \"詹姆斯·C.斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996523-b7c691?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喧哗的大多数\",\n    \"author\": \"艾伦・雅各布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995443-5d0afe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新基建：全球大变局下的中国经济新引擎\",\n    \"author\": \"任泽平/马家进/连一席\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富千年史\",\n    \"author\": \"辛西娅・克罗森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨兽：工厂与现代世界的形成\",\n    \"author\": \"乔舒亚・B.弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的镜子（全新修订版）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人史纲\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福社会创新评论合集（套装共9册）\",\n    \"author\": \"斯坦福社会创新评论编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"床的人类史\",\n    \"author\": \"布莱恩・费根/纳迪亚・杜兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不让生育的社会\",\n    \"author\": \"小林美希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安身立命\",\n    \"author\": \"许纪霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个利他主义者之死\",\n    \"author\": \"奥伦・哈曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994531-bf36d7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤气灯效应\",\n    \"author\": \"罗宾・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩波：日本社会写实精选系列\",\n    \"author\": \"森冈孝二等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993460-3e8452?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与的力量\",\n    \"author\": \"慎泰俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992248-f3bcbb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代中国学术思想史（套装共19卷）\",\n    \"author\": \"成一农等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史性的体制\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性与权力\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991975-4c57b0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会政体\",\n    \"author\": \"伍德罗・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公司与将军\",\n    \"author\": \"亚当・克卢洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991738-0e7446?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同体的焚毁\",\n    \"author\": \"希利斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991525-c08881?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球不平等逸史\",\n    \"author\": \"布兰科・米兰诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991216-73f59c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的经济学\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国治理\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"业余者说\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原罪、梦想与霸权\",\n    \"author\": \"维克多・基尔南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一座城市，一部历史\",\n    \"author\": \"李永石等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港社会三部曲\",\n    \"author\": \"刘兆佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁古文明发现史\",\n    \"author\": \"布莱恩・费根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989986-64a34d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧变\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人与中国人\",\n    \"author\": \"许烺光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李光耀观天下\",\n    \"author\": \"李光耀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣家族\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987097-c13163?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的处方\",\n    \"author\": \"伊齐基尔・伊曼纽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来三十年（修订版）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986467-d00263?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据驱动的智能城市\",\n    \"author\": \"史蒂芬・戈德史密斯/苏珊・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客观知识（二十世纪西方哲学经典）\",\n    \"author\": \"卡尔・波普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985501-f55e56?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像哲学家一样生活\",\n    \"author\": \"威廉·B.欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼物的流动\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985465-3e6908?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言的诞生\",\n    \"author\": \"丹尼尔·L. 埃弗雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"享乐主义宣言\",\n    \"author\": \"米歇尔・翁福雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985336-4cdc66?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本世相系列（套装共2册）\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985222-bd140a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身边的逻辑学\",\n    \"author\": \"伯纳・派顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985057-68506c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会与经济\",\n    \"author\": \"马克・格兰诺维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984793-a39f61?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败（牛津通识读本）\",\n    \"author\": \"莱斯利・霍姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984613-d3354c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）新版\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983944-d80749?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃：社会如何选择成败兴亡\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败：人性与文化\",\n    \"author\": \"克里斯・肖尔/迪特尔・哈勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹈鹕丛书（共6册）\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新情商\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学2\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"士大夫政治演生史稿\",\n    \"author\": \"阎步克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广场与高塔\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053496-3c88ef?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人的画像\",\n    \"author\": \"李长声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053013-a69c08?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量2\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052989-6d9cbb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景观社会\",\n    \"author\": \"居伊・德波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专家之死\",\n    \"author\": \"托马斯・尼科尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052356-47c0eb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午1：我穿墙过去\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类网络\",\n    \"author\": \"马修・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无缘社会\",\n    \"author\": \"日本NHK特别节目录制组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051867-337e7a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群氓的狂欢\",\n    \"author\": \"塞奇・莫斯科维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何故为敌\",\n    \"author\": \"卡罗琳・艾姆克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051798-658124?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"化蝶：一个滇南小镇的政治史\",\n    \"author\": \"刘永刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051804-1856d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的危机\",\n    \"author\": \"斯科特・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向思考\",\n    \"author\": \"迈克尔・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样管精力，就怎样过一生\",\n    \"author\": \"奥迪尔・夏布里亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2020：用数据看懂中国发展\",\n    \"author\": \"谢伏瞻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出身：不平等的选拔与精英的自我复制\",\n    \"author\": \"劳伦·A·里韦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051546-baba5d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阶层跃迁\",\n    \"author\": \"闫肖锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051423-630300?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米塞斯评传\",\n    \"author\": \"伊斯雷尔·M·柯兹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的价值\",\n    \"author\": \"罗伯特・博伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051105-4b4530?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简斯维尔\",\n    \"author\": \"艾米・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济与社会（全二卷）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食货《金瓶梅》\",\n    \"author\": \"侯会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050868-bb8823?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造未来城市\",\n    \"author\": \"迈克尔・巴蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独异性社会\",\n    \"author\": \"安德雷亚斯・莱克维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050682-32415f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家、经济与大分流\",\n    \"author\": \"皮尔・弗里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国问题\",\n    \"author\": \"伯特兰・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与权力\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤因比著作集（套装全7册）\",\n    \"author\": \"阿诺德・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网红养成记\",\n    \"author\": \"吴清缘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049926-102b70?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇特的传染\",\n    \"author\": \"李・丹尼尔・克拉韦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049605-d91e82?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白领：美国的中产阶级\",\n    \"author\": \"米尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049386-35756b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义的代价\",\n    \"author\": \"劳伦斯・李默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会心理学（第8版）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（纪念版）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆斯河\",\n    \"author\": \"丹・费金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：生活方式和商业模式的大变革\",\n    \"author\": \"龟井卓也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酒鬼与圣徒\",\n    \"author\": \"劳伦斯・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身创造力\",\n    \"author\": \"斯科特・科克伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象席地而坐\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论文化\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046062-20408c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力拓扑学\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045756-006b45?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津国际关系手册\",\n    \"author\": \"罗伯特・基欧汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一个欧洲\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安的生活\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨天的中国\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傻世界，笨生意\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044727-92ea3a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们最幸福\",\n    \"author\": \"芭芭拉・德米克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为未知而教，为未来而学\",\n    \"author\": \"戴维・珀金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银元时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈耶克作品（共6册）\",\n    \"author\": \"弗里德里希・奥古斯特・哈耶克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖中国\",\n    \"author\": \"于阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043692-f33615?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺桐城\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学治要（套装共三册）\",\n    \"author\": \"张文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光棍危机\",\n    \"author\": \"瓦莱丽・M. 赫德森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042783-f1c3cb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式诱惑\",\n    \"author\": \"伊莱恩・西奥利诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要害怕中国\",\n    \"author\": \"菲利普・巴莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝶变：澳门博彩业田野叙事\",\n    \"author\": \"刘昭瑞/霍志钊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论自愿为奴（译文经典）\",\n    \"author\": \"艾蒂安・德・拉・波埃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"购物凶猛\",\n    \"author\": \"孙骁骥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不同的音调\",\n    \"author\": \"约翰・唐文/凯伦・祖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打造消费天堂\",\n    \"author\": \"连玲玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃肉喝酒飞奔\",\n    \"author\": \"吴惠子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041562-6e4a9f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感受中国（套装3本）\",\n    \"author\": \"李锦/任志刚/李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040905-1f77cd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝希摩斯\",\n    \"author\": \"托马斯・霍布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骨节\",\n    \"author\": \"孙频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040164-1a7571?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的没落（译林人文精选）\",\n    \"author\": \"奥斯瓦尔德・斯宾格勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善与恶\",\n    \"author\": \"阿比盖尔・马什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039612-8d1c5f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空荡荡的地球\",\n    \"author\": \"达雷尔・布里克/约翰・伊比特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的本质（修订版）\",\n    \"author\": \"阿比吉特・班纳吉/埃斯特・迪弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创世记\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意会时刻\",\n    \"author\": \"克里斯琴・马兹比尔格/米凯尔・拉斯马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作漂流\",\n    \"author\": \"稻泉连\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037632-6132e7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一声礼炮\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河说爱情\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民粹主义大爆炸\",\n    \"author\": \"约翰・朱迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：自由与财产\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大趋势\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从祖先到算法\",\n    \"author\": \"亚历克斯・本特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我想重新解释历史\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033837-7ecd82?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度预测\",\n    \"author\": \"理查德·A·克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033822-1e355a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群的进化\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不平等社会\",\n    \"author\": \"沃尔特・沙伊德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贫穷的终结\",\n    \"author\": \"安妮・罗瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033516-85ae36?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨变：当代政治与经济的起源\",\n    \"author\": \"卡尔・波兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断裂的阶梯\",\n    \"author\": \"基思・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲之死\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033084-abadc2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低增长社会\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032994-77e8ac?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国下层阶级的愤怒\",\n    \"author\": \"戴伦・麦加维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032574-2a5e18?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力：思无所限\",\n    \"author\": \"理查德·J.伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民蠢萌的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本的细节\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032355-8598e5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易打造的世界\",\n    \"author\": \"彭慕兰/史蒂文・托皮克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽新世界（译文经典）\",\n    \"author\": \"奥尔德斯・赫胥黎\",\n    \"link\": \"链接未找到\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：颠覆职场学习的高效方法\",\n    \"author\": \"王世民/缪志聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忧郁的热带\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面对现代世界问题的人类学\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032265-7d37d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下游老人\",\n    \"author\": \"藤田孝典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032235-32dde2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自下而上\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解媒介\",\n    \"author\": \"马歇尔・麦克卢汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031776-144515?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为妮可\",\n    \"author\": \"艾米・埃利斯・纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑帮·贩毒集团神秘内幕（全五册）\",\n    \"author\": \"詹幼鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031308-31f32e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交媒体简史\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房奴\",\n    \"author\": \"戴维・戴恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由在高处\",\n    \"author\": \"熊培云\",\n    \"link\": \"链接未找到\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有闲阶级论\",\n    \"author\": \"凡勃伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030537-777029?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻路中国\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝的故事\",\n    \"author\": \"深蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃\",\n    \"author\": \"克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众（作家榜经典文库）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲和力\",\n    \"author\": \"古宫昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁统治美国？公司富豪的胜利\",\n    \"author\": \"威廉・多姆霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国与中国人影像（增订版）\",\n    \"author\": \"约翰・汤姆逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030279-7e35db?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一阅千年\",\n    \"author\": \"马克・科尔兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在现场\",\n    \"author\": \"黄盈盈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030039-700572?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与古为徒和娟娟发屋\",\n    \"author\": \"白谦慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030021-8772c8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会理论的核心问题\",\n    \"author\": \"安东尼・吉登斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029886-fe1bf2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天降之任：学术与政治\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029682-d3a753?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判心理学\",\n    \"author\": \"康木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029664-32f6cd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袍哥\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029658-37cafe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媒介批评三部曲（套装共3册）\",\n    \"author\": \"尼尔・波斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029637-888957?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何建立好人缘\",\n    \"author\": \"谢湘萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"较量：乐观的经济学与悲观的生态学\",\n    \"author\": \"保罗・萨宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆年代四部曲（套装共4册）\",\n    \"author\": \"艾瑞克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029361-ff5c8f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人情、面子与权力的再生产（修订版）\",\n    \"author\": \"翟学伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029310-bc9143?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何研究中国（增订本）\",\n    \"author\": \"曹锦清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029193-76f098?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的美国\",\n    \"author\": \"珍妮・拉斯卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷忙\",\n    \"author\": \"戴维・希普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论文与治学\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029043-f29e28?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平等之路\",\n    \"author\": \"迈克尔·J.克拉曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过剩之地\",\n    \"author\": \"莫妮卡・普拉萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息背后的信息\",\n    \"author\": \"马克斯・巴泽曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028227-08a419?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子1：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028203-c24763?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子2：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028182-15b27e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲子3：中国60年民生记录\",\n    \"author\": \"陈晓卿/朱乐贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028176-a2cb1b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学\",\n    \"author\": \"杰弗里・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的帝国\",\n    \"author\": \"波波・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅山的交往和应酬（增订本）\",\n    \"author\": \"白谦慎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028113-e9791a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二性（合卷本）\",\n    \"author\": \"西蒙娜・德・波伏瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉万象记\",\n    \"author\": \"毛晓雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单向度的人\",\n    \"author\": \"赫伯特・马尔库塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027930-c2ca75?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不再害羞\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027789-fbee3f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩票中奖一亿元之后\",\n    \"author\": \"铃木信行\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027702-53ccb6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是个妈妈，我需要铂金包\",\n    \"author\": \"温妮斯蒂・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平常的恶\",\n    \"author\": \"朱迪丝·N.施克莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027648-d9850c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读（01-10）\",\n    \"author\": \"许知远/肖海生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027654-e73901?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读（11-15）\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027657-d9573b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读16：新北京人\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027591-a94676?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的复杂性\",\n    \"author\": \"罗伯特・阿克塞尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本新中产阶级\",\n    \"author\": \"傅高义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027330-ae5a2e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惡血\",\n    \"author\": \"約翰・凱瑞魯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027258-867926?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弱传播\",\n    \"author\": \"邹振东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027201-40d002?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密如何改变了我们的生活\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅（原书第2版）\",\n    \"author\": \"皮厄特拉・里佛利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们时代的精神状况\",\n    \"author\": \"海因里希・盖瑟尔伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026277-82d739?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海胆\",\n    \"author\": \"雷晓宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洗钱内幕\",\n    \"author\": \"姚耀/秋叶良和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025722-0dbcb6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思维\",\n    \"author\": \"S.J. Scott/Barrie Davenport\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一个家在何方？\",\n    \"author\": \"馬修・戴斯蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025545-020e6e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁偷走了美国梦\",\n    \"author\": \"赫德里克・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025536-ab13ba?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸引\",\n    \"author\": \"瓦妮莎・范・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025563-ca425f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燕南园往事\",\n    \"author\": \"汤一介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025530-09fd76?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街角的老北京\",\n    \"author\": \"卢文龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣的现象学\",\n    \"author\": \"鹫田清一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025359-4d71c5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有话说\",\n    \"author\": \"崔永元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日29：偶像\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025353-47b33b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劫持\",\n    \"author\": \"玛丽•K. 斯温格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的信任\",\n    \"author\": \"布鲁斯・施奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024999-0143fe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见日本\",\n    \"author\": \"徐静波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024732-43de40?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024774-f809b9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读中国经济（增订版）\",\n    \"author\": \"林毅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永生的海拉\",\n    \"author\": \"丽贝卡・思科鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马航MH370失联十七天\",\n    \"author\": \"陈功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024450-32c0b3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式幸福\",\n    \"author\": \"亚瑟·C.布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"椰壳碗外的人生\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代文学大师林语堂逝世40周年纪念典藏版（全18册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024327-391a41?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人的艺术\",\n    \"author\": \"山姆・高斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024294-65b337?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Never Split the Difference\",\n    \"author\": \"Chris Voss/Tahl Raz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024258-60d859?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络心理学\",\n    \"author\": \"玛丽・艾肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024027-d383d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做出正确决定\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"态度改变与社会影响\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023853-1d340e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返巴格达\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023856-5b4c01?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言风格的秘密\",\n    \"author\": \"詹姆斯・彭尼贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023781-4c8ac9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匠人\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023748-9674dd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体不说谎\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打工女孩\",\n    \"author\": \"张彤禾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒诞医学史\",\n    \"author\": \"莉迪亚・康/内特・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实主义者的乌托邦\",\n    \"author\": \"鲁特格尔・布雷格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023271-cc8268?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解增长\",\n    \"author\": \"道格拉斯・洛西科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023250-ff1bb1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法霸权\",\n    \"author\": \"凯西・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切与创造有关\",\n    \"author\": \"奥古斯汀・富恩特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国社会各阶层分析\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022956-0c4ce7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Coddling of the American Mind\",\n    \"author\": \"Greg Lukianoff/Jonathan Haidt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022932-efa525?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公平之怒\",\n    \"author\": \"理查德・威尔金森/凯特・皮克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都发狂了\",\n    \"author\": \"凯伦・乔伊・富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022860-956833?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东北游记\",\n    \"author\": \"迈克尔・麦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022509-9d7c84?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格调（修订第3版）\",\n    \"author\": \"保罗・福塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022470-f9a015?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王国与权力\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022410-4ed181?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大江大河（共4册）\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022380-6f84ee?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁道之旅\",\n    \"author\": \"沃尔夫冈・希弗尔布施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现民众\",\n    \"author\": \"林红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021852-b5cbe5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰人的噩梦\",\n    \"author\": \"卡罗利娜・科尔霍宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚裔美国的创生\",\n    \"author\": \"李漪莲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今日简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Daring Greatly\",\n    \"author\": \"Brene Brown\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"场景：空间品质如何塑造社会生活\",\n    \"author\": \"丹尼尔・亚伦・西尔/特里・尼科尔斯・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021585-0b48ca?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扫地出门：美国城市的贫穷与暴利\",\n    \"author\": \"马修・德斯蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娱乐至死\",\n    \"author\": \"尼尔・波兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021261-711d62?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Our Kids\",\n    \"author\": \"Robert D. Putnam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑箱社会\",\n    \"author\": \"弗兰克・帕斯奎尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021171-9be5d6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争、枪炮与选票\",\n    \"author\": \"保罗・科利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021162-f86e9b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家构建\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021159-d86f25?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的进化\",\n    \"author\": \"罗伯特・艾克斯罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021090-b0978a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规模：复杂世界的简单法则\",\n    \"author\": \"杰弗里・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021036-fe84e6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雄性衰落\",\n    \"author\": \"菲利普・津巴多/尼基塔・库隆布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020970-224943?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫与人\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020880-aa080f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶女：普通女性为何化身连环杀人狂\",\n    \"author\": \"彼得・佛伦斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020835-ba00af?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金赛性学报告（男人篇&#038;女人篇）\",\n    \"author\": \"阿尔弗雷德・C.金赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020571-87df7c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝路回响-文明的交融（套装共7册)\",\n    \"author\": \"三联生活周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020697-bb72e0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力都是逼出来的\",\n    \"author\": \"布兰登・伯查德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020433-eee874?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国独行：西方世界的末日\",\n    \"author\": \"马克・斯坦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020337-7905c5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知盈余：自由时间的力量\",\n    \"author\": \"克莱・舍基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020253-b77fad?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈与社会\",\n    \"author\": \"张维迎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020199-4cd873?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知觉之门\",\n    \"author\": \"阿道斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019935-31f55b?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蕾蒂西娅，或人类的终结\",\n    \"author\": \"伊凡・雅布隆卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同步：秩序如何从混沌中涌现\",\n    \"author\": \"斯蒂芬・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019755-1e9eae?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：历史地理（上册）\",\n    \"author\": \"单周尧等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019728-de9599?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：历史地理（下册）\",\n    \"author\": \"张伟保等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019734-e6e9b5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：诸子百家（上册）\",\n    \"author\": \"陈耀南男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019713-a62b5d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：诸子百家（下册）\",\n    \"author\": \"趙善軒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019707-ed5d95?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微粒社会\",\n    \"author\": \"克里斯托夫・库克里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019575-e3c742?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维简史：从丛林到宇宙\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019542-7cb361?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的悖论\",\n    \"author\": \"菲利普・津巴多/约翰・博伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019449-bf5895?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后物欲时代的来临\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019419-3b77fe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019266-96362f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：哲学宗教（下册）\",\n    \"author\": \"杨祖汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019209-42a853?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的兴衰\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019092-d58e9a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不可不知的人性（全二册）\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018933-feb3e1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类的天赋\",\n    \"author\": \"凯文・达顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实改变之后\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高难度沟通\",\n    \"author\": \"贾森・杰伊/加布里埃尔・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018492-971649?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么有的国家富裕，有的国家贫穷\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018243-d98729?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的兴起\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017958-a45d43?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象的共同体（增订版）\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017700-976365?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越（经典完整译本）\",\n    \"author\": \"阿弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017193-116343?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好人为什么会作恶\",\n    \"author\": \"托马斯・布拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016959-db3d20?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始写故事\",\n    \"author\": \"叶伟民/知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016416-e192eb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安静冥想的力量（十册套装）\",\n    \"author\": \"帕拉宏撒・尤迦南达等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016377-d348d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Homo Deus\",\n    \"author\": \"Yuval Noah Harari\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016344-af4d82?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因社会\",\n    \"author\": \"以太・亚奈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016272-086eed?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因组：人类自传\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反焦虑思维\",\n    \"author\": \"罗尔・克肖/ 比尔・韦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015648-08a46e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读自己心理阅读书系（第1辑）\",\n    \"author\": \"卡伦・霍妮等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015639-644be4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的故事：正式授权续写至21世纪\",\n    \"author\": \"亨德里克・威廉・房龙等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015681-651344?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类砍头小史\",\n    \"author\": \"弗朗西斯・拉尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大拐点\",\n    \"author\": \"袁剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015597-bc638c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的影响力\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015537-02d9e0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们如何正确思维\",\n    \"author\": \"约翰・杜威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞关系学\",\n    \"author\": \"亚当・加林斯基/马利斯・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015102-e9b4b4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活过\",\n    \"author\": \"南方人物周刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014892-297fa9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代的互联网\",\n    \"author\": \"汤姆・斯坦迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"废物星球：从中国到世界的天价垃圾之旅\",\n    \"author\": \"亚当・明特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014730-c288c9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复杂：信息时代的连接、机会与布局\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014691-5f5ec3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牲人祭\",\n    \"author\": \"皮埃尔・比恩鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014478-2f2e77?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的亲人\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014427-4895bb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹麦人为什么幸福\",\n    \"author\": \"迈克・维金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会动物\",\n    \"author\": \"戴维・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014367-2e013a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十里红妆\",\n    \"author\": \"吴瑞贤/吴静波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014310-ce95e8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何思考会思考的机器\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014175-b0a0d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The 100-Year Life\",\n    \"author\": \"Lynda Gratton / Andrew Scott\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013686-e885a9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Street of Eternal Happiness\",\n    \"author\": \"Rob Schmitz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013707-35fbcc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯社会心理学套装（第8版共4册）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013611-f376ca?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本（套装共3册）\",\n    \"author\": \"黄亚南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013320-488041?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳底下的新鲜事\",\n    \"author\": \"约翰・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非偶然\",\n    \"author\": \"埃利奥特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本哲学书\",\n    \"author\": \"托马斯・内格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012999-032fe2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原\",\n    \"author\": \"毕飞宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012975-9d2262?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近费曼丛书（套装共6册）\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃离不平等\",\n    \"author\": \"安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012318-a4fae0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会学的想象力\",\n    \"author\": \"赖特・米尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012270-d825c1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊与刀（增订版）\",\n    \"author\": \"鲁思・本尼迪克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012096-e918e2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾国教育病理\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国大城\",\n    \"author\": \"陆铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011787-8e42f4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你会杀死那个胖子吗？\",\n    \"author\": \"戴维・埃德蒙兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本社会的17个矛盾\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011637-aacc42?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾这些年所知道的祖国\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们台湾这些年\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011574-9729a0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们台湾这些年2\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011571-5ec4cc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往大国之路：中国的知识重建和文明复兴\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011517-f964c0?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的逻辑\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011373-733a50?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私人生活的变革\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间地图\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011370-deef54?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部招妻\",\n    \"author\": \"马宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以诈止诈\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011319-2fc00d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国大趋势：新社会的八大支柱\",\n    \"author\": \"约翰・奈斯比特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011295-ef8ccd?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知乎一小时「补课系列」套装\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011235-8d096d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他的国\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010668-2bfb7c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德动物\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评官员的尺度\",\n    \"author\": \"安东尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（上卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论政治（下卷）\",\n    \"author\": \"阿兰・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：如何应对大概率危机\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010110-fa186a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白板\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想本质\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言本能\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智探奇\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人时代\",\n    \"author\": \"克莱・舍基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009798-cd52c6?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的精神\",\n    \"author\": \"辜鸿铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝与黄金\",\n    \"author\": \"沃尔特・拉塞尔・米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信任\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009633-ce67ee?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序的起源\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序与政治衰败\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌和钢铁\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大断裂\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009438-2a63df?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断臂上的花朵\",\n    \"author\": \"奥比・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009423-07055d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的终结与最后的人\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零年：1945\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生取义\",\n    \"author\": \"吴飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力：为什么只为某些人所拥有（经典版）\",\n    \"author\": \"杰弗瑞・菲佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神似祖先\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家兴衰\",\n    \"author\": \"鲁奇尔・夏尔马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开放社会及其敌人（全二卷）\",\n    \"author\": \"卡尔・波普尔爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格拉德威尔经典系列（套装共5册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008817-5267fc?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论中国\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性乐观派：一部人类经济进步史\",\n    \"author\": \"马特・里德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008781-b8b9ad?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骗枭\",\n    \"author\": \"冯精志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008745-c36a76?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧制度与大革命\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与荒原同行\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出梁庄记\",\n    \"author\": \"梁鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二号首长\",\n    \"author\": \"黄晓阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008580-78b9e7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国空巢\",\n    \"author\": \"易富贤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008244-1d0cc5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房思琪的初恋乐园\",\n    \"author\": \"林奕含\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008127-c9eeda?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在底层的生活\",\n    \"author\": \"芭芭拉・艾伦瑞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可思议的年代\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被劫持的私生活\",\n    \"author\": \"肉唐僧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008037-46dd88?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2052：未来四十年的中国与世界\",\n    \"author\": \"乔根・兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾五百年\",\n    \"author\": \"戴维・考特莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞利格曼幸福五部曲\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血酬定律：中国历史中的生存游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌舵三部曲（掌舵＋掌舵2+舵手）\",\n    \"author\": \"龙在宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光荣与梦想（套装共4册）\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是食人族\",\n    \"author\": \"克劳德・列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进步时代\",\n    \"author\": \"张国庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国富论（缩译全彩插图本）\",\n    \"author\": \"亚当·斯密\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众：大众心理研究（修订版）\",\n    \"author\": \"古斯塔夫·勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"警察难做\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006957-9f1d28?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自私的基因（30周年纪念版）\",\n    \"author\": \"理查德·道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草民经济学\",\n    \"author\": \"南勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006894-56ae7d?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维基解密：谁授权美国统管世界\",\n    \"author\": \"苏言/贺濒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会性动物\",\n    \"author\": \"Elliot Aronson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时寒冰说：未来二十年，经济大趋势（合集）\",\n    \"author\": \"时寒冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年看中国系列（共8本）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006609-d621da?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人的权利（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006564-636a09?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人与中国人\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006471-f2b909?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人以什么理由来记忆\",\n    \"author\": \"徐贲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006453-f30ed5?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民寂寞的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006432-89cb5c?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫廷社会（译文经典）\",\n    \"author\": \"诺贝特・埃利亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤单，我的自我\",\n    \"author\": \"丽贝卡・特雷斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯卫东官场笔记（1-8册+巴国侯氏）\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006186-fed3db?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂人类进化史\",\n    \"author\": \"史钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长的极限\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独裁者手册\",\n    \"author\": \"布鲁斯・布鲁诺・德・梅斯奎塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年之痒\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集体行动的逻辑\",\n    \"author\": \"曼瑟・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的残渣\",\n    \"author\": \"冯峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1644：中国式王朝兴替\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005220-eda0ce?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗也要叫\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005055-f06b5e?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叫魂\",\n    \"author\": \"孔飞力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004902-1b6315?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反脆弱：从不确定性中获益\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866\",\n    \"category\": \"社会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天边一星子\",\n    \"author\": \"邓安庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024252-c13ed1?p=8866\",\n    \"category\": \"故乡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜长梦多\",\n    \"author\": \"赵兰振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022518-85acd6?p=8866\",\n    \"category\": \"故乡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追问\",\n    \"author\": \"丁捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866\",\n    \"category\": \"反腐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人民的名义\",\n    \"author\": \"周梅森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007896-f02fcd?p=8866\",\n    \"category\": \"反腐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国的腐败与反腐\",\n    \"author\": \"弗兰克・巴约尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866\",\n    \"category\": \"反腐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京人的世界\",\n    \"author\": \"菲利普・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986962-f7608b?p=8866\",\n    \"category\": \"北欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外出偷马\",\n    \"author\": \"佩尔・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866\",\n    \"category\": \"北欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎豹（全二册）\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866\",\n    \"category\": \"北欧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：服务器架设篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866\",\n    \"category\": \"服务器\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋风云人物\",\n    \"author\": \"董尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020238-6652c1?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋觉梦录：袁世凯\",\n    \"author\": \"禅心初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013425-886951?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯国璋：北洋时期最有争议的总统\",\n    \"author\": \"韩仲义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009432-510c86?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文武北洋・风流篇\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009363-bd9b77?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文武北洋・枭雄篇\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009366-f96c72?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋军阀史（套装共2册）\",\n    \"author\": \"来新夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008457-b50456?p=8866\",\n    \"category\": \"北洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六朝文明（中译修订版）\",\n    \"author\": \"丁爱博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491355-eb0d4e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智造中国\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491232-200000?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疑案里的中国史\",\n    \"author\": \"艾公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492021-d4507b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十六史：完本精校大全集\",\n    \"author\": \"尹小林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492978-9ee6ed?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅盾讲中国神话\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492144-627120?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读通鉴论（全本全注全译）\",\n    \"author\": \"王夫之等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492498-e835e5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿得起放不下的大唐史（套装共6册）\",\n    \"author\": \"九皋寒叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493803-e9b7e5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量4\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493833-c77a73?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天中华史（全24卷）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495477-bb3864?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海外中国研究套书合集（50册）\",\n    \"author\": \"杜赞奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494265-1152a5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国从此走向大唐\",\n    \"author\": \"叶言都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497640-aa733a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国合集（套装共4册）\",\n    \"author\": \"余玮等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497739-6909f1?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑永年论中国系列（套装6册）\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾新十年：移动互联网丛林里的勇敢穿越者（套装共2册）\",\n    \"author\": \"林军/胡喆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497964-c980d4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煌煌商周\",\n    \"author\": \"高虫二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498399-fe1caa?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的三国史（套装共3册）\",\n    \"author\": \"醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498435-696d7b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宽著作集第一辑+第二辑（13种15册全）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498888-2686f0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九说中国系列（第一辑·全九册）\",\n    \"author\": \"江晓原等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498858-bb9ccb?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岳南：考古中国（全11册）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499434-08138d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的选择\",\n    \"author\": \"马凯硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱世四百年（全3册）\",\n    \"author\": \"张程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499563-57bb66?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国知识·信仰·制度研究书系（全11册）\",\n    \"author\": \"仇鹿鸣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501066-c19ce4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"置身事内\",\n    \"author\": \"兰小欢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500901-c3b7ff?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祥瑞：王莽和他的时代\",\n    \"author\": \"张向荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501060-79c4bc?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎东方讲史（套装共九册）\",\n    \"author\": \"黎东方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502284-a5d182?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联当代学术丛书（套装10册）\",\n    \"author\": \"茅海建等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502293-05fab8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国的知识与制度转型\",\n    \"author\": \"桑兵/关晓红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502335-2fab88?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国人文社会（套装共8册）\",\n    \"author\": \"冯友兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502341-52b551?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四运动史\",\n    \"author\": \"周策纵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502563-5afaed?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华学人丛书（第二辑）（套种共十六册）\",\n    \"author\": \"李伯杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503694-ac5276?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新编历史-元明清简史系列\",\n    \"author\": \"吴玉章等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504225-455a2a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法度与人心\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504462-48faff?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华学人丛书（第一辑）（套种共十五册）\",\n    \"author\": \"李细珠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504888-0865cd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史大师课（全三册）\",\n    \"author\": \"许宏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504945-912385?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书理解中国（套装共15册）\",\n    \"author\": \"蔡昉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506709-9a88fd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国史学要籍丛刊（全十三册）\",\n    \"author\": \"司马迁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507369-8d2f54?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间烟火\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507471-468a0e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未名中国史丛刊\",\n    \"author\": \"李孝聪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508422-bc780c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑与历史文化精选（套装共5本）\",\n    \"author\": \"汪荣祖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李顿调查团档案文献集\",\n    \"author\": \"郭昭昭等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508902-ee3647?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被遗忘的海上中国史\",\n    \"author\": \"罗荣邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508914-0714ec?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民法典请求权基础检索手册\",\n    \"author\": \"吴香香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508941-e99844?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治维新以来日本涉华学术调查系列丛书（套装共5册）\",\n    \"author\": \"常盘大定等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509337-ad0d6b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲给大家的中国历史（套装共9册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509490-b9fe88?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变中国\",\n    \"author\": \"张军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509850-d9c207?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦魇\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511050-520d2a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古物记\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511083-8bffd6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济2020\",\n    \"author\": \"王德培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511185-ea4e0f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云上的中国\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511269-087c56?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个成语中的古代生活史\",\n    \"author\": \"许晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1840年以来的中国\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512094-24957e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白寿彝史学二十讲套装（共十一册）\",\n    \"author\": \"白寿彝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512733-8591d3?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得看完的中国史\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512874-eab20b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚汉双雄\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟随利玛窦来中国\",\n    \"author\": \"张西平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513096-e1c1a7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华雅文化经典系列（套装共8册）\",\n    \"author\": \"陈敬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513279-73b746?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西洋镜合集\",\n    \"author\": \"赵省伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513801-cd009d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛极简中国史（修订珍藏版）\",\n    \"author\": \"阿尔伯特・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513678-179769?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么是中国\",\n    \"author\": \"金一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古史六案\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513729-d47abf?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美中国（全8册）\",\n    \"author\": \"陈炎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513846-cbc74c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革故鼎新\",\n    \"author\": \"杨天宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004677-064105?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新元史（全十册）\",\n    \"author\": \"柯劭忞等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003306-a208db?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的二本学生\",\n    \"author\": \"黄灯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从考古发现中国\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10000年中国艺术史（全2册）\",\n    \"author\": \"王逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002127-c9e3e5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的中国史\",\n    \"author\": \"历史君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002040-b2ebf4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里是中国\",\n    \"author\": \"星球研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001278-e6701c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国战疫！\",\n    \"author\": \"张维为\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001119-7cf127?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀柔远人\",\n    \"author\": \"何伟亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透《资治通鉴》（战国到三国·共7册）\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995530-d3ff91?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新基建：全球大变局下的中国经济新引擎\",\n    \"author\": \"任泽平/马家进/连一席\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人眼中的中国史（全4册）\",\n    \"author\": \"堀敏一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995227-02574c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时中国1940-1946\",\n    \"author\": \"格兰姆・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995017-6778ad?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何以中国\",\n    \"author\": \"许宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻：新全球化时代的中国韧性与创新\",\n    \"author\": \"秦朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当代中国学术思想史（套装共19卷）\",\n    \"author\": \"成一农等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国共产党的九十年\",\n    \"author\": \"中共中央党史研究室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992086-13abd2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武英殿本四库全书总目·上（1-30册）\",\n    \"author\": \"纪昀等纂修编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994612-c07393?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武英殿本四库全书总目·下（31-60册）\",\n    \"author\": \"纪昀等纂修编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994516-301912?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们不是虹城人\",\n    \"author\": \"王苏辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990964-b8afd7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不只中国木建筑\",\n    \"author\": \"赵广超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云雷岛事件\",\n    \"author\": \"孙国栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990916-d09f48?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代谢增长论\",\n    \"author\": \"陈平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990715-9d84b3?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来站在中国这一边\",\n    \"author\": \"宁南山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国治理\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华文明史（全四卷）\",\n    \"author\": \"袁行霈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人生哲学\",\n    \"author\": \"方东美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990337-fd3773?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的当下与未来\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华二千年史（套装共3册）\",\n    \"author\": \"邓之诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990280-51b8f7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏杨白话版资治通鉴（全72册）\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国政治思想史（套装共3册）\",\n    \"author\": \"刘泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九色鹿•边疆史系列（全7册）\",\n    \"author\": \"薛小林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎和会与北京政府的内外博弈\",\n    \"author\": \"邓野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八次危机\",\n    \"author\": \"温铁军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987595-1cd401?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年读史记（套装全5册）\",\n    \"author\": \"张嘉骅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986401-311f21?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌蒙山记\",\n    \"author\": \"雷平阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五万年中国简史（全二册）\",\n    \"author\": \"姚大力等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985504-47fbca?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文物中国史\",\n    \"author\": \"中国国家博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文史通义校注（中华国学文库）\",\n    \"author\": \"章学诚著/叶瑛校注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984772-eeffe4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史通（全本全注全译）\",\n    \"author\": \"白云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983833-e75058?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正统与华夷\",\n    \"author\": \"刘浦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983797-3ed0c7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有所不为的反叛者\",\n    \"author\": \"罗新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983353-cca417?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上寻仙记\",\n    \"author\": \"锦翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古道\",\n    \"author\": \"伊莎贝拉・韦廉臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053949-72e6cc?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重审中国的“近代”\",\n    \"author\": \"孙江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053655-c514d0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代钱币\",\n    \"author\": \"华东师大博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053706-4553fa?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一书通识世界五千年历史悬案\",\n    \"author\": \"仲英涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053085-b9a1ff?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走：Green和张早故事集\",\n    \"author\": \"司屠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052647-06ffd0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国纵横\",\n    \"author\": \"史景迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052362-4807ce?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2020：用数据看懂中国发展\",\n    \"author\": \"谢伏瞻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史无间道\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定中国史\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051033-abeffa?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定人物论\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"各朝各代那些事儿（套装30册）\",\n    \"author\": \"昊天牧云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050676-782b7a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国问题\",\n    \"author\": \"伯特兰・罗素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十五史简明读本（全15册）\",\n    \"author\": \"汪受宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050169-8543b7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一套书读懂中国经济下半场（套装共25册）\",\n    \"author\": \"陈元/钱颖一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化的江山·第一辑（全4册）\",\n    \"author\": \"刘刚/李冬君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈舜臣说十八史略：中国历史极简本\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048681-5bcfb9?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋词排行榜\",\n    \"author\": \"王兆鹏/郁玉英/郭红欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷场\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048561-99f922?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史：从上古传说到1949\",\n    \"author\": \"邓广铭/田余庆/戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管子（全本全注全译）\",\n    \"author\": \"李山/轩新丽译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离婚（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些忧伤的年轻人\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大河深处\",\n    \"author\": \"东来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047136-68689e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媚骨之书\",\n    \"author\": \"蒋蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒退的帝国：朱元璋的成与败\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开市大吉（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的自信\",\n    \"author\": \"陈曙光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046188-7efacb?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国常识全集（套装共10册）\",\n    \"author\": \"吴晗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045489-a1fa67?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度4\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历朝通俗演义（全十一册）\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045354-75bb47?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去海拉尔\",\n    \"author\": \"王咸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045237-1155f9?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火枪与账簿\",\n    \"author\": \"李伯重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国精神读本\",\n    \"author\": \"王蒙/王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾仕强中国式管理全集（套装书全23册）\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045264-71c053?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：帝国建立与政权巩固\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：王朝鼎盛与命运转折\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安的生活\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨天的中国\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"节日之书\",\n    \"author\": \"余世存/老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044508-103e4d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的中国历史故事（作家榜经典文库）\",\n    \"author\": \"汤芸畦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从历史看组织\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043785-33f6ec?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖中国\",\n    \"author\": \"于阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043692-f33615?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草与禾\",\n    \"author\": \"波音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043632-3f8944?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美不言\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国真有趣（全6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要害怕中国\",\n    \"author\": \"菲利普・巴莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"购物凶猛\",\n    \"author\": \"孙骁骥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简读中国史\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042147-004132?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四运动史：现代中国的知识革命\",\n    \"author\": \"周策纵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041817-36939b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国抗日战争史（四卷套装）\",\n    \"author\": \"张宪文/左用章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星一号\",\n    \"author\": \"朱个\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041376-a5c0bb?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹青手\",\n    \"author\": \"周李立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041214-971083?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无麂岛之夜\",\n    \"author\": \"池上\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040830-a8c559?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感受中国（套装3本）\",\n    \"author\": \"李锦/任志刚/李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040905-1f77cd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识与通识（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济2019\",\n    \"author\": \"王德培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040161-184485?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的军事密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039258-40e6b4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁冬说庄子（套装共九册）\",\n    \"author\": \"梁冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039057-19d5a8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平广记钞（全4册）\",\n    \"author\": \"冯梦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038181-7e9c85?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文史哲入门三部曲\",\n    \"author\": \"吕思勉/胡适/郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037773-c7f7aa?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国史论衡\",\n    \"author\": \"邝士元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035766-7facf5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽必烈的挑战\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大趋势\",\n    \"author\": \"郑永年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1945\",\n    \"author\": \"理查德・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034716-72269b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朔文集（典藏版）\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜂巢\",\n    \"author\": \"刘洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033603-f6beee?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国逸史（全2册）\",\n    \"author\": \"王习耕/梅振田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033477-6c0e82?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说中国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古江河\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化的精神\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平杂说\",\n    \"author\": \"潘旭澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史（五卷本）\",\n    \"author\": \"卜宪群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033426-04b3cd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香山帮\",\n    \"author\": \"朱宏梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033168-09c55f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国\",\n    \"author\": \"乔治·N.赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033150-8be846?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国门阀大族的消亡\",\n    \"author\": \"谭凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖南人与现代中国\",\n    \"author\": \"裴士锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032976-2e3783?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镀金时代\",\n    \"author\": \"夏清影\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032676-8550ac?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国哲学简史\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一看就停不下来的中国史\",\n    \"author\": \"最爱君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032190-ca5444?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经济史\",\n    \"author\": \"钱穆/叶龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻路中国\",\n    \"author\": \"彼得・海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝的故事\",\n    \"author\": \"深蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的历史：诸神的踪迹\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历史常识\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030000-796999?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华夏传统政治文明书系（全四册）\",\n    \"author\": \"马平安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029841-addcd2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细讲中国历史丛书（套装共12册）\",\n    \"author\": \"李学勤/郭志坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030339-2eb1f4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华史纲\",\n    \"author\": \"李定一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029643-40892a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们太缺一门叫生命的学问\",\n    \"author\": \"薛仁明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029520-f3bc05?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革三部曲\",\n    \"author\": \"吴敬琏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人6\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029298-3e03c1?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗地母的礼物（下）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029073-348075?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗地母的礼物（上）\",\n    \"author\": \"残雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028494-c2546a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八〇年代\",\n    \"author\": \"柳红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027843-4ff995?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史学的境界\",\n    \"author\": \"高华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度3\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026157-634aa1?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中1·山水\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025278-3cb446?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中14·中国茶的基本\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中16·西南联大的遗产\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可逃\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱明王朝\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宽著作集第一辑（8种10册全）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025140-fdbb62?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆里的极简中国史\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沧浪诗话\",\n    \"author\": \"严羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翅鬼\",\n    \"author\": \"双雪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024771-35d4c6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024786-a5d2dd?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读中国经济（增订版）\",\n    \"author\": \"林毅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人4\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024066-18ec80?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我只知道人是什么\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡土中国、江村经济套装\",\n    \"author\": \"费孝通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打工女孩\",\n    \"author\": \"张彤禾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国社会各阶层分析\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022956-0c4ce7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超频交易商\",\n    \"author\": \"谢云宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022317-c95b84?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青苔不会消失\",\n    \"author\": \"袁凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思享家丛书（套装共4册）\",\n    \"author\": \"周濂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021486-85c08f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《伦敦新闻画报》记录的民国1926-1949（套装4册）\",\n    \"author\": \"沈弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国《小日报》记录的晚清（1891-1911）\",\n    \"author\": \"李红利/赵丽莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国彩色画报记录的中国1850-1937（套装共2册）\",\n    \"author\": \"赵省伟/李小玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021246-0c8518?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革史系列（共三册）\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020823-e86ce2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度：惊心动魄三十年国运家事纪实\",\n    \"author\": \"李锦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020544-1aec28?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史2\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020037-5762be?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近百年政治史\",\n    \"author\": \"李剑农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019722-b2f37a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不换\",\n    \"author\": \"蔡智恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019077-62b19a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的中国工业革命\",\n    \"author\": \"文一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018393-aa4452?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我认识了一个索马里海盗\",\n    \"author\": \"邓安庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018387-8fbd0f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资治通鉴直解\",\n    \"author\": \"张居正整理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018210-d1a502?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与中国打交道\",\n    \"author\": \"亨利・鲍尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国缺什么，日本缺什么\",\n    \"author\": \"近藤大介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017190-d077f5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯乐\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016926-0073c7?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国时代（全二册）\",\n    \"author\": \"师永刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016368-b309d0?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来镜像\",\n    \"author\": \"刘慈欣/夏笳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016164-7dd1f6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天朝 洋奴 万邦协和\",\n    \"author\": \"傅斯年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016029-7caad2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国原生文明启示录\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵史\",\n    \"author\": \"雷海宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015135-b850e8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋勋说文学之美（全5册修订版）\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015126-9255a6?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字看我一生\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼兰河传（1940年初刊还原版）\",\n    \"author\": \"萧红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014454-6db54f?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口气读完中国战史\",\n    \"author\": \"顾晓绿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014607-058cae?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广州贸易\",\n    \"author\": \"范岱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代王朝系列全集（全28册）\",\n    \"author\": \"王新龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012909-fac22e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信经典历史之中国史篇（共5册）\",\n    \"author\": \"杨早/马勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012885-c4bcf4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾国教育病理\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉经典作品合集（全14册）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012045-6418c3?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化简史（套装共4册）\",\n    \"author\": \"王立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历史风云录\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010971-27004c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说天下：话说中国历史系列（全10册）\",\n    \"author\": \"龚书铎/刘德麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011025-25ef8d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国现代史\",\n    \"author\": \"徐中约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·中国的历史（全十卷）\",\n    \"author\": \"宫本一夫/平势隆郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国社会的新陈代谢（插图本）\",\n    \"author\": \"陈旭麓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，这是另一半中国史\",\n    \"author\": \"杨建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009540-88c0a5?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的中国史（套装共14册）\",\n    \"author\": \"童超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009903-8e6424?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革中国：市场经济的中国之路\",\n    \"author\": \"罗纳德・哈里・科斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009333-847c6a?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是红的：看懂中国经济格局的一本书\",\n    \"author\": \"白云先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日落九世纪：大唐帝国的衰亡\",\n    \"author\": \"赵益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：中国八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论中国\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：华夏世界的历史建构\",\n    \"author\": \"刘仲敬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国速度\",\n    \"author\": \"高铁见闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008568-459c27?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野寒山\",\n    \"author\": \"何善蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2052：未来四十年的中国与世界\",\n    \"author\": \"乔根・兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联专家在中国（1948-1960）\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棋王\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007548-c1b611?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一地鸡毛\",\n    \"author\": \"刘震云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007380-c504ff?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轮\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007125-fc1448?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大中国史（全新校订超值珍藏版）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿什么拯救中国经济？\",\n    \"author\": \"叶檀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简中国史\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006189-1d7a39?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的大队\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005955-4e31ac?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：大国的虚与实\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005817-deb0b2?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国大历史\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004833-543fef?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国神话大词典\",\n    \"author\": \"袁珂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细说中国历史丛书（全十册）\",\n    \"author\": \"黎东方等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004698-777405?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这个历史挺靠谱（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004674-6ba91b?p=8866\",\n    \"category\": \"中国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感驱动\",\n    \"author\": \"维尔・桑切斯・拉米拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866\",\n    \"category\": \"可口可乐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的庸常生活\",\n    \"author\": \"张畅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492048-fed780?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"范稳作品集（全8册）\",\n    \"author\": \"范稳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493179-34f72a?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的时代（共3册）\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504177-aa627c?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半泽直树（全四册）\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990412-aa7e8c?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代主义：从波德莱尔到贝克特之后\",\n    \"author\": \"彼得・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上广女子图鉴\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰克·凯鲁亚克作品集（套装共13册）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048672-0f790e?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沧浪之道三部曲\",\n    \"author\": \"宋定国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047505-f0b74b?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺客信条全集（全13册）\",\n    \"author\": \"奥利弗・波登等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036453-8aa8c0?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·克兰西军事系列（套装共9册）\",\n    \"author\": \"汤姆・克兰西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036339-693198?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光禄坊三号\",\n    \"author\": \"陈永和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036207-b2b9c4?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑牛系列之民国婉约（套装7本）\",\n    \"author\": \"江晓英/林杉/臧宪柱/李婍/牧来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲兹杰拉德小说精选（套装共4册）\",\n    \"author\": \"弗朗西斯・司各特・菲兹杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033936-250a7b?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感悟文学大师经典100册套装\",\n    \"author\": \"萧枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师精品（套装三十册）\",\n    \"author\": \"鲁迅/徐志摩/朱自清等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031935-49b0cf?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱理群作品精编（共8册）\",\n    \"author\": \"钱理群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029190-be6f44?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九个人\",\n    \"author\": \"张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023121-e03fbf?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四十九日祭\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023001-13c4d5?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许子东现代文学课\",\n    \"author\": \"许子东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021855-47d98d?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国都市欲望小说精选集（共6册）\",\n    \"author\": \"李晓东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019995-a87cfe?p=8866\",\n    \"category\": \"现代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何正确吵架\",\n    \"author\": \"朱迪斯・莱特/鲍勃・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866\",\n    \"category\": \"亲密关系\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄联盟：符文之地的故事\",\n    \"author\": \"拳头游戏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501936-2d8551?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化营销\",\n    \"author\": \"胡华成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞生态\",\n    \"author\": \"王萌/路江涌/李晓峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Play Anything\",\n    \"author\": \"Ian Bogost\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025239-8ebaa8?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏改变世界\",\n    \"author\": \"简・麦戈尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023787-eebab9?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏化思维\",\n    \"author\": \"凯文・韦巴赫/丹・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866\",\n    \"category\": \"游戏\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖18：真的，烤箱什么都能做\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866\",\n    \"category\": \"菜谱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粗糙食堂\",\n    \"author\": \"莲小兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866\",\n    \"category\": \"菜谱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼飨宴\",\n    \"author\": \"闻佳/艾格吃饱了\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866\",\n    \"category\": \"菜谱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（校注本）\",\n    \"author\": \"施耐庵/罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866\",\n    \"category\": \"四大名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（校注本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866\",\n    \"category\": \"四大名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（校注本）\",\n    \"author\": \"曹雪芹/高鹗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866\",\n    \"category\": \"四大名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（校注本）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008598-ec27d1?p=8866\",\n    \"category\": \"四大名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈尔滨档案\",\n    \"author\": \"玛拉・穆斯塔芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050781-93c481?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生（果麦经典）\",\n    \"author\": \"鲍里斯・帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050505-1511fe?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Gulag\",\n    \"author\": \"Anne Applebaum\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039219-530b32?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人，岁月，生活\",\n    \"author\": \"爱伦堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031377-705e7b?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高尔基自传三部曲（读客经典）\",\n    \"author\": \"玛克西姆・高尔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028830-4eb235?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑兵军\",\n    \"author\": \"伊萨克・巴别尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024948-2a7089?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中苏关系史纲（增订版）\",\n    \"author\": \"沈志华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023796-f14eb6?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里的黎明静悄悄……\",\n    \"author\": \"鲍・瓦西里耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格之恋\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021333-798278?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败的帝国：从斯大林到戈尔巴乔夫\",\n    \"author\": \"弗拉季斯拉夫・祖博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的崩溃：苏联解体的台前幕后\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009531-44dd38?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳语者\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009489-577978?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联真相：对101个重要问题的思考（全三册）\",\n    \"author\": \"陆南泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009399-e397a1?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格：一部历史\",\n    \"author\": \"安妮・阿普尔鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008823-3cb3b7?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒转红轮\",\n    \"author\": \"金雁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008238-c702a9?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科雷马故事\",\n    \"author\": \"瓦尔拉姆・沙拉莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联的最后一天\",\n    \"author\": \"康纳・奥克莱利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个大国的崛起与崩溃\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战秘密档案\",\n    \"author\": \"鲍里斯・瓦季莫维奇・索科洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱可夫：斯大林的将军\",\n    \"author\": \"杰弗里・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006219-c6136a?p=8866\",\n    \"category\": \"苏联\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越非洲两百年\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004452-fd0c14?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向您告知，明天我们一家就要被杀\",\n    \"author\": \"菲利普・古雷维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003192-ccdfef?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美洲奴隶贸易\",\n    \"author\": \"约翰・伦道夫・斯皮尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996619-c30f76?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶稣的童年（库切文集）\",\n    \"author\": \"J.M.库切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995413-aa1656?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金犀牛\",\n    \"author\": \"富威尔-艾玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅱ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲民间故事\",\n    \"author\": \"保罗・拉丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046212-6c1ced?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"察沃的食人魔\",\n    \"author\": \"J.H.帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦游之地\",\n    \"author\": \"米亚・科托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028986-63cce9?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可不知的非洲史\",\n    \"author\": \"杨益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019659-a63c03?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲常识\",\n    \"author\": \"吕夏乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲三万里\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866\",\n    \"category\": \"非洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人10\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492399-b7dec5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人11\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492456-99847e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第三辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497247-46f412?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第二辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495999-c078ba?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院大长篇之活宝传奇（第一辑）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494919-9c0725?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉蕾（第3部：卷13~卷18）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496446-00c897?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉蕾（第2部：卷7~卷12）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497853-e440f6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉蕾（第1部：卷1~卷6）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497349-aa8a4e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悦读日本系列（套装7册）\",\n    \"author\": \"唐辛子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496755-ea5d84?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"B.A.W（1-30话）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497433-119412?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒旦在线（1-30话）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497826-03ef14?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目友人帐（第4部19-21卷）\",\n    \"author\": \"绿川幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497991-2462c0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目友人帐（第2部7-12卷）\",\n    \"author\": \"绿川幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498411-b22e00?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目友人帐（第3部13-18卷）\",\n    \"author\": \"绿川幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499305-0ac318?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目友人帐（第1部1-6卷）\",\n    \"author\": \"绿川幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498786-8715fd?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画必背古诗词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499623-bea742?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抱住棒棒的自己\",\n    \"author\": \"徐慢慢心理话\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只猫的存在主义思考\",\n    \"author\": \"卡尔・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你说的那个朋友是不是你自己\",\n    \"author\": \"山羊卡罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宇宙大爆炸\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画三国演义\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501411-8c4262?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501417-ad432d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画《论语》\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501885-a28305?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高木直子系列（套装共4册）\",\n    \"author\": \"高木直子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503232-de6e88?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画百年党史·开天辟地\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503298-2b5d77?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画病菌、人类与历史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505926-c5bb26?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第4部：卷19~卷23）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507348-35ca31?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第1部：卷1~卷6）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508449-053311?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饭太稀个人绘本画集合辑\",\n    \"author\": \"饭太稀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜食堂（第2部：卷7~卷12）\",\n    \"author\": \"安倍夜郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508347-d4d29b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100天后会死的鳄鱼君\",\n    \"author\": \"菊池祐纪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510312-e1ca94?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"满是空虚之物\",\n    \"author\": \"阿伏伽德六\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511062-e94297?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇事物所\",\n    \"author\": \"怪奇事物所所长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511239-e8b5e8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼（全2册）\",\n    \"author\": \"伊藤润二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512241-e9779d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海怪兽\",\n    \"author\": \"彭磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511941-7ee0fe?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画讲透孙子兵法（全四册）\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512280-a5e501?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新蜡笔小新合集（套装共8册）\",\n    \"author\": \"臼井仪人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513225-1f3010?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑜老板三分钟京剧小灶（套装2册）\",\n    \"author\": \"瑜音社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513381-1aaee4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的老板不苛责摸鱼的人\",\n    \"author\": \"哎呀我兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513525-565ebf?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"躺着赚钱的漫画基金书\",\n    \"author\": \"三折人生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513702-f21c11?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮笑肉也笑\",\n    \"author\": \"典婆婆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004533-f9dbd4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜泉镇（第二册）\",\n    \"author\": \"仟绘动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004728-5262a3?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画心理学一看就懂\",\n    \"author\": \"王絮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003924-326534?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜泉镇（第一册）\",\n    \"author\": \"仟绘动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003930-496305?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王牌神棍\",\n    \"author\": \"天翼爱动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003471-a613aa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"业余真探\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003261-c38de1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想国的陷落\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003159-138cd0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝望教室\",\n    \"author\": \"泛次元文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002973-ed00e3?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎灵神医\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003651-0fb919?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙族Ⅰ-Ⅲ（套装共32册）\",\n    \"author\": \"江南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003237-72b827?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子恺漫画全集\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002385-67b3da?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌龙院四格漫画系列（套装12册）\",\n    \"author\": \"敖幼祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002832-48bf80?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱雀厅\",\n    \"author\": \"仟绘动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002280-200fc0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类简史（知识漫画）\",\n    \"author\": \"尤瓦尔・赫拉利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001926-2ba1b6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡探\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002118-feedc2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条草鱼\",\n    \"author\": \"哈欠丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002037-f32c42?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出马弟子\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002763-fd9ae8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不灭修罗（共十册）\",\n    \"author\": \"冷面加糖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001317-8fb92a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶犬之牙\",\n    \"author\": \"鱼骨互娱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001476-984182?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格斗赤炎\",\n    \"author\": \"鱼骨互娱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001272-e8978f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲天玄英录\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001362-a5e2f1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英魂之刃\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001335-40c4e0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白门五甲\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001812-f1e868?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白蛇囧传（1-11话）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000390-96c1f6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年纪轻轻，就有猫了\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000237-49e09f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找自我的世界\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000051-9ea345?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子17号：机甲战士（第1卷）\",\n    \"author\": \"阿桂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999898-3d83f2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"济公Q传（套装10册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999868-25095b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼来了（套装第1-2册）\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999427-ce44dc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"济公传奇（套装9册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999598-b81231?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"hi我的名字叫镰\",\n    \"author\": \"天翼爱动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999409-80bef5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要总是谦卑地弯着腰\",\n    \"author\": \"滨濑NORIKO\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998998-32fffa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画经济学一看就懂\",\n    \"author\": \"武敬敏/田萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998920-f86ba8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画生活哲学一看就懂\",\n    \"author\": \"李静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（经济篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有座灵剑山（第1册至第12册）\",\n    \"author\": \"鲜漫动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999364-d58cb9?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有座灵剑山（第13册至第24册）\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998770-9dec22?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第七部：卷37-卷42）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998470-967b6a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史2\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997261-6d28e2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第八部：卷43-卷45）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997591-eabcd8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日用品简史\",\n    \"author\": \"安迪・沃纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997060-cffd2a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史3\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996865-28d03d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏海花漫画套装（全六册）\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997207-658fc2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第五部：卷25-卷30）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997618-932079?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第六部：卷31-卷36）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997519-73ae65?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第三部：卷13-卷18）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997318-46ced3?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第四部：卷19-卷24）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996397-964930?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第一部：卷1-卷6）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第二部：卷7-卷12）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996145-6743c1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史5\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995404-e9c71c?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画预防常见病\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫生（套装第1-6册）\",\n    \"author\": \"腾讯动漫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995233-c2fad6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼灭之刃（第三部：卷16-卷23）\",\n    \"author\": \"吾峠呼世晴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995521-6d41fc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆笑棒槌（套装5册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994765-fa2057?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BEASTARS 动物狂想曲（第2部：卷9~卷15）\",\n    \"author\": \"板垣巴留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994582-4fd0a8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼灭之刃（第一部：卷1-卷7）\",\n    \"author\": \"吾峠呼世晴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995077-467311?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼灭之刃（第二部：卷8-卷15）\",\n    \"author\": \"吾峠呼世晴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995050-1a5413?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BEASTARS 动物狂想曲（第1部：卷1~卷8）\",\n    \"author\": \"板垣巴留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993796-d76c26?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年维新\",\n    \"author\": \"铲史官\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991513-1cd046?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人羡慕的反派角色（套装2册）\",\n    \"author\": \"雨浮凉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991018-d7abcf?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从早“茫”到晚\",\n    \"author\": \"西沃恩・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990868-fddced?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的骰子\",\n    \"author\": \"罗金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你总说没事，但我知道你偷偷哭过很多次\",\n    \"author\": \"一禅小和尚诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守望先锋（第一卷）\",\n    \"author\": \"美国暴雪娱乐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X的预言\",\n    \"author\": \"宁城荒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987895-873d28?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画科学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画宋词\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那一年+师傅\",\n    \"author\": \"左手韩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985078-3f51ab?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无名之城\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985117-a407a9?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第13部：卷96~卷98）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985435-f1700a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985012-e16de7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画世界史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第4部22-28卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984898-007385?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第5部：卷33-卷38）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983725-235f1a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第1部1-7卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983902-35ebe0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第2部8-14卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983941-1ab596?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣斗士星矢（第3部15-21卷）\",\n    \"author\": \"车田正美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983569-96e619?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第2部：卷9-卷16）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983290-57f378?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第3部：卷17-卷24）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983281-556f8a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第4部：卷25-卷32）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983263-15b46b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第11部：卷81~卷88）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054771-56c4aa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异端：进击的哲学现场\",\n    \"author\": \"史蒂文・纳德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第12部：卷89~卷95）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054726-43235d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱马（第1部：卷1-卷8）\",\n    \"author\": \"高桥留美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054669-60e509?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（金融危机完结篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054291-a6d1dc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第8部：卷57~卷64）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054645-c4772c?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第9部：卷65~卷72）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054474-d26884?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第10部：卷73~卷80）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054366-0dccb2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第5部：卷33~卷40）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054279-6954ac?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第6部：卷41~卷48）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054189-c343d7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第7部：卷49~卷56）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053856-fdbd3f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第1部：卷1~卷8）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053607-cae7ea?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第2部：卷9~卷16）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053487-daf28b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第3部：卷17~卷24）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053508-e33a08?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探柯南（第4部：卷25~卷32）\",\n    \"author\": \"青山刚昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053445-22ed13?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装者：巴黎往事\",\n    \"author\": \"蚕蚕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053010-bfbea0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威超级英雄双语故事集（套装共10本）\",\n    \"author\": \"美国漫威公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053103-e6f1dc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递3\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052419-e24215?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一见你就好心情\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递1\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间快递2\",\n    \"author\": \"漫漫漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052521-e6c2e4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅都市生存指南（套装全9册）\",\n    \"author\": \"贾森・黑兹利/乔尔・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画算法\",\n    \"author\": \"魏梦舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说3）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051225-10a03f?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说4）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说1）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050733-ce5a62?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌：权力的游戏（图像小说2）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050352-c86d54?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜见女皇陛下（套装10册）\",\n    \"author\": \"ZCloud\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050091-232091?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"才不要让你知道\",\n    \"author\": \"方小孬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049062-ca8818?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三分钟漫画汽车史\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人8\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048456-50027e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人9\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第10部：卷65~卷72）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049263-5b61c1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（外传：宇智波莎罗娜）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048198-844218?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鹤三绝\",\n    \"author\": \"二斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开哲学家的正确方式\",\n    \"author\": \"畠山创\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047841-67f2ce?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第8部：卷49~卷56）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048327-ad09a2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第9部：卷57~卷64）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048300-dcb294?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第5部：卷28~卷34）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047895-7c9166?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第6部：卷35~卷41）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047679-80d7b1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第7部：卷42~卷48）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047649-541ed0?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第3部：卷15~卷21）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047475-b30d93?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第4部：卷22~卷27）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047292-9a2d01?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子（果麦经典）\",\n    \"author\": \"埃·奥·卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046836-36864d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第1部：卷1~卷7）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第2部：卷8~卷14）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047043-883e2e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（中国传统节日）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（金融危机篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043179-7c4aeb?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖11：美食漫画万岁\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040122-5a5f09?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗小黑战记1\",\n    \"author\": \"MTJJ\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039825-7c8219?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史4\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038724-389581?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画经济学（生活常识篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非平面\",\n    \"author\": \"尼克・索萨尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子4\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画理财课\",\n    \"author\": \"八宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人7\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032982-676f27?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史2\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032661-abddf5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子3\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032709-0558a6?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子2\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032409-a7c4f5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也吸收了猫能量\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子全集（作家榜经典文库）\",\n    \"author\": \"埃・奥・卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（36-42卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032202-c68188?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（22-28卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031968-91db23?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（29-35卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031650-4dcd48?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（15-21卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031296-2082ae?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（8-14卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031185-361551?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（1-7卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031014-763232?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果能重来，我想做熊孩\",\n    \"author\": \"左手韩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030297-38302e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人6\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029298-3e03c1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日15：太喜欢漫画了\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025446-21f6d8?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人5\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025581-ba94a5?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观山海\",\n    \"author\": \"杉泽/梁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024672-aac4e1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回答不了\",\n    \"author\": \"匡扶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂的真实人生\",\n    \"author\": \"安娜・马丁内蒂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024306-ad80e4?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人4\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024066-18ec80?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人3\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022377-a26652?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芬兰人的噩梦\",\n    \"author\": \"卡罗利娜・科尔霍宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史3\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021012-b2a5b1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人2\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020184-ca791a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020004-6236a2?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019335-523960?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡不着：Tango一日一画\",\n    \"author\": \"Tango\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017952-e205a1?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我很好啊，你怎么样\",\n    \"author\": \"莎拉・安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017538-a3c7eb?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非普通人系列（套装共6册）\",\n    \"author\": \"弗雷德里克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015228-fba95a?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尾文字鱼\",\n    \"author\": \"伍肆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013374-cb4cf7?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Hyperbole and a Half\",\n    \"author\": \"Allie Brosh\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011097-a5f8ed?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你今天真好看\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着本来单纯：丰子恺散文漫画精品集\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺漫画精品集（修订版）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我可以咬一口吗？\",\n    \"author\": \"莉兹・克里莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006363-81268e?p=8866\",\n    \"category\": \"漫画\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866\",\n    \"category\": \"蜡烛图\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（原书第3版）\",\n    \"author\": \"格里高里・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866\",\n    \"category\": \"蜡烛图\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Netty实战\",\n    \"author\": \"诺曼・毛瑞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048471-3b0351?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Boot实战\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java程序员修炼之道\",\n    \"author\": \"Benjamin J. Evans/Martijn Verburg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java 8实战\",\n    \"author\": \"Raoul-Gabriel Urma等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021054-fef42d?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring实战（第4版）\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020319-e008d6?p=8866\",\n    \"category\": \"Java\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说精选（读客经典）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034014-51fe85?p=8866\",\n    \"category\": \"人情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极求生\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510861-cb888f?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服亚马孙\",\n    \"author\": \"埃德・斯塔福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在西伯利亚森林中\",\n    \"author\": \"西尔万・泰松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤身绝壁\",\n    \"author\": \"亚历克斯・汉诺尔德/大卫・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011652-90caa3?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背包十年\",\n    \"author\": \"小鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进入空气稀薄地带\",\n    \"author\": \"乔恩・克拉考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生：面对冰封的海洋\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866\",\n    \"category\": \"户外\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙\",\n    \"author\": \"赵国栋/易欢欢/徐远重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500148-0863f3?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智转向\",\n    \"author\": \"奥马尔・阿布什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业互联网浪潮\",\n    \"author\": \"张学军/王保平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993973-efa42c?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字货币\",\n    \"author\": \"龙白滔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991573-077591?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优步：算法重新定义工作\",\n    \"author\": \"亚力克斯・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门到门时代\",\n    \"author\": \"Edward Humes\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷简史\",\n    \"author\": \"钱纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽：风口上的独角兽\",\n    \"author\": \"陈歆磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互动\",\n    \"author\": \"詹妮弗・杜尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031617-5f50a6?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞生态\",\n    \"author\": \"王萌/路江涌/李晓峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不会被机器替代的人\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：平台型组织的进化路线图\",\n    \"author\": \"穆胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866\",\n    \"category\": \"新经济\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所有工具都是锤子\",\n    \"author\": \"亚当・萨维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490995-fea1f0?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于火星的一切\",\n    \"author\": \"李德范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾雷德·戴蒙德作品集（套装共4册）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的能源新趋势\",\n    \"author\": \"瓦茨拉夫・斯米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493416-7ae8a8?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李·斯莫林讲量子引力\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493503-da4a48?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们被偷走的注意力\",\n    \"author\": \"斯特凡・范德斯蒂格谢尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体的历史（三卷本）\",\n    \"author\": \"乔治・维加埃罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494961-7ca170?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"里程碑书系（套装7册）\",\n    \"author\": \"吉姆・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497502-218ca7?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的脑科学\",\n    \"author\": \"阿马尔・阿尔查拉比等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列：伽利略的手指\",\n    \"author\": \"彼得・阿特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不停歇的时钟\",\n    \"author\": \"杰西卡・里斯金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498153-27f384?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新科学漫游指南（套装共8册）\",\n    \"author\": \"《新科学家》杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498336-abceb1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懒惰脑科学\",\n    \"author\": \"鲍里斯・薛瓦勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混沌：开创一门新科学\",\n    \"author\": \"詹姆斯・格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499593-12a37c?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细胞生命的礼赞\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499728-0ba4d6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在别的星球上\",\n    \"author\": \"吕西安・吕都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499833-e58485?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂芬·霍金中文版著作全集（套装共11册）\",\n    \"author\": \"史蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500730-428f3d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深时之旅\",\n    \"author\": \"罗伯特・麦克法伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变历史的100个实验（套装共2册）\",\n    \"author\": \"亚当・哈特-戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502659-93c7ba?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学物理化学大师经典系列（16册套装）\",\n    \"author\": \"薛定谔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505011-15ac5f?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社百科通识大套装·社会卷（共49本）\",\n    \"author\": \"柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507051-2a2f7d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百科通识文库：西方学科奠基精选大套装（套装共88本）\",\n    \"author\": \"柏拉图等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508041-895ae1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响历史进程的九大科学家代表作图释书（套装9册）\",\n    \"author\": \"阿尔伯特・爱因斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510252-9e4341?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC夜空探索系列（套装全8册）\",\n    \"author\": \"BBC仰望夜空杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学：无尽的前沿\",\n    \"author\": \"范内瓦・布什/拉什·D·霍尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510807-8d9351?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放空\",\n    \"author\": \"曼诺诗・左莫若迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511116-f9cceb?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可能的六件事\",\n    \"author\": \"约翰・格里宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性的进化\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512319-d04e8d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超现实\",\n    \"author\": \"杰里米・拜伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513297-854053?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不确定的边缘\",\n    \"author\": \"埃尔文・布鲁克斯・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513399-cd84df?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国科学史（全两册）\",\n    \"author\": \"李申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004308-1ba9f4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理查德·费曼传\",\n    \"author\": \"劳伦斯・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001806-54b61b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学作为天职\",\n    \"author\": \"李猛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001632-142eb7?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性的边界\",\n    \"author\": \"诺桑・亚诺夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001614-cc8dce?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破译人类的明天\",\n    \"author\": \"迈克尔・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西网络科学\",\n    \"author\": \"艾伯特-拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000138-cf99ca?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因之河\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999775-ad8131?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"师从天才\",\n    \"author\": \"罗伯特・卡尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999742-fb19d4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的科学简史\",\n    \"author\": \"肖恩·F·约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999493-9088d8?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别想那只大象\",\n    \"author\": \"乔治・莱考夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999469-0222ec?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给年轻科学家的信\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997759-7b3384?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质是什么\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的价值\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995326-60c097?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式学习\",\n    \"author\": \"周林文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的科普系列（套装共8册）\",\n    \"author\": \"竹内薫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994651-9f7c25?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理的时空\",\n    \"author\": \"尼古拉斯・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界边缘的秘密\",\n    \"author\": \"光子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的骰子\",\n    \"author\": \"罗金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自然的音符\",\n    \"author\": \"自然科研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱布尼茨、牛顿与发明时间\",\n    \"author\": \"托马斯・德・帕多瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口一口“吃掉”你\",\n    \"author\": \"生命时报\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·彭罗斯作品集（套装共4册）\",\n    \"author\": \"罗杰・彭罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988642-62c533?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物发明指南\",\n    \"author\": \"瑞安・诺思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系度假指南\",\n    \"author\": \"奥莉维亚・科斯基/加纳・格鲁赛维克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的方式\",\n    \"author\": \"阿尔弗雷德・诺思・怀特海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987088-319fee?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学本来很简单\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画科学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学不简单\",\n    \"author\": \"吴悦辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985834-983ed5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系简史\",\n    \"author\": \"约翰・钱伯斯/杰奎琳・米顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的工程学\",\n    \"author\": \"娜塔莎・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985189-b04eab?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷的开始\",\n    \"author\": \"戴维・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无穷小\",\n    \"author\": \"阿米尔・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹈鹕丛书（共6册）\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁极简科学史\",\n    \"author\": \"威廉・拜纳姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982441-5807b0?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理学的进化\",\n    \"author\": \"阿尔伯特・爱因斯坦/利奥波德・英费尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何系统思考\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮全书\",\n    \"author\": \"比尔・莱瑟巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国科学新闻精选套装\",\n    \"author\": \"《科学新闻》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才时代\",\n    \"author\": \"A.C.格雷林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《自然》百年科学经典（第一卷）\",\n    \"author\": \"赫胥黎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追捕祝融星\",\n    \"author\": \"托马斯・利文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《新科学家》杂志轻科普系列（套装全3册）\",\n    \"author\": \"新科学家杂志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹性\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与爱因斯坦共进早餐\",\n    \"author\": \"查德・奥泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（果麦经典）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全新万物简史\",\n    \"author\": \"鲍勃・伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《科学美国人》精选系列科学全景套装（共14册）\",\n    \"author\": \"《环球科学》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大开眼界的科学知识\",\n    \"author\": \"胡桃夹子工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048882-d2f1c4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费恩曼物理学讲义（新千年版）（套装共3册）\",\n    \"author\": \"费恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大漠奇迹\",\n    \"author\": \"王文彪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047955-306ed1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大图景\",\n    \"author\": \"肖恩・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲古兵器图说\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦传（全2册）\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超凡：我们的身心极致及天赋的科学\",\n    \"author\": \"罗恩・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能生存学\",\n    \"author\": \"李・戈德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·弦理论之争系列（新版套装共3册）\",\n    \"author\": \"布莱恩・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·时空奥秘系列（新版套装共5册）\",\n    \"author\": \"史蒂芬・霍金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036891-abb2fb?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共9册）\",\n    \"author\": \"布莱恩・格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·综合系列（套装共7册）\",\n    \"author\": \"梅拉妮・米歇尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（六）\",\n    \"author\": \"伽利略等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036366-c0cbfa?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学本来很有趣\",\n    \"author\": \"赛・太蒙尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的材料\",\n    \"author\": \"马克・米奥多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·生命系列（套装共5册）\",\n    \"author\": \"伦道夫·M. 尼斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035862-20c392?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现的乐趣\",\n    \"author\": \"理查德・费曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035826-de103a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（五）\",\n    \"author\": \"惠更斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的科学哲学\",\n    \"author\": \"杰弗里・戈勒姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物起源\",\n    \"author\": \"格雷厄姆・劳顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下游老人\",\n    \"author\": \"藤田孝典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032235-32dde2?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一想到还有95%的问题留给人类，我就放心了\",\n    \"author\": \"豪尔赫・陈/丹尼尔・怀特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简天文学\",\n    \"author\": \"科林・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判心理学\",\n    \"author\": \"康木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029664-32f6cd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媒介批评三部曲（套装共3册）\",\n    \"author\": \"尼尔・波斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029637-888957?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联结：通向未来的文明史\",\n    \"author\": \"詹姆斯・伯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有极限的科学\",\n    \"author\": \"周建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029220-f6becc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火焰中的秘密\",\n    \"author\": \"延斯・森特根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028938-6425da?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的历程（修订第4版）\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞大作战（套装三册）\",\n    \"author\": \"玛特・富尼耶等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028755-fd2efe?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能简史\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028056-700487?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香农传\",\n    \"author\": \"吉米・索尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：如何有效利用注意力做出理性决策\",\n    \"author\": \"川上浩司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027192-709fbf?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本有趣又有料的科学书\",\n    \"author\": \"大象公会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025065-df6894?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘易斯·托马斯作品（共5册）\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024774-f809b9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶杯里的风暴\",\n    \"author\": \"海伦・切尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开一颗心\",\n    \"author\": \"斯蒂芬・韦斯塔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新认识资本主义三部曲\",\n    \"author\": \"娜奥米・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因、大脑和人类潜能\",\n    \"author\": \"肯・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物质的秘密\",\n    \"author\": \"埃蒂安・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络心理学\",\n    \"author\": \"玛丽・艾肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024027-d383d4?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普鲁斯特是个神经学家\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光电帝国\",\n    \"author\": \"吉尔・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023925-f4200b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何想到又做到\",\n    \"author\": \"肖恩・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做出正确决定\",\n    \"author\": \"乔纳・莱勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的技术\",\n    \"author\": \"凯莉・魏纳史密斯/扎克・魏纳史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷脸背后\",\n    \"author\": \"张重生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Brief Answers to the Big Questions\",\n    \"author\": \"Stephen Hawking\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023337-520d53?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼的牧师\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023202-04f6de?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶的科学\",\n    \"author\": \"西蒙・巴伦-科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公平之怒\",\n    \"author\": \"理查德・威尔金森/凯特・皮克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生存本能正在杀死你（修订版）\",\n    \"author\": \"马克・舍恩/克里斯汀・洛贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七堂思维成长课\",\n    \"author\": \"卡罗琳・韦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022566-3c90d6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医学的真相\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知三部曲\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人叛乱\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021507-5497dc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来三部曲\",\n    \"author\": \"阿尔文・托夫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021477-8f5f78?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X的奇幻之旅\",\n    \"author\": \"史蒂夫・斯托加茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学起源课\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字乌托邦\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020883-6adb43?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有序：关于心智效率的认知科学\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020190-284690?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学推理：逻辑与科学思维方法\",\n    \"author\": \"周建武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020007-e15c56?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学学习：斯坦福黄金学习法则\",\n    \"author\": \"丹尼尔 L. 施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020025-038e41?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的悖论\",\n    \"author\": \"菲利普・津巴多/约翰・博伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019449-bf5895?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是科学\",\n    \"author\": \"吴国盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017991-026d4b?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实验是如何终结的？\",\n    \"author\": \"彼得・伽里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017994-a7216f?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当自我来敲门\",\n    \"author\": \"安东尼奥・达马西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017889-ef3bdf?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的形状：相对论史话\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道金斯科学经典系列（套装共三册）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016665-7167df?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对于历史，科学家有话说\",\n    \"author\": \"熊卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016641-473197?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Life 3.0\",\n    \"author\": \"迈克斯・泰格马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016356-638f33?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Homo Deus\",\n    \"author\": \"Yuval Noah Harari\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016344-af4d82?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接组：造就独一无二的你\",\n    \"author\": \"承现峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费马大定理：一个困惑了世间智者358年的谜\",\n    \"author\": \"西蒙・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014706-602d01?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新自信力\",\n    \"author\": \"戴维・凯利/汤姆・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界顶级思维\",\n    \"author\": \"沧海满月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013860-8e324d?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命：进化生物学、遗传学、人类学和环境科学的黎明\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡眠革命\",\n    \"author\": \"尼克・利特尔黑尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湛庐文化医学人文经典书系（套装共5册）\",\n    \"author\": \"阿图・葛文德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012834-c2175e?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会学的想象力\",\n    \"author\": \"赖特・米尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012270-d825c1?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅2\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德景观\",\n    \"author\": \"萨姆・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机械宇宙\",\n    \"author\": \"爱德华・多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经度\",\n    \"author\": \"达娃・索贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘的量子生命\",\n    \"author\": \"吉姆・艾尔/约翰乔・麦克法登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙简史：起源与归宿\",\n    \"author\": \"斯蒂芬・霍金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简科学史\",\n    \"author\": \"苏珊・怀斯・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007800-428adc?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极客物理学：地球上最有趣的问题和最出人意料的答案\",\n    \"author\": \"瑞特・阿莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学管理原理\",\n    \"author\": \"弗雷德里克・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007242-f6d444?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学究竟是什么（第3版）\",\n    \"author\": \"A.F.查尔默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触：全球大型传染病探秘之旅\",\n    \"author\": \"大卫·奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物理世界奇遇记\",\n    \"author\": \"伽莫夫/斯坦纳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会性动物\",\n    \"author\": \"Elliot Aronson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂人类进化史\",\n    \"author\": \"史钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005568-d9ac87?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数学那些事儿\",\n    \"author\": \"William Dunham\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人造恐慌\",\n    \"author\": \"袁越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005136-32c837?p=8866\",\n    \"category\": \"科学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探3：古画寻踪\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044214-07f96d?p=8866\",\n    \"category\": \"破案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸案调查科系列（全5册）\",\n    \"author\": \"九滴水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866\",\n    \"category\": \"破案\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九色鹿•边疆史系列（全7册）\",\n    \"author\": \"薛小林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866\",\n    \"category\": \"边疆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的边疆：游牧帝国与中国\",\n    \"author\": \"巴菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014373-aa3442?p=8866\",\n    \"category\": \"边疆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"组织革新\",\n    \"author\": \"杨国安/戴维・尤里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866\",\n    \"category\": \"组织\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帮你省时间！替你划重点！教你学管理！\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866\",\n    \"category\": \"组织\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明2：四句话读懂阳明心学\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明3：王阳明家训\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真正全集：王阳明全集\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知行合一王阳明\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866\",\n    \"category\": \"心学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去规模化\",\n    \"author\": \"赫曼特・塔内佳/凯文・梅尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的行为\",\n    \"author\": \"托马斯・科洛波洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人机共生\",\n    \"author\": \"托马斯・达文波特/茱莉娅・柯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三次浪潮\",\n    \"author\": \"阿尔文・托夫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小宣言\",\n    \"author\": \"马格努斯・林奎斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027162-16e6c5?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势戒律\",\n    \"author\": \"柯弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变量\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026250-f993f8?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟现实：万象的新开端\",\n    \"author\": \"杰伦・拉尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023481-c4b2a4?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富足：改变人类未来的4大力量\",\n    \"author\": \"彼得・戴曼迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015900-a0dfb0?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势红利\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必然\",\n    \"author\": \"凯文・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866\",\n    \"category\": \"趋势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降魔变\",\n    \"author\": \"马鸣谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041346-cd8c9b?p=8866\",\n    \"category\": \"隋唐史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐人轶事汇编\",\n    \"author\": \"周勋初/严杰/武秀成/姚松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866\",\n    \"category\": \"隋唐史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕的金桃\",\n    \"author\": \"薛爱华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866\",\n    \"category\": \"隋唐史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐开国\",\n    \"author\": \"于赓哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027039-ea116e?p=8866\",\n    \"category\": \"隋唐史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌与钢铁（修订版）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维的自然史\",\n    \"author\": \"迈克尔・托马塞洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金泽：江南民间祭祀探源\",\n    \"author\": \"李天纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西成功定律\",\n    \"author\": \"拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘型人格障碍\",\n    \"author\": \"兰迪・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神（译文经典）\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人口浪潮\",\n    \"author\": \"保罗・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观从何而来\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才在左，疯子在右\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类不平等的起源和基础（果麦经典）\",\n    \"author\": \"让-雅克・卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"色情\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"链接未找到\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的西方（译文经典）\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图绘暹罗\",\n    \"author\": \"通猜・威尼差恭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族、土地与祖先\",\n    \"author\": \"易劳逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德浪女\",\n    \"author\": \"朵思.伊斯頓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃在拂晓\",\n    \"author\": \"克里斯托弗・莱恩/卡西尔达・杰萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸猿三部曲（裸猿+人类动物园+亲密行为）\",\n    \"author\": \"德斯蒙德·莫利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866\",\n    \"category\": \"社会学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国四百年\",\n    \"author\": \"布・斯里尼瓦桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490923-e9b635?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坠落与重生：911的故事\",\n    \"author\": \"米切尔・祖科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497535-e9ce53?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条前夜的繁荣与疯狂\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美利坚的民族\",\n    \"author\": \"科林・伍达德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499449-5b4652?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辉煌信标：美国灯塔史\",\n    \"author\": \"埃里克・杰・多林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499494-7adcd3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达摩流浪者\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501198-87ebe7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平原上的城市\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501537-1986a4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国统治的逻辑\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误解的盐\",\n    \"author\": \"詹姆斯・迪尼科兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国的反智传统\",\n    \"author\": \"理查德・霍夫施塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506823-0cc3c2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹劾\",\n    \"author\": \"戴维・E.凯卫格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自世界的消息\",\n    \"author\": \"波莱特・吉尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510216-bd22d0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凶年\",\n    \"author\": \"大卫・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命雕刻\",\n    \"author\": \"杰夫里・迪弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511026-be629f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的图书馆\",\n    \"author\": \"苏珊・奥尔琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511101-21bf23?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国陷阱\",\n    \"author\": \"诺埃尔・毛雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造差异\",\n    \"author\": \"斯科特・麦克凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512001-af91e6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小镇美国\",\n    \"author\": \"罗伯特・伍斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512082-f8d626?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星河战队\",\n    \"author\": \"罗伯特・海因莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512394-fa353d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们深陷泥潭\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513357-b71e8f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国怎么了\",\n    \"author\": \"安妮・凯斯/安格斯・迪顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下沉年代\",\n    \"author\": \"乔治・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513777-106914?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国不平等的起源\",\n    \"author\": \"伊莎贝尔・威尔克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国革命的激进主义\",\n    \"author\": \"戈登·S.伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003327-20516e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深暗\",\n    \"author\": \"赫克托・托巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002850-10fa6c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷泉港（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002343-3176c0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国病\",\n    \"author\": \"伊丽莎白・罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说家与小说\",\n    \"author\": \"哈罗德・布鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002274-876831?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下落小猫与基础物理学\",\n    \"author\": \"格雷戈里·J.格布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001302-28b2c5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大洋\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"觉醒\",\n    \"author\": \"凯特・肖邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000351-1aaa04?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好老师，坏老师\",\n    \"author\": \"达娜・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"右派国家（新版）\",\n    \"author\": \"约翰・米克尔思韦特/阿德里安・伍尔德里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性本恶\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998977-2d9306?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论美国的民主（全2册）\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997912-ae03bf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"誓言：白宫与最高法院\",\n    \"author\": \"杰弗里・图宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许倬云说美国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肮脏的三十年代\",\n    \"author\": \"蒂莫西・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国会（牛津通识读本）\",\n    \"author\": \"唐纳德・A.里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国独行\",\n    \"author\": \"马克・斯坦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997540-afe385?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国监狱\",\n    \"author\": \"肖恩・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新美国\",\n    \"author\": \"弗雷德里克・洛根・帕克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盟友\",\n    \"author\": \"琳恩・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国内战史：1861-1865\",\n    \"author\": \"詹姆斯・福特・罗德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996796-130fe4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国第一夫人回忆录\",\n    \"author\": \"塔夫脱总统夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国成长三部曲\",\n    \"author\": \"弗雷德里克・刘易斯・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996151-fcfc33?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国艺术史\",\n    \"author\": \"塞缪尔·G.W.本杰明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995716-d01373?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国真相\",\n    \"author\": \"約瑟夫・斯蒂格利茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆·索亚历险记（读客经典文库）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995134-d8eeaf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好女孩\",\n    \"author\": \"布莉・贝内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994696-b834b3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（博集天卷）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会政体\",\n    \"author\": \"伍德罗・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿瑟·戈登·皮姆历险记\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991789-d7e38a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（果麦经典）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991528-1cf2cf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光阴似剪\",\n    \"author\": \"达娜・斯皮奥塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991126-9b7881?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的孤独者\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990946-509c94?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲切的艺术\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之路（理查德·耶茨文集）\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990163-9fe5c2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈扎尔绅士\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990151-0b2e68?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原罪、梦想与霸权\",\n    \"author\": \"维克多・基尔南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一次将是烈火\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光狂想曲\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔桶（短经典）\",\n    \"author\": \"伯纳德・马拉默德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990034-7cb146?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拍卖第四十九批\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989599-5f3577?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如比尔街可以作证\",\n    \"author\": \"詹姆斯・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989149-9bb539?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人与中国人\",\n    \"author\": \"许烺光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水刀子\",\n    \"author\": \"保罗・巴奇加卢皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987310-e009b7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水妖\",\n    \"author\": \"内森・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986659-c94878?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏珊·桑塔格全传\",\n    \"author\": \"卡尔・罗利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986275-a21ab1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚风如诉\",\n    \"author\": \"肯特・哈鲁夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986068-b1f20b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮尔士论符号 （二十世纪西方哲学经典）\",\n    \"author\": \"查尔斯・皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航（成为小王子系列）\",\n    \"author\": \"圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神弃之地\",\n    \"author\": \"唐纳德・雷・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985507-b2ba91?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小报戏梦\",\n    \"author\": \"罗伯特・奥伦・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985342-fd9e50?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人：从殖民到民主的历程\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985291-454b87?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破战者\",\n    \"author\": \"布兰登・桑德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985150-3bb1ea?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无名之城\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985117-a407a9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国海：墨西哥湾的历史\",\n    \"author\": \"杰克·E.戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984943-5a4981?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种死法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984805-e43574?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人幸免\",\n    \"author\": \"奥马尔・阿卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀母的文化\",\n    \"author\": \"孙隆基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983671-269fff?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想我苦哈哈的一生\",\n    \"author\": \"詹姆斯・瑟伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983644-9228c8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帕哈萨帕之歌\",\n    \"author\": \"肯特・纳尔本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983140-a2a003?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治动物\",\n    \"author\": \"里克・申克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国女孩\",\n    \"author\": \"王苇柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053208-116309?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术史：1940年至今天\",\n    \"author\": \"乔纳森・费恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物：我和父亲乔布斯\",\n    \"author\": \"丽莎・布伦南・乔布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的底色\",\n    \"author\": \"提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053025-11c135?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国政党与选举（牛津通识读本）\",\n    \"author\": \"桑迪・梅塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人与美国人\",\n    \"author\": \"徐国琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052743-2f01b0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拯救资本主义\",\n    \"author\": \"罗伯特・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052308-144997?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱尔兰人\",\n    \"author\": \"查尔斯・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051825-b70bae?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的亚里士多德\",\n    \"author\": \"莫提默・艾德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051708-d0a98b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出身：不平等的选拔与精英的自我复制\",\n    \"author\": \"劳伦·A·里韦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051546-baba5d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式谋杀\",\n    \"author\": \"迈克尔・道格拉斯卡林/罗素・普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低地\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051336-a76694?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国科学新闻精选套装\",\n    \"author\": \"《科学新闻》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞芳心小姐（守望者经典）\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051063-a08447?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简斯维尔\",\n    \"author\": \"艾米・戈德斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天将会不一样\",\n    \"author\": \"玛利亚・森普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050877-93c812?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式婚姻\",\n    \"author\": \"塔亚莉・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050862-f21a03?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回归商业常识\",\n    \"author\": \"麦克・霍夫林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回不去的旅人\",\n    \"author\": \"杰西・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050415-6b055d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富与权力\",\n    \"author\": \"诺姆・乔姆斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐秘战争\",\n    \"author\": \"阿里・拉伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向和平宣战\",\n    \"author\": \"罗南・法罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049848-3b94eb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白领：美国的中产阶级\",\n    \"author\": \"米尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049386-35756b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正义的代价\",\n    \"author\": \"劳伦斯・李默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤姆斯河\",\n    \"author\": \"丹・费金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾娃·拉文德奇异而美丽的忧伤\",\n    \"author\": \"蕾丝莱・沃顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048315-3325ba?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史（套装15册）\",\n    \"author\": \"哈罗德坦珀利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小城畸人\",\n    \"author\": \"舍伍德・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047148-e62f8e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转折时代\",\n    \"author\": \"茱莉亚・瓜尔内里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046326-8b0fec?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣与衰退\",\n    \"author\": \"艾伦・格林斯潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙无敌舰队\",\n    \"author\": \"加勒・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布、大航海时代与地理大发现\",\n    \"author\": \"约翰・S.C.阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸽羽（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045633-3b7458?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马人（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045564-f66b5b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣洁百合（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045435-80896e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运与狂怒\",\n    \"author\": \"劳伦・格罗夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045408-c43a32?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夫妇们（厄普代克作品）\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045300-60f287?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土之界\",\n    \"author\": \"希拉莉・乔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨西哥湾千里徒步行\",\n    \"author\": \"约翰・缪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子富了\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045186-124685?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子歇了\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045129-8b542b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子，跑吧\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045000-71d22e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子归来\",\n    \"author\": \"约翰・厄普代克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044880-adae9d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果木桌子及其他简记\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044877-c7b3c9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家安全局\",\n    \"author\": \"克劳德・德莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物的终结\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043734-88cbdf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流吧！我的眼泪\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042693-17f1fb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤比克\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042339-ab4228?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱迪克\",\n    \"author\": \"克丽丝・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041391-026711?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绑架风云\",\n    \"author\": \"大卫・I.科策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙丘六部曲\",\n    \"author\": \"弗兰克・赫伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040926-a4d303?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的流亡者\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲剧遭遇\",\n    \"author\": \"佩吉・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040260-bac7dc?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六舰\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰雪王国：美国军舰珍妮特号的极地远征\",\n    \"author\": \"汉普顿・塞兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040221-ed59c0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃普萧丑闻\",\n    \"author\": \"约翰・契弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039864-fe0768?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"根部之血：美国的一次种族清洗\",\n    \"author\": \"特里克・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩虹尽头\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039390-a9f532?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真名实姓\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039282-aee0e3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺丝在拧紧（译文经典）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039372-a73b97?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何，以及如何谋划一场火灾\",\n    \"author\": \"杰西・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039045-ac9204?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"絕望者之歌\",\n    \"author\": \"杰德・凡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的真谛\",\n    \"author\": \"路易吉・津加莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末世之城（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038598-b6383b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的呼唤\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038523-3217f5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在地图结束的地方（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038514-a54c28?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球飞船\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为奴十二年（译文经典）\",\n    \"author\": \"所罗门・诺瑟普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038358-15a854?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史迪威与美国在中国的经验（1911-1945）\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡瓦利与克雷的神奇冒险\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038055-ad70de?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚政进行曲\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室中的旅行（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037878-b5f9c7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜巴士\",\n    \"author\": \"梅雷迪斯・梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037812-224f59?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一声礼炮\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶之城\",\n    \"author\": \"大卫・贝瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037332-1f1148?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银的故事\",\n    \"author\": \"威廉・L.西尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037239-ead4cb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏油娃娃\",\n    \"author\": \"托妮・莫里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037164-700704?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业头条\",\n    \"author\": \"兰德尔・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Cell\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036906-9fb3a8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Benjamin Franklin\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036897-1a5d9e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嚣张的特权\",\n    \"author\": \"巴里・艾肯格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球使命\",\n    \"author\": \"亨利・H・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民粹主义大爆炸\",\n    \"author\": \"约翰・朱迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的客人\",\n    \"author\": \"塔娜・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亡者归来\",\n    \"author\": \"詹森・莫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035871-b3b323?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征途美国\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035796-7503bb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼作家\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035496-5bc64f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因何美妙而优雅地运行\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愤怒的葡萄\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035292-fafe32?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被释放的祖克曼\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035274-ec6a81?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格狂欢\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035217-ccde38?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"垂死的肉身\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035178-cb8804?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华氏451\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035076-d9ac4f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退场的鬼魂\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035064-53a301?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九月的十三天\",\n    \"author\": \"劳伦斯・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解剖课\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035028-a2b7ba?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国大外交（60周年增订版）\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034854-6a0ae2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲望教授\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034836-976ed6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乳房\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈克贝利·费恩历险记（读客经典）\",\n    \"author\": \"马克・吐温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034635-bafac9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束\",\n    \"author\": \"丹尼尔・凯斯/罗杰・泽拉兹尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034419-a7595b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷血\",\n    \"author\": \"杜鲁门・卡波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034077-79c03d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下鲍勃·迪伦与老美国\",\n    \"author\": \"格雷尔・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纯真年代（企鹅经典）\",\n    \"author\": \"伊迪丝・华顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033813-b518c2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（名著名译丛书）\",\n    \"author\": \"赫尔曼・梅尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033726-6ae4d3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的路径\",\n    \"author\": \"斯蒂芬・温克尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利维坦号战记（套装共4册）\",\n    \"author\": \"斯科特・维斯特菲尔德/基斯・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜色温柔（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033453-716b81?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心为身役：苏珊·桑塔格日记与笔记（1964-1980）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丽赛的故事\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033405-037d31?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚特兰蒂斯之心\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033399-aedb1b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕梦网\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033348-e0226f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11/22/63\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033240-8ee3ff?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿里\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴政\",\n    \"author\": \"提摩希・史奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033231-d43b3e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间里的痴人\",\n    \"author\": \"珍妮弗・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033180-e2b5a5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比（企鹅经典）\",\n    \"author\": \"F.S.菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总统班底\",\n    \"author\": \"卡尔・伯恩斯坦/鲍勃・伍德沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肖申克的救赎（纪念珍藏版）\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033099-81dc57?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常年代\",\n    \"author\": \"多莉丝・基恩斯・古德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的帝国\",\n    \"author\": \"约翰.S.戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编码宝典（全三册）\",\n    \"author\": \"尼尔・斯蒂芬森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032895-0e9ef5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富兰克林传\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分手信\",\n    \"author\": \"尼古拉斯・斯帕克思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032835-a16896?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之夏：美国独立的起源\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力：思无所限\",\n    \"author\": \"理查德·J.伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼与福尔摩斯\",\n    \"author\": \"戴维・格兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民蠢萌的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的转型\",\n    \"author\": \"诺姆・马格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一到无穷大（完整精修珍藏译本）\",\n    \"author\": \"乔治・伽莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦幻之地\",\n    \"author\": \"库尔特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032250-da0889?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都柏林的雨\",\n    \"author\": \"卡尔・盖瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032241-04972e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少数派报告\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032211-328213?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴别塔之犬\",\n    \"author\": \"卡罗琳・帕克丝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032178-12fb03?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字人文\",\n    \"author\": \"安妮·博迪克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·杰斐逊与海盗\",\n    \"author\": \"布莱恩・吉米德/唐・耶格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾米丽的一朵玫瑰\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032145-b37d53?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愤怒的葡萄（译文名著精选）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032013-d0d355?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煎饼坪（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031713-7bf0a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小红马（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"链接未找到\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮下去了（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031368-763178?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为妮可\",\n    \"author\": \"艾米・埃利斯・纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢学\",\n    \"author\": \"托马斯・品钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031233-027c9c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首届国会\",\n    \"author\": \"弗格斯·M.博德韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"房奴\",\n    \"author\": \"戴维・戴恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网与石（套装共2册）\",\n    \"author\": \"托马斯・沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030513-f4512b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温柔的正义\",\n    \"author\": \"琳达・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被掩盖的原罪\",\n    \"author\": \"爱德华・巴普蒂斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廉价的代价\",\n    \"author\": \"拉杰・帕特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029697-5b7480?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国陷阱\",\n    \"author\": \"弗雷德里克・皮耶鲁齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桑德堡诗选\",\n    \"author\": \"卡尔・桑德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029511-e8bfc2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的美国\",\n    \"author\": \"珍妮・拉斯卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷忙\",\n    \"author\": \"戴维・希普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纽约三部曲（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029091-7d5ea9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永别了，武器（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029100-d7f57e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国内战回忆录（上下册）\",\n    \"author\": \"U.S.格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029088-94aa48?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞缪尔·亨廷顿经典著作集（套装4册）\",\n    \"author\": \"塞缪尔・亨廷顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029049-0daa60?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我嫁给了一个死人\",\n    \"author\": \"康奈尔・伍尔里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028947-dc320b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平等之路\",\n    \"author\": \"迈克尔·J.克拉曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔霍恩文集（上、下）\",\n    \"author\": \"约翰·C.卡尔霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万国一邦\",\n    \"author\": \"托马斯・本德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028398-a4da09?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过剩之地\",\n    \"author\": \"莫妮卡・普拉萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庶出的标志\",\n    \"author\": \"弗拉基米尔・纳博科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027663-0f6f2f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密西西比\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027534-c6bd4e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识（译文经典）\",\n    \"author\": \"托马斯・潘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搏击俱乐部\",\n    \"author\": \"恰克・帕拉尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027441-67fe4b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种走法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027432-29294c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱（2016版）\",\n    \"author\": \"托妮・莫里森\",\n    \"link\": \"链接未找到\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命绑架\",\n    \"author\": \"T.R.蕾根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027393-6fd896?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惡血\",\n    \"author\": \"約翰・凱瑞魯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027258-867926?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻影书（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026946-7a477b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当图书进入战争\",\n    \"author\": \"莫里・古皮提尔・曼宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪的合众国\",\n    \"author\": \"帕梅拉・哈格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026259-12b415?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃鲷鱼让我打嗝\",\n    \"author\": \"杰西・艾森伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025704-728b29?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁偷走了美国梦\",\n    \"author\": \"赫德里克・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025536-ab13ba?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国增长的起落\",\n    \"author\": \"罗伯特・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025557-5fe21b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国秩序的根基\",\n    \"author\": \"拉塞尔・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Litigators\",\n    \"author\": \"John Grisham\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025254-c952a1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为\",\n    \"author\": \"米歇尔・罗宾逊・奥巴马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025125-c91f09?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯南日记\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒲公英醇夏\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024867-dd3818?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女勇士\",\n    \"author\": \"汤亭亭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024768-569cc0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血色子午线\",\n    \"author\": \"科马克・麦卡锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024720-04f5eb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家、水手、士兵、间谍\",\n    \"author\": \"尼古拉斯・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞芳心小姐\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024618-6365f1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式幸福\",\n    \"author\": \"亚瑟·C.布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论美国的民主（套装共4册）\",\n    \"author\": \"亚力克西·德·托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024132-df8a85?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱暗流\",\n    \"author\": \"简・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国创世记：埃利斯建国史系列（套装共4册）\",\n    \"author\": \"约瑟夫·J.埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们眼望上苍\",\n    \"author\": \"佐拉・尼尔・赫斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023859-28feb0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启人\",\n    \"author\": \"艾米・亭特拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023616-224cdd?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克里斯汀\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023559-14c275?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔比恩的种子\",\n    \"author\": \"大卫・哈克特・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽然七日\",\n    \"author\": \"劳伦・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023253-db0f49?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级连接者\",\n    \"author\": \"伊桑・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Paris in the Present Tense\",\n    \"author\": \"Mark Helprin\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023049-ffc255?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞跃5000年\",\n    \"author\": \"克里昂・斯考森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都发狂了\",\n    \"author\": \"凯伦・乔伊・富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022860-956833?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥美国史\",\n    \"author\": \"苏珊・玛丽・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022683-97bf54?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野性的呼唤\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022581-919f29?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一念桃花源\",\n    \"author\": \"比尔・波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022563-9a7313?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Selected Stories of Philip K. Dick\",\n    \"author\": \"Dick, Philip K.; Lethem, Jonathan;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022257-b9df83?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国年度畅销悬疑小说精选集\",\n    \"author\": \"詹姆斯・哈金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022215-cfbe40?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的人（译文经典）\",\n    \"author\": \"威廉・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚裔美国的创生\",\n    \"author\": \"李漪莲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Little Fires Everywhere\",\n    \"author\": \"Celeste Ng\",\n    \"link\": \"链接未找到\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国梦\",\n    \"author\": \"斯塔兹・特克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扫地出门：美国城市的贫穷与暴利\",\n    \"author\": \"马修・德斯蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Our Kids\",\n    \"author\": \"Robert D. Putnam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人之妻\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双峰：最终档案\",\n    \"author\": \"马克・弗罗斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021081-3ab4dd?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼辞典\",\n    \"author\": \"安布罗斯・比尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020925-e0b984?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛通识教育红皮书\",\n    \"author\": \"哈佛委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020907-daf2ca?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美风暴\",\n    \"author\": \"迈克尔・莫雷尔/比尔・哈洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020889-6c92fe?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的真相\",\n    \"author\": \"大卫・兰德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020793-75b8cb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喧哗与骚动\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020775-4c22b6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自12个星球的敌人\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020703-2a774b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苹果酒屋的规则\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020694-be7e51?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密金鱼\",\n    \"author\": \"大卫・米恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020652-6cea44?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"To Kill A Mockingbird\",\n    \"author\": \"哈珀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020610-1f978d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉密尔顿传\",\n    \"author\": \"罗恩・彻诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020625-ed77e3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美联储的诞生\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪的总统\",\n    \"author\": \"比尔・克林顿/詹姆斯・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020400-df3adb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"换心\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020223-e95fa1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯恩舰哗变\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020208-a68269?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥吉·马奇历险记（企鹅经典）\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020052-f63c2b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烟雾弥漫你的眼\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020016-418bb3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力之路：林登·约翰逊传\",\n    \"author\": \"罗伯特・A.卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁丢了美国\",\n    \"author\": \"安德鲁・杰克逊・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019956-8834da?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小小小小的火\",\n    \"author\": \"伍绮诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019566-1aaf84?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盖普眼中的世界\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条与罗斯福新政\",\n    \"author\": \"埃里克・劳赫威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白噪音\",\n    \"author\": \"唐・德里罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019245-efeee7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国建国史系列（套装全3册）\",\n    \"author\": \"约瑟夫・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019095-53ad54?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华盛顿国家艺术馆\",\n    \"author\": \"罗萨娜・乔尔吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姐姐的守护者\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018414-c586fb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二怒汉\",\n    \"author\": \"雷金纳德・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018195-04e94b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗落的南境（套装共3册）\",\n    \"author\": \"杰夫・范德米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017925-e0c5a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星编年史\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017820-1ccbf2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者2：反叛者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017793-8fd6cd?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者3：忠诚者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017790-3ab567?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"识骨女法医\",\n    \"author\": \"肯德拉・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017739-a00298?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寓言\",\n    \"author\": \"威廉・福克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017493-1b3020?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安德的游戏三部曲\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017406-384a04?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻的心在哭泣\",\n    \"author\": \"理查德・耶茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017271-7feab1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被仰望与被遗忘的\",\n    \"author\": \"盖伊・特立斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016455-8ba51c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜漫漫路迢迢\",\n    \"author\": \"尤金・奥尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016038-fb4be7?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群鸟飞舞的世界末日\",\n    \"author\": \"查莉・简・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015921-312cfa?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联邦论：美国宪法评述\",\n    \"author\": \"亚历山大・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济奇点\",\n    \"author\": \"史蒂文・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015492-0b15f1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解说疾病的人\",\n    \"author\": \"裘帕・拉希莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015408-005737?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天过得怎么样\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015108-00eb73?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不适之地\",\n    \"author\": \"裘帕・拉希利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014985-9e6283?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国种族简史\",\n    \"author\": \"托马斯・索威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白鲸（译文名著典藏）\",\n    \"author\": \"赫尔曼・麦尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013803-9f3bf0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国定型：美国的1890～1900\",\n    \"author\": \"徐弃郁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013650-529c52?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经漫游者\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013500-119668?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精酿啤酒革命\",\n    \"author\": \"史蒂夫・欣迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳底下的新鲜事\",\n    \"author\": \"约翰・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管家\",\n    \"author\": \"玛丽莲・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012600-1fdf69?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假如明天来临\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012417-3590de?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭顶之灾\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012426-b28838?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜子里的陌生人\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012408-160c95?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祸起萧墙\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012396-eaa984?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸面\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012078-b2add2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二十二条军规（纪念版）\",\n    \"author\": \"约瑟夫・海勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011919-31c86e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上的最后一天\",\n    \"author\": \"卡米尔・佩简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011763-477c20?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国的崩溃与美国的诞生\",\n    \"author\": \"尼克・邦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011766-64bb06?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡暗黑故事全集（上册）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011532-a09ea4?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠夫十字镇\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011511-06936a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由\",\n    \"author\": \"乔纳森・弗兰岑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011283-cb0e40?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独居的一年\",\n    \"author\": \"约翰・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010776-6affa0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你绝对不知道的美国独立秘史\",\n    \"author\": \"何畏岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010698-8fdefe?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯通纳\",\n    \"author\": \"约翰・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010497-2da934?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的技艺：塔奇曼论历史\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚鸟\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009828-d819d2?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝与黄金\",\n    \"author\": \"沃尔特・拉塞尔・米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的绵羊\",\n    \"author\": \"威廉・德雷谢维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的图书馆\",\n    \"author\": \"司各特・霍金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009051-91771d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛普森何以逍遥法外？\",\n    \"author\": \"文森特・布廖西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008964-ad44de?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮光之城（豪华珍藏套装）\",\n    \"author\": \"斯蒂芬妮・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008949-e8803d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩论：美国制宪会议记录\",\n    \"author\": \"詹姆斯・麦迪逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国众神（十周年作者修订版）\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008802-e10699?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘉莉妹妹\",\n    \"author\": \"西奥多・德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008712-177f57?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晃来晃去的人\",\n    \"author\": \"索尔・贝娄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008463-5b54a8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变美国的时刻\",\n    \"author\": \"刘戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大法官说了算\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合理的怀疑\",\n    \"author\": \"德肖维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下铁道\",\n    \"author\": \"科尔森・怀特黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十层地狱\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008106-e60331?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒的终结\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007860-8793c1?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马丁·伊登（译文名著精选）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007722-8c323e?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声告白\",\n    \"author\": \"伍绮诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007752-de9648?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光荣与梦想（套装共4册）\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降临\",\n    \"author\": \"特德・姜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007533-b1388b?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难一日：海豹六队击毙本・拉登行动亲历\",\n    \"author\": \"马克・欧文/凯文・莫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说故事的人\",\n    \"author\": \"朱迪・皮考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007407-3d5566?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CIA美国中央情报局全传\",\n    \"author\": \"亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的分裂：美国独立战争的起源\",\n    \"author\": \"郑非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白宫岁月：基辛格回忆录（套装共4册）\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进步时代\",\n    \"author\": \"张国庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国是个大公司\",\n    \"author\": \"闵纬国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上书店\",\n    \"author\": \"加布瑞埃拉·泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006963-ca71a3?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海伯利安四部曲（套装共4册）\",\n    \"author\": \"丹·西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006975-c613a8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星崛起\",\n    \"author\": \"皮尔斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006954-0482f0?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水手比利·巴德\",\n    \"author\": \"赫尔曼・梅尔维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006942-b622ce?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融帝国：美国金融霸权的来源和基础\",\n    \"author\": \"迈克尔·赫德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅与摩托车维修艺术\",\n    \"author\": \"罗伯特·M.波西格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫眼看美国\",\n    \"author\": \"聂平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民寂寞的美国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006432-89cb5c?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地海传奇六部曲\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国最高法院通识读本\",\n    \"author\": \"琳达・格林豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲美国史\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005301-9fa40d?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"修配工\",\n    \"author\": \"伯纳德・马拉默德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004899-b12544?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简美国史\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866\",\n    \"category\": \"美国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国史\",\n    \"author\": \"郑寅达/陈旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国\",\n    \"author\": \"易强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球帝国史\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：帝国三部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009324-3d749b?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从这里读懂第三帝国（套装共8册）\",\n    \"author\": \"齐格蒙・鲍曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的分裂：美国独立战争的起源\",\n    \"author\": \"郑非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个世界帝国及其西征系列（共三册）\",\n    \"author\": \"布赖恩・莱弗里/汤姆・霍兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866\",\n    \"category\": \"帝国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋与汉道\",\n    \"author\": \"陈苏镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997624-363d35?p=8866\",\n    \"category\": \"秦汉史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦汉帝国\",\n    \"author\": \"西嶋定生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053790-cd6e5d?p=8866\",\n    \"category\": \"秦汉史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制造汉武帝\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030171-cabd6a?p=8866\",\n    \"category\": \"秦汉史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦三部曲\",\n    \"author\": \"吕世浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008274-748b98?p=8866\",\n    \"category\": \"秦汉史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷兰海洋帝国史\",\n    \"author\": \"顾卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866\",\n    \"category\": \"海洋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从航海图到世界史\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866\",\n    \"category\": \"海洋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的海（全2册）\",\n    \"author\": \"大卫・阿布拉菲亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866\",\n    \"category\": \"海洋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季风帝国\",\n    \"author\": \"理查德・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866\",\n    \"category\": \"海洋史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日46：东京就是日本！\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047952-aa1e1c?p=8866\",\n    \"category\": \"知日\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日52：BGM之魂\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047412-210b95?p=8866\",\n    \"category\": \"知日\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日40：步履不停，是枝裕和\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031917-82a810?p=8866\",\n    \"category\": \"知日\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一名脱口秀老手\",\n    \"author\": \"格雷格・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866\",\n    \"category\": \"段子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的聪明人太多了，我必须为笨蛋争口气！\",\n    \"author\": \"书单狗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866\",\n    \"category\": \"段子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸检报告\",\n    \"author\": \"卡拉・瓦伦丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987277-fccf1c?p=8866\",\n    \"category\": \"死亡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好告别\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866\",\n    \"category\": \"死亡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"To Be a Machine\",\n    \"author\": \"Mark O'Connell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027078-09d6c7?p=8866\",\n    \"category\": \"死亡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当呼吸化为空气\",\n    \"author\": \"保罗・卡拉尼什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866\",\n    \"category\": \"死亡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意观察\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866\",\n    \"category\": \"观察\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞察：精确观察和有效沟通的艺术\",\n    \"author\": \"艾米・赫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866\",\n    \"category\": \"观察\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少女，请回答\",\n    \"author\": \"张晓晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866\",\n    \"category\": \"女生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我很好啊，你怎么样\",\n    \"author\": \"莎拉・安徒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017538-a3c7eb?p=8866\",\n    \"category\": \"女生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和国科学拓荒者传记（套装共9册）\",\n    \"author\": \"许鹿希等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020856-bcb915?p=8866\",\n    \"category\": \"科学家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方心理学大师经典译丛（套装共11册）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497529-0e8c3b?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的脑科学\",\n    \"author\": \"阿马尔・阿尔查拉比等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克尔凯郭尔文集10册大全集\",\n    \"author\": \"索伦・克尔凯郭尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502005-543a3e?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"警惕你身边的隐形攻击者\",\n    \"author\": \"斯科特・韦茨勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511743-14d32a?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际漫游\",\n    \"author\": \"安东尼诺・费罗/卢卡・尼科里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512055-d87567?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了解人类行为的50个心理学实验\",\n    \"author\": \"迈克尔・布里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512133-fafea6?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追寻记忆的痕迹\",\n    \"author\": \"埃里克・坎德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513372-90244d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学和炼金术\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997351-cfc659?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学树\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996457-a27c1e?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"移情心理学\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995587-b19864?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炼金术之梦\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学：我们内心的小怪兽\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982495-f2c164?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与情商\",\n    \"author\": \"张小宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍心理战\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051054-2aab9d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发展心理学套装（第10版）\",\n    \"author\": \"戴安娜・帕帕拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050526-22b5f0?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉心理学\",\n    \"author\": \"博・洛托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046674-506c48?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挫折复原力\",\n    \"author\": \"丹尼斯・穆蓝纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简捷启发式：有限理性让我们更聪明\",\n    \"author\": \"格尔德・吉仁泽等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意观察\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极计算\",\n    \"author\": \"拉斐尔·A.卡里罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助推（实践版）\",\n    \"author\": \"戴维・哈尔彭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043941-cd894d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你也是蘑菇吗\",\n    \"author\": \"安定医院郝医生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043701-0683a6?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜意识与决策\",\n    \"author\": \"克里斯・佩利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043596-28e35d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我与本我（译文经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱、罪疚与修复\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037749-b31208?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童精神分析\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037638-0eb9b3?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弥散的心智\",\n    \"author\": \"里卡多・曼佐蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣母病\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036471-8907eb?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Everything Is F*cked\",\n    \"author\": \"Mark Manson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控谈话\",\n    \"author\": \"克里斯・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不分心\",\n    \"author\": \"亚历克斯・索勇－金・庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033558-d65235?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才在左，疯子在右\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超强掌控\",\n    \"author\": \"乔・纳瓦罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033123-432c00?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在群中\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033090-248e22?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放你的大脑\",\n    \"author\": \"伊德里斯・阿贝尔坎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消极情绪的力量\",\n    \"author\": \"托德・卡什丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象思维\",\n    \"author\": \"帕甘・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖：一项心理史学研究\",\n    \"author\": \"查尔斯・B．斯特罗齐尔/丹尼尔・奥弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜脑：在睡眠中自动学习的秘密\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见成长的自己\",\n    \"author\": \"卡罗尔・徳韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014046-66564e?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉花糖实验\",\n    \"author\": \"沃尔特・米歇尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009000-8191ee?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"P.E.T.父母效能训练\",\n    \"author\": \"托马斯・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通的艺术\",\n    \"author\": \"罗纳德・阿德勒/拉塞尔・普罗克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力四射：如何打动、亲近和影响他人\",\n    \"author\": \"帕特里克・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稀缺：我们是如何陷入贫穷与忙碌的\",\n    \"author\": \"塞德希尔・穆来纳森 / 埃尔德・沙菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆谱：身份的潜规则\",\n    \"author\": \"余不讳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考，快与慢\",\n    \"author\": \"丹尼尔・卡尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都聊得来\",\n    \"author\": \"迈克・贝克特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼看懂小孩子\",\n    \"author\": \"王勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厚黑学大全集\",\n    \"author\": \"李宗吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005253-80c12a?p=8866\",\n    \"category\": \"心理学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年（全新增订版）\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866\",\n    \"category\": \"耶路撒冷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷告白\",\n    \"author\": \"利皮卡・佩拉汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866\",\n    \"category\": \"耶路撒冷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清史九讲\",\n    \"author\": \"内藤湖南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995440-976d6f?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：康有为与章太炎（全二册）\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的铁骑\",\n    \"author\": \"刘澍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051048-0840f0?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马背上的朝廷\",\n    \"author\": \"张勉治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048699-77f374?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代丝绸之路的绝唱\",\n    \"author\": \"罗三洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045555-39eb63?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朕知道了\",\n    \"author\": \"傅淞岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇权不下县？\",\n    \"author\": \"胡恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041118-0a5ee2?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清中国的光与影\",\n    \"author\": \"杜德维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035868-bc3e37?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正帝：中国的独裁君主\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之痒\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国\",\n    \"author\": \"乔治·N.赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033150-8be846?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"垂帘听政\",\n    \"author\": \"向斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030708-e6f8d1?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宁波帮\",\n    \"author\": \"王千马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029250-02851b?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年羹尧之死\",\n    \"author\": \"郑小悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027813-3994d1?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凛冬\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆皇帝的荷包\",\n    \"author\": \"赖惠敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023247-014af6?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清朝开国史（上下卷）\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008889-dcadfa?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的中华帝国：大清\",\n    \"author\": \"罗威廉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008694-c9f404?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洪业：清朝开国史\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008280-fe79e7?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戊戌变法史\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866\",\n    \"category\": \"清史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇故事集\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493806-5ad7eb?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤汤奇幻童年故事本（套装6册）\",\n    \"author\": \"汤汤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜利特医生的历险故事（套装共12册）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498603-bd23d3?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物小说大王沈石溪·品藏书系（升级版）（套装36册）\",\n    \"author\": \"沈石溪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499866-7f7659?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的天工开物·绘本版（全三册）\",\n    \"author\": \"一页书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周锐幽默三国、西游记、水浒传、红楼梦系列套装4本\",\n    \"author\": \"周锐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985975-9f41e8?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗物质三部曲\",\n    \"author\": \"菲利普・普尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅格时空大冒险（套装全5册）\",\n    \"author\": \"马德琳・英格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童教育心理学\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不同的音调\",\n    \"author\": \"约翰・唐文/凯伦・祖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21招，让孩子独立\",\n    \"author\": \"叶壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040317-3e999a?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱、罪疚与修复\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037749-b31208?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童精神分析\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037638-0eb9b3?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童分析的故事\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫怪兽（套装共3册）\",\n    \"author\": \"常怡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037149-71d4a1?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫉羡与感恩\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾拉·格雷的歌\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟随周恩来过草地\",\n    \"author\": \"张文宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032232-26530e?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造梦师（套装共4册）\",\n    \"author\": \"陈佳同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032256-0c0e76?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪医杜立德（果麦经典）\",\n    \"author\": \"休・洛夫廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"365夜故事：春夏秋冬（套装共4册）\",\n    \"author\": \"叶圣陶/赵冰波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027690-6c12c9?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿堂风\",\n    \"author\": \"曹文轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024801-ced57d?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞女孩\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿野仙踪\",\n    \"author\": \"莱曼・弗兰克・鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023013-03a6a2?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥吉和我\",\n    \"author\": \"帕拉西奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020976-b53ede?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也有过小时候\",\n    \"author\": \"任溶溶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020673-497c78?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝境狼王（全6册）\",\n    \"author\": \"凯瑟琳・拉丝基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017742-595b13?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯吉斯野外生存系列（套装四册）\",\n    \"author\": \"桑顿・伯吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前有条喷火龙（第一辑）\",\n    \"author\": \"凯特・麦克马伦/比尔・巴索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏洛书屋电子书大套装（套装共27本）\",\n    \"author\": \"Digital Lab\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015618-ef6dd5?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游戏力\",\n    \"author\": \"劳伦斯・科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014142-23eb93?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林汉达中国故事经典套装（图文版）\",\n    \"author\": \"林汉达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010947-e40f70?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兔子共和国（果麦经典）\",\n    \"author\": \"理查德・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008853-deb5e3?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好心眼儿巨人\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生少年生存小说系列（全6册）\",\n    \"author\": \"贝尔·格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完整的成长：儿童生命的自我创造\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁拿走了孩子的幸福\",\n    \"author\": \"李跃儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866\",\n    \"category\": \"儿童\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九宫格写作法\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡片笔记写作法\",\n    \"author\": \"申克・阿伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效论证\",\n    \"author\": \"大卫・莫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顿悟的时刻\",\n    \"author\": \"张悦然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002361-5fc211?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效写作的秘密\",\n    \"author\": \"杰拉尔德・格拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001641-466852?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构化写作\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款文案写作指南\",\n    \"author\": \"李洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款写作\",\n    \"author\": \"陈阿咪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000342-ae106c?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何写出一篇好文章\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995383-8fa7c9?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效写作\",\n    \"author\": \"芝本秀德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995110-b7a712?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案的基本修养\",\n    \"author\": \"东东枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好文案会说话\",\n    \"author\": \"梅田悟司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能学会的刷屏文案写作技巧\",\n    \"author\": \"吕白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案基本功\",\n    \"author\": \"苏芯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学课\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986485-1c1bd5?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作力\",\n    \"author\": \"高语罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作的诞生\",\n    \"author\": \"多萝西娅・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983179-258589?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简写作\",\n    \"author\": \"罗伊・彼得・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054480-b67e25?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样写故事\",\n    \"author\": \"莉萨・克龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午5：有人送我西兰花\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052992-b766ed?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写出娱乐的力量\",\n    \"author\": \"貴志祐介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052950-ffb7f3?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午6：旧山河，新故事\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力思维\",\n    \"author\": \"安东尼・塔斯加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非虚构写作指南\",\n    \"author\": \"李梓新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046785-ed2ee0?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快书写，慢思考\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045027-424d69?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唤醒创作力\",\n    \"author\": \"朱莉娅・卡梅伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说的八百万种写法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039474-4b3e24?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会写作\",\n    \"author\": \"粥左罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极速写作\",\n    \"author\": \"剑飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书就是一个喷嚏\",\n    \"author\": \"杰克・格罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033873-d0d32c?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写小说最重要的十件事\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033486-6785a3?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作提高一点点\",\n    \"author\": \"玛丽-凯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033330-7c6a2b?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短篇小说写作指南\",\n    \"author\": \"美国《作家文摘》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作课\",\n    \"author\": \"叶开\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030036-d3ec1e?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家的灵感宝库\",\n    \"author\": \"弗雷德・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030024-32c3ab?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛非虚构写作课：怎样讲好一个故事\",\n    \"author\": \"马克・克雷默/温迪・考尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027537-a21903?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"童书写作指南\",\n    \"author\": \"玛丽・科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026970-0605e8?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作全技术\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025719-d465f4?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体文案创作与传播\",\n    \"author\": \"秋叶/叶小鱼/勾俊伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语写作手册：风格的要素\",\n    \"author\": \"威廉・斯特伦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作是最好的自我投资\",\n    \"author\": \"Spenser\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023547-075742?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作这门手艺\",\n    \"author\": \"约翰・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023196-9d8958?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完全写作指南\",\n    \"author\": \"劳拉・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自媒体写作\",\n    \"author\": \"余老诗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023055-a42878?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说的骨架\",\n    \"author\": \"凯蒂・维兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022875-616a5b?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Sense of Style\",\n    \"author\": \"Steven Pinker\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021594-60f68e?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风格感觉：21世纪写作指南\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020082-efde84?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文案创作完全手册\",\n    \"author\": \"罗伯特・布莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意写作书系·走进大师（套装18册全）\",\n    \"author\": \"杰里・克利弗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017733-0f8010?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七十二堂写作课\",\n    \"author\": \"夏丏尊/叶圣陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017064-cd4bac?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说课（大家读大家）\",\n    \"author\": \"毕飞宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016464-4c0336?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不畅销小说写作指南\",\n    \"author\": \"大头马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015129-764c03?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的红色写作书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012708-71ba79?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情节与人物\",\n    \"author\": \"杰夫・格尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011055-c9592f?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样写出好故事\",\n    \"author\": \"詹姆斯・斯科特・贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011034-28e8b6?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典人物原型45种\",\n    \"author\": \"维多利亚・林恩・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师们的写作课：好文笔是读出来的\",\n    \"author\": \"舒明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008586-9602d1?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作，打造个人IP，成就企业品牌\",\n    \"author\": \"陈志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866\",\n    \"category\": \"写作\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌物志\",\n    \"author\": \"斑斑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一读就上瘾的中国史\",\n    \"author\": \"温伯陵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001608-8e9514?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物发明指南\",\n    \"author\": \"瑞安・诺思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖24：啊！又想吃零食了\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原来你是这样的古人\",\n    \"author\": \"郁馥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037347-cb95ad?p=8866\",\n    \"category\": \"有趣\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所有工具都是锤子\",\n    \"author\": \"亚当・萨维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490995-fea1f0?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙时代：颠覆未来的技术变革与商业图景\",\n    \"author\": \"金相允\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491193-14b1ac?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工不智能\",\n    \"author\": \"梅瑞狄斯・布鲁萨德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491643-5332a8?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术陷阱\",\n    \"author\": \"卡尔・贝内迪克特・弗雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙通证\",\n    \"author\": \"邢杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499134-ab1e5c?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无隐私时代\",\n    \"author\": \"阿奇科・布希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508872-0496be?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密Instagram\",\n    \"author\": \"莎拉・弗莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工具，还是武器？\",\n    \"author\": \"布拉德・史密斯/卡罗尔・安・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史：打开人类进步的黑匣子\",\n    \"author\": \"赵炎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991702-bc1ee7?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人驾驶\",\n    \"author\": \"胡迪・利普森/梅尔芭・库曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983344-4b5bf8?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的行为\",\n    \"author\": \"托马斯・科洛波洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"治愈未来\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代，你的工作还好吗？\",\n    \"author\": \"渠成/陈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷简史\",\n    \"author\": \"钱纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：经济增长新引擎\",\n    \"author\": \"孙松林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代：生活方式和商业模式的大变革\",\n    \"author\": \"龟井卓也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“芯”想事成\",\n    \"author\": \"陈芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技失控\",\n    \"author\": \"温德尔・瓦拉赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中美科技巨头\",\n    \"author\": \"田中道昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044898-522abf?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极计算\",\n    \"author\": \"拉斐尔·A.卡里罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑动解锁\",\n    \"author\": \"尼尔・梅塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来版图\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极限创新\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奔腾年代：互联网与中国：1995-2018\",\n    \"author\": \"郭万盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040287-28d2ae?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅3\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷帝国\",\n    \"author\": \"露西・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷人的材料\",\n    \"author\": \"马克・米奥多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"18个未来进行时\",\n    \"author\": \"吉姆・阿尔- 哈里里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5G时代\",\n    \"author\": \"项立刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器人共舞\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主食芯片\",\n    \"author\": \"鸿涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032313-6abb7f?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说出来你可能不信\",\n    \"author\": \"SME\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032043-e62957?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球科技通史\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031734-3f4ae5?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交媒体简史\",\n    \"author\": \"汤姆・斯丹迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特斯拉传\",\n    \"author\": \"哈米什・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏血：一个硅谷巨头的秘密与谎言\",\n    \"author\": \"约翰・卡雷鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子世界的发现之旅\",\n    \"author\": \"迈克尔・S. 沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老科技的全球史\",\n    \"author\": \"大卫・艾杰顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027402-7317b9?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码朋克\",\n    \"author\": \"朱利安・阿桑奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维如何与互联网共同进化\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容算法\",\n    \"author\": \"闫泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器70年\",\n    \"author\": \"徐曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷百年史\",\n    \"author\": \"阿伦・拉奥/皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塑造世界经济的50项伟大发明\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技前哨\",\n    \"author\": \"王煜全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020316-b05dfb?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代的教育革命\",\n    \"author\": \"王作冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019908-719008?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控未来系列（套装共6册）\",\n    \"author\": \"伊藤穰一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018420-d99af9?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新：重新发现商业与未来\",\n    \"author\": \"萨提亚・纳德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017295-014e5b?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技的狂欢\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016656-d1cdf6?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能浪潮\",\n    \"author\": \"布雷特・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015984-23b495?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极复制\",\n    \"author\": \"李智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代的互联网\",\n    \"author\": \"汤姆・斯坦迪奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻璃笼子\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类2.0：在硅谷探索科技未来\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Elon Musk\",\n    \"author\": \"Ashlee Vance\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代\",\n    \"author\": \"杰瑞・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009093-321621?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新一轮产业革命\",\n    \"author\": \"亚力克・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷钢铁侠\",\n    \"author\": \"阿什利・万斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866\",\n    \"category\": \"科技\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人四千年（全两册）\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人三千年简史\",\n    \"author\": \"雷蒙德・P.谢德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列总理私人史\",\n    \"author\": \"耶胡达・阿夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512085-4d09ea?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独霸中东\",\n    \"author\": \"雅科夫・卡茨/阿米尔・鲍博特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绑架风云\",\n    \"author\": \"大卫・I.科策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶意之山\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033504-13c2d3?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列：一个民族的重生\",\n    \"author\": \"丹尼尔・戈迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030108-c2ca36?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱与黑暗的故事\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023226-44689c?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡村生活图景\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023187-1ce16f?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一样的海\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023175-088266?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个故事，就这样啦\",\n    \"author\": \"埃特加・凯雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020973-3979ae?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为你，耶路撒冷\",\n    \"author\": \"拉莱・科林斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017211-3712a8?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列：一个国家的诞生（1-3 合辑）\",\n    \"author\": \"十一点半\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015771-29d4ce?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的应许之地\",\n    \"author\": \"阿里・沙维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴行动\",\n    \"author\": \"乔治・乔纳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005826-867b8f?p=8866\",\n    \"category\": \"以色列\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响商业的50本书\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的怪圈\",\n    \"author\": \"贾森・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信托的逻辑\",\n    \"author\": \"道远/周萍/翁两民/贺洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049104-f15eba?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业冒险\",\n    \"author\": \"约翰・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压力测试\",\n    \"author\": \"蒂莫西・盖特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济增长的迷雾\",\n    \"author\": \"威廉・伊斯特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一大亨（套装共2册）\",\n    \"author\": \"斯泰尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014319-72a8ef?p=8866\",\n    \"category\": \"财经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君主论（果麦经典）\",\n    \"author\": \"尼科洛・马基雅维利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六韬（全本全注全译）\",\n    \"author\": \"陈曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力48法则\",\n    \"author\": \"罗伯特・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝皇书（共5册）\",\n    \"author\": \"星零\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045624-5670f9?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五大传奇权谋人物传记（套装共5册）\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866\",\n    \"category\": \"权谋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑之门\",\n    \"author\": \"理查德・阿尔德里奇/罗里・科马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866\",\n    \"category\": \"情报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国情报界\",\n    \"author\": \"杰弗瑞・理查尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866\",\n    \"category\": \"情报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美风暴\",\n    \"author\": \"迈克尔・莫雷尔/比尔・哈洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020889-6c92fe?p=8866\",\n    \"category\": \"情报\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（企鹅经典）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033369-82ddd0?p=8866\",\n    \"category\": \"狄更斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾都孤儿（经典译林）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005643-ae482c?p=8866\",\n    \"category\": \"狄更斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李·斯莫林讲量子引力\",\n    \"author\": \"李・斯莫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493503-da4a48?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子空间\",\n    \"author\": \"吉姆・巴戈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·量子探秘系列（新版套装共5册）\",\n    \"author\": \"布鲁斯・罗森布鲁姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037227-c08bef?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无中生有的世界\",\n    \"author\": \"吴京平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邀你共进量子早餐\",\n    \"author\": \"索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量子世界的发现之旅\",\n    \"author\": \"迈克尔・S. 沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子讲量子力学\",\n    \"author\": \"李淼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现实不似你所见\",\n    \"author\": \"卡洛・罗韦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝掷骰子吗\",\n    \"author\": \"曹天元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘的量子生命\",\n    \"author\": \"吉姆・艾尔/约翰乔・麦克法登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866\",\n    \"category\": \"量子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧·亨利短篇小说精选（读客经典）\",\n    \"author\": \"欧・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034014-51fe85?p=8866\",\n    \"category\": \"欧亨利\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西周的灭亡（增订本）\",\n    \"author\": \"李峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866\",\n    \"category\": \"先秦史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燕国八百年\",\n    \"author\": \"彭华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029868-03d746?p=8866\",\n    \"category\": \"先秦史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承袭的权力\",\n    \"author\": \"乔瓦尼・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996505-07420a?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字起源\",\n    \"author\": \"凯莱布・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的旅程\",\n    \"author\": \"斯宾塞・韦尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌与钢铁（修订版）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败：人性与文化\",\n    \"author\": \"克里斯・肖尔/迪特尔・哈勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类成功统治地球的秘密\",\n    \"author\": \"约瑟夫・亨里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金泽：江南民间祭祀探源\",\n    \"author\": \"李天纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的起源\",\n    \"author\": \"理查德・利基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048492-6ce106?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史（修订珍藏版）\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041145-b13043?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类起源的故事\",\n    \"author\": \"大卫・赖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的肚脐\",\n    \"author\": \"迈克尔・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从祖先到算法\",\n    \"author\": \"亚历克斯・本特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的亲密关系\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大局观从何而来\",\n    \"author\": \"罗宾・邓巴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲与没有历史的人\",\n    \"author\": \"埃里克·R.沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯化\",\n    \"author\": \"艾丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸猿三部曲（裸猿+人类动物园+亲密行为）\",\n    \"author\": \"德斯蒙德·莫利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866\",\n    \"category\": \"人类学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尺素风雅：近世文人书札\",\n    \"author\": \"管继平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997939-7912c7?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷2）\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990103-846409?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以赛亚·伯林书信集（卷1）\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈保尔家书\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱你就像爱生命\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国家书\",\n    \"author\": \"本杰明・富兰克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"见字如面\",\n    \"author\": \"关正文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013293-3fec78?p=8866\",\n    \"category\": \"书信\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉多纳自传\",\n    \"author\": \"迭戈・阿曼多・马拉多纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999238-9530a8?p=8866\",\n    \"category\": \"足球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆里尼奥传：葡萄牙制造（修订版）\",\n    \"author\": \"路易斯・洛伦索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866\",\n    \"category\": \"足球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜迪奥拉：胜利的另一种道路\",\n    \"author\": \"吉列姆・巴拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866\",\n    \"category\": \"足球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚历克斯·弗格森：我的自传\",\n    \"author\": \"亚历克斯・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029226-e94552?p=8866\",\n    \"category\": \"足球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋全传（作家榜经典文库）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866\",\n    \"category\": \"朱元璋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋大传\",\n    \"author\": \"陈梧桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866\",\n    \"category\": \"朱元璋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：一本故事丰富的决策行为指南\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波斯公主选驸马\",\n    \"author\": \"帕维尔・莫托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做出明智判断的10个方法\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会决断（原书第2版）\",\n    \"author\": \"苏・哈德菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诚实的信号\",\n    \"author\": \"阿莱克斯・彭特兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒思考的策略\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险认知\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简捷启发式：有限理性让我们更聪明\",\n    \"author\": \"格尔德・吉仁泽等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对赌：信息不足时如何做出高明决策\",\n    \"author\": \"安妮・杜克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜意识与决策\",\n    \"author\": \"克里斯・佩利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043596-28e35d?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰度决策\",\n    \"author\": \"小约瑟夫・巴达拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲从与叛逆\",\n    \"author\": \"米歇尔・巴德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉：我们为什么无从推理，却能决策\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决断力\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与判断\",\n    \"author\": \"斯科特・普劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢决策：如何在极速时代掌握慢思考的力量\",\n    \"author\": \"弗兰克・帕特诺伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008970-5275d1?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考，快与慢\",\n    \"author\": \"丹尼尔・卡尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险与好的决策\",\n    \"author\": \"格尔德·吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866\",\n    \"category\": \"决策\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辩论：美国制宪会议记录\",\n    \"author\": \"詹姆斯・麦迪逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866\",\n    \"category\": \"宪政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术史十议\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866\",\n    \"category\": \"美术史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝物语（套装全四册）\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866\",\n    \"category\": \"美术史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开市大吉（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶馆（作家榜经典文库）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍长篇小说作品全集（套装十七册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031458-4659d9?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选剧本集（套装21册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031395-dbf371?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选中短篇小说集（套装六册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031305-740b89?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选杂文集（套装八册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍代表作作品集（套装九册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四世同堂（完整版）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866\",\n    \"category\": \"老舍\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶人传\",\n    \"author\": \"约翰・班扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866\",\n    \"category\": \"信仰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟爱华传：洋医生的中国心\",\n    \"author\": \"约翰・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866\",\n    \"category\": \"信仰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈底斯遗书\",\n    \"author\": \"陈庆港\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011769-d9d5d5?p=8866\",\n    \"category\": \"信仰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都是数据分析师\",\n    \"author\": \"刘红阁/王淑娟/温融冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866\",\n    \"category\": \"tableau\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性文化简史\",\n    \"author\": \"李书崇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032655-45f763?p=8866\",\n    \"category\": \"性学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"色情\",\n    \"author\": \"乔治・巴塔耶\",\n    \"link\": \"链接未找到\",\n    \"category\": \"性学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在现场\",\n    \"author\": \"黄盈盈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030039-700572?p=8866\",\n    \"category\": \"性学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当夏娃在拂晓\",\n    \"author\": \"克里斯托弗・莱恩/卡西尔达・杰萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866\",\n    \"category\": \"性学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加缪传\",\n    \"author\": \"赫伯特・R.洛特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866\",\n    \"category\": \"加缪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"局外人（果麦经典）\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034425-ba996e?p=8866\",\n    \"category\": \"加缪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖18：真的，烤箱什么都能做\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866\",\n    \"category\": \"烤箱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像读悬疑小说一样读懂会计学\",\n    \"author\": \"田中靖浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002445-d51d8d?p=8866\",\n    \"category\": \"财会\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日07：明治维新\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025476-ff6a83?p=8866\",\n    \"category\": \"明治维新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本维新史\",\n    \"author\": \"赫伯特・诺曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024477-aaca5d?p=8866\",\n    \"category\": \"明治维新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"PHP和MySQL Web开发（原书第4版）\",\n    \"author\": \"Luke Welling\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866\",\n    \"category\": \"PHP\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西域余闻\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866\",\n    \"category\": \"西域\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕\",\n    \"author\": \"阿敏・马卢夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866\",\n    \"category\": \"西域\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那猫那人那城\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498936-fe5a9d?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命在于静止\",\n    \"author\": \"篠原薰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499569-193758?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级生物探寻指南\",\n    \"author\": \"马修 · D. 拉普兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499677-11db81?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无脊椎动物百科\",\n    \"author\": \"拉尔夫・布克斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500724-3e2969?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个世界，一个星球\",\n    \"author\": \"强尼・基林/斯科特・亚历山大\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509295-af62d4?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖动植物图鉴\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物王朝\",\n    \"author\": \"冉浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512175-7e0849?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物眼中的人类\",\n    \"author\": \"赵序茅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513462-89d08b?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物不简单（套装共5册）\",\n    \"author\": \"德斯蒙德・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513651-236db3?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的“屁”事儿\",\n    \"author\": \"尼克・卡鲁索等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050424-0a1c39?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万智有灵\",\n    \"author\": \"弗朗斯・德瓦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049908-4023d0?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物奇葩说\",\n    \"author\": \"尼克・卡鲁索等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048585-97d7e9?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物思维\",\n    \"author\": \"查尔斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白牙（果麦经典）\",\n    \"author\": \"杰克・伦敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045189-be69e1?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的秘密\",\n    \"author\": \"约翰・布拉德肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们迷人的鸟：猫头鹰\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪海洋简史\",\n    \"author\": \"菲利帕・桑德尔/艾德・朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038478-6fe43e?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞行战犬\",\n    \"author\": \"达米恩・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031125-c70223?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上动物园\",\n    \"author\": \"夏洛特・斯莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026883-d8edc7?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸡征服世界\",\n    \"author\": \"安德鲁・劳勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫武士首部曲（套装共6册）\",\n    \"author\": \"艾琳・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021747-2318d1?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物的精神生活\",\n    \"author\": \"彼得・渥雷本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在轮回中找你\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007332-ae6730?p=8866\",\n    \"category\": \"动物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法中的同意制度\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003372-a8ac3b?p=8866\",\n    \"category\": \"刑法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法罗盘\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866\",\n    \"category\": \"刑法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法学讲义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866\",\n    \"category\": \"刑法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法格言的展开（第三版）\",\n    \"author\": \"张明楷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866\",\n    \"category\": \"刑法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命时期的爱情\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035277-f2f141?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燕南园往事\",\n    \"author\": \"汤一介等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025530-09fd76?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可逃\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市民底层笔记\",\n    \"author\": \"张礼士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020877-80c338?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青口述史\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009201-91fa5a?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的一代：中国的上山下乡运动1968-1980\",\n    \"author\": \"潘鸣啸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨的记忆\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆（图文版）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"求索中国：文革前十年史\",\n    \"author\": \"萧东连/朱地等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008892-fc9b80?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一百个人的十年\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唉，我的沧桑50年（1959至今）\",\n    \"author\": \"八爪夜叉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个红卫兵的自白\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006858-8e4d5d?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·初澜（1953～1968）\",\n    \"author\": \"定宜庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·大潮（1966～1980）\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866\",\n    \"category\": \"文革\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多卖三倍\",\n    \"author\": \"弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491256-088984?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Z世代营销\",\n    \"author\": \"杰夫・弗若姆/安吉・瑞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513471-fe46fd?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致零售\",\n    \"author\": \"杜凤林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘾：让人上瘾的产品、广告与创意背后的秘密\",\n    \"author\": \"吴文芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意志力销售法\",\n    \"author\": \"杨朝福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命4.0\",\n    \"author\": \"菲利普・科特勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金龙鱼背后的粮油帝国\",\n    \"author\": \"余盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039426-863024?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂营销上\",\n    \"author\": \"戈非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密日本零售业（套装共4册）\",\n    \"author\": \"增田明子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售进阶指南（套装共5册）\",\n    \"author\": \"埃尔默・惠勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：打造峰值体验\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全栈市场人\",\n    \"author\": \"Lydia\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐巾纸系列套装（套装共2本）\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016506-d2e8ae?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告+我的广告生涯\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作，打造个人IP，成就企业品牌\",\n    \"author\": \"陈志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866\",\n    \"category\": \"市场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"满是空虚之物\",\n    \"author\": \"阿伏伽德六\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511062-e94297?p=8866\",\n    \"category\": \"虚构\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛兰德镜子\",\n    \"author\": \"dome\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044964-66fcfd?p=8866\",\n    \"category\": \"虚构\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们花园里的鸟\",\n    \"author\": \"马特・休厄尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866\",\n    \"category\": \"鸟\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟类的天赋\",\n    \"author\": \"珍妮弗・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866\",\n    \"category\": \"鸟\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政论 昌言（全本全注全译）\",\n    \"author\": \"孙启治译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866\",\n    \"category\": \"政论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与戛纳\",\n    \"author\": \"蒂耶里・福茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866\",\n    \"category\": \"戛纳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光影里的梦幻与真实\",\n    \"author\": \"郑实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866\",\n    \"category\": \"戛纳\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个世纪的抗争：美国女权运动史\",\n    \"author\": \"埃莉诺・弗莱克斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510030-25e3e0?p=8866\",\n    \"category\": \"女权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的安吉维拉\",\n    \"author\": \"奇玛曼达・恩戈兹・阿迪契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990373-e61286?p=8866\",\n    \"category\": \"女权\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘+（第3版）\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866\",\n    \"category\": \"复盘\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘：对过去的事情做思维演练\",\n    \"author\": \"陈中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866\",\n    \"category\": \"复盘\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽必烈的挑战\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866\",\n    \"category\": \"蒙元史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁血蒙元\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866\",\n    \"category\": \"蒙元史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆自传\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866\",\n    \"category\": \"20世纪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙（白金升级版）\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样发言\",\n    \"author\": \"久久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想之城：苏筱的战争\",\n    \"author\": \"若花燃燃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508209-e9ee8e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别会说话的人都这样说话\",\n    \"author\": \"大野萌子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的沟通力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就是干不过做PPT的\",\n    \"author\": \"下地宽也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509607-fcbab6?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高级零工\",\n    \"author\": \"村上敦伺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509853-10fa45?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来3\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森（\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬核晋升\",\n    \"author\": \"朱莉・卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的世界\",\n    \"author\": \"许奔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己当回事儿\",\n    \"author\": \"杨天真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非线性成长\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节的力量\",\n    \"author\": \"FLANAGAN裕美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513111-35214f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的老板\",\n    \"author\": \"罗伯特・赫罗马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513645-5a5886?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一印象手册\",\n    \"author\": \"柳沼佐千子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513798-47c741?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选准赛道再奔跑\",\n    \"author\": \"七芊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004608-82df1b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级搜索术\",\n    \"author\": \"朱丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004089-122bcf?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转机\",\n    \"author\": \"萨拉・罗布・奥黑根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘墉的处世情商课\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的做事风格系列（全3册）\",\n    \"author\": \"高桥政史/横田真由子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002070-37a922?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造人生的伙伴\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场自我成长\",\n    \"author\": \"渡边秀和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001134-9c9089?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡高效工作法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本事：应对未来世界的12项永久技能\",\n    \"author\": \"基兰・弗拉纳根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000405-a834ab?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动变现\",\n    \"author\": \"杨小米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999424-ac20ab?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级个体\",\n    \"author\": \"徐大维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懂得倾听，是学会沟通的第一步\",\n    \"author\": \"伯纳德·T.费拉里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997870-0eb102?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破你的学生思维\",\n    \"author\": \"北京职慧公益创业发展中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997843-a71c7e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾仕强品三国（套装共3册）\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995533-1624d0?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力\",\n    \"author\": \"高琳/林宏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"允许被说服\",\n    \"author\": \"艾尔・比坦帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你没有退路，才有出路\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"会说话的人运气都不会太差\",\n    \"author\": \"矢野香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扛住就是本事\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超级领导力\",\n    \"author\": \"金·R·鲍威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是动机控\",\n    \"author\": \"池田贵将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是方法控\",\n    \"author\": \"金武贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的技术\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人力资源管理从新手到总监（全2册）\",\n    \"author\": \"李志勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985228-e6aa30?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效管理自己（升级版）\",\n    \"author\": \"杜耿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984787-7968f7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向诸葛亮借智慧\",\n    \"author\": \"赵玉平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983920-387cfd?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异议的力量\",\n    \"author\": \"查兰・奈米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给别人留下好印象\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向上管理\",\n    \"author\": \"蒋巍巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983296-d41f93?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职业通道\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀到不能被忽视\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是我要的工作\",\n    \"author\": \"克里斯・吉耶博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用事实说话\",\n    \"author\": \"马克・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日之计\",\n    \"author\": \"本杰明・斯帕/迈克尔・赞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢在上班时\",\n    \"author\": \"高城幸司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重构\",\n    \"author\": \"村西边老王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体突围\",\n    \"author\": \"艾玛・加侬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为职场实力派\",\n    \"author\": \"日本GLOBIS商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052479-c909c0?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卓越工作\",\n    \"author\": \"莫滕·T·汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"执行力：10项驱动法则\",\n    \"author\": \"章俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052290-876230?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商是什么？\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力迁移\",\n    \"author\": \"乔治・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力精进\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的降落伞是什么颜色？（全新修订版）\",\n    \"author\": \"理查德・尼尔森・鲍利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精简社交\",\n    \"author\": \"莫拉格・巴雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何一开口就赢\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡入职培训第一课\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长行动指南\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加速\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051021-d70559?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法（口袋版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通也要懂套路\",\n    \"author\": \"姜朝川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力48法则\",\n    \"author\": \"罗伯特・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理是个技术活\",\n    \"author\": \"芭芭拉・米切尔/科妮莉亚・甘伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟沟通课\",\n    \"author\": \"鱼住理英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别做那只迷途的候鸟\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效人士的问题解决术\",\n    \"author\": \"森秀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049437-4b60bc?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都合得来\",\n    \"author\": \"罗伯特・萨顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049395-f814dd?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上广女子图鉴\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导就是让人追随\",\n    \"author\": \"约翰・科特/霍尔格・拉斯格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思考\",\n    \"author\": \"迈克・费廖洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效领导力\",\n    \"author\": \"布伦达・本斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044523-e9c7cf?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商沟通\",\n    \"author\": \"仲佳伟/文娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043860-e43eee?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人心理学\",\n    \"author\": \"赵育宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的写作武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突管理\",\n    \"author\": \"大卫・里德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的思考武器\",\n    \"author\": \"安宅和人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"策略：如何在复杂的世界里成为高手\",\n    \"author\": \"江潮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人极简图表工作法\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来工作\",\n    \"author\": \"泰勒・皮尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040533-619ca7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳槽圣经\",\n    \"author\": \"北野唯我\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040419-a31bca?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇气\",\n    \"author\": \"萨莉・克劳切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生涯线\",\n    \"author\": \"戴维・范鲁伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035568-93b2da?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售圣经\",\n    \"author\": \"杰弗里・吉特黙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场第一课（套装共5册）\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周工作4小时（修订版）\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法：职场问题解决篇\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12个工作的基本\",\n    \"author\": \"大久保幸夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：颠覆职场学习的高效方法\",\n    \"author\": \"王世民/缪志聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绩效使能：超越OKR\",\n    \"author\": \"况阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横向领导力\",\n    \"author\": \"罗杰・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中层领导力（共三册）\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向前一步\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使命必达：百分之百实现目标的行为科学管理法\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长\",\n    \"author\": \"亚力山德拉・卡弗拉科斯/凯瑟琳・明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转行：发现一个未知的自己\",\n    \"author\": \"埃米尼亚・伊瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你坚持的原则其实害了你\",\n    \"author\": \"午堂登纪雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029151-25cd57?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能量姿势\",\n    \"author\": \"埃米・卡迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027921-c57e26?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我赋能\",\n    \"author\": \"蒂法尼・杜芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027006-6f650f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力变现\",\n    \"author\": \"林宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主宰演讲台\",\n    \"author\": \"比尔・胡戈特伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026454-f43984?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见\",\n    \"author\": \"赵昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025662-874d05?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从极简到极致\",\n    \"author\": \"赵晓璃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025524-050d17?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做自己人生的CEO\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑工作法\",\n    \"author\": \"西村克己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我每天只工作3小时\",\n    \"author\": \"押井守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024051-5c3359?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个体赋能\",\n    \"author\": \"YouCore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢（纪念版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻省理工深度思考法\",\n    \"author\": \"平井孝志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：7个改变个人、团队和组织的教练技巧\",\n    \"author\": \"迈克尔・K.辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准表达：让你的方案在最短的时间内打动人心\",\n    \"author\": \"高田贵久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022005-8ea54a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套1：战局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021465-4d2c0f?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套2：迷局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021450-f4aaca?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈子圈套3：终局篇\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021447-9e6224?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒工作\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰普勒极简人生法则系列（套装共6册）\",\n    \"author\": \"理查德・泰普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力\",\n    \"author\": \"野口真人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职得：成为自己故事里的英雄\",\n    \"author\": \"高琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019758-aa07ed?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当机立断\",\n    \"author\": \"出口治明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天下没有陌生人\",\n    \"author\": \"刘希平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019620-995041?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠创业家\",\n    \"author\": \"金伯莉・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：如何规划职业生涯3大阶段\",\n    \"author\": \"布赖恩・费瑟斯通豪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘书工作手记\",\n    \"author\": \"像玉的石头\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017100-e77e05?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作是最好的修行\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲的本质\",\n    \"author\": \"马丁・纽曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016086-95e98b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没经验，是你最大优势\",\n    \"author\": \"蒋雅淇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015990-ad6ad2?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光速成长\",\n    \"author\": \"林晅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015888-f1ac25?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的工作方法\",\n    \"author\": \"中村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英系列（共五册）\",\n    \"author\": \"高杉尚孝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"靠谱\",\n    \"author\": \"大石哲之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键责任\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简工作Ⅱ\",\n    \"author\": \"约根・库尔兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015210-742ca7?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让猴子跳回背上\",\n    \"author\": \"威廉・安肯三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014490-3430ef?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场奋斗记：我在职场二十年\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012801-1f9218?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作DNA\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提问的力量\",\n    \"author\": \"弗兰克・赛斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010539-958825?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力：为什么只为某些人所拥有（经典版）\",\n    \"author\": \"杰弗瑞・菲佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你从未真正拼过\",\n    \"author\": \"LinkedIn（领英）\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008895-f7513b?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷读术（白金珍藏版）\",\n    \"author\": \"石真语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬球：政治是这样玩的\",\n    \"author\": \"克里斯·马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜拉拉升职记（套装共4册）\",\n    \"author\": \"李可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006420-6369ee?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小强升职记（升级版）\",\n    \"author\": \"邹鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006204-c05b09?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新版一分钟经理人\",\n    \"author\": \"肯・布兰佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005577-99fa0a?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要搞定人\",\n    \"author\": \"倪建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005031-3463fc?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐颂：第一季\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004734-314fba?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐颂：第二季\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004740-d1a809?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢乐颂：第三季\",\n    \"author\": \"阿耐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004752-0b1057?p=8866\",\n    \"category\": \"职场\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品的101个新零售细节\",\n    \"author\": \"张桓/杨永朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866\",\n    \"category\": \"新零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩们的地下战争\",\n    \"author\": \"蕾切尔・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491190-40f929?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮木\",\n    \"author\": \"杨本芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493731-a2dea1?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的战争\",\n    \"author\": \"Momself\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身偏见\",\n    \"author\": \"克莱尔・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493863-2752fc?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始的女性主义\",\n    \"author\": \"上野千鹤子/田房永子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498135-bec29a?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体由我\",\n    \"author\": \"希拉・德利兹/路易莎・施托默尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厌女：日本的女性嫌恶\",\n    \"author\": \"上野千鹤子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498933-3437c3?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是主播\",\n    \"author\": \"国谷裕子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499404-105834?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙马特遗书\",\n    \"author\": \"邱妙津\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500163-f3a93e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河谈亲密关系\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基层女性\",\n    \"author\": \"王慧玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喀耳刻\",\n    \"author\": \"马德琳・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506415-595930?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京贫困女子\",\n    \"author\": \"中村淳彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507093-5284bf?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些特别善于表达自己观点的女人们\",\n    \"author\": \"米歇尔・迪安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509370-466dcd?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱可能\",\n    \"author\": \"伊迪丝・伊娃・埃格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琉璃棺\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509976-f774f3?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性的时刻\",\n    \"author\": \"梅琳达・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的朋友阿波罗\",\n    \"author\": \"西格丽德・努涅斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510783-f66375?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请照顾好我妈妈\",\n    \"author\": \"申京淑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511275-55c4a4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为波伏瓦\",\n    \"author\": \"凯特・柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511278-68fad7?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的人生大事\",\n    \"author\": \"杰西・格林格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004353-bc6c28?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碎片\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003567-532213?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气场哪里来\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003540-37d1e7?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她们\",\n    \"author\": \"阎连科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003504-32b574?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码女王\",\n    \"author\": \"贾森・法戈内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美食，祈祷，恋爱\",\n    \"author\": \"伊丽莎白・吉尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为主角\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妻子们的思秋期\",\n    \"author\": \"斋藤茂男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001602-8bf926?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩之城\",\n    \"author\": \"伊丽莎白・吉尔伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001593-7bed8f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凌乱的床\",\n    \"author\": \"弗朗索瓦丝・萨冈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001293-92ab13?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结伴养老\",\n    \"author\": \"安妮・奥斯特比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000309-a1275e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她和她的秘密\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000177-c83701?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花园中的处子\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996616-1be3ff?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他的秘密\",\n    \"author\": \"莉安・莫里亚蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996595-40f888?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"因为性别\",\n    \"author\": \"吉莉恩・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994912-c2c6df?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇敢而非完美\",\n    \"author\": \"拉什玛・萨贾尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生由我\",\n    \"author\": \"梅耶・马斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好女孩\",\n    \"author\": \"布莉・贝内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994696-b834b3?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个心碎的伊朗女人\",\n    \"author\": \"龚娜姿・哈宣沙达・邦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994564-faf248?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大小谎言\",\n    \"author\": \"莉安・莫里亚蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992374-c85ca5?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性与权力\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991975-4c57b0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性进化论\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991723-c926e0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见了，伊藤君\",\n    \"author\": \"柚木麻子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991435-181d4c?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青梅竹马\",\n    \"author\": \"樋口一叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990031-2346b0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不想将就过一生\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你又忙又美，何惧患得患失\",\n    \"author\": \"梁爽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔守望者的女儿\",\n    \"author\": \"珍•E.潘德兹沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986095-8be8e5?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失去名字的女孩\",\n    \"author\": \"玛莎・霍尔・凯莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984901-789579?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影师的妻子\",\n    \"author\": \"苏珊・乔伊森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坡道上的家\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982486-16b5cf?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主妇、舞者与牧师\",\n    \"author\": \"马蜂窝出品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053694-6f133f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美之地图\",\n    \"author\": \"米哈埃拉・诺洛茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芭比：一个娃娃风靡世界的秘密\",\n    \"author\": \"罗宾・格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的世界\",\n    \"author\": \"莉兹・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051006-6c5df6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上广女子图鉴\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辫子\",\n    \"author\": \"莱蒂西娅・科隆巴尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047979-c242df?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大风向野\",\n    \"author\": \"练明乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047823-81f4e6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趁早（十周年畅销升级版）\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险闺密\",\n    \"author\": \"克里斯蒂娜・曼根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045930-f473a9?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一间自己的房间（作家榜经典文库）\",\n    \"author\": \"维吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044304-7ba850?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱丽尔（果麦经典）\",\n    \"author\": \"西尔维娅・普拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代的她们\",\n    \"author\": \"杰奎琳・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册：重塑升级版\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女生呵护指南\",\n    \"author\": \"六层楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上的女儿们\",\n    \"author\": \"珍妮・梅拉米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040929-da7f44?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"82年生的金智英\",\n    \"author\": \"赵南柱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039924-8e05df?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇气\",\n    \"author\": \"萨莉・克劳切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十个女人\",\n    \"author\": \"马塞拉・塞拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037614-efe484?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣母病\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036471-8907eb?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河说爱情\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎美人\",\n    \"author\": \"珍妮・达玛斯/劳伦・巴斯蒂德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走的人多了，就有了路\",\n    \"author\": \"尼可拉斯・克里斯多夫/雪莉・邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她说：菠萝解密乳腺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武士的女儿\",\n    \"author\": \"贾尼斯・宝莫伦斯・二村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034830-947585?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Goblin Market\",\n    \"author\": \"Rossetti, Christina; Rackham, Arthur;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的试毒者\",\n    \"author\": \"罗塞拉・波斯托里诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个陌生女人的来信（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京女子图鉴\",\n    \"author\": \"王欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032742-fb8407?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Calculating Stars\",\n    \"author\": \"Mary Robinette Kowal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈阁是座城\",\n    \"author\": \"严歌苓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031431-3b1b40?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阁楼上的疯女人\",\n    \"author\": \"桑德拉・吉尔伯特/苏珊・古芭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030792-df1d6e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小野兽\",\n    \"author\": \"艾明雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030312-d9a911?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人不可以穷\",\n    \"author\": \"正经婶儿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有多强大，就有多温柔\",\n    \"author\": \"王珣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对岸的她\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029859-6cc541?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊万卡·特朗普\",\n    \"author\": \"伊万卡・特朗普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灿烂千阳\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029058-318c2d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要快乐，不必正常\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩老板\",\n    \"author\": \"索菲亚・阿莫鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二性（合卷本）\",\n    \"author\": \"西蒙娜・德・波伏瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾莉诺好极了\",\n    \"author\": \"盖尔・霍尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027849-94039f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是个妈妈，我需要铂金包\",\n    \"author\": \"温妮斯蒂・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强大，漂亮的新定义\",\n    \"author\": \"凯特·T·帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026319-23d0f4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方有个女儿国\",\n    \"author\": \"白桦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025560-f8eca4?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生真相\",\n    \"author\": \"彼得・斯莱文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025128-9ada14?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做自己人生的CEO\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出荒野\",\n    \"author\": \"谢丽尔・斯特雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他们眼望上苍\",\n    \"author\": \"佐拉・尼尔・赫斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023859-28feb0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美女都是狠角色\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023664-8fe48b?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芈月传\",\n    \"author\": \"蒋胜男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022305-2cc99f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长翅膀的女孩\",\n    \"author\": \"苏・蒙克・基德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022125-11fbcf?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺伎回忆录\",\n    \"author\": \"阿瑟・高顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021840-da9540?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力巅峰的女人\",\n    \"author\": \"蒋胜男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021414-31bfd5?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪的孩子\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020586-b3e8f7?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的女儿\",\n    \"author\": \"虹影\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020580-f4dea0?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太年轻\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020439-7a8bf2?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被嫌弃的松子的一生\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020382-853cf6?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的脖子让我很不爽\",\n    \"author\": \"诺拉・艾芙隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019875-949ab1?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蕾蒂西娅，或人类的终结\",\n    \"author\": \"伊凡・雅布隆卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛丽·安妮\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使女的故事\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018939-e7603d?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩们\",\n    \"author\": \"艾玛・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017808-88e836?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要像喜欢甜一样喜欢苦\",\n    \"author\": \"斯蒂芬妮・丹勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016551-c6b1e8?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"离开的，留下的\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015894-a19ce7?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉田医生哈佛求学记\",\n    \"author\": \"吉田穗波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上流法则\",\n    \"author\": \"埃默・托尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014616-694625?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不允许自己难过太久\",\n    \"author\": \"凯茜・苏丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014112-37b6b5?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸之月\",\n    \"author\": \"角田光代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013224-06be48?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醒来的女性（上下册）\",\n    \"author\": \"玛丽莲・弗伦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012375-894943?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的国\",\n    \"author\": \"寇研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桃之夭夭\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011418-b385c2?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新名字的故事\",\n    \"author\": \"埃莱娜・费兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008784-b8943f?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极花\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008142-d8ae4a?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先谋生，再谋爱\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤单，我的自我\",\n    \"author\": \"丽贝卡・特雷斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866\",\n    \"category\": \"女性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英格兰简史大套装（套装共十册）\",\n    \"author\": \"埃德・韦斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504159-936447?p=8866\",\n    \"category\": \"英格兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布、大航海时代与地理大发现\",\n    \"author\": \"约翰・S.C.阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866\",\n    \"category\": \"哥伦布\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全怪谈（全三册）\",\n    \"author\": \"田中贡太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032217-dba52f?p=8866\",\n    \"category\": \"怪谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巷说异闻录\",\n    \"author\": \"檀信介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027255-1358b6?p=8866\",\n    \"category\": \"怪谈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家地理终极观星指南\",\n    \"author\": \"霍华德・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496701-44ca96?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到火星去\",\n    \"author\": \"莎拉・斯图尔特・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499260-e8e937?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"4000年中国天文史\",\n    \"author\": \"让・马克・博奈・比多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000792-a0a2d6?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课\",\n    \"author\": \"凯瑟琳・玛丽・布伦德尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果，哥白尼错了\",\n    \"author\": \"凯莱布・沙夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991624-eb9c92?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个天文学家的夜空漫游指南\",\n    \"author\": \"郑春顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我想多了吗？\",\n    \"author\": \"新科学家杂志/邱涛涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳系简史\",\n    \"author\": \"约翰・钱伯斯/杰奎琳・米顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮全书\",\n    \"author\": \"比尔・莱瑟巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追捕祝融星\",\n    \"author\": \"托马斯・利文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"140亿年宇宙演化全史\",\n    \"author\": \"尼尔・德格拉斯・泰森/唐纳德・戈德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·弦理论之争系列（新版套装共3册）\",\n    \"author\": \"布莱恩・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·物理系列（套装共9册）\",\n    \"author\": \"布莱恩・格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空故事\",\n    \"author\": \"苏珊娜・希斯洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简天文学\",\n    \"author\": \"科林・斯图尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙从何而来\",\n    \"author\": \"傅渥成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空的琴弦\",\n    \"author\": \"汪洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新认识资本主义三部曲\",\n    \"author\": \"娜奥米・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行星全书\",\n    \"author\": \"尼尔马拉・纳塔瑞杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014421-80096e?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Astrophysics for People in a Hurry\",\n    \"author\": \"Neil deGrasse Tyson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014013-01ce24?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通俗天文学（全彩四色珍藏版）\",\n    \"author\": \"西蒙・纽康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010887-fc3eff?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简宇宙史\",\n    \"author\": \"克里斯托弗・加尔法德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给忙碌者的天体物理学\",\n    \"author\": \"尼尔・德格拉斯・泰森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866\",\n    \"category\": \"天文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“排放门”：大众汽车丑闻\",\n    \"author\": \"杰克・尤因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002769-31400d?p=8866\",\n    \"category\": \"汽车\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三分钟漫画汽车史\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866\",\n    \"category\": \"汽车\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汽车是怎样跑起来的\",\n    \"author\": \"御堀直嗣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013170-8e1445?p=8866\",\n    \"category\": \"汽车\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉丁美洲被切开的血管\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024495-ad2eac?p=8866\",\n    \"category\": \"拉丁美洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迪士尼大电影双语阅读（共18册）\",\n    \"author\": \"美国迪士尼公司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017088-c29863?p=8866\",\n    \"category\": \"迪士尼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866\",\n    \"category\": \"冯唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你：与冯唐聊天\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008421-7af3cb?p=8866\",\n    \"category\": \"冯唐\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资攻略\",\n    \"author\": \"翁量\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共同基金常识（10周年纪念版）\",\n    \"author\": \"约翰・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500526-edcefa?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚守\",\n    \"author\": \"约翰・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511698-19f58e?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数定投实现财务自由\",\n    \"author\": \"姬建东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小散逆袭：手把手教你做量化定投\",\n    \"author\": \"万磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定投十年财务自由\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金怪杰（典藏版）\",\n    \"author\": \"杰克・施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私募的进化\",\n    \"author\": \"格上研究中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资指南\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对冲基金到底是什么？\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866\",\n    \"category\": \"基金\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：中国周边\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866\",\n    \"category\": \"时政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳谋为上\",\n    \"author\": \"夏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007908-6e6069?p=8866\",\n    \"category\": \"时政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大实话：历史与现在\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006915-0aa5f7?p=8866\",\n    \"category\": \"时政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Game of Thrones Series\",\n    \"author\": \"George R. R. Martin\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039252-7f3bcd?p=8866\",\n    \"category\": \"史诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光之轮全集\",\n    \"author\": \"罗伯特·乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006192-45f890?p=8866\",\n    \"category\": \"史诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰与火之歌1-5卷（全15册）\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005802-26b297?p=8866\",\n    \"category\": \"史诗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的方法\",\n    \"author\": \"圣地亚哥·拉蒙-卡哈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507387-b58026?p=8866\",\n    \"category\": \"学术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界音乐汇\",\n    \"author\": \"西蒙・布劳顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866\",\n    \"category\": \"学术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"研究生完全求生手冊\",\n    \"author\": \"彭明輝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039534-579efd?p=8866\",\n    \"category\": \"学术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词学通论（词系列）\",\n    \"author\": \"吴梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033588-ce609f?p=8866\",\n    \"category\": \"学术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国医典藏系列套装（共四册）\",\n    \"author\": \"李时珍/孙思邈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998563-a4c3ab?p=8866\",\n    \"category\": \"中医学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美名校通识课（第一辑）（套装7册）\",\n    \"author\": \"亨利·M.塞尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866\",\n    \"category\": \"欧美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸骨袋\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033264-2ab845?p=8866\",\n    \"category\": \"欧美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰岛人\",\n    \"author\": \"大卫・W・斯托克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020688-c01e06?p=8866\",\n    \"category\": \"欧美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西藏来的男人\",\n    \"author\": \"克莱德・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011673-fcf3b0?p=8866\",\n    \"category\": \"欧美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼（套装共5册）\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030288-17bf8f?p=8866\",\n    \"category\": \"经验\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跳舞女郎\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034623-126b75?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强盗新娘\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034449-93c7ab?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国病人（企鹅经典）\",\n    \"author\": \"迈克尔・翁达杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032424-c5dfca?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赫尔辛基罗卡曼迪欧家族背后的真相\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028062-53a082?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"标本师的魔幻剧本\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027834-e41a3d?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（绘图珍藏本）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲刺客\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014304-350e20?p=8866\",\n    \"category\": \"加拿大\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭一千年\",\n    \"author\": \"狄奥尼修斯・史塔克普洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马的日常生活\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马元老院与人民\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉思录（译文经典）\",\n    \"author\": \"马可・奥勒留\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的崛起\",\n    \"author\": \"波里比阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033156-220881?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥古斯都：从革命者到皇帝\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：罗马帝国的遗产\",\n    \"author\": \"克里斯・威克姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内战记\",\n    \"author\": \"盖乌斯・尤利乌斯・恺撒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030756-3504a4?p=8866\",\n    \"category\": \"古罗马\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文通史\",\n    \"author\": \"詹尼特・勒博・本顿/罗伯特・笛亚尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866\",\n    \"category\": \"艺术史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识课：理学套装（全4册）\",\n    \"author\": \"麦克・戈德史密斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496950-51ea21?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何像人类学家一样思考·鹈鹕丛书\",\n    \"author\": \"马修・恩格尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501426-4e56e5?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外研社百科通识文库（世界万象大套装共114本）\",\n    \"author\": \"伏尔泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502542-168165?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美名校通识课（第一辑）（套装7册）\",\n    \"author\": \"亨利·M.塞尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本百本纪念套装（共100册）\",\n    \"author\": \"查尔斯・福斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506448-03adea?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文精神的伟大冒险\",\n    \"author\": \"菲利普·E.毕肖普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国文学（牛津通识读本）\",\n    \"author\": \"尼古拉斯・博伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼识破真相的思考力\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戏剧（牛津通识读本）\",\n    \"author\": \"马文・卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治学通识\",\n    \"author\": \"包刚升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866\",\n    \"category\": \"通识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典咏流传诗词曲赋集（套装21册）\",\n    \"author\": \"李白/王维等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866\",\n    \"category\": \"歌赋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处不在\",\n    \"author\": \"中国邮政快递报社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866\",\n    \"category\": \"快递\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国快递桐庐帮\",\n    \"author\": \"孙侃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011220-4eeecf?p=8866\",\n    \"category\": \"快递\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Clojure编程乐趣\",\n    \"author\": \"Michael Fogus/Chris Houser\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021192-c6e841?p=8866\",\n    \"category\": \"编程语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑场（2017版）\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048558-fe098d?p=8866\",\n    \"category\": \"李诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙超度指南\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866\",\n    \"category\": \"李诞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图攻略\",\n    \"author\": \"王健文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考与表达的20堂课\",\n    \"author\": \"久恒启一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作力\",\n    \"author\": \"高语罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看完就用的思维导图\",\n    \"author\": \"刘艳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051396-5d6b11?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读（01-10）\",\n    \"author\": \"许知远/肖海生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027654-e73901?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读（11-15）\",\n    \"author\": \"吴琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027657-d9573b?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"童书写作指南\",\n    \"author\": \"玛丽・科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026970-0605e8?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆魔法师\",\n    \"author\": \"袁文魁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022029-89926d?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提升你的沟通技能（第四版）\",\n    \"author\": \"艾伦・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020118-157ff6?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简化\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866\",\n    \"category\": \"工具\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅海建作品集（套装共5册）\",\n    \"author\": \"茅海建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502044-913caf?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家国与世情\",\n    \"author\": \"十年砍柴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509973-b55da1?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马勇讲清史（全5册）\",\n    \"author\": \"唐彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510183-c8ea60?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸运儿：晚清留美幼童的故事\",\n    \"author\": \"利尔・莱博维茨/马修・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510192-ccbbf4?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀柔远人\",\n    \"author\": \"何伟亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三国\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋风宝剑孤臣泪\",\n    \"author\": \"姜鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983611-ecaec9?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧京人物影像馆（套装三册）\",\n    \"author\": \"张社生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049425-7f26ab?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩全集（全31册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚守与突围\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039378-960d27?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清帝国风云系列（全三册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037521-529d85?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清王朝的最后十年\",\n    \"author\": \"菲尔曼・拉里贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035697-05658d?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国公使夫人清宫回忆录\",\n    \"author\": \"苏珊・汤丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史深处的民国（全3册）\",\n    \"author\": \"江城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之痒\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清危亡录\",\n    \"author\": \"凤城杜哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029211-fd2b9f?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛史·晚清篇\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023268-c4b7c6?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：计划外革命\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国《小日报》记录的晚清（1891-1911）\",\n    \"author\": \"李红利/赵丽莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火堆上的晚清帝国\",\n    \"author\": \"刘大木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017859-df5ae7?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平天国兴亡录\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014724-33612e?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庚子西狩丛谈\",\n    \"author\": \"吴永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011625-b93e35?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清最后十八年（大全集）（共4册）\",\n    \"author\": \"黄治军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010365-52de24?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清大变局\",\n    \"author\": \"马平安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008790-f00942?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战天京：晚清军政传信录\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007827-5533c3?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉冤录\",\n    \"author\": \"张程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007488-804e4c?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天公不语对枯棋\",\n    \"author\": \"姜鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006972-dc0d09?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凋零\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1856：纠结的大清、天国与列强\",\n    \"author\": \"陶短房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再说戊戌变法\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005823-df41d5?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直截了当的独白\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个曾国藩\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个袁世凯\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个李鸿章\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国运1909：清帝国的改革突围\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005070-6a1110?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大变局1911\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清日战争\",\n    \"author\": \"宗泽亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004950-0d79b6?p=8866\",\n    \"category\": \"晚清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493698-8e176a?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画三国演义\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501411-8c4262?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国不演义\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506904-b9f4ff?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国：大暗黑时代的前奏曲\",\n    \"author\": \"鸟山居士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000855-46c47a?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全面战争·日式三国（套装共5册）\",\n    \"author\": \"吉川英治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989020-6eb90a?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曹操：打不死的乐观主义者\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983932-901fe3?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国在巴蜀\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国英雄记（全六册）\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039126-d0e7c9?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸葛亮：蜀汉舵手的历史真相\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国谍影（全四册）\",\n    \"author\": \"何慕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033657-64c701?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国全史\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022050-eeaf02?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国机密（新版全集）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019308-4cd05d?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司马懿吃三国（套装共5册）\",\n    \"author\": \"李浩白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017760-105460?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（地图珍藏本）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017616-a7c9cd?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国那些人那些事（套装5册）\",\n    \"author\": \"陈瓷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016065-19e132?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水煮三国（十周年纪念版）\",\n    \"author\": \"成君忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015078-1ffe74?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉文集：三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011133-842806?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品三国\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010851-0bd01f?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正说司马家（1-3）\",\n    \"author\": \"张朝炬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010560-b2fada?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国名将：一个历史学家的排行榜\",\n    \"author\": \"方北辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009312-59e655?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国（套装共5册）\",\n    \"author\": \"吉川英治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006129-6a7720?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕著三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑鄙的圣人：曹操（套装共10册）\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国机密（全两册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风起陇西\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国人物传记合集（套装共六册）\",\n    \"author\": \"方北辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005274-cab8cd?p=8866\",\n    \"category\": \"三国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资的十项核心原则\",\n    \"author\": \"詹姆斯・蒙蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491475-157297?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师3\",\n    \"author\": \"Mark Minervini\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势投资\",\n    \"author\": \"丁圣元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498825-647703?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资三部曲\",\n    \"author\": \"杰弗里・肯尼迪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498966-b96f00?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识的力量\",\n    \"author\": \"梁宇峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资核心资产\",\n    \"author\": \"王德伦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资理财红宝书\",\n    \"author\": \"龙红亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报一看就懂\",\n    \"author\": \"薛兆亨/徐林宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509232-8957d6?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复利信徒\",\n    \"author\": \"李杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509553-ecceff?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则：成长股投资要义\",\n    \"author\": \"吉姆・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手利弗莫尔的交易精髓\",\n    \"author\": \"李路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资策略实战分析（原书第4版·典藏版）\",\n    \"author\": \"詹姆斯・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（典藏版）\",\n    \"author\": \"格里高里・莫里斯/赖安・里奇菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆精选集\",\n    \"author\": \"珍妮特・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004341-efe06a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资的24堂必修课（典藏版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值发现\",\n    \"author\": \"张靖东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004107-ba8cf8?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由新思维\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000711-ebbf11?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投机者的告白（实战版）\",\n    \"author\": \"安纳金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券分析（原书第6版）\",\n    \"author\": \"本杰明・格雷厄姆/戴维・多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析圣经\",\n    \"author\": \"理查德·W·夏巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易之路\",\n    \"author\": \"陈凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资心理学（原书第5版）\",\n    \"author\": \"约翰 R. 诺夫辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融怪杰：华尔街的顶级交易员\",\n    \"author\": \"杰克D. 施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进我的交易室\",\n    \"author\": \"亚历山大・艾尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股价潜结构\",\n    \"author\": \"姚简明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049869-9aa57b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金股博弈（第4版）\",\n    \"author\": \"弈樊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向投资策略\",\n    \"author\": \"大卫・德雷曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交易冠军\",\n    \"author\": \"马丁・舒华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾略特波浪理论：研判股市底部与顶部的有效工具\",\n    \"author\": \"拉尔夫·N·艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸K线交易法\",\n    \"author\": \"许佳聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046431-11f0bb?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融交易圣经\",\n    \"author\": \"约翰・派珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给投资新手的极简股票课\",\n    \"author\": \"lip师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的第一桶金\",\n    \"author\": \"格伦・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历巴菲特股东大会\",\n    \"author\": \"杰夫・马修斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我如何从股市赚了200万（珍藏版）\",\n    \"author\": \"尼古拉斯・达瓦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小散逆袭：手把手教你做量化定投\",\n    \"author\": \"万磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看盘方法与技巧一本通\",\n    \"author\": \"老牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概率游戏：像操盘手那样做股票\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特与索罗斯的投资习惯（纪念版）\",\n    \"author\": \"马克・泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑马波段操盘术（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"振荡指标MACD（升级版）\",\n    \"author\": \"凌波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超额收益\",\n    \"author\": \"刘哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿过迷雾\",\n    \"author\": \"任俊杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在苍茫中传灯\",\n    \"author\": \"姚斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生Ⅱ\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高频交易员\",\n    \"author\": \"迈克尔・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球投资\",\n    \"author\": \"林起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特高收益投资策略\",\n    \"author\": \"吉瓦・拉玛斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12年20倍\",\n    \"author\": \"唐彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（原书第3版）\",\n    \"author\": \"格里高里・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的投资组合（珍藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票作手回忆录\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本炒股书\",\n    \"author\": \"杨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量价分析\",\n    \"author\": \"安娜・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票基本面分析清单\",\n    \"author\": \"迈克尔・希恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039261-a095a3?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背离技术分析\",\n    \"author\": \"江南小隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资最重要的事（全新升级版）\",\n    \"author\": \"霍华德・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎杀黑马\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038283-074510?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过顶擒龙\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038112-a98e13?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴维·朗德里波段交易法则\",\n    \"author\": \"戴维・朗德里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037992-dbffa0?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力K线擒大牛\",\n    \"author\": \"王宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇的成功投资（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在股市大崩溃前抛出的人（典藏版）\",\n    \"author\": \"伯纳德・巴鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战胜华尔街（典藏版）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本蜡烛图技术新解（典藏版）\",\n    \"author\": \"史蒂夫・尼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢得输家的游戏（原书第6版）\",\n    \"author\": \"查尔斯・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融街：危险交易\",\n    \"author\": \"梁成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股的智慧（第四版）\",\n    \"author\": \"陈江挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029619-c30e77?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术分析（原书第5版）\",\n    \"author\": \"马丁J. 普林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028260-40febb?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值投资的秘密\",\n    \"author\": \"Joel Greenblatt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028044-74e8a0?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理·芒格的投资思想\",\n    \"author\": \"戴维・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师2\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手回忆录\",\n    \"author\": \"埃德文・拉斐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票大作手操盘术\",\n    \"author\": \"杰西・利弗莫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年（第2版）\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020628-097a89?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的估值逻辑\",\n    \"author\": \"林安霁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市趋势技术分析（原书第10版）\",\n    \"author\": \"罗伯特 D. 爱德华兹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级强势股：如何投资小盘价值成长股（珍藏版）\",\n    \"author\": \"肯尼斯・费雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股的智慧\",\n    \"author\": \"陈江挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017415-1f1d36?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲刺白马股\",\n    \"author\": \"启明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票魔法师\",\n    \"author\": \"马克・米勒维尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得林奇投资经典全集（共3册）\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货市场技术分析\",\n    \"author\": \"约翰・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不落俗套的成功\",\n    \"author\": \"大卫・斯文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A股赚钱必修课\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012393-e3ca99?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华尔街幽灵\",\n    \"author\": \"阿瑟・辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"专业投机原理（珍藏版）\",\n    \"author\": \"维克托・斯波朗迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥马哈之雾\",\n    \"author\": \"任俊杰/朱晓芸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"操盘手Ⅰ：自由救赎\",\n    \"author\": \"花荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出幻觉・走向成熟\",\n    \"author\": \"金融帝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个投资家的20年\",\n    \"author\": \"杨天南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大牛市・股殇系列（全两册）\",\n    \"author\": \"诸葛就是不亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百箭穿杨\",\n    \"author\": \"小小辛巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非赚不可\",\n    \"author\": \"袁园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒股怎能不懂波段\",\n    \"author\": \"宋建文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市长线法宝（原书第5版）\",\n    \"author\": \"杰里米J. 西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦想与浮沉：A股十年上市博弈（2004～2014）\",\n    \"author\": \"王骥跃/班妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则\",\n    \"author\": \"吉姆·斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安东尼·波顿的成功投资\",\n    \"author\": \"安东尼·波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短线交易秘诀（原书第2版）\",\n    \"author\": \"拉里·威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球「岛」系列・投资入门套装（共七册）\",\n    \"author\": \"雪球用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005484-765294?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·聂夫的成功投资（珍藏版）\",\n    \"author\": \"约翰・聂夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以交易为生（珍藏版）\",\n    \"author\": \"亚历山大・埃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通向财务自由之路（原书第2版·珍藏版）\",\n    \"author\": \"范・撒普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性繁荣（第二版）\",\n    \"author\": \"罗伯特·希勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样选择成长股\",\n    \"author\": \"菲利普·A·费舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑傲股市（原书第四版）\",\n    \"author\": \"威廉・欧奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风生水起：水皮股市创富录\",\n    \"author\": \"水皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004770-b214ba?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些滚雪球的人\",\n    \"author\": \"王星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866\",\n    \"category\": \"股票\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情的力量\",\n    \"author\": \"亚瑟・乔拉米卡利/凯瑟琳・柯茜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866\",\n    \"category\": \"共情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1491年：前哥伦布时代美洲启示录\",\n    \"author\": \"查尔斯・曼恩是\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011508-3f67fb?p=8866\",\n    \"category\": \"美洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就想开间小小咖啡馆\",\n    \"author\": \"王森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031806-c9aa38?p=8866\",\n    \"category\": \"梦想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"示弱的勇气\",\n    \"author\": \"田口佳史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029919-38941e?p=8866\",\n    \"category\": \"梦想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命冒险\",\n    \"author\": \"闪米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023085-ade96e?p=8866\",\n    \"category\": \"梦想\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也要认真穿\",\n    \"author\": \"黎贝卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866\",\n    \"category\": \"穿搭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风格的练习\",\n    \"author\": \"艾莉森・沃尔什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046617-f68956?p=8866\",\n    \"category\": \"穿搭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情的革命\",\n    \"author\": \"乔伊斯・阿普尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866\",\n    \"category\": \"政治学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的去魔化\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866\",\n    \"category\": \"政治学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精神政治学\",\n    \"author\": \"韩炳哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033087-6bd310?p=8866\",\n    \"category\": \"政治学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的西方（译文经典）\",\n    \"author\": \"尤尔根・哈贝马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866\",\n    \"category\": \"政治学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么\",\n    \"author\": \"韩鹏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034326-c79462?p=8866\",\n    \"category\": \"道德经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经说什么：一部教你做得道之人的生命学宝典\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866\",\n    \"category\": \"道德经\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通正则表达式：第3版\",\n    \"author\": \"Jeffrey E·F·Friedl\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866\",\n    \"category\": \"正则表达式\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀手机器人日记（全四册）\",\n    \"author\": \"玛莎・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491805-d73e35?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海胶囊\",\n    \"author\": \"btr\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493545-f20f20?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱姆狂想曲\",\n    \"author\": \"斯塔尼斯瓦夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493608-e7a5b9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能预警（读客版）\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493848-f7331c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恐惧之旅\",\n    \"author\": \"埃里克・安布勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493878-e9e33f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四十岛骑士\",\n    \"author\": \"谢尔盖・卢基扬年科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495570-30739a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星云X：忒弥斯\",\n    \"author\": \"江波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498216-e02887?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚁群\",\n    \"author\": \"汤问棘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498846-6ad541?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙丘序曲三部曲\",\n    \"author\": \"布莱恩・赫伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498951-099295?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘上之夜\",\n    \"author\": \"宫内悠介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499317-6f647b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"齐马蓝\",\n    \"author\": \"阿拉斯泰尔・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499437-afc295?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿西莫夫：机器人短篇全集\",\n    \"author\": \"阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499548-33b084?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挽救计划\",\n    \"author\": \"安迪・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499665-b03b38?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际战争（作家榜经典文库）\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499734-b85d92?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北方反对南方\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500277-f179aa?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河英雄传说（1-8册合集）\",\n    \"author\": \"田中芳树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500589-254eab?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲视\",\n    \"author\": \"彼得・沃茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500607-c516c2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小镇奇谈\",\n    \"author\": \"七月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501054-9c7541?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复写\",\n    \"author\": \"法条遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501207-ebe079?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的序曲（全二册）\",\n    \"author\": \"戴维·G.哈特威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501762-31ce1e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科幻奇幻丛书精选集（套装共60册）\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502281-b20499?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的寒冬\",\n    \"author\": \"A. G. 利德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502296-033c96?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零度分离\",\n    \"author\": \"伊格言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504252-eb8320?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十月之殇\",\n    \"author\": \"劳伦斯・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504270-901ee9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菲利普·迪克作品合集（套装共10册）\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506739-bc4b48?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人大师\",\n    \"author\": \"斯坦尼斯瓦夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506775-c81751?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜蜂717\",\n    \"author\": \"拉莱恩・波尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507054-16e098?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波兰科幻泰斗莱姆作品集（共6册）\",\n    \"author\": \"斯坦尼斯瓦夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509085-904148?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"路边野餐\",\n    \"author\": \"阿卡迪・斯特鲁伽茨基/鲍里斯・斯特鲁伽茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509301-218cbd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"詹姆斯·卡梅隆的科幻故事\",\n    \"author\": \"兰德尔・弗雷克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509604-3a44ff?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一生的故事\",\n    \"author\": \"特德・姜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509787-706d6f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河之心三部曲\",\n    \"author\": \"江波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510066-0e0a6d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月球城市\",\n    \"author\": \"安迪・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510057-9e2e52?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁三部曲\",\n    \"author\": \"贝尔纳・韦尔贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510078-224217?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间旅行者年鉴（全四册）\",\n    \"author\": \"安・范德米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510300-1ad927?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末日之书\",\n    \"author\": \"康妮・威利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510297-04da08?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯火管制·警报解除\",\n    \"author\": \"康妮・威利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510384-9917a8?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我这样的机器\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510408-102979?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央星站\",\n    \"author\": \"拉维・提德哈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510486-d048f0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河边缘系列（共五册）\",\n    \"author\": \"迈克・雷斯尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510852-ec8c30?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星之继承者（全3册）\",\n    \"author\": \"詹姆斯˙P.霍根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510915-dadc87?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的星阵（全三册）\",\n    \"author\": \"尼尔・斯蒂芬森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511089-093e8d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于那个人的备忘录\",\n    \"author\": \"小林泰三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511449-1dfbff?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易碎品\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511521-d3a748?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图案人\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511650-6f216a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷·布拉德伯里短篇杰作精选集（全4册）\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512142-18c417?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星河战队\",\n    \"author\": \"罗伯特・海因莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512394-fa353d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的世界\",\n    \"author\": \"汤姆・斯维特里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512406-c95da5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒悬的天空\",\n    \"author\": \"程婧波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513051-7f9308?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来：人类的征途\",\n    \"author\": \"今何在\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513102-f953a2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类重启\",\n    \"author\": \"亚历山大・温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513312-f626c6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电子脑叶\",\n    \"author\": \"野崎惑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513429-a35151?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的宠物是个人\",\n    \"author\": \"艾米・利尔沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513573-07ea89?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫比乌斯时空\",\n    \"author\": \"顾适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004302-23ec80?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"造物者之歌\",\n    \"author\": \"狷狂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004242-1d4628?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼吸\",\n    \"author\": \"特德・姜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004239-b39688?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师的盛宴\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003834-8b69c8?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小行星掉在下午\",\n    \"author\": \"沈大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002790-45a845?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆爱玛侬\",\n    \"author\": \"梶尾真治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001452-bb9389?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快乐贩卖机\",\n    \"author\": \"凯蒂・威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本沉没\",\n    \"author\": \"小松左京\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997774-4d5a8c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十月国度\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996484-1dafee?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地心游记（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交错的世界\",\n    \"author\": \"詹姆斯・冈恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994981-3f09d3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变化的位面\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992251-370b13?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八十天环游地球（读客经典）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992194-dd571f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰上斯芬克斯\",\n    \"author\": \"儒尔・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日永别\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991768-6563a5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光狂想曲\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰坦的女妖\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989920-397d08?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科幻大师威尔斯精选集\",\n    \"author\": \"赫伯特・乔治・威尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988489-c865c5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水刀子\",\n    \"author\": \"保罗・巴奇加卢皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987310-e009b7?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是我想多了吗？\",\n    \"author\": \"新科学家杂志/邱涛涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来机器城\",\n    \"author\": \"燕垒生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985534-578df5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进阶\",\n    \"author\": \"天降龙虾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985267-e969dd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦蛇\",\n    \"author\": \"冯达·N.麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984835-beb8f9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球编年史（套装全七册）\",\n    \"author\": \"撒迦利亚・西琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人幸免\",\n    \"author\": \"奥马尔・阿卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巧合制造师\",\n    \"author\": \"约夫・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984553-fa83dc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命引擎系列四部曲\",\n    \"author\": \"菲利普・瑞弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983971-94980a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"御龙记\",\n    \"author\": \"邢立达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053727-1ac22b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略级天使\",\n    \"author\": \"白伯欢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052299-3d2050?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨狗空间\",\n    \"author\": \"卧斧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051516-baea86?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因壶\",\n    \"author\": \"冈岛二人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051378-057ad5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣天秤星\",\n    \"author\": \"彼得・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050919-7cecbb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿瑟·克拉克科幻经典（套装三本）\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050493-92bbe3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星三部曲\",\n    \"author\": \"金・斯坦利・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050118-f7ad9b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困惑的三文鱼\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到敌托邦\",\n    \"author\": \"戈登・范・格尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049440-137c79?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅格时空大冒险（套装全5册）\",\n    \"author\": \"马德琳・英格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涌变\",\n    \"author\": \"丹尼尔・苏亚雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048645-d302a7?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双子杀手\",\n    \"author\": \"泰坦图书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047988-81f498?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自指引擎\",\n    \"author\": \"圆城塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045945-2bd0b3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵魂漫长而黑暗的茶点时间\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045672-dda13f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代体\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045411-ec3f9f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下町火箭\",\n    \"author\": \"池井户润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044826-9f3e2b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉步男\",\n    \"author\": \"小林泰三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044337-709ec2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球无应答\",\n    \"author\": \"王诺诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043929-c25390?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物的终结\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043734-88cbdf?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人的战争\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043710-92e2a9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔兽世界编年史史诗级套装\",\n    \"author\": \"克里斯・梅森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043194-1328e2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高堡奇人\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042756-6a157f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流吧！我的眼泪\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042693-17f1fb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰冻时光之窗\",\n    \"author\": \"尤里・维尼楚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042510-b9497c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尤比克\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042339-ab4228?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星孤儿\",\n    \"author\": \"刘洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041823-ce2895?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水形物语\",\n    \"author\": \"吉尔莫・德尔・托罗/丹尼尔・克劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041067-14f002?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神秘博士\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041031-2436e1?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上的女儿们\",\n    \"author\": \"珍妮・梅拉米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040929-da7f44?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙丘六部曲\",\n    \"author\": \"弗兰克・赫伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040926-a4d303?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侏罗纪公园（套装全2册）\",\n    \"author\": \"迈克尔・克莱顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039933-4d9ffe?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿梭时间的女孩\",\n    \"author\": \"瑞萨・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039570-f8f47c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彩虹尽头\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039390-a9f532?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜袭动物园\",\n    \"author\": \"比尔・布龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039288-50ece6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真名实姓\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039282-aee0e3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空旅行指南\",\n    \"author\": \"尼尔·F. 科明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039180-ff8b0d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈利的十五次人生\",\n    \"author\": \"克莱尔・诺丝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039090-c3abbc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒潮\",\n    \"author\": \"陈楸帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039060-191f82?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的新生\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038802-5275a0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的呼唤\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038523-3217f5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球飞船\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失控的地球\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038337-71ff2e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球的回忆\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037857-e299ab?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河界区三部曲\",\n    \"author\": \"弗诺・文奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037371-702f6f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100：科幻之书（套装共4册）\",\n    \"author\": \"安・范德米尔/杰夫・范德米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035952-a150ea?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微宇宙的上帝\",\n    \"author\": \"西奥多・斯特金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035316-79f03b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华氏451\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035076-d9ac4f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束（理想国）\",\n    \"author\": \"丹尼尔・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Year of the Flood\",\n    \"author\": \"Margaret Atwood\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034677-627783?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯癫亚当\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034611-1bb945?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洪水之年\",\n    \"author\": \"玛格丽特・阿特伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034530-12e063?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束\",\n    \"author\": \"丹尼尔・凯斯/罗杰・泽拉兹尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034419-a7595b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜂巢\",\n    \"author\": \"刘洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033603-f6beee?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"环界（套装共4册）\",\n    \"author\": \"铃木光司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033525-63923d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利维坦号战记（套装共4册）\",\n    \"author\": \"斯科特・维斯特菲尔德/基斯・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳经典科幻故事套装（全10册）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033261-60db9a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11/22/63\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033240-8ee3ff?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美妙的新世界（企鹅经典）\",\n    \"author\": \"阿道斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032943-1adcbe?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星际迷航：红衫\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032931-297bdc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毛毛星球\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032928-eec215?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编码宝典（全三册）\",\n    \"author\": \"尼尔・斯蒂芬森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032895-0e9ef5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双星\",\n    \"author\": \"罗伯特・海因莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032667-da2c4f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少数派报告\",\n    \"author\": \"菲利普・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032211-328213?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海堡垒\",\n    \"author\": \"江南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032085-57b5df?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空间三部曲（套装共3册）\",\n    \"author\": \"C.S.刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032082-f7e4b5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Calculating Stars\",\n    \"author\": \"Mary Robinette Kowal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀敌算法\",\n    \"author\": \"刘宇昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031659-2ab709?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类之子\",\n    \"author\": \"P.D.詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031398-7de6ed?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2061：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超新星纪元\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031290-a6d5bf?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2010：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031092-6ce749?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宇宙超度指南\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云球（第一部）\",\n    \"author\": \"白丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029952-67bb0c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太警察工会\",\n    \"author\": \"迈克尔・夏邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029757-2a1eee?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来病史\",\n    \"author\": \"陈楸帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029727-5e3866?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029631-0c12fd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷切帝国2\",\n    \"author\": \"安・莱基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029550-009959?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喝掉这 “罐”书\",\n    \"author\": \"阿米殿下\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029373-48052b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒先生\",\n    \"author\": \"亚伦・锡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029370-2862a0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本未来时\",\n    \"author\": \"[美]真澄· 华盛顿 编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029313-b99a3a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类帝国的覆灭\",\n    \"author\": \"常博逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美的真空\",\n    \"author\": \"斯坦尼斯拉夫・莱姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028944-66d399?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷沙革村的读墨人\",\n    \"author\": \"托马斯・奥尔德・赫维尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028404-d56f56?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九黎传说\",\n    \"author\": \"莫溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028239-ece9b6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人间\",\n    \"author\": \"阿缺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028071-d39120?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“雨果奖”得主郝景芳科幻短篇合集\",\n    \"author\": \"郝景芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028059-8aff1c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿努比斯之门\",\n    \"author\": \"提姆・鲍尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027972-26c9ea?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个人类\",\n    \"author\": \"马克・奥康奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天意\",\n    \"author\": \"钱莉芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027627-cbedf4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航3\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027561-bda2a4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能预警\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027366-bb5633?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜘蛛男孩\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027294-bd7dfc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳科幻经典（套装共9册）\",\n    \"author\": \"凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027225-b52df3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷切帝国：正义号的觉醒\",\n    \"author\": \"安・莱基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027027-452134?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家族八景\",\n    \"author\": \"筒井康隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026409-9a007f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔法传奇系列（共3册）\",\n    \"author\": \"杰夫・惠勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026412-2b400f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"控梦东京\",\n    \"author\": \"汤介生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026226-d799c7?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海：另一个未知的宇宙\",\n    \"author\": \"弗兰克・施茨廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026199-42f833?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘慈欣短篇科幻小说合集\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025713-6021fa?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"球状闪电\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025551-8733aa?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群\",\n    \"author\": \"弗兰克・施茨廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025491-553cf5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生算法\",\n    \"author\": \"陈楸帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025482-16b6bb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日重现\",\n    \"author\": \"张寒寺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025080-f26716?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全能侦探社\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025050-f8a066?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本合众国\",\n    \"author\": \"彼得・特莱亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024858-d14c17?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Paper Menagerie and Other Stories\",\n    \"author\": \"Ken Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024654-266691?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光尽头\",\n    \"author\": \"珍妮・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024645-7fef5c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三体（读客版）\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024489-51e50e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇动物：格林德沃之罪\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024141-baf465?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间回旋\",\n    \"author\": \"罗伯特・威尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024120-f2c94d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神的九十亿个名字\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024108-f7933b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱博维茨的赞歌\",\n    \"author\": \"小沃尔特・M.米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024009-650207?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自新世界（全2册）\",\n    \"author\": \"贵志祐介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023994-8642d9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之墟\",\n    \"author\": \"宝树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023874-05e0a5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好兆头\",\n    \"author\": \"特里・普拉切特/尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023736-2634aa?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启人\",\n    \"author\": \"艾米・亭特拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023616-224cdd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启人：终结篇\",\n    \"author\": \"艾米・亭特拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023604-fdee86?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的进化者\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023286-1cfd91?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆迷踪\",\n    \"author\": \"启山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023262-aad346?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发条女孩\",\n    \"author\": \"保罗・巴奇加卢皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023145-b737fe?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022938-041ae2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔戒\",\n    \"author\": \"J.R.R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022926-610c0f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流浪地球\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022911-83ea9f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间之河\",\n    \"author\": \"晋康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022404-7f7923?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超频交易商\",\n    \"author\": \"谢云宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022317-c95b84?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间不存在\",\n    \"author\": \"韩松/刘宇昆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022311-2d6973?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湿婆之舞\",\n    \"author\": \"江波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022290-a4b08f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Selected Stories of Philip K. Dick\",\n    \"author\": \"Dick, Philip K.; Lethem, Jonathan;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022257-b9df83?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二个明天\",\n    \"author\": \"刘慈欣等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022230-561396?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骸骨迷宫\",\n    \"author\": \"弗朗西斯卡・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021174-49eafd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Grace of Kings\",\n    \"author\": \"Ken Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020802-e27019?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Children of Time\",\n    \"author\": \"Adrian Tchaikovsky\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020736-687584?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自12个星球的敌人\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020703-2a774b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与罗摩相会\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020670-98bbf9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的殖民星球\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020514-ac3aac?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林中秘族\",\n    \"author\": \"柳原汉雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020478-8eaca5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿瑟·克拉克经典科幻套装（套装共4册）\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020415-ea2a46?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云图\",\n    \"author\": \"大卫・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020193-f1d6d4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个世界\",\n    \"author\": \"弗朗西斯科 · 沃索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019878-a9c475?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天意（典藏版）\",\n    \"author\": \"钱莉芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019788-2e4c1a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年法（全2册）\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019740-f1d8ac?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫士唐望的教诲\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019626-626739?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全息玫瑰碎片\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019599-8065bf?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本沉没（无删减典藏版）\",\n    \"author\": \"小松左京\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019296-b1094b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河系搭车客指南5部曲\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019305-acbfb5?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神们自己\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019239-8d9184?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点遗民\",\n    \"author\": \"刘宇昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019227-8d71a7?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵舰队\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019146-a9411c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佐伊的战争\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018507-59ad7e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩家1号\",\n    \"author\": \"恩斯特・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018486-7ec891?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“破碎的星球”三部曲\",\n    \"author\": \"N.K.杰米辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018225-57f19b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗落的南境（套装共3册）\",\n    \"author\": \"杰夫・范德米尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017925-e0c5a3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克隆人科幻两部曲\",\n    \"author\": \"南希・法默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017907-9055bc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类决裂\",\n    \"author\": \"约翰・斯卡尔齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017856-f3f6a9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星编年史\",\n    \"author\": \"雷・布拉德伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017820-1ccbf2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017796-d79478?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者2：反叛者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017793-8fd6cd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分歧者3：忠诚者\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017790-3ab567?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒲公英王朝：七王之战\",\n    \"author\": \"刘宇昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017466-93852e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安德的游戏三部曲\",\n    \"author\": \"奥森・斯科特・卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017406-384a04?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡刻痕\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017325-298780?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗的左手（套装共3册）\",\n    \"author\": \"厄休拉・勒古恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017001-1450cb?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人之彼岸\",\n    \"author\": \"郝景芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016878-0a3553?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来镜像\",\n    \"author\": \"刘慈欣/夏笳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016164-7dd1f6?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星崛起3：晨色之星\",\n    \"author\": \"皮尔斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014709-afb2b9?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩3：神秘人\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014673-5d684d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"6号泵\",\n    \"author\": \"保罗・巴奇加卢皮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014658-f7fe68?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"移动迷宫（全三册）\",\n    \"author\": \"詹姆斯・达什纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014538-12dc40?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第13个小时\",\n    \"author\": \"理查德・道许\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014388-3c060e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Morning Star\",\n    \"author\": \"Pierce Brown\",\n    \"link\": \"链接未找到\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格里莎三部曲\",\n    \"author\": \"李・巴杜格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013596-7d4d93?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经漫游者\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013500-119668?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零伯爵：神经漫游者2\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013518-991e5f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重启蒙娜丽莎：神经漫游者3\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013488-e4b0f0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让时间停止的女孩\",\n    \"author\": \"罗伯特・富兰克林・杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013245-4e6466?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩天楼\",\n    \"author\": \"J.G.巴拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012369-d8f3e2?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星崛起2：黄金之子\",\n    \"author\": \"皮尔斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011604-a69006?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑渊洁成人大长篇小说系列三部曲\",\n    \"author\": \"郑渊洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011334-a9920c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神經喚術士\",\n    \"author\": \"威廉・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011271-f9046e?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美妙的新世界\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010503-709f5d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿游戏（套装共3册）\",\n    \"author\": \"苏珊・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010443-27b9b4?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫：虫子的世界\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010290-eebe54?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点天空\",\n    \"author\": \"查尔斯・斯特罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010020-b23b00?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"化学家（套装共2册）\",\n    \"author\": \"斯蒂芬妮・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009945-e38c49?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来边缘\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009504-664435?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔纳科幻经典（套装11册）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009561-49bf9f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：基地七部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009342-12faad?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：帝国三部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009324-3d749b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：机器人五部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009321-283a4f?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间移民\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009258-2d1c69?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的图书馆\",\n    \"author\": \"司各特・霍金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009051-91771d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反乌托邦三部曲\",\n    \"author\": \"扎米亚京/阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008736-24eb0d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穹顶之下\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008688-40d3dd?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"环太平洋\",\n    \"author\": \"亚历克斯・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008577-cd05c3?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒的终结\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007860-8793c1?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八十天环游地球（译文名著精选）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007725-e9294d?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降临\",\n    \"author\": \"特德・姜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007533-b1388b?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外星人已潜伏地球5000年\",\n    \"author\": \"吉姆・马尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007305-7428fc?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天赋者\",\n    \"author\": \"林洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007005-788784?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海伯利安四部曲（套装共4册）\",\n    \"author\": \"丹·西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006975-c613a8?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星崛起\",\n    \"author\": \"皮尔斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006954-0482f0?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赡养人类\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006903-d62a19?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星救援\",\n    \"author\": \"安迪·威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006720-999daf?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三体全集\",\n    \"author\": \"刘慈欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005103-ff0b5c?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗兰肯斯坦\",\n    \"author\": \"玛丽・雪莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005019-1f783a?p=8866\",\n    \"category\": \"科幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫六百年\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001329-12e528?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大故宫六百年风云史\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫兽谱\",\n    \"author\": \"小海/夏雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的清宫海错图\",\n    \"author\": \"夏雪著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫看大门\",\n    \"author\": \"维一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫物语\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019347-0c448f?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫修文物\",\n    \"author\": \"萧寒/绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个故宫的离合\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866\",\n    \"category\": \"故宫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗塔系列（套装共8册）\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015876-92b687?p=8866\",\n    \"category\": \"黑暗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS重构：样式表性能调优\",\n    \"author\": \"Steve Lindstrom\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017682-29904e?p=8866\",\n    \"category\": \"CSS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS禅意花园（修订版）\",\n    \"author\": \"Dave Shea/Mollv E\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866\",\n    \"category\": \"CSS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通CSS（第2版）\",\n    \"author\": \"Andy Budd/Cameron Moll\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866\",\n    \"category\": \"CSS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CSS设计指南（第3版）\",\n    \"author\": \"Charles Wyke-Smith\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866\",\n    \"category\": \"CSS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子\",\n    \"author\": \"和辻哲郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509535-569088?p=8866\",\n    \"category\": \"孔子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子的故事（全彩美绘本）\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985696-3603c8?p=8866\",\n    \"category\": \"孔子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子的故事\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985597-1b96e0?p=8866\",\n    \"category\": \"孔子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子大历史\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866\",\n    \"category\": \"孔子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绩效使能：超越OKR\",\n    \"author\": \"况阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866\",\n    \"category\": \"OKR\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR：源于英特尔和谷歌的目标管理利器\",\n    \"author\": \"保罗・尼文/本・拉莫尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866\",\n    \"category\": \"OKR\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四的另一面\",\n    \"author\": \"杨念群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030243-59c30f?p=8866\",\n    \"category\": \"五四\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触摸历史与进入五四\",\n    \"author\": \"陈平原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866\",\n    \"category\": \"五四\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊与灰鹰（套装共3册）\",\n    \"author\": \"丽贝卡・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866\",\n    \"category\": \"巴尔干\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻蜂记\",\n    \"author\": \"戴夫・古尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491859-9bd801?p=8866\",\n    \"category\": \"昆虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昆虫记（全10卷）\",\n    \"author\": \"法布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510141-5c4c28?p=8866\",\n    \"category\": \"昆虫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦理学知性改进论\",\n    \"author\": \"斯宾诺莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福哲学书\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036993-8eb226?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的博弈\",\n    \"author\": \"约翰・戈特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021213-4c529b?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人溺水\",\n    \"author\": \"拉里莎・麦克法夸尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你会杀死那个胖子吗？\",\n    \"author\": \"戴维・埃德蒙兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866\",\n    \"category\": \"伦理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新认识资本主义三部曲\",\n    \"author\": \"娜奥米・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866\",\n    \"category\": \"地球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙时代：颠覆未来的技术变革与商业图景\",\n    \"author\": \"金相允\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491193-14b1ac?p=8866\",\n    \"category\": \"元宇宙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个李白\",\n    \"author\": \"王充闾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866\",\n    \"category\": \"李白\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李白传\",\n    \"author\": \"李长之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866\",\n    \"category\": \"李白\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李太白全集\",\n    \"author\": \"李白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866\",\n    \"category\": \"李白\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密腾讯帝国（全6册）\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866\",\n    \"category\": \"腾讯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腾讯传1998-2016\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866\",\n    \"category\": \"腾讯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识社会中的大学\",\n    \"author\": \"杰勒德・德兰迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004371-45c9cb?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的实践\",\n    \"author\": \"野中郁次郎/西原文乃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的方法论\",\n    \"author\": \"野中郁次郎/绀野登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991945-e87f6d?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜航船\",\n    \"author\": \"张岱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识大迁移\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019845-51d7de?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识变现\",\n    \"author\": \"萧秋水/剽悍一只猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018279-eb39b7?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小学问\",\n    \"author\": \"黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017124-975340?p=8866\",\n    \"category\": \"知识\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群的进化\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866\",\n    \"category\": \"邓巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的亲密关系\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866\",\n    \"category\": \"邓巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业与帝国：英国的现代化历程\",\n    \"author\": \"埃里克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866\",\n    \"category\": \"工业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年变革者\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866\",\n    \"category\": \"梁启超\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章传\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866\",\n    \"category\": \"梁启超\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东亚近代文明史上的梁启超\",\n    \"author\": \"狭间直树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866\",\n    \"category\": \"梁启超\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关羽：神化的《三国志》英雄\",\n    \"author\": \"渡边义浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866\",\n    \"category\": \"关羽\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪资本论+新资本论（套装共2册）\",\n    \"author\": \"托马斯・皮凯蒂/向松祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008418-dbe827?p=8866\",\n    \"category\": \"资本论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑老绘画陈列馆（伟大的博物馆）\",\n    \"author\": \"西尔维娅・波尔盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国艺术精神\",\n    \"author\": \"徐复观\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990142-c2cdbd?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国绘画史\",\n    \"author\": \"陈师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界美术名作二十讲\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032403-de23a0?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马博尔盖塞美术馆\",\n    \"author\": \"弗朗切斯卡・卡丝特丽雅・马尔凯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹国家博物馆\",\n    \"author\": \"达尼埃拉・塔拉布拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿美术史著作经典（共3册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010881-0327d9?p=8866\",\n    \"category\": \"美术\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福格行为模型\",\n    \"author\": \"B.J.福格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499539-38be34?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何戒掉坏习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚持，一种可以养成的习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003810-be7b78?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出众，从改变习惯开始\",\n    \"author\": \"马克・列克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精彩人生的一分钟小习惯\",\n    \"author\": \"冲幸子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控习惯\",\n    \"author\": \"詹姆斯・克利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的第八个习惯\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"习惯的力量（图文精编版）\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简主义：活出生命真意\",\n    \"author\": \"乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866\",\n    \"category\": \"习惯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋论（全本全注全译）\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866\",\n    \"category\": \"王夫之\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船山遗书\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866\",\n    \"category\": \"王夫之\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"入夜识\",\n    \"author\": \"FL-ZC小花/何敬尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498510-74f5f2?p=8866\",\n    \"category\": \"妖怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妖怪大全\",\n    \"author\": \"孙见坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866\",\n    \"category\": \"妖怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈：日本动漫中的传统妖怪\",\n    \"author\": \"周英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866\",\n    \"category\": \"妖怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Redis实战\",\n    \"author\": \"Josiah L. Carlson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021837-2f3bb0?p=8866\",\n    \"category\": \"数据库\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"MongoDB实战\",\n    \"author\": \"Kyle Banker\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021072-264d70?p=8866\",\n    \"category\": \"数据库\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本最危险的书\",\n    \"author\": \"克里斯托夫·克里布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866\",\n    \"category\": \"日耳曼\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨：一部自然与文化的历史\",\n    \"author\": \"辛西娅・巴内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866\",\n    \"category\": \"雨\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国的策套装（全五册）\",\n    \"author\": \"许葆云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509265-83b7d0?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋那杯茶，战国这碗酒（套装共4册）\",\n    \"author\": \"南柯月初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"称霸（上下册）\",\n    \"author\": \"刘勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大争之世：战国\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044667-a224f9?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国史料编年辑证（全二册）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025077-d7a712?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾志刚说春秋×说战国（全十二册）\",\n    \"author\": \"贾志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国：典藏套装版（全三册）\",\n    \"author\": \"高兴宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"其实我们一直活在春秋战国（套装共6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲先秦·战国纵横\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005064-2ad184?p=8866\",\n    \"category\": \"战国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死秦始皇\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004158-8201b6?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"始皇帝：秦始皇和他生活的时代\",\n    \"author\": \"鹤间和幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992335-5f1bd7?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦始皇：创造力一统天下\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032160-073320?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一帝秦始皇（上下全2册）\",\n    \"author\": \"王立群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦始皇：穿越现实与历史的思辨之旅\",\n    \"author\": \"吕世浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010635-d004d7?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦崩：从秦始皇到刘邦\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005109-a88027?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国（全新修订版）\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004890-cf3460?p=8866\",\n    \"category\": \"秦始皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"概念与范畴\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989650-26d77f?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观念的力量\",\n    \"author\": \"以赛亚・伯林爵士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神文时代\",\n    \"author\": \"孙英刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985255-8c1141?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呻吟语（全本全注全译）\",\n    \"author\": \"吕坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才为何成群地来\",\n    \"author\": \"王汎森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱默生和中国\",\n    \"author\": \"钱满素\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048462-5cb91a?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五十年来的中国哲学\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044184-1eb4a5?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构主义\",\n    \"author\": \"高宣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037434-aff26f?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治思想的社会史：公民到领主\",\n    \"author\": \"艾伦・梅克辛斯・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打开：周濂的100堂西方哲学课\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐公元年\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030429-4057fa?p=8866\",\n    \"category\": \"思想史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术陷阱\",\n    \"author\": \"卡尔・贝内迪克特・弗雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能之不能\",\n    \"author\": \"马兆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510333-472d20?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崛起的超级智能\",\n    \"author\": \"刘锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995242-8be920?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能机器如何思考\",\n    \"author\": \"肖恩・格里什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人驾驶\",\n    \"author\": \"胡迪・利普森/梅尔芭・库曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983344-4b5bf8?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能语音时代\",\n    \"author\": \"詹姆斯・弗拉霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982510-7f3725?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代，你的工作还好吗？\",\n    \"author\": \"渠成/陈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能十万个为什么\",\n    \"author\": \"智能相对论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051492-7ab628?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动手学深度学习\",\n    \"author\": \"阿斯顿・张等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能城市\",\n    \"author\": \"卡洛・拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人诞生\",\n    \"author\": \"稻见昌彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能会抢哪些工作\",\n    \"author\": \"理查德・萨斯坎德/丹尼尔・萨斯坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI的25种可能\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级思维\",\n    \"author\": \"托马斯·W·马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给大家的AI极简史\",\n    \"author\": \"托马斯・拉姆齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043935-90a7c1?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的人工智能\",\n    \"author\": \"布莱・惠特比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036048-56b816?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么\",\n    \"author\": \"朱迪亚・珀尓/达纳・麦肯齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习入门：基于Python的理论与实现\",\n    \"author\": \"斋藤康毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器人共舞\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云球（第一部）\",\n    \"author\": \"白丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029952-67bb0c?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习：智能时代的核心驱动力量\",\n    \"author\": \"特伦斯・谢诺夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029667-77e164?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗知识：机器认知如何颠覆商业和社会\",\n    \"author\": \"王维嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029484-71f57f?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喝掉这 “罐”书\",\n    \"author\": \"阿米殿下\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029373-48052b?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类帝国的覆灭\",\n    \"author\": \"常博逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能的进化\",\n    \"author\": \"赫克托・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能简史\",\n    \"author\": \"约翰・马尔科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028056-700487?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI极简经济学\",\n    \"author\": \"阿杰伊・阿格拉沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026862-49e254?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷脸背后\",\n    \"author\": \"张重生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不会被机器替代的人\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI·未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的极致：漫谈人工智能\",\n    \"author\": \"集智俱乐部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022236-849651?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人叛乱\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021507-5497dc?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代的教育革命\",\n    \"author\": \"王作冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019908-719008?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智社会\",\n    \"author\": \"马文・明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018900-706749?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟人\",\n    \"author\": \"玛蒂娜・罗斯布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018252-b38b81?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习\",\n    \"author\": \"伊恩・古德费洛/约书亚・本吉奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013449-ede60c?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能革命\",\n    \"author\": \"李彦宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012960-18d4fa?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI：人工智能的本质与未来\",\n    \"author\": \"玛格丽特・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866\",\n    \"category\": \"人工智能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那间街角的茶铺\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491775-2dbac0?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书是最对得起付出的一件事\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491988-526c88?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声誉\",\n    \"author\": \"唐诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六神磊磊读金庸\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501339-8defa2?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡澜生活美学系列（套装共9册）\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509004-95a6e4?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全套系中文版陈舜臣随笔集\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001860-bff3b9?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的耳朵\",\n    \"author\": \"周云蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999832-881ef8?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯骥才记述文化五十年（全四册）\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994882-c8931c?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余秋雨作品全集（套装共12册）\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987538-9bf3bc?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评说历史系列丛书（套装共7册）\",\n    \"author\": \"夏坚勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在伏龙芝学军事\",\n    \"author\": \"郝智慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声色野记\",\n    \"author\": \"侯磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是孤独的旅程\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观音在远远的山上\",\n    \"author\": \"伊沙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050556-84c9cc?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张岪与木心\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔杂文全集（全2册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都嘟合集（套装共2册）\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037935-733bef?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落论（坂口安吾系列作品）\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036426-ed96c8?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的精神家园\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034980-0be87d?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下鲍勃·迪伦与老美国\",\n    \"author\": \"格雷尔・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韩寒的杂文们（套装共4册）\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清欢三卷（唯美珍藏版）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寥寥中年事\",\n    \"author\": \"秋色连波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学大师老舍精选杂文集（套装八册）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国家书\",\n    \"author\": \"本杰明・富兰克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由在高处\",\n    \"author\": \"熊培云\",\n    \"link\": \"链接未找到\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给布里安娜的卡片\",\n    \"author\": \"希瑟・麦克马拉米/威廉・克洛伊尔\",\n    \"link\": \"链接未找到\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大叔\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026829-a09868?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传声筒\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025599-9a708c?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有话说\",\n    \"author\": \"崔永元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"然而，很美：爵士乐之书\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019851-676e46?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键词\",\n    \"author\": \"梁文道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019260-b47d26?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李敖混世宝典三部曲\",\n    \"author\": \"李敖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018234-614afb?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在这复杂世界里\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016401-5810ba?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧山河\",\n    \"author\": \"刀尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"送你一颗子弹\",\n    \"author\": \"刘瑜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014244-82b233?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只特立独行的猪（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011154-36b895?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲看水浒\",\n    \"author\": \"十年砍柴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010191-d34bba?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻抄袭历史\",\n    \"author\": \"宋燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"容忍比自由更重要\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009045-8da7c3?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生有何意义\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们能做什么\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文选\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008550-543725?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福了吗？\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的大多数（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打回原形\",\n    \"author\": \"朱新建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要活的有尊严\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005640-fbc1a6?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年之痒\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我读书少，你可别骗我\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005361-2c92f3?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与看客\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005157-06675a?p=8866\",\n    \"category\": \"杂文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑力升级手册\",\n    \"author\": \"杰夫・布朗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024762-dccfd0?p=8866\",\n    \"category\": \"教学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湛庐文化心视界分心系列（套装共4册）\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012798-3a30e1?p=8866\",\n    \"category\": \"教学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生只为守敦煌\",\n    \"author\": \"叶文玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004449-d3ed62?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我心归处是敦煌\",\n    \"author\": \"樊锦诗口述/顾春芳撰写\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：众人受到召唤\",\n    \"author\": \"生活月刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌本纪\",\n    \"author\": \"叶舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033609-6e7d3e?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说敦煌二五四窟\",\n    \"author\": \"陈海涛/陈琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866\",\n    \"category\": \"敦煌\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺爱\",\n    \"author\": \"罗伯特・纳伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866\",\n    \"category\": \"疗愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这不是你的错\",\n    \"author\": \"马克・沃林恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866\",\n    \"category\": \"疗愈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸神的黄昏\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866\",\n    \"category\": \"太平洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争\",\n    \"author\": \"赫克特·C. 拜沃特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866\",\n    \"category\": \"太平洋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时机管理：完美时机的隐秘模式\",\n    \"author\": \"丹尼尔・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866\",\n    \"category\": \"时机\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝暮集\",\n    \"author\": \"呼葱觅蒜/白落梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866\",\n    \"category\": \"画册\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：梵高\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866\",\n    \"category\": \"画册\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师经典佳作：莫奈\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866\",\n    \"category\": \"画册\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方绘画大师原作：塞尚\",\n    \"author\": \"牛雪彤/唐一帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026727-604405?p=8866\",\n    \"category\": \"画册\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公平之怒\",\n    \"author\": \"理查德・威尔金森/凯特・皮克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866\",\n    \"category\": \"公平\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思恩格斯文集1~10卷（套装共10册）\",\n    \"author\": \"中共中央马克思恩格斯列宁斯大林著作编译局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001404-2469af?p=8866\",\n    \"category\": \"马克思\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思博士论文\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044634-5ea046?p=8866\",\n    \"category\": \"马克思\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马克思与《资本论》\",\n    \"author\": \"大卫・哈维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029055-50e394?p=8866\",\n    \"category\": \"马克思\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命：只想陪在你身边\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866\",\n    \"category\": \"狗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是你爸爸\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034359-948c8d?p=8866\",\n    \"category\": \"王朔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看上去很美\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866\",\n    \"category\": \"王朔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫鸿经典作品集（套装10册）\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家宝藏（全3季）\",\n    \"author\": \"于蕾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟着文物穿越历史\",\n    \"author\": \"张志浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字与文物的故事（套装共4册）\",\n    \"author\": \"许进雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513744-067186?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良渚文明丛书\",\n    \"author\": \"浙江大学出版社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001587-15feaf?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文物中国史\",\n    \"author\": \"中国国家博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文物常识\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023637-a8bb06?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫修文物\",\n    \"author\": \"萧寒/绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866\",\n    \"category\": \"文物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋帝国的崛起\",\n    \"author\": \"安东・范德伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷兰海洋帝国史\",\n    \"author\": \"顾卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹：世界最自由城市的历史\",\n    \"author\": \"萧拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040344-803e71?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郁金香热\",\n    \"author\": \"迈克・达什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷沙革村的读墨人\",\n    \"author\": \"托马斯・奥尔德・赫维尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028404-d56f56?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰激凌家族\",\n    \"author\": \"恩斯特・凡德奎斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020658-1a3b66?p=8866\",\n    \"category\": \"荷兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心、脑与科学（二十世纪西方哲学经典）\",\n    \"author\": \"约翰・塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要如何衡量你的人生\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日一善（套装全4册）\",\n    \"author\": \"列夫・托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己和解\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福来自绝对的信任\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036834-77bd7f?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从受欢迎到被需要\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无量之网\",\n    \"author\": \"格里格．布莱登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头的咖啡馆\",\n    \"author\": \"约翰・史崔勒基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和繁重的工作一起修行\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029163-8fb11a?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"箭术与禅心\",\n    \"author\": \"奥根・赫立格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028221-f5198d?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果世事总能得偿所愿\",\n    \"author\": \"余儒海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027333-fd42c9?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跃升\",\n    \"author\": \"威廉・麦独孤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027246-69f74b?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵心小史\",\n    \"author\": \"小德兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025500-9364d3?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用安静改变世界\",\n    \"author\": \"拉塞尔・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023886-49af84?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超意识\",\n    \"author\": \"菲尔图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的天赋\",\n    \"author\": \"肯・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020910-0f5b1c?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卸下心头重担\",\n    \"author\": \"阿鲁老和尚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020496-159444?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹课程\",\n    \"author\": \"海伦・舒曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019197-f582a7?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲密关系：通往灵魂的桥梁\",\n    \"author\": \"克里斯多福・孟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017046-fa06c7?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岛上来信\",\n    \"author\": \"胡子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲出一个精彩故事\",\n    \"author\": \"麦成辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱是一切的答案\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013560-d25c4d?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长大后的世界\",\n    \"author\": \"罗曼・阿拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012951-aa9637?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太傻天书\",\n    \"author\": \"太傻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的力量（珍藏版）\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被讨厌的勇气\",\n    \"author\": \"岸见一郎/古贺史健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010347-03ea7c?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的朝圣\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009921-87bfcb?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的重建\",\n    \"author\": \"露易丝·海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我所有的朋友都死了（套装共2册）\",\n    \"author\": \"艾弗里・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866\",\n    \"category\": \"心灵\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆天才\",\n    \"author\": \"弗朗西斯卡・吉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866\",\n    \"category\": \"叛逆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲从与叛逆\",\n    \"author\": \"米歇尔・巴德利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866\",\n    \"category\": \"叛逆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥中国史（套装全11卷）\",\n    \"author\": \"费正清/崔瑞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011967-9e4705?p=8866\",\n    \"category\": \"剑桥\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密\",\n    \"author\": \"麦家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033438-7ed22e?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琥珀（套装共3册）\",\n    \"author\": \"闻人悦阅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032733-795627?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北平行动1925\",\n    \"author\": \"银子辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032163-bc75fe?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽\",\n    \"author\": \"刘天壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029829-454eb2?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面具\",\n    \"author\": \"王小枪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028050-fc3745?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装者\",\n    \"author\": \"张勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020640-b71138?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"于无声处\",\n    \"author\": \"高满堂/张浩民/曲怡琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019869-b636c4?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和平饭店\",\n    \"author\": \"肖午/杨树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019752-a8add3?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风筝\",\n    \"author\": \"退色的子弹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017157-972251?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林孤谍\",\n    \"author\": \"约瑟夫・卡农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻雀\",\n    \"author\": \"海飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006330-3fd9d3?p=8866\",\n    \"category\": \"谍战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋代中国的改革\",\n    \"author\": \"刘子健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495447-1ca964?p=8866\",\n    \"category\": \"宋代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋之变，1063-1086\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999199-15db8f?p=8866\",\n    \"category\": \"宋代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法罗盘\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866\",\n    \"category\": \"法治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈正义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866\",\n    \"category\": \"法治\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭的失落之城\",\n    \"author\": \"斯蒂文・朗西曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491781-3f42cf?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵帝国拜占庭\",\n    \"author\": \"理查德・菲德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭一千年\",\n    \"author\": \"狄奥尼修斯・史塔克普洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔三城记\",\n    \"author\": \"贝塔妮・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史\",\n    \"author\": \"A.A.瓦西列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国大战略\",\n    \"author\": \"爱德华·N.勒特韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866\",\n    \"category\": \"拜占庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凝视上帝\",\n    \"author\": \"西蒙・赫弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499425-8eff3d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代\",\n    \"author\": \"朱迪丝・弗兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500562-7ac52d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金线：织物如何改变了历史？\",\n    \"author\": \"卡西亚・圣克莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501624-793bc8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国文学史全系（套装共5本）\",\n    \"author\": \"李赋宁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508770-b38c29?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我这样的机器\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510408-102979?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·克伦威尔\",\n    \"author\": \"特蕾西・博尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511191-682a44?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绅士肖像：毛姆短篇小说全集4\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511293-da7703?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亨利八世与都铎王朝\",\n    \"author\": \"约翰・马图夏克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511740-575290?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶病年代\",\n    \"author\": \"埃德・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512205-c22f7a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC苏格兰史\",\n    \"author\": \"尼尔・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝帝国：英国海军的兴衰\",\n    \"author\": \"本・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳尼亚传奇（果麦经典）\",\n    \"author\": \"C. S. 刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003126-d6c87d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心有猛虎，细嗅蔷薇（果麦经典）\",\n    \"author\": \"西格夫里・萨松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老爸乔治的烦恼\",\n    \"author\": \"马克・哈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001620-a75c71?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时装（牛津通识读本）\",\n    \"author\": \"丽贝卡・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001443-1e6b5d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自深深处（果麦经典）\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000213-ef7333?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国套装（共2册）\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999904-67d00c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希望\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997777-1a2e95?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰晤士：大河大城\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终于\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997603-36513e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"母乳\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997357-beaba0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算了\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996913-f147a5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噩耗\",\n    \"author\": \"爱德华・圣奥宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996463-7a111b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史：从拜占庭建城到君士坦丁堡陷落\",\n    \"author\": \"查尔斯・奥曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996493-f3ded1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄酱之云\",\n    \"author\": \"安娜贝儿・皮彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995293-e7ed6e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺曼征服\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写在身体上\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994540-f64a45?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不一样的文学史\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶的肉身\",\n    \"author\": \"伊夫林・沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985819-c6fc66?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简朴的哲学\",\n    \"author\": \"埃默里斯・韦斯特科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984784-db9149?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰王\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983881-bdebff?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一片树叶的颤动\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054492-7e8119?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔战时文集\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西太后：薇薇安·威斯特伍德\",\n    \"author\": \"薇薇安・威斯特伍德/伊恩・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054321-5d3b9d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"糖与香料\",\n    \"author\": \"萨菲娜・德福奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053121-74a2f5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重逢\",\n    \"author\": \"弗雷德・乌尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静物\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052191-7b68a7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理论的危机\",\n    \"author\": \"斯科特・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生姜头，你疯了\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051588-88d28b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出防空洞\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051501-efedaf?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赖床的男人\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051324-774754?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴别塔\",\n    \"author\": \"A.S.拜厄特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050370-722d26?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"E.M.福斯特文集（套装共8册）\",\n    \"author\": \"E.M.福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049557-ddb05b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困惑的三文鱼\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚女王：帝国女统治者的秘密传记（全2册）\",\n    \"author\": \"茱莉娅・贝尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论人类的认识（校勘全译本）\",\n    \"author\": \"约翰・洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（纪念版）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“尤利西斯”三部曲（套装共3册）\",\n    \"author\": \"詹姆斯・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049059-191e8e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书店\",\n    \"author\": \"佩内洛普・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048501-57d0d1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蓝花\",\n    \"author\": \"佩内洛普・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048498-7b3dc7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔纪实作品全集（套装共3册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔小说全集（套装共6册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047130-74f0d5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅰ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中非湖区探险记Ⅱ\",\n    \"author\": \"理查德・F.伯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅱ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英殖民帝国\",\n    \"author\": \"阿尔弗雷德・考尔德科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠峰史诗\",\n    \"author\": \"荣赫鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萝西与苹果酒\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丛林之书（果麦经典）\",\n    \"author\": \"鲁德亚德・吉卜林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045132-c19a7a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日升之处\",\n    \"author\": \"A.W.金莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（果麦经典）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044751-279929?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一间自己的房间（作家榜经典文库）\",\n    \"author\": \"维吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044304-7ba850?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温莎王朝\",\n    \"author\": \"汤姆・利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代的她们\",\n    \"author\": \"杰奎琳・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆书籍史话\",\n    \"author\": \"大卫・皮尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造大英帝国\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国男孩\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱德华一世\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瘟疫年纪事（译文经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041763-ddc224?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔杂文全集（全2册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的流亡者\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国边缘\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040506-d747d7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单日人，双日人\",\n    \"author\": \"菲莉西亚・叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039492-8a2857?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海浪（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039150-6a4545?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游泳课\",\n    \"author\": \"克莱尔・富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038988-b719e8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥兰多（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038967-31be31?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达洛卫夫人（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038763-358ae0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗勒希（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038658-5b950b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小说与小说家（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038409-cb997a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度：百万叛变的今天\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世间之路\",\n    \"author\": \"V. S. 奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038304-7876a3?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼罗河上的惨案（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037980-5f4597?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（图注本套装共9册）\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038379-15f688?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯通与骑士伙伴\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037887-c76d6d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一九八四（译文经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037821-bebf0d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天堂消息\",\n    \"author\": \"戴维・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037815-c1d2ef?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抵达之谜\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037674-586f4c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"模仿者\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037554-1eae8b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民选举\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037491-26ed83?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童分析的故事\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕司沃斯先生的房子\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037305-c3a875?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方快车谋杀案（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037125-3935f9?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈保尔家书\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"T.S.艾略特传\",\n    \"author\": \"林德尔・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皆大欢喜（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米德尔马契（名著名译丛书）\",\n    \"author\": \"乔治・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035091-250be1?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著名译丛书）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035043-4a5759?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象：劳伦斯诗集\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼啸山庄（名著名译丛书）\",\n    \"author\": \"爱米丽・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034848-f289fc?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（名著名译丛书）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034719-d1f933?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Goblin Market\",\n    \"author\": \"Rossetti, Christina; Rackham, Arthur;\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海鲸梦\",\n    \"author\": \"伊恩・麦奎尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033870-13a526?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从月亮来的男孩\",\n    \"author\": \"安德鲁・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033777-207e83?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双城记（企鹅经典）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033369-82ddd0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌有乡\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033015-db0e92?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗昭昭（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032988-e8826f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美妙的新世界（企鹅经典）\",\n    \"author\": \"阿道斯・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032943-1adcbe?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教堂尖塔（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032922-ca9637?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特拉法尔加战役\",\n    \"author\": \"朱利安·S.科贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032850-2b6466?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品彻·马丁（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032826-5e81ee?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独角兽\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032814-2310b8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物农场（果麦经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032811-2781ba?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑王子\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032775-2d8d02?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒切尔夫人\",\n    \"author\": \"乔纳森・艾特肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032679-f97385?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海，大海\",\n    \"author\": \"艾丽丝・默多克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032586-efa32a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国下层阶级的愤怒\",\n    \"author\": \"戴伦・麦加维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032574-2a5e18?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦文学小史\",\n    \"author\": \"埃洛伊丝・米勒/萨姆・乔迪森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊丽莎白女王\",\n    \"author\": \"艾莉森・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文具盒里的时空漫游\",\n    \"author\": \"詹姆斯・沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032310-afb48d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美丽新世界（译文经典）\",\n    \"author\": \"奥尔德斯・赫胥黎\",\n    \"link\": \"链接未找到\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对笑喷之弃业医生日志\",\n    \"author\": \"亚当・凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打字机上的缪斯\",\n    \"author\": \"杰西・波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032046-bcf6eb?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游泳回家\",\n    \"author\": \"德博拉・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031884-0e53c6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寒鸦之夏\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031833-e6bd46?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物农场（译文经典）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031764-29356d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英格兰，英格兰\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031614-a56b26?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凝视太阳\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031605-7148b5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2061：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"3001：太空漫游\",\n    \"author\": \"阿瑟・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结的感觉\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031236-897f5d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚喜剧悲剧全集（套装共6册）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生三部曲\",\n    \"author\": \"派特・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030570-38049c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国诗歌选集（珍藏版）（套装上下册）\",\n    \"author\": \"王佐良等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030003-5f317b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英伦魔法师\",\n    \"author\": \"苏珊娜・克拉克\",\n    \"link\": \"链接未找到\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10½章世界史\",\n    \"author\": \"朱利安・巴恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029607-91f650?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到灯塔去（伍尔夫文集）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028380-bf539a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"项狄传\",\n    \"author\": \"劳伦斯・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027735-41f0a8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惊险的浪漫（午夜文库）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027543-dfcd65?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多情客游记\",\n    \"author\": \"劳伦斯・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027396-557075?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋（果麦经典）\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027141-8e7a86?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弃儿汤姆·琼斯的历史（译文名著典藏 ）\",\n    \"author\": \"亨利・菲尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026775-06d1c5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名利场（译文名著典藏）\",\n    \"author\": \"萨克雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026769-c1d7b8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨孙历险记（译文名著典藏）\",\n    \"author\": \"笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026760-cc5987?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（译文名著典藏）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026733-0e7678?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·考坡菲（译文名著典藏）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026742-07aca9?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（译文名著典藏）\",\n    \"author\": \"简・奥斯汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026730-bb23d6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木麻黄树\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026430-c550f5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客厅里的绅士\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026385-b08e93?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨匠与杰作\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026352-cee4c7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026358-54bc9d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莎士比亚四大悲剧（译文名著典藏）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026406-61388c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美\",\n    \"author\": \"扎迪・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026232-fda9af?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫术师\",\n    \"author\": \"约翰・福尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025632-4de61f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Room with a View\",\n    \"author\": \"E. M. Forster\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025248-21fc37?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贪婪的七宗罪\",\n    \"author\": \"斯图尔特・西姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025005-486788?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿帝国\",\n    \"author\": \"莉齐・克林汉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024939-01ef66?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光尽头\",\n    \"author\": \"珍妮・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024645-7fef5c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国的崛起与衰落\",\n    \"author\": \"劳伦斯・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024621-eefeab?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民自黑的英国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金银岛（果麦经典）\",\n    \"author\": \"罗伯特・路易斯・史蒂文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024498-232c2b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光边缘的男人\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024444-7f3cf5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人爱我\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呼叫助产士\",\n    \"author\": \"珍妮弗・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024336-bc2744?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解一张照片\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣诞女孩\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日不落帝国兴衰史（全五册）\",\n    \"author\": \"约翰・布莱尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024240-d3762e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇动物：格林德沃之罪\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024141-baf465?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海面之下\",\n    \"author\": \"克莱尔・道格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023733-847d94?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好兆头\",\n    \"author\": \"特里・普拉切特/尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023736-2634aa?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Fantastic Beasts and Where to Find Them\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023595-b5827d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给狮子剥皮\",\n    \"author\": \"克莱尔・科克-斯塔基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022968-b9aee4?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰女王的悲剧\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧众神\",\n    \"author\": \"尼尔・盖曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022500-26f71b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国史（全3卷）\",\n    \"author\": \"西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022530-d45c41?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物既伟大又渺小\",\n    \"author\": \"吉米・哈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022239-aef96c?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生梦\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021705-6e4f6d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赎罪\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021276-1a6b77?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童法案\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021282-f30bee?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯讲英国史（全彩图文版）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020844-2bcd58?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国人：国家的形成1707-1832\",\n    \"author\": \"琳达・科利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019965-6c0b00?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜牙\",\n    \"author\": \"伊恩・麦克尤恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019632-82cbc6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"染匠之手\",\n    \"author\": \"奥登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019410-f0261a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狼厅\",\n    \"author\": \"希拉里・曼特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019317-1aba3e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提堂\",\n    \"author\": \"希拉里・曼特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019320-e2263e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的王国\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019212-e7ca0b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌鸦之城：伦敦，伦敦塔与乌鸦的故事\",\n    \"author\": \"博里亚・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠年\",\n    \"author\": \"克莱尔・弗尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017883-83d4c9?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂自传\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017580-d6407e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的建筑\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016800-10b9f5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC世界史\",\n    \"author\": \"安德鲁・玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达洛卫夫人（译文名著精选）\",\n    \"author\": \"弗吉尼亚・伍尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015435-2a37de?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简GDP史\",\n    \"author\": \"黛安娜・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015075-588dba?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界：平等权利\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015015-402a9f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"染血的王冠：不列颠王权和战争史\",\n    \"author\": \"赵恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014103-2b0300?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长日留痕\",\n    \"author\": \"石黑一雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013677-6e7b44?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大博弈：英俄帝国争霸战\",\n    \"author\": \"彼得・霍普柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅课\",\n    \"author\": \"汤姆・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物庄园\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013113-3cbe8f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝇王（戈尔丁文集）\",\n    \"author\": \"威廉・戈尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012984-413b5f?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺书店\",\n    \"author\": \"维罗妮卡・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012699-8a0f8a?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛虻\",\n    \"author\": \"艾捷尔・丽莲・伏尼契\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012474-cb8e19?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金雀花王朝\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝伦与露西恩（插图本）\",\n    \"author\": \"托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011979-e75e80?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尼\",\n    \"author\": \"安德鲁・麦克尔・赫尔利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011778-9792d8?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤儿列车\",\n    \"author\": \"克里斯蒂娜・贝克・克兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011670-4e3c98?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国通史（套装共6册）\",\n    \"author\": \"钱乘旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美妙的新世界\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010503-709f5d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业与帝国：英国的现代化历程\",\n    \"author\": \"埃里克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·奥斯丁小说全集\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010251-5f85e0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月亮和六便士\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010029-35b91e?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偶发空缺\",\n    \"author\": \"J.K.罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009801-91629b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看，这个世界\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009435-6a6ded?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息\",\n    \"author\": \"凯特・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009015-52993b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻欢作乐\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008001-2f0063?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银行家的情人\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007959-2bd28b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜莺与玫瑰\",\n    \"author\": \"王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007755-dc10b4?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十九级台阶\",\n    \"author\": \"约翰・巴肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个世界帝国及其西征系列（共三册）\",\n    \"author\": \"布赖恩・莱弗里/汤姆・霍兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗领域\",\n    \"author\": \"薇儿·麦克德米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你知道或不知道的英国史\",\n    \"author\": \"贺桂金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案集（经典译林）\",\n    \"author\": \"柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004821-0d75f5?p=8866\",\n    \"category\": \"英国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉家天下（1-4册）\",\n    \"author\": \"清秋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉兴亡四百年2\",\n    \"author\": \"李金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994534-e30d7c?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉兴亡四百年\",\n    \"author\": \"李金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991453-c67787?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国（套装共2册）\",\n    \"author\": \"萧然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：帝国建立与政权巩固\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：王朝鼎盛与命运转折\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白日薄西山：大汉帝国的衰亡\",\n    \"author\": \"徐兴无\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007989-fae9b9?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉王朝的三张脸谱（全三册）\",\n    \"author\": \"飘雪楼主\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006753-0645a8?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里曾经是汉朝（套装共6册）\",\n    \"author\": \"月望东山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006366-f6a436?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉朝大历史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006039-4817a7?p=8866\",\n    \"category\": \"汉朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将来的你，一定会感谢现在拼命的自己\",\n    \"author\": \"汤木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866\",\n    \"category\": \"努力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的匠人（全20册套装）\",\n    \"author\": \"知了青年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007389-02fb3c?p=8866\",\n    \"category\": \"匠人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己是一生浪漫的开始\",\n    \"author\": \"静听风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513075-1286b7?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个人可持续发展精要\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051120-d9b6a3?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不疲惫的精力管理术\",\n    \"author\": \"葛西纪明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046434-95610f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造时间\",\n    \"author\": \"杰克・纳普/约翰・泽拉茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Everything Is F*cked\",\n    \"author\": \"Mark Manson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑减压的子弹笔记术\",\n    \"author\": \"电脑玩物站长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式成长\",\n    \"author\": \"惠特尼・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远离迷茫，从学会赚钱开始\",\n    \"author\": \"曾鹏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维精进\",\n    \"author\": \"赵帅/王姗姗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030216-90e1ab?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长\",\n    \"author\": \"亚力山德拉・卡弗拉科斯/凯瑟琳・明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜出：非掠夺社交智慧与共享式领导力\",\n    \"author\": \"琳达・科汗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029514-754530?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你只是看起来很专注\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习：用更短的时间达到更佳效果和更好成绩\",\n    \"author\": \"亚当・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆境成长：坚韧人格养成手册\",\n    \"author\": \"小乔治·S.埃弗利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子弹笔记\",\n    \"author\": \"赖德・卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025593-0c0c06?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要事第一\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024057-5976ea?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的要素\",\n    \"author\": \"西蒙・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022251-1bcbdc?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让问题到你为止\",\n    \"author\": \"博恩・崔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控：开启不疲惫、不焦虑的人生\",\n    \"author\": \"张展晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021903-0cf2b0?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命向前\",\n    \"author\": \"迈克尔・海厄特/丹尼尔・哈卡维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒工作\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成长到死\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020892-1a7715?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力\",\n    \"author\": \"野口真人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全神贯注的方法\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉：我们为什么无从推理，却能决策\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平均的终结\",\n    \"author\": \"托德・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019251-a6dba1?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女神进化论\",\n    \"author\": \"寺主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019086-4cbd0e?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键20小时，快速学会任何技能！\",\n    \"author\": \"乔希・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018735-508fa6?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把时间当作朋友（第3版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功，动机与目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠青年\",\n    \"author\": \"Susan Kuang\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017703-338a87?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"DISCOVER自我探索（全彩）\",\n    \"author\": \"李海峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017607-237846?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力大师（原书第2版）\",\n    \"author\": \"约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017205-c1655c?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从行动开始\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016650-20e429?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一年的8760小时\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天学点时间整理术\",\n    \"author\": \"特瑞博・伍兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015936-2a3d9f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光速成长\",\n    \"author\": \"林晅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015888-f1ac25?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015783-caef80?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英系列（共五册）\",\n    \"author\": \"高杉尚孝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"持续学习和行动让人生逆袭（套装9册）\",\n    \"author\": \"廖珺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015714-57fbb1?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单核工作法图解\",\n    \"author\": \"史蒂夫・诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015606-53a35f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"靠谱\",\n    \"author\": \"大石哲之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键责任\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉田医生哈佛求学记\",\n    \"author\": \"吉田穗波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简化\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好工作，好好生活\",\n    \"author\": \"克里斯汀・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长\",\n    \"author\": \"卡罗尔・德韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014808-fa0a34?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好学习\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014799-edd4b9?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破自我的标签\",\n    \"author\": \"陈虎平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别再用勤奋掩饰你的懒惰\",\n    \"author\": \"阿何\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁说你不能坚持\",\n    \"author\": \"程龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自制力\",\n    \"author\": \"高原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最重要的事，只有一件\",\n    \"author\": \"加里・凯勒/杰伊・帕帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精力管理\",\n    \"author\": \"吉姆・洛尔/托尼・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009036-6c36ba?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Ego Is the Enemy\",\n    \"author\": \"Ryan Holiday\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006948-f3c958?p=8866\",\n    \"category\": \"个人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半熟家庭\",\n    \"author\": \"金义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511065-6c9ffd?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原生家庭生存指南\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051150-577b7b?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出剧情\",\n    \"author\": \"李雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平衡的智慧\",\n    \"author\": \"帕特・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030681-682c4a?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这不是你的错\",\n    \"author\": \"马克・沃林恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄代表作\",\n    \"author\": \"河合隼雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越原生家庭（原书第4版）\",\n    \"author\": \"罗纳德・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023712-fa74ce?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爸爸军团\",\n    \"author\": \"布鲁斯・费勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017754-627360?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养育男孩（典藏版）\",\n    \"author\": \"史蒂夫・比达尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次当奶爸\",\n    \"author\": \"马克・伍兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007575-ad564d?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小别离\",\n    \"author\": \"鲁引弓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866\",\n    \"category\": \"家庭\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康零食：知道这些就够了\",\n    \"author\": \"戴尔・沃勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866\",\n    \"category\": \"零食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的天\",\n    \"author\": \"子日山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听你的\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野\",\n    \"author\": \"巫哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终点的少女\",\n    \"author\": \"柚木麻子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045948-748ac8?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情书\",\n    \"author\": \"岩井俊二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033849-0749ba?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲伤逆流成河\",\n    \"author\": \"郭敬明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032358-7743cd?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏摩山谷\",\n    \"author\": \"安妮宝贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032019-6efc6c?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十几岁，没有十年\",\n    \"author\": \"孙晴悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"素年锦时\",\n    \"author\": \"安妮宝贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031728-e066c5?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少女，请回答\",\n    \"author\": \"张晓晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女少年\",\n    \"author\": \"秋微\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028980-691d01?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿为西南风\",\n    \"author\": \"闻人可轻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027759-a931a4?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击壤歌\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027555-f77b84?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时擦\",\n    \"author\": \"笙离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027348-1f5ea8?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些伤不起的年轻人\",\n    \"author\": \"二白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027111-bfde42?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单身战争\",\n    \"author\": \"韩十三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025608-1cb333?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日终曲\",\n    \"author\": \"安德烈・艾西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024519-7dbbd6?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯犬少年的天空\",\n    \"author\": \"里则林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024507-39618c?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Pretty Little Liars\",\n    \"author\": \"Shepard, Sara\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023334-f0b621?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年的你，如此美丽\",\n    \"author\": \"玖月晞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022845-17524c?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世事如刀，我来领教\",\n    \"author\": \"房昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022374-2e403d?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向着光亮那方\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020682-46d971?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匆匆那年\",\n    \"author\": \"九夜茴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020661-848463?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如丧\",\n    \"author\": \"高晓松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，旧时光（全三册）\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016317-8d59ff?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪咖的自我修养\",\n    \"author\": \"闫景歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦田里的守望者\",\n    \"author\": \"杰罗姆・大卫・塞林格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010602-c11552?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一粒红尘\",\n    \"author\": \"独木舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009345-5d9d0b?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西决\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008517-20a0f1?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东霓\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008514-7dfcb0?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芙蓉如面柳如眉\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008502-5170e3?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三重门\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008460-b410d1?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你的青春不负梦想\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008100-18736d?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也会爱上别人的\",\n    \"author\": \"自由极光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006873-68fdf4?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁的青春不迷茫\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的我们\",\n    \"author\": \"八月长安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我亦飘零久\",\n    \"author\": \"独木舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005637-3597fa?p=8866\",\n    \"category\": \"青春\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄庭坚词集（词系列）\",\n    \"author\": \"黄庭坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033456-e77dbf?p=8866\",\n    \"category\": \"古典文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温庭筠词集·韦庄词集（词系列）\",\n    \"author\": \"温庭筠/韦庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866\",\n    \"category\": \"古典文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常人文课（共5册）\",\n    \"author\": \"泰吉万・帕丁格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506901-fb7ee6?p=8866\",\n    \"category\": \"日常\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动机与人格\",\n    \"author\": \"亚伯拉罕・马斯洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495429-a9bbbc?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出人格陷阱\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000846-80193c?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让性格害了你\",\n    \"author\": \"邢群麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的眼界，决定你的全世界\",\n    \"author\": \"西武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034974-0a7e53?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（精装纪念版）\",\n    \"author\": \"张文成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031155-58fe32?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商：我们该如何应对坏事件\",\n    \"author\": \"保罗・史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点（作家榜经典文库）\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势将至，未来已来\",\n    \"author\": \"王鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025284-f820b9?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的人格\",\n    \"author\": \"黄国胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024195-e4abf0?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24重人格（十周年纪念版）\",\n    \"author\": \"卡梅伦・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007740-d16ede?p=8866\",\n    \"category\": \"人格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以武论道：李小龙的功夫心法（套装共5册）\",\n    \"author\": \"李小龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866\",\n    \"category\": \"功夫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人四千年（全两册）\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866\",\n    \"category\": \"犹太人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲的失乐园\",\n    \"author\": \"阿里埃勒・萨巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866\",\n    \"category\": \"犹太人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊文明的光芒\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499062-3dfd8c?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊史（全两册）\",\n    \"author\": \"查尔斯・奥曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996343-d966c9?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希波战争\",\n    \"author\": \"G.W.考克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983626-e7197b?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马技术史（贝克知识丛书）\",\n    \"author\": \"赫尔穆特・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马军事史（贝克知识丛书）\",\n    \"author\": \"莱昂哈特・布克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051891-e1f24d?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊人\",\n    \"author\": \"伊迪丝・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典的胜利\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争\",\n    \"author\": \"唐纳德・卡根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032625-63c026?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊奇迹的观念基础\",\n    \"author\": \"陈中梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032247-8b04d4?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷马3000年\",\n    \"author\": \"亚当・尼科尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027369-65947b?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想国（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027216-6c81c9?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争史（详注修订本）\",\n    \"author\": \"修昔底德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026922-8375ca?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史（详注修订本）\",\n    \"author\": \"希罗多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026571-4204f0?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊人的故事（全三册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023988-a42df2?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿提卡之夜（1-5卷）\",\n    \"author\": \"奥卢斯・革利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010140-904f27?p=8866\",\n    \"category\": \"古希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁启超修身三书\",\n    \"author\": \"梁启超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996163-d09e12?p=8866\",\n    \"category\": \"儒家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瞩望新轴心时代\",\n    \"author\": \"汤一介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030210-9be232?p=8866\",\n    \"category\": \"儒家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透《大学中庸》\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029907-e28d12?p=8866\",\n    \"category\": \"儒家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传习录\",\n    \"author\": \"王阳明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866\",\n    \"category\": \"儒家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟哥的Linux私房菜：基础学习篇（第三版）\",\n    \"author\": \"鸟哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866\",\n    \"category\": \"操作系统\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永不放弃\",\n    \"author\": \"唐纳德・特朗普/梅瑞迪斯・麦基沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866\",\n    \"category\": \"特朗普\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超现实\",\n    \"author\": \"杰里米・拜伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513297-854053?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破译人类的明天\",\n    \"author\": \"迈克尔・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的行为\",\n    \"author\": \"托马斯・科洛波洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"治愈未来\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人机共生\",\n    \"author\": \"托马斯・达文波特/茱莉娅・柯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到敌托邦\",\n    \"author\": \"戈登・范・格尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049440-137c79?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能城市\",\n    \"author\": \"卡洛・拉蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能会抢哪些工作\",\n    \"author\": \"理查德・萨斯坎德/丹尼尔・萨斯坎德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI的25种可能\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技失控\",\n    \"author\": \"温德尔・瓦拉赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级思维\",\n    \"author\": \"托马斯·W·马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来版图\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空荡荡的地球\",\n    \"author\": \"达雷尔・布里克/约翰・伊比特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"18个未来进行时\",\n    \"author\": \"吉姆・阿尔- 哈里里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三次浪潮\",\n    \"author\": \"阿尔文・托夫勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个人类\",\n    \"author\": \"马克・奥康奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来50年\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027123-c3d4eb?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简未来史\",\n    \"author\": \"克里斯托弗・巴纳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025617-432176?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四维人类\",\n    \"author\": \"劳伦斯・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟现实：万象的新开端\",\n    \"author\": \"杰伦・拉尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023481-c4b2a4?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不会被机器替代的人\",\n    \"author\": \"杰夫・科尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级智能\",\n    \"author\": \"尼克・波斯特洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的明天\",\n    \"author\": \"席里尔・迪翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器70年\",\n    \"author\": \"徐曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI·未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资源革命\",\n    \"author\": \"斯蒂芬・赫克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微粒社会\",\n    \"author\": \"克里斯托夫・库克里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019575-e3c742?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控未来系列（套装共6册）\",\n    \"author\": \"伊藤穰一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018420-d99af9?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟人\",\n    \"author\": \"玛蒂娜・罗斯布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018252-b38b81?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越人类\",\n    \"author\": \"伊芙・赫洛尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017697-b3e68f?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇点临近\",\n    \"author\": \"雷・库兹韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017070-174382?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极复制\",\n    \"author\": \"李智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复杂：信息时代的连接、机会与布局\",\n    \"author\": \"罗家德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014691-5f5ec3?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The 100-Year Life\",\n    \"author\": \"Lynda Gratton / Andrew Scott\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013686-e885a9?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类2.0：在硅谷探索科技未来\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能时代\",\n    \"author\": \"杰瑞・卡普兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009093-321621?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人工智能\",\n    \"author\": \"李开复/王咏刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2052：未来四十年的中国与世界\",\n    \"author\": \"乔根・兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必然\",\n    \"author\": \"凯文・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新一轮产业革命\",\n    \"author\": \"亚力克・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866\",\n    \"category\": \"未来\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔兽世界官方小说合集典藏版（全23册）\",\n    \"author\": \"理查德·A.纳克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034209-86637e?p=8866\",\n    \"category\": \"魔兽\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南怀瑾人生精讲系列（套装共5册）\",\n    \"author\": \"南怀瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029634-7b17a3?p=8866\",\n    \"category\": \"南怀瑾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结所有和平的和平\",\n    \"author\": \"戴维・弗罗姆金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999736-5c71a4?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大征服\",\n    \"author\": \"休・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中东史（套装共3册）\",\n    \"author\": \"哈全安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敌人与邻居\",\n    \"author\": \"伊恩・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列的诞生（全四册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯的劳伦斯\",\n    \"author\": \"斯科特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经与利剑\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无规则游戏\",\n    \"author\": \"塔米姆・安萨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的早年岁月\",\n    \"author\": \"苏尔坦・本・穆罕默德・卡西米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父亲的失乐园\",\n    \"author\": \"阿里埃勒・萨巴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越百年中东\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866\",\n    \"category\": \"中东\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金龙鱼背后的粮油帝国\",\n    \"author\": \"余盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039426-863024?p=8866\",\n    \"category\": \"粮食、油脂及植物蛋白工程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·拉格斐传\",\n    \"author\": \"洛朗・阿朗-卡龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500028-a96942?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编剧的艺术\",\n    \"author\": \"拉约什・埃格里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994639-027e11?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何假装懂音乐\",\n    \"author\": \"王硕/储智勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992167-7c7309?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原宿牛仔\",\n    \"author\": \"W. 大卫・马克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053643-0a120a?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家的书\",\n    \"author\": \"考薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买买买的乐趣\",\n    \"author\": \"山内麻里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043890-8d74b4?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法式优雅\",\n    \"author\": \"弗雷德里克・维塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基本穿搭\",\n    \"author\": \"大山旬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028179-6a7a86?p=8866\",\n    \"category\": \"时尚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈：所有问题都是一场赛局\",\n    \"author\": \"川西谕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509700-04f1de?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的复杂性\",\n    \"author\": \"罗伯特・阿克塞尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的进化\",\n    \"author\": \"罗伯特・艾克斯罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021090-b0978a?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"击败庄家\",\n    \"author\": \"爱德华・索普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒的困境\",\n    \"author\": \"威廉姆・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妙趣横生博弈论（珍藏版）\",\n    \"author\": \"阿维纳什・迪克西特/巴里・奈尔伯夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014160-37866b?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用博弈的思维看世界\",\n    \"author\": \"蒋文华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014109-0ed381?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论的诡计\",\n    \"author\": \"王春永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈论平话\",\n    \"author\": \"王则柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活学活用博弈论\",\n    \"author\": \"詹姆斯・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866\",\n    \"category\": \"博弈\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全中国最穷的小伙子发财日记\",\n    \"author\": \"重庆老康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866\",\n    \"category\": \"发财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜规则：中国历史中的真实游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006486-e0c136?p=8866\",\n    \"category\": \"潜规则\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁滨逊漂流记（果麦经典）\",\n    \"author\": \"丹尼尔・笛福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法定幸福\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032517-74cfb2?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人3：无境之爱\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Calculating Stars\",\n    \"author\": \"Mary Robinette Kowal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯禁书三部曲（全新修订版）\",\n    \"author\": \"D.H.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031536-958b1b?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人鼠之间（约翰·斯坦贝克作品系列）\",\n    \"author\": \"约翰・斯坦贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031245-271805?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布鲁克林的荒唐事（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031161-0663b4?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学、通俗文化和社会\",\n    \"author\": \"利奥・洛文塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030576-bd1f90?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"川端康成至美典藏全集\",\n    \"author\": \"川端康成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030369-6372c2?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的礼物\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029586-943dca?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝗灾之日\",\n    \"author\": \"纳撒尼尔・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029325-063152?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎特伯雷故事（译文名著典藏）\",\n    \"author\": \"杰弗里・乔叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026763-3a2c91?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年Pi的奇幻漂流（绘图珍藏本）\",\n    \"author\": \"扬・马特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"种玫瑰的男人\",\n    \"author\": \"奥杜・阿娃・奥拉夫斯多蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025083-feb78a?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫文集（全6册）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025002-6ad075?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿瑟·黑利系列（套装共6册）\",\n    \"author\": \"阿瑟・黑利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024852-a25776?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯纳黛特，你要去哪\",\n    \"author\": \"玛利亚・森普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024531-bf243b?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊镇\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024174-567c22?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故园风雨后\",\n    \"author\": \"伊夫林・沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024093-fba3b7?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北回归线\",\n    \"author\": \"亨利・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023901-5575f9?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独抒己见\",\n    \"author\": \"弗拉基米尔・纳博科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023283-fe22ec?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大雪将至\",\n    \"author\": \"罗伯特・泽塔勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022254-844fb9?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣橱里的女孩\",\n    \"author\": \"弗朗丝・盖兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021819-929df9?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神枪手迪克\",\n    \"author\": \"库尔特・冯内古特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021288-92f5e6?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解离的真实\",\n    \"author\": \"卡洛斯・卡斯塔尼达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019611-2b333c?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"都灵埃及博物馆\",\n    \"author\": \"西尔维娅・埃诺迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫中的将军\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016203-716374?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波吉亚家族\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016059-1a1324?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆渡人2：重返荒原\",\n    \"author\": \"克莱儿・麦克福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015192-9058db?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"One Day\",\n    \"author\": \"David Nicholls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015183-e28af6?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"到大地尽头\",\n    \"author\": \"大卫・格罗斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015066-bcbe3d?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜之子\",\n    \"author\": \"萨曼・鲁西迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014967-759eef?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林孤谍\",\n    \"author\": \"约瑟夫・卡农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复明症漫记\",\n    \"author\": \"若泽・萨拉马戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014748-8511f3?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珠穆朗玛之魔（套装共3册）\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014637-ae4341?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间停止的那一天\",\n    \"author\": \"蕾秋・乔伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014655-debad3?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出非洲\",\n    \"author\": \"凯伦・布里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫里哀先生传\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013956-e85b77?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逃亡\",\n    \"author\": \"米哈伊尔・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013950-1259d9?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"君士坦丁堡最后之恋\",\n    \"author\": \"米洛拉德・帕维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013839-6df24f?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1984\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013032-d786be?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无欲的悲歌\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013011-411202?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛苦的中国人\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012993-90c384?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨周翰作品集（全6卷）\",\n    \"author\": \"杨周翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012693-67e2e6?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的悲鸣\",\n    \"author\": \"S.A.阿列克谢耶维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摘星星的男孩\",\n    \"author\": \"约翰・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘鸟（修订版）\",\n    \"author\": \"考琳·麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记\",\n    \"author\": \"保罗·奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866\",\n    \"category\": \"外国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险的未来\",\n    \"author\": \"王和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991489-b536e1?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险自选手册\",\n    \"author\": \"许春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大额保单操作实务\",\n    \"author\": \"曾祥霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049410-6a8850?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该买保险\",\n    \"author\": \"刘彦斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044769-0ccba8?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本保险指南\",\n    \"author\": \"槽叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866\",\n    \"category\": \"保险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马家辉家行散记（共3册）\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984712-10fe3b?p=8866\",\n    \"category\": \"香港随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戒糖：改变一生的科学饮食法\",\n    \"author\": \"初夏之菡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个健康吃货的自我修养（共4册）\",\n    \"author\": \"威廉・李博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误解的盐\",\n    \"author\": \"詹姆斯・迪尼科兰托尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的危机\",\n    \"author\": \"玛丽安・麦克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"川菜\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼米之乡\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人超会吃\",\n    \"author\": \"王恺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508890-237674?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单（全本全注全译）\",\n    \"author\": \"陈伟明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你想知道的生酮饮食错误\",\n    \"author\": \"米尔萨德・哈西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄油：一部丰富的历史\",\n    \"author\": \"约翰・马图夏克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511737-ace1ac?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威士忌原来是这么回事儿\",\n    \"author\": \"米凯勒・吉多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪原来是这么回事儿\",\n    \"author\": \"特里斯坦・西卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度营养\",\n    \"author\": \"凯瑟琳・沙纳汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酒鬼与圣徒\",\n    \"author\": \"劳伦斯・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖22：多谢款待！\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044475-b4a83f?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖16：大满足！就爱锅料理\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖08：自给自足指南书\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖04：肉!肉!肉!\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖07：大丈夫生于厨房\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖03：食鲜最高\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的泡面\",\n    \"author\": \"食帖番组主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040059-b9c317?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐糖脂\",\n    \"author\": \"迈克尔・莫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037266-955677?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉酒简史\",\n    \"author\": \"马克・福赛思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是你吃出来的\",\n    \"author\": \"夏萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会吃饭\",\n    \"author\": \"珍・克里斯特勒/艾莉莎・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷物大脑\",\n    \"author\": \"戴维・珀尔马特/戴维・珀尔马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宴与家宴\",\n    \"author\": \"王宣一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长寿的基因\",\n    \"author\": \"普雷斯顿・埃斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随园食单\",\n    \"author\": \"袁枚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼翅与花椒\",\n    \"author\": \"扶霞・邓洛普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈克尔·波伦“饮食觉醒”系列（套装共3册）\",\n    \"author\": \"迈克尔・波伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米，面，鱼\",\n    \"author\": \"马特・古尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006654-03c347?p=8866\",\n    \"category\": \"饮食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·罗杰斯的大预测\",\n    \"author\": \"吉姆・罗杰斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球化简史\",\n    \"author\": \"杰弗里・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499440-2ab9ca?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第一辑（套装共4册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第二辑（套装共6册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长危机\",\n    \"author\": \"丹比萨・莫约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界不是平的\",\n    \"author\": \"简世勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级版图\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016413-98fcdd?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1493：物种大交换开创的世界史\",\n    \"author\": \"查尔斯・曼恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866\",\n    \"category\": \"全球\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵程序设计丛书：Java进阶高手（套装共8册）\",\n    \"author\": \"沃伯顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵前端核心知识进阶系列（套装全10册）\",\n    \"author\": \"韦鲁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510897-922ded?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"程序员编程语言经典合集（共5册）\",\n    \"author\": \"兰斯・尼塞斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996589-3e3123?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画算法\",\n    \"author\": \"魏梦舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动手学深度学习\",\n    \"author\": \"阿斯顿・张等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python高性能编程\",\n    \"author\": \"戈雷利克/欧日沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础入门学习Python\",\n    \"author\": \"小甲鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript函数式编程\",\n    \"author\": \"Michael Fogus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给所有人的编程思维\",\n    \"author\": \"吉姆・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Python爬虫框架Scrapy\",\n    \"author\": \"迪米特里奥斯 考奇斯-劳卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的乐趣\",\n    \"author\": \"王晓华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编写可维护的JavaScript\",\n    \"author\": \"扎卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022983-6dc43b?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通正则表达式：第3版\",\n    \"author\": \"Jeffrey E·F·Friedl\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Go语言实战\",\n    \"author\": \"William Kennedy等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021657-466648?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从Python开始学编程\",\n    \"author\": \"Vamei\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Boot实战\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java程序员修炼之道\",\n    \"author\": \"Benjamin J. Evans/Martijn Verburg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Java 8实战\",\n    \"author\": \"Raoul-Gabriel Urma等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021054-fef42d?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Vim实用技巧\",\n    \"author\": \"Drew Neil\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020997-2ff693?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像计算机科学家一样思考Python\",\n    \"author\": \"Allen B.Downey\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019812-6df559?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python基础教程（第3版）\",\n    \"author\": \"Magnus Lie Hetland\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019476-163e41?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Linux环境编程：从应用到内核\",\n    \"author\": \"高峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019278-91aa23?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"GitHub入门与实践\",\n    \"author\": \"大塚弘记\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018630-3c62a1?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第3版）\",\n    \"author\": \"Wesley Chun\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服C指针\",\n    \"author\": \"前桥和弥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018567-39a964?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python极客项目编程\",\n    \"author\": \"Mahesh Venkitachalam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018480-2d6eec?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"编程珠玑（第2版·修订版）\",\n    \"author\": \"Jon Bentley\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018450-0ab379?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流畅的Python\",\n    \"author\": \"Luciano Ramalho\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018351-499390?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锋利的jQuery（第2版）\",\n    \"author\": \"单东林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016728-3282f4?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟老齐学Python\",\n    \"author\": \"老齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016623-4a24a9?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python网络数据采集\",\n    \"author\": \"Ryan Mitchell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨办法学Python\",\n    \"author\": \"Zed A.Shaw\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016419-cf9c7e?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程：从入门到实践\",\n    \"author\": \"埃里克・马瑟斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python学习手册（原书第4版）\",\n    \"author\": \"Mark Lutz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014307-045cb6?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一本Docker书（修订版）\",\n    \"author\": \"詹姆斯・特恩布尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013125-e87194?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"iOS编程（第4版）\",\n    \"author\": \"Christian Keur/Aaron Hillegass\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法图解\",\n    \"author\": \"Aditya Bhargava\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程快速上手\",\n    \"author\": \"Al Sweigart\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法神探\",\n    \"author\": \"杰瑞米・库比卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009255-fb075f?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"JavaScript权威指南（第6版）\",\n    \"author\": \"David Flanagan\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第二版）\",\n    \"author\": \"丘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"PHP和MySQL Web开发（原书第4版）\",\n    \"author\": \"Luke Welling\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子的编程之旅\",\n    \"author\": \"Warren Sande\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866\",\n    \"category\": \"编程\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧未来\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513735-fe1296?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉：AI如何通过数据挖掘误导我们\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能语音时代\",\n    \"author\": \"詹姆斯・弗拉霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982510-7f3725?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习：智能时代的核心驱动力量\",\n    \"author\": \"特伦斯・谢诺夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029667-77e164?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类帝国的覆灭\",\n    \"author\": \"常博逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航2\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023982-655d95?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI：人工智能的本质与未来\",\n    \"author\": \"玛格丽特・博登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866\",\n    \"category\": \"AI\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为何无聊\",\n    \"author\": \"詹姆斯・丹克特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490977-1e5ce8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知工具\",\n    \"author\": \"塞西莉亚・海耶斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491715-7dc597?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动机与人格\",\n    \"author\": \"亚伯拉罕・马斯洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495429-a9bbbc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"0次与10000次\",\n    \"author\": \"吉塔・雅各布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497181-c8dc00?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疲劳自救手册\",\n    \"author\": \"玛丽・伯吉斯/特鲁迪・查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497475-e986a2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙发上的心理学\",\n    \"author\": \"菲利帕・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497946-e0bf91?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新乌合之众\",\n    \"author\": \"迈赫迪・穆萨伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497907-396975?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十种人性\",\n    \"author\": \"德克斯特・迪亚斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"译文心理分析作品集（套装共12册）\",\n    \"author\": \"西格蒙德・弗洛伊德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贪婪的多巴胺\",\n    \"author\": \"丹尼尔・利伯曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498459-018013?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这真的是你的错吗\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499227-3864f2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反内卷\",\n    \"author\": \"黄徽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499245-6c8e89?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费尔德曼发展心理学\",\n    \"author\": \"罗伯特·S.费尔德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499536-3655fb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活出最乐观的自己\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499620-1feacf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新人类心理丛书（共6册）\",\n    \"author\": \"达里安・利德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499710-78a426?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一旦能放声嘲笑自己，你就自由了\",\n    \"author\": \"梅丽莎・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499704-86a34e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问题不大\",\n    \"author\": \"杨子星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500136-6043d2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔科姆·格拉德威尔系列（套装共6册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理咨询师系列精选（套装14册）\",\n    \"author\": \"沙格曼・卡亚金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500541-cb7910?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宁静的力量\",\n    \"author\": \"瑞安・霍利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500661-e3cdce?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理自助读物精选（套装17册）\",\n    \"author\": \"南茜・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理自助CBT书系（套装共七册）\",\n    \"author\": \"萨万・辛格等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"也许你该找个人聊聊\",\n    \"author\": \"洛莉・戈特利布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508959-595ed0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马登谈成功（套装共5册）\",\n    \"author\": \"奥里森・马登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508968-7f8963?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极心理测试\",\n    \"author\": \"迈克・布里翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509244-f90270?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是谁：心理学实证研究社会思维\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509499-e67aab?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变或免疫\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509568-e95089?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无知\",\n    \"author\": \"迈克・詹姆斯・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509577-8fec76?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读脑术\",\n    \"author\": \"拉塞尔·A.波德拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509688-9d9191?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱可能\",\n    \"author\": \"伊迪丝・伊娃・埃格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从玫瑰到枪炮\",\n    \"author\": \"戴维・迈尔斯/琼・特韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509892-7e4601?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏惧：颠覆你内心的脆弱\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510027-601beb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海龟先生的心理疗愈\",\n    \"author\": \"塞尔日・马基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510162-32cc06?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·艾尔曼实用催眠\",\n    \"author\": \"大卫・艾尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510171-7757c8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被绑架的心灵\",\n    \"author\": \"戴维・凯斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510372-1db3f6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛤蟆先生去看心理医生\",\n    \"author\": \"罗伯特・戴博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切皆契约\",\n    \"author\": \"聂辉华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510423-f1d70c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生疯狂\",\n    \"author\": \"中野信子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510432-073af1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偏见\",\n    \"author\": \"珍妮弗・埃伯哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510933-ef0322?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"负面情绪，正面解决\",\n    \"author\": \"利斯・范・萨斯特伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510939-6c58a7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突的演化\",\n    \"author\": \"杰弗里・贝蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512607-ff38db?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通俗心理学百科合集（套装共18册）\",\n    \"author\": \"约翰・华生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513492-f070e3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释梦人生\",\n    \"author\": \"荣伟玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513567-30276c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控沟通\",\n    \"author\": \"贾斯汀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级心智\",\n    \"author\": \"诺曼·E·罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513693-5e6741?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们内心的冲突（果麦经典）\",\n    \"author\": \"卡伦・霍妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004464-e0bf3e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和另一个自己谈谈心\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004392-11723b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我边界\",\n    \"author\": \"乔治・戴德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004260-42ce47?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇葩心理学\",\n    \"author\": \"冈田尊司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004146-e96884?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理档案（共4册）\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快行动，慢思考\",\n    \"author\": \"迪安・德尔・塞斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002415-60e276?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本抑郁自救指南\",\n    \"author\": \"所长任有病\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的解析（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002187-512d6c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动机心理学\",\n    \"author\": \"罗曼・格尔佩林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002016-a8251f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷静表达的艺术\",\n    \"author\": \"罗纳德·T·派特佛恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑你好\",\n    \"author\": \"安珀・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拖延症患者自救手册\",\n    \"author\": \"加兰・库尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出人格陷阱\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000846-80193c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理套装（共四册）\",\n    \"author\": \"许大鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理分析\",\n    \"author\": \"张蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"归属感\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999826-9a1d49?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱是什么\",\n    \"author\": \"芭芭拉・弗雷德里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999475-3aed0e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人效应\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998548-5194e2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄与母亲\",\n    \"author\": \"C.G. 荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996685-df9910?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内心的重建\",\n    \"author\": \"维尼老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996175-2a2c01?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊雍：自性现象学研究\",\n    \"author\": \"C. G. 荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995866-2fee9e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的智慧\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会幸福\",\n    \"author\": \"陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"差异优势\",\n    \"author\": \"约翰·C. 马克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商大师（息怒篇）\",\n    \"author\": \"伯纳德・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤气灯效应\",\n    \"author\": \"罗宾・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被拒绝的勇气\",\n    \"author\": \"岸见一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993493-64723f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智与阅读\",\n    \"author\": \"丹尼尔·T.威林厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗逆力\",\n    \"author\": \"邹建章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992029-95a7a3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让性格害了你\",\n    \"author\": \"邢群麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让情绪毁了你的努力\",\n    \"author\": \"剑圣喵大师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女性进化论\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991723-c926e0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格拼图\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向心理学\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向高敏者\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991516-921fc6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的情商，决定你的人生高度\",\n    \"author\": \"心屋仁之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你为什么不道歉\",\n    \"author\": \"哈丽特・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990589-e95cbc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的优点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990421-adb4e8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不想将就过一生\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的囚徒\",\n    \"author\": \"亚历克斯・佩塔克斯/伊莱恩・丹顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破天性\",\n    \"author\": \"布赖恩・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生非此\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本正经又怪诞的行为心理学\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985639-1775da?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩的就是规则\",\n    \"author\": \"伊恩・伯格斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福：追求比得到更快乐\",\n    \"author\": \"丹尼尔・内特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985219-b0ee40?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何正确吵架\",\n    \"author\": \"朱迪斯・莱特/鲍勃・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个抗压的人\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人，做得到任何事\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984625-a03251?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同自己\",\n    \"author\": \"斯蒂芬妮・斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窥探疯子的内心世界（套装共6册）\",\n    \"author\": \"弗兰克・比弗・布拉迪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983659-dec0ab?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心火：社会动机与我们的生活\",\n    \"author\": \"陈为人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983368-12b915?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新情商\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学2\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重口味心理学3\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982462-176d92?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为何爱会伤人（珍藏版）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格的陷阱\",\n    \"author\": \"杰弗里·E.杨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与表达力影响力\",\n    \"author\": \"洪琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054306-56f527?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与内心的冲突和解\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有意识的社交\",\n    \"author\": \"肯・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控分寸\",\n    \"author\": \"珍妮・米勒/维多利亚・兰伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找爽点\",\n    \"author\": \"大卫・林登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学统治世界（全三册）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052998-895117?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会快乐\",\n    \"author\": \"马修・理查德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052965-df8220?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知·情感·意志\",\n    \"author\": \"詹姆斯・马克・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制胜谈判\",\n    \"author\": \"游梓翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052629-f068d8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用得上的心理学\",\n    \"author\": \"王明姬/姚兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052671-91e779?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽微的人性\",\n    \"author\": \"李玫瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052320-cff183?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的误区\",\n    \"author\": \"韦恩・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051744-d5fffa?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可能性法则\",\n    \"author\": \"梅尔・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051441-e9bca0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总能做出正确决定的幸运法则\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克服低自尊（第二版）\",\n    \"author\": \"梅勒妮・芬内尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051270-abaeb1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原生家庭生存指南\",\n    \"author\": \"奥利弗・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051150-577b7b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾心可鉴\",\n    \"author\": \"彭凯平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051123-b5e48b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西成功定律\",\n    \"author\": \"拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情的力量\",\n    \"author\": \"亚瑟・乔拉米卡利/凯瑟琳・柯茜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能2\",\n    \"author\": \"刘船洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇特的传染\",\n    \"author\": \"李・丹尼尔・克拉韦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049605-d91e82?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的焦虑\",\n    \"author\": \"斯科特・施托塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱共情\",\n    \"author\": \"保罗・布卢姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最神奇的24堂课\",\n    \"author\": \"查尔斯・哈奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一印象心理学\",\n    \"author\": \"周一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049380-6bfe58?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会心理学（第8版）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（青春版）\",\n    \"author\": \"书鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缺爱\",\n    \"author\": \"罗伯特・纳伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系黑洞\",\n    \"author\": \"周慕姿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047640-dc0f46?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻辣心理学\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047523-bb5dc8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过程决定成败\",\n    \"author\": \"乔尔・布罗克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046644-6b9c12?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"FBI微情绪心理学（若水集）\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反套路\",\n    \"author\": \"大卫・迪萨沃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046386-816bad?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边缘型人格障碍\",\n    \"author\": \"兰迪・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生十二法则\",\n    \"author\": \"乔丹・彼得森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出剧情\",\n    \"author\": \"李雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童教育心理学\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭情绪的力量\",\n    \"author\": \"珍妮弗・泰兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个行业都离不开心理学（套装共5册）\",\n    \"author\": \"王梓等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人心理学\",\n    \"author\": \"赵育宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与自己和解\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使（见识丛书）\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不同的音调\",\n    \"author\": \"约翰・唐文/凯伦・祖克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能：为什么我们管不住自己？\",\n    \"author\": \"特里・伯纳姆/杰伊・费伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041325-3a6922?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美关系的秘密\",\n    \"author\": \"杨冰阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041142-df8089?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信的力量\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040455-c1bdea?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑型人格自救手册\",\n    \"author\": \"安娜・威廉姆森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040062-b694e0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越（果麦经典）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039837-b00dc9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名区\",\n    \"author\": \"匿名用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038982-74f6e2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儿童分析的故事\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫉羡与感恩\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的心理学\",\n    \"author\": \"G. 尼尔・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035829-d36c8b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超效自控\",\n    \"author\": \"魏冰冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035580-026207?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑心理学\",\n    \"author\": \"董心洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035310-d689df?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都能梦的解析\",\n    \"author\": \"高铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035280-e7c7d0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类心理学\",\n    \"author\": \"小川仁志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035106-50ba06?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方心理学名著译丛（套装共十四册）\",\n    \"author\": \"赫尔曼・艾宾浩斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035172-bd4fe6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑星球笔记\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035019-621de5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的眼界，决定你的全世界\",\n    \"author\": \"西武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034974-0a7e53?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给阿尔吉侬的花束（理想国）\",\n    \"author\": \"丹尼尔・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会吃饭\",\n    \"author\": \"珍・克里斯特勒/艾莉莎・鲍曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱意识\",\n    \"author\": \"沈诱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控关系\",\n    \"author\": \"格雷琴・鲁宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大潜能\",\n    \"author\": \"肖恩・埃科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034437-0178db?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与生活\",\n    \"author\": \"理查德・格里格/菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失误：为什么我们总爱犯错？\",\n    \"author\": \"凯瑟琳・舒尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"登天的感觉\",\n    \"author\": \"岳晓东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033522-deb968?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己的人自带光芒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感吸血鬼\",\n    \"author\": \"克里斯蒂娜・诺尔斯特鲁普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032970-8fa260?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界尽头的咖啡馆\",\n    \"author\": \"约翰・史崔勒基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何提升性格优势\",\n    \"author\": \"安妮・博格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032571-eaa275?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公主走进黑森林\",\n    \"author\": \"吕旭亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032340-822a73?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的人都是提问高手\",\n    \"author\": \"樱井弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032184-64c791?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理营养\",\n    \"author\": \"林文采/伍娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因文集（套装共4册）\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九型人格·珍藏版\",\n    \"author\": \"海伦・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031533-f58968?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲点：为什么我们易被偏见左右\",\n    \"author\": \"约瑟夫・哈利南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031374-2ecc9a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只想和你好好生活\",\n    \"author\": \"武志红等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（精装纪念版）\",\n    \"author\": \"张文成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031155-58fe32?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商：我们该如何应对坏事件\",\n    \"author\": \"保罗・史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知尺度\",\n    \"author\": \"魏坤琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑心理学：别让美好的生活被焦虑毁了\",\n    \"author\": \"陈东城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030768-ce633e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理界限\",\n    \"author\": \"杨嘉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学经典必读系列（套装共5册）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德浪女\",\n    \"author\": \"朵思.伊斯頓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众（作家榜经典文库）\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河合隼雄心理学经典\",\n    \"author\": \"河合隼雄等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030357-1b42df?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信表达\",\n    \"author\": \"兰迪・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030198-77c629?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响：如何自然地赢得他人的心\",\n    \"author\": \"凯伦・梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书写的疗愈力量（原书第3版）\",\n    \"author\": \"詹姆斯・彭尼贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029613-545650?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时忍住就好了（插图典藏版）\",\n    \"author\": \"肯・林德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029577-e20eb2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何建立好人缘\",\n    \"author\": \"谢湘萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的勇气\",\n    \"author\": \"岸见一郎/古贺史健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029367-9f1f8a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商沟通术\",\n    \"author\": \"胡慎之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029124-a2a12a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲密关系心理学\",\n    \"author\": \"大卫・斯杜普/简・斯杜普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029010-4d0922?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要快乐，不必正常\",\n    \"author\": \"珍妮特・温特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪\",\n    \"author\": \"莉莎・费德曼・巴瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028908-566a52?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么我们总是在逃避\",\n    \"author\": \"约瑟夫・布尔戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028359-3ffd8c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑急救\",\n    \"author\": \"贝芙・艾斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028233-5b176f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪是什么\",\n    \"author\": \"乔瓦尼・弗契多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028149-1fa93a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学\",\n    \"author\": \"杰弗里・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不再害羞\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027789-fbee3f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿德勒积极心理学（套装共4册）\",\n    \"author\": \"阿尔弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027780-02be68?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合作的复杂性\",\n    \"author\": \"罗伯特・阿克塞尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点（作家榜经典文库）\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正能量\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027312-ce75d5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秘密如何改变了我们的生活\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这不是你的错\",\n    \"author\": \"马克・沃林恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在成长\",\n    \"author\": \"塔玛・琼斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞脑科学\",\n    \"author\": \"盖瑞・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026820-32a86b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"婚姻心理学\",\n    \"author\": \"霍妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026814-a0dd95?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知迭代\",\n    \"author\": \"卡罗琳・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性之谜\",\n    \"author\": \"雨果・梅西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思维\",\n    \"author\": \"S.J. Scott/Barrie Davenport\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未发现的自我\",\n    \"author\": \"卡尔・古斯塔夫・荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025497-5a5313?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势将至，未来已来\",\n    \"author\": \"王鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025284-f820b9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思辨与立场\",\n    \"author\": \"理查德・保罗/琳达・埃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知升级\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025041-559d0c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劫持\",\n    \"author\": \"玛丽•K. 斯温格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们的信任\",\n    \"author\": \"布鲁斯・施奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024999-0143fe?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学三论（果麦经典）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024942-0c5d1b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"催眠二十八讲\",\n    \"author\": \"威廉姆・韦斯利・库克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024915-d17460?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不执着，叫看破 不完美，是生活\",\n    \"author\": \"莫妮卡・拉米雷斯・巴斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意识光谱\",\n    \"author\": \"肯・威尔伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商（全六册）\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024453-d6e5b5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原生家庭\",\n    \"author\": \"苏珊・福沃德/克雷格・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024315-e9494b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去的理由\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人的艺术\",\n    \"author\": \"山姆・高斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024294-65b337?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Never Split the Difference\",\n    \"author\": \"Chris Voss/Tahl Raz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024258-60d859?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐藏的人格\",\n    \"author\": \"黄国胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024195-e4abf0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉泵和其他思考工具\",\n    \"author\": \"丹尼尔・丹尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的秘密\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"态度改变与社会影响\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023853-1d340e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超意识\",\n    \"author\": \"菲尔图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错不在我\",\n    \"author\": \"卡罗尔・塔夫里斯/艾略特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023679-7893fe?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体不说谎\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体从未忘记\",\n    \"author\": \"巴塞尔・范德考克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023610-57fe2f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与原生家庭和解\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为设计学：零成本改变\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023532-18abb2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思维\",\n    \"author\": \"叶修\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023460-34d28e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知天性\",\n    \"author\": \"彼得・布朗/亨利・勒迪格三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经的逻辑\",\n    \"author\": \"埃利泽・斯滕伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在革命：一本关于成长的书\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶的科学\",\n    \"author\": \"西蒙・巴伦-科恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注意力曲线\",\n    \"author\": \"露西・乔・帕拉迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022548-72319e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的幸福\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022284-740f82?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的最小行动\",\n    \"author\": \"刘轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022134-f272bd?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生总会有办法 : 用逆向思维解决难题\",\n    \"author\": \"戴维・尼文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让人生停止灰暗的艺术\",\n    \"author\": \"苏珊・福沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021906-c19745?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果你再勇敢一点\",\n    \"author\": \"波莉・莫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021660-aab07e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Daring Greatly\",\n    \"author\": \"Brene Brown\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走神的艺术与科学\",\n    \"author\": \"迈克尔・C.科尔巴里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"默读\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021312-2cf0a1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性心理学\",\n    \"author\": \"哈夫洛克・霭理士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021249-41baed?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情感勒索\",\n    \"author\": \"苏珊・福沃德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021204-0a1bfc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脆弱的力量\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021078-290a71?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪勒索\",\n    \"author\": \"朱迪斯·P·西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021009-58665a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雄性衰落\",\n    \"author\": \"菲利普・津巴多/尼基塔・库隆布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020970-224943?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"比赛中的行为经济学\",\n    \"author\": \"托拜厄斯・莫斯科维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020904-4868bc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Thinking, Fast and Slow\",\n    \"author\": \"Daniel Kahneman\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020733-b4e6fa?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点：如何赢得友谊并影响他人\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020529-00fe95?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"找到意想不到的自己\",\n    \"author\": \"丛扬洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020430-d63e63?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷暴力\",\n    \"author\": \"玛丽・弗朗斯・伊里戈扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者沟通圣经\",\n    \"author\": \"珍妮弗・康维勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形人格\",\n    \"author\": \"海伦・麦格拉斯/哈泽尔・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020031-123343?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪最伟大的心理学实验\",\n    \"author\": \"伦・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019893-bcc56f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命中最简单又最困难的事\",\n    \"author\": \"大卫・福斯特・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019881-0c36b8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不存在的人\",\n    \"author\": \"阿尼尔・阿南塔斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019830-4d406a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞察：精确观察和有效沟通的艺术\",\n    \"author\": \"艾米・赫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲罢不能：刷屏时代如何摆脱行为上瘾\",\n    \"author\": \"亚当・阿尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诊疗椅上的谎言\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019815-2a3900?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杠杆说服力\",\n    \"author\": \"凯文・霍根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019623-c2c1a7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何活出生命的意义\",\n    \"author\": \"杰西・贝林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019359-395102?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感谢那些让你不开心的事儿\",\n    \"author\": \"索尼娅・瑞克蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019236-6bd523?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹课程\",\n    \"author\": \"海伦・舒曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019197-f582a7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"披着羊皮的狼\",\n    \"author\": \"乔治.K.西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018948-a7cfe4?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"压榨式提问\",\n    \"author\": \"布莱恩・格雷泽/查尔斯・菲什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018912-d6e59c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异类的天赋\",\n    \"author\": \"凯文・达顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Furiously Happy\",\n    \"author\": \"Jenny Lawson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018477-7d1e06?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识的错觉\",\n    \"author\": \"史蒂文・斯洛曼/菲利普・费恩巴赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018315-259ab2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑幸福：如何活成你想要的模样\",\n    \"author\": \"马克・曼森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018303-5054fe?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理韧性的力量\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018291-0b8a09?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心流\",\n    \"author\": \"米哈里・契克森米哈赖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018141-dde7a1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现心流\",\n    \"author\": \"米哈里・契克森米哈赖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018129-01fd31?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服：像讲故事一样讲道理\",\n    \"author\": \"尼克・克里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017778-78f09d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑使用指南\",\n    \"author\": \"赵思家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017454-809589?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再也不怕跟人打交道\",\n    \"author\": \"莉尔・朗兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自卑与超越（经典完整译本）\",\n    \"author\": \"阿弗雷德・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017193-116343?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能\",\n    \"author\": \"卫蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017163-f4def7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好人为什么会作恶\",\n    \"author\": \"托马斯・布拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016959-db3d20?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会提问（第十版）\",\n    \"author\": \"尼尔・布朗/斯图尔特・基利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016674-f06b5d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道金斯科学经典系列（套装共三册）\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016665-7167df?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读心神探：FBI心理侧写术\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计心理学（全四册）\",\n    \"author\": \"唐纳德・A・诺曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016626-0875e7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就要很独特\",\n    \"author\": \"西蒙・布莱克本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016554-bec7cf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆转\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016524-460c47?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为心理学\",\n    \"author\": \"约翰・华生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016383-2e302b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷恋：如何制造持久的吸引力\",\n    \"author\": \"莎莉・霍格斯黑德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016335-64929d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者优势\",\n    \"author\": \"Marti Olsen Laney\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016314-c5509f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么我们会上瘾\",\n    \"author\": \"迈克尔・库赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016179-c81d0e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯直觉心理学\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016014-26ab45?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一种选择\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016002-2ef252?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不成熟的父母\",\n    \"author\": \"琳赛・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015978-19b735?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可爱的诅咒\",\n    \"author\": \"雅基・马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015768-fe4a62?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理性的非理性\",\n    \"author\": \"郑毓煌/苏丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015717-410de3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界哲学史\",\n    \"author\": \"汉斯・约阿西姆・施杜里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015684-127350?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反焦虑思维\",\n    \"author\": \"罗尔・克肖/ 比尔・韦德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015648-08a46e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读自己心理阅读书系（第1辑）\",\n    \"author\": \"卡伦・霍妮等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015639-644be4?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你唯一的缺点就是太完美了\",\n    \"author\": \"马丁・安东尼/理查德・斯文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015636-84f772?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与理性\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015546-5d6351?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非天赋\",\n    \"author\": \"斯科特・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015531-e896f7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的影响力\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015537-02d9e0?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接感\",\n    \"author\": \"卡洛琳・戴奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015516-ce0614?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节：如何轻松影响他人\",\n    \"author\": \"罗伯特・西奥迪尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的大猩猩\",\n    \"author\": \"克里斯托弗・查布利斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在的重生\",\n    \"author\": \"吉杜・克里希那穆提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015477-39ea6d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交天性\",\n    \"author\": \"马修・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞关系学\",\n    \"author\": \"亚当・加林斯基/马利斯・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么被霸凌？\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015261-36ff57?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚毅\",\n    \"author\": \"安杰拉・达克沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015231-e2dc65?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内心平静，才能快速行动\",\n    \"author\": \"碧姬・德吕蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015150-d48231?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红书\",\n    \"author\": \"荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015039-8a6091?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变带来医治\",\n    \"author\": \"亨利・克劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014841-214fcc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变心理学的40项研究（第7版）\",\n    \"author\": \"罗杰・R・霍克博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014838-650722?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟乐嘉学性格色彩\",\n    \"author\": \"乐嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014859-334205?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会动物\",\n    \"author\": \"戴维・布鲁克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014367-2e013a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强势谈判心理学\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014361-f635fc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014028-901478?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑自我：如何成为一个很幸福的人\",\n    \"author\": \"尼尔・帕斯理查\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013746-1a8179?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Stealing Fire\",\n    \"author\": \"Steven Kotler / Jamie Wheal\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013662-bcb2e6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美II\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013653-c8d28d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱到绝处便逢生\",\n    \"author\": \"卢悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013566-43e5ee?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱是一切的答案\",\n    \"author\": \"芭芭拉・安吉丽思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013560-d25c4d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非暴力沟通\",\n    \"author\": \"马歇尔・卢森堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013548-f663a8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯社会心理学套装（第8版共4册）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013611-f376ca?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝非偶然\",\n    \"author\": \"埃利奥特・阿伦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信力：成为最好的自己\",\n    \"author\": \"罗布・杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012822-5aa98f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先发影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012780-a20378?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兽绅士\",\n    \"author\": \"巫家民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012660-d06b04?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗兰克尔自传：活出生命的意义\",\n    \"author\": \"维克多・弗兰克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012507-1ce2f9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习\",\n    \"author\": \"本尼迪克特・凯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不抱怨的世界套装（共2册）\",\n    \"author\": \"威尔・鲍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011442-839945?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荣格自传：回忆・梦・思考\",\n    \"author\": \"卡尔・古斯塔夫・荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011127-2e5b54?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果没有今天，明天会不会有昨天？\",\n    \"author\": \"伊夫・博萨尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010665-9c2c9a?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德动物\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"习惯的力量（图文精编版）\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的力量（珍藏版）\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小心，无良是一种病\",\n    \"author\": \"玛莎・斯托特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010494-d80680?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情力\",\n    \"author\": \"亚瑟・乔拉米卡利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010311-5eb039?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弗洛伊德经典作品集\",\n    \"author\": \"弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010278-e9d59e?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的艺术\",\n    \"author\": \"艾里希・弗洛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010122-1f898c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白板\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想本质\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言本能\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智探奇\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜意识：控制你行为的秘密\",\n    \"author\": \"列纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009711-44b0d1?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"象与骑象人：幸福的假设\",\n    \"author\": \"乔纳森・海特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009654-67ea14?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人来自火星，女人来自金星（套装共4册）\",\n    \"author\": \"约翰・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不诚实的诚实真相\",\n    \"author\": \"丹・艾瑞里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009519-879ad6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"害羞心理学\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009510-378800?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分心也有好婚姻\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦的解析\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009282-2232c8?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁动了我的奶酪\",\n    \"author\": \"斯宾塞・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009150-f75f96?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智行动的艺术\",\n    \"author\": \"罗尔夫・多贝里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009012-b48f59?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冥想5分钟，等于熟睡一小时\",\n    \"author\": \"里克・汉森/理查德・蒙迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008994-681a13?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼搭讪学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼约会学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008952-8a6737?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗达・拜恩作品集（全五册）\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008868-6c5f07?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格拉德威尔经典系列（套装共5册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008817-5267fc?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当尼采哭泣\",\n    \"author\": \"欧文・亚隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008346-a7d90b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生变态狂\",\n    \"author\": \"詹姆斯・法隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008187-852b5b?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂成瘾者\",\n    \"author\": \"马克・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008163-e5e6c5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别和她说话\",\n    \"author\": \"遇瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张德芬身心灵四部曲（套装共4册）\",\n    \"author\": \"张德芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞利格曼幸福五部曲\",\n    \"author\": \"马丁・塞利格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"24重人格（十周年纪念版）\",\n    \"author\": \"卡梅伦・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007740-d16ede?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像疯子一样思考，像天才一样行动\",\n    \"author\": \"凯文・达顿/安迪・麦克纳布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007617-83ecfb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷读术（白金珍藏版）\",\n    \"author\": \"石真语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨婴国\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双脑记：认知神经科学之父加扎尼加自传\",\n    \"author\": \"迈克尔・加扎尼加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石头剪刀布博弈心理学\",\n    \"author\": \"木瓜制造\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007338-0946f5?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎鲨游戏之十重人格女孩\",\n    \"author\": \"王健霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理罪（套装共5册）\",\n    \"author\": \"雷米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌合之众：大众心理研究（修订版）\",\n    \"author\": \"古斯塔夫·勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓愚：操纵与欺骗的经济学\",\n    \"author\": \"乔治·阿克洛夫/罗伯特·席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED竞争心理学\",\n    \"author\": \"玛格丽特·赫夫南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会性动物\",\n    \"author\": \"Elliot Aronson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的重建\",\n    \"author\": \"露易丝·海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完整的成长：儿童生命的自我创造\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱和自由：孙瑞雪幼儿教育演讲录\",\n    \"author\": \"孙瑞雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反脆弱：从不确定性中获益\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866\",\n    \"category\": \"心理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拖延症患者自救手册\",\n    \"author\": \"加兰・库尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默感\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读\",\n    \"author\": \"艾比・马克斯・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英高效阅读法\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非虚构写作指南\",\n    \"author\": \"李梓新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046785-ed2ee0?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会写作\",\n    \"author\": \"粥左罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技巧：如何用一年时间获得十年的经验\",\n    \"author\": \"郝培强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10秒沟通\",\n    \"author\": \"荒木真理子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰田一页纸极简思考法\",\n    \"author\": \"浅田卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020367-535edd?p=8866\",\n    \"category\": \"技巧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿色黄金：茶叶帝国\",\n    \"author\": \"艾伦・麦克法兰/艾丽斯・麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866\",\n    \"category\": \"茶文化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕\",\n    \"author\": \"阿敏・马卢夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866\",\n    \"category\": \"中亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大博弈：英俄帝国争霸战\",\n    \"author\": \"彼得・霍普柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866\",\n    \"category\": \"中亚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯：晨昏岛屿的集市\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866\",\n    \"category\": \"威尼斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯是一条鱼\",\n    \"author\": \"提齐安诺・斯卡帕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866\",\n    \"category\": \"威尼斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上威尼斯\",\n    \"author\": \"亚历山德罗・马尔佐・马尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866\",\n    \"category\": \"威尼斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"芯片陷阱\",\n    \"author\": \"马克・拉叙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495186-db8ef2?p=8866\",\n    \"category\": \"芯片\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光刻巨人\",\n    \"author\": \"瑞尼・雷吉梅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866\",\n    \"category\": \"芯片\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“芯”想事成\",\n    \"author\": \"陈芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866\",\n    \"category\": \"芯片\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默书房丛书（套装共8册）\",\n    \"author\": \"J.K.杰罗姆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986989-a243cd?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可怕的中年\",\n    \"author\": \"贾森・黑兹利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052275-fe05f1?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅都市生存指南（套装全9册）\",\n    \"author\": \"贾森・黑兹利/乔尔・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超纲冷知识\",\n    \"author\": \"吉姆・查普曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开市大吉（果麦经典）\",\n    \"author\": \"老舍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏拉图和鸭嘴兽一起去酒吧\",\n    \"author\": \"托马斯・卡斯卡特/丹尼尔・克莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻找无双\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035061-224a42?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对笑喷之弃业医生日志\",\n    \"author\": \"亚当・凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二十二条军规（纪念版）\",\n    \"author\": \"约瑟夫・海勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011919-31c86e?p=8866\",\n    \"category\": \"幽默\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866\",\n    \"category\": \"国家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家行动\",\n    \"author\": \"程琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016677-c8f62e?p=8866\",\n    \"category\": \"国家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲望都市\",\n    \"author\": \"坎迪斯・布什奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990379-bb75be?p=8866\",\n    \"category\": \"都市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北上广女子图鉴\",\n    \"author\": \"王小圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866\",\n    \"category\": \"都市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据如何误导了我们\",\n    \"author\": \"桑内・布劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼统计学\",\n    \"author\": \"伊恩・艾瑞斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511344-1b7066?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错觉：AI如何通过数据挖掘误导我们\",\n    \"author\": \"加里・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据资本时代\",\n    \"author\": \"Viktor Mayer-Schnberger\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户画像\",\n    \"author\": \"赵宏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小数据之美\",\n    \"author\": \"陈辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982447-1e6d76?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发\",\n    \"author\": \"艾伯特-拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027993-9ab187?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字中国\",\n    \"author\": \"江青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026172-41fe7f?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四维人类\",\n    \"author\": \"劳伦斯・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数文明\",\n    \"author\": \"涂子沛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决战大数据（升级版）\",\n    \"author\": \"车品觉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017913-52f044?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧政府\",\n    \"author\": \"徐继华/冯启娜/陈贞汝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013230-588ffe?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大数据时代\",\n    \"author\": \"维克托・迈尔・舍恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010281-c20367?p=8866\",\n    \"category\": \"大数据\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房可以很简单\",\n    \"author\": \"子安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866\",\n    \"category\": \"买房\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家的书\",\n    \"author\": \"考薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866\",\n    \"category\": \"买房\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就业、利息和货币通论\",\n    \"author\": \"约翰・梅纳德・凯恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034656-57288e?p=8866\",\n    \"category\": \"凯恩斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（插图新注新译本）\",\n    \"author\": \"亚瑟·柯南·道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866\",\n    \"category\": \"福尔摩斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文通史\",\n    \"author\": \"詹尼特・勒博・本顿/罗伯特・笛亚尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866\",\n    \"category\": \"文化史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香料漂流记\",\n    \"author\": \"加里・保罗・纳卜汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044238-605eec?p=8866\",\n    \"category\": \"文化史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧亚皇家狩猎史\",\n    \"author\": \"托马斯・爱尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866\",\n    \"category\": \"文化史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们太缺一门叫生命的学问\",\n    \"author\": \"薛仁明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029520-f3bc05?p=8866\",\n    \"category\": \"文化史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的起源\",\n    \"author\": \"刘大可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497466-2034fd?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么长这样\",\n    \"author\": \"爱丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在病毒中生存\",\n    \"author\": \"苗德岁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5分钟生物课\",\n    \"author\": \"冯智\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511134-5ad126?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：活细胞的物理观\",\n    \"author\": \"埃尔温・薛定谔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么：40亿年生命史诗的开端\",\n    \"author\": \"埃迪・普罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003546-7d4c71?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触（第二版）\",\n    \"author\": \"大卫・奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因与命运\",\n    \"author\": \"斯蒂芬·J.海涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之源\",\n    \"author\": \"尼克・連恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端生存\",\n    \"author\": \"史蒂芬・帕鲁比/安东尼・帕鲁比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我包罗万象\",\n    \"author\": \"埃德・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043266-561836?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创世记\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能生存学\",\n    \"author\": \"李・戈德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（五）\",\n    \"author\": \"惠更斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的算法\",\n    \"author\": \"罗宾・邓巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驯化\",\n    \"author\": \"艾丽丝・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物城邦系列（共四册）\",\n    \"author\": \"伯特・霍尔多布勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030435-d80ab8?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙：一种未明的动物（增订本）\",\n    \"author\": \"马小星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028452-c59106?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美的进化\",\n    \"author\": \"理查德·O.普鲁姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命密码\",\n    \"author\": \"尹烨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缤纷的生命\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘易斯·托马斯作品（共5册）\",\n    \"author\": \"刘易斯・托马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因、大脑和人类潜能\",\n    \"author\": \"肯・理查森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新设计生命\",\n    \"author\": \"约翰・帕林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲眼钟表匠\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未完成的进化\",\n    \"author\": \"凯文・拉兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类存在的意义\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的未来：从双螺旋到合成生命\",\n    \"author\": \"克雷格・文特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020724-9f0385?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百科通识全系列大套装（共49本）\",\n    \"author\": \"安德鲁・巴兰坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020376-81a38d?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的手术刀\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基因传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地球上最伟大的表演\",\n    \"author\": \"理查德・毛姆道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命接触：全球大型传染病探秘之旅\",\n    \"author\": \"大卫·奎曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866\",\n    \"category\": \"生物\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰的预言\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053016-dca2af?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活人禁忌\",\n    \"author\": \"九锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粉笔人\",\n    \"author\": \"C.J.图德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042825-f56dbd?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到黑泉镇\",\n    \"author\": \"托马斯・奥尔德・赫维尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034671-16eada?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"环界（套装共4册）\",\n    \"author\": \"铃木光司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033525-63923d?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丽赛的故事\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033405-037d31?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕梦网\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033348-e0226f?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪灵\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宠物公墓\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029295-453cf7?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘与白骨的王国（全4册）\",\n    \"author\": \"格里格・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023694-8bd945?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球悬疑大师典藏合集（全19册）\",\n    \"author\": \"斯蒂芬・金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019833-298e5f?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼在你身后（套装全3册）\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017280-4eab29?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿修罗系列惊悚小说三部曲\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013029-d113e7?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"河神·鬼水怪谈\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010197-a492df?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"它（全2册）\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008799-057004?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎鲨游戏之十重人格女孩\",\n    \"author\": \"王健霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录2：最后的复辟挣扎\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗族\",\n    \"author\": \"缪热\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866\",\n    \"category\": \"惊悚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个成语中的古代生活史\",\n    \"author\": \"许晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师经典：王力先生的古代文化通识课\",\n    \"author\": \"王力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512367-d2614c?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代志怪小说鉴赏辞典\",\n    \"author\": \"上海辞书出版社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002868-8633d6?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代钱币\",\n    \"author\": \"华东师大博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053706-4553fa?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史无间道\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代人的日常生活\",\n    \"author\": \"讲历史的王老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043638-abdc6f?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国门阀大族的消亡\",\n    \"author\": \"谭凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯尔特神话\",\n    \"author\": \"米兰达・阿尔德豪斯-格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026139-d5e318?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古代大案探奇录系列丛书\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020886-9e4f01?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广州贸易\",\n    \"author\": \"范岱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古代艳情小说史\",\n    \"author\": \"张廷兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011268-efad9b?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九品中正制研究\",\n    \"author\": \"张旭华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010656-17c168?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓶梅（崇祯本）\",\n    \"author\": \"兰陵笑笑生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008631-0b6df9?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（校注本）\",\n    \"author\": \"施耐庵/罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记（校注本）\",\n    \"author\": \"吴承恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（校注本）\",\n    \"author\": \"曹雪芹/高鹗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大中国史（全新校订超值珍藏版）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国神话大词典\",\n    \"author\": \"袁珂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866\",\n    \"category\": \"古代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唯有猫能治愈我\",\n    \"author\": \"杰克森・盖勒克西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033900-848a6b?p=8866\",\n    \"category\": \"铲屎官\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一定有人在祈祷着\",\n    \"author\": \"山田宗树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983299-f98eb2?p=8866\",\n    \"category\": \"感人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴别塔之犬\",\n    \"author\": \"卡罗琳・帕克丝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032178-12fb03?p=8866\",\n    \"category\": \"感人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活出人生最好的可能\",\n    \"author\": \"毕啸南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021909-536ba4?p=8866\",\n    \"category\": \"感人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疲劳自救手册\",\n    \"author\": \"玛丽・伯吉斯/特鲁迪・查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497475-e986a2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康守护全书\",\n    \"author\": \"梁湛威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499209-1c9f53?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拯救你的睡眠\",\n    \"author\": \"阿里安娜・赫芬顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499422-0ad975?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戒糖：改变一生的科学饮食法\",\n    \"author\": \"初夏之菡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好孕，从卵子开始\",\n    \"author\": \"瑞贝卡・费特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500655-c5e536?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个健康吃货的自我修养（共4册）\",\n    \"author\": \"威廉・李博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学休息\",\n    \"author\": \"亚历克斯・索勇－金・庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505929-497bb9?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌上的危机\",\n    \"author\": \"玛丽安・麦克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张文鹤护肤指南\",\n    \"author\": \"张文鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一起来粉碎朋友圈养生谣言\",\n    \"author\": \"好奇博士团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你想知道的生酮饮食错误\",\n    \"author\": \"米尔萨德・哈西奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伴你一生的睡眠指导书\",\n    \"author\": \"爱丽丝・格雷戈里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老爸评测：你的健康呵护指南\",\n    \"author\": \"老爸评测\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512535-af72f0?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干掉失眠\",\n    \"author\": \"科琳・恩斯特朗姆/阿丽莎・布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学跑步\",\n    \"author\": \"罗炜樑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥胖代码\",\n    \"author\": \"冯子新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姿势跑法\",\n    \"author\": \"尼古拉斯・罗曼诺夫/约翰・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样减肥不反弹\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优雅老去\",\n    \"author\": \"杰罗尔德・温特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990655-a922dd?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不吃糖的理由\",\n    \"author\": \"加里・陶布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989851-a15964?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口一口“吃掉”你\",\n    \"author\": \"生命时报\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度营养\",\n    \"author\": \"凯瑟琳・沙纳汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经科医生有话要说\",\n    \"author\": \"吴洵昳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无伤跑法\",\n    \"author\": \"戴剑松/郑家轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电增肌\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健身笔记\",\n    \"author\": \"叔贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"久坐不伤身\",\n    \"author\": \"哈丽特・格里菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自愈力的真相\",\n    \"author\": \"乔・马钱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045252-1206fc?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产科男医生手记\",\n    \"author\": \"田吉顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我们灵魂激荡身体欢愉\",\n    \"author\": \"任黎明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043866-18019c?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晓肚知肠\",\n    \"author\": \"段云峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043326-134f07?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女生呵护指南\",\n    \"author\": \"六层楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康零食：知道这些就够了\",\n    \"author\": \"戴尔・沃勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是你吃出来的\",\n    \"author\": \"夏萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么会发胖\",\n    \"author\": \"盖里・陶比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去你的脂肪\",\n    \"author\": \"格兰特・斯科菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体2\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"主食芯片\",\n    \"author\": \"鸿涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032313-6abb7f?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食療聖經\",\n    \"author\": \"Michael Greger, MD\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031794-797945?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷物大脑\",\n    \"author\": \"戴维・珀尔马特/戴维・珀尔马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菌群大脑\",\n    \"author\": \"戴维・珀尔马特/克里斯廷・洛伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"急救，比医生快一步\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食的迷思\",\n    \"author\": \"蒂姆・斯佩克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮肤的秘密\",\n    \"author\": \"耶尔・阿德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破解生死大数据\",\n    \"author\": \"杰瑞米・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长寿的基因\",\n    \"author\": \"普雷斯顿・埃斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西1\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西2\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023928-751840?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明年更年轻\",\n    \"author\": \"克里斯・克劳利/亨利・洛奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救命之方\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023430-dd9f1a?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，健身房\",\n    \"author\": \"高宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太极跑：不费力、无伤害的革命性跑步法\",\n    \"author\": \"丹尼・德雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周健身4小时\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021222-0e5913?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识身体\",\n    \"author\": \"加文・弗朗西斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冥想\",\n    \"author\": \"斯瓦米・拉玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019578-9ee5ca?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡眠革命\",\n    \"author\": \"尼克・利特尔黑尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肠子的小心思\",\n    \"author\": \"朱莉娅・恩德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这书能让你戒烟\",\n    \"author\": \"亚伦・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011292-5c7edf?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救护车到来前，你能做什么？\",\n    \"author\": \"贾大成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谣言粉碎机系列（套装共3册）\",\n    \"author\": \"果壳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学观止（上下册）\",\n    \"author\": \"贺兰特・凯查杜里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的重建\",\n    \"author\": \"露易丝·海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众病之王：癌症传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔玉涛：宝贝健康公开课\",\n    \"author\": \"崔玉涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004908-0271f7?p=8866\",\n    \"category\": \"健康\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于火星的一切\",\n    \"author\": \"李德范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866\",\n    \"category\": \"火星\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火星救援\",\n    \"author\": \"安迪·威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006720-999daf?p=8866\",\n    \"category\": \"火星\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新规则\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866\",\n    \"category\": \"竞争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与众不同\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866\",\n    \"category\": \"竞争\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家们的作家\",\n    \"author\": \"克雷格・惠特洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492210-4f29b8?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王的归程\",\n    \"author\": \"威廉・达尔林普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510789-d047d4?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有终点的列车\",\n    \"author\": \"劳拉・麦克维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030246-4da254?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群山回唱\",\n    \"author\": \"卡勒德・胡赛尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029064-c691c9?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无规则游戏\",\n    \"author\": \"塔米姆・安萨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866\",\n    \"category\": \"阿富汗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字乌托邦\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020883-6adb43?p=8866\",\n    \"category\": \"软件\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大教堂与集市\",\n    \"author\": \"Eric S. Raymond\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017643-c49df8?p=8866\",\n    \"category\": \"软件\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计模式之禅（第2版）\",\n    \"author\": \"秦小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866\",\n    \"category\": \"软件\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不吼不叫，妈妈这样做，孩子一定喜欢（套装三册）\",\n    \"author\": \"韩笑/李力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034617-802318?p=8866\",\n    \"category\": \"家庭教育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866\",\n    \"category\": \"房龙\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧烤怪谈\",\n    \"author\": \"蔡必贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866\",\n    \"category\": \"诡异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866\",\n    \"category\": \"诡异\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"善哉善哉，就你话多\",\n    \"author\": \"明安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小文艺口袋文库·知人系列（全7册）\",\n    \"author\": \"安妮・海勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985999-ba1691?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇迹病房\",\n    \"author\": \"朱利安・桑德勒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983974-3ed4fc?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢你，像风走了八千里\",\n    \"author\": \"末那大叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒野（木小瓷作品）\",\n    \"author\": \"木小瓷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049983-aec537?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹是深闺梦里人\",\n    \"author\": \"井上三尺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030462-ce1a44?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏，不止旅行\",\n    \"author\": \"周硚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活上瘾指南\",\n    \"author\": \"姚瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿司匹林博物馆\",\n    \"author\": \"赵越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我留在你身边\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009714-b77a2e?p=8866\",\n    \"category\": \"文艺\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱迪生：创新之源与商业成就的秘密\",\n    \"author\": \"里昂纳多・迪格拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028344-204c61?p=8866\",\n    \"category\": \"爱迪生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙（白金升级版）\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妈妈的战争\",\n    \"author\": \"Momself\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破圈：如何突破认知局限并实现终身成长\",\n    \"author\": \"顾及\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样发言\",\n    \"author\": \"久久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神兽引领的使命\",\n    \"author\": \"小松美羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498813-e7da4f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑：看清这个世界的底牌\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为可怕的自律人\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499233-71cb99?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样行动\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不必太用力\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不和世界讲道理\",\n    \"author\": \"曹晟康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500178-c94c1a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔科姆·格拉德威尔系列（套装共6册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间管理\",\n    \"author\": \"吉姆・兰德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500340-640c65?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理咨询师系列精选（套装14册）\",\n    \"author\": \"沙格曼・卡亚金等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500541-cb7910?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宁静的力量\",\n    \"author\": \"瑞安・霍利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500661-e3cdce?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"错失恐惧\",\n    \"author\": \"帕特里克·J.麦金尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500760-480526?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自律修炼手册\",\n    \"author\": \"史蒂夫・帕弗利纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500763-ae1e4a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智突围\",\n    \"author\": \"Windy Liu\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500784-b71caf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿鸣心理·心理自助读物精选（套装17册）\",\n    \"author\": \"南茜・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿智者的法则\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李诞脱口秀工作手册\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是你啊\",\n    \"author\": \"皮埃尔・佩利西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理敏感\",\n    \"author\": \"全弘镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508092-cbb0a1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别会说话的人都这样说话\",\n    \"author\": \"大野萌子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极心理测试\",\n    \"author\": \"迈克・布里翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509244-f90270?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就是干不过做PPT的\",\n    \"author\": \"下地宽也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509607-fcbab6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱可能\",\n    \"author\": \"伊迪丝・伊娃・埃格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带着恐惧前行\",\n    \"author\": \"鲁斯・苏库普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510180-c33921?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没时间休息的休息法\",\n    \"author\": \"荻野淳也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510219-79ad9b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘与荣耀\",\n    \"author\": \"马寅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510381-a861bf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给职场人的5堂逻辑思考课\",\n    \"author\": \"深泽真太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己当回事儿\",\n    \"author\": \"杨天真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断舍离（全3册）\",\n    \"author\": \"山下英子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510945-54d643?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"负面情绪，正面解决\",\n    \"author\": \"利斯・范・萨斯特伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510939-6c58a7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惰性\",\n    \"author\": \"加布里埃尔・厄廷根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511077-b1ee53?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪力\",\n    \"author\": \"萨姆・阿利布兰多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511164-6145a4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非线性成长\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尬聊终结者\",\n    \"author\": \"庄舒涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不妥协的谈判\",\n    \"author\": \"丹尼尔・夏皮罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个性优势\",\n    \"author\": \"吉姆・巴雷特/休・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511347-2ee920?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交谈的要素\",\n    \"author\": \"N.J.恩菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511476-4db402?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗（青少版）\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511956-44780a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲技巧\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512052-f9a19a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个工作基本\",\n    \"author\": \"松浦弥太郎/野尻哲也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512118-2798e5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为黑马\",\n    \"author\": \"托德・罗斯/奥吉・奥加斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512115-a73ff5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规划最好的一年\",\n    \"author\": \"迈克尔・海亚特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512514-02047a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重复力\",\n    \"author\": \"梁译文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512568-22e654?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万富翁比你强在哪儿\",\n    \"author\": \"安・玛丽・萨巴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512610-18f14c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不为所动\",\n    \"author\": \"朱迪斯・欧洛芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512892-a43fc0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越自卑\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512901-1651ea?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进有道\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512904-0b5469?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱自己是一生浪漫的开始\",\n    \"author\": \"静听风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513075-1286b7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节的力量\",\n    \"author\": \"FLANAGAN裕美子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513111-35214f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策大脑\",\n    \"author\": \"艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513321-96e79f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智商税\",\n    \"author\": \"高德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513330-2251ee?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时这样说就好了\",\n    \"author\": \"伊庭正康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控沟通\",\n    \"author\": \"贾斯汀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级心智\",\n    \"author\": \"诺曼·E·罗森塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513693-5e6741?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自律给你自由\",\n    \"author\": \"约克・威林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513741-adf394?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抓重点\",\n    \"author\": \"赵启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004644-1ddabe?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选准赛道再奔跑\",\n    \"author\": \"七芊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004608-82df1b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为自控者\",\n    \"author\": \"Susan Kuang\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004494-7eeeaf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢家法则\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004374-804330?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的才华战略\",\n    \"author\": \"莱昂纳多・洛斯佩纳托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我边界\",\n    \"author\": \"乔治・戴德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004260-42ce47?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：透过表面看本质的六步思考法\",\n    \"author\": \"萧亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004149-6c477b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何戒掉坏习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚持，一种可以养成的习惯\",\n    \"author\": \"古川武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003810-be7b78?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瞧！不一样的我\",\n    \"author\": \"小盐真司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003723-564f84?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢思考\",\n    \"author\": \"特奥・康普诺利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003558-4cb404?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气场哪里来\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003540-37d1e7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快行动，慢思考\",\n    \"author\": \"迪安・德尔・塞斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002415-60e276?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本抑郁自救指南\",\n    \"author\": \"所长任有病\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为主角\",\n    \"author\": \"陈岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为非凡的你\",\n    \"author\": \"杰西卡・迪卢洛・赫林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002193-fafba0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘墉的处世情商课\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓会说话，就是会换位思考\",\n    \"author\": \"卡洛琳・塔格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002073-ea5db8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的做事风格系列（全3册）\",\n    \"author\": \"高桥政史/横田真由子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002070-37a922?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动机心理学\",\n    \"author\": \"罗曼・格尔佩林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002016-a8251f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷静表达的艺术\",\n    \"author\": \"罗纳德·T·派特佛恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑你好\",\n    \"author\": \"安珀・雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造人生的伙伴\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祝你快乐勇敢\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场自我成长\",\n    \"author\": \"渡边秀和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001134-9c9089?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拖延症患者自救手册\",\n    \"author\": \"加兰・库尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构化写作\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆宫殿\",\n    \"author\": \"石伟华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本事：应对未来世界的12项永久技能\",\n    \"author\": \"基兰・弗拉纳根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000405-a834ab?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闭环思维\",\n    \"author\": \"智俊启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆款写作\",\n    \"author\": \"陈阿咪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000342-ae106c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简时间\",\n    \"author\": \"洛塔尔・赛韦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000291-c277a4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越你的大脑\",\n    \"author\": \"玛莎・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000276-6ec305?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼岸风景\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000249-6eb01e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少有人走的路（1-8全套）\",\n    \"author\": \"斯科特・派克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000219-cda644?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21天说服力养成\",\n    \"author\": \"诺瓦・戈尔茨坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000174-b0db79?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"归属感\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999826-9a1d49?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好心情手册\",\n    \"author\": \"邵夷贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999712-2d96e2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的150个信念\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2轴思维\",\n    \"author\": \"木部智之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999532-427444?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动变现\",\n    \"author\": \"杨小米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999424-ac20ab?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大器晚成\",\n    \"author\": \"里奇・卡尔加德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就斜杠人生\",\n    \"author\": \"玛希・埃尔博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998818-5c9d5c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陌生人效应\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998548-5194e2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画生活哲学一看就懂\",\n    \"author\": \"李静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级个体\",\n    \"author\": \"徐大维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"懂得倾听，是学会沟通的第一步\",\n    \"author\": \"伯纳德·T.费拉里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997870-0eb102?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打破你的学生思维\",\n    \"author\": \"北京职慧公益创业发展中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997843-a71c7e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考\",\n    \"author\": \"樱田润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997600-d2665d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在动机\",\n    \"author\": \"爱德华・L. 德西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997342-de547e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朋友圈的人际高手\",\n    \"author\": \"诸葛思远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997123-04d286?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知红利\",\n    \"author\": \"谢春霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天演好一个情绪稳定的成年人\",\n    \"author\": \"老杨的猫头鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996994-edf7f5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬功夫：助你精进的八大硬核技能\",\n    \"author\": \"崔诚靓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效沟通的100种方法\",\n    \"author\": \"王利利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内心的重建\",\n    \"author\": \"维尼老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996175-2a2c01?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效迭代\",\n    \"author\": \"冯起升\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"带货王\",\n    \"author\": \"李瑛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活需要界限感\",\n    \"author\": \"景天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995263-2bc9b2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会幸福\",\n    \"author\": \"陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"差异优势\",\n    \"author\": \"约翰·C. 马克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级大脑的七个习惯\",\n    \"author\": \"菅原道仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995182-38b399?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"持续行动\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995179-bf6496?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为极少数\",\n    \"author\": \"李栩然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995131-73e16b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本口才书\",\n    \"author\": \"陈慕妤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商大师（息怒篇）\",\n    \"author\": \"伯纳德・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向上生长\",\n    \"author\": \"九边\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995068-5df96e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讲好一个故事\",\n    \"author\": \"默里・诺塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995053-9ef98f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇敢而非完美\",\n    \"author\": \"拉什玛・萨贾尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心：稻盛和夫的一生嘱托\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度改变\",\n    \"author\": \"泽阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994561-5fcd0c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何形成清晰的观点\",\n    \"author\": \"查尔斯·S.皮尔士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力\",\n    \"author\": \"高琳/林宏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默就是说话让人舒服\",\n    \"author\": \"王荣华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993952-7eaaf2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煤气灯效应\",\n    \"author\": \"罗宾・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被拒绝的勇气\",\n    \"author\": \"岸见一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993493-64723f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讲好一件事\",\n    \"author\": \"埃丝特·K·乔伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992356-e961db?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪革命\",\n    \"author\": \"约翰・辛德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗逆力\",\n    \"author\": \"邹建章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992029-95a7a3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天赋觉醒\",\n    \"author\": \"江潮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992014-0ffeb8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让性格害了你\",\n    \"author\": \"邢群麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让情绪毁了你的努力\",\n    \"author\": \"剑圣喵大师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力：人生自救课\",\n    \"author\": \"博锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991816-6657bc?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格拼图\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声音的魅力\",\n    \"author\": \"张皓翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991552-babdf5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向高敏者\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991516-921fc6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是个年轻人，请你好好生活\",\n    \"author\": \"吕不同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991471-8feb15?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场谈判经典书系（套装共3册）\",\n    \"author\": \"德雷克・阿顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恰到好处的挫折\",\n    \"author\": \"格雷格• S •里德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991267-795ad9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生没有后悔药\",\n    \"author\": \"约翰・伊佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990643-2981f8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你没有退路，才有出路\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的优点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990421-adb4e8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会决断（原书第2版）\",\n    \"author\": \"苏・哈德菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即答力\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990169-68ccea?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图攻略\",\n    \"author\": \"王健文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样沟通最高效\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年顶十年\",\n    \"author\": \"剽悍一只猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989455-699466?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课3\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不想将就过一生\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你又忙又美，何惧患得患失\",\n    \"author\": \"梁爽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样用脑不会累\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维的囚徒\",\n    \"author\": \"亚历克斯・佩塔克斯/伊莱恩・丹顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超强专注力\",\n    \"author\": \"西多昌规\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我要做人生的甲方\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"是谁出的题这么难，到处都是正确答案\",\n    \"author\": \"邱天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考法\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧与魔咒\",\n    \"author\": \"塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微精通\",\n    \"author\": \"罗伯特・特威格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图形思考与表达的20堂课\",\n    \"author\": \"久恒启一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好接话\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本正经又怪诞的行为心理学\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985639-1775da?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时短术\",\n    \"author\": \"日本生产性改善会议\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985471-dd0c8f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩的就是规则\",\n    \"author\": \"伊恩・伯格斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进阶\",\n    \"author\": \"天降龙虾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985267-e969dd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个抗压的人\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何思考\",\n    \"author\": \"迈克尔D.C.卓特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984643-f68bb5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何做一场精彩的演讲\",\n    \"author\": \"琼・戴兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异议的力量\",\n    \"author\": \"查兰・奈米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生护城河\",\n    \"author\": \"张辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983704-127285?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认同自己\",\n    \"author\": \"斯蒂芬妮・斯塔尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给别人留下好印象\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小逻辑：让选择变简单的方法\",\n    \"author\": \"欧文・瑟维斯/罗里・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀到不能被忽视\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与表达力影响力\",\n    \"author\": \"洪琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054306-56f527?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与内心的冲突和解\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有意识的社交\",\n    \"author\": \"肯・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是我要的工作\",\n    \"author\": \"克里斯・吉耶博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用事实说话\",\n    \"author\": \"马克・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：如何成为一个有价值的知识变现者\",\n    \"author\": \"Angie\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢在上班时\",\n    \"author\": \"高城幸司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会快乐\",\n    \"author\": \"马修・理查德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052965-df8220?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一问一世界\",\n    \"author\": \"杨澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052782-f552f4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一眼识破真相的思考力\",\n    \"author\": \"丹尼尔・列维汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知·情感·意志\",\n    \"author\": \"詹姆斯・马克・鲍德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在时光中盛开的女子\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控：如何成为一个冷静智慧的人\",\n    \"author\": \"董小楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052524-78de4c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为职场实力派\",\n    \"author\": \"日本GLOBIS商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052479-c909c0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商是什么？\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的自律，给你自由\",\n    \"author\": \"小椰子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零压人生\",\n    \"author\": \"米修・斯托罗尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051774-c1d5fd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力迁移\",\n    \"author\": \"乔治・安德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向思考\",\n    \"author\": \"迈克尔・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的降落伞是什么颜色？（全新修订版）\",\n    \"author\": \"理查德・尼尔森・鲍利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样管精力，就怎样过一生\",\n    \"author\": \"奥迪尔・夏布里亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可能性法则\",\n    \"author\": \"梅尔・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051441-e9bca0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学经典课程分享（套装9册）\",\n    \"author\": \"哈佛大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早起的奇迹\",\n    \"author\": \"哈尔・埃尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051405-4773be?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"总能做出正确决定的幸运法则\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是记性差，只是没找对方法\",\n    \"author\": \"池田义博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出众，从改变习惯开始\",\n    \"author\": \"马克・列克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡决断力\",\n    \"author\": \"石井辉美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾心可鉴\",\n    \"author\": \"彭凯平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051123-b5e48b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡笔记思考法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长行动指南\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加速\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051021-d70559?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精力管理手册\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050901-31d610?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键提问\",\n    \"author\": \"詹姆斯·E.瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通也要懂套路\",\n    \"author\": \"姜朝川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你不是失败，只是差一点成功\",\n    \"author\": \"萨拉・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马云的说话之道（2019版）\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津式高效沟通\",\n    \"author\": \"冈田昭人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反本能2\",\n    \"author\": \"刘船洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的焦虑\",\n    \"author\": \"斯科特・施托塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟沟通课\",\n    \"author\": \"鱼住理英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最神奇的24堂课\",\n    \"author\": \"查尔斯・哈奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别做那只迷途的候鸟\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都合得来\",\n    \"author\": \"罗伯特・萨顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049395-f814dd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一印象心理学\",\n    \"author\": \"周一南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049380-6bfe58?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会心理学（第8版）\",\n    \"author\": \"戴维・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要如何衡量你的人生\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力思维\",\n    \"author\": \"安东尼・塔斯加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（青春版）\",\n    \"author\": \"书鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"受益一生的六本书（套装六册）\",\n    \"author\": \"鬼谷子等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果敢力\",\n    \"author\": \"蒋齐仕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度说服\",\n    \"author\": \"梁秋阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趁早（十周年畅销升级版）\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被左右的独立思维\",\n    \"author\": \"塔利・沙罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安心正念课\",\n    \"author\": \"赵安安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046125-a2aee7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出剧情\",\n    \"author\": \"李雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结拖延症的49种方法\",\n    \"author\": \"海韵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆天才\",\n    \"author\": \"弗朗西斯卡・吉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快书写，慢思考\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045027-424d69?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年轻人，你就是想太多\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045006-2bc59b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"积极思考\",\n    \"author\": \"约翰尼・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044913-7a0138?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5秒法则\",\n    \"author\": \"梅尔・罗宾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044172-d3beba?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你当像鸟飞往你的山\",\n    \"author\": \"塔拉・韦斯特弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看人心理学\",\n    \"author\": \"赵育宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为面向未来的学习者（原书第7版）\",\n    \"author\": \"卡罗尔・卡特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而不凡\",\n    \"author\": \"维申・拉克雅礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册：重塑升级版\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"策略：如何在复杂的世界里成为高手\",\n    \"author\": \"江潮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商者会谈判\",\n    \"author\": \"冯岳宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三道门\",\n    \"author\": \"亚历克斯・班纳言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的创造力类型\",\n    \"author\": \"梅塔・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不怯场\",\n    \"author\": \"译夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042144-f8796b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆\",\n    \"author\": \"卢龙斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惯性思维\",\n    \"author\": \"任白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本能：为什么我们管不住自己？\",\n    \"author\": \"特里・伯纳姆/杰伊・费伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041325-3a6922?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人极简图表工作法\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董卿：做一个有才情的女子\",\n    \"author\": \"乔瑞玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要输在思维方法上\",\n    \"author\": \"夏欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040785-53d198?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力：刘媛媛的逆袭课\",\n    \"author\": \"刘媛媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040512-7c2ad0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信的力量\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040455-c1bdea?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奔跑的查理\",\n    \"author\": \"查理・恩格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040404-94e03c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不会拒绝上\",\n    \"author\": \"李劲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勇气\",\n    \"author\": \"萨莉・克劳切克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度连接\",\n    \"author\": \"杰西・沃伦・特维罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039315-f3117a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好听：如何练就好声音\",\n    \"author\": \"徐洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038898-d0f679?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"练习的心态\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038139-a13fd2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫉羡与感恩\",\n    \"author\": \"梅兰妮・克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说话体现格局，决定结局\",\n    \"author\": \"凌岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A4纸上看人生\",\n    \"author\": \"刘建梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的眼界，决定你的全世界\",\n    \"author\": \"西武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周工作4小时（修订版）\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱意识\",\n    \"author\": \"沈诱冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的第八个习惯\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的84000种可能\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033465-4e8890?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深夜加油站遇见苏格拉底\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高维度思考法\",\n    \"author\": \"细谷功\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进2：解锁万物的心智进化法\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十几岁，没有十年\",\n    \"author\": \"孙晴悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"升维：让你人生出众的另类通道\",\n    \"author\": \"褚明宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学经典必读系列（套装共5册）\",\n    \"author\": \"西格蒙德・弗洛伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我曾走在崩溃的边缘\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每一个认真生活的人，都值得被认真对待\",\n    \"author\": \"马叛/傅首尔/小岩井等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030477-a9eb3c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲和力\",\n    \"author\": \"古宫昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有多强大，就有多温柔\",\n    \"author\": \"王珣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有你的计划，世界另有计划\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029721-72fca7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长：颠覆思维模式，重新定义成功\",\n    \"author\": \"科里・夏纳罕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029661-3b9e65?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向前一步\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你只是看起来很专注\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你坚持的原则其实害了你\",\n    \"author\": \"午堂登纪雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029151-25cd57?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再忙也要用心生活\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩老板\",\n    \"author\": \"索菲亚・阿莫鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高能量姿势\",\n    \"author\": \"埃米・卡迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027921-c57e26?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾莉诺好极了\",\n    \"author\": \"盖尔・霍尼曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027849-94039f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30岁前的每一天\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027846-1a01dd?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果世事总能得偿所愿\",\n    \"author\": \"余儒海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027333-fd42c9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正能量\",\n    \"author\": \"理查德・怀斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027312-ce75d5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在天堂那五年\",\n    \"author\": \"约翰・施利姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027240-d0e434?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自我赋能\",\n    \"author\": \"蒂法尼・杜芙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027006-6f650f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力变现\",\n    \"author\": \"林宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我们相逢在更高处\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026193-085500?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让直性子毁了你\",\n    \"author\": \"冠诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024201-97cdf0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美好人生运营指南\",\n    \"author\": \"一稼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022893-a74f2b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是时间控\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活出人生最好的可能\",\n    \"author\": \"毕啸南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021909-536ba4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向着光亮那方\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020682-46d971?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰普勒极简人生法则系列（套装共6册）\",\n    \"author\": \"理查德・泰普勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点：如何赢得友谊并影响他人\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020529-00fe95?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓高情商，就是有趣和知趣\",\n    \"author\": \"李林坪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019842-a3c50e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书都不会读，你还想成功\",\n    \"author\": \"二志成/郑会一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019692-41d226?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感谢那些让你不开心的事儿\",\n    \"author\": \"索尼娅・瑞克蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019236-6bd523?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我不要你死于一事无成\",\n    \"author\": \"法齐娅・库菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的孤独\",\n    \"author\": \"陈果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017451-8689ec?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活法（修订版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016905-37a500?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你骨子里是个牛人\",\n    \"author\": \"珍・新赛罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016563-63ad1c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一种选择\",\n    \"author\": \"谢丽尔・桑德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016002-2ef252?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没经验，是你最大优势\",\n    \"author\": \"蒋雅淇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015990-ad6ad2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉田医生哈佛求学记\",\n    \"author\": \"吉田穗波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世上没有怀才不遇这件事\",\n    \"author\": \"温言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014346-461bcf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你要么出众，要么出局\",\n    \"author\": \"李尚龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014193-3f0667?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拆掉思维里的墙\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014028-901478?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从现在出发\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013962-86c669?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在哈佛的最后一堂课\",\n    \"author\": \"艾瑞克・赛诺威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不完美，才美II\",\n    \"author\": \"海蓝博士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013653-c8d28d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信力：成为最好的自己\",\n    \"author\": \"罗布・杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012822-5aa98f?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习\",\n    \"author\": \"本尼迪克特・凯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在绝望中寻找希望\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你自以为的极限，只是别人的起点\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011988-1c9150?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作DNA\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的奋斗\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011676-e33838?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不抱怨的世界套装（共2册）\",\n    \"author\": \"威尔・鲍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011442-839945?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决冲突的关键技巧\",\n    \"author\": \"达纳・卡斯帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生不设限（中英双语版）\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"28岁赚千万\",\n    \"author\": \"穷富弹指间\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当下的力量（珍藏版）\",\n    \"author\": \"埃克哈特・托利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生命有什么可能\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当你的才华还撑不起你的梦想时\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意学习\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁动了我的奶酪\",\n    \"author\": \"斯宾塞・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009150-f75f96?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力法则：用一年时间积累一生财富（套装共3册）\",\n    \"author\": \"拿破仑・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你从未真正拼过\",\n    \"author\": \"LinkedIn（领英）\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008895-f7513b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朗达・拜恩作品集（全五册）\",\n    \"author\": \"朗达・拜恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008868-6c5f07?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗振宇：罗辑思维成长三部曲\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008769-f7cf2e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你的青春不负梦想\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008100-18736d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是清单控\",\n    \"author\": \"宝拉・里佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007710-be0e00?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我还年轻，我还可以重新出发\",\n    \"author\": \"唐骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨婴国\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生：面对冰封的海洋\",\n    \"author\": \"贝尔・格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷军：创业没有时间表\",\n    \"author\": \"胡以贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独自上场\",\n    \"author\": \"李娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大是熬出来的\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进：如何成为一个很厉害的人\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的重建\",\n    \"author\": \"露易丝·海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷禁书\",\n    \"author\": \"查尔斯・哈尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫眼看美国\",\n    \"author\": \"聂平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全中国最穷的小伙子发财日记\",\n    \"author\": \"重庆老康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力，才配有未来\",\n    \"author\": \"小川叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"努力到无能为力，拼搏到感动自己\",\n    \"author\": \"沐木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006447-568588?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院最受欢迎的思维课\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不奋斗就等死\",\n    \"author\": \"陈轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006111-6361a4?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（20周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂的程序员\",\n    \"author\": \"绝影\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005982-212b99?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要让未来的你，讨厌现在的自己\",\n    \"author\": \"特立独行的猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005937-7d4be8?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的真谛\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁的青春不迷茫\",\n    \"author\": \"刘同\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史玉柱自述：我的营销心得\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁都不敢欺负你\",\n    \"author\": \"力克・胡哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005631-9ebae5?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将来的你，一定会感谢现在拼命的自己\",\n    \"author\": \"汤木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界因你不同：李开复自传\",\n    \"author\": \"李开复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005244-a5ac8a?p=8866\",\n    \"category\": \"励志\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销革命3.0（轻携版）\",\n    \"author\": \"菲利普・科特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046362-c6312f?p=8866\",\n    \"category\": \"价值观\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎魔人修订版一至八全集\",\n    \"author\": \"安杰伊・萨普科夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493842-0102d1?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎魔人修订版全集（全七卷）\",\n    \"author\": \"安杰伊・萨普科夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503922-b0f3e6?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾之子珍藏版套装\",\n    \"author\": \"布兰登・桑德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508860-829716?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚瑟王三部曲\",\n    \"author\": \"伯纳德・康威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508911-7853b0?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百变王牌套装\",\n    \"author\": \"乔治·R.R.马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004479-0fecb7?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐骨\",\n    \"author\": \"天涯野草\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991843-ed92a9?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食梦馆\",\n    \"author\": \"黎奺酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985045-f4a6e9?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸魔法系列三部曲\",\n    \"author\": \"查丽・恩・霍姆博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052563-87c7f5?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驭鲛记（全二册）\",\n    \"author\": \"九鹭非香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045429-d26386?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡林的子女（插图本）\",\n    \"author\": \"J.R.R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044868-5b0ca5?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Game of Thrones Series\",\n    \"author\": \"George R. R. Martin\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039252-7f3bcd?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的阴阳两界\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035031-a60fc1?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乳房\",\n    \"author\": \"菲利普・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白天的房子，夜晚的房子\",\n    \"author\": \"奥尔加・托卡尔丘克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027042-2e68ad?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍比特人\",\n    \"author\": \"J.R.R. 托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023265-3225d7?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"齐天大圣传（共六册）\",\n    \"author\": \"楚阳冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021522-feabef?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙枪正典（套装共6册）\",\n    \"author\": \"玛格丽特・魏丝/崔西・西克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017556-0ea52d?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精灵宝钻\",\n    \"author\": \"托尔金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015567-02c2c7?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈利波特完整系列\",\n    \"author\": \"J・K・罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008673-cef687?p=8866\",\n    \"category\": \"魔幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级搜索术\",\n    \"author\": \"朱丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004089-122bcf?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微精通\",\n    \"author\": \"罗伯特・特威格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何一开口就赢\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用手机拍一部电影\",\n    \"author\": \"英国Little White Lies编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好听：如何练就好声音\",\n    \"author\": \"徐洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038898-d0f679?p=8866\",\n    \"category\": \"技能\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午两甲子：忆与思\",\n    \"author\": \"姜鸣/贾葭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866\",\n    \"category\": \"甲午\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午殇思\",\n    \"author\": \"刘声东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009177-e05cf4?p=8866\",\n    \"category\": \"甲午\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新政与盛世\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045420-8e75ff?p=8866\",\n    \"category\": \"晚明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚明民变\",\n    \"author\": \"李文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017412-226b45?p=8866\",\n    \"category\": \"晚明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变历史的100个实验（套装共2册）\",\n    \"author\": \"亚当・哈特-戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502659-93c7ba?p=8866\",\n    \"category\": \"实验\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效论证\",\n    \"author\": \"大卫・莫罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的才华战略\",\n    \"author\": \"莱昂纳多・洛斯佩纳托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超强专注力\",\n    \"author\": \"西多昌规\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是方法控\",\n    \"author\": \"金武贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讨论\",\n    \"author\": \"史蒂芬·D. 布鲁克菲尔德/史蒂芬・普莱斯基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984676-66809c?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安心正念课\",\n    \"author\": \"赵安安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046125-a2aee7?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思考\",\n    \"author\": \"迈克・费廖洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结拖延症的49种方法\",\n    \"author\": \"海韵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂一本书\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学习\",\n    \"author\": \"斯科特・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓学习好，就是方法好\",\n    \"author\": \"坪田信贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036189-bba070?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作提高一点点\",\n    \"author\": \"玛丽-凯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033330-7c6a2b?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道（第2版）\",\n    \"author\": \"乔希・维茨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读\",\n    \"author\": \"藤原和博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意改变\",\n    \"author\": \"玛丽・简・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028248-dd3101?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思辨与立场\",\n    \"author\": \"理查德・保罗/琳达・埃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完全写作指南\",\n    \"author\": \"劳拉・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为有效学习的高手\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万万没想到：用理工科思维理解世界\",\n    \"author\": \"万维钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"延展：释放有限资源的无限潜能\",\n    \"author\": \"斯科特・索南沙因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全神贯注的方法\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习：彻底解决你的知识焦虑\",\n    \"author\": \"今井睦美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019398-eb3c14?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效阅读\",\n    \"author\": \"彼得・孔普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018705-8aca11?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸工作整理术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016548-7f5190?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一页纸创意思考术\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的工作方法\",\n    \"author\": \"中村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请停止无效努力\",\n    \"author\": \"孙圈圈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何打造你的独特观点\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014178-6adf58?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意练习：如何从新手到大师\",\n    \"author\": \"安德斯・艾利克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本文学书\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012756-430541?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本书\",\n    \"author\": \"莫提默・艾德勒 / 查尔斯・范多伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡工具\",\n    \"author\": \"保罗・弗里嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要自学\",\n    \"author\": \"张玳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决问题最简单的方法\",\n    \"author\": \"达伦・布里奇/戴维・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外语是怎样学会的\",\n    \"author\": \"王初明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级记忆力训练法\",\n    \"author\": \"刘志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005052-7a59fb?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的眼脑直映快读法\",\n    \"author\": \"胡雅茹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004983-8ff776?p=8866\",\n    \"category\": \"方法\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之一·入唐\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006813-c02669?p=8866\",\n    \"category\": \"神怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之二·咒俑\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006810-5335bf?p=8866\",\n    \"category\": \"神怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之三·胡术\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006801-6964e4?p=8866\",\n    \"category\": \"神怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙门空海之大唐鬼宴·卷之四·不空\",\n    \"author\": \"梦枕貘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006795-b95cc7?p=8866\",\n    \"category\": \"神怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凶年\",\n    \"author\": \"大卫・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理档案（共4册）\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日食之后\",\n    \"author\": \"萨拉・佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003177-593f47?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理套装（共四册）\",\n    \"author\": \"许大鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默之地\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000417-20afbf?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理分析\",\n    \"author\": \"张蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救赎之路\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000348-51b134?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后之子\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000255-aea9fc?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以眼还眼\",\n    \"author\": \"米切尔·P·罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记3\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神弃之地\",\n    \"author\": \"唐纳德・雷・波洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985507-b2ba91?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋上的救赎（增补版）\",\n    \"author\": \"指纹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053079-0512e3?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪全书系列（共6册）\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052944-2dd9a4?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦畸者\",\n    \"author\": \"叶遁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽微的人性\",\n    \"author\": \"李玫瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052320-cff183?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱尔兰人\",\n    \"author\": \"查尔斯・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051825-b70bae?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎凶记（套装全三册）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051765-86815f?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者3\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破碎海岸\",\n    \"author\": \"彼得・坦普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047442-f42c38?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神谕之死\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044010-bd23c2?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪6\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顶级悬案\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040371-b4acad?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白城恶魔\",\n    \"author\": \"埃里克・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038736-2b449e?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无夜边境\",\n    \"author\": \"田浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038571-bea58f?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的法庭科学\",\n    \"author\": \"杰伊・西格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦渴\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼与福尔摩斯\",\n    \"author\": \"戴维・格兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有他知道一切\",\n    \"author\": \"利兹・纽金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027873-fe0d3b?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪3\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027291-d26495?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪2\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022272-fa2c80?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"默读\",\n    \"author\": \"Priest\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021312-2cf0a1?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶女：普通女性为何化身连环杀人狂\",\n    \"author\": \"彼得・佛伦斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020835-ba00af?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血法医（1-4季全集）\",\n    \"author\": \"杰夫・林赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读心神探：FBI心理侧写术\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拼布娃娃\",\n    \"author\": \"丹尼尔・科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015456-f0ae77?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪前传\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014943-24df7d?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪5\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013539-bb0b0c?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七杀简史\",\n    \"author\": \"马龙・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008202-0ba01b?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪4\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医手记系列套装（全四册）\",\n    \"author\": \"刘真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫鼠游戏\",\n    \"author\": \"弗兰克·阿巴格内尔/斯坦·雷丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007128-14a58e?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸案调查科系列（全5册）\",\n    \"author\": \"九滴水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳黑子\",\n    \"author\": \"须一瓜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006282-cd6c39?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866\",\n    \"category\": \"犯罪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健康守护全书\",\n    \"author\": \"梁湛威等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499209-1c9f53?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以武论道：李小龙的功夫心法（套装共5册）\",\n    \"author\": \"李小龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神经科医生有话要说\",\n    \"author\": \"吴洵昳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨提亚冥想\",\n    \"author\": \"约翰・贝曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很老很老的老偏方大全集（共10册）\",\n    \"author\": \"胡丽娟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医目了然\",\n    \"author\": \"懒兔子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和谐两性：从了解对方到相互吸引（套装共3册）\",\n    \"author\": \"埃德蒙・沙夫茨伯里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029880-48513c?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肿瘤防治科普丛书（套装共13册）\",\n    \"author\": \"重庆市肿瘤医院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆脱：失眠、抑郁、焦虑（套装共3册）\",\n    \"author\": \"凯特・米德尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019281-098512?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽烟喝酒防癌书\",\n    \"author\": \"柳垂亮/李万瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007020-4eeab1?p=8866\",\n    \"category\": \"保健\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球贸易摩擦与大国兴衰\",\n    \"author\": \"任泽平/罗志恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991219-d430c3?p=8866\",\n    \"category\": \"贸易战\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疫苗竞赛\",\n    \"author\": \"梅雷迪丝・瓦德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866\",\n    \"category\": \"疫苗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"免疫\",\n    \"author\": \"尤拉・比斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866\",\n    \"category\": \"疫苗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞行为学6\",\n    \"author\": \"丹・艾瑞里/马特・R.特劳尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048546-c8fffc?p=8866\",\n    \"category\": \"行为学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上寻仙记\",\n    \"author\": \"锦翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866\",\n    \"category\": \"鬼怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝诡事录\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866\",\n    \"category\": \"鬼怪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大猎杀2\",\n    \"author\": \"庄欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024588-69ffa1?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股民的眼泪\",\n    \"author\": \"张华桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战上海：决胜股市未来三十年\",\n    \"author\": \"洪榕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大猎杀\",\n    \"author\": \"庄欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006630-919838?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股市真规则（第二版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866\",\n    \"category\": \"股市\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博弈：所有问题都是一场赛局\",\n    \"author\": \"川西谕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509700-04f1de?p=8866\",\n    \"category\": \"策略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直面不确定性\",\n    \"author\": \"大辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866\",\n    \"category\": \"策略\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉语四千年\",\n    \"author\": \"黎锦熙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510942-d4292c?p=8866\",\n    \"category\": \"汉语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉语讲话\",\n    \"author\": \"王力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045315-e7ccda?p=8866\",\n    \"category\": \"汉语\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油的时代\",\n    \"author\": \"王能全\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866\",\n    \"category\": \"石油\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石油战争\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866\",\n    \"category\": \"石油\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"效应\",\n    \"author\": \"中璋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997804-194bf8?p=8866\",\n    \"category\": \"传播\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解媒介\",\n    \"author\": \"马歇尔・麦克卢汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031776-144515?p=8866\",\n    \"category\": \"传播\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弱传播\",\n    \"author\": \"邹振东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027201-40d002?p=8866\",\n    \"category\": \"传播\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典名著超值套装（80册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498210-cccd8e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基中篇心理小说经典（全4册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499635-ae8716?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界名著大师课合集（套装全7册）\",\n    \"author\": \"柳鸣九等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大名著（彩皮版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代文集（全7册）\",\n    \"author\": \"托马斯・哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989746-ce7666?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大名著·权威定本（套装4册）\",\n    \"author\": \"吴承恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985042-6b7221?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国四大名著（插图典藏版）\",\n    \"author\": \"曹雪芹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054390-341814?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界少年文学经典文库·国外经典篇（全套47册）\",\n    \"author\": \"雨果等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041877-25ba88?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方与北方（名著名译丛书）\",\n    \"author\": \"盖斯凯尔夫人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040674-6dd07a?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城堡（名著名译丛书）\",\n    \"author\": \"弗兰茨・卡夫卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040650-b9b5bf?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北大名家名著文丛（套装共六册）\",\n    \"author\": \"许渊冲等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040761-0f0cc1?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺丝在拧紧（译文经典）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039372-a73b97?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弃儿汤姆·琼斯史（全2册）\",\n    \"author\": \"亨利・菲尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037641-305812?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼采经典著作及研究丛书（四册全）\",\n    \"author\": \"尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036969-f5e56d?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷经典译文全集（共45册）\",\n    \"author\": \"巴尔扎克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036606-f389f7?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第四辑）\",\n    \"author\": \"大仲马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第五辑）\",\n    \"author\": \"梭罗等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035886-c54a82?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第一辑）\",\n    \"author\": \"莫泊桑等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名著名译丛书（第二辑）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克里斯朵夫（作家榜经典文库）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035442-13d259?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堂吉诃德（名著名译丛书）\",\n    \"author\": \"塞万提斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035391-f2f31c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国著名作家的必读短篇小说集（套装8本）\",\n    \"author\": \"契诃夫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035313-d1c72e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大卫·科波菲尔（名著名译丛书）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034719-d1f933?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忏悔录（名著名译丛书）\",\n    \"author\": \"卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034620-54b3ea?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威作品全集（套装共17册）\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034464-b3597e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一位女士的画像（名著名译丛书）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034101-54f30a?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西游记漫画版全套（共20册）\",\n    \"author\": \"天津神界漫画\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界十大文学名著（名译珍藏版）\",\n    \"author\": \"列夫・托尔斯泰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032628-52a9ac?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏目漱石四部曲\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031974-779200?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典文学名著四师深度解读推荐版（套装七册）\",\n    \"author\": \"威廉・福克纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生必读的外国文学经典（套装35册）（经典译林）\",\n    \"author\": \"詹姆斯・乔伊斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外国文学名著名译化境文库（套装共9册）\",\n    \"author\": \"化境文库编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"齐民要术（全本全注全译）\",\n    \"author\": \"贾思勰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030642-350654?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"（新华书店十年畅销书系列）世界名著39本合集（下册）\",\n    \"author\": \"新华文轩出版集团\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030141-351a91?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文学名著合辑（套装共50册）\",\n    \"author\": \"莎士比亚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与偏见（名著译林）\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029805-90d798?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（名著译林）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底两万里（名著译林）\",\n    \"author\": \"儒勒・凡尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029784-a7b283?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格列佛游记（名著译林）\",\n    \"author\": \"乔纳森・斯威夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029787-13d237?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钢铁是怎样炼成的（名著译林）\",\n    \"author\": \"尼・奥斯特洛夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦（果麦经典）\",\n    \"author\": \"曹雪芹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国演义（果麦经典）\",\n    \"author\": \"罗贯中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水浒传（果麦经典）\",\n    \"author\": \"施耐庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（读客经典）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028290-a85451?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎圣母院（世界十大文学名著）\",\n    \"author\": \"维克多・雨果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海（果麦经典）\",\n    \"author\": \"厄尼斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神曲（译文名著典藏）\",\n    \"author\": \"但丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026799-5090ac?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰戈尔集（全六册）\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司汤达集（全四册）\",\n    \"author\": \"司汤达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屠格涅夫集（全五册）\",\n    \"author\": \"屠格涅夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022206-6b62a3?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陀思妥耶夫斯基集（全九册）\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022209-03d5a0?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫集（套装共2册）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022194-6adc55?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左拉集（全四册）\",\n    \"author\": \"左拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福楼拜集（套装共3册）\",\n    \"author\": \"福楼拜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022185-594952?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的教育\",\n    \"author\": \"艾德蒙多・德・亚米契斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯集（套装共10册）\",\n    \"author\": \"狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈察洛夫集（全四册）\",\n    \"author\": \"冈察洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈代集（共五册）\",\n    \"author\": \"哈代\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德集（全五册）\",\n    \"author\": \"歌德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纪德集（全五册）\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德莱塞集（全四册）\",\n    \"author\": \"德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莱蒙托夫集（全二册）\",\n    \"author\": \"莱蒙托夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托尔斯泰集（共6册）\",\n    \"author\": \"托尔斯泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茨威格集（全2册）\",\n    \"author\": \"茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马集（共八册）\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"劳伦斯集（共5册）\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰·克利斯朵夫（全4册）\",\n    \"author\": \"罗曼・罗兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014469-ed82dc?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不如归\",\n    \"author\": \"德富芦花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014187-9c87f4?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三个火枪手\",\n    \"author\": \"大仲马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012471-f5ee43?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老人与海\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012459-fb55b5?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·奥斯丁文集（套装共6本）\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011874-14d4b5?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫小说全集（全10卷）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011106-4623e3?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡拉马佐夫兄弟\",\n    \"author\": \"陀思妥耶夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010242-7facf4?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漂亮朋友\",\n    \"author\": \"莫泊桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009795-28962c?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009786-616590?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔扎克精选集16册\",\n    \"author\": \"巴尔扎克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名利场（套装上下册）\",\n    \"author\": \"萨克雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008997-bf0775?p=8866\",\n    \"category\": \"名著\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"技术陷阱\",\n    \"author\": \"卡尔・贝内迪克特・弗雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造性破坏的力量\",\n    \"author\": \"菲利普・阿吉翁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498252-63196c?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助燃创新的人\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499887-18f06c?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大产品思维\",\n    \"author\": \"王雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产品思维\",\n    \"author\": \"张印帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004566-20c559?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日常生活中的发明原理\",\n    \"author\": \"高木芳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革性创新\",\n    \"author\": \"加里・皮萨诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的悖论\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福社会创新评论合集（套装共9册）\",\n    \"author\": \"斯坦福社会创新评论编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创模式\",\n    \"author\": \"段传敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994075-3700fb?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新大脑\",\n    \"author\": \"艾克纳恩・戈德堡艾克纳恩・戈德堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991867-61d613?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史：打开人类进步的黑匣子\",\n    \"author\": \"赵炎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991702-bc1ee7?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的行动\",\n    \"author\": \"乔舒亚・甘斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985939-5f27b0?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇才\",\n    \"author\": \"梅利莎・席林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来版图\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极限创新\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线创新\",\n    \"author\": \"李善友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的国度\",\n    \"author\": \"詹姆斯・布雷丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从颠覆到创新\",\n    \"author\": \"长江商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的任务\",\n    \"author\": \"克莱顿・克里斯坦森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的路径\",\n    \"author\": \"斯蒂芬・温克尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞奔的物种\",\n    \"author\": \"大卫・伊格曼/安东尼・布兰德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线：跨越“S型曲线”的二次增长\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生总会有办法 : 用逆向思维解决难题\",\n    \"author\": \"戴维・尼文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大创意的诞生\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019743-14b1f9?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史\",\n    \"author\": \"杨旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李善友颠覆式创新思维系列（共4册）\",\n    \"author\": \"李善友/龚焱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016941-a33728?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球风口\",\n    \"author\": \"王煜全/薛兆丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016092-2982cb?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第七感\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新自信力\",\n    \"author\": \"戴维・凯利/汤姆・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里改变世界：硅谷成功创新之谜\",\n    \"author\": \"黛博拉・佩里・皮肖内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的本能：类比思维的力量\",\n    \"author\": \"约翰・波拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂到位\",\n    \"author\": \"亚当・施特尔茨/威廉・帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的解答\",\n    \"author\": \"克莱顿・克里斯坦森/迈克尔・雷纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"创新\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴正传\",\n    \"author\": \"方兴东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866\",\n    \"category\": \"阿里巴巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尽在双11：阿里巴巴技术演进与超越\",\n    \"author\": \"阿里巴巴双11技术团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866\",\n    \"category\": \"阿里巴巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿布鞋的马云：决定阿里巴巴生死的27个节点\",\n    \"author\": \"王利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866\",\n    \"category\": \"阿里巴巴\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高铁风云录\",\n    \"author\": \"高铁见闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011880-d18366?p=8866\",\n    \"category\": \"高铁\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国速度\",\n    \"author\": \"高铁见闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008568-459c27?p=8866\",\n    \"category\": \"高铁\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也要认真穿\",\n    \"author\": \"黎贝卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866\",\n    \"category\": \"服饰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"章服之实\",\n    \"author\": \"王亚蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866\",\n    \"category\": \"服饰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理自助CBT书系（套装共七册）\",\n    \"author\": \"萨万・辛格等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛤蟆先生去看心理医生\",\n    \"author\": \"罗伯特・戴博德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗理性：如何掌控情绪\",\n    \"author\": \"卫蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511197-369a4f?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本抑郁自救指南\",\n    \"author\": \"所长任有病\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越你的大脑\",\n    \"author\": \"玛莎・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000276-6ec305?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪革命\",\n    \"author\": \"约翰・辛德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让情绪毁了你的努力\",\n    \"author\": \"剑圣喵大师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力：人生自救课\",\n    \"author\": \"博锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991816-6657bc?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理学与情商\",\n    \"author\": \"张小宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控：如何成为一个冷静智慧的人\",\n    \"author\": \"董小楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052524-78de4c?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系黑洞\",\n    \"author\": \"周慕姿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047640-dc0f46?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"FBI微情绪心理学（若水集）\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的人，从来不会输给情绪\",\n    \"author\": \"卫伟楠/Brent\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046419-e5175d?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑的情绪生活\",\n    \"author\": \"理查德・戴维森/莎朗・伯格利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驾驭情绪的力量\",\n    \"author\": \"珍妮弗・泰兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦虑型人格自救手册\",\n    \"author\": \"安娜・威廉姆森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040062-b694e0?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匿名区\",\n    \"author\": \"匿名用户\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038982-74f6e2?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超效自控\",\n    \"author\": \"魏冰冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035580-026207?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜拜吧，小情绪\",\n    \"author\": \"艾里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031779-3f1401?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪断舍离\",\n    \"author\": \"加勒特・克莱默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031341-1b6ca6?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消极情绪的力量\",\n    \"author\": \"托德・卡什丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实\",\n    \"author\": \"汉斯・罗斯林/欧拉・罗斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制怒心理学\",\n    \"author\": \"罗纳德・波特-埃弗隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030054-592833?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪\",\n    \"author\": \"莉莎・费德曼・巴瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028908-566a52?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪是什么\",\n    \"author\": \"乔瓦尼・弗契多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028149-1fa93a?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别相信他的脸\",\n    \"author\": \"亚历山大・托多罗夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027891-8dcd80?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内在成长\",\n    \"author\": \"塔玛・琼斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去的理由\",\n    \"author\": \"马特・海格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让直性子毁了你\",\n    \"author\": \"冠诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024201-97cdf0?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英系列（共五册）\",\n    \"author\": \"高杉尚孝等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内心平静，才能快速行动\",\n    \"author\": \"碧姬・德吕蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015150-d48231?p=8866\",\n    \"category\": \"情绪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python高性能编程\",\n    \"author\": \"戈雷利克/欧日沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python金融大数据分析\",\n    \"author\": \"伊夫・希尔皮斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础入门学习Python\",\n    \"author\": \"小甲鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零起点Python大数据与量化交易\",\n    \"author\": \"何海群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习入门：基于Python的理论与实现\",\n    \"author\": \"斋藤康毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对比Excel，轻松学习Python数据分析\",\n    \"author\": \"张俊红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Python爬虫框架Scrapy\",\n    \"author\": \"迪米特里奥斯 考奇斯-劳卡斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用Python写网络爬虫（第2版）\",\n    \"author\": \"Katharine Jarmul\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从Python开始学编程\",\n    \"author\": \"Vamei\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器学习实战\",\n    \"author\": \"Peter Harrington\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021075-0d6e7c?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用Python写网络爬虫\",\n    \"author\": \"理查德・劳森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019827-2bfb81?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像计算机科学家一样思考Python\",\n    \"author\": \"Allen B.Downey\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019812-6df559?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python基础教程（第3版）\",\n    \"author\": \"Magnus Lie Hetland\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019476-163e41?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精通Scrapy网络爬虫\",\n    \"author\": \"刘硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019203-cea982?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第3版）\",\n    \"author\": \"Wesley Chun\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python极客项目编程\",\n    \"author\": \"Mahesh Venkitachalam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018480-2d6eec?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Flask Web开发\",\n    \"author\": \"Miguel Grinberg\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018324-e7bedb?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流畅的Python\",\n    \"author\": \"Luciano Ramalho\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018351-499390?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python爬虫开发与项目实战\",\n    \"author\": \"范传辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018354-f08e57?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利用Python进行数据分析\",\n    \"author\": \"Wes McKinney\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017943-1de00a?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟老齐学Python\",\n    \"author\": \"老齐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016623-4a24a9?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python网络数据采集\",\n    \"author\": \"Ryan Mitchell\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨办法学Python\",\n    \"author\": \"Zed A.Shaw\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016419-cf9c7e?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程：从入门到实践\",\n    \"author\": \"埃里克・马瑟斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python学习手册（原书第4版）\",\n    \"author\": \"Mark Lutz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014307-045cb6?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python编程快速上手\",\n    \"author\": \"Al Sweigart\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python核心编程（第二版）\",\n    \"author\": \"丘恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子的编程之旅\",\n    \"author\": \"Warren Sande\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866\",\n    \"category\": \"Python\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张文鹤护肤指南\",\n    \"author\": \"张文鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866\",\n    \"category\": \"护肤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的肌肤能量书Ⅱ\",\n    \"author\": \"金柏莉・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039144-9df9ca?p=8866\",\n    \"category\": \"护肤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遇见孩子，遇见更好的自己\",\n    \"author\": \"赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866\",\n    \"category\": \"孩子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的降落伞是什么颜色？（全新修订版）\",\n    \"author\": \"理查德・尼尔森・鲍利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866\",\n    \"category\": \"求职\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The 2-Hour Job Search\",\n    \"author\": \"Steve Dalton\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029760-6cddaa?p=8866\",\n    \"category\": \"求职\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国史译（全7册）\",\n    \"author\": \"伊利娜・谢尔盖耶夫娜・雷巴乔诺克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伏特加政治\",\n    \"author\": \"马克・劳伦斯・施拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495120-2dd6c4?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"群星灿烂的年代\",\n    \"author\": \"伊・伊・巴纳耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499674-569481?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆记忆\",\n    \"author\": \"玛丽亚・斯捷潘诺娃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511308-7680dd?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗曼诺夫皇朝\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512334-c3c90b?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄罗斯文学（牛津通识读本）\",\n    \"author\": \"卡特里奥娜・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000954-afc95e?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗心\",\n    \"author\": \"米・布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000375-39b101?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果戈理文集（全7册）\",\n    \"author\": \"果戈理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051000-119a99?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生（名著名译丛书）\",\n    \"author\": \"帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050841-ba42c6?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日瓦戈医生\",\n    \"author\": \"鲍里斯・帕斯捷尔纳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049863-602d2e?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金蔷薇（果麦经典）\",\n    \"author\": \"康・帕乌斯托夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048282-b6e283?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格群岛\",\n    \"author\": \"亚历山大・索尔仁尼琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045198-ec8982?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣彼得堡\",\n    \"author\": \"乔纳森・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045036-3a0aa2?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金蔷薇（译文经典）\",\n    \"author\": \"帕乌斯托夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042630-5634d4?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师和玛格丽特（名著名译丛书）\",\n    \"author\": \"布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034545-231c0d?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说选（企鹅经典）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033195-5988c1?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大师与玛格丽特\",\n    \"author\": \"布尔加科夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031275-8620c1?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的帝国\",\n    \"author\": \"波波・洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个被绞死的人\",\n    \"author\": \"安德烈耶夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021981-96c437?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的天使\",\n    \"author\": \"瓦・勃留索夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021813-6662d1?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔谢尼耶夫的一生\",\n    \"author\": \"伊万・布宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021804-a41a4f?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娜塔莎之舞：俄罗斯文化史\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019431-5c55a7?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣彼得堡冬宫博物馆\",\n    \"author\": \"亚历山大・弗雷格伦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019044-36223b?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活下去，并且要记住\",\n    \"author\": \"拉斯普京\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015465-8edfc5?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症楼\",\n    \"author\": \"亚历山大・索尔仁尼琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005730-e81dcc?p=8866\",\n    \"category\": \"俄罗斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔的饱食：日本731细菌战部队揭秘\",\n    \"author\": \"森村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866\",\n    \"category\": \"731\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"体育健身训练丛书（套装全10册）\",\n    \"author\": \"阿诺德·G· 尼尔森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495096-de8ca5?p=8866\",\n    \"category\": \"体育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实科比\",\n    \"author\": \"罗兰・拉赞比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048894-1929bd?p=8866\",\n    \"category\": \"体育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李小龙遗作：你从未见过的功夫之王（套装共3册）\",\n    \"author\": \"李小龙/约翰・里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029949-2bcb8f?p=8866\",\n    \"category\": \"体育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当体育遇上商业\",\n    \"author\": \"乌尔里克・瓦格纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025614-d87bae?p=8866\",\n    \"category\": \"体育\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效忍者\",\n    \"author\": \"格雷厄姆・阿尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866\",\n    \"category\": \"高效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的秘密\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866\",\n    \"category\": \"高效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肉料理原来是这么回事儿\",\n    \"author\": \"亚瑟・勒凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866\",\n    \"category\": \"烹饪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨艺的常识\",\n    \"author\": \"迈克尔・鲁尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866\",\n    \"category\": \"烹饪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖15：便当灵感集\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866\",\n    \"category\": \"烹饪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世事无常\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990259-cfe89f?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪奇物语·噩梦\",\n    \"author\": \"宁航一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051531-fb4a6f?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活人禁忌\",\n    \"author\": \"九锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地狱书单\",\n    \"author\": \"格雷迪・亨德里克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036225-7848b6?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欢迎来到黑泉镇\",\n    \"author\": \"托马斯・奥尔德・赫维尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034671-16eada?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪灵\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗的另一半\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033198-ad91a2?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪屋\",\n    \"author\": \"雪莉・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032721-17527f?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希区柯克悬念故事集（典藏版）\",\n    \"author\": \"阿尔弗莱德・希区柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032016-4bcd4f?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026331-155838?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话Ⅱ\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026322-83eb5a?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话Ⅲ\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026316-cb833b?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬念大师希区柯克经典故事集\",\n    \"author\": \"希区柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023775-bfa687?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022944-f7c29a?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死灵之书\",\n    \"author\": \"洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021267-6d09de?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼马星悬疑小说莫兰系列（套装7册全）\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019647-16c6fb?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"召唤：沃伦夫妇的惊凶职业实录\",\n    \"author\": \"杰拉德・布利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018570-279333?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桐花中路私立协济医院怪谈\",\n    \"author\": \"南琅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010827-a4a422?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡案罪（1-8册全）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡性插图\",\n    \"author\": \"凿壁小妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异域密码大全集（套装共四册）\",\n    \"author\": \"羊行屮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866\",\n    \"category\": \"恐怖\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：7个改变个人、团队和组织的教练技巧\",\n    \"author\": \"迈克尔・K.辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866\",\n    \"category\": \"教练\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失意者酒馆\",\n    \"author\": \"曹畅洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048543-ac1644?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃梅短篇小说精选\",\n    \"author\": \"马塞尔・埃梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046686-e8fde9?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被猜死的人\",\n    \"author\": \"田耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036468-e0797b?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个陌生女人的来信（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"背对世界\",\n    \"author\": \"埃尔克・海登莱希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031692-85e059?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬泳\",\n    \"author\": \"班宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024318-af87d7?p=8866\",\n    \"category\": \"短篇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本百本纪念套装（共100册）\",\n    \"author\": \"查尔斯・福斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506448-03adea?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本精选集（第二辑共42册）\",\n    \"author\": \"丹尼尔·M.海布伦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004224-95511f?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津古罗马史\",\n    \"author\": \"约翰・博德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津国际关系手册\",\n    \"author\": \"罗伯特・基欧汉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众经济学\",\n    \"author\": \"帕萨・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021042-91492b?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津通识读本精选集（第一辑共58册）\",\n    \"author\": \"雷蒙德・瓦克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016143-e41d19?p=8866\",\n    \"category\": \"牛津\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万寿寺\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030480-1e074b?p=8866\",\n    \"category\": \"王小波\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王小波作品大全集（15册）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014463-323335?p=8866\",\n    \"category\": \"王小波\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海神的后裔\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492165-c1f419?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女郎她死了\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497154-47f407?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无颜的肖像\",\n    \"author\": \"连城三纪彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498012-7fc0cd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"土楼杀人事件\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498258-e31108?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白兔\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498687-16a448?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈舜臣作品精选集（套装共20册）\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498732-db7b9b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探4：双城血案\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498834-6b8e51?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常疑犯\",\n    \"author\": \"红眸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499008-3c6677?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默的铁证\",\n    \"author\": \"米烛光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499452-818cac?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时空旅行者的沙漏\",\n    \"author\": \"方丈贵惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499554-129728?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煞风景的早间首班车\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499617-790bb3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盲剑楼奇谭\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499656-2b28df?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶寒\",\n    \"author\": \"伊冈瞬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499659-21ca24?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全员嫌疑人\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499701-1e03fc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可以\",\n    \"author\": \"道尾秀介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500319-6799a6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三色猫探案（全套10册）\",\n    \"author\": \"赤川次郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500352-72f750?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚像的丑角\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500529-4ea3f3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写字楼的奇想日志\",\n    \"author\": \"孙沁文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501069-363de9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气球人\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501195-ba2e60?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复写\",\n    \"author\": \"法条遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501207-ebe079?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小丑的追魂曲\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501465-eaca96?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡邮递\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501528-5ac549?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀喜剧之13人\",\n    \"author\": \"芦边拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501906-b0c258?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理要在早餐时\",\n    \"author\": \"友井羊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501912-6bbbde?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺旋之底\",\n    \"author\": \"深木章子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502071-0974f8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪之声\",\n    \"author\": \"盐田武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502290-65943e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症消失的陷阱\",\n    \"author\": \"岩木一麻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502299-90d8e4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强蚁\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502317-8ffcba?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰谋杀案（全两册）\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502944-116268?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑夜的空白\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502995-e5753e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷中复古相机店的日常之谜\",\n    \"author\": \"柊彩夏花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503274-be09aa?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室小丑\",\n    \"author\": \"时晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503307-04dbfb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放学后的小巷\",\n    \"author\": \"钟声礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503742-9d1027?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水之焰\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503907-fa1c8f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反骗案中案2\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504207-c1fb9f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人机侦探\",\n    \"author\": \"早坂吝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504249-86b3ea?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔女的诅咒\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504387-1f8756?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火神被杀\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504948-b4d124?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希望之罪\",\n    \"author\": \"雫井脩介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504969-317fa1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩偶\",\n    \"author\": \"法医秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506412-556a2b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高智商犯罪（全4册）\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506754-0e6d8a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑死馆杀人事件\",\n    \"author\": \"小栗虫太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507480-82ae1d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Blue\",\n    \"author\": \"叶真中显\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507555-b894c0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星降山庄杀人事件\",\n    \"author\": \"仓知淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507576-8cc946?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三体秘密\",\n    \"author\": \"田加刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508785-577194?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如首无作祟之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508980-843c48?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如水魑沉没之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509070-c0bdeb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆时侦查组\",\n    \"author\": \"张小猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509094-55dc76?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆时侦查组2\",\n    \"author\": \"张小猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509217-382771?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫部美雪精选系列套装（全套9册）\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509352-b0b5f1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪头条\",\n    \"author\": \"朱首末\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509643-1ce27b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无形之刃\",\n    \"author\": \"陈研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509706-840d1a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫部美雪经典大全集（共18册）\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509736-12be99?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美嫌疑人\",\n    \"author\": \"陈研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509868-3a24d8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼藏身处\",\n    \"author\": \"克雷格・拉塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509964-8500bb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字母表谜案\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510117-6dfc14?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失者\",\n    \"author\": \"多纳托・卡瑞西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510153-b0429d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无名之町\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510159-ff40a6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寒栗\",\n    \"author\": \"索伦・斯外斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510246-3b3fae?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键词是谋杀\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510258-1956b1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆·侦探小说黄金时代经典作品集（第二辑）\",\n    \"author\": \"约翰・布德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510402-6201e7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒸汽歌剧\",\n    \"author\": \"芦边拓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510417-29d3f7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理要在本格前\",\n    \"author\": \"谷崎润一郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510438-80e787?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"衣更月一族\",\n    \"author\": \"深木章子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510519-3f9e01?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敲响密室之门2\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510768-eb84c6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反骗案中案\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510774-bc0b04?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜零点的灰姑娘\",\n    \"author\": \"相泽沙呼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510792-999876?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命雕刻\",\n    \"author\": \"杰夫里・迪弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511026-be629f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心灵侦探城塚翡翠\",\n    \"author\": \"相泽沙呼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511047-957c7f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚者之毒\",\n    \"author\": \"宇佐美真琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511068-71edff?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如幽女怨怼之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511302-9c1208?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊芙琳的七次死亡\",\n    \"author\": \"斯图尔特・特顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511320-d34f47?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如碆灵供祭之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511338-6a8951?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎头游戏\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511377-5d4220?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三重旋涡\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511446-fdf67e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关于那个人的备忘录\",\n    \"author\": \"小林泰三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511449-1dfbff?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜之孤城\",\n    \"author\": \"辻村深月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511485-ef75a1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女妖\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511527-ab2e43?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空屋\",\n    \"author\": \"横山秀夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511623-b2e18c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗忘，刑警\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512259-6eaee7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逐星记\",\n    \"author\": \"陆烨华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512577-62230a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神的标价\",\n    \"author\": \"一色小百合\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512676-87b6b4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春日之书\",\n    \"author\": \"陆烨华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512724-475bdb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰菓套装（共6册）\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512742-f3bb77?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平面犬\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512745-b4d92b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巫女馆的密室\",\n    \"author\": \"爱川晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513387-40fbae?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记5\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513426-83f70a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人偶的复活\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513450-23c7d7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐探案录之长安风云\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513666-cf19af?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寂寞的频率\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004548-3945b2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪假日\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004509-22c040?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻璃鸟不会归来\",\n    \"author\": \"市川忧人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004404-3c2e54?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扮演者游戏\",\n    \"author\": \"赵婧怡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004344-a3de5d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟居密室\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004335-73a458?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怜悯恶魔\",\n    \"author\": \"西泽保彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004092-e10bc0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剖开您是我的荣幸\",\n    \"author\": \"皆川博子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004008-11b886?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔雀的遗书\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003945-01ea8c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦探AI\",\n    \"author\": \"早坂吝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003939-b7b6bf?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的病人\",\n    \"author\": \"亚历克斯・麦克利兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非人类\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003831-776229?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鼠之夜\",\n    \"author\": \"连城三纪彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003696-86cce0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南宋秘卷之青玉案\",\n    \"author\": \"姜木水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002406-681de0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明神探于谦\",\n    \"author\": \"史刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002157-6dd901?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝叫\",\n    \"author\": \"叶真中显\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001932-e4433b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔眼之匣谜案\",\n    \"author\": \"今村昌弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000648-79dc5c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记4\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000630-a6cc40?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后之子\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000255-aea9fc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长长的回廊\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000189-60889e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗中飘香的谎言\",\n    \"author\": \"下村敦史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999790-e9183c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫌疑人\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998800-9f56b7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼畜之家\",\n    \"author\": \"深木章子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998785-2de043?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗幕下的格尔尼卡\",\n    \"author\": \"原田舞叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998782-596e15?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剪刀男\",\n    \"author\": \"殊能将之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997609-6b8114?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超杀人事件\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996496-c3ca08?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗忘者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996394-3987f5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤色博物馆\",\n    \"author\": \"大山誠一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996154-b859bc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迪伦马特侦探小说集\",\n    \"author\": \"弗里德里希・迪伦马特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995539-76948f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指定目击者\",\n    \"author\": \"午晔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995380-99ff61?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扫鼠岭\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995350-a6adfe?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双子星\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995347-83f9c3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挑战\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995278-8ef9dc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪国之劫\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995221-651633?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两种真相\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995215-ab07fb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的13级台阶\",\n    \"author\": \"高野和明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994549-aa6507?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟街头漂流记（午夜文库）\",\n    \"author\": \"宠物先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991864-e5778d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多米诺杀阵\",\n    \"author\": \"成刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991825-14cf14?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛经济学家推理系列（套装共4册）\",\n    \"author\": \"马歇尔・杰文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991537-2fc1c4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二镜面\",\n    \"author\": \"张墨爱吃鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991510-88f05b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冤罪代码\",\n    \"author\": \"纪遊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991234-3be92d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生尸之死\",\n    \"author\": \"山口雅也\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991123-dafe12?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"云雷岛事件\",\n    \"author\": \"孙国栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990916-d09f48?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀死玛丽苏\",\n    \"author\": \"乙一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990913-f79fa7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一路去死\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990874-c2daf4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溯洄\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990220-e56d20?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不知东方既白\",\n    \"author\": \"橘子宸\",\n    \"link\": \"链接未找到\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返犯罪现场（共4册）\",\n    \"author\": \"宇尘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990115-eecd7e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狂探\",\n    \"author\": \"吕铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990040-8f94c3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京二十三区女子\",\n    \"author\": \"长江俊和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989896-b88cb7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣母\",\n    \"author\": \"秋吉理香子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989614-07b2c1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡计博物馆\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989326-bab22e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三色屋事件\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988849-edee5d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记3\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对不在场证明\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988114-a2c7ca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜鸟\",\n    \"author\": \"莫峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987193-6b8f16?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米泽穗信精选集：算计\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986158-4aacbd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米泽穗信精选集：满愿\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986137-ecb5b5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米泽穗信精选集：羔羊的盛宴\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986128-26095e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警2\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无辜之血\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985633-85ca83?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理计划\",\n    \"author\": \"宁城荒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985519-f13a9a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山骇谷深\",\n    \"author\": \"卢卡・德安多里亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985366-80b6a0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤朽叶家的传说\",\n    \"author\": \"樱庭一树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985144-a74cbc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死局\",\n    \"author\": \"江海潮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985048-e4e04b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜文库推理新秀精选集（共9本）\",\n    \"author\": \"午晔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984982-7b6286?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的巡游\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984856-83f1ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八百万种死法\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984805-e43574?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形迹可疑的人\",\n    \"author\": \"卡雷尔・恰佩克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984733-d9cb55?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记2\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983785-47efcf?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983302-881145?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探的咒缚\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982474-92a205?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抱住我崩溃的大脑\",\n    \"author\": \"知念实希人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982423-526c97?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镇墓兽（全四册）\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053601-c5f0f4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侠盗鲁平\",\n    \"author\": \"孙了红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053058-8938cc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐者\",\n    \"author\": \"丰土\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052977-6462cd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行实录\",\n    \"author\": \"徐浪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052968-eec90d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦畸者\",\n    \"author\": \"叶遁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终局者\",\n    \"author\": \"项维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052302-fcaeb5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的天敌\",\n    \"author\": \"森村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051489-9cc595?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光森林\",\n    \"author\": \"葵田谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051471-3cd00f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡洛琳字体\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051411-1c693d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式谋杀\",\n    \"author\": \"迈克尔・道格拉斯卡林/罗素・普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克莱因壶\",\n    \"author\": \"冈岛二人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051378-057ad5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见了，忍老师\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051357-3827fc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悠悠馆密案\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051351-11da76?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11字谜案\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051162-6633d9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的遗忘\",\n    \"author\": \"丹妮尔・蒂埃里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051135-aff273?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色麦田\",\n    \"author\": \"葵田谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050865-0365c7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碎裂\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050394-9ddc9d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达希尔•哈米特系列（共8册）\",\n    \"author\": \"达希尔・哈米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050382-1b6108?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界推理名家代表作（20全册）\",\n    \"author\": \"埃勒里・奎因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050307-cc8646?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊坂幸太郎小说严选合集（共10册）\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050103-908ba1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蟑螂\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我四十分钟后到家\",\n    \"author\": \"周路明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049539-8bf2ec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者2\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049434-76024d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者3\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证明\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049077-15c7a0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯先生\",\n    \"author\": \"米奇・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047973-333dca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白猿客栈\",\n    \"author\": \"猎衣扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047937-74e8c8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破碎海岸\",\n    \"author\": \"彼得・坦普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047442-f42c38?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪案迷城\",\n    \"author\": \"张瑞兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只是丢了手机而已套装\",\n    \"author\": \"志驾晃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047160-8526d3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力的胎动\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046440-06c86c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗影\",\n    \"author\": \"时晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046365-a83ffb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗夜捕手之昨日花黄\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046287-940fea?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八卦侦探\",\n    \"author\": \"姜木水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046179-deec2b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪念\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045978-23a050?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡螺旋\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045873-48acba?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖马的女人\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045738-eb7bec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖气\",\n    \"author\": \"慢三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045399-da4010?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苍白的轨迹\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045366-e34a54?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富士山禁恋\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045333-d81815?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书楼吊堂：破晓\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045054-873c0f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追凶者之萨满疑云\",\n    \"author\": \"管彦杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044991-6977b9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重案追击：悬疑小说精选（套装共12册）\",\n    \"author\": \"王文杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044961-601f8e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扭曲的铰链\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044817-1cd796?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平行世界爱情故事\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044787-6056de?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神谕之死\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044010-bd23c2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪6\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西泽保彦最畅销精品全集\",\n    \"author\": \"西泽保彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043284-0ab83a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祈祷落幕时\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042909-9546a3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清明上河图密码（全6册）\",\n    \"author\": \"冶文彪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042804-929cc7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸人庄谜案\",\n    \"author\": \"今村昌弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042729-6ea1e3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面之夜\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042564-7a4ca0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相亲中毒\",\n    \"author\": \"秋吉理香子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042180-6fbb64?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神探夏洛克全集\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042177-604f9a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国男孩\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"点燃黑夜\",\n    \"author\": \"莉比・菲舍尔・赫尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042045-704d0b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网内人\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041643-1a89eb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白日梦\",\n    \"author\": \"老谭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041352-f3d652?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八声甘州\",\n    \"author\": \"远宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040875-db0b23?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死之枝\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040422-d105a3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝之屋\",\n    \"author\": \"安东尼・赫洛维滋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040410-cac2ae?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"樱树抽芽时，想你\",\n    \"author\": \"歌野晶午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039834-8987e3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Study in Scarlet\",\n    \"author\": \"柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039156-324606?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白城恶魔\",\n    \"author\": \"埃里克・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038736-2b449e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五个死者的告白\",\n    \"author\": \"P.D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038526-c24d0a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人生还（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038145-3e58ee?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼罗河上的惨案（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037980-5f4597?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（图注本套装共9册）\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038379-15f688?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤龙\",\n    \"author\": \"苗棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037698-7168f4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"预知梦\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037377-89cb13?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本店招牌菜\",\n    \"author\": \"斯坦利・艾林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037236-89887b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"屋顶上的小丑\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037200-3cd4c7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方快车谋杀案（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037125-3935f9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾中的小镇\",\n    \"author\": \"珍・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037104-1302c6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捕鼠器（译文经典）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疑点\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037020-ad38da?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复仇者\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂侦探小说大全集（全85册）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036642-5cddab?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈里·戈贝尔事件的真相（全两册）\",\n    \"author\": \"若埃尔・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036234-8b66ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的客人\",\n    \"author\": \"塔娜・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑髓地狱\",\n    \"author\": \"梦野久作\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035817-f5b16f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"检察方的罪人\",\n    \"author\": \"雫井脩介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035802-ad1c0c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁血神探马修·斯卡德（套装共9册）\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035304-6bebca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A Study in Charlotte\",\n    \"author\": \"Brittany Cavallaro\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034407-f87a5d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时生\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034350-429229?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅲ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034080-736199?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冻结的香气\",\n    \"author\": \"小川洋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033984-e723c0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅰ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033729-239911?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"代号D机关Ⅱ\",\n    \"author\": \"柳广司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033720-1dd32f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦渴\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京极夏彦百鬼夜行中短篇集（套装5册）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033678-0e267f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀戮之病\",\n    \"author\": \"我孙子武丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033498-4e9a1b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳危机\",\n    \"author\": \"李纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033414-30313e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混凝土里的金发女郎\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033120-c171d5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍先生（共8册）\",\n    \"author\": \"弗・福赛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032862-eae9d1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绫辻行人馆系列全集\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032769-071504?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝唱\",\n    \"author\": \"凑佳苗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032727-caf552?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五芒星\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032607-6ae82c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀人游戏\",\n    \"author\": \"雷钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032598-27b98c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录：最后的狄仁杰（全五册）\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032550-262194?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使之耳\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032541-4cba9e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦探伽利略\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032502-ead0f3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔血案\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032475-a3eb97?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼与福尔摩斯\",\n    \"author\": \"戴维・格兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐狄公案·第一辑\",\n    \"author\": \"高罗佩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032463-0f330d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书楼吊堂：炎昼\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032415-142610?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喜鹊谋杀案\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032361-2287af?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死钥匙\",\n    \"author\": \"D.M.普利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032289-b14405?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不如去死\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032223-6c538c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死了七次的男人\",\n    \"author\": \"西泽保彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032112-988a49?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨拉·沃特斯系列作品集（全六册）\",\n    \"author\": \"萨拉・沃特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032067-c756ca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁杀了她\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031938-22aa7e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹大之窗\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031797-9545ab?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交错的场景\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031620-109a71?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三口棺材\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031353-c23149?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾天王套装\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031326-663108?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀局\",\n    \"author\": \"肯尼思・菲林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031116-8ca6cb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变身\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031089-829f49?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪花少年侦探团\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031080-d27fac?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百鬼夜行长篇系列（套装16册）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031041-c75418?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟塔杀人事件\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030741-bf8a14?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日月星杀人事件\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030738-1f8869?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜将至\",\n    \"author\": \"夏阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030720-355e2e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的维纳斯\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030672-c187e8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理竞技场\",\n    \"author\": \"深水黎一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030567-efc470?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向日葵不开的夏天（红壳纪念版）\",\n    \"author\": \"道尾秀介\",\n    \"link\": \"链接未找到\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周浩晖推理悬疑经典集（共10册）\",\n    \"author\": \"周浩晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029988-d27fcd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太空无人生还\",\n    \"author\": \"阿元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029913-632991?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029874-6d65f7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生吞\",\n    \"author\": \"郑执\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029547-23ac4c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十九年间谋杀小叙\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029544-25e397?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"球形的荒野\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029529-9062a6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理游戏\",\n    \"author\": \"安杰拉・马森斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029403-ab7f36?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声尖叫\",\n    \"author\": \"安杰拉・马森斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029400-e9abf7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向密室开枪！\",\n    \"author\": \"东川笃哉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029394-26d4f2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚拟街头漂流记\",\n    \"author\": \"宠物先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029238-720b55?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀狄更斯\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029187-e28d8c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加贺探案集（共9册）\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029184-50d15e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马普尔小姐探案全集\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029085-8c4c31?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赎罪奏鸣曲\",\n    \"author\": \"中山七里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028365-66e45a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今夜不宜犯罪\",\n    \"author\": \"东川笃哉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028236-43dcce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追忆夜想曲\",\n    \"author\": \"中山七里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028197-8f8502?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小城\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027888-99ea06?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楠木向北\",\n    \"author\": \"凉风薄暮\",\n    \"link\": \"链接未找到\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"惊险的浪漫（午夜文库）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027543-dfcd65?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本推理天才伊坂幸太郎全集（全12册）\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027336-f08d5f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"震度0\",\n    \"author\": \"横山秀夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027309-2564ec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间杀手\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027198-47a047?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾新作品精选（共6册）\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027165-eb8c72?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白昼的死角\",\n    \"author\": \"高木彬光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027045-a2019a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚕\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026697-b1a344?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺青杀人事件\",\n    \"author\": \"高木彬光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026220-e0766b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：凶宅\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025707-e82630?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失踪的专列\",\n    \"author\": \"阿瑟・柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025635-a941cd?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全能侦探社\",\n    \"author\": \"道格拉斯・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025050-f8a066?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为了N\",\n    \"author\": \"湊佳苗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024993-36a444?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探：青衣奇盗\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024957-78b9a0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元年春之祭\",\n    \"author\": \"陆秋槎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024927-e99ef1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅贼典藏版（全11册）\",\n    \"author\": \"劳伦斯・布洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024837-b9a078?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷蒙德·钱德勒典藏版全集（全十册）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024834-5c9783?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024783-34b504?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神的另一面\",\n    \"author\": \"藤崎翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024615-a81939?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无证之罪\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024528-07ae8b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坏小孩\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024525-8d6f19?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禁断的魔术\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024465-346e81?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚无的十字架\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024300-5cdaa2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：破镜\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024255-988eff?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡盗团\",\n    \"author\": \"吉羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024246-0edc4b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约瑟芬.铁伊推理全集（全8册）\",\n    \"author\": \"约瑟芬・铁伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024078-c9031a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象无形\",\n    \"author\": \"泽帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023754-5c70fc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死神的精确度\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023739-650de8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金田一探案大全集（共25册）\",\n    \"author\": \"横沟正史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023727-881c73?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今夜宜有彩虹\",\n    \"author\": \"陆烨华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023622-606a63?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩登时代\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023526-8ac21c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀手界\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023523-3a015b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀手界·疾风号\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023520-8af1d8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魍魉之匣（下）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023529-cad261?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狂骨之梦\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023490-090e03?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓鱼城\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023424-cc84f3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学生街的日子\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023397-a5f3e3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酷酷的代课老师\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023289-305c8c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士学院杀人事件\",\n    \"author\": \"P.D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023211-d473df?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彷徨之刃\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023106-33508a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"D之复合\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022929-d9add1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：嬗变\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022878-0c6f47?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：幸存\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022872-4eb748?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：复仇\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022863-2fb899?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越狱者\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022788-46d327?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝴蝶杀人事件\",\n    \"author\": \"横沟正史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022365-1a99b4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖底的祭典\",\n    \"author\": \"泡坂妻夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022302-409ae5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凛冬之棺\",\n    \"author\": \"孙沁文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022158-9403ee?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江户川乱步严选作品集（全13册）\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022008-610644?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室收藏家\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021669-5cce3b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"余生皆假期\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021336-d3fbb3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜光的阶梯\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021294-fc9a03?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣殿春秋（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021252-8a62ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐狄公案（全6册）\",\n    \"author\": \"高罗佩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021207-007f0b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战地厨师\",\n    \"author\": \"深绿野分\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021114-f0cdb2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎的毒药\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020940-286d4a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血法医（1-4季全集）\",\n    \"author\": \"杰夫・林赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一份不适合女人的工作\",\n    \"author\": \"P.D.詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020511-d3986e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那个你深爱着的人\",\n    \"author\": \"保罗・皮尔金顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020088-c8e9c2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那个你惧怕着的人\",\n    \"author\": \"保罗・皮尔金顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020085-fe0da2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"折断的龙骨（全二册）\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019983-fc8335?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"络新妇之理（上）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019932-dd22aa?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"络新妇之理（下）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019929-e2f670?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涂佛之宴·宴之支度（上）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019902-04eb64?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"涂佛之宴·宴之支度（下）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019890-9e0348?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴摩罗鬼之瑕（上）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019866-1e1095?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴摩罗鬼之瑕（下）\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019860-b7033f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追踪师：隐身术\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019731-80213a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼马星悬疑小说莫兰系列（套装7册全）\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019647-16c6fb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜘蛛网中的女孩\",\n    \"author\": \"大卫・拉格朗兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019479-292338?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯症候群\",\n    \"author\": \"J·M·埃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019356-6bedd1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间的习俗\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019323-98e502?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪人们\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019233-641f28?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救赎者\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018720-01f3cc?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷案重启\",\n    \"author\": \"樊落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018711-c54542?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷案重启2逝者之证\",\n    \"author\": \"樊落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018708-977e8b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018600-b9d116?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水之肌\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018423-432d1e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肯·福莱特悬疑经典第一辑（全5册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018018-545227?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面前夜\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017712-970ca1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必须找到阿历克斯\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017547-046ce1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡刻痕\",\n    \"author\": \"维罗尼卡・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017325-298780?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月族（套装共5册）\",\n    \"author\": \"玛丽莎・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017343-651870?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼在你身后（套装全3册）\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017280-4eab29?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜难明\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016476-b7c91b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔王\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016320-3b0994?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十年的情人节\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016230-8da852?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（套装共11册）\",\n    \"author\": \"柯南道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016500-12fb8c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨中杀手\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015939-11a9cf?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理的迷宫\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新参者\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015855-473c6d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红手指\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015780-379ab6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿加莎·克里斯蒂作品集（套装共45册）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015663-b5afa0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝圣者\",\n    \"author\": \"泰瑞・海耶斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015393-6c6f8d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轩辕诀（全四册）\",\n    \"author\": \"茶弦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015144-667e1c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华生手稿\",\n    \"author\": \"邦妮・麦克伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014928-2d50ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形解体的传说\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014667-09665e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宛如昨日\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014523-22941d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第13个小时\",\n    \"author\": \"理查德・道许\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014388-3c060e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探1\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014331-ef0561?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探2\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014328-08fde8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探3\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014313-615c25?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明镜之书\",\n    \"author\": \"尤金・欧・切洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013845-ee2042?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不然你搬去火星啊\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013533-a53224?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十万分之一的偶然\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013299-44dfa6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿修罗系列惊悚小说三部曲\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013029-d113e7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色梦乡\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012957-3f2267?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜追凶\",\n    \"author\": \"指纹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012603-73ece6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阴兽\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012552-3f9341?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“低俗”小说（上下合集）\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012453-e22da3?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，宝贝\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012444-03cebe?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敲响密室之门\",\n    \"author\": \"青崎有吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012435-b175ce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巷说百物语全集\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012405-8c937b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷窥者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012312-787a2f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"同级生\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012306-44b632?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸面\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012078-b2add2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"警察\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012075-898a34?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀的简约之道\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012057-9e177a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重播\",\n    \"author\": \"雷蒙德・钱德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012063-099570?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱伦·坡暗黑故事全集（下册）\",\n    \"author\": \"埃德加・爱伦・坡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011853-51ba43?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前妻们\",\n    \"author\": \"约翰・狄克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011805-a14723?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗处\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从西藏来的男人\",\n    \"author\": \"克莱德・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011673-fcf3b0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伽利略的苦恼\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011520-5531b4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010515-8f34ca?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美必读悬疑小说（勒普顿三部曲）\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010395-ddb236?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹·布朗作品系列（套装共6册）\",\n    \"author\": \"丹・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010287-e7276e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"姑获鸟之夏\",\n    \"author\": \"京极夏彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010116-0a482e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"化学家（套装共2册）\",\n    \"author\": \"斯蒂芬妮・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009945-e38c49?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所罗门的伪证第Ⅰ部：事件\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009765-693b15?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所罗门的伪证第Ⅱ部：决意\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009756-f4d897?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所罗门的伪证第Ⅲ部：法庭\",\n    \"author\": \"宫部美雪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009753-c7e339?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阳光劫匪\",\n    \"author\": \"伊坂幸太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009639-f97e32?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"勒卡雷谍影经典全新系列（套装14册）\",\n    \"author\": \"约翰・勒卡雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009576-b1a690?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妹妹的坟墓\",\n    \"author\": \"罗伯特・杜格尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009549-e0506b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"S.（简体中文典藏复刻版）\",\n    \"author\": \"艾布拉姆斯/道格・道斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009492-298aa7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙文身的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009378-d34fd6?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩火的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009372-a23441?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直捣蜂窝的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009360-520652?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交子\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009318-386aa1?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分身\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009306-fdbc98?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉睡的人鱼之家\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009276-32bd6f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣女的救济\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009246-ac03c0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北方夕鹤2/3杀人事件\",\n    \"author\": \"岛田庄司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009219-6761df?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"64：史上最凶恶绑架撕票事件\",\n    \"author\": \"橫山秀夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009165-cfa92a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者：罪案终结者的觉醒\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009135-83443d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告白\",\n    \"author\": \"湊佳苗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008991-3ea23a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本推理四大奇书\",\n    \"author\": \"梦野久作等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008919-1568da?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉普拉斯的魔女\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008739-784eec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻夜行\",\n    \"author\": \"谷神冥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008475-bfb778?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀金字塔\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008451-7b089f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙漠法则\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008442-61c5a4?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首相的正义\",\n    \"author\": \"克里斯提昂・贾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008430-839940?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被囚禁的女孩\",\n    \"author\": \"香农・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008124-8a508a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别和她说话\",\n    \"author\": \"遇瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑神探\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007983-3adaee?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风的预谋\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007965-39fae5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫蛛\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007929-055c31?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只差一个谎言\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007875-bd2f74?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱雀堂\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪人\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐花平原\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007806-281da0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眼镜蛇事件\",\n    \"author\": \"理查德・普莱斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007788-93da89?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长江的密咒\",\n    \"author\": \"古官\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007782-6d755c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪4\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡案罪（1-8册全）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎豹（全二册）\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活肝\",\n    \"author\": \"徐然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007356-185e81?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾越邸杀人事件\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007302-ec6f04?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白马山庄杀人事件\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007287-8a5713?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木锡镇\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007266-6d2760?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑背鱼之谜\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医手记系列套装（全四册）\",\n    \"author\": \"刘真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十九级台阶\",\n    \"author\": \"约翰・巴肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理罪（套装共5册）\",\n    \"author\": \"雷米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空中杀人现场\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007131-989aa8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁班的诅咒（珍藏版大全集）\",\n    \"author\": \"圆太极\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006924-c1b431?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虚像小丑\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006909-257fe7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"推理要在放学后\",\n    \"author\": \"东川笃哉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006870-6477fb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗领域\",\n    \"author\": \"薇儿·麦克德米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录：兰亭序密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006669-bfc526?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录2：最后的复辟挣扎\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸案调查科系列（全5册）\",\n    \"author\": \"九滴水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖畔\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006276-021007?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦幻花\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006285-d59ca9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄仁杰探案合集\",\n    \"author\": \"安娜芳芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006201-8b8292?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡性插图\",\n    \"author\": \"凿壁小妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻夜\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006108-1a3150?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀人之门\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006096-17ed58?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"动物园\",\n    \"author\": \"乙一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006057-80fc77?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禁忌之地\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006054-1c8c3e?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗族\",\n    \"author\": \"缪热\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面饭店\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005967-2f931b?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马耳他之鹰\",\n    \"author\": \"达希尔・哈米特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005853-265d2c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之尸体加工厂\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之活体贩卖者\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜行\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005571-dd15d9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解忧杂货店\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005565-a0e16c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫌疑人X的献身\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005562-da1f3c?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶意\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005559-8e2a02?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放学后\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005553-facaec?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7本书带你走进间谍圈（全七册）\",\n    \"author\": \"弗·福赛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青花瓷\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005427-7605c0?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和氏璧\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明宫奇案\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斧声烛影\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案全集（插图新注新译本）\",\n    \"author\": \"亚瑟·柯南·道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风起陇西\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"案藏杀机：清代四大奇案卷宗\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005223-8942a8?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔雀胆\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐游侠\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战襄阳\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005190-4212a2?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼玄机\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳如是：柳色独秀\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005166-82c235?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连环罪：心里有诡系列（上下册）\",\n    \"author\": \"墨绿青苔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古董局中局（全四册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005145-bf3740?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之骨头收藏家\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸存者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清道夫\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一根手指\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声的证词\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸语者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福尔摩斯探案集（经典译林）\",\n    \"author\": \"柯南・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004821-0d75f5?p=8866\",\n    \"category\": \"推理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑林广记（作家榜经典文库）\",\n    \"author\": \"游戏主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866\",\n    \"category\": \"笑话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时生\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034350-429229?p=8866\",\n    \"category\": \"亲情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的丫头\",\n    \"author\": \"柯继铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026934-41b6dc?p=8866\",\n    \"category\": \"亲情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西周的灭亡（增订本）\",\n    \"author\": \"李峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866\",\n    \"category\": \"西周\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆天子传（全本全注全译）\",\n    \"author\": \"高永旺译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866\",\n    \"category\": \"西周\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丹尼尔斯经典跑步训练法\",\n    \"author\": \"杰克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866\",\n    \"category\": \"马拉松\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马拉松终极训练指南（原书第4版）\",\n    \"author\": \"霍尔・希格登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866\",\n    \"category\": \"马拉松\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲世纪\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866\",\n    \"category\": \"全球化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看待全球化\",\n    \"author\": \"彼得・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866\",\n    \"category\": \"全球化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的七个秘密\",\n    \"author\": \"戴维・奥德兹/埃里克・莱曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027957-1bbf09?p=8866\",\n    \"category\": \"全球化\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链实战：从技术创新到商业模式\",\n    \"author\": \"冒志鸿/陈俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链在中国\",\n    \"author\": \"刘兴亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992362-ce1ea4?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖峰对话区块链\",\n    \"author\": \"王峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992212-9a31a5?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链浪潮\",\n    \"author\": \"贾英昊/江泽武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991633-222d1d?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂区块链\",\n    \"author\": \"王腾鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989131-40f05d?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链项目开发指南\",\n    \"author\": \"纳拉扬・普鲁斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018585-e3a2cc?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说区块链\",\n    \"author\": \"徐明星/田颖/李霁月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017304-a06e53?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码区块链（套装共6册）\",\n    \"author\": \"田颖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015585-81fda1?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链革命\",\n    \"author\": \"唐塔普斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011610-23b769?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链社会\",\n    \"author\": \"龚鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链\",\n    \"author\": \"长铗/韩锋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866\",\n    \"category\": \"区块链\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸K线交易法\",\n    \"author\": \"许佳聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046431-11f0bb?p=8866\",\n    \"category\": \"技术分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜡烛图精解（原书第3版）\",\n    \"author\": \"格里高里・莫里斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866\",\n    \"category\": \"技术分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史丹•温斯坦称傲牛熊市的秘密（珍藏版）\",\n    \"author\": \"史丹·温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866\",\n    \"category\": \"技术分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来站在中国这一边\",\n    \"author\": \"宁南山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866\",\n    \"category\": \"产业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光变：一个企业及其工业史\",\n    \"author\": \"路风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866\",\n    \"category\": \"产业\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威大战DC\",\n    \"author\": \"里德・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866\",\n    \"category\": \"漫威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫威之父斯坦·李\",\n    \"author\": \"鲍勃・巴彻勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028266-25f260?p=8866\",\n    \"category\": \"漫威\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理自助CBT书系（套装共七册）\",\n    \"author\": \"萨万・辛格等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪力\",\n    \"author\": \"萨姆・阿利布兰多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511164-6145a4?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尬聊终结者\",\n    \"author\": \"庄舒涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商大师（息怒篇）\",\n    \"author\": \"伯纳德・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪革命\",\n    \"author\": \"约翰・辛德莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的情商，决定你的人生高度\",\n    \"author\": \"心屋仁之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力（经典套装三册）\",\n    \"author\": \"凯利・麦格尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑演讲\",\n    \"author\": \"大卫祁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓情商高，就是会说话\",\n    \"author\": \"佐佐木圭一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共情的力量\",\n    \"author\": \"亚瑟・乔拉米卡利/凯瑟琳・柯茜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理是个技术活\",\n    \"author\": \"芭芭拉・米切尔/科妮莉亚・甘伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商领导力\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047655-a6a7d1?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"FBI微情绪心理学（若水集）\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明的人，从来不会输给情绪\",\n    \"author\": \"卫伟楠/Brent\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046419-e5175d?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商者会谈判\",\n    \"author\": \"冯岳宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不会拒绝上\",\n    \"author\": \"李劲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从受欢迎到被需要\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情绪断舍离\",\n    \"author\": \"加勒特・克莱默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031341-1b6ca6?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商（全六册）\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024453-d6e5b5?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓高情商，就是有趣和知趣\",\n    \"author\": \"李林坪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019842-a3c50e?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售就是要玩转情商\",\n    \"author\": \"科林・斯坦利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866\",\n    \"category\": \"情商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"加西亚·马尔克斯访谈录\",\n    \"author\": \"加西亚・马尔克斯/吉恩・贝尔-维亚达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049599-516265?p=8866\",\n    \"category\": \"访谈录\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜迪奥拉：胜利的另一种道路\",\n    \"author\": \"吉列姆・巴拉格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866\",\n    \"category\": \"世界杯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的本质\",\n    \"author\": \"本・伯南克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866\",\n    \"category\": \"美联储\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"还原真实的美联储\",\n    \"author\": \"王健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866\",\n    \"category\": \"美联储\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米沃什词典\",\n    \"author\": \"切斯瓦夫・米沃什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043800-b2c0ba?p=8866\",\n    \"category\": \"波兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜分波兰\",\n    \"author\": \"乔治・肖-勒费弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029763-26eb57?p=8866\",\n    \"category\": \"波兰\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《中华人民共和国民法典》条文精释与实案全析\",\n    \"author\": \"杨立新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508884-69560f?p=8866\",\n    \"category\": \"法规\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国最高法院通识读本\",\n    \"author\": \"琳达・格林豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866\",\n    \"category\": \"法规\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅斯年文集（套装共6册）\",\n    \"author\": \"傅斯年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991504-c70585?p=8866\",\n    \"category\": \"文集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛波斯卡诗选三部曲\",\n    \"author\": \"维斯拉瓦・辛波斯卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045282-d2f37d?p=8866\",\n    \"category\": \"文集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国学大师顾随全集（套装10册）\",\n    \"author\": \"顾随\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866\",\n    \"category\": \"文集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王佐良全集（套装共12卷）\",\n    \"author\": \"王佐良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042960-41e26a?p=8866\",\n    \"category\": \"文集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横渡孟加拉湾\",\n    \"author\": \"苏尼尔・阿姆瑞斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513060-c0b1a2?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲世纪\",\n    \"author\": \"帕拉格・康纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的决裂\",\n    \"author\": \"汤姆斯·F. 密勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的多角度解读（套装共20册）\",\n    \"author\": \"蒋廷黻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的去魔化\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲史概说\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019314-bb4568?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简亚洲千年史\",\n    \"author\": \"斯图亚特・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008547-7528e7?p=8866\",\n    \"category\": \"亚洲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长岛小记\",\n    \"author\": \"郭红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491448-bef079?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那间街角的茶铺\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491775-2dbac0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书是最对得起付出的一件事\",\n    \"author\": \"梁晓声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491988-526c88?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱这哭不出来的浪漫\",\n    \"author\": \"严明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492279-da9a63?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"借山而居（珍藏版）\",\n    \"author\": \"张二冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492669-bdbbd4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"躺平\",\n    \"author\": \"贝恩德・布伦纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493068-3a03e2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声誉\",\n    \"author\": \"唐诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈外编辑\",\n    \"author\": \"都筑响一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493812-a4c0be?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新冠时代的我们\",\n    \"author\": \"保罗・乔尔达诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，平成时代\",\n    \"author\": \"新井一二三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496449-4bf150?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切境\",\n    \"author\": \"庆山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498237-63e633?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间杭州\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498333-278c6e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫里的中国\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498681-511b6c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灵长类人科动物图鉴\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498702-8b48c5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百万个明天\",\n    \"author\": \"秦萤亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498915-531f5e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那猫那人那城\",\n    \"author\": \"朱天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498936-fe5a9d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未被摧毁的生活\",\n    \"author\": \"李伟长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503928-467c01?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书店日记套装（全2册）\",\n    \"author\": \"肖恩・白塞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506799-7d0cc6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有本事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509241-f5b13a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大城北京\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509667-8e85ae?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古寺巡礼\",\n    \"author\": \"和辻哲郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509676-6befb2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻小说的人\",\n    \"author\": \"比目鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509745-085174?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国古典散文精选注译（套装共8册）\",\n    \"author\": \"傅璇琮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木心上海往事\",\n    \"author\": \"铁戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510105-8d778a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漱石日记\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510213-f80a7f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的个天\",\n    \"author\": \"戴建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510420-ff10a0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星船与大树\",\n    \"author\": \"马慧元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有意义就没有摇摆\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511080-f945a2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书鱼知小\",\n    \"author\": \"流沙河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511173-ce7dc0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明天又是崭新的一天\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511638-26ae7f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我爱天下一切狗\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511947-976f66?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿：一部身体的回忆录\",\n    \"author\": \"罗克珊・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512007-c856a9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肥肉（增订版）\",\n    \"author\": \"朱赢椿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512190-f52a7f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"停靠，一座城\",\n    \"author\": \"李婧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512250-e4c3ba?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游荡集\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值的理由\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512478-959447?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士的故事\",\n    \"author\": \"克里斯蒂・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有关品味\",\n    \"author\": \"彼得・梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513072-dd4998?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少时读书\",\n    \"author\": \"废名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野味读书\",\n    \"author\": \"孙犁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缘缘堂随笔：足本\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513684-7de20d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年曾祺：1920-2020\",\n    \"author\": \"梁由之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004320-812970?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这是真的，我在一本书里读到过\",\n    \"author\": \"巴斯卡尔・博尼法斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈话录\",\n    \"author\": \"王安忆/张新颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枕边书\",\n    \"author\": \"帕梅拉・保罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004080-533237?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我去那花花世界\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003999-efb1ee?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生文集（纪念版·全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003975-a3b5c9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自在京都\",\n    \"author\": \"库索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003879-27a2e4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯唐成事心法\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花间集\",\n    \"author\": \"赵崇祚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003321-4f2249?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此生未完成（增订新版）\",\n    \"author\": \"于娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海边小屋\",\n    \"author\": \"梅・萨藤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002400-bbe7a7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目光\",\n    \"author\": \"陶勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃醋的人生\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001887-dba4a1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全套系中文版陈舜臣随笔集\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001860-bff3b9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岁月的针脚\",\n    \"author\": \"小川糸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001560-cd381e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪客美食家\",\n    \"author\": \"久住昌之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001461-2bebba?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读：十周年特辑\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祝你快乐勇敢\",\n    \"author\": \"果麦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼岸风景\",\n    \"author\": \"俞敏洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000249-6eb01e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的耳朵\",\n    \"author\": \"周云蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999832-881ef8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培根随笔全集（作家榜经典文库）\",\n    \"author\": \"弗朗西斯・培根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把地上的事往天上聊\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997897-ff709e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯：晨昏岛屿的集市\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春风十里不如你\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出唯一真理观\",\n    \"author\": \"陈嘉映\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995503-31ccb1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谢谢你：松浦弥太郎处世小哲学\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995353-842ed3?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张洁文集（九卷本）\",\n    \"author\": \"张洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与传奇\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995116-27f3e6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在别人的句子里\",\n    \"author\": \"陈以侃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994660-ef8591?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要和你妈争辩\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假作真时\",\n    \"author\": \"黄昱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声音的魅力\",\n    \"author\": \"张皓翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991552-babdf5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八千里路云和月\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京都如晤\",\n    \"author\": \"苏枕书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991105-f1566d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"业余者说\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野果\",\n    \"author\": \"亨利・大卫・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989572-668ed4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不三\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988819-9f6970?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个李白\",\n    \"author\": \"王充闾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳与少女\",\n    \"author\": \"森见登美彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987055-66c73f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扪虱谈鬼录（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情就是堆积如山的笔记\",\n    \"author\": \"苏美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986113-258fce?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"评说历史系列丛书（套装共7册）\",\n    \"author\": \"夏坚勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌蒙山记\",\n    \"author\": \"雷平阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的音乐笔记\",\n    \"author\": \"肖复兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声色野记\",\n    \"author\": \"侯磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神性的温柔\",\n    \"author\": \"泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的美的世界\",\n    \"author\": \"森茉莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985480-47ad93?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沿坟墓而行\",\n    \"author\": \"纳韦德・凯尔曼尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙田随笔全集（共3册）\",\n    \"author\": \"米歇尔・德・蒙田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985171-fc3c5a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是孤独的旅程\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李娟阿勒泰系列（共4册）\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏与西伯利亚\",\n    \"author\": \"倪湛舸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青眉抄\",\n    \"author\": \"上村松园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983134-c98139?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄小厨的春夏秋冬\",\n    \"author\": \"黄磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦溪笔谈（全本全注全译）\",\n    \"author\": \"沈括\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982498-8c1213?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上（读客经典）\",\n    \"author\": \"杰克・凯鲁亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982507-7418ab?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"去他的巴西\",\n    \"author\": \"胡续冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小文65\",\n    \"author\": \"马未都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982444-87cc64?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲情偶寄（全本全注全译）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982435-f2b94d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正午6：旧山河，新故事\",\n    \"author\": \"正午\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在时光中盛开的女子\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长皱了的小孩\",\n    \"author\": \"严明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052575-e2c228?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才为何成群地来\",\n    \"author\": \"王汎森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑场（2017版）\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048558-fe098d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书（全本全注全译）\",\n    \"author\": \"张建业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱欲与哀矜\",\n    \"author\": \"张定浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047418-fe398a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些忧伤的年轻人\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"歌德谈话录（果麦经典）\",\n    \"author\": \"爱克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047061-9b3ce0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第84封情书\",\n    \"author\": \"骆淑景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的晃荡的青春\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046584-e51f3a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"媚骨之书\",\n    \"author\": \"蒋蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波动\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046539-3edfdf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爵士乐群英谱\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046266-bc8656?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山之四季（果麦经典）\",\n    \"author\": \"高村光太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事的开始\",\n    \"author\": \"幾米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"占卜师的预言\",\n    \"author\": \"蒂齐亚诺・泰尔扎尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有一个人生\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日升之处\",\n    \"author\": \"A.W.金莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不安的生活\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖23：好久没去野餐了！\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044721-dfba86?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳兰词（作家榜经典文库）\",\n    \"author\": \"纳兰性德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一道曙光下的真实\",\n    \"author\": \"欧内斯特・海明威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笠翁对韵（作家榜经典文库）\",\n    \"author\": \"李渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叛逆的思想家\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大地上的事情\",\n    \"author\": \"苇岸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化与人生\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适四十自述（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"听客溪的朝圣\",\n    \"author\": \"安妮・迪拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忍不住的新努力（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043095-cf02bb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希尼三十年文选\",\n    \"author\": \"谢默斯・希尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国深南之旅\",\n    \"author\": \"保罗・索鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往印度次大陆\",\n    \"author\": \"赫尔曼・黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔杂文全集（全2册）\",\n    \"author\": \"乔治・奥威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当我在一个仲夏清晨出走\",\n    \"author\": \"洛瑞・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041316-13ceb7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八股新论\",\n    \"author\": \"金克木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040908-f77a1a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常识与通识（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸猫指南\",\n    \"author\": \"六井冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040377-276a7e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拔蒲歌\",\n    \"author\": \"沈书枝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威尼斯日记\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039990-dbfb2f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊逸说经典作品集（套装共4册）\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳船上的孩子\",\n    \"author\": \"雅丝米娜・米哈伊洛维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星条旗下的茶叶蛋\",\n    \"author\": \"方柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信徒的国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抵达之谜\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037674-586f4c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓦尔登湖（译文经典）\",\n    \"author\": \"亨利・戴维・梭罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"堕落论（坂口安吾系列作品）\",\n    \"author\": \"坂口安吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036426-ed96c8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傅雷家书（经典版）\",\n    \"author\": \"傅雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的精神家园\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034980-0be87d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反与正·婚礼集·夏\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原稿零枚日记\",\n    \"author\": \"小川洋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034140-54223a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雨天炎天\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和电风扇一起摇头\",\n    \"author\": \"大岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034092-9f46c2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下鲍勃·迪伦与老美国\",\n    \"author\": \"格雷尔・马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致女儿书\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033981-f30b64?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边境·近境\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下巴黎\",\n    \"author\": \"洛朗・多伊奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方的鼓声\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画见\",\n    \"author\": \"止庵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韩寒的杂文们（套装共4册）\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心为身役：苏珊·桑塔格日记与笔记（1964-1980）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰在黄昏起飞\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033234-b6cfcb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生：苏珊·桑塔格日记与笔记（1947-1963）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简单：应对复杂世界的高级思维\",\n    \"author\": \"木鱼/柳白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033039-6a69db?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢人生快活的样子\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蠹鱼文丛系列（套装10册）\",\n    \"author\": \"陈子善/叶瑜荪/李辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉住气，吃硬饭\",\n    \"author\": \"王路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四季，三餐，都随你\",\n    \"author\": \"简猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小于一\",\n    \"author\": \"约瑟夫・布罗茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论小丑\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩儿\",\n    \"author\": \"于谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲话闲说（纪念版）\",\n    \"author\": \"阿城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032094-c45426?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地下乡愁蓝调\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031992-c6a7a5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日书\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳朵借我\",\n    \"author\": \"马世芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本名词故事\",\n    \"author\": \"新井一二三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清欢三卷（唯美珍藏版）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冬日笔记（理想国）\",\n    \"author\": \"保罗・奥斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031746-95d746?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寥寥中年事\",\n    \"author\": \"秋色连波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷月孤灯·静远楼读史\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031359-488f0a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇来前书\",\n    \"author\": \"杨牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从一个蛋开始\",\n    \"author\": \"徐则臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031023-96e5b6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类愚蠢辞典\",\n    \"author\": \"皮耶尔乔治・奥迪弗雷迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国家书\",\n    \"author\": \"本杰明・富兰克林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦灰堆 美人计\",\n    \"author\": \"萧耳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030711-cffcd0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸短情长，民国大师们的最美情书（全6册套装）\",\n    \"author\": \"朱生豪/鲁迅/闻一多等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由在高处\",\n    \"author\": \"熊培云\",\n    \"link\": \"链接未找到\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单独中的洞见\",\n    \"author\": \"张方宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读书毁了我\",\n    \"author\": \"王强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030408-4ed360?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿皮火车（精装增补图文版）\",\n    \"author\": \"周云蓬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030276-97ed20?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在新疆\",\n    \"author\": \"刘亮程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030111-69f33f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子的领悟\",\n    \"author\": \"周保松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029604-147daf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书贩笑忘录\",\n    \"author\": \"陈晓维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029508-bfbc07?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四个春天\",\n    \"author\": \"陆庆屹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029481-41006d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的文艺复兴\",\n    \"author\": \"白先勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029421-adc6a2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下雨天一个人在家\",\n    \"author\": \"江国香织\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029391-80179b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深思与省悟\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林清玄经典作品合集（套装共十二册）\",\n    \"author\": \"林清玄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029175-3e7510?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"普通读者\",\n    \"author\": \"西闪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林中水滴\",\n    \"author\": \"米・普里什文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028419-0eee62?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苦儿流浪记（果麦经典）\",\n    \"author\": \"埃克多・马洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028341-fbd188?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古文辞类纂（全2册）\",\n    \"author\": \"姚鼐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028095-524f25?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"见字如来\",\n    \"author\": \"张大春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028047-c7408c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大树\",\n    \"author\": \"贝尔纳・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027990-fdb107?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉万象记\",\n    \"author\": \"毛晓雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给布里安娜的卡片\",\n    \"author\": \"希瑟・麦克马拉米/威廉・克洛伊尔\",\n    \"link\": \"链接未找到\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"试论疲倦\",\n    \"author\": \"彼得・汉德克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027906-d5f6a8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世间的名字都是秘密\",\n    \"author\": \"苏缨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027894-123174?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春时樱，秋时叶\",\n    \"author\": \"德富芦花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027903-12eb42?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书籍的世界\",\n    \"author\": \"赫尔曼黑塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027612-b2d143?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们唱\",\n    \"author\": \"叶三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027609-3c8930?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读17：人的困境\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027582-858cfb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读18：都市一无所有\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027570-69e4e0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单读19：到未来去\",\n    \"author\": \"吴琦主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027576-7935d7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人的食指\",\n    \"author\": \"向田邦子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027498-8a4dd7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰饶与贫瘠\",\n    \"author\": \"王安忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027381-2af7f7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛读书札记\",\n    \"author\": \"赵一凡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027321-89ad70?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个观点，不一定对\",\n    \"author\": \"黄章晋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男女有别\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026973-55e3ae?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自在独行\",\n    \"author\": \"贾平凹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026964-7741e7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大叔\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026829-a09868?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上几个人渣\",\n    \"author\": \"马家辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随性而至\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026382-2185ca?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家笔记\",\n    \"author\": \"威廉・萨姆塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026373-6fd2ce?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海胆\",\n    \"author\": \"雷晓宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漂泊的异乡人\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026148-636c2c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"达·芬奇手记（珍藏版）\",\n    \"author\": \"达・芬奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宴与家宴\",\n    \"author\": \"王宣一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪音\",\n    \"author\": \"梁文道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025527-55faa6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街角的老北京\",\n    \"author\": \"卢文龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有话说\",\n    \"author\": \"崔永元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"退步集\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耕种 食物 爱情\",\n    \"author\": \"克里斯汀・金博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出荒野\",\n    \"author\": \"谢丽尔・斯特雷德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我讲个笑话，你可别哭啊\",\n    \"author\": \"囧叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024642-ca56cb?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全民自黑的英国\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在另一个宇宙的1003天\",\n    \"author\": \"张春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"咖啡苦不苦\",\n    \"author\": \"陈丹燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美，看不见的竞争力\",\n    \"author\": \"蒋勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024381-dc676d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾想（套装共2册）\",\n    \"author\": \"贾樟柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024177-5dc26f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"依赖共生\",\n    \"author\": \"巴里・温霍尔德/贾内・温霍尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024069-b92767?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我只知道人是什么\",\n    \"author\": \"余华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢煮生活\",\n    \"author\": \"汪曾祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023556-6ec377?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明天我要去冰岛\",\n    \"author\": \"嘉倩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山河小岁月\",\n    \"author\": \"李舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023418-3eafb8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝话\",\n    \"author\": \"梁漱溟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不过，一场生活\",\n    \"author\": \"阿Sam\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天长地久：给美君的信\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笑场\",\n    \"author\": \"李诞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022842-b37533?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们为什么总是看错人\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022611-49a550?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无所畏\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林达作品集（套装共10册）\",\n    \"author\": \"林达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潦草\",\n    \"author\": \"贾行家\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021888-5f25ff?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命不息，折腾不止\",\n    \"author\": \"罗永浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有如候鸟\",\n    \"author\": \"周晓枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活上瘾指南\",\n    \"author\": \"姚瑶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私想鲁迅\",\n    \"author\": \"刘春杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一瓢纽约\",\n    \"author\": \"张北海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021135-c37724?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大忘路\",\n    \"author\": \"大忘路\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020988-769584?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北野武的小酒馆\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020850-7ed159?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文章皆岁月\",\n    \"author\": \"萧乾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020781-294c5e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三毛作品精选（共6册）\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020745-33663b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老灵魂\",\n    \"author\": \"韩松落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020712-1dcbf2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以读攻读\",\n    \"author\": \"但汉松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020502-f49829?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有时\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020499-b76fe6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把你交给时间\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020520-c95774?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫子旁\",\n    \"author\": \"朱赢椿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020127-6ae8cd?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的脖子让我很不爽\",\n    \"author\": \"诺拉・艾芙隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019875-949ab1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水云（果麦经典）\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"然而，很美：爵士乐之书\",\n    \"author\": \"杰夫・戴尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019851-676e46?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键词\",\n    \"author\": \"梁文道\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019260-b47d26?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间卧底\",\n    \"author\": \"马良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019188-c5a941?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如丧\",\n    \"author\": \"高晓松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人是一根会思考的芦苇\",\n    \"author\": \"帕斯卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018051-3c51aa?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偶遇\",\n    \"author\": \"陈鲁豫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017523-714fb8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风马牛（全三册）\",\n    \"author\": \"孙原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017139-643906?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢来，反正也来不及\",\n    \"author\": \"囧叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017091-63be9e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无聊的魅力\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机场里的小旅行\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016749-ca198e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作颂歌\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016866-d1189f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学的慰藉\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016734-154cfc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的建筑\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016800-10b9f5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拥抱逝水年华\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016731-8427f1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你我皆凡人\",\n    \"author\": \"六神磊磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016530-05da98?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅定荒野\",\n    \"author\": \"加里・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在这复杂世界里\",\n    \"author\": \"韩寒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016401-5810ba?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你好，小确幸\",\n    \"author\": \"加肥猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016305-40563d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国的智慧（全2册）\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015927-98a2b1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自静默时刻的讯息\",\n    \"author\": \"亚历山大・克鲁格/格哈德・里希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015834-7f7b45?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生六记（全本全译全注插图珍藏版）\",\n    \"author\": \"沈复\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015576-cbd161?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧山河\",\n    \"author\": \"刀尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武侠，从牛A到牛C\",\n    \"author\": \"大脸撑在小胸上\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015081-08667c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搜神记\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014958-03a189?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落的优雅\",\n    \"author\": \"阮义忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014619-e2d4f6?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读是一座随身携带的避难所\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014526-6e422e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知道分子\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014475-8625ba?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萝卜和难挑的鳄梨\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014292-185e18?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"送你一颗子弹\",\n    \"author\": \"刘瑜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014244-82b233?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲人遐想录\",\n    \"author\": \"杰罗姆・克・杰罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013947-08bcf2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文稿拾零\",\n    \"author\": \"豪尔赫・路易斯・博尔赫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013854-de3eab?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六神磊磊读唐诗\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013521-bdd110?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡觉大师\",\n    \"author\": \"朱岳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013257-d79e5b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给青年诗人的信\",\n    \"author\": \"莱内・马利亚・里尔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012636-064601?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的进化论\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿你与这世界温暖相拥\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012573-78aa7b?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深山夏牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012348-5be301?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前山夏牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012354-ef6a56?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春牧场\",\n    \"author\": \"李娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012315-5f2f15?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的国\",\n    \"author\": \"寇研\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京一年\",\n    \"author\": \"蒋方舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011895-9ac584?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩托日记\",\n    \"author\": \"埃内斯托・切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒哈拉的故事\",\n    \"author\": \"三毛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011679-8f3c6e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身份的焦虑\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011703-4d4366?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无比芜杂的心绪\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011481-7ffc07?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁是谁的太阳：尼采随笔\",\n    \"author\": \"弗里德里希・威廉・尼采\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011469-72eb20?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史铁生插图版经典作品选（全5册）\",\n    \"author\": \"史铁生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍遗珠\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖食：质朴的味道，家的味道\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间世\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010728-b43c36?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何必等来生\",\n    \"author\": \"燕子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010593-8d64d5?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适文集（套装共7册）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊次郎与佐纪\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009915-10ba80?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像我这样的一个读者\",\n    \"author\": \"西西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥威尔作品集（套装共9册）\",\n    \"author\": \"奥威尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众妙之门（精装插图版）\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009396-d57366?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船夫日记\",\n    \"author\": \"凯尔泰斯・伊姆莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009303-181850?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们仨\",\n    \"author\": \"杨绛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天“帝国与共和”三部曲\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把生命浪费在美好的事物上\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008034-2d080f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的读书计划\",\n    \"author\": \"克里夫顿・费迪曼/约翰・S・梅杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙乡年鉴（果麦经典）\",\n    \"author\": \"奥尔多・利奥波德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007749-a6a55e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学五章\",\n    \"author\": \"江晓原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得读完的书\",\n    \"author\": \"聂震宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年一叹\",\n    \"author\": \"余秋雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旅行与读书\",\n    \"author\": \"詹宏志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皮囊\",\n    \"author\": \"蔡崇达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在汉朝不容易\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海秘境\",\n    \"author\": \"TimeOut 上海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教科书里没有的历史细节\",\n    \"author\": \"王国华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福了吗？\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛并快乐着\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目送（插图版）\",\n    \"author\": \"龙应台\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇石：来自东西方的报道\",\n    \"author\": \"彼得·海斯勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乡关何处\",\n    \"author\": \"土家野夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006978-c20038?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的大多数（彩绘插图本）\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白说\",\n    \"author\": \"白岩松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1933：聆听民国\",\n    \"author\": \"林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是爬行者小江\",\n    \"author\": \"江一燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006828-cf34d0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看见\",\n    \"author\": \"柴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你是尘埃也是光\",\n    \"author\": \"梁子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你永远都无法叫醒一个装睡的人\",\n    \"author\": \"周濂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非洲三万里\",\n    \"author\": \"毕淑敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打回原形\",\n    \"author\": \"朱新建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜半蜘蛛猴\",\n    \"author\": \"村上春树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005913-712f9f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的底稿\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的边角料\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005868-04c945?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕著三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的空白处\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：朝堂上的戏法\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005811-270f44?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直截了当的独白\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"船夫日记2\",\n    \"author\": \"凯尔泰斯・伊姆莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005754-20f950?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乖，摸摸头\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我亦飘零久\",\n    \"author\": \"独木舟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005637-3597fa?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一年之痒\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们这个时代的怕和爱\",\n    \"author\": \"陈丹青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004716-7b334c?p=8866\",\n    \"category\": \"随笔\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不和世界讲道理\",\n    \"author\": \"曹晟康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500178-c94c1a?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过得刚好\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513618-32fba3?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯友兰哲思录\",\n    \"author\": \"冯友兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004101-553863?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墓志铭图书馆\",\n    \"author\": \"萨缪尔・法努斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003990-425456?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请勿离开车祸现场\",\n    \"author\": \"叶扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003798-f07b2c?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘墉的处世情商课\",\n    \"author\": \"刘墉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"目光\",\n    \"author\": \"陶勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造人生的伙伴\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我离开之后\",\n    \"author\": \"苏西・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就斜杠人生\",\n    \"author\": \"玛希・埃尔博尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998818-5c9d5c?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋（读客经典）\",\n    \"author\": \"毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995125-5bc203?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生由我\",\n    \"author\": \"梅耶・马斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的人生歌单\",\n    \"author\": \"格雷姆・辛浦生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像哲学家一样生活\",\n    \"author\": \"威廉·B.欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生新算法\",\n    \"author\": \"矢野和男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忏悔录（上下册）\",\n    \"author\": \"卢梭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平如美棠：我俩的故事\",\n    \"author\": \"饶平如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最神奇的24堂课\",\n    \"author\": \"查尔斯・哈奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"果敢力\",\n    \"author\": \"蒋齐仕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化与人生\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失忆的爱丽丝\",\n    \"author\": \"莉安・莫利亚提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042543-545e28?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力：刘媛媛的逆袭课\",\n    \"author\": \"刘媛媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040512-7c2ad0?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A4纸上看人生\",\n    \"author\": \"刘建梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无法完成的告别\",\n    \"author\": \"大卫・利维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035373-d1df05?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢人生快活的样子\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布隆夫曼脱单历险记\",\n    \"author\": \"丹尼尔・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走钢丝的人\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031827-350ba1?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人质朗读会\",\n    \"author\": \"小川洋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031818-fe8c83?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的智慧（作家榜经典文库）\",\n    \"author\": \"阿图尔・叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029181-2bb63c?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人不过如此\",\n    \"author\": \"大卫・邵洛伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029004-57f394?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让好脾气害了你\",\n    \"author\": \"周维丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027069-8b1e00?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丈量世界\",\n    \"author\": \"丹尼尔・凯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025011-988ba8?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爷爷一定要离婚\",\n    \"author\": \"帕斯卡・鲁特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024636-095fcc?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的哲学\",\n    \"author\": \"朱尔斯・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是孤独的行路人\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022542-cf4133?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百岁人生：长寿时代的生活和工作\",\n    \"author\": \"琳达・格拉顿/安德鲁・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021330-9ce0b1?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间食粮\",\n    \"author\": \"安德烈・纪德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021168-e7d281?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的智慧：如何才能幸福度过一生\",\n    \"author\": \"阿图尔・叔本华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018105-7725a4?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这世界啊，随他去吧\",\n    \"author\": \"李沐泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017355-7f8a21?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何必等来生\",\n    \"author\": \"燕子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010593-8d64d5?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人与永恒\",\n    \"author\": \"周国平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一条狗的使命\",\n    \"author\": \"布鲁斯・卡梅隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009954-f64d06?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性的弱点\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产狂人许家印\",\n    \"author\": \"魏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866\",\n    \"category\": \"人生\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明兴衰三百年\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498804-6bd132?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明风云（套装共9册）\",\n    \"author\": \"云石等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501321-cc13fe?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春明梦余录\",\n    \"author\": \"狐周周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511800-d57445?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"严嵩与张居正\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997336-91c17f?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝那些事儿（图文增补版）\",\n    \"author\": \"当年明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050259-ef1bdd?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝简史\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048765-cc45e6?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒退的帝国：朱元璋的成与败\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝廷与党争\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045885-5bdfc7?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚明大变局\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045558-e69b30?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国\",\n    \"author\": \"周建行\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034782-d9ee2a?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滴血的大朝代\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国战争史\",\n    \"author\": \"李湖光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张居正：全4册\",\n    \"author\": \"熊召政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025059-cac065?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽明录\",\n    \"author\": \"卢隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024369-db1a0a?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崇祯大传奇（全三册）\",\n    \"author\": \"晏青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020979-10eee9?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明乌纱\",\n    \"author\": \"西风紧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019917-75816f?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Q版大明衣冠图志\",\n    \"author\": \"撷芳主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016557-4c2cd9?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孝陵卫\",\n    \"author\": \"陆老师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010872-c4be3c?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明王朝的七张面孔（套装共2册）\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007833-83ee88?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地解：1644大变局\",\n    \"author\": \"汗青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006444-18d6eb?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明王朝1566（套装共二册）\",\n    \"author\": \"刘和平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005589-4f319f?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦衣卫秘事\",\n    \"author\": \"夜行独侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005262-15b909?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不容青史尽成灰（套装五册）\",\n    \"author\": \"张嵚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005247-bb17a7?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国最后的荣耀：大明1592抗日援朝\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005091-0ae1b1?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万历十五年（经典版）\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004842-c3da51?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝那些事儿（1-9）\",\n    \"author\": \"当年明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866\",\n    \"category\": \"明朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抓重点\",\n    \"author\": \"赵启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004644-1ddabe?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效清单工作法\",\n    \"author\": \"达蒙・扎哈里亚德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简时间\",\n    \"author\": \"洛塔尔・赛韦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000291-c277a4?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大忙人的高效阅读课\",\n    \"author\": \"李源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995281-68ab8d?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保持饥渴\",\n    \"author\": \"Thinkers50\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效忍者\",\n    \"author\": \"格雷厄姆・阿尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法\",\n    \"author\": \"弗朗西斯科・西里洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的方法\",\n    \"author\": \"泰勒・本-沙哈尔/安格斯・里奇韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极速写作\",\n    \"author\": \"剑飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑减压的子弹笔记术\",\n    \"author\": \"电脑玩物站长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间看得见\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033381-62fcdf?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极度效率\",\n    \"author\": \"阿米特・奥菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028083-8ae1ff?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效PDCA工作术\",\n    \"author\": \"富田和成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021882-8ccafc?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让无效努力毁了你\",\n    \"author\": \"克里斯・贝利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014442-332e82?p=8866\",\n    \"category\": \"效率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教父三部曲（典藏版套装）\",\n    \"author\": \"马里奥・普佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866\",\n    \"category\": \"教父\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为自控者\",\n    \"author\": \"Susan Kuang\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004494-7eeeaf?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的150个信念\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天演好一个情绪稳定的成年人\",\n    \"author\": \"老杨的猫头鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996994-edf7f5?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向上生长\",\n    \"author\": \"九边\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995068-5df96e?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即答力\",\n    \"author\": \"松浦弥太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990169-68ccea?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我喜欢你，像风走了八千里\",\n    \"author\": \"末那大叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑学原来很有趣\",\n    \"author\": \"齐露露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的自律，给你自由\",\n    \"author\": \"小椰子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阶层跃迁\",\n    \"author\": \"闫肖锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051423-630300?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出众，从改变习惯开始\",\n    \"author\": \"马克・列克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董卿：做一个有才情的女子\",\n    \"author\": \"乔瑞玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Unfu*k Yourself\",\n    \"author\": \"Gary John Bishop\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生的84000种可能\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033465-4e8890?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你有多强大，就有多温柔\",\n    \"author\": \"王珣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让我们相逢在更高处\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026193-085500?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终有一天你会懂\",\n    \"author\": \"琢磨先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好吗好的\",\n    \"author\": \"大冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007014-27f7a8?p=8866\",\n    \"category\": \"鸡汤\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易：高手训练营\",\n    \"author\": \"埃德・蓬西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866\",\n    \"category\": \"外汇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外汇交易的10堂必修课\",\n    \"author\": \"贾里德・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866\",\n    \"category\": \"外汇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福社会创新评论合集（套装共9册）\",\n    \"author\": \"斯坦福社会创新评论编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866\",\n    \"category\": \"斯坦福\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"相对论之路\",\n    \"author\": \"哈诺赫・古特弗罗因德/于尔根・雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866\",\n    \"category\": \"相对论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危崖：生存性风险与人类的未来\",\n    \"author\": \"托比・奥德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493782-80c088?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类进化史\",\n    \"author\": \"加亚・文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498165-5357ae?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很高兴认识“我”\",\n    \"author\": \"比尔・沙利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雨横渡\",\n    \"author\": \"西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510204-4a529b?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别睡，这里有蛇\",\n    \"author\": \"丹尼尔・埃弗里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510891-4ad519?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六论自发性\",\n    \"author\": \"詹姆斯·C. 斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类学讲义稿\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候经济与人类未来\",\n    \"author\": \"比尔・盖茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚蠢的人类\",\n    \"author\": \"汤姆・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003243-bbb6f1?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破译人类的明天\",\n    \"author\": \"迈克尔・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史与人类的未来（修订版）\",\n    \"author\": \"弗雷德・斯皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994171-41fd5a?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼物的流动\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985465-3e6908?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃：社会如何选择成败兴亡\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的价值\",\n    \"author\": \"罗伯特・博伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051105-4b4530?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔工的值班室\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043494-9e3f3d?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（三）\",\n    \"author\": \"开普勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（一）\",\n    \"author\": \"摩尔根等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学元典套装（二）\",\n    \"author\": \"玛丽・居里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类六千年（上下两册）\",\n    \"author\": \"刘景华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忧郁的热带\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面对现代世界问题的人类学\",\n    \"author\": \"克洛德·列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032265-7d37d4?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼安德特人\",\n    \"author\": \"斯万特・帕博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金叶：来自金枝的故事\",\n    \"author\": \"丽莉・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028533-53157f?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是个妈妈，我需要铂金包\",\n    \"author\": \"温妮斯蒂・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的智人\",\n    \"author\": \"河森堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"椰壳碗外的人生\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一切与创造有关\",\n    \"author\": \"奥古斯汀・富恩特斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么有的国家富裕，有的国家贫穷\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018243-d98729?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象的共同体（增订版）\",\n    \"author\": \"本尼迪克特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017700-976365?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超人类革命\",\n    \"author\": \"吕克・费希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017670-bee6d3?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们人类的进化\",\n    \"author\": \"亚历山大・哈考特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一万年的爆发\",\n    \"author\": \"格雷戈里・柯克伦/亨利・哈本丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017313-fa9dd4?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史\",\n    \"author\": \"大卫・克里斯蒂安等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016224-d086d6?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的故事：正式授权续写至21世纪\",\n    \"author\": \"亨德里克・威廉・房龙等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015681-651344?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类砍头小史\",\n    \"author\": \"弗朗西斯・拉尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信历史的镜像系列（套装共10本）\",\n    \"author\": \"理查德・埃文斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私人生活的变革\",\n    \"author\": \"阎云翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些惊心动魄的人类文明史（套装共18册）\",\n    \"author\": \"曹胜高等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人体的故事：进化、健康与疾病\",\n    \"author\": \"丹尼尔・利伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金枝\",\n    \"author\": \"詹姆斯・乔治・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010026-3fff55?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌和钢铁\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮生取义\",\n    \"author\": \"吴飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神似祖先\",\n    \"author\": \"郑也夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们都是食人族\",\n    \"author\": \"克劳德・列维-斯特劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂人类进化史\",\n    \"author\": \"史钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类简史：从动物到上帝\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005331-d43590?p=8866\",\n    \"category\": \"人类\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文治帝国\",\n    \"author\": \"艾公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498795-f4db48?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋人轶事汇编\",\n    \"author\": \"周勋初/葛渭君/周子来/王华宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雅宋：看得见的大宋文明\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028143-e3cd42?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录\",\n    \"author\": \"孟元老\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋帝国三百年（共5册）\",\n    \"author\": \"金纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原来你是这样的宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005328-0cee06?p=8866\",\n    \"category\": \"宋朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肠子的小心思\",\n    \"author\": \"朱莉娅・恩德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866\",\n    \"category\": \"重口味\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"面包匠的狂欢节\",\n    \"author\": \"安德鲁・林赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010767-26c0e8?p=8866\",\n    \"category\": \"重口味\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河谈亲密关系\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木马湖\",\n    \"author\": \"宋老邪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002121-ac27cf?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情的逻辑\",\n    \"author\": \"蔡垒磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001287-7558eb?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱是什么\",\n    \"author\": \"芭芭拉・弗雷德里克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999475-3aed0e?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当爱变成了情感操纵\",\n    \"author\": \"佐治·K.西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995245-aa31a6?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚当的人生歌单\",\n    \"author\": \"格雷姆・辛浦生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲望都市\",\n    \"author\": \"坎迪斯・布什奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990379-bb75be?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情就是堆积如山的笔记\",\n    \"author\": \"苏美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挽回爱情33堂课\",\n    \"author\": \"穆木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985810-12567b?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们失去的光\",\n    \"author\": \"吉尔・桑托波罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985711-f7b9ee?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（再版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985642-272a86?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尉官正年轻\",\n    \"author\": \"刘静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985630-32bdb9?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（中英双语典藏版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平如美棠：我俩的故事\",\n    \"author\": \"饶平如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性盲症患者的爱情\",\n    \"author\": \"张天翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053070-b8c727?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱情和其他魔鬼\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051126-9665e7?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"景恒街\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051015-aa2384?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个人的巴黎\",\n    \"author\": \"乔乔・莫伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050619-04e97f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第84封情书\",\n    \"author\": \"骆淑景\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"返朴\",\n    \"author\": \"北野武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046800-b689fb?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾城之恋（2019版）\",\n    \"author\": \"张爱玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045720-2b6e2f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·爱（果麦经典）\",\n    \"author\": \"夏洛蒂・勃朗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045654-27e62a?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧演的终章\",\n    \"author\": \"平野启一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045306-447f37?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开往伊斯坦布尔的最后列车\",\n    \"author\": \"艾雪・库林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043023-4cbbe6?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从你的全世界路过（2019全新修订）\",\n    \"author\": \"张嘉佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040293-137a08?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河说爱情\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最初之前\",\n    \"author\": \"张皓宸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036237-0122de?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仲夏夜之梦（莎士比亚戏剧中文版）\",\n    \"author\": \"威廉・莎士比亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命时期的爱情\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035277-f2f141?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"既生魄\",\n    \"author\": \"张广天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034497-a955e3?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飘（企鹅经典）\",\n    \"author\": \"玛格丽特・米切尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033714-39755f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜月亮\",\n    \"author\": \"陶立夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033636-81f339?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分手信\",\n    \"author\": \"尼古拉斯・斯帕克思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032835-a16896?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Hating Game\",\n    \"author\": \"Sally Thorne\",\n    \"link\": \"链接未找到\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二年，故人戏（全2册）\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与你重逢\",\n    \"author\": \"马克・李维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032469-49b649?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十首情诗和一支绝望的歌\",\n    \"author\": \"巴勃罗・聂鲁达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲伤逆流成河\",\n    \"author\": \"郭敬明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032358-7743cd?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱你就像爱生命\",\n    \"author\": \"王小波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明之街\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031164-4316c5?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"糟糠之妻\",\n    \"author\": \"未夕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029601-d8ddb2?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好的爱情\",\n    \"author\": \"陈果\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027975-a6a097?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她的小梨窝\",\n    \"author\": \"唧唧的猫\",\n    \"link\": \"链接未找到\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青青陌上桑\",\n    \"author\": \"陆观澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027747-d1669b?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装成独白的爱情\",\n    \"author\": \"马洛伊・山多尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027723-339ebc?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良言写意（珍藏纪念版）\",\n    \"author\": \"木浮生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027585-8dcbed?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东宫\",\n    \"author\": \"匪我思存\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027138-57ad43?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琥珀恋人\",\n    \"author\": \"茶韵悠悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025029-910f40?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"街角的奇迹\",\n    \"author\": \"肯尼迪・欧戴德/杰茜卡・波斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024135-a86d86?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无比美妙的痛苦\",\n    \"author\": \"约翰・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023421-afac0a?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的房东叫别扭\",\n    \"author\": \"宝卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023103-0d5a9b?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为了你，我愿意热爱整个世界\",\n    \"author\": \"唐家三少\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023094-78fa48?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年的你，如此美丽\",\n    \"author\": \"玖月晞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022845-17524c?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就要你好好的\",\n    \"author\": \"乔乔・莫伊斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022401-24700e?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福的最小行动\",\n    \"author\": \"刘轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022134-f272bd?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"琥珀·恋爱的犀牛\",\n    \"author\": \"廖一梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021084-25b99f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的自然史\",\n    \"author\": \"戴安娜・阿克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021021-362752?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那个不为人知的故事\",\n    \"author\": \"Twentine\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020829-f14985?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南极绝恋\",\n    \"author\": \"吴有音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019218-58d2f5?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南方有乔木（纪念版）\",\n    \"author\": \"小狐濡尾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018402-84c931?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译官（影视纪念珍藏版）\",\n    \"author\": \"缪娟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017772-ab292f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛格丽特小镇\",\n    \"author\": \"加布瑞埃拉・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017520-70035d?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆光而行\",\n    \"author\": \"沈南乔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017262-60c28b?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱上浪漫\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016809-5e062f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间旅行者的妻子\",\n    \"author\": \"奥德丽・尼芬格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013359-d1a740?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱的进化论\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍乱时期的爱情\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010596-537f33?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前半生\",\n    \"author\": \"亦舒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009927-9bdb0f?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分心也有好婚姻\",\n    \"author\": \"爱德华・哈洛韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一半是火焰，一半是海水\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009294-b318d0?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嘉莉妹妹\",\n    \"author\": \"西奥多・德莱塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008712-177f57?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别天堂\",\n    \"author\": \"笛安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008511-0969ee?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的盖茨比\",\n    \"author\": \"斯科特・菲茨杰拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007428-711e86?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失乐园\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007320-69bcb7?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾中回忆\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北海道物语\",\n    \"author\": \"渡边淳一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007113-1efc77?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的爱人\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006969-e58bb7?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荆棘鸟（修订版）\",\n    \"author\": \"考琳·麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866\",\n    \"category\": \"爱情\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关灯就睡觉\",\n    \"author\": \"格雷格·D·贾克布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491976-465249?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拯救你的睡眠\",\n    \"author\": \"阿里安娜・赫芬顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499422-0ad975?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑子不会好好睡\",\n    \"author\": \"盖伊・勒施齐纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509061-ceecea?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伴你一生的睡眠指导书\",\n    \"author\": \"爱丽丝・格雷戈里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干掉失眠\",\n    \"author\": \"科琳・恩斯特朗姆/阿丽莎・布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何睡个好觉\",\n    \"author\": \"劳伦斯·J. 爱泼斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"久坐不伤身\",\n    \"author\": \"哈丽特・格里菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡个好觉\",\n    \"author\": \"迈尔・克利格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"催眠二十八讲\",\n    \"author\": \"威廉姆・韦斯利・库克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024915-d17460?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法伯睡眠宝典\",\n    \"author\": \"理查德・法伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011148-584292?p=8866\",\n    \"category\": \"睡眠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Boot实战\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866\",\n    \"category\": \"Spring\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring实战（第4版）\",\n    \"author\": \"Craig Walls\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020319-e008d6?p=8866\",\n    \"category\": \"Spring\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾年度套装（共56册）\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046530-4e40c9?p=8866\",\n    \"category\": \"东野圭吾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使之耳\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032541-4cba9e?p=8866\",\n    \"category\": \"东野圭吾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东野圭吾天王套装\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031326-663108?p=8866\",\n    \"category\": \"东野圭吾\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好兵帅克历险记（名著名译丛书）\",\n    \"author\": \"雅・哈谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035016-e0b80e?p=8866\",\n    \"category\": \"外国文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个女人一生中的二十四小时（企鹅经典）\",\n    \"author\": \"斯台芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033507-fe6b8e?p=8866\",\n    \"category\": \"外国文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流氓的归来\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032382-2de8ce?p=8866\",\n    \"category\": \"外国文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一样的海\",\n    \"author\": \"阿摩司・奥兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023175-088266?p=8866\",\n    \"category\": \"外国文学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"团队赋能\",\n    \"author\": \"迈克・布伦特/菲奥娜・爱尔莎・丹特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢的答案（尊享版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超级领导力\",\n    \"author\": \"金·R·鲍威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实践智慧\",\n    \"author\": \"野中郁次郎/荻野进介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先发制人\",\n    \"author\": \"布伦特・格里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983161-cd7422?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何创建天才团队\",\n    \"author\": \"里奇・卡尔加德/迈克尔・马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横向领导力\",\n    \"author\": \"罗杰・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力思维\",\n    \"author\": \"珍妮弗・加维・伯格/基斯・约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中层领导力（共三册）\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我这就跟你走\",\n    \"author\": \"科里・鲍克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024180-eaf889?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感召力\",\n    \"author\": \"西蒙・兰卡斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力21法则\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005919-08ec04?p=8866\",\n    \"category\": \"领导力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"iOS编程（第4版）\",\n    \"author\": \"Christian Keur/Aaron Hillegass\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866\",\n    \"category\": \"iOS\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不正经的卢浮宫\",\n    \"author\": \"西塞尔・巴隆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866\",\n    \"category\": \"文史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国崛起病\",\n    \"author\": \"黄钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007281-5bec5c?p=8866\",\n    \"category\": \"文史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·中国的历史（全十卷）\",\n    \"author\": \"宫本一夫/平势隆郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866\",\n    \"category\": \"通史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史\",\n    \"author\": \"丁建弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866\",\n    \"category\": \"通史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笔记思考术\",\n    \"author\": \"黄忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512244-216e47?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"视觉笔记术\",\n    \"author\": \"卢慈伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985774-afd8b0?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡笔记思考法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效整理信息\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子弹笔记术\",\n    \"author\": \"杉野干人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019761-864774?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人用方格笔记本\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010908-f51638?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艽野尘梦\",\n    \"author\": \"陈渠珍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866\",\n    \"category\": \"笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火影忍者（第1部：卷1~卷7）\",\n    \"author\": \"岸本齐史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866\",\n    \"category\": \"动漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆笑校园（套装共12册）\",\n    \"author\": \"朱斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866\",\n    \"category\": \"动漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙珠（1-7卷）\",\n    \"author\": \"鸟山明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031014-763232?p=8866\",\n    \"category\": \"动漫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国财政史十六讲\",\n    \"author\": \"刘守刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019311-2e842e?p=8866\",\n    \"category\": \"财政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的财政密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866\",\n    \"category\": \"财政\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏海花漫画套装（全六册）\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997207-658fc2?p=8866\",\n    \"category\": \"盗墓笔记\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡适19堂文学课（作家榜经典文库）\",\n    \"author\": \"胡适\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043251-5f125a?p=8866\",\n    \"category\": \"胡适\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报就像一本兵法书\",\n    \"author\": \"刘顺仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的眼睛\",\n    \"author\": \"吴卫军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务诡计\",\n    \"author\": \"霍华德·M.施利特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂财报\",\n    \"author\": \"肖星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界上最简单的会计书\",\n    \"author\": \"达雷尔・穆利斯/朱迪斯・奥洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027939-522929?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让数字说话：审计，就这么简单\",\n    \"author\": \"孙含晖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866\",\n    \"category\": \"会计\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海世界一万五千年\",\n    \"author\": \"阿兰・布隆迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498942-9f4334?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的海（全2册）\",\n    \"author\": \"大卫・阿布拉菲亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海的衰落\",\n    \"author\": \"布雷斯特德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020049-1f86d7?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马灭亡后的地中海世界（上下册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海史诗三部曲\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866\",\n    \"category\": \"地中海\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩5：遗失的羽毛\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866\",\n    \"category\": \"悬爱\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读蒙田，是为了生活\",\n    \"author\": \"萨拉・贝克韦尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866\",\n    \"category\": \"蒙田\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网上遗产\",\n    \"author\": \"伊莱恩・卡斯凯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493404-9f5bf0?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来呼啸而来\",\n    \"author\": \"彼得・戴曼迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496473-11e887?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生生不息\",\n    \"author\": \"范海涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497664-326a21?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾新十年：移动互联网丛林里的勇敢穿越者（套装共2册）\",\n    \"author\": \"林军/胡喆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497964-c980d4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙通证\",\n    \"author\": \"邢杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499134-ab1e5c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元宇宙\",\n    \"author\": \"赵国栋/易欢欢/徐远重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500148-0863f3?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网口述历史第1辑（全8册）\",\n    \"author\": \"方兴东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503886-a36268?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开挂扩张\",\n    \"author\": \"卢诗翰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511560-66cc54?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密Instagram\",\n    \"author\": \"莎拉・弗莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘网飞\",\n    \"author\": \"马克・伦道夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有思想的世界\",\n    \"author\": \"富兰克林・福尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被看见的力量\",\n    \"author\": \"快手研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001092-9126ac?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裂变增长\",\n    \"author\": \"施襄/杨嘉伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捍卫隐私\",\n    \"author\": \"凯文・米特尼克/罗伯特・瓦摩西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崛起的超级智能\",\n    \"author\": \"刘锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995242-8be920?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后谷歌时代\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业互联网浪潮\",\n    \"author\": \"张学军/王保平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993973-efa42c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链在中国\",\n    \"author\": \"刘兴亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992362-ce1ea4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数据资本时代\",\n    \"author\": \"Viktor Mayer-Schnberger\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优步：算法重新定义工作\",\n    \"author\": \"亚力克斯・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网四大\",\n    \"author\": \"斯科特・加洛韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户画像\",\n    \"author\": \"赵宏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"治愈未来\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑞幸闪电战\",\n    \"author\": \"沈帅波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉新\",\n    \"author\": \"加布里埃尔・温伯格/贾斯汀・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俞军产品方法论\",\n    \"author\": \"俞军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷简史\",\n    \"author\": \"钱纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密腾讯帝国（全6册）\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽：风口上的独角兽\",\n    \"author\": \"陈歆磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑动解锁\",\n    \"author\": \"尼尔・梅塔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奔腾年代：互联网与中国：1995-2018\",\n    \"author\": \"郭万盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040287-28d2ae?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌方法\",\n    \"author\": \"比尔・基尔迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Design Systems\",\n    \"author\": \"Alla Kholmatova\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031929-0301f2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱彼迎传\",\n    \"author\": \"利・加拉格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式成长\",\n    \"author\": \"惠特尼・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首席增长官\",\n    \"author\": \"张溪梦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时空内爆\",\n    \"author\": \"常政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030543-02217e?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户的本质\",\n    \"author\": \"史蒂文・范・贝莱格姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能商业\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大思维：集体智慧如何改变我们的世界\",\n    \"author\": \"周若刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029070-010cf1?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女孩老板\",\n    \"author\": \"索菲亚・阿莫鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"揭秘跨境电商\",\n    \"author\": \"李鹏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028146-739f5b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆发\",\n    \"author\": \"艾伯特-拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027993-9ab187?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"数字战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走近2050\",\n    \"author\": \"集智俱乐部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026955-cae786?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识的边界\",\n    \"author\": \"戴维・温伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026913-097907?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类思维如何与互联网共同进化\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销概论\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益设计（第2版）\",\n    \"author\": \"Jeff Gothelf\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义公司\",\n    \"author\": \"埃里克・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容算法\",\n    \"author\": \"闫泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"算法的陷阱\",\n    \"author\": \"阿里尔・扎拉奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒循环\",\n    \"author\": \"亚当・潘恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷脸背后\",\n    \"author\": \"张重生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷屏\",\n    \"author\": \"凯文・阿洛卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级连接者\",\n    \"author\": \"伊桑・祖克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致产品\",\n    \"author\": \"周鸿祎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022053-f29ab7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众媒时代\",\n    \"author\": \"腾讯传媒研究\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨境电商宝典（套装共2册）\",\n    \"author\": \"孙韬/老魏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021741-39f857?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资源革命\",\n    \"author\": \"斯蒂芬・赫克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷百年史\",\n    \"author\": \"阿伦・拉奥/皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"形式感+\",\n    \"author\": \"晋小彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来2：更为简单高效的远程工作方式\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体营销圣经\",\n    \"author\": \"加里・维纳查克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020331-3d803b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知盈余：自由时间的力量\",\n    \"author\": \"克莱・舍基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020253-b77fad?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一网打尽：贝佐斯与亚马逊时代\",\n    \"author\": \"布拉德・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019773-9e4c6d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营本源\",\n    \"author\": \"金璞/张仲荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019602-d84d7d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业维艰\",\n    \"author\": \"本・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流量池\",\n    \"author\": \"杨飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"热点：引爆内容营销的6个密码\",\n    \"author\": \"马克・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019395-c60176?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Lean Startup\",\n    \"author\": \"Eric Ries\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019344-110690?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Kubernetes实战（套装共2册）\",\n    \"author\": \"吴龙辉等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019200-6c0097?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"计算广告\",\n    \"author\": \"刘鹏/王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是搜索引擎\",\n    \"author\": \"张俊林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019083-618f1a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全栈市场人\",\n    \"author\": \"Lydia\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一键下单：杰夫·贝佐斯与亚马逊的崛起\",\n    \"author\": \"理查德・勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴正传\",\n    \"author\": \"方兴东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁金服：从支付宝到新金融生态圈\",\n    \"author\": \"廉薇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017802-c45526?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与感\",\n    \"author\": \"黎万强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网下半场\",\n    \"author\": \"李光斗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017361-0a5786?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说区块链\",\n    \"author\": \"徐明星/田颖/李霁月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017304-a06e53?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：如何低成本实现爆发式成长\",\n    \"author\": \"Sean Ellis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社交的本质\",\n    \"author\": \"兰迪・扎克伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尽在双11：阿里巴巴技术演进与超越\",\n    \"author\": \"阿里巴巴双11技术团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技的狂欢\",\n    \"author\": \"安德鲁・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016656-d1cdf6?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小群效应\",\n    \"author\": \"徐志斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你凭什么做好互联网\",\n    \"author\": \"曹政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆用户增长\",\n    \"author\": \"黄天文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016125-7b3129?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用数据讲故事\",\n    \"author\": \"Cole Nussbaumer Knaflic\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016071-ab97a7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解码区块链（套装共6册）\",\n    \"author\": \"田颖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015585-81fda1?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尖叫感\",\n    \"author\": \"马楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产品经理修炼之道\",\n    \"author\": \"费杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014895-353831?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从点子到产品\",\n    \"author\": \"刘飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014775-780161?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光2.0\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结网@改变世界的互联网产品经理（修订版）\",\n    \"author\": \"王坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪潮之巅\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终极算法\",\n    \"author\": \"佩德罗・多明戈斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能革命\",\n    \"author\": \"李彦宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012960-18d4fa?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"降维攻击：未来互联网商业的三体法则\",\n    \"author\": \"高德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012711-3075ba?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻璃笼子\",\n    \"author\": \"尼古拉斯・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解HTTP\",\n    \"author\": \"上野宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微创新\",\n    \"author\": \"德鲁・博迪/雅各布・戈登堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑客与画家\",\n    \"author\": \"保罗・格雷厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012513-5443cb?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的组织：企业持续成长的智慧\",\n    \"author\": \"章永宏/罗旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012483-15e595?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里改变世界：硅谷成功创新之谜\",\n    \"author\": \"黛博拉・佩里・皮肖内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与机器赛跑\",\n    \"author\": \"埃里克・布林约尔松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科技之巅2\",\n    \"author\": \"麻省理工科技评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类2.0：在硅谷探索科技未来\",\n    \"author\": \"皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用户力：需求驱动的产品、运营和商业模式\",\n    \"author\": \"郝志中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大数据时代\",\n    \"author\": \"维克托・迈尔・舍恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010281-c20367?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始做运营进阶篇\",\n    \"author\": \"张亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010224-4cbecb?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维独孤九剑\",\n    \"author\": \"赵大伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾\",\n    \"author\": \"尼尔・埃亚尔/瑞安・胡佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级IP：互联网新物种方法论\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从零开始做运营入门篇\",\n    \"author\": \"张亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009843-bcf808?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛点：挖掘小数据满足用户需求\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十亿美金的教训\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚂蚁金服\",\n    \"author\": \"由曦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008874-46e181?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"区块链\",\n    \"author\": \"长铗/韩锋等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风口上的猪：一本书看懂互联网金融\",\n    \"author\": \"肖璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必然\",\n    \"author\": \"凯文・凯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腾讯传1998-2016\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里传：这是阿里巴巴的世界\",\n    \"author\": \"波特・埃里斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨越鸿沟：颠覆性产品营销圣经\",\n    \"author\": \"杰弗里・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郎咸平说：新经济颠覆了什么\",\n    \"author\": \"郎咸平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007194-87eec7?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信息简史\",\n    \"author\": \"詹姆斯·格雷克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯传：让你的产品、思想、行为像病毒一样入侵\",\n    \"author\": \"乔纳・伯杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业 : 新创企业的成长思维\",\n    \"author\": \"埃里克・莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台战略\",\n    \"author\": \"陈威如/余卓轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维：商业颠覆与重构\",\n    \"author\": \"陈光锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业时，我们在知乎聊什么？\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周鸿祎自述：我的互联网方法论\",\n    \"author\": \"周鸿祎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网新商业时代（套装共三册）\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米内幕\",\n    \"author\": \"吴帝聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：创业公司的用户与收入增长秘籍\",\n    \"author\": \"范冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004839-80eb34?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沸腾十五年\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866\",\n    \"category\": \"互联网\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶经 续茶经（全本全注全译）\",\n    \"author\": \"杜斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶学与茶科学\",\n    \"author\": \"叶士敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512316-d78971?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶战争（修订版）\",\n    \"author\": \"周重林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶与茶器\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶大盗\",\n    \"author\": \"萨拉・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶的国度\",\n    \"author\": \"戎新宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033186-d7f53e?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿色黄金：茶叶帝国\",\n    \"author\": \"艾伦・麦克法兰/艾丽斯・麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大观茶论\",\n    \"author\": \"日月洲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027285-051ff1?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中14·中国茶的基本\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶席窥美\",\n    \"author\": \"静清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021102-dfafb9?p=8866\",\n    \"category\": \"茶\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识社会中的大学\",\n    \"author\": \"杰勒德・德兰迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004371-45c9cb?p=8866\",\n    \"category\": \"大学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大学的精神\",\n    \"author\": \"蒲实/陈赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026901-285fb4?p=8866\",\n    \"category\": \"大学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃货心理学\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043953-b41fb5?p=8866\",\n    \"category\": \"吃货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼飨宴\",\n    \"author\": \"闻佳/艾格吃饱了\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866\",\n    \"category\": \"吃货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒的边缘（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008637-b35210?p=8866\",\n    \"category\": \"世纪三部曲\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行走的柠檬\",\n    \"author\": \"海伦娜・阿特利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃和远方\",\n    \"author\": \"程磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509802-3be4da?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾小吃全书\",\n    \"author\": \"焦桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肉料理原来是这么回事儿\",\n    \"author\": \"亚瑟・勒凯恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饮食生活新提案系列（套装共5册）\",\n    \"author\": \"特里斯坦・西卡尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993028-2b5773?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日53：好吃不过拉面\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990262-052cee?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄小厨的春夏秋冬\",\n    \"author\": \"黄磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家肴\",\n    \"author\": \"唐颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"厨艺的常识\",\n    \"author\": \"迈克尔・鲁尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅舍谈吃\",\n    \"author\": \"梁实秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044742-1db99f?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖23：好久没去野餐了！\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044721-dfba86?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖24：啊！又想吃零食了\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖20：面的奥义\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044301-244117?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖21：酒的全事典\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃货心理学\",\n    \"author\": \"金圣荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043953-b41fb5?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖19：下午茶时间到\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖17：蔬菜多好吃啊\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖18：真的，烤箱什么都能做\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖15：便当灵感集\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖16：大满足！就爱锅料理\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖13：腐的品格\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖14：小聚会教科书\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖10：早餐，真的太重要了\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖11：美食漫画万岁\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖12：厨房，治愈人生的避难所\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖08：自给自足指南书\",\n    \"author\": \"林江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖09：了不起的面包\",\n    \"author\": \"林江编者\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042822-a3f181?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖04：肉!肉!肉!\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖05：全宇宙都在吃甜品\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖07：大丈夫生于厨房\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"食帖03：食鲜最高\",\n    \"author\": \"林江主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孤独的泡面\",\n    \"author\": \"食帖番组主编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040059-b9c317?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐桌是我的调色盘\",\n    \"author\": \"夏威夷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034944-4e1c17?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"粗糙食堂\",\n    \"author\": \"莲小兔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼飨宴\",\n    \"author\": \"闻佳/艾格吃饱了\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风味人间\",\n    \"author\": \"陈晓卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030402-372ed3?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有风吹过厨房\",\n    \"author\": \"食家饭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025518-067637?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日19：料理之魂\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022488-fcb817?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至味在人间\",\n    \"author\": \"陈晓卿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019104-e77006?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把这瓶开了！\",\n    \"author\": \"玛德琳・帕克特/贾斯汀琳・海默克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一把盐下饭菜\",\n    \"author\": \"左壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014430-7b97d6?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吃的美德：餐桌上的哲学思考\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013992-1e7670?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖食：质朴的味道，家的味道\",\n    \"author\": \"蔡澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866\",\n    \"category\": \"美食\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸟道：周梦蝶世纪诗选\",\n    \"author\": \"周梦蝶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003564-b99874?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桂花\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"词境浅说\",\n    \"author\": \"俞陛云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996517-e39145?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"啸天说诗（全6册）\",\n    \"author\": \"周啸天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987703-41f27c?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沈从文诗集\",\n    \"author\": \"沈从文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂的奥兰多\",\n    \"author\": \"卢多维科・阿里奥斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象：劳伦斯诗集\",\n    \"author\": \"劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生如夏花（作家榜经典文库）\",\n    \"author\": \"拉宾德拉纳特・泰戈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜空总有最大密度的蓝色\",\n    \"author\": \"最果夕日\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030162-20452d?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的孤独是一座花园\",\n    \"author\": \"阿多尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007998-862b6d?p=8866\",\n    \"category\": \"诗集\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命的年代：1789～1848\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866\",\n    \"category\": \"年代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的年代：1875～1914\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866\",\n    \"category\": \"年代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端的年代：1914～1991\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006918-d93fd3?p=8866\",\n    \"category\": \"年代\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中高净值人群财富管理的顶层设计（全5册）\",\n    \"author\": \"李升等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491427-50aa01?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（原书第3版）（典藏版）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492738-ab0390?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要钱还是要生活\",\n    \"author\": \"维姬・罗宾/乔・多明格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493644-fd98ee?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇妙的盘算社团\",\n    \"author\": \"高井浩章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493755-6d2ec3?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资攻略\",\n    \"author\": \"翁量\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱的属性\",\n    \"author\": \"金胜镐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500652-0252d7?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖鲁法则：成长股投资要义\",\n    \"author\": \"吉姆・斯莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高净值人士投资指南\",\n    \"author\": \"潘添礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510582-618a3b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们终将变富\",\n    \"author\": \"兰启昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有钱人和你想的不一样\",\n    \"author\": \"哈维・艾克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512172-8e2586?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"躺着赚钱的漫画基金书\",\n    \"author\": \"三折人生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513702-f21c11?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典技术分析（原书第3版）（上）\",\n    \"author\": \"小查尔斯·D. 柯克帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稳赚：提升理财收益的投资工具\",\n    \"author\": \"李红萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常赢投资系列（套装共5册）\",\n    \"author\": \"帕特・多尔西等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格雷厄姆经典投资策略\",\n    \"author\": \"珍妮特・洛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炒掉你的股票分析师（原书第2版）\",\n    \"author\": \"哈里・多马什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003948-063db9?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资至简\",\n    \"author\": \"静逸投资\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003885-267ca3?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"徐远的投资课\",\n    \"author\": \"徐远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理财就是理生活：6个受益一生的财富思维\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001803-f962c9?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"&#8216;犹&#8217;钱的思维\",\n    \"author\": \"蓝龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000435-849e35?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值\",\n    \"author\": \"张磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像有钱人一样思考\",\n    \"author\": \"本田健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996430-594e7e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资21戒\",\n    \"author\": \"本・斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数定投实现财务自由\",\n    \"author\": \"姬建东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可撼动的财务自由\",\n    \"author\": \"托尼・罗宾斯/彼得・默劳克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴比伦富翁新解\",\n    \"author\": \"乔治・克拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财报背后的投资机会\",\n    \"author\": \"蒋豹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大钱细思\",\n    \"author\": \"乔尔・蒂林哈斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资从入门到精通\",\n    \"author\": \"老罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家庭财富保卫攻略\",\n    \"author\": \"王昊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保险自选手册\",\n    \"author\": \"许春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"买房可以很简单\",\n    \"author\": \"子安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"投资的常识\",\n    \"author\": \"布拉德福德・康纳尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让时间陪你慢慢变富\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984862-b62e79?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢：有钱人和你想的不一样\",\n    \"author\": \"塞缪尔・斯迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富人的逻辑\",\n    \"author\": \"雷纳・齐特尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特的护城河（新版）\",\n    \"author\": \"帕特・多尔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大额保单操作实务\",\n    \"author\": \"曾祥霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049410-6a8850?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大熊市启示录（原书第4版）\",\n    \"author\": \"拉塞尔・纳皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给投资新手的极简股票课\",\n    \"author\": \"lip师兄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么中国人勤劳而不富有（新版）\",\n    \"author\": \"陈志武\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该买保险\",\n    \"author\": \"刘彦斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044769-0ccba8?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人缺什么\",\n    \"author\": \"古古\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书读懂黄金白银投资理财\",\n    \"author\": \"李若问\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"股票投资入门与实战技巧\",\n    \"author\": \"王坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特与索罗斯的投资习惯（纪念版）\",\n    \"author\": \"马克・泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独立，从财富开始\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在苍茫中传灯\",\n    \"author\": \"姚斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫步华尔街（原书第11版）\",\n    \"author\": \"伯顿G.马尔基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定投十年财务自由\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪球投资\",\n    \"author\": \"林起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低风险，高回报\",\n    \"author\": \"皮姆・万・弗利特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041322-fd0d46?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本炒股书\",\n    \"author\": \"杨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集中投资\",\n    \"author\": \"艾伦・卡尔普・波尼洛等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财（典藏版）\",\n    \"author\": \"彼得・林奇/约翰・罗瑟查尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向格雷厄姆学思考，向巴菲特学投资\",\n    \"author\": \"劳伦斯・坎宁安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富自由\",\n    \"author\": \"托马斯・斯坦利/萨拉斯坦利・弗洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7分钟理财\",\n    \"author\": \"罗元裳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034965-f28528?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理财就是理生活\",\n    \"author\": \"艾玛・沈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034665-bb12ef?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活用理财金三角\",\n    \"author\": \"方士维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033393-0eaf41?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢慢变富\",\n    \"author\": \"张居营\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033147-38eae6?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画理财课\",\n    \"author\": \"八宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"韭菜的自我修养（增订版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好赚钱\",\n    \"author\": \"简七\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030909-335fc1?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穷人穷口袋，富人富脑袋\",\n    \"author\": \"曾驿翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远离迷茫，从学会赚钱开始\",\n    \"author\": \"曾鹏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You Are a Badass at Making Money\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅱ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027984-a043c5?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅲ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30岁前的每一天\",\n    \"author\": \"水湄物语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027846-1a01dd?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赚钱的逻辑\",\n    \"author\": \"钱伯鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027744-0af2ee?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效管理\",\n    \"author\": \"乔纳森・莱蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的第一本保险指南\",\n    \"author\": \"槽叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小乌龟投资智慧2\",\n    \"author\": \"伍治坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特之道（学习篇）\",\n    \"author\": \"罗伯特・哈格斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱：7步创造终身收入\",\n    \"author\": \"托尼・罗宾斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019368-76a1cb?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018366-414491?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数基金投资指南\",\n    \"author\": \"银行螺丝钉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手把手教你读财报2\",\n    \"author\": \"唐朝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30年后，你拿什么养活自己？\",\n    \"author\": \"高得诚/郑成镇/崔秉熙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017421-191d50?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30年后，你拿什么养活自己？2\",\n    \"author\": \"高得诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017409-fba58b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融的解释\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工作前5年，决定你一生的财富\",\n    \"author\": \"三公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014817-68b046?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特传（纪念版）\",\n    \"author\": \"罗杰・洛温斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小花的投资魔法书\",\n    \"author\": \"小花小花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010716-f4a679?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱的爸爸教你实现财务自由\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010704-c5de17?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红楼梦教你的10堂理财课\",\n    \"author\": \"朱国凤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007884-57754e?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非富不可：曹仁超给年轻人的投资忠告\",\n    \"author\": \"曹仁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱有术\",\n    \"author\": \"知乎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最需要的理财常识书\",\n    \"author\": \"王华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百箭穿杨\",\n    \"author\": \"小小辛巴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗钱钱（套装全2册）\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸穷爸爸\",\n    \"author\": \"罗伯特.T.清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的雪球\",\n    \"author\": \"吕波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彼得·林奇教你理财\",\n    \"author\": \"彼得・林奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866\",\n    \"category\": \"理财\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰盛人生：安利创始人理查・狄维士自传\",\n    \"author\": \"理查・狄维士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866\",\n    \"category\": \"直销\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哆啦A梦珍藏版（第一部：卷1-卷6）\",\n    \"author\": \"藤子·F·不二雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿野仙踪全集（全14册）\",\n    \"author\": \"莱曼・弗兰克・鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031788-1a3b36?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界（套装共6册）\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018381-23efd5?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的第一本趣味数理化书（套装共三册）\",\n    \"author\": \"韩垒/田梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗尔德·达尔作品典藏（共13册）\",\n    \"author\": \"罗尔德・达尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾徳哲学启蒙少儿书系（套装6册）\",\n    \"author\": \"乔斯坦・贾德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009585-93bc28?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小王子\",\n    \"author\": \"安托万・德・圣埃克苏佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007098-6d08d6?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理日记（套装1-9册）\",\n    \"author\": \"西西弗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866\",\n    \"category\": \"少儿\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一只猫的存在主义思考\",\n    \"author\": \"卡尔・史蒂文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年纪轻轻，就有猫了\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000237-49e09f?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吸猫指南\",\n    \"author\": \"六井冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040377-276a7e?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫的秘密\",\n    \"author\": \"约翰・布拉德肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是猫（果麦经典）\",\n    \"author\": \"夏目漱石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035736-5f5e5a?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而为猫挺好的\",\n    \"author\": \"猫小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就喜欢你看不惯我又干不掉我的样子\",\n    \"author\": \"白茶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"今天也吸收了猫能量\",\n    \"author\": \"卵山玉子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类“吸猫”小史\",\n    \"author\": \"艾比盖尔・塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027183-6dbd40?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日05：猫\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025503-b1233d?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫咪家庭医学大百科\",\n    \"author\": \"林政毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025086-d9896b?p=8866\",\n    \"category\": \"猫\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不要和你妈争辩\",\n    \"author\": \"弗雷德里克・巴克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父母的语言\",\n    \"author\": \"达娜・萨斯金德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给父母的未来之书\",\n    \"author\": \"童行学院教研团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一流的教养\",\n    \"author\": \"杰瑞米・克拉克/乔若莎・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025281-72dc34?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼老大，天使老二\",\n    \"author\": \"诸葛越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017640-9ed028?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不成熟的父母\",\n    \"author\": \"琳赛・吉布森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015978-19b735?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"P.E.T.父母效能训练\",\n    \"author\": \"托马斯・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西尔斯育儿经\",\n    \"author\": \"西尔斯夫妇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866\",\n    \"category\": \"亲子\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和毕加索一起淋浴\",\n    \"author\": \"克里斯蒂安・斯塔迪尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866\",\n    \"category\": \"想象力\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书直解\",\n    \"author\": \"张居正整理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017934-78ec02?p=8866\",\n    \"category\": \"四书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四书讲义（中华国学文库）\",\n    \"author\": \"吕留良撰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012750-bf36f4?p=8866\",\n    \"category\": \"四书\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史（贝克知识丛书）\",\n    \"author\": \"克劳斯・布林格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051513-17a241?p=8866\",\n    \"category\": \"罗马史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当死亡化作生命\",\n    \"author\": \"书亚・梅兹里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命进化的跃升\",\n    \"author\": \"尼克・莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级潜能\",\n    \"author\": \"亚当・皮奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一推动丛书·生命系列（套装共5册）\",\n    \"author\": \"伦道夫·M. 尼斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035862-20c392?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好告别\",\n    \"author\": \"凯特琳・道蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡的故事\",\n    \"author\": \"大卫・伊格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032478-145139?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命之轮\",\n    \"author\": \"伊丽莎白・库伯勒-罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无比美妙的痛苦\",\n    \"author\": \"约翰・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023421-afac0a?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生存本能正在杀死你（修订版）\",\n    \"author\": \"马克・舍恩/克里斯汀・洛贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的法则\",\n    \"author\": \"肖恩·B·卡罗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光倒流的女孩\",\n    \"author\": \"加・泽文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021435-850156?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命的未来\",\n    \"author\": \"爱德华・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020727-193b46?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接组：造就独一无二的你\",\n    \"author\": \"承现峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命：进化生物学、遗传学、人类学和环境科学的黎明\",\n    \"author\": \"约翰・布罗克曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Tuesdays with Morrie\",\n    \"author\": \"Mitch Albom\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012087-f9ff16?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命是什么\",\n    \"author\": \"王立铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866\",\n    \"category\": \"生命\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠、虱子和历史\",\n    \"author\": \"汉斯・辛瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866\",\n    \"category\": \"生物学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的遗传学\",\n    \"author\": \"伯顿・格特曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866\",\n    \"category\": \"生物学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么需要生物学思维\",\n    \"author\": \"塞缪尔・阿贝斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866\",\n    \"category\": \"生物学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"病毒星球\",\n    \"author\": \"卡尔・齐默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866\",\n    \"category\": \"生物学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血疫：埃博拉的故事\",\n    \"author\": \"理查德・普雷斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866\",\n    \"category\": \"埃博拉\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维与陷阱\",\n    \"author\": \"史蒂夫・卡斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866\",\n    \"category\": \"安全\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无处可藏\",\n    \"author\": \"格伦・格林沃尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866\",\n    \"category\": \"安全\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Web安全之深度学习实战\",\n    \"author\": \"刘焱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027117-20aa4a?p=8866\",\n    \"category\": \"安全\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么需要生物学思维\",\n    \"author\": \"塞缪尔・阿贝斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866\",\n    \"category\": \"复杂性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经密码大全集（套装共5册）\",\n    \"author\": \"阿菩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006714-464296?p=8866\",\n    \"category\": \"远古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青铜时代：五百年的大局观（套装共5册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866\",\n    \"category\": \"远古\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智商税\",\n    \"author\": \"高德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513330-2251ee?p=8866\",\n    \"category\": \"智商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑开发指南（全3册）\",\n    \"author\": \"丹・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008388-ce451a?p=8866\",\n    \"category\": \"智商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新序（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866\",\n    \"category\": \"古文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样学习文言文\",\n    \"author\": \"张中行著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866\",\n    \"category\": \"古文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"念楼学短\",\n    \"author\": \"锺叔河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866\",\n    \"category\": \"古文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年文言\",\n    \"author\": \"陳永正/徐晉如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027861-286c94?p=8866\",\n    \"category\": \"古文\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本书看透信贷\",\n    \"author\": \"何华平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866\",\n    \"category\": \"信贷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信贷的逻辑与常识\",\n    \"author\": \"刘元庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866\",\n    \"category\": \"信贷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室困游鱼\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032955-deb293?p=8866\",\n    \"category\": \"电竞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蜜汁炖鱿鱼\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032229-530e18?p=8866\",\n    \"category\": \"电竞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞生态\",\n    \"author\": \"王萌/路江涌/李晓峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866\",\n    \"category\": \"电竞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电竞经济\",\n    \"author\": \"蔡湫雨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029121-564941?p=8866\",\n    \"category\": \"电竞\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗斯玛丽：肯尼迪家族隐藏的女儿\",\n    \"author\": \"凯特・克里福・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024627-9a0631?p=8866\",\n    \"category\": \"肯尼迪\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：个人、组织如何与风险共舞\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长期主义\",\n    \"author\": \"高德威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"福格行为模型\",\n    \"author\": \"B.J.福格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499539-38be34?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样行动\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的组织都是圆的\",\n    \"author\": \"戴维・珀金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500100-7e145d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马尔科姆·格拉德威尔系列（套装共6册）\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间管理\",\n    \"author\": \"吉姆・兰德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500340-640c65?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样解决问题\",\n    \"author\": \"伯纳德・加雷特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500307-6d78d2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力：全新升级版\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鹿智者的法则\",\n    \"author\": \"丹・米尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"噪声：人类判断的缺陷\",\n    \"author\": \"丹尼尔・卡尼曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊编年史\",\n    \"author\": \"宁向东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯致股东的信\",\n    \"author\": \"史蒂夫・安德森/卡伦・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502302-565477?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是你啊\",\n    \"author\": \"皮埃尔・佩利西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理敏感\",\n    \"author\": \"全弘镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508092-cbb0a1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为战略财务讲义\",\n    \"author\": \"何绍茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509100-205637?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成就\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509649-bb9c5c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光环效应\",\n    \"author\": \"罗森维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509661-105edd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高级零工\",\n    \"author\": \"村上敦伺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509853-10fa45?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡&#038;波士顿解决问题方法和创造价值技巧\",\n    \"author\": \"名和高司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509916-d4a822?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来3\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森（\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁军团队\",\n    \"author\": \"欧德张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510093-23e3eb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打胜仗系列三部曲\",\n    \"author\": \"布赖斯・霍夫曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510114-f256af?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大头侃人：任正非\",\n    \"author\": \"于立坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬核晋升\",\n    \"author\": \"朱莉・卓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极度成功\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510375-05242f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里人的答案书\",\n    \"author\": \"阿里巴巴组织文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510804-a5e3a8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1打造个人品牌\",\n    \"author\": \"王一九\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反惰性\",\n    \"author\": \"加布里埃尔・厄廷根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511077-b1ee53?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能学习的未来\",\n    \"author\": \"罗斯玛丽・卢金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511113-9bb24f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本质：贝佐斯的商业逻辑与领导力法则\",\n    \"author\": \"海伦娜・亨特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511119-ae55f7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共创对话\",\n    \"author\": \"林小桢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511161-a37ad3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售经理的22条军规\",\n    \"author\": \"仲崇玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511158-7a7bd5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗理性：如何掌控情绪\",\n    \"author\": \"卫蓝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511197-369a4f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海星式组织\",\n    \"author\": \"奥瑞・布莱福曼/罗德・贝克斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学危机管理课\",\n    \"author\": \"伦纳德・马库斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511461-c57e66?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快速成交\",\n    \"author\": \"俞赛前\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511488-43d314?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本企业家精选（全5册）\",\n    \"author\": \"一条和生等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511533-b724b2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"畅所欲言\",\n    \"author\": \"道格・克兰德尔/马特・金卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511779-c8282c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆商2\",\n    \"author\": \"保罗·G.史托兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511989-b7bf29?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最简单的图形与最复杂的信息\",\n    \"author\": \"黄慧敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512553-185e6e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售冠军是如何炼成的\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512427-0c8976?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识炼金术\",\n    \"author\": \"邱昭良/王谋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512442-a712f3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远见：一本故事丰富的决策行为指南\",\n    \"author\": \"史蒂文・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力变现\",\n    \"author\": \"徐悦佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱因斯坦的老板\",\n    \"author\": \"罗伯特・赫罗马斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513645-5a5886?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现你的管理优势\",\n    \"author\": \"伊查克・爱迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004686-da59f3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰田传\",\n    \"author\": \"野地秩嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004668-341a2c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工匠哲学\",\n    \"author\": \"马修・克劳福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004671-7199ef?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从偶然到必然\",\n    \"author\": \"夏忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"得粉丝者得天下\",\n    \"author\": \"佐伊・弗拉德・布拉纳等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004536-baa43e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产品思维\",\n    \"author\": \"张印帅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004566-20c559?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不拘一格\",\n    \"author\": \"里德・哈斯廷斯/艾琳・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富管理与传承\",\n    \"author\": \"云大慧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004485-01b160?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"责任病毒\",\n    \"author\": \"罗杰・马丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转机\",\n    \"author\": \"萨拉・罗布・奥黑根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗辑思维（全5册）\",\n    \"author\": \"罗振宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004005-539071?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熵减：华为活力之源\",\n    \"author\": \"华为大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003804-77cb09?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革的力量\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001737-a8b420?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聚焦\",\n    \"author\": \"布兰登・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001644-216a13?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡公众表达课\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡高效工作法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波斯公主选驸马\",\n    \"author\": \"帕维尔・莫托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闭环思维\",\n    \"author\": \"智俊启\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致零售\",\n    \"author\": \"杜凤林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对坦率\",\n    \"author\": \"金・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华方法\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革性创新\",\n    \"author\": \"加里・皮萨诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR使用手册\",\n    \"author\": \"姚琼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999514-59c758?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动教练\",\n    \"author\": \"季益祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999400-98dabd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判2\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的互联网思维\",\n    \"author\": \"伯纳多・A. 胡伯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越寒冬\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998776-90be10?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键的少数\",\n    \"author\": \"乔恩・卡岑巴赫/詹姆斯・托马斯/格雷琴・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997447-983a7c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明智转向\",\n    \"author\": \"奥马尔・阿布什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硬功夫：助你精进的八大硬核技能\",\n    \"author\": \"崔诚靓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾仕强品三国（套装共3册）\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995533-1624d0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业之巅\",\n    \"author\": \"周导\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995260-2128f8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞轮效应\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何达成目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994909-cbcb48?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业实战三部曲\",\n    \"author\": \"唐纳德・米勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创模式\",\n    \"author\": \"段传敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994075-3700fb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响商业的50本书\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一生的旅程\",\n    \"author\": \"罗伯特・艾格/乔尔・洛弗尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的实践\",\n    \"author\": \"野中郁次郎/西原文乃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何启动黄金圈思维\",\n    \"author\": \"西蒙・斯涅克/戴维・米德/彼得・多克尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992221-a4d256?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造知识的方法论\",\n    \"author\": \"野中郁次郎/绀野登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991945-e87f6d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识创造管理\",\n    \"author\": \"野中郁次郎/绀野登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991759-1130f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外卖超级运营术\",\n    \"author\": \"饿了么\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的行动\",\n    \"author\": \"乔舒亚・甘斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只管去做\",\n    \"author\": \"邹小强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991549-e07ddd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刷新品牌\",\n    \"author\": \"高端训\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"允许被说服\",\n    \"author\": \"艾尔・比坦帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做出明智判断的10个方法\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲切的艺术\",\n    \"author\": \"凯莉・威廉斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扛住就是本事\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样沟通最高效\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝佐斯的数字帝国\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌的故事\",\n    \"author\": \"戴维・怀斯/马克・摩西德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斯曼的演讲大师课3\",\n    \"author\": \"杰瑞・魏斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七次转型\",\n    \"author\": \"罗伯特 A. 伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"团队赋能\",\n    \"author\": \"迈克・布伦特/菲奥娜・爱尔莎・丹特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢的答案（尊享版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都有超级领导力\",\n    \"author\": \"金·R·鲍威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水平思考法\",\n    \"author\": \"保罗・斯隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间管理手账\",\n    \"author\": \"徐铁/邱晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986992-73fa61?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的处方\",\n    \"author\": \"伊齐基尔・伊曼纽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实践智慧\",\n    \"author\": \"野中郁次郎/荻野进介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第四次管理革命\",\n    \"author\": \"曹仰锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986344-ff3bf6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是动机控\",\n    \"author\": \"池田贵将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是方法控\",\n    \"author\": \"金武贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诚实的信号\",\n    \"author\": \"阿莱克斯・彭特兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院时间管理课（修订版）\",\n    \"author\": \"穆然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985804-d73c79?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让财报说话\",\n    \"author\": \"郑永强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧②\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2019年中国资产管理行业发展报告\",\n    \"author\": \"巴曙松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985717-d8ba83?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为没有秘密2\",\n    \"author\": \"吴春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985315-80c146?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人力资源管理从新手到总监（全2册）\",\n    \"author\": \"李志勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985228-e6aa30?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售技巧①\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力清单\",\n    \"author\": \"吉恩・凯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（30周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效管理自己（升级版）\",\n    \"author\": \"杜耿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984787-7968f7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自控力（经典套装三册）\",\n    \"author\": \"凯利・麦格尼格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为超级创业英雄\",\n    \"author\": \"提姆・德瑞普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984295-7fd163?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式4.0\",\n    \"author\": \"梁宇亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向诸葛亮借智慧\",\n    \"author\": \"赵玉平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983920-387cfd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异议的力量\",\n    \"author\": \"查兰・奈米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何给别人留下好印象\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向上管理\",\n    \"author\": \"蒋巍巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983296-d41f93?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先发制人\",\n    \"author\": \"布伦特・格里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983161-cd7422?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职业通道\",\n    \"author\": \"吴静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀到不能被忽视\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何系统思考\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一日之计\",\n    \"author\": \"本杰明・斯帕/迈克尔・赞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：如何打造高联动团队\",\n    \"author\": \"马克・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协同：数字化时代组织效率的本质\",\n    \"author\": \"陈春花/朱丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053076-87dade?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢在上班时\",\n    \"author\": \"高城幸司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无印良品笔记术\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052794-d169d9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重构\",\n    \"author\": \"村西边老王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"组织革新\",\n    \"author\": \"杨国安/戴维・尤里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卓越工作\",\n    \"author\": \"莫滕·T·汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"执行力：10项驱动法则\",\n    \"author\": \"章俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052290-876230?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理如何改变商业模式\",\n    \"author\": \"卡拉・欧戴尔/辛迪・休伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让顾客都成为回头客\",\n    \"author\": \"安部修仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力精进\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样管精力，就怎样过一生\",\n    \"author\": \"奥迪尔・夏布里亚克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的艺术（套装五册）\",\n    \"author\": \"马歇尔・戈德史密斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051558-d5c231?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早起的奇迹\",\n    \"author\": \"哈尔・埃尔罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051405-4773be?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"量化自我\",\n    \"author\": \"吉娜・聂夫/唐恩・娜芙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益转型\",\n    \"author\": \"约翰・涂尚徳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051252-2f48cb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡决断力\",\n    \"author\": \"石井辉美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个人可持续发展精要\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051120-d9b6a3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡入职培训第一课\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为管理哲学\",\n    \"author\": \"蒋朝安/杜俊鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050910-d72194?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精力管理手册\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050901-31d610?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效资产管理（典藏版）\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法（口袋版）\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力48法则\",\n    \"author\": \"罗伯特・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理是个技术活\",\n    \"author\": \"芭芭拉・米切尔/科妮莉亚・甘伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘+（第3版）\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海尔是海：张瑞敏随笔选录\",\n    \"author\": \"张瑞敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判技巧：菜鸟谈判进阶的八大要领\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"营销的本质（珍藏版）\",\n    \"author\": \"包政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底层逻辑\",\n    \"author\": \"张羽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导就是让人追随\",\n    \"author\": \"约翰・科特/霍尔格・拉斯格博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"端到端流程\",\n    \"author\": \"迈克尔・哈默/丽莎・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048249-905292?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商领导力\",\n    \"author\": \"丹尼尔・戈尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047655-a6a7d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英高效阅读法\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身创造力\",\n    \"author\": \"斯科特・科克伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"过程决定成败\",\n    \"author\": \"乔尔・布罗克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046644-6b9c12?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密腾讯帝国（全6册）\",\n    \"author\": \"吴晓波等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"稻盛和夫的人生哲学\",\n    \"author\": \"北康利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不疲惫的精力管理术\",\n    \"author\": \"葛西纪明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046434-95610f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"良性增长\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电式扩张\",\n    \"author\": \"里德 · 霍夫曼/叶嘉新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毫无保留\",\n    \"author\": \"小比尔・马里奥特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045708-dae6d9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售畅销秘籍\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045615-2e3e93?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"保持饥渴\",\n    \"author\": \"Thinkers50\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"30天精读MBA（套装共3册）\",\n    \"author\": \"科林・巴罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简思考\",\n    \"author\": \"迈克・费廖洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轻战略：量子时代的敏捷决策\",\n    \"author\": \"许正\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇才\",\n    \"author\": \"梅利莎・席林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结拖延症的49种方法\",\n    \"author\": \"海韵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略几何学\",\n    \"author\": \"罗伯特・凯德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智能战略\",\n    \"author\": \"曾鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾仕强中国式管理全集（套装书全23册）\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045264-71c053?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞行为学（全5册）\",\n    \"author\": \"丹・艾瑞里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045105-dcaec5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精彩人生的一分钟小习惯\",\n    \"author\": \"冲幸子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健经营哲学系列（套装共3册）\",\n    \"author\": \"张小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傻世界，笨生意\",\n    \"author\": \"何力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044727-92ea3a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容之王\",\n    \"author\": \"迈克尔・巴斯卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044808-3d7309?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效领导力\",\n    \"author\": \"布伦达・本斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044523-e9c7cf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效忍者\",\n    \"author\": \"格雷厄姆・阿尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从雇佣到自由人\",\n    \"author\": \"吕廷杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破之道\",\n    \"author\": \"基思 R. 麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法\",\n    \"author\": \"弗朗西斯科・西里洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复合型领导力\",\n    \"author\": \"埃里克・道格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042846-a27c11?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冲突管理\",\n    \"author\": \"大卫・里德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的逻辑思维\",\n    \"author\": \"高杉尚伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的思考武器\",\n    \"author\": \"安宅和人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边界\",\n    \"author\": \"吉莲・邰蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略推演\",\n    \"author\": \"王昶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042372-78310a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡图表工作法\",\n    \"author\": \"齐藤显一/竹内里子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：天才创造世界\",\n    \"author\": \"水木然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041298-4d7a2c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造时间\",\n    \"author\": \"杰克・纳普/约翰・泽拉茨基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新定位\",\n    \"author\": \"杰克・特劳特/史蒂夫・里夫金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金字塔原理2\",\n    \"author\": \"芭芭拉・明托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040257-8090ee?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破现实的困境\",\n    \"author\": \"克里斯・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售铁军\",\n    \"author\": \"贺学友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西贝的服务员为什么总爱笑\",\n    \"author\": \"贾林男\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The 5 AM Club\",\n    \"author\": \"Robin Sharma\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039192-ead248?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在耶鲁精进\",\n    \"author\": \"王烁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039087-2cce2c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别输在不懂管理上\",\n    \"author\": \"冯为中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039018-f17707?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王道的经营（套装共6册）\",\n    \"author\": \"施振荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意会时刻\",\n    \"author\": \"克里斯琴・马兹比尔格/米凯尔・拉斯马森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的国度\",\n    \"author\": \"詹姆斯・布雷丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从颠覆到创新\",\n    \"author\": \"长江商学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何结交比你更优秀的人\",\n    \"author\": \"康妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败课\",\n    \"author\": \"周磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"A4纸上看人生\",\n    \"author\": \"刘建梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌22律\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为管理变革\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036516-884b3b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的方法\",\n    \"author\": \"泰勒・本-沙哈尔/安格斯・里奇韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035478-d1cadf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"销售圣经\",\n    \"author\": \"杰弗里・吉特黙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Everything Is F*cked\",\n    \"author\": \"Mark Manson\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21世纪的管理挑战\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论大战略\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"声誉为王\",\n    \"author\": \"马丁・纽曼/克里斯・福克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034992-7b36f4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"职场第一课（套装共5册）\",\n    \"author\": \"速溶综合研究所\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周工作4小时（修订版）\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰度决策\",\n    \"author\": \"小约瑟夫・巴达拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控习惯\",\n    \"author\": \"詹姆斯・克利尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大脑减压的子弹笔记术\",\n    \"author\": \"电脑玩物站长\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（25周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034338-0f9f3b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的第八个习惯\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米巴经营\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034248-76ecaf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌方法\",\n    \"author\": \"比尔・基尔迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"转变：应对复杂新世界的思维方式\",\n    \"author\": \"弗雷德蒙德・马利克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何创建天才团队\",\n    \"author\": \"里奇・卡尔加德/迈克尔・马隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为方法论\",\n    \"author\": \"周锡冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033705-5ef0ea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的任务\",\n    \"author\": \"克莱顿・克里斯坦森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的路径\",\n    \"author\": \"斯蒂芬・温克尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间看得见\",\n    \"author\": \"王潇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033381-62fcdf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义系列（共四册）\",\n    \"author\": \"埃里克・施密特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出版人\",\n    \"author\": \"艾伦・布里克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"12个工作的基本\",\n    \"author\": \"大久保幸夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计大师的商业课\",\n    \"author\": \"戴维・舍温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生存\",\n    \"author\": \"李凯旋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032421-4c536f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新规则\",\n    \"author\": \"约翰·P.科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"优秀的人都是提问高手\",\n    \"author\": \"樱井弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032184-64c791?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精进2：解锁万物的心智进化法\",\n    \"author\": \"采铜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级符号原理\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031524-1a7a6c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绩效使能：超越OKR\",\n    \"author\": \"况阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·实践篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031224-5ab3aa?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力陷阱\",\n    \"author\": \"埃米尼亚・伊贝拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售的本质\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·变革篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030801-7b000d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼·心灵篇\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030789-52e5c2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横向领导力\",\n    \"author\": \"罗杰・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成事\",\n    \"author\": \"冯唐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力思维\",\n    \"author\": \"珍妮弗・加维・伯格/基斯・约翰斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷蓝图\",\n    \"author\": \"雅各・范德库伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远离迷茫，从学会赚钱开始\",\n    \"author\": \"曾鹏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二曲线：跨越“S型曲线”的二次增长\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天最重要的2小时\",\n    \"author\": \"乔西・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：企业数字化生存指南\",\n    \"author\": \"尤尔根・梅菲特/沙莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非传\",\n    \"author\": \"孙力科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中层领导力（共三册）\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不懂员工激励，如何做管理\",\n    \"author\": \"肖祥银\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030405-968764?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理\",\n    \"author\": \"尼克・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030318-1dd6c3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企业生命周期\",\n    \"author\": \"伊查克・爱迪思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五项修炼（套装共5册）\",\n    \"author\": \"彼得・圣吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030288-17bf8f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米哲学\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030237-138f5e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维精进\",\n    \"author\": \"赵帅/王姗姗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030216-90e1ab?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商管理者的6个习惯\",\n    \"author\": \"斯蒂芬E.科恩/文森特D.奥康奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030129-4ea76b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清醒：如何用价值观创造价值\",\n    \"author\": \"弗雷德・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Trillion Dollar Coach\",\n    \"author\": \"Eric Schmidt\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029766-d3bd25?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使命必达：百分之百实现目标的行为科学管理法\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度成长\",\n    \"author\": \"亚力山德拉・卡弗拉科斯/凯瑟琳・明斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜出：非掠夺社交智慧与共享式领导力\",\n    \"author\": \"琳达・科汗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029514-754530?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敢创之旅：科勒百年传奇\",\n    \"author\": \"《敢创之旅》编写组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029376-1a0ae7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本质\",\n    \"author\": \"正和岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029286-80bcf0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从困境走向成功\",\n    \"author\": \"Pepe Nummi\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029271-694df0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You are a Badass\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你只是看起来很专注\",\n    \"author\": \"张笑恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"任正非商业的逻辑\",\n    \"author\": \"申辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029109-348519?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全脑优势（第二版）\",\n    \"author\": \"奈德・赫曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大思维：集体智慧如何改变我们的世界\",\n    \"author\": \"周若刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029070-010cf1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何管好自己（第五版）\",\n    \"author\": \"约翰・康特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆向创新\",\n    \"author\": \"亚当・摩根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028677-7e2d5f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全数字化赋能\",\n    \"author\": \"迈克尔・韦德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028410-d6d08c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来，相信而看见\",\n    \"author\": \"星野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028395-7e1c0c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激情创业\",\n    \"author\": \"于刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是OKR\",\n    \"author\": \"约翰・杜尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028263-0178b7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解密无印良品\",\n    \"author\": \"松井忠三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028110-182231?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极度效率\",\n    \"author\": \"阿米特・奥菲尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028083-8ae1ff?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"适应性创新\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027912-c374f8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界精英的带人术\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027900-f1558d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财务自由之路Ⅲ\",\n    \"author\": \"博多・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里铁军销售课\",\n    \"author\": \"李立恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效管理\",\n    \"author\": \"乔纳森・莱蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿米巴核能\",\n    \"author\": \"胡八一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027267-f8932f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让好脾气害了你\",\n    \"author\": \"周维丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027069-8b1e00?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆境成长：坚韧人格养成手册\",\n    \"author\": \"小乔治·S.埃弗利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健\",\n    \"author\": \"先燕云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026892-ff2ed7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左脑思考，右脑执行\",\n    \"author\": \"罗森维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026472-343411?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全面预算管理\",\n    \"author\": \"温兆文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026223-5a4fd2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圈层效应\",\n    \"author\": \"托马斯・科洛波洛斯/丹・克尔德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025653-5dccf9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见\",\n    \"author\": \"赵昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025662-874d05?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社群营销实战手册\",\n    \"author\": \"秋叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触点管理\",\n    \"author\": \"安妮·M·许勒尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025596-850ca8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何把产品打造成有生命的品牌\",\n    \"author\": \"叶明桂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从极简到极致\",\n    \"author\": \"赵晓璃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025524-050d17?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"供应链管理\",\n    \"author\": \"刘宝红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024912-2e274f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"变革的基因\",\n    \"author\": \"杨国安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024687-a63a0b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"做自己人生的CEO\",\n    \"author\": \"崔璀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"常青：如何持久吸引客户\",\n    \"author\": \"诺亚・弗雷明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走红：如何打造个人品牌\",\n    \"author\": \"杰瑞米・戈德曼/阿里・扎格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义团队\",\n    \"author\": \"拉斯洛・博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义公司\",\n    \"author\": \"埃里克・施密特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅沟通力系列合集\",\n    \"author\": \"马丁・曼瑟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024171-e3e647?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑工作法\",\n    \"author\": \"西村克己\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我每天只工作3小时\",\n    \"author\": \"押井守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024051-5c3359?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"要事第一\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024057-5976ea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奈飞文化手册\",\n    \"author\": \"帕蒂・麦考德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛决策课\",\n    \"author\": \"迈克尔・罗伯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024012-dc6cf8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"底特律往事\",\n    \"author\": \"比尔・弗拉斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的秘密\",\n    \"author\": \"查尔斯・都希格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识商业\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级激励者\",\n    \"author\": \"西蒙・斯涅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感召力\",\n    \"author\": \"西蒙・兰卡斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赢（纪念版）\",\n    \"author\": \"杰克・韦尔奇/苏茜・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谷歌创业帮\",\n    \"author\": \"王丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新法则：名企破局秘笈\",\n    \"author\": \"理查德・科克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的生存本能正在杀死你（修订版）\",\n    \"author\": \"马克・舍恩/克里斯汀・洛贝格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七堂思维成长课\",\n    \"author\": \"卡罗琳・韦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022566-3c90d6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是时间控\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"选择的悖论\",\n    \"author\": \"巴里・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：从思维到行动\",\n    \"author\": \"刘学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为有效学习的高手\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：7个改变个人、团队和组织的教练技巧\",\n    \"author\": \"迈克尔・K.辛普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"释放潜能：平台型组织的进化路线图\",\n    \"author\": \"穆胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让问题到你为止\",\n    \"author\": \"博恩・崔西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效PDCA工作术\",\n    \"author\": \"富田和成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021882-8ccafc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控：开启不疲惫、不焦虑的人生\",\n    \"author\": \"张展晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021903-0cf2b0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"延展：释放有限资源的无限潜能\",\n    \"author\": \"斯科特・索南沙因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒思考：像麦肯锡精英一样思考\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021822-d42b59?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六顶思考帽：如何简单而高效的思考\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时机管理：完美时机的隐秘模式\",\n    \"author\": \"丹尼尔・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见未来商业（套装共4册）\",\n    \"author\": \"威廉・尼克尔斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生命向前\",\n    \"author\": \"迈克尔・海厄特/丹尼尔・哈卡维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧掉你的商业计划书\",\n    \"author\": \"卡尔·J. 施拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百岁人生：长寿时代的生活和工作\",\n    \"author\": \"琳达・格拉顿/安德鲁・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021330-9ce0b1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零秒工作\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脆弱的力量\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021078-290a71?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"MBA十日读（第四版）\",\n    \"author\": \"史蒂文・西尔比格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时间管理法（套装共3册）\",\n    \"author\": \"爱德华・德博诺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020913-a4f1b5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成长到死\",\n    \"author\": \"布琳・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020892-1a7715?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴与四十大道\",\n    \"author\": \"赵先超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020613-0c1a46?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗压力：逆境重生法则\",\n    \"author\": \"久世浩司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020541-463985?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度案例思考法\",\n    \"author\": \"井上达彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020535-71effc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效整理信息\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来时间使用手册\",\n    \"author\": \"松冈真宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020493-4cfaea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度模仿\",\n    \"author\": \"井上达彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020490-8e6c68?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来2：更为简单高效的远程工作方式\",\n    \"author\": \"贾森・弗里德/戴维・海涅迈尔・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准努力\",\n    \"author\": \"野口真人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非理性的时代\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020283-d423d5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连接：顾客价值时代的营销战略\",\n    \"author\": \"施炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020277-549efc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对自控\",\n    \"author\": \"瑞安・霍利迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020094-358288?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让数字说话：审计，就这么简单\",\n    \"author\": \"孙含晖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全神贯注的方法\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搞定（全三册）\",\n    \"author\": \"戴维・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020034-d97493?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逻辑说服力\",\n    \"author\": \"陈浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020013-f61abe?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影子银行内幕：下一个次贷危机的源头（修订版）\",\n    \"author\": \"张化桥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不存在的人\",\n    \"author\": \"阿尼尔・阿南塔斯瓦米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019830-4d406a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞察：精确观察和有效沟通的艺术\",\n    \"author\": \"艾米・赫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲罢不能：刷屏时代如何摆脱行为上瘾\",\n    \"author\": \"亚当・阿尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡思维\",\n    \"author\": \"洛威茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智力：商业奇迹的底层思维\",\n    \"author\": \"李中莹/舒瀚霆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019779-447881?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"子弹笔记术\",\n    \"author\": \"杉野干人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019761-864774?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当机立断\",\n    \"author\": \"出口治明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业维艰\",\n    \"author\": \"本・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直觉：我们为什么无从推理，却能决策\",\n    \"author\": \"格尔德・吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠创业家\",\n    \"author\": \"金伯莉・帕尔默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流量池\",\n    \"author\": \"杨飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇特的一生\",\n    \"author\": \"格拉宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019428-6d23f0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新简史\",\n    \"author\": \"杨旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平均的终结\",\n    \"author\": \"托德・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019251-a6dba1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让大象飞\",\n    \"author\": \"史蒂文・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女神进化论\",\n    \"author\": \"寺主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019086-4cbd0e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辣道至简：老干妈陶华碧的经营智慧\",\n    \"author\": \"李琦晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019074-0c0d6b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞氏企业：设计未来组织新模式\",\n    \"author\": \"里卡多・塞姆勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019056-a8bb99?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键20小时，快速学会任何技能！\",\n    \"author\": \"乔希・考夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018735-508fa6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个学习忍者\",\n    \"author\": \"格雷厄姆・奥尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018495-810956?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Under New Management\",\n    \"author\": \"David Burkus\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018441-015a18?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至关重要的关系\",\n    \"author\": \"里德・霍夫曼/本・卡斯诺瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018369-4bb227?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理韧性的力量\",\n    \"author\": \"道格・亨施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018291-0b8a09?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为数据分析师\",\n    \"author\": \"托马斯・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018255-12f5c6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里巴巴正传\",\n    \"author\": \"方兴东/刘伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台革命：改变世界的商业模式\",\n    \"author\": \"杰奥夫雷 G. 帕克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萨缪尔森经济学精选套装（第19版共4册）\",\n    \"author\": \"保罗・萨缪尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018045-002052?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七个天才团队的故事\",\n    \"author\": \"沃伦・本尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以客户为中心\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值为纲：华为公司财经管理纲要\",\n    \"author\": \"黄卫伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017811-05f4eb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业36条军规\",\n    \"author\": \"孙陶然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把时间当作朋友（第3版）\",\n    \"author\": \"李笑来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功，动机与目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斜杠青年\",\n    \"author\": \"Susan Kuang\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017703-338a87?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生定位：特劳特教你营销自己\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效学习\",\n    \"author\": \"乌尔里希・伯泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"DISCOVER自我探索（全彩）\",\n    \"author\": \"李海峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017607-237846?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赋能：打造应对不确定性的敏捷团队\",\n    \"author\": \"斯坦利・麦克里斯特尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017535-3f09e7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗火\",\n    \"author\": \"史蒂芬・科特勒/杰米・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017394-61ea85?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增长黑客：如何低成本实现爆发式成长\",\n    \"author\": \"Sean Ellis\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Principles\",\n    \"author\": \"Ray Dalio\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017202-d00a86?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力大师（原书第2版）\",\n    \"author\": \"约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017205-c1655c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的领导力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017184-25e82f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形冠军：未来全球化的先锋\",\n    \"author\": \"赫尔曼・西蒙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017103-ceb233?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2小时品牌素养\",\n    \"author\": \"邓德隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质\",\n    \"author\": \"杰克・韦尔奇/苏西・韦尔奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017043-68bb69?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决断力\",\n    \"author\": \"奇普・希思/丹・希思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HR转型突破\",\n    \"author\": \"康志军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016836-d313c3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李善友颠覆式创新思维系列（共4册）\",\n    \"author\": \"李善友/龚焱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016941-a33728?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从行动开始\",\n    \"author\": \"石田淳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016650-20e429?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一年的8760小时\",\n    \"author\": \"艾力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"餐巾纸系列套装（套装共2本）\",\n    \"author\": \"丹・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016506-d2e8ae?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR工作法\",\n    \"author\": \"克里斯蒂娜・沃特克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR：源于英特尔和谷歌的目标管理利器\",\n    \"author\": \"保罗・尼文/本・拉莫尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"松下幸之助三书（套装共3本）\",\n    \"author\": \"松下幸之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016254-1869c5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你凭什么做好互联网\",\n    \"author\": \"曹政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Fintech：全球金融科技权威指南\",\n    \"author\": \"苏珊娜・奇斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卖故事：实践版\",\n    \"author\": \"高朋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重塑组织\",\n    \"author\": \"弗雷德里克・莱卢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016041-672fb1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容经济\",\n    \"author\": \"谢利明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天学点时间整理术\",\n    \"author\": \"特瑞博・伍兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015936-2a3d9f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人生效率手册\",\n    \"author\": \"张萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015783-caef80?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策的智慧\",\n    \"author\": \"大卫・亨德森/查尔斯・胡珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的工作方法\",\n    \"author\": \"中村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是Excel控\",\n    \"author\": \"熊野整\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015744-ec5cf7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效15法则\",\n    \"author\": \"凯文・克鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015645-a8ae79?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单核工作法图解\",\n    \"author\": \"史蒂夫・诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015606-53a35f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经营战略全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参谋助手论\",\n    \"author\": \"王怀志/郭政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015459-a2ef41?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"靠谱\",\n    \"author\": \"大石哲之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键对话\",\n    \"author\": \"凯瑞・派特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015342-e01712?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键冲突\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015339-b03473?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键责任\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趋势红利\",\n    \"author\": \"刘润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所以，一切都是童年的错吗？\",\n    \"author\": \"KnowYourself主创们\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015294-aa1568?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激活个体\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简工作Ⅰ\",\n    \"author\": \"约根・库尔兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015267-2b86bb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简工作Ⅱ\",\n    \"author\": \"约根・库尔兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015210-742ca7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简化\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"决策与判断\",\n    \"author\": \"斯科特・普劳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"水煮三国（十周年纪念版）\",\n    \"author\": \"成君忆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015078-1ffe74?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"请给我结果\",\n    \"author\": \"姜汝祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015060-25a31d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的常识\",\n    \"author\": \"陈春花\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015057-903f80?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回头客战略\",\n    \"author\": \"谢家华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HR+三支柱\",\n    \"author\": \"彭剑锋/马海刚/西楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014970-7e75ae?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好工作，好好生活\",\n    \"author\": \"克里斯汀・卡特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为没有秘密\",\n    \"author\": \"吴春波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身成长\",\n    \"author\": \"卡罗尔・德韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014808-fa0a34?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好学习\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014799-edd4b9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第七感\",\n    \"author\": \"乔舒亚・库珀・雷默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爆品战略\",\n    \"author\": \"金错刀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公司的概念（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014736-217047?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"威科夫操盘法\",\n    \"author\": \"孟洪涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孵化皮克斯\",\n    \"author\": \"劳伦斯・利维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"运营之光2.0\",\n    \"author\": \"黄有璨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让猴子跳回背上\",\n    \"author\": \"威廉・安肯三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014490-3430ef?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别让无效努力毁了你\",\n    \"author\": \"克里斯・贝利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014442-332e82?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创业就是要细分垄断\",\n    \"author\": \"李开复/汪华/傅盛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样卖龙虾\",\n    \"author\": \"比尔・毕晓普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大众创新\",\n    \"author\": \"埃里克・冯・希佩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑匣子思维：我们如何更理性地犯错\",\n    \"author\": \"马修・萨伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014211-1c5f9b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意练习：如何从新手到大师\",\n    \"author\": \"安德斯・艾利克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆势销售：UGG创始人自述\",\n    \"author\": \"布莱恩・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"褚时健管理法\",\n    \"author\": \"张小军/马玥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013983-1e34a0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大道当然\",\n    \"author\": \"王石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“错误”的行为\",\n    \"author\": \"理查德・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013920-5d454d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗时间\",\n    \"author\": \"刘未鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别再用勤奋掩饰你的懒惰\",\n    \"author\": \"阿何\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11枚戒指禅：师菲尔·杰克逊自传\",\n    \"author\": \"菲尔・杰克逊/休・迪里汉提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013530-adcbea?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结网@改变世界的互联网产品经理（修订版）\",\n    \"author\": \"王坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪潮之巅\",\n    \"author\": \"吴军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"系统之美\",\n    \"author\": \"德内拉・梅多斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跃迁：成为高手的技术\",\n    \"author\": \"古典\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013161-eaef0d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11.11如何卖到一个亿\",\n    \"author\": \"陈炉均/陈威/马国良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AsK.反直觉询问\",\n    \"author\": \"莱恩・莱韦斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"U型理论（全新升级版）\",\n    \"author\": \"奥托・夏莫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013143-40fa8b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追时间的人\",\n    \"author\": \"阳志平等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013005-f92fca?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指数型组织\",\n    \"author\": \"萨利姆・伊斯梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"CEO说：像企业家一样思考\",\n    \"author\": \"拉姆・查兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012924-0396bc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国式管理行为\",\n    \"author\": \"曾仕强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012855-72e7bc?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微习惯\",\n    \"author\": \"斯蒂芬・盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度工作\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012528-0a8a94?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来的组织：企业持续成长的智慧\",\n    \"author\": \"章永宏/罗旭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012483-15e595?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斯坦福商业决策课\",\n    \"author\": \"卡尔・斯佩茨勒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者\",\n    \"author\": \"沃尔特・艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的基因\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华为工作法\",\n    \"author\": \"黄继伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012357-a75698?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胜利的法则\",\n    \"author\": \"铃木博毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁说你不能坚持\",\n    \"author\": \"程龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可口可乐传\",\n    \"author\": \"马克・彭德格拉斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品牌洗脑（珍藏版）\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售时代三部曲（套装共三册）\",\n    \"author\": \"杰弗里・米勒/大卫・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自制力\",\n    \"author\": \"高原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是思维\",\n    \"author\": \"爱德华・德博诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011256-cc5193?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愿景领导者\",\n    \"author\": \"迪帕克・乔普拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011211-07999a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克要买大杯咖啡\",\n    \"author\": \"吉本佳生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在星巴克遇见德鲁克\",\n    \"author\": \"李麦可\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011139-8f0e63?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人用方格笔记本\",\n    \"author\": \"高桥政史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010908-f51638?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的先知\",\n    \"author\": \"托马斯・麦克劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010812-0d5497?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的灵魂\",\n    \"author\": \"查尔斯・汉迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・职场那些事（全10册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010470-365bbf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛商业评论・像管理者一样思考（全15册）\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帮你省时间！替你划重点！教你学管理！\",\n    \"author\": \"哈佛商业评论\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关系力\",\n    \"author\": \"蒂姆・邓普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维力：高效的系统思维\",\n    \"author\": \"王世民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗杰·道森优势谈判系列\",\n    \"author\": \"罗杰・道森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倾听全球的声音（全10册）\",\n    \"author\": \"经济学人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010230-dfe349?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新的本能：类比思维的力量\",\n    \"author\": \"约翰・波拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超越智商\",\n    \"author\": \"基思・斯坦诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"干法\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"互联网思维独孤九剑\",\n    \"author\": \"赵大伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上瘾\",\n    \"author\": \"尼尔・埃亚尔/瑞安・胡佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级IP：互联网新物种方法论\",\n    \"author\": \"吴声\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"痛点：挖掘小数据满足用户需求\",\n    \"author\": \"马丁・林斯特龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意学习\",\n    \"author\": \"Scalers\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"象与骑象人：幸福的假设\",\n    \"author\": \"乔纳森・海特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009654-67ea14?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学的广告+我的广告生涯\",\n    \"author\": \"克劳德・霍普金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金钱不能买什么\",\n    \"author\": \"迈克尔・桑德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009447-bec7f0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最重要的事，只有一件\",\n    \"author\": \"加里・凯勒/杰伊・帕帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十亿美金的教训\",\n    \"author\": \"林军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力：为什么只为某些人所拥有（经典版）\",\n    \"author\": \"杰弗瑞・菲佛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精力管理\",\n    \"author\": \"吉姆・洛尔/托尼・施瓦茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009036-6c36ba?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"设计冲刺\",\n    \"author\": \"杰克・纳普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慢决策：如何在极速时代掌握慢思考的力量\",\n    \"author\": \"弗兰克・帕特诺伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008970-5275d1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力法则：用一年时间积累一生财富（套装共3册）\",\n    \"author\": \"拿破仑・希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小米生态链战地笔记\",\n    \"author\": \"小米生态链谷仓学院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗伯特议事规则\",\n    \"author\": \"袁天鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008811-e8cf3b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鞋狗\",\n    \"author\": \"菲尔・奈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精要主义\",\n    \"author\": \"格雷戈・麦吉沃恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008661-c552a6?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"董事会里的战争\",\n    \"author\": \"艾・里斯/劳拉・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疯狂到位\",\n    \"author\": \"亚当・施特尔茨/威廉・帕特里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好战略，坏战略\",\n    \"author\": \"理查德・鲁梅尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"引爆点：如何制造流行\",\n    \"author\": \"马尔科姆・格拉德威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结构思考力\",\n    \"author\": \"李忠秋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重来：更为简单有效的商业思维\",\n    \"author\": \"贾森・弗里德/大卫・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定位\",\n    \"author\": \"杰克・特劳特/阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英的48个工作习惯\",\n    \"author\": \"户塚隆将\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007767-d82cd1?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉姆·柯林斯成就卓越系列（套装共4册）\",\n    \"author\": \"吉姆・柯林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英都是清单控\",\n    \"author\": \"宝拉・里佐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007710-be0e00?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话：新鲜有趣的话术精进技巧\",\n    \"author\": \"马东/马薇薇/黄执中等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳问：柳传志的管理三要素\",\n    \"author\": \"张涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007566-7946b7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导梯队（原书第2版）\",\n    \"author\": \"拉姆・查兰/斯蒂芬・德罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴晓波细说商业史（套装共5册）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007437-79d20a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿里传：这是阿里巴巴的世界\",\n    \"author\": \"波特・埃里斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地产狂人许家印\",\n    \"author\": \"魏昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"影响力\",\n    \"author\": \"罗伯特・西奥迪尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海底捞你学不会\",\n    \"author\": \"黄铁鹰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡工具\",\n    \"author\": \"保罗・弗里嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德鲁克的最后忠告\",\n    \"author\": \"伊丽莎白・哈斯・埃德莎姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业实战（第2版）\",\n    \"author\": \"Ash Maurya\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的解答\",\n    \"author\": \"克莱顿・克里斯坦森/迈克尔・雷纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新者的窘境\",\n    \"author\": \"克莱顿・克里斯坦森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跨越鸿沟：颠覆性产品营销圣经\",\n    \"author\": \"杰弗里・摩尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联想风云三十年\",\n    \"author\": \"赵雪/姜美芝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007260-d642e2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科学管理原理\",\n    \"author\": \"弗雷德里克・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007242-f6d444?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商战\",\n    \"author\": \"杰克・特劳特 / 阿尔・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"什么是战略\",\n    \"author\": \"杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清单革命\",\n    \"author\": \"阿图・葛文德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达工作法\",\n    \"author\": \"万达集团企业文化中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富爸爸穷爸爸\",\n    \"author\": \"罗伯特.T.清崎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"22条商规\",\n    \"author\": \"艾・里斯 / 杰克・特劳特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售哲学系列：7-11便利店创始人自述（套装共2册）\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴菲特致股东的信（精华篇）\",\n    \"author\": \"L·J·瑞德豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理的实践（珍藏版）\",\n    \"author\": \"彼得・德鲁克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007080-44a05a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决问题最简单的方法\",\n    \"author\": \"达伦・布里奇/戴维・路易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益创业 : 新创企业的成长思维\",\n    \"author\": \"埃里克・莱斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Ego Is the Enemy\",\n    \"author\": \"Ryan Holiday\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006948-f3c958?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟爱上管理学\",\n    \"author\": \"姚余梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006891-f90357?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓愚：操纵与欺骗的经济学\",\n    \"author\": \"乔治·阿克洛夫/罗伯特·席勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大是熬出来的\",\n    \"author\": \"优米网\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘：对过去的事情做思维演练\",\n    \"author\": \"陈中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万达哲学：王健林首次自述经营之道\",\n    \"author\": \"王健林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宗庆后：万有引力原理\",\n    \"author\": \"迟宇宙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"TED竞争心理学\",\n    \"author\": \"玛格丽特·赫夫南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风险与好的决策\",\n    \"author\": \"格尔德·吉仁泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是部金融史（全新修订典藏版）\",\n    \"author\": \"陈雨露/杨栋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"平台战略\",\n    \"author\": \"陈威如/余卓轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沃顿商学院最受欢迎的思维课\",\n    \"author\": \"亚当・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行在宽处\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理想丰满\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮生长（权威未删节）\",\n    \"author\": \"冯仑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小强升职记（升级版）\",\n    \"author\": \"邹鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006204-c05b09?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不奋斗就等死\",\n    \"author\": \"陈轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006111-6361a4?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效能人士的七个习惯（20周年纪念版）\",\n    \"author\": \"史蒂芬・柯维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"下一个倒下的会不会是华为\",\n    \"author\": \"吴春波/田涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005934-356c47?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力21法则\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005919-08ec04?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功的真谛\",\n    \"author\": \"稻盛和夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新版一分钟经理人\",\n    \"author\": \"肯・布兰佳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005577-99fa0a?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创京东\",\n    \"author\": \"李志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005544-0bce57?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大败局（十周年套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从0到1：开启商业与未来的秘密\",\n    \"author\": \"彼得・蒂尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"番茄工作法图解\",\n    \"author\": \"诺特伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866\",\n    \"category\": \"管理\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李银河谈亲密关系\",\n    \"author\": \"李银河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挽回爱情33堂课\",\n    \"author\": \"穆木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985810-12567b?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二次吸引\",\n    \"author\": \"“小鹿情感”专家组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美关系的秘密\",\n    \"author\": \"杨冰阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041142-df8089?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在亲密关系中成长\",\n    \"author\": \"卡洛琳・戴奇/丽萨・罗伯邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷尔蒙战争\",\n    \"author\": \"科迪莉亚・法恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020769-c67cdf?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金赛性学报告（男人篇&#038;女人篇）\",\n    \"author\": \"阿尔弗雷德・C.金赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020571-87df7c?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野兽绅士\",\n    \"author\": \"巫家民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012660-d06b04?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人来自火星，女人来自金星（套装共4册）\",\n    \"author\": \"约翰・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学观止（上下册）\",\n    \"author\": \"贺兰特・凯查杜里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性学五章\",\n    \"author\": \"江晓原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866\",\n    \"category\": \"两性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁迅的都市漫游\",\n    \"author\": \"藤井省三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995002-8ac38e?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字里行间读鲁迅\",\n    \"author\": \"黄乔生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052611-2c45de?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我也是鲁迅的遗物：朱安传\",\n    \"author\": \"乔丽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐宋传奇集（精装典藏版）\",\n    \"author\": \"蔡义江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036696-49672a?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间鲁迅\",\n    \"author\": \"林贤治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"私想鲁迅\",\n    \"author\": \"刘春杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866\",\n    \"category\": \"鲁迅\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"体育健身训练丛书（套装全10册）\",\n    \"author\": \"阿诺德·G· 尼尔森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495096-de8ca5?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骨骼跑步法\",\n    \"author\": \"铃木清和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自律给你自由\",\n    \"author\": \"约克・威林克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513741-adf394?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后一本减肥书\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样减肥不反弹\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颜值和身材一个都不能少（套装共10册）\",\n    \"author\": \"森拓郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983329-e2252e?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪电增肌\",\n    \"author\": \"仰望尾迹云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸：适合全家人的健身与运动\",\n    \"author\": \"杨克新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051009-b7847b?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"健身笔记\",\n    \"author\": \"叔贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"很老很老的老偏方大全集（共10册）\",\n    \"author\": \"胡丽娟等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会呼吸\",\n    \"author\": \"帕特里克・麦基翁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练减脂圣经\",\n    \"author\": \"尼克・特米勒罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033306-9ad46f?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李小龙遗作：你从未见过的功夫之王（套装共3册）\",\n    \"author\": \"李小龙/约翰・里特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029949-2bcb8f?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郝鹏飞极简派健身\",\n    \"author\": \"郝鹏飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024366-198ca6?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肿瘤防治科普丛书（套装共13册）\",\n    \"author\": \"重庆市肿瘤医院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再见，健身房\",\n    \"author\": \"高宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"力量训练套装\",\n    \"author\": \"马克・瑞比拖/安迪・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你可以跑得更快\",\n    \"author\": \"徐国峰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉伸运动系统训练（全彩图解第2版）\",\n    \"author\": \"阿诺德·G.尼尔森/尤卡・科科宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每周健身4小时\",\n    \"author\": \"蒂莫西・费里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021222-0e5913?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"施瓦辛格健身全书\",\n    \"author\": \"阿诺德・施瓦辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021087-b4c0c0?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准拉伸\",\n    \"author\": \"克里斯蒂安・博格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020916-4b8c4a?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无器械健身\",\n    \"author\": \"马克・劳伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020154-710555?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"囚徒健身全集（共4册）\",\n    \"author\": \"保罗・威德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019035-5dda2c?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一平米健身：硬派健身\",\n    \"author\": \"斌卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005727-03824e?p=8866\",\n    \"category\": \"健身\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴拉巴西网络科学\",\n    \"author\": \"艾伯特-拉斯洛・巴拉巴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000138-cf99ca?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络战争\",\n    \"author\": \"查尔斯・亚瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络（牛津通识读本）\",\n    \"author\": \"圭多・卡尔达雷利/米凯莱・卡坦扎罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053052-0ef287?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类网络\",\n    \"author\": \"马修・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断网生活\",\n    \"author\": \"贾健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033096-f85ae2?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"增强人类\",\n    \"author\": \"海伦・帕帕扬尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030204-bca3d3?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个人类\",\n    \"author\": \"马克・奥康奈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网络是怎样连接的\",\n    \"author\": \"户根勤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解HTTP\",\n    \"author\": \"上野宣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866\",\n    \"category\": \"网络\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪恶力量：超自然生物图鉴\",\n    \"author\": \"提姆・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985678-c429a7?p=8866\",\n    \"category\": \"影视\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李碧华经典小说集\",\n    \"author\": \"李碧华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024717-9cc7da?p=8866\",\n    \"category\": \"影视\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周易参同契（全本全注全译）\",\n    \"author\": \"章偉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866\",\n    \"category\": \"丹道\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸葛亮：蜀汉舵手的历史真相\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866\",\n    \"category\": \"诸葛亮\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大谋小计五十年：诸葛亮传\",\n    \"author\": \"若虚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005889-9b8514?p=8866\",\n    \"category\": \"诸葛亮\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行动教练\",\n    \"author\": \"季益祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999400-98dabd?p=8866\",\n    \"category\": \"绩效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识管理\",\n    \"author\": \"尼克・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030318-1dd6c3?p=8866\",\n    \"category\": \"绩效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"OKR工作法\",\n    \"author\": \"克里斯蒂娜・沃特克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866\",\n    \"category\": \"绩效\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·免疫与治愈\",\n    \"author\": \"迈克尔・金奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深呼吸：菠萝解密肺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035556-2eaf53?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她说：菠萝解密乳腺癌\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个人的战争\",\n    \"author\": \"大卫・塞尔旺・施莱伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020205-f17668?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症科普（套装共2册）\",\n    \"author\": \"李治中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"癌症·真相\",\n    \"author\": \"菠萝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众病之王：癌症传\",\n    \"author\": \"悉达多・穆克吉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866\",\n    \"category\": \"癌症\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东言西语\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维特根斯坦说逻辑与语言\",\n    \"author\": \"维特根斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985915-d52a79?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言的诞生\",\n    \"author\": \"丹尼尔·L. 埃弗雷特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉语讲话\",\n    \"author\": \"王力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045315-e7ccda?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南腔北调：在语言中重新发现中国\",\n    \"author\": \"郑子宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学语言\",\n    \"author\": \"亚历克斯・罗林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043503-1bf41f?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你所不知道的日本名词故事\",\n    \"author\": \"新井一二三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言表达的艺术\",\n    \"author\": \"赵磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030414-9672c6?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字里中国\",\n    \"author\": \"张素凤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029691-7b218d?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"You are a Badass\",\n    \"author\": \"Jen Sincero\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写作全技术\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025719-d465f4?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言风格的秘密\",\n    \"author\": \"詹姆斯・彭尼贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023781-4c8ac9?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1368个单词就够了\",\n    \"author\": \"王乐平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语的故事\",\n    \"author\": \"戴维・克里斯特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013851-0cea4d?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言本能\",\n    \"author\": \"史蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟各国人都聊的来\",\n    \"author\": \"本尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866\",\n    \"category\": \"语言\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻美：摄影中的东方美学\",\n    \"author\": \"青简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大美中国（全8册）\",\n    \"author\": \"陈炎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513846-cbc74c?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美学漫步\",\n    \"author\": \"宗白华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002514-7384a3?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论爱美\",\n    \"author\": \"夏尔・佩潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术精神\",\n    \"author\": \"罗伯特・亨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985927-d00167?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美学讲稿\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029019-43518f?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无限的清单\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029040-0003df?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博洛尼亚国家艺术画廊\",\n    \"author\": \"贝亚特莉切・布斯卡罗利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浪漫主义的根源\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011475-a98679?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坎贝尔生活美学\",\n    \"author\": \"戴安娜・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009570-bbd908?p=8866\",\n    \"category\": \"美学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"為了活下去：脫北女孩朴研美\",\n    \"author\": \"朴研美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008844-4ce616?p=8866\",\n    \"category\": \"北韩\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"前行笔记之耕耘心田\",\n    \"author\": \"希阿荣博堪布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491703-fada1f?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛系：中国人的生活智慧\",\n    \"author\": \"果麦文化\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493296-11aa38?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿含经校注（全九册）\",\n    \"author\": \"恒强法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509343-bdaff3?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞见：从科学到哲学，打开人类的认知真相\",\n    \"author\": \"罗伯特・赖特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999022-8e84da?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的智慧\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坛经（全本全注全译）\",\n    \"author\": \"尚荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国佛教通史（套装十五卷）\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳伽蓝记（全本全注全译）\",\n    \"author\": \"尚荣译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅者的初心\",\n    \"author\": \"铃木俊隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏传佛教极简史\",\n    \"author\": \"德昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛陀传\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029292-270b2e?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正念的奇迹\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029160-04ba40?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛系：如何成为一个快乐的人\",\n    \"author\": \"草薙龙瞬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022269-176d06?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏生死书\",\n    \"author\": \"索甲仁波切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慧灯之光（全8册）\",\n    \"author\": \"慈诚罗珠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006576-5bbcbf?p=8866\",\n    \"category\": \"佛学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅盾讲中国神话\",\n    \"author\": \"茅盾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492144-627120?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上古神话（全四册）\",\n    \"author\": \"钟毓龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500949-92326a?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空5500年\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喀耳刻\",\n    \"author\": \"马德琳・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506415-595930?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重述神话系列套装7册\",\n    \"author\": \"A.S.拜雅特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506790-5f6b2e?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神在人间的时光（修订版）\",\n    \"author\": \"陈喜辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004272-ae9f00?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣的存在\",\n    \"author\": \"米尔恰・伊利亚德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海百灵\",\n    \"author\": \"王新禧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004023-a305af?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聊斋汊子（全两册）\",\n    \"author\": \"董均伦/江源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003747-87ed89?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英雄\",\n    \"author\": \"斯蒂芬・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995575-9cd60e?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神话\",\n    \"author\": \"斯蒂芬・弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995473-1daa2f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说魂儿（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"扪虱谈鬼录（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穆天子传（全本全注全译）\",\n    \"author\": \"高永旺译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上寻仙记\",\n    \"author\": \"锦翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国神话通论\",\n    \"author\": \"袁珂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049314-f5b7b8?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神仙传（全本全注全译）\",\n    \"author\": \"葛洪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简世界神话\",\n    \"author\": \"马克・丹尼尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The House of Hades\",\n    \"author\": \"Riordan, Rick\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034689-d4bc80?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封神演义（果麦经典）\",\n    \"author\": \"许仲琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"献给艾拉·格雷的歌\",\n    \"author\": \"大卫・阿尔蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全怪谈（全三册）\",\n    \"author\": \"田中贡太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032217-dba52f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金叶：来自金枝的故事\",\n    \"author\": \"丽莉・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028533-53157f?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯尔特神话\",\n    \"author\": \"米兰达・阿尔德豪斯-格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026139-d5e318?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中6·一本读懂！山海经\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025233-398c4e?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马神话\",\n    \"author\": \"菲利普・马蒂塞克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025155-94a814?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃及神话\",\n    \"author\": \"加里·J.肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025149-2a44c7?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧神话\",\n    \"author\": \"卡罗琳・拉灵顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观山海\",\n    \"author\": \"杉泽/梁超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024672-aac4e1?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯尔特的薄暮\",\n    \"author\": \"威廉・巴特勒・叶芝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023673-2bd6c4?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·异兽篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021321-ab85f8?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给孩子的山海经·人神篇\",\n    \"author\": \"竹马书坊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小顾聊神话\",\n    \"author\": \"顾爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一千零一夜（果麦经典）\",\n    \"author\": \"邓嘉宛译\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011433-69e0ef?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悟空传（完美纪念版）\",\n    \"author\": \"今何在\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009351-e1b571?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千面英雄\",\n    \"author\": \"约瑟夫・坎贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊神话故事\",\n    \"author\": \"古斯塔夫・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山海经密码大全集（套装共5册）\",\n    \"author\": \"阿菩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006714-464296?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国神话大词典\",\n    \"author\": \"袁珂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866\",\n    \"category\": \"神话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意观察\",\n    \"author\": \"朱建国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欲罢不能：刷屏时代如何摆脱行为上瘾\",\n    \"author\": \"亚当・阿尔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"行为心理学\",\n    \"author\": \"约翰・华生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016383-2e302b?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪诞关系学\",\n    \"author\": \"亚当・加林斯基/马利斯・施韦泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微习惯\",\n    \"author\": \"斯蒂芬・盖斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不诚实的诚实真相\",\n    \"author\": \"丹・艾瑞里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009519-879ad6?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"害羞心理学\",\n    \"author\": \"菲利普・津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009510-378800?p=8866\",\n    \"category\": \"行为\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法治的细节\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498228-28f106?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《中华人民共和国民法典》条文精释与实案全析\",\n    \"author\": \"杨立新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508884-69560f?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹劾\",\n    \"author\": \"戴维・E.凯卫格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑罚的历史\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003726-07d003?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法中的同意制度\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003372-a8ac3b?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法罗盘\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"誓言：白宫与最高法院\",\n    \"author\": \"杰弗里・图宾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以眼还眼\",\n    \"author\": \"米切尔·P·罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圆圈正义\",\n    \"author\": \"罗翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐秘战争\",\n    \"author\": \"阿里・拉伊迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"司法的细节\",\n    \"author\": \"刘仁文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022755-7efa0d?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法政纠结\",\n    \"author\": \"杨天宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020388-cbd634?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二怒汉\",\n    \"author\": \"雷金纳德・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018195-04e94b?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"联邦论：美国宪法评述\",\n    \"author\": \"亚历山大・汉密尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"批评官员的尺度\",\n    \"author\": \"安东尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断臂上的花朵\",\n    \"author\": \"奥比・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009423-07055d?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛普森何以逍遥法外？\",\n    \"author\": \"文森特・布廖西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008964-ad44de?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难的一跃\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大法官说了算\",\n    \"author\": \"何帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洞穴奇案\",\n    \"author\": \"萨伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008175-d08cdd?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"合理的怀疑\",\n    \"author\": \"德肖维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国最高法院通识读本\",\n    \"author\": \"琳达・格林豪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刑法格言的展开（第三版）\",\n    \"author\": \"张明楷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866\",\n    \"category\": \"法律\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"格局逆袭2\",\n    \"author\": \"宗宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866\",\n    \"category\": \"格局\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说话体现格局，决定结局\",\n    \"author\": \"凌岚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866\",\n    \"category\": \"格局\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瞧！不一样的我\",\n    \"author\": \"小盐真司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003723-564f84?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格拼图\",\n    \"author\": \"西尔维亚・洛肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"突破天性\",\n    \"author\": \"布赖恩・利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"性格的陷阱\",\n    \"author\": \"杰弗里·E.杨等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何提升性格优势\",\n    \"author\": \"安妮・博格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032571-eaa275?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别相信他的脸\",\n    \"author\": \"亚历山大・托多罗夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027891-8dcd80?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟乐嘉学性格色彩\",\n    \"author\": \"乐嘉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014859-334205?p=8866\",\n    \"category\": \"性格\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"末代沙皇：尼古拉二世的最后503天\",\n    \"author\": \"罗伯特・瑟维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491478-017375?p=8866\",\n    \"category\": \"沙皇\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷搅局者\",\n    \"author\": \"莱斯利・柏林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷之火（第3版）\",\n    \"author\": \"迈克尔・斯韦因/保罗・弗赖伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混乱的猴子\",\n    \"author\": \"安东尼奥・加西亚・马丁内斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷帝国\",\n    \"author\": \"露西・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Bad Blood\",\n    \"author\": \"John Carreyrou\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024663-88d5e5?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"硅谷百年史\",\n    \"author\": \"阿伦・拉奥/皮埃罗・斯加鲁菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里改变世界：硅谷成功创新之谜\",\n    \"author\": \"黛博拉・佩里・皮肖内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Elon Musk\",\n    \"author\": \"Ashlee Vance\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866\",\n    \"category\": \"硅谷\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反直觉\",\n    \"author\": \"理查德・肖顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考的技术\",\n    \"author\": \"大前研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"组织革新\",\n    \"author\": \"杨国安/戴维・尤里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领导力精进\",\n    \"author\": \"马歇尔・古德史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华与华百万大奖赛案例集\",\n    \"author\": \"华杉/华楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"助推（实践版）\",\n    \"author\": \"戴维・哈尔彭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043941-cd894d?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智识的冒险\",\n    \"author\": \"潘启雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043764-78293a?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"345薪酬\",\n    \"author\": \"李祖滨/汤鹏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034002-cf5f79?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"25%的回头客创造75%的利润\",\n    \"author\": \"高田靖久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实\",\n    \"author\": \"汉斯・罗斯林/欧拉・罗斯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从1到N：企业数字化生存指南\",\n    \"author\": \"尤尔根・梅菲特/沙莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃\",\n    \"author\": \"克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是执行力\",\n    \"author\": \"赵伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027924-49edb9?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级激励者\",\n    \"author\": \"西蒙・斯涅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻省理工深度思考法\",\n    \"author\": \"平井孝志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺基亚总裁自述：重压之下\",\n    \"author\": \"约玛・奥利拉/哈利・沙库马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017967-f37367?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业模式全史\",\n    \"author\": \"三谷宏治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017052-d7e7bd?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共赢\",\n    \"author\": \"约翰・麦克斯维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016227-aa004f?p=8866\",\n    \"category\": \"经管\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最简单的图形与最复杂的信息\",\n    \"author\": \"黄慧敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512553-185e6e?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Python金融大数据分析\",\n    \"author\": \"伊夫・希尔皮斯科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对比Excel，轻松学习Python数据分析\",\n    \"author\": \"张俊红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首席增长官\",\n    \"author\": \"张溪梦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都是数据分析师\",\n    \"author\": \"刘红阁/王淑娟/温融冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成为数据分析师\",\n    \"author\": \"托马斯・达文波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018255-12f5c6?p=8866\",\n    \"category\": \"数据分析\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯“革命”隐藏的另一面\",\n    \"author\": \"埃里克・德尼西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496482-040f62?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大征服\",\n    \"author\": \"休・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敌人与邻居\",\n    \"author\": \"伊恩・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服与革命中的阿拉伯人\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊本·赫勒敦\",\n    \"author\": \"罗伯特・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越百年中东\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866\",\n    \"category\": \"阿拉伯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山居杂忆\",\n    \"author\": \"高诵芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002007-f88da6?p=8866\",\n    \"category\": \"回忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春蚕吐丝\",\n    \"author\": \"陈鼓应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866\",\n    \"category\": \"回忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西南联大行思录\",\n    \"author\": \"张曼菱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018297-9bd135?p=8866\",\n    \"category\": \"回忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗战时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866\",\n    \"category\": \"回忆\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泥土之界\",\n    \"author\": \"希拉莉・乔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866\",\n    \"category\": \"黑人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为奴十二年\",\n    \"author\": \"所罗门・诺瑟普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011313-653371?p=8866\",\n    \"category\": \"黑人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"腐败：人性与文化\",\n    \"author\": \"克里斯・肖尔/迪特尔・哈勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866\",\n    \"category\": \"腐败\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩5：遗失的羽毛\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866\",\n    \"category\": \"黑色童话\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图解国医典藏系列套装（全6册）\",\n    \"author\": \"张仲景等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500892-16aa17?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疾病密码\",\n    \"author\": \"唐云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003858-1a42ec?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中西医的博弈\",\n    \"author\": \"皮国立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉（增订版）\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984574-129632?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问中医几度秋凉\",\n    \"author\": \"艾宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医目了然\",\n    \"author\": \"懒兔子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中医祖传的那点儿东西2\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023928-751840?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"救命之方\",\n    \"author\": \"罗大伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023430-dd9f1a?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思考中医\",\n    \"author\": \"刘力红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010455-725a39?p=8866\",\n    \"category\": \"中医\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭德怀自传\",\n    \"author\": \"彭德怀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866\",\n    \"category\": \"彭德怀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭大将军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866\",\n    \"category\": \"彭德怀\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在路上：我生活的故事\",\n    \"author\": \"格洛丽亚・斯泰纳姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035034-83902d?p=8866\",\n    \"category\": \"女权主义\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读电影·百年奥斯卡佳片品鉴（套装3册）\",\n    \"author\": \"杨晓林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503820-7cf8c0?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"詹姆斯·卡梅隆的科幻故事\",\n    \"author\": \"兰德尔・弗雷克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509604-3a44ff?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新媒体的语言\",\n    \"author\": \"列夫・马诺维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影意志\",\n    \"author\": \"王小鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512109-561eca?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煮海时光\",\n    \"author\": \"白睿文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513129-02d351?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们与恶的距离\",\n    \"author\": \"吕莳媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002985-472c7f?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绘色\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002856-21b3da?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"定义邪典电影\",\n    \"author\": \"马克・扬克维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002151-9c4719?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有点意思\",\n    \"author\": \"黄渤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000483-0f32e7?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影的元素\",\n    \"author\": \"罗伯特・伯德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996553-12e06b?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吉卜力的伙伴们\",\n    \"author\": \"铃木敏夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994822-c08285?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个人的车站\",\n    \"author\": \"埃・韦・布拉金斯基/埃・亚・梁赞诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的最后叹息\",\n    \"author\": \"路易斯・布努艾尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与戛纳\",\n    \"author\": \"蒂耶里・福茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影（牛津通识读本）\",\n    \"author\": \"迈克尔・伍德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用手机拍一部电影\",\n    \"author\": \"英国Little White Lies编辑部\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影冷知识\",\n    \"author\": \"许立衡/张凯淯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双子杀手\",\n    \"author\": \"泰坦图书\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047988-81f498?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象席地而坐\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我是开豆腐店的，我只做豆腐\",\n    \"author\": \"小津安二郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035157-62d9ec?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔灯（全译本）\",\n    \"author\": \"英格玛・伯格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光影里的梦幻与真实\",\n    \"author\": \"郑实\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日40：步履不停，是枝裕和\",\n    \"author\": \"茶乌龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031917-82a810?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"电影是什么？\",\n    \"author\": \"安德烈・巴赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险地活着\",\n    \"author\": \"汉斯・舒茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何聊电影\",\n    \"author\": \"安・霍纳迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029709-5cea62?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我知道你们又来这一套\",\n    \"author\": \"罗杰・伊伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028974-b269a9?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"HBO的内容战略\",\n    \"author\": \"小比尔・梅西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026886-3c5154?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何欣赏一部电影\",\n    \"author\": \"托马斯・福斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022224-caab80?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对白：文字、舞台、银幕的言语行为艺术\",\n    \"author\": \"罗伯特・麦基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018612-e3095d?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界电影史（套装共3册）\",\n    \"author\": \"杰弗里・诺维尔・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017265-9718d5?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“雅众·影事”之日本导演系列（套装共4册）\",\n    \"author\": \"今敏/大岛渚等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017130-8dc1b4?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与火同行：大卫·林奇谈电影\",\n    \"author\": \"大卫・林奇/克里斯・罗德雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香港电影史记\",\n    \"author\": \"魏君子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006993-4a082b?p=8866\",\n    \"category\": \"电影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉汉的脚步\",\n    \"author\": \"伦纳德・蒙洛迪诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002340-106057?p=8866\",\n    \"category\": \"概率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10堂极简概率课\",\n    \"author\": \"佩尔西・戴康尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866\",\n    \"category\": \"概率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统计学关我什么事\",\n    \"author\": \"小岛宽之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866\",\n    \"category\": \"概率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑天鹅：如何应对不可预知的未来（升级版）\",\n    \"author\": \"纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866\",\n    \"category\": \"概率\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蛮荒记（大全集）\",\n    \"author\": \"树下野狐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492450-48eee1?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎魔人修订版一至八全集\",\n    \"author\": \"安杰伊・萨普科夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493842-0102d1?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地铁三部曲\",\n    \"author\": \"德米特里・格鲁霍夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503226-447e22?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将夜（精校版）\",\n    \"author\": \"猫腻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049074-8f7e9a?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆，悲伤与荆棘（套装全三卷六册）\",\n    \"author\": \"泰德・威廉姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033894-061805?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异乡人（套装共10册）\",\n    \"author\": \"戴安娜・加瓦尔东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033537-76c311?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神游\",\n    \"author\": \"徐胜治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033297-17c0a2?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖异闻录\",\n    \"author\": \"本少爷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028242-37d188?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026331-155838?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话Ⅱ\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026322-83eb5a?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克苏鲁神话Ⅲ\",\n    \"author\": \"H.P.洛夫克拉夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026316-cb833b?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑西游\",\n    \"author\": \"绯红色眼泪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025137-84c2d0?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI迷航2\",\n    \"author\": \"肖遥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023982-655d95?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斗罗大陆（全14卷）\",\n    \"author\": \"唐家三少\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023769-dc3c40?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极地恶灵（全2册）\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020643-881da8?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镖人2\",\n    \"author\": \"许先哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020184-ca791a?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人族崛起（套装书全10册）\",\n    \"author\": \"岳天亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020079-80b4c8?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"移动迷宫（套装5册）\",\n    \"author\": \"詹姆斯・达什纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019527-f1b587?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北境三部曲：黑色佣兵团（套装共3册）\",\n    \"author\": \"格伦・库克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018309-76ae77?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"开封志怪（全三册）\",\n    \"author\": \"尾鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015318-1376a9?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无心法师\",\n    \"author\": \"尼罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013239-7522f7?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑渊洁成人大长篇小说系列三部曲\",\n    \"author\": \"郑渊洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011334-a9920c?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦墟\",\n    \"author\": \"月关\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009132-129b38?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"采珠勿惊龙：鬼雨法螺\",\n    \"author\": \"二郎神犬马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008403-e6a157?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"择天记（套装1-7卷全）\",\n    \"author\": \"猫腻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008277-29e82c?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传古奇术（套装共四册）\",\n    \"author\": \"未六羊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866\",\n    \"category\": \"玄幻\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻业的怀乡病\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513351-511f7d?p=8866\",\n    \"category\": \"传媒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内容之王\",\n    \"author\": \"迈克尔・巴斯卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044808-3d7309?p=8866\",\n    \"category\": \"传媒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"众媒时代\",\n    \"author\": \"腾讯传媒研究\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866\",\n    \"category\": \"传媒\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何达成目标\",\n    \"author\": \"海蒂・格兰特・霍尔沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994909-cbcb48?p=8866\",\n    \"category\": \"提升\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳语之人\",\n    \"author\": \"约翰・迪克森・卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493566-c34524?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反骗案中案·完结版（全5册）\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495066-b34054?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回到种子里去\",\n    \"author\": \"加西亚・马尔克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495486-3c8ab0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间我来过\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495513-a7fbae?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那多经典作品合集（12册合集）\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498663-8c7a04?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探4：双城血案\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498834-6b8e51?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄雀计划\",\n    \"author\": \"鬼庖丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498957-155512?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默的铁证\",\n    \"author\": \"米烛光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499452-818cac?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶寒\",\n    \"author\": \"伊冈瞬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499659-21ca24?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全员嫌疑人\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499701-1e03fc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气球人\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501195-ba2e60?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"会错意的冬日\",\n    \"author\": \"似鸟鸡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501648-3e29c5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的女孩\",\n    \"author\": \"克里斯蒂安・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501726-060129?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猫头鹰谋杀案（全两册）\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502944-116268?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密室小丑\",\n    \"author\": \"时晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503307-04dbfb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"傲慢与善良\",\n    \"author\": \"辻村深月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504243-e0863b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩偶\",\n    \"author\": \"法医秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506412-556a2b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如首无作祟之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508980-843c48?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如水魑沉没之物\",\n    \"author\": \"三津田信三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509070-c0bdeb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逆时侦查组\",\n    \"author\": \"张小猫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509094-55dc76?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪头条\",\n    \"author\": \"朱首末\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509643-1ce27b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无形之刃\",\n    \"author\": \"陈研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509706-840d1a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬疑小说《失联》系列（全4册）\",\n    \"author\": \"发威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509769-12102c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美嫌疑人\",\n    \"author\": \"陈研一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509868-3a24d8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"字母表谜案\",\n    \"author\": \"大山诚一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510117-6dfc14?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失者\",\n    \"author\": \"多纳托・卡瑞西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510153-b0429d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寒栗\",\n    \"author\": \"索伦・斯外斯特普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510246-3b3fae?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键词是谋杀\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510258-1956b1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甜蜜之家\",\n    \"author\": \"殳俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511095-b66fd2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊芙琳的七次死亡\",\n    \"author\": \"斯图尔特・特顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511320-d34f47?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎头游戏\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511377-5d4220?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍故事\",\n    \"author\": \"威廉・萨默塞特・毛姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511551-012997?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天机十二宫（套装2册）\",\n    \"author\": \"王超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513327-58c5bc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人偶的复活\",\n    \"author\": \"绫辻行人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513450-23c7d7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪医笔记\",\n    \"author\": \"狼医生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004455-54cb6f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默的墓碑\",\n    \"author\": \"珍・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004347-6c482d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦探AI\",\n    \"author\": \"早坂吝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003939-b7b6bf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉默的病人\",\n    \"author\": \"亚历克斯・麦克利兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旋涡（全2册）\",\n    \"author\": \"伊藤润二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003753-389516?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犯罪心理档案（共4册）\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明神探于谦\",\n    \"author\": \"史刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002157-6dd901?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木马湖\",\n    \"author\": \"宋老邪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002121-ac27cf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺丝在拧紧（果麦经典）\",\n    \"author\": \"亨利・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001599-4b85e9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔眼之匣谜案\",\n    \"author\": \"今村昌弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000648-79dc5c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记4\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000630-a6cc40?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"静默之地\",\n    \"author\": \"约翰・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000417-20afbf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她和她的秘密\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000177-c83701?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解梦大师\",\n    \"author\": \"羽笙烟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999379-8d67f1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝者之书\",\n    \"author\": \"法医秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998971-364375?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫌疑人\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998800-9f56b7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"羊行屮“灯下黑”系列（套装3册）\",\n    \"author\": \"羊行屮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996958-e7e565?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"他的秘密\",\n    \"author\": \"莉安・莫里亚蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996595-40f888?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗忘者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996394-3987f5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤色博物馆\",\n    \"author\": \"大山誠一郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996154-b859bc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"指定目击者\",\n    \"author\": \"午晔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995380-99ff61?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两种真相\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995215-ab07fb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧\",\n    \"author\": \"陈育新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995209-108b48?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一次真相\",\n    \"author\": \"赤蝶飞飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995176-68895f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色睡莲\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994783-a62041?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多米诺杀阵\",\n    \"author\": \"成刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991825-14cf14?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终南山密码2\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991645-ce6b62?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二镜面\",\n    \"author\": \"张墨爱吃鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991510-88f05b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一路去死\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990874-c2daf4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上岭阉牛\",\n    \"author\": \"凡一平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990295-1506c8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狂探\",\n    \"author\": \"吕铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990040-8f94c3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记3\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜鸟\",\n    \"author\": \"莫峻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987193-6b8f16?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"问米\",\n    \"author\": \"葛亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986296-19e7f3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米泽穗信精选集：算计\",\n    \"author\": \"米泽穗信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986158-4aacbd?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警2\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无辜之血\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985633-85ca83?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天坑宝藏\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"烧烤怪谈\",\n    \"author\": \"蔡必贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记2\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983785-47efcf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异闻录：九重图阵\",\n    \"author\": \"王文杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983362-f00f8f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983302-881145?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你希望我成为的一切\",\n    \"author\": \"明迪・梅西亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983146-2e7f2a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"农场\",\n    \"author\": \"汤姆・罗伯・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983131-cc0363?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探的咒缚\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982474-92a205?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镇墓兽（全四册）\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053601-c5f0f4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名侦探的救赎\",\n    \"author\": \"顾溪亭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053478-fd88a8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海明威与骗子工厂\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053163-da42f2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"糖与香料\",\n    \"author\": \"萨菲娜・德福奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053121-74a2f5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刀锋上的救赎（增补版）\",\n    \"author\": \"指纹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053079-0512e3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽冥\",\n    \"author\": \"小泉八云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052983-ce2296?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪全书系列（共6册）\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052944-2dd9a4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒\",\n    \"author\": \"吉田修一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸女孩\",\n    \"author\": \"纪尧姆・米索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052527-94115f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对我说谎\",\n    \"author\": \"萨宾・达兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052365-c25084?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侦畸者\",\n    \"author\": \"叶遁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"低智商犯罪\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052332-986b2c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终局者\",\n    \"author\": \"项维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052302-fcaeb5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔老道捉妖：夜闯董妃坟\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052266-3a15a0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崔老道传奇：三探无底洞\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052254-df0e70?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎凶记（套装全三册）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051765-86815f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"月光森林\",\n    \"author\": \"葵田谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051471-3cd00f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国式谋杀\",\n    \"author\": \"迈克尔・道格拉斯卡林/罗素・普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的遗忘\",\n    \"author\": \"丹妮尔・蒂埃里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051135-aff273?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣天秤星\",\n    \"author\": \"彼得・汉密尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050919-7cecbb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金色麦田\",\n    \"author\": \"葵田谷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050865-0365c7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碎裂\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050394-9ddc9d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界推理名家代表作（20全册）\",\n    \"author\": \"埃勒里・奎因等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050307-cc8646?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蟑螂\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我四十分钟后到家\",\n    \"author\": \"周路明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049539-8bf2ec?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者2\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049434-76024d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖2\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049356-1b7e9b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者3\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大魔术师\",\n    \"author\": \"张海帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047799-4641cf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪案迷城\",\n    \"author\": \"张瑞兴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046815-9f9c8d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪念\",\n    \"author\": \"刚雪印\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045978-23a050?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暖气\",\n    \"author\": \"慢三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045399-da4010?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富士山禁恋\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045333-d81815?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怒海妖船\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045072-9ea87c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追凶者之萨满疑云\",\n    \"author\": \"管彦杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044991-6977b9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重案追击：悬疑小说精选（套装共12册）\",\n    \"author\": \"王文杰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044961-601f8e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活人禁忌\",\n    \"author\": \"九锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探3：古画寻踪\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044214-07f96d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风之影四部曲\",\n    \"author\": \"卡洛斯・鲁依兹・萨丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043113-dd5324?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清明上河图密码（全6册）\",\n    \"author\": \"冶文彪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042804-929cc7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国男孩\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"网内人\",\n    \"author\": \"陈浩基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041643-1a89eb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白日梦\",\n    \"author\": \"老谭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041352-f3d652?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顶级悬案\",\n    \"author\": \"约翰・道格拉斯/马克・奥尔谢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040371-b4acad?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"单日人，双日人\",\n    \"author\": \"菲莉西亚・叶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039492-8a2857?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈利的十五次人生\",\n    \"author\": \"克莱尔・诺丝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039090-c3abbc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游泳课\",\n    \"author\": \"克莱尔・富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038988-b719e8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五个死者的告白\",\n    \"author\": \"P.D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038526-c24d0a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无人生还（精装纪念版）\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038145-3e58ee?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第五个目标\",\n    \"author\": \"白雾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037845-992b8d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赤龙\",\n    \"author\": \"苗棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037698-7168f4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"本店招牌菜\",\n    \"author\": \"斯坦利・艾林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037236-89887b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾中的小镇\",\n    \"author\": \"珍・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037104-1302c6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Cell\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036906-9fb3a8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复仇者\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看不见的客人\",\n    \"author\": \"塔娜・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成化十四年\",\n    \"author\": \"梦溪石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035892-788349?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑髓地狱\",\n    \"author\": \"梦野久作\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035817-f5b16f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀之心\",\n    \"author\": \"P. D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035811-984899?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大仲马俱乐部\",\n    \"author\": \"阿图罗・佩雷斯-雷维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035409-35f8e0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲探\",\n    \"author\": \"田烨然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035343-e3cad6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我与谎言为邻\",\n    \"author\": \"米娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035154-f86a21?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法醫·屍體·解剖室（套装共3册）\",\n    \"author\": \"道格拉斯．萊爾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034428-aee5f1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终南山密码\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033876-257d0b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焦渴\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国谍影（全四册）\",\n    \"author\": \"何慕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033657-64c701?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳危机\",\n    \"author\": \"李纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033414-30313e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿里\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪灵\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"混凝土里的金发女郎\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033120-c171d5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肖申克的救赎（纪念珍藏版）\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033099-81dc57?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"睡美人（全二册）\",\n    \"author\": \"斯蒂芬・金/欧文・金\",\n    \"link\": \"链接未找到\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邪屋\",\n    \"author\": \"雪莉・杰克逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032721-17527f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花雨枪\",\n    \"author\": \"夏生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录：最后的狄仁杰（全五册）\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032550-262194?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"喜鹊谋杀案\",\n    \"author\": \"安东尼・霍洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032361-2287af?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑信封\",\n    \"author\": \"诺曼・马内阿\",\n    \"link\": \"链接未找到\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死钥匙\",\n    \"author\": \"D.M.普利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032289-b14405?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔术江湖\",\n    \"author\": \"唐四方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希区柯克悬念故事集（典藏版）\",\n    \"author\": \"阿尔弗莱德・希区柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032016-4bcd4f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界经典悬念小说大合集（套装共36册）\",\n    \"author\": \"柯南・道尔/希区柯克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032007-e4a320?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁杀了她\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031938-22aa7e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类之子\",\n    \"author\": \"P.D.詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031398-7de6ed?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从前我死去的家\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031191-54f037?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明之街\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031164-4316c5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀局\",\n    \"author\": \"肯尼思・菲林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031116-8ca6cb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏日尽处\",\n    \"author\": \"荷曼・柯赫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030960-3f8658?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钟塔杀人事件\",\n    \"author\": \"青稞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030741-bf8a14?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜将至\",\n    \"author\": \"夏阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030720-355e2e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐僧\",\n    \"author\": \"马鸣谦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029931-767c9c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诗人\",\n    \"author\": \"迈克尔・康奈利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029874-6d65f7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽\",\n    \"author\": \"刘天壮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029829-454eb2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生吞\",\n    \"author\": \"郑执\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029547-23ac4c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十九年间谋杀小叙\",\n    \"author\": \"那多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029544-25e397?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"球形的荒野\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029529-9062a6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声尖叫\",\n    \"author\": \"安杰拉・马森斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029400-e9abf7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谋杀狄更斯\",\n    \"author\": \"丹・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029187-e28d8c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我嫁给了一个死人\",\n    \"author\": \"康奈尔・伍尔里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028947-dc320b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗诱惑\",\n    \"author\": \"劳瑞斯・安妮・怀特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028851-01a788?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"只有他知道一切\",\n    \"author\": \"利兹・纽金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027873-fe0d3b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"案发现场\",\n    \"author\": \"夏立楠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027852-c861dc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关上门以后\",\n    \"author\": \"B.A.帕里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027528-6941ca?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命绑架\",\n    \"author\": \"T.R.蕾根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027393-6fd896?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪3\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027291-d26495?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑城\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027018-59ae1b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大侦探波洛探案全集\",\n    \"author\": \"阿加莎・克里斯蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026937-aadc2c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探2：暴雪荒村\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026853-dd49e0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲爱的妹妹\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026841-1d5453?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蚕\",\n    \"author\": \"J·K·罗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026697-b1a344?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"控梦东京\",\n    \"author\": \"汤介生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026226-d799c7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：凶宅\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025707-e82630?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匠擎第一卷：闻香\",\n    \"author\": \"邪灵一把刀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025590-9aa211?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小心，沙漠有人\",\n    \"author\": \"沃尔夫冈・赫伦多夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025356-e71578?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日重现\",\n    \"author\": \"张寒寺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025080-f26716?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必须牺牲卡米尔\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025026-1615ad?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈洗冤录：一天明月\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024972-ddecbb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈洗冤录：满怀冰雪\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024981-db0d77?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天涯双探：青衣奇盗\",\n    \"author\": \"七名\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024957-78b9a0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阁楼里的女孩\",\n    \"author\": \"弗吉尼亚・安德鲁斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024612-a7d190?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无证之罪\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024528-07ae8b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：破镜\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024255-988eff?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺局（全六册）\",\n    \"author\": \"圆太极\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024114-fe0171?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象无形\",\n    \"author\": \"泽帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023754-5c70fc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海面之下\",\n    \"author\": \"克莱尔・道格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023733-847d94?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克里斯汀\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023559-14c275?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色\",\n    \"author\": \"徐兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023499-da43d2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钓鱼城\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023424-cc84f3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆迷踪\",\n    \"author\": \"启山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023262-aad346?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"护士学院杀人事件\",\n    \"author\": \"P.D. 詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023211-d473df?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022944-f7c29a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：嬗变\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022878-0c6f47?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相推理师：幸存\",\n    \"author\": \"呼延云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022872-4eb748?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她不是我妈妈\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022791-6f413a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天使安魂三部曲\",\n    \"author\": \"安德鲁・泰勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022779-c4d931?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越狱者\",\n    \"author\": \"迈克尔・罗伯森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022788-46d327?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的妻子\",\n    \"author\": \"卡洛琳・艾瑞克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022428-864380?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪2\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022272-fa2c80?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江户川乱步严选作品集（全13册）\",\n    \"author\": \"江户川乱步\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022008-610644?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021792-b895c1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"此刻不要回头\",\n    \"author\": \"达芙妮・杜穆里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021612-7599fd?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使徒：迷失者的续命游戏\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021576-539d1a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜行：黄雀\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021309-12556b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰亭序杀局3：长安乱\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021201-81e2a3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙海：荒沙诡影\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020958-faed28?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肯·福莱特悬疑经典第三辑（全5册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020748-afeb18?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"按需知密\",\n    \"author\": \"卡伦・克利夫兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020700-1334e6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冰岛人\",\n    \"author\": \"大卫・W・斯托克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020688-c01e06?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜琴声\",\n    \"author\": \"米克尔・圣地亚哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020685-c8c4cf?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血法医（1-4季全集）\",\n    \"author\": \"杰夫・林赛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追踪师：隐身术\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019731-80213a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火神\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019512-f9a3d9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"她一生的秘密\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019461-955552?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"窗里的女人\",\n    \"author\": \"A.J.费恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019425-42859a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火车上的女孩\",\n    \"author\": \"宝拉・霍金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019158-dd2452?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷案重启\",\n    \"author\": \"樊落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018711-c54542?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷案重启2逝者之证\",\n    \"author\": \"樊落\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018708-977e8b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018600-b9d116?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"召唤：沃伦夫妇的惊凶职业实录\",\n    \"author\": \"杰拉德・布利特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018570-279333?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"松本清张推理悬疑典藏版合集（套装共7册）\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018183-4e0feb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肯·福莱特悬疑经典第二辑（全5册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018117-10f5b0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"识骨女法医\",\n    \"author\": \"肯德拉・艾略特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017739-a00298?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录2：璇玑图密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017577-a5db59?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录3：长恨歌密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017571-2b8e05?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录4：大明宫密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017565-8c3d16?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"必须找到阿历克斯\",\n    \"author\": \"皮耶尔・勒迈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017547-046ce1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋夜行记\",\n    \"author\": \"金醉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017403-e378a6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白金数据\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017106-48640e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面山庄\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017007-44c053?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大漠苍狼全集\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016647-7f7bd1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长夜难明\",\n    \"author\": \"紫金陈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016476-b7c91b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半妖司藤\",\n    \"author\": \"尾鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016350-8e1316?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个神秘事件调查员的秘密笔记（套装6册）\",\n    \"author\": \"湘西鬼王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016068-93c839?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公寓\",\n    \"author\": \"格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015885-639546?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰亭序杀局1：玄甲卫\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015480-7833f1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兰亭序杀局2：天刑劫\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015471-7c9244?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拼布娃娃\",\n    \"author\": \"丹尼尔・科尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015456-f0ae77?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝圣者\",\n    \"author\": \"泰瑞・海耶斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015393-6c6f8d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轩辕诀（全四册）\",\n    \"author\": \"茶弦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015144-667e1c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪前传\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014943-24df7d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀大师：寻找伦勃朗\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014790-61ef46?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"封锁\",\n    \"author\": \"小白\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014763-d4c655?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014685-b41a25?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知更鸟女孩2：沉默之歌\",\n    \"author\": \"查克・温迪格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014682-90a977?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐形解体的传说\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014667-09665e?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宛如昨日\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014523-22941d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"双峰：神秘史\",\n    \"author\": \"马克・弗罗斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014412-cd4665?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探2\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014328-08fde8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半身侦探3\",\n    \"author\": \"暗布烧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014313-615c25?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明镜之书\",\n    \"author\": \"尤金・欧・切洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013845-ee2042?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪5\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013539-bb0b0c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别相信任何人\",\n    \"author\": \"S.J.沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013503-50bdc4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜追凶\",\n    \"author\": \"指纹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012603-73ece6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"螺旋之谜\",\n    \"author\": \"圣地亚哥・帕哈雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012579-c32ac7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们掩埋的人生\",\n    \"author\": \"艾伦・艾丝肯斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012543-04bf40?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灭顶之灾\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012426-b28838?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜子里的陌生人\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012408-160c95?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告诉我你的梦\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012423-329754?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祸起萧墙\",\n    \"author\": \"西德尼・谢尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012396-eaa984?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"偷窥者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012312-787a2f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"警察\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012075-898a34?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗处\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十三狱\",\n    \"author\": \"宁三意\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011406-15280c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"桐花中路私立协济医院怪谈\",\n    \"author\": \"南琅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010827-a4a422?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"案藏玄机（全三册）\",\n    \"author\": \"费克申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010836-3b043a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010515-8f34ca?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧美必读悬疑小说（勒普顿三部曲）\",\n    \"author\": \"罗莎蒙德・勒普顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010395-ddb236?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完美圈套\",\n    \"author\": \"莎拉・平博拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010317-e7c3c5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金沙古卷（套装全4册）\",\n    \"author\": \"鱼离泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009879-c71aec?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直到那一天\",\n    \"author\": \"米歇尔・普西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"七根凶简\",\n    \"author\": \"尾鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009606-e25f36?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"妹妹的坟墓\",\n    \"author\": \"罗伯特・杜格尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009549-e0506b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斗宴\",\n    \"author\": \"周浩晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009405-ada596?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"S.（简体中文典藏复刻版）\",\n    \"author\": \"艾布拉姆斯/道格・道斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009492-298aa7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙文身的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009378-d34fd6?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玩火的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009372-a23441?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直捣蜂窝的女孩\",\n    \"author\": \"斯蒂格・拉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009360-520652?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"交子\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009318-386aa1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"守夜者：罪案终结者的觉醒\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009135-83443d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上帝的间谍\",\n    \"author\": \"胡安・高美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009054-f7ad79?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与上帝的契约\",\n    \"author\": \"胡安・高美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009048-abcb1c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙砚：绝命追踪83天\",\n    \"author\": \"澹台镜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008679-d6db08?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻夜行\",\n    \"author\": \"谷神冥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008475-bfb778?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪屋女孩\",\n    \"author\": \"兰萨姆・里格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008331-4ae033?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪屋女孩2：空城\",\n    \"author\": \"兰萨姆・里格斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008328-d243c1?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重生\",\n    \"author\": \"斯蒂芬・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008217-788327?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷雾中的小径\",\n    \"author\": \"珍・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008196-9443bb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被囚禁的女孩\",\n    \"author\": \"香农・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008124-8a508a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别和她说话\",\n    \"author\": \"遇瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑神探\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007983-3adaee?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风暴岛\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007962-abffe2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银行家的情人\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007959-2bd28b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风的预谋\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007965-39fae5?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷宫蛛\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007929-055c31?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱雀堂\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪人\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"眼镜蛇事件\",\n    \"author\": \"理查德・普莱斯顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007788-93da89?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长江的密咒\",\n    \"author\": \"古官\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007782-6d755c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长安十二时辰（上下册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007776-effb94?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪4\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫图腾（套装共5册）\",\n    \"author\": \"闫志洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诡案罪（1-8册全）\",\n    \"author\": \"岳勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎豹（全二册）\",\n    \"author\": \"尤・奈斯博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活肝\",\n    \"author\": \"徐然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007356-185e81?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"木锡镇\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007266-6d2760?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑背鱼之谜\",\n    \"author\": \"鬼马星\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"猎鲨游戏之十重人格女孩\",\n    \"author\": \"王健霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十九级台阶\",\n    \"author\": \"约翰・巴肯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雾中回忆\",\n    \"author\": \"凯特・莫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理罪（套装共5册）\",\n    \"author\": \"雷米\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空中杀人现场\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007131-989aa8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我当道士那些年\",\n    \"author\": \"仐三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006999-908522?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的爱人\",\n    \"author\": \"吉莉安・弗琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006969-e58bb7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲁班的诅咒（珍藏版大全集）\",\n    \"author\": \"圆太极\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006924-c1b431?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗领域\",\n    \"author\": \"薇儿·麦克德米德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀1905大合集（共3册）\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个背叛日本的日本人\",\n    \"author\": \"松本清张\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006684-51a287?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐悬疑录：兰亭序密码\",\n    \"author\": \"唐隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006669-bfc526?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录1：苗乡巫祖\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006627-77614f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录2：清河鬼戏\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006624-d57c2b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录3：血海鬼船\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006621-9caf12?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录4：亡魂列车\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006618-334515?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录5：赌城妖灵\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006615-c3e5c9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民调局异闻录6：无边冥界\",\n    \"author\": \"耳东水寿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006612-8ac654?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"溥仪藏宝录2：最后的复辟挣扎\",\n    \"author\": \"景旭枫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸案调查科系列（全5册）\",\n    \"author\": \"九滴水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家阴谋5：火焰王子\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006324-542463?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麻雀\",\n    \"author\": \"海飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006330-3fd9d3?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖畔\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006276-021007?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦幻花\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006285-d59ca9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太阳黑子\",\n    \"author\": \"须一瓜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006282-cd6c39?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十宗罪\",\n    \"author\": \"蜘蛛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄仁杰探案合集\",\n    \"author\": \"安娜芳芳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006201-8b8292?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫禁城魔咒（套装全三册）\",\n    \"author\": \"简千艾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006153-a21e3d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死亡性插图\",\n    \"author\": \"凿壁小妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻夜\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006108-1a3150?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀人之门\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006096-17ed58?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"X密码\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006093-af6566?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗族\",\n    \"author\": \"缪热\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"异域密码大全集（套装共四册）\",\n    \"author\": \"羊行屮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家阴谋：复仇天使四部曲\",\n    \"author\": \"丹尼尔・席尔瓦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006003-518eb4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"假面饭店\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005967-2f931b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之尸体加工厂\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之活体贩卖者\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地密码（珍藏版大全集）\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白夜行\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005571-dd15d9?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嫌疑人X的献身\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005562-da1f3c?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶意\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005559-8e2a02?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放学后\",\n    \"author\": \"东野圭吾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005553-facaec?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗墓笔记（插图版）\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005646-e7641b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"7本书带你走进间谍圈（全七册）\",\n    \"author\": \"弗·福赛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和氏璧\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明宫奇案\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斧声烛影\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国机密（全两册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉公主\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005241-e78c9b?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"案藏杀机：清代四大奇案卷宗\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005223-8942a8?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：碧海青天\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005196-b63054?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔雀胆\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐游侠\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战襄阳\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005190-4212a2?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼玄机\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柳如是：柳色独秀\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005166-82c235?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"连环罪：心里有诡系列（上下册）\",\n    \"author\": \"墨绿青苔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古董局中局（全四册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005145-bf3740?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女法医之骨头收藏家\",\n    \"author\": \"戴西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼吹灯全集（插图版）\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004863-5bc405?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸存者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清道夫\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第十一根手指\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无声的证词\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尸语者\",\n    \"author\": \"秦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866\",\n    \"category\": \"悬疑\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影家是怎样炼成的-进阶版（套装全5册）\",\n    \"author\": \"孙晓岭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504063-e299df?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摄影家是怎样炼成的（套装全8册）\",\n    \"author\": \"陈丹丹等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506595-5c52dc?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布光是门大学问\",\n    \"author\": \"克里斯汀・霍夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511296-8d6ccf?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高品质摄影全流程解析（套装全9册）\",\n    \"author\": \"斯科特・凯尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513114-e51622?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻美：摄影中的东方美学\",\n    \"author\": \"青简\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术馆漫步：法国、伦敦、西班牙（全三册）\",\n    \"author\": \"崔瓊化等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986452-33c37f?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手机摄影轻松学\",\n    \"author\": \"李华春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985684-e8624f?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光博物馆\",\n    \"author\": \"人民日报社新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华遗韵\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美之地图\",\n    \"author\": \"米哈埃拉・诺洛茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京风格\",\n    \"author\": \"都筑响一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047016-279986?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰子恺：写给大家的简明艺术启蒙（套装共5册）\",\n    \"author\": \"丰子恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045609-c32fd3?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看懂艺术\",\n    \"author\": \"翁昕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043074-fa6d7a?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强大，漂亮的新定义\",\n    \"author\": \"凯特·T·帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026319-23d0f4?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日16：写真\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025425-cad07f?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"理解一张照片\",\n    \"author\": \"约翰・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我从战场归来\",\n    \"author\": \"唐师曾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"论摄影（插图珍藏本）\",\n    \"author\": \"苏珊・桑塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写真的思考\",\n    \"author\": \"饭泽耕太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005058-c4eaa8?p=8866\",\n    \"category\": \"摄影\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图绘暹罗\",\n    \"author\": \"通猜・威尼差恭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866\",\n    \"category\": \"泰国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰国通史\",\n    \"author\": \"段立生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023805-06bd3d?p=8866\",\n    \"category\": \"泰国\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塑造世界经济的50项伟大发明\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866\",\n    \"category\": \"发明\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊效应\",\n    \"author\": \"娜塔莉・伯格/米娅・奈茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级转化率\",\n    \"author\": \"陈勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"25%的回头客创造75%的利润\",\n    \"author\": \"高田靖久\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售的本质\",\n    \"author\": \"本多利范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售\",\n    \"author\": \"范鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028200-21484f?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售进化论\",\n    \"author\": \"陈欢/陈澄波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永远的零售\",\n    \"author\": \"厉玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021438-4c2d0b?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售心理战\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015999-2d2d27?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富甲美国\",\n    \"author\": \"山姆・沃尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014853-c66266?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"名创优品没有秘密\",\n    \"author\": \"杜博奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新零售时代三部曲（套装共三册）\",\n    \"author\": \"杰弗里・米勒/大卫・贝尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零售哲学系列：7-11便利店创始人自述（套装共2册）\",\n    \"author\": \"铃木敏文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866\",\n    \"category\": \"零售\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国四百年\",\n    \"author\": \"布・斯里尼瓦桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375490923-e9b635?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六朝文明（中译修订版）\",\n    \"author\": \"丁爱博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491355-eb0d4e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金：权力与财富的世界简史\",\n    \"author\": \"伯德・史蒂芬・格雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491481-144bc0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹集中营史（全2册）\",\n    \"author\": \"尼古劳斯・瓦克斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491625-c415d8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变历史的香料商人\",\n    \"author\": \"贾尔斯・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491709-49d668?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲人与权臣\",\n    \"author\": \"詹姆斯・罗姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491652-6fd685?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊思想与文化\",\n    \"author\": \"吴晓群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491883-e507e4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭的失落之城\",\n    \"author\": \"斯蒂文・朗西曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491781-3f42cf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大酋长伊丽莎白\",\n    \"author\": \"贾尔斯・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491760-3ce9b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"疑案里的中国史\",\n    \"author\": \"艾公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492021-d4507b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十六史：完本精校大全集\",\n    \"author\": \"尹小林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492978-9ee6ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球海盗史\",\n    \"author\": \"彼得・莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492117-e4c788?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"作家们的作家\",\n    \"author\": \"克雷格・惠特洛克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492210-4f29b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联文史新论（套装21册）\",\n    \"author\": \"王家范等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492912-36485b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读通鉴论（全本全注全译）\",\n    \"author\": \"王夫之等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492498-e835e5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界环境史\",\n    \"author\": \"威廉·H. 麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492747-a5c12b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣殿骑士团：从神坛跌落尘埃\",\n    \"author\": \"迈克尔・克里根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493314-61cf2a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度6\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493095-500939?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国史译（全7册）\",\n    \"author\": \"伊利娜・谢尔盖耶夫娜・雷巴乔诺克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493698-8e176a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿得起放不下的大唐史（套装共6册）\",\n    \"author\": \"九皋寒叟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493803-e9b7e5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸神的黄昏\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天中华史（全24卷）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495477-bb3864?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海外中国研究套书合集（50册）\",\n    \"author\": \"杜赞奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375494265-1152a5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津欧洲史\",\n    \"author\": \"威廉·多伊尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495393-244d19?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反战之战\",\n    \"author\": \"乌娜·A. 海瑟薇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495162-eff7e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋代中国的改革\",\n    \"author\": \"刘子健\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375495447-1ca964?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的十字军东征\",\n    \"author\": \"奈杰尔・克利夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏斐德上海三部曲\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375496977-14fca6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布拉格：欧洲的十字路口\",\n    \"author\": \"德里克・塞耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497352-fa1e56?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：古典时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497439-2b024e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：帝国时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497445-985dca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲史：转型时代\",\n    \"author\": \"诺曼・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497463-481df6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超实用的日本史\",\n    \"author\": \"后藤武士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497544-bdb659?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民族国家间的和平与战争（全2册）\",\n    \"author\": \"雷蒙・阿隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497541-2895bb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第三卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497601-28eb3a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋帝国的崛起\",\n    \"author\": \"安东・范德伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别人的动物园\",\n    \"author\": \"扬・莫恩浩特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497574-d5742d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第一卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国从此走向大唐\",\n    \"author\": \"叶言都\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497640-aa733a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方古典学术史（第二卷）\",\n    \"author\": \"约翰・埃德温・桑兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497706-77e84b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国与蛮族\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本战国群雄系列（套装八册）\",\n    \"author\": \"山冈庄八等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497868-3fc56a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊三百年\",\n    \"author\": \"罗德里克・比顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498024-c93e11?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走进博物馆（套装12册）\",\n    \"author\": \"陕西省文物局\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498555-c1a8e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大萧条前夜的繁荣与疯狂\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"煌煌商周\",\n    \"author\": \"高虫二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498399-fe1caa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的三国史（套装共3册）\",\n    \"author\": \"醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498435-696d7b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宽著作集第一辑+第二辑（13种15册全）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498888-2686f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本及其历史枷锁\",\n    \"author\": \"塔格特・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498516-d910c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命前夕的图书世界\",\n    \"author\": \"罗伯特・达恩顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498648-a7b92b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横滨中华街（1894～1972）\",\n    \"author\": \"韩清安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498627-a64b34?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟着文物穿越历史\",\n    \"author\": \"张志浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝来了\",\n    \"author\": \"马菁菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒枪手：慕尼黑的秘密间谍\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文治帝国\",\n    \"author\": \"艾公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498795-f4db48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明兴衰三百年\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498804-6bd132?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史纲\",\n    \"author\": \"李筠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498807-cf24d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佩拉宫的午夜\",\n    \"author\": \"查尔斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498822-cf18fd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文：近代日本奠基人\",\n    \"author\": \"伊藤之雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498831-0dc067?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九说中国系列（第一辑·全九册）\",\n    \"author\": \"江晓原等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498858-bb9ccb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海世界一万五千年\",\n    \"author\": \"阿兰・布隆迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498942-9f4334?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊文明的光芒\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499062-3dfd8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业革命前的欧洲社会与经济\",\n    \"author\": \"卡洛·M. 奇波拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹猎人\",\n    \"author\": \"安德鲁・纳戈尔斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499107-ffa76f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诅咒之塔\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499152-78edc0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第三辑（套装共10册）\",\n    \"author\": \"汉娜・韦斯特莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499902-209173?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊朗四千年\",\n    \"author\": \"霍昌・纳哈万迪/伊夫・博马提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499314-26cba2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎陷落\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499338-db0284?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路大历史\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499356-2aa497?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国经济风暴\",\n    \"author\": \"张昕冉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499353-a57622?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志理想主义的诞生：席勒传\",\n    \"author\": \"吕迪格尔・萨弗兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499365-050061?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西乡隆盛与明治维新\",\n    \"author\": \"坂野润治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499371-114dcf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大加速：1945年以来人类世的环境史\",\n    \"author\": \"约翰·R.麦克尼尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499380-1d1f87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凝视上帝\",\n    \"author\": \"西蒙・赫弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499425-8eff3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美利坚的民族\",\n    \"author\": \"科林・伍达德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499449-5b4652?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凡尔登战役\",\n    \"author\": \"阿利斯泰尔・霍恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转向：世界如何步入现代\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辉煌信标：美国灯塔史\",\n    \"author\": \"埃里克・杰・多林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499494-7adcd3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乱世四百年（全3册）\",\n    \"author\": \"张程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499563-57bb66?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玛雅三千年\",\n    \"author\": \"西尔韦纳斯・莫利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499653-c0d007?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清华建筑小史全系套装（套装共6册）\",\n    \"author\": \"孙大章等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500016-12c10e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"珞珈筑记\",\n    \"author\": \"刘文祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499812-bde5c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第一辑（套装共10册）\",\n    \"author\": \"乔恩・怀特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500310-1289b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"萤火虫丛书第二辑（套装共10册）\",\n    \"author\": \"艾米・贝斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500640-a5b55f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绯闻艺术史\",\n    \"author\": \"林微云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499971-4d8b4d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共有的习惯\",\n    \"author\": \"E.P. 汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500268-020026?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"画以人传\",\n    \"author\": \"陈文璟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"100个物品中的德国历史\",\n    \"author\": \"赫尔曼・舍费尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500205-230f28?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四大帝国兴衰史（套装共4册）\",\n    \"author\": \"塞西尔・詹金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500286-2a28e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大战：1914～1918年的世界（全2册）\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500367-921478?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚时代\",\n    \"author\": \"朱迪丝・弗兰德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500562-7ac52d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利瓦尔\",\n    \"author\": \"玛丽・阿拉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500586-2ba984?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索恩日本史（全三卷）\",\n    \"author\": \"乔治・贝利・桑瑟姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500676-41bbe4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简读日本史\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500772-59176a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的历史精华·贝克知识丛书（套装共21册）\",\n    \"author\": \"汉斯-克里斯托弗・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500913-fd0de9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时代\",\n    \"author\": \"马丁·J. 多尔蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501063-141e2f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被隔绝的女孩\",\n    \"author\": \"巴尔特・范埃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501051-01d0ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祥瑞：王莽和他的时代\",\n    \"author\": \"张向荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501060-79c4bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骑士团九百年\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501162-ae68dd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·日本的历史套装（全10册）\",\n    \"author\": \"寺泽薫等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501306-1c097f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重返帕米尔\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501357-a9c1bd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服，1016-1130西西里的诺曼王朝Ⅰ\",\n    \"author\": \"约翰・朱利叶斯・诺威奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501414-844f43?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王国，1130-1194西西里的诺曼王朝Ⅱ\",\n    \"author\": \"约翰・朱利叶斯・诺威奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501453-a22ed4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本社会变迁研究套书（全4卷）\",\n    \"author\": \"中国日本史学会东北师范大学东亚研究院\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501510-03fea8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传染病与人类历史\",\n    \"author\": \"约书亚·S.卢米斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501513-c3ab6e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"星空5500年\",\n    \"author\": \"爱德华・布鲁克-海钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金线：织物如何改变了历史？\",\n    \"author\": \"卡西亚・圣克莱尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375501624-793bc8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茅海建作品集（套装共5册）\",\n    \"author\": \"茅海建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502044-913caf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎东方讲史（套装共九册）\",\n    \"author\": \"黎东方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502284-a5d182?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三联当代学术丛书（套装10册）\",\n    \"author\": \"茅海建等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502293-05fab8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国的知识与制度转型\",\n    \"author\": \"桑兵/关晓红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502335-2fab88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本1941：导向深渊的决策\",\n    \"author\": \"堀田江理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502557-d83fcc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四运动史\",\n    \"author\": \"周策纵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502563-5afaed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争艺术史（全4卷）\",\n    \"author\": \"汉斯・德尔布吕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375502593-9217ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画百年党史·开天辟地\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503298-2b5d77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国统治的逻辑\",\n    \"author\": \"赫尔弗里德・明克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李洁非明史系列三部曲\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503595-333015?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史帝国篇（第四季12册）\",\n    \"author\": \"查尔斯欧曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505485-7d1366?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰民族\",\n    \"author\": \"T.M.迪瓦恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503739-f61668?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"规训、惩罚与征服\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503931-6e6be2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英格兰简史大套装（套装共十册）\",\n    \"author\": \"埃德・韦斯特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504159-936447?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新编历史-元明清简史系列\",\n    \"author\": \"吴玉章等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504225-455a2a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新编历史小丛书（人物篇）\",\n    \"author\": \"戴毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504273-c088ee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史记（精注全译）（全12册）\",\n    \"author\": \"司马迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504366-972bdd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色的旗，蓝色的海\",\n    \"author\": \"埃里克・杰・多林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504423-4afc88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法度与人心\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504462-48faff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史战争篇（第三季12册）\",\n    \"author\": \"查尔斯欧曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505293-a53fe1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华学人丛书（第一辑）（套种共十五册）\",\n    \"author\": \"李细珠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504888-0865cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史大师课（全三册）\",\n    \"author\": \"许宏等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504945-912385?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京绮梦\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375504987-bfdd8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书信中的世界史\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505836-f1bc65?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落文明系列（套装共7卷）\",\n    \"author\": \"克里斯蒂娜・里格斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命史译丛（套装共六册）\",\n    \"author\": \"哈里・狄金森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506574-7351e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王树增战争系列（全5册）\",\n    \"author\": \"王树增\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506748-bc1f58?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马文学史（全3册）\",\n    \"author\": \"江澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506940-b655c7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南宋不忍细看\",\n    \"author\": \"晏建怀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506802-d15dec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国不演义\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506904-b9f4ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国史学要籍丛刊（全十三册）\",\n    \"author\": \"司马迁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507369-8d2f54?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隳三都\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507117-ec7ad5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人间烟火\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507471-468a0e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色雅典娜：古典文明的亚非之根（套装全3卷共5册）\",\n    \"author\": \"马丁・贝尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未名中国史丛刊\",\n    \"author\": \"李孝聪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508422-bc780c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方学者眼中的东方伟人（套装共三册）\",\n    \"author\": \"迪克・威尔逊/迪克・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508434-a870e5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国建筑与历史文化精选（套装共5本）\",\n    \"author\": \"汪荣祖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李顿调查团档案文献集\",\n    \"author\": \"郭昭昭等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508902-ee3647?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被遗忘的海上中国史\",\n    \"author\": \"罗荣邦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508914-0714ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明：文化、野心，以及人与自然的伟大博弈\",\n    \"author\": \"菲利普・费尔南多-阿梅斯托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508923-b0e527?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的崛起\",\n    \"author\": \"约翰・马里奥特/格兰特・罗伯逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508947-f67a76?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新史学&#038;多元对话系列（第一辑）\",\n    \"author\": \"陈怀宇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509076-0c1223?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人四千年（全两册）\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代人的日常生活2\",\n    \"author\": \"王磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509049-84a6b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"物语日本史（全3册）\",\n    \"author\": \"平泉澄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509064-03b3d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治维新以来日本涉华学术调查系列丛书（套装共5册）\",\n    \"author\": \"常盘大定等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509337-ad0d6b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国的策套装（全五册）\",\n    \"author\": \"许葆云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509265-83b7d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京时代与英格兰\",\n    \"author\": \"埃莉诺・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代国字号事物的命运\",\n    \"author\": \"桑兵/关晓红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509313-0f5a5a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人三千年简史\",\n    \"author\": \"雷蒙德・P.谢德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦制两千年\",\n    \"author\": \"谌旭彬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509367-728e53?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陋规：明清的腐败与反腐败\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509385-821866?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奶酪与蛆虫\",\n    \"author\": \"卡洛・金茨堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509391-1e6f1a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲给大家的中国历史（套装共9册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509490-b9fe88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夜间的战斗\",\n    \"author\": \"卡洛・金茨堡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509478-1024cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第一辑（套装共4册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逝物录\",\n    \"author\": \"尤迪特・沙朗斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家地理全球史第二辑（套装共6册）\",\n    \"author\": \"美国国家地理学会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传奇之家：托马斯·曼一家的故事\",\n    \"author\": \"蒂尔曼・拉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509748-852c52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第二季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的五个德国\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相：裕仁天皇与现代日本的形成\",\n    \"author\": \"赫伯特・比克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509922-37c72a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滔天洪水\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家国与世情\",\n    \"author\": \"十年砍柴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509973-b55da1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毒品史：美国和墨西哥的百年恩怨\",\n    \"author\": \"卡门・博洛萨/迈克・华莱士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510021-718e77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个世纪的抗争：美国女权运动史\",\n    \"author\": \"埃莉诺・弗莱克斯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510030-25e3e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想的轨迹\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510099-304ff5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战的终结：1985-1991\",\n    \"author\": \"罗伯特・瑟维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510135-274388?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马勇讲清史（全5册）\",\n    \"author\": \"唐彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510183-c8ea60?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"反败为胜\",\n    \"author\": \"威廉・斯利姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510168-994493?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸运儿：晚清留美幼童的故事\",\n    \"author\": \"利尔・莱博维茨/马修・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510192-ccbbf4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"索恩人物传记生而为王（全13册）\",\n    \"author\": \"汉内斯・默林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西学三书（套装共三册）\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510249-849869?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由主义被遗忘的历史\",\n    \"author\": \"海伦娜・罗森布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510303-b7bcd2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫禁城的荣光\",\n    \"author\": \"冈田英弘/神田信夫/松村润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510330-9ffe7e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本开国五十年史（全52卷）\",\n    \"author\": \"大隈重信\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510348-4cff4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上谈兵\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界史的故事（套装共6册）\",\n    \"author\": \"苏珊・怀斯・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510552-7ebbe2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊罗马名人传（全五册）\",\n    \"author\": \"普鲁塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张宗和日记（全二卷）\",\n    \"author\": \"张宗和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510597-3f3fea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张荫麟作品集（套装共四册）\",\n    \"author\": \"张荫麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510609-e084e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王的归程\",\n    \"author\": \"威廉・达尔林普尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510789-d047d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国原生文明启示录（全新修订版）\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510822-79b18c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西双皇后\",\n    \"author\": \"南希・戈德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录（全本全注全译）\",\n    \"author\": \"杨春俏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊藤博文\",\n    \"author\": \"泷井一博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与革命心理学\",\n    \"author\": \"古斯塔夫・勒庞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史前人类生活大辟谣\",\n    \"author\": \"安托万・巴尔泽奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511002-65432a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高清一战全史（套装全3册）\",\n    \"author\": \"特霍兰・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511767-d6f291?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"花之忠臣藏\",\n    \"author\": \"野口武彦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511146-d2b38e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·克伦威尔\",\n    \"author\": \"特蕾西・博尔曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511191-682a44?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉家天下（1-4册）\",\n    \"author\": \"清秋子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"空王冠\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511281-8b102c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"2000年以来的西方\",\n    \"author\": \"刘擎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511290-e2db6a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"条顿骑士团\",\n    \"author\": \"威廉・厄本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511374-0df96e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民族的重建\",\n    \"author\": \"蒂莫西・斯奈德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511398-d8e38f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦谜：重新发现秦始皇（插图增订版）\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511506-fe2b0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将成为国王的教宗\",\n    \"author\": \"大卫・科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511473-61ec1e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的古希腊\",\n    \"author\": \"王冬妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511563-62e19d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岩波日本史（共8卷）\",\n    \"author\": \"吉村武彦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511677-107009?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亨利八世与都铎王朝\",\n    \"author\": \"约翰・马图夏克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511740-575290?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦室：大卫·林奇传\",\n    \"author\": \"大卫・林奇/克里斯汀・麦肯纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511773-8b51cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列二共13册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511929-1ff7f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人\",\n    \"author\": \"埃米尔・路德维希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511845-4ad275?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大奥日本\",\n    \"author\": \"茂吕美耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511923-5b1f3b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命和拿破仑\",\n    \"author\": \"林恩・亨特/杰克・R. 森瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512043-6f670b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"度量衡简史\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511983-ec1b7c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"龙马史\",\n    \"author\": \"矶田道史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511986-128e0c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：欧洲文明如何塑造现代世界\",\n    \"author\": \"胡里奥・克雷斯波・麦克伦南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512004-f37e6f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国的世界征服\",\n    \"author\": \"约西姆・巴克汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512010-b9109b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列总理私人史\",\n    \"author\": \"耶胡达・阿夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512085-4d09ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国：七雄博弈\",\n    \"author\": \"朱良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512049-91370e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁幕欧洲之新生\",\n    \"author\": \"卡尔・施勒格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1840年以来的中国\",\n    \"author\": \"王人博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512094-24957e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"津巴多口述史\",\n    \"author\": \"菲利普· 津巴多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512103-83c3d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"切尔诺贝利的午夜\",\n    \"author\": \"亚当・希金博特姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512130-738686?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非凡抄本寻访录\",\n    \"author\": \"克里斯托弗・德・哈梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512256-da56df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶病年代\",\n    \"author\": \"埃德・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512205-c22f7a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帖木儿之后\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512304-8a0c34?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走向火焰\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512313-ff672a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗曼诺夫皇朝\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512334-c3c90b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本5000年\",\n    \"author\": \"彭兴庭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512352-c23aa4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希罗多德的镜子\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512361-e3c598?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法老的宝藏\",\n    \"author\": \"约翰・高德特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512496-f7d5bd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布与大航海时代\",\n    \"author\": \"华盛顿・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512508-b18cf7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"男人们的故事（套装3册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512532-808aae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲骨文有故事\",\n    \"author\": \"许进雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512556-901413?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高清日本战国史（套装全4册）\",\n    \"author\": \"樱雪丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512547-9faf73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白寿彝史学二十讲套装（共十一册）\",\n    \"author\": \"白寿彝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512733-8591d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德川幕府与御三家\",\n    \"author\": \"河合敦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512616-03b4fd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九色鹿·唐宋系列（全五册）\",\n    \"author\": \"冯立君等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512697-5d7133?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出发去希腊\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512691-8dea22?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"多极亚洲中的唐朝\",\n    \"author\": \"王贞平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512703-66fba9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战东线全史（套装全13卷）\",\n    \"author\": \"朱世巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513234-e38f4b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽灵帝国拜占庭\",\n    \"author\": \"理查德・菲德勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古埃及女性\",\n    \"author\": \"克里斯蒂安・雅克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512898-c00ee5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得看完的中国史\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512874-eab20b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍与叛徒\",\n    \"author\": \"本・麦金泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512889-07541d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚汉双雄\",\n    \"author\": \"渤海小吏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟随利玛窦来中国\",\n    \"author\": \"张西平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513096-e1c1a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"横渡孟加拉湾\",\n    \"author\": \"苏尼尔・阿姆瑞斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513060-c0b1a2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华民国专题史（套装共18册）\",\n    \"author\": \"王川等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513258-eca3f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西世界史\",\n    \"author\": \"帕特里克・布琼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513288-07aed4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭三部曲\",\n    \"author\": \"约翰・朱利叶斯・诺里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513423-1f607d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郭论：第一季（共3册）\",\n    \"author\": \"郭德纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西洋镜合集\",\n    \"author\": \"赵省伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513801-cd009d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路的世界\",\n    \"author\": \"海尔曼-约瑟夫・弗里施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513564-0046f8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"消失的古城\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊史：从梭伦时代到公元前403年\",\n    \"author\": \"乔治・格罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513582-255bbf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的歧路\",\n    \"author\": \"马国川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513606-dd29b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路上的帝国\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513621-d0eb00?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉字与文物的故事（套装共4册）\",\n    \"author\": \"许进雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513744-067186?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛极简中国史（修订珍藏版）\",\n    \"author\": \"阿尔伯特・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513678-179769?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古史六案\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513729-d47abf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：从蓬莱到罗马\",\n    \"author\": \"高洪雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513765-208e02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大人物的世界史\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513792-4193e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：十二种唐朝人生\",\n    \"author\": \"魏泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513810-ba6f6d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛世：西汉\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004632-07093a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盛世：康乾\",\n    \"author\": \"侯杨方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004629-21ceb7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴逸文集（套装共12册）\",\n    \"author\": \"戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004710-58e865?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汗之怒\",\n    \"author\": \"周思成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004506-1bb50d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC苏格兰史\",\n    \"author\": \"尼尔・奥利弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越非洲两百年\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004452-fd0c14?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当大明遇上大清（全二册）\",\n    \"author\": \"宿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004389-c9a2fa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国不平等的起源\",\n    \"author\": \"伊莎贝尔・威尔克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的抵抗\",\n    \"author\": \"宿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004233-6220df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生死秦始皇\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004158-8201b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深蓝帝国：英国海军的兴衰\",\n    \"author\": \"本・威尔逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿诺德·汤因比传\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003873-4b5f8b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银、剑、石：拉丁美洲的三重烙印\",\n    \"author\": \"玛丽・阿拉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003672-fa8a61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的战争（1618-1648）\",\n    \"author\": \"约翰内斯・布克哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003393-26399e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把世界装进火柴盒\",\n    \"author\": \"西蒙・加菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003369-e3fa61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新元史（全十册）\",\n    \"author\": \"柯劭忞等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003306-a208db?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚蠢的人类\",\n    \"author\": \"汤姆・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003243-bbb6f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向您告知，明天我们一家就要被杀\",\n    \"author\": \"菲利普・古雷维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003192-ccdfef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"密码女王\",\n    \"author\": \"贾森・法戈内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的荣耀\",\n    \"author\": \"历史研习社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003117-b1094a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度5\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将无同\",\n    \"author\": \"胡宝国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002655-622be6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国妆束：大唐女儿行\",\n    \"author\": \"左丘萌/末春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史景迁作品12册套装\",\n    \"author\": \"史景迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002556-1557e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上丝绸之路\",\n    \"author\": \"罗德里希・普塔克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002505-7e6ed9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从考古发现中国\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一路向西：东西方3000年\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002199-fb7d77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的战败\",\n    \"author\": \"桥本明子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002115-41f1b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10000年中国艺术史（全2册）\",\n    \"author\": \"王逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002127-c9e3e5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有趣得让人睡不着的中国史\",\n    \"author\": \"历史君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002040-b2ebf4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山居杂忆\",\n    \"author\": \"高诵芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002007-f88da6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏着：一个西班牙人的33年内战人生\",\n    \"author\": \"罗纳德・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001866-8ba183?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好看到睡不着的中国史（全4册）\",\n    \"author\": \"史壮宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001776-6db8e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方博弈往事\",\n    \"author\": \"九边\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001752-65085c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一读就上瘾的中国史\",\n    \"author\": \"温伯陵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001608-8e9514?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝：一座罗马城市的生与死\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001596-3c92ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中西医的博弈\",\n    \"author\": \"皮国立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本权力结构之谜\",\n    \"author\": \"卡瑞尔・范・沃尔夫伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000906-aafbe6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类善恶小史\",\n    \"author\": \"策妄・阿拉布坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000900-ed1aca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国：大暗黑时代的前奏曲\",\n    \"author\": \"鸟山居士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000855-46c47a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"4000年中国天文史\",\n    \"author\": \"让・马克・博奈・比多\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000792-a0a2d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国（全新插图珍藏版）\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000723-5e1d6c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代朝鲜与日本\",\n    \"author\": \"赵景达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000528-ff6dab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"包罗万象中外历史精选集（套装共20册）\",\n    \"author\": \"汤姆・利文等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000627-ea3343?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的大洋\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"应仁之乱\",\n    \"author\": \"吴座勇一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000261-4a809a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷兰海洋帝国史\",\n    \"author\": \"顾卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服的怒潮\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000099-60af65?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从那霸到上海\",\n    \"author\": \"孙歌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999979-26d9ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史上的大帝国\",\n    \"author\": \"加布里埃尔・马丁内斯-格罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999973-6bcd2f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国套装（共2册）\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999904-67d00c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"毕竟战功谁第一（修订典藏本）\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999745-d06b6f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终结所有和平的和平\",\n    \"author\": \"戴维・弗罗姆金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999736-5c71a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国史\",\n    \"author\": \"郑寅达/陈旸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津艺术史系列（第一辑）\",\n    \"author\": \"罗宾・奥斯本等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常之人\",\n    \"author\": \"张明扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999418-3ae058?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怀柔远人\",\n    \"author\": \"何伟亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗黑之门\",\n    \"author\": \"理查德・阿尔德里奇/罗里・科马克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋之变，1063-1086\",\n    \"author\": \"赵冬梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999199-15db8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔之城\",\n    \"author\": \"保罗・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999031-bcb0af?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国霸权\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争三部曲\",\n    \"author\": \"唐纳德・卡根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998965-3139a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998593-2b2916?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审判希特勒\",\n    \"author\": \"大卫・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998536-d8c07b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（经济篇）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"许倬云说美国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰晤士：大河大城\",\n    \"author\": \"彼得・阿克罗伊德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海权：海洋帝国与今日世界\",\n    \"author\": \"詹姆斯・斯塔夫里迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997723-fe76ef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"肮脏的三十年代\",\n    \"author\": \"蒂莫西・伊根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋与汉道\",\n    \"author\": \"陈苏镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997624-363d35?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷之前的艾希曼\",\n    \"author\": \"贝蒂娜・施汤内特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997453-459c45?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒与20世纪德国\",\n    \"author\": \"汉斯・莫姆森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997363-fc796f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"严嵩与张居正\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997336-91c17f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新美国\",\n    \"author\": \"弗雷德里克・洛根・帕克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史2\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997261-6d28e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盟友\",\n    \"author\": \"琳恩・奥尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超有料漫画中国史3\",\n    \"author\": \"韩明辉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996865-28d03d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国内战史：1861-1865\",\n    \"author\": \"詹姆斯・福特・罗德斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996796-130fe4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命与法兰西第一帝国\",\n    \"author\": \"威廉・奥康纳・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996736-b9c328?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美洲奴隶贸易\",\n    \"author\": \"约翰・伦道夫・斯皮尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996619-c30f76?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿育王\",\n    \"author\": \"文森特・阿瑟・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996580-36df48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"承袭的权力\",\n    \"author\": \"乔瓦尼・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996505-07420a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民主德国的秘密读者\",\n    \"author\": \"齐格弗里德・洛卡蒂斯/英格里德・宗塔格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996481-32da34?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"使日十年\",\n    \"author\": \"约瑟夫・C.格鲁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996427-a28791?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三十年战争史：1618-1648\",\n    \"author\": \"塞缪尔・罗森・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史：从拜占庭建城到君士坦丁堡陷落\",\n    \"author\": \"查尔斯・奥曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996493-f3ded1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊史（全两册）\",\n    \"author\": \"查尔斯・奥曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996343-d966c9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国成长三部曲\",\n    \"author\": \"弗雷德里克・刘易斯・艾伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996151-fcfc33?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳大利亚史\",\n    \"author\": \"欧内斯特・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996043-23ee0f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战：繁荣的幻灭\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战：黑暗的年代\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995848-9bb1c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杰斐逊总统\",\n    \"author\": \"约翰・托里・莫尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国艺术史\",\n    \"author\": \"塞缪尔·G.W.本杰明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995716-d01373?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海上帝国：现代航运世界的故事\",\n    \"author\": \"洛丽・安・拉罗科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995551-55cc18?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透《资治通鉴》（战国到三国·共7册）\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995530-d3ff91?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度文明史\",\n    \"author\": \"常磐大定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995485-394351?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清史九讲\",\n    \"author\": \"内藤湖南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995440-976d6f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马三巨头\",\n    \"author\": \"查尔斯・梅里维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995458-5d95b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两京十五日（全2册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995422-f90173?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国哲学史\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史5\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995404-e9c71c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨兽：工厂与现代世界的形成\",\n    \"author\": \"乔舒亚・B.弗里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人眼中的中国史（全4册）\",\n    \"author\": \"堀敏一等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995227-02574c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术哲学（作家榜经典文库）\",\n    \"author\": \"H. A. 丹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的镜子（全新修订版）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与传奇\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995116-27f3e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"客居己乡\",\n    \"author\": \"哲尔吉・康拉德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大故宫六百年风云史\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大梦无疆\",\n    \"author\": \"西蒙・佩雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战时中国1940-1946\",\n    \"author\": \"格兰姆・贝克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995017-6778ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国：一个国家的记忆\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人史纲\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺曼征服\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"床的人类史\",\n    \"author\": \"布莱恩・费根/纳迪亚・杜兰尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴力与反暴力\",\n    \"author\": \"谭旋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994615-7c3ab4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"廷巴克图\",\n    \"author\": \"约书亚・哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉兴亡四百年2\",\n    \"author\": \"李金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994534-e30d7c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史与人类的未来（修订版）\",\n    \"author\": \"弗雷德・斯皮尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994171-41fd5a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的前半生（全本）\",\n    \"author\": \"爱新觉罗・溥仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分身：新日本论\",\n    \"author\": \"李永晶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356993670-c0a10d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"始皇帝：秦始皇和他生活的时代\",\n    \"author\": \"鹤间和幸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992335-5f1bd7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"何以中国\",\n    \"author\": \"许宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史性的体制\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赌徒恺撒\",\n    \"author\": \"马丁・耶内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武英殿本四库全书总目·上（1-30册）\",\n    \"author\": \"纪昀等纂修编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994612-c07393?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武英殿本四库全书总目·下（31-60册）\",\n    \"author\": \"纪昀等纂修编\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994516-301912?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"公司与将军\",\n    \"author\": \"亚当・克卢洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991738-0e7446?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冈仓天心东方美学三书\",\n    \"author\": \"冈仓天心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991678-e1d2d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"菊花王朝\",\n    \"author\": \"胡炜权\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991672-1fcdce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的本质\",\n    \"author\": \"A.C.葛瑞林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯维辛的文身师\",\n    \"author\": \"希瑟・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991558-daf390?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉兴亡四百年\",\n    \"author\": \"李金海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991453-c67787?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年维新\",\n    \"author\": \"铲史官\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991513-1cd046?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津古罗马史\",\n    \"author\": \"约翰・博德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丝绸到硅\",\n    \"author\": \"杰弗里・加滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楼兰\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990937-7c842c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（增订版）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以眼还眼\",\n    \"author\": \"米切尔·P·罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的情报与外交生涯\",\n    \"author\": \"熊向晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华文明史（全四卷）\",\n    \"author\": \"袁行霈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990388-6ec689?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国货币史\",\n    \"author\": \"彭信威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅特涅：帝国与世界（全2册）\",\n    \"author\": \"沃尔弗拉姆・希曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华二千年史（套装共3册）\",\n    \"author\": \"邓之诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990280-51b8f7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原罪、梦想与霸权\",\n    \"author\": \"维克多・基尔南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊史纲（套装共5册）\",\n    \"author\": \"狄奥多罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990118-568fff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏杨白话版资治通鉴（全72册）\",\n    \"author\": \"柏杨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国政治思想史（套装共3册）\",\n    \"author\": \"刘泽华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋南北朝简史\",\n    \"author\": \"劳榦先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990064-033d75?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁古文明发现史\",\n    \"author\": \"布莱恩・费根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989986-64a34d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当权的第三帝国\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋之际的政治权力与家族网络\",\n    \"author\": \"仇鹿鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989743-9081ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国往事1905-1949（共四册）\",\n    \"author\": \"赵柏田\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989617-e19045?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祸起1914\",\n    \"author\": \"克斯・黑斯廷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989533-0de9f7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋南北朝史十二讲\",\n    \"author\": \"周一良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989491-004df4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的到来\",\n    \"author\": \"理查德·J. 埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剧变\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国·点评本（全11册）\",\n    \"author\": \"孙皓晖/谢有顺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988537-4ac278?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九色鹿•边疆史系列（全7册）\",\n    \"author\": \"薛小林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎和会与北京政府的内外博弈\",\n    \"author\": \"邓野\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争事典（041-050）\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝定居指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝穿越指南（新版）\",\n    \"author\": \"森林鹿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京人的世界\",\n    \"author\": \"菲利普・帕克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986962-f7608b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪装的艺术\",\n    \"author\": \"本・雅格达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简20世纪史\",\n    \"author\": \"妮古拉・查尔顿/梅雷迪思・麦克阿德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986602-539487?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"实践智慧\",\n    \"author\": \"野中郁次郎/荻野进介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战解放三部曲系列（套装共6册）\",\n    \"author\": \"里克・阿特金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986572-e0e277?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"少年读史记（套装全5册）\",\n    \"author\": \"张嘉骅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986401-311f21?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐身大师\",\n    \"author\": \"萨拉・卡明斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大征服\",\n    \"author\": \"休・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简史：世界隐秘知识博库（套装全4册）\",\n    \"author\": \"大卫・沃克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986746-917056?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋案重审\",\n    \"author\": \"尚小明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985948-5c1a66?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三国\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国策（全本全注全译）\",\n    \"author\": \"缪文远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985609-204824?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"搜历史\",\n    \"author\": \"易小荷/曲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985588-42c02a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时光博物馆\",\n    \"author\": \"人民日报社新媒体中心\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五万年中国简史（全二册）\",\n    \"author\": \"姚大力等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985504-47fbca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沿坟墓而行\",\n    \"author\": \"纳韦德・凯尔曼尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚经典作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人：从殖民到民主的历程\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985291-454b87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神文时代\",\n    \"author\": \"孙英刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985255-8c1141?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活的逻辑\",\n    \"author\": \"胡悦晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985243-9b3e36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盐铁论（全本全注全译）\",\n    \"author\": \"陈桐生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985165-67a2d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华遗韵\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"京华心影\",\n    \"author\": \"李弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教思想史（套装全3卷）\",\n    \"author\": \"胡斯都·L.冈察雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985126-1a8242?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"音调未定的传统（增订本）\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985084-f06396?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教史（套装共2册）\",\n    \"author\": \"胡斯托・冈萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新序（全本全注全译）\",\n    \"author\": \"马世年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掘墓人\",\n    \"author\": \"吕迪格・巴特/豪克・弗里德里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985024-aa55e8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文物中国史\",\n    \"author\": \"中国国家博物馆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国海：墨西哥湾的历史\",\n    \"author\": \"杰克·E.戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984943-5a4981?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画中国史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985012-e16de7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"上海传：叶辛眼中的上海\",\n    \"author\": \"叶辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮世恒河\",\n    \"author\": \"乔治・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文史通义校注（中华国学文库）\",\n    \"author\": \"章学诚著/叶瑛校注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984772-eeffe4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吴越春秋（全本全注全译）\",\n    \"author\": \"崔冶译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：世界大战的时代（全三册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困学纪闻注\",\n    \"author\": \"王应麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984739-88bbe6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国佛教通史（套装十五卷）\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古历史拼图\",\n    \"author\": \"邹进\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984655-a06873?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日耳曼尼亚\",\n    \"author\": \"西蒙・温德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984622-8c00f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋论（全本全注全译）\",\n    \"author\": \"王夫之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人文通史\",\n    \"author\": \"詹尼特・勒博・本顿/罗伯特・笛亚尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争论（全三册）\",\n    \"author\": \"克劳塞维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画世界史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"江湖丛谈（注音注释插图本）\",\n    \"author\": \"连阔如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984292-077343?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩溃：社会如何选择成败兴亡\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曹操：打不死的乐观主义者\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983932-901fe3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌与钢铁（修订版）\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋全传（作家榜经典文库）\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"约翰王\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983881-bdebff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津世界史丛书（共四册）\",\n    \"author\": \"贾斯珀・格里芬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983875-afdd9b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史通（全本全注全译）\",\n    \"author\": \"白云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983833-e75058?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正统与华夷\",\n    \"author\": \"刘浦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983797-3ed0c7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人物志（全本全注全译）\",\n    \"author\": \"刘劭/梁满仓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫本武藏全传（套装共5册）\",\n    \"author\": \"吉川英治/小山胜清\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983713-9b788f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史\",\n    \"author\": \"克劳斯·P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商君书（全本全注全译）\",\n    \"author\": \"石磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983665-3e96e4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希波战争\",\n    \"author\": \"G.W.考克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983626-e7197b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秋风宝剑孤臣泪\",\n    \"author\": \"姜鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983611-ecaec9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有所不为的反叛者\",\n    \"author\": \"罗新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983353-cca417?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾维钧回忆录（全13册）\",\n    \"author\": \"顾维钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983332-e78898?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美孚石油公司史\",\n    \"author\": \"艾达・塔贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被统治的艺术\",\n    \"author\": \"宋怡明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983314-16ffcd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代主义：从波德莱尔到贝克特之后\",\n    \"author\": \"彼得・盖伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洛阳伽蓝记（全本全注全译）\",\n    \"author\": \"尚荣译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭一千年\",\n    \"author\": \"狄奥尼修斯・史塔克普洛斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"游牧民的世界史（修订版）\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"在台湾发现历史\",\n    \"author\": \"杨渡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982489-7f9cfb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"5000年文明启示录\",\n    \"author\": \"威廉·H.麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982480-ddd078?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁极简科学史\",\n    \"author\": \"威廉・拜纳姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356982441-5807b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"礼记（全本全注全译）\",\n    \"author\": \"胡平生译注/张萌译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"长安与河北之间\",\n    \"author\": \"仇鹿鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054402-00b665?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑大帝（全2册）\",\n    \"author\": \"安德鲁・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"家人父子\",\n    \"author\": \"赵园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053889-726410?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦汉帝国\",\n    \"author\": \"西嶋定生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053790-cd6e5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"士大夫政治演生史稿\",\n    \"author\": \"阎步克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"元好问传\",\n    \"author\": \"朱东润\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053739-812d98?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重审中国的“近代”\",\n    \"author\": \"孙江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053655-c514d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫卧儿帝国\",\n    \"author\": \"H.G.基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053571-9577f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尼尔弗格森看历史（共5册）\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053550-51e73c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱锺书交游考\",\n    \"author\": \"谢泳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053523-510bb0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲历滇缅公路（套装共4本）\",\n    \"author\": \"内维尔・布拉德利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广场与高塔\",\n    \"author\": \"尼尔・弗格森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053496-3c88ef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国中亚征服史\",\n    \"author\": \"G. D.古拉提\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053502-bdd0ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魏晋玄学史（第二版）\",\n    \"author\": \"余敦康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艺术史：1940年至今天\",\n    \"author\": \"乔纳森・费恩伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一看就懂的大汉史（修订版）\",\n    \"author\": \"朱真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053139-fdde88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一书通识世界五千年历史悬案\",\n    \"author\": \"仲英涛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053085-b9a1ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的决裂\",\n    \"author\": \"汤姆斯·F. 密勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"富可敌国（经典版）\",\n    \"author\": \"塞巴斯蒂安・马拉比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人与美国人\",\n    \"author\": \"徐国琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052743-2f01b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通鉴纪事本末（注译本）全42卷\",\n    \"author\": \"袁枢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052959-de2d4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国纵横\",\n    \"author\": \"史景迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052362-4807ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中法海战\",\n    \"author\": \"陈悦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052590-a0f649?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"至暗时刻\",\n    \"author\": \"安东尼・麦卡滕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052338-7e11b2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的世界史套装（全15卷）\",\n    \"author\": \"肖石忠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的3\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马技术史（贝克知识丛书）\",\n    \"author\": \"赫尔穆特・施耐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"观察家精选系列（套装共7册）\",\n    \"author\": \"迈克尔・霍华德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051912-677f1d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙史（贝克知识丛书）\",\n    \"author\": \"瓦尔特·L.伯尔奈克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进攻日本\",\n    \"author\": \"雷蒙德・戴维斯/丹・温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051780-7e58b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·兴亡的世界史（全九卷）\",\n    \"author\": \"森谷公俊等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052227-3cba4a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典时代的终结（贝克知识丛书）\",\n    \"author\": \"哈特温・布兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家是怎样炼成的2\",\n    \"author\": \"赛雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战（贝克知识丛书）\",\n    \"author\": \"弗尔克・贝克汉恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轴心时代\",\n    \"author\": \"凯伦・阿姆斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古罗马的日常生活\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中东史（套装共3册）\",\n    \"author\": \"哈全安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡尔·马克思：生平与环境\",\n    \"author\": \"以赛亚・伯林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史无间道\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史（贝克知识丛书）\",\n    \"author\": \"克劳斯・布林格曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051513-17a241?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十世纪德国史（贝克知识丛书）\",\n    \"author\": \"安德烈亚斯・维尔申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051465-79abc2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米塞斯评传\",\n    \"author\": \"伊斯雷尔·M·柯兹纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老北京的记忆\",\n    \"author\": \"张善培\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051321-5b328c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从航海图到世界史\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天才时代\",\n    \"author\": \"A.C.格雷林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金犀牛\",\n    \"author\": \"富威尔-艾玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布宜诺斯艾利斯传\",\n    \"author\": \"詹姆斯・加德纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进击的铁骑\",\n    \"author\": \"刘澍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051048-0840f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定中国史\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051033-abeffa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫崎市定人物论\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印尼Etc\",\n    \"author\": \"伊丽莎白・皮萨尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050922-272408?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈尔滨档案\",\n    \"author\": \"玛拉・穆斯塔芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050781-93c481?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大外交\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家、经济与大分流\",\n    \"author\": \"皮尔・弗里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"各朝各代那些事儿（套装30册）\",\n    \"author\": \"昊天牧云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050676-782b7a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资治通鉴启示录（全二册）\",\n    \"author\": \"张国刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050523-9bace2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志公敌\",\n    \"author\": \"杰弗里・赫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤因比著作集（套装全7册）\",\n    \"author\": \"阿诺德・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"独霸中东\",\n    \"author\": \"雅科夫・卡茨/阿米尔・鲍博特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的复辟\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：决定欧洲命运的四天\",\n    \"author\": \"蒂姆・克莱顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二十五史简明读本（全15册）\",\n    \"author\": \"汪受宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050169-8543b7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争时期日本精神史\",\n    \"author\": \"鹤见俊辅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049854-91db68?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"向和平宣战\",\n    \"author\": \"罗南・法罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049848-3b94eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邂逅秦始皇\",\n    \"author\": \"中信出版·大方\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049749-255362?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：从古代源头到20世纪（全3册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的经济课\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枫丹白露宫\",\n    \"author\": \"蒂埃里・萨尔芒等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧京人物影像馆（套装三册）\",\n    \"author\": \"张社生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049425-7f26ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文化的江山·第一辑（全4册）\",\n    \"author\": \"刘刚/李冬君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西域余闻\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维多利亚女王：帝国女统治者的秘密传记（全2册）\",\n    \"author\": \"茱莉娅・贝尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年（全新增订版）\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宽容、狭隘与帝国兴亡\",\n    \"author\": \"艾米・蔡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049143-5ef8f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋那杯茶，战国这碗酒（套装共4册）\",\n    \"author\": \"南柯月初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太文明\",\n    \"author\": \"S.N.艾森斯塔特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的多角度解读（套装共20册）\",\n    \"author\": \"蒋廷黻等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝简史\",\n    \"author\": \"吴晗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048765-cc45e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的隐秘角落\",\n    \"author\": \"陆波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马背上的朝廷\",\n    \"author\": \"张勉治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048699-77f374?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吾志所向\",\n    \"author\": \"孙中山/许仕廉编著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈舜臣说十八史略：中国历史极简本\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048681-5bcfb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄金家族的最后一个王爷\",\n    \"author\": \"朱文楚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类的起源\",\n    \"author\": \"理查德・利基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048492-6ce106?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲一万年（全三册）\",\n    \"author\": \"J.M.罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048477-099fc8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史：从上古传说到1949\",\n    \"author\": \"邓广铭/田余庆/戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华文全球史（套装15册）\",\n    \"author\": \"哈罗德坦珀利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美术史十议\",\n    \"author\": \"巫鸿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国兴亡史三部曲\",\n    \"author\": \"罗伯特・格雷夫斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047541-286b5b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彗星年代\",\n    \"author\": \"丹尼尔・舍恩普夫卢格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国（套装共2册）\",\n    \"author\": \"萧然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋大义\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴人\",\n    \"author\": \"罗伯特・戴维斯/贝丝・琳达史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老鼠、虱子和历史\",\n    \"author\": \"汉斯・辛瑟尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国之衰\",\n    \"author\": \"王三义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046941-f63985?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵器史\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒退的帝国：朱元璋的成与败\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新食货志\",\n    \"author\": \"杜君立\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅰ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"智慧七柱Ⅱ\",\n    \"author\": \"T. E.劳伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转折时代\",\n    \"author\": \"茱莉亚・瓜尔内里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046326-8b0fec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔三城记\",\n    \"author\": \"贝塔妮・休斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英殖民帝国\",\n    \"author\": \"阿尔弗雷德・考尔德科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙无敌舰队\",\n    \"author\": \"加勒・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布、大航海时代与地理大发现\",\n    \"author\": \"约翰・S.C.阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"党员、党权与党争\",\n    \"author\": \"王奇生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大金王朝\",\n    \"author\": \"熊召政\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046032-54fc0e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲古兵器图说\",\n    \"author\": \"周纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最残酷的夏天：美国人眼中的越南战争\",\n    \"author\": \"菲利普・卡普托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马元老院与人民\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朝廷与党争\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045885-5bdfc7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明（套装共2册）\",\n    \"author\": \"玛丽・比尔德/戴维・奥卢索加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜北平（全2册）\",\n    \"author\": \"保罗・法兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045792-854bf8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩全集（全31册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内忧与外患\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045750-19a698?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：从史前到21世纪（第7版新校本）\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045897-0418e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝的末路\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045705-73a219?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的海（全2册）\",\n    \"author\": \"大卫・阿布拉菲亚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚明大变局\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045558-e69b30?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶战争（修订版）\",\n    \"author\": \"周重林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代丝绸之路的绝唱\",\n    \"author\": \"罗三洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045555-39eb63?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新政与盛世\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045420-8e75ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度4\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从鹏扶摇到蝶蹁跹\",\n    \"author\": \"崔宜明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"當帝國回到家\",\n    \"author\": \"華樂瑞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045342-435071?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马基雅维利语录\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045288-8aa412?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敌人与邻居\",\n    \"author\": \"伊恩・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年文明史\",\n    \"author\": \"勒尔・兹威克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历朝通俗演义（全十一册）\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045354-75bb47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年悖论\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045231-d7d6f7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格群岛\",\n    \"author\": \"亚历山大・索尔仁尼琴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045198-ec8982?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火枪与账簿\",\n    \"author\": \"李伯重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪思想史：从弗洛伊德到互联网\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"称霸（上下册）\",\n    \"author\": \"刘勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲之门\",\n    \"author\": \"谢尔希・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045066-209a47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说说十大日本侵华人物\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045075-ebfb55?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经典里的中国（套装共十册）\",\n    \"author\": \"杨照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本当代名医访谈录\",\n    \"author\": \"蒋丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045093-bd6d39?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强势生存\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044985-7bb35e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣彼得堡\",\n    \"author\": \"乔纳森・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045036-3a0aa2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊人\",\n    \"author\": \"伊迪丝・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：帝国建立与政权巩固\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉荣耀：王朝鼎盛与命运转折\",\n    \"author\": \"上医治国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上威尼斯\",\n    \"author\": \"亚历山德罗・马尔佐・马尼奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵者不祥\",\n    \"author\": \"刘鹤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨天的中国\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的叙述方式\",\n    \"author\": \"茅海建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044724-930fe0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史（中国传统节日）\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大争之世：战国\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044667-a224f9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北京的城墙与城门\",\n    \"author\": \"喜仁龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044700-c36d74?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝物语（套装全四册）\",\n    \"author\": \"中野京子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与记忆中的第三帝国\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从幕末到明治\",\n    \"author\": \"佐佐木克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044436-c0c700?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"来自纳粹地狱的报告\",\n    \"author\": \"米克洛斯・尼斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"命运攸关的抉择\",\n    \"author\": \"伊恩・克肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫看大门\",\n    \"author\": \"维一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们最幸福\",\n    \"author\": \"芭芭拉・德米克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银元时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"香料漂流记\",\n    \"author\": \"加里・保罗・纳卜汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044238-605eec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国史\",\n    \"author\": \"A.A.瓦西列夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪五大传记书系（全5册）\",\n    \"author\": \"吴晗/林语堂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044160-869a78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马其顿的亚历山大\",\n    \"author\": \"彼得・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命\",\n    \"author\": \"维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简算法史\",\n    \"author\": \"吕克・德・布拉班迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇宫日落（全2册）\",\n    \"author\": \"姜建强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043920-9d3751?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊与灰鹰（套装共3册）\",\n    \"author\": \"丽贝卡・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"温莎王朝\",\n    \"author\": \"汤姆・利文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给孩子的中国历史故事（作家榜经典文库）\",\n    \"author\": \"汤芸畦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从历史看组织\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043785-33f6ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1683维也纳之战\",\n    \"author\": \"安德鲁・惠克罗夫特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草与禾\",\n    \"author\": \"波音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043632-3f8944?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇位之争\",\n    \"author\": \"贾杜纳斯・萨卡尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043626-79ec52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本人为何选择了战争\",\n    \"author\": \"加藤阳子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043608-500337?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的历史（全5册）\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灯塔工的值班室\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043494-9e3f3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服与革命中的阿拉伯人\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英图书馆书籍史话\",\n    \"author\": \"大卫・皮尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中途岛奇迹\",\n    \"author\": \"戈登・普兰奇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉帝国在巴蜀\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲（珍藏版）\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"气候改变世界\",\n    \"author\": \"布莱恩・费根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043254-e54d87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡的百年史\",\n    \"author\": \"吉田茂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043236-c78d00?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刺桐城\",\n    \"author\": \"王铭铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朕知道了\",\n    \"author\": \"傅淞岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使（见识丛书）\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国真有趣（全6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"塞纳河畔的一把椅子\",\n    \"author\": \"阿明・马洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造大英帝国\",\n    \"author\": \"詹姆斯・查斯洛・亚当斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南宋行暮\",\n    \"author\": \"虞云国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042666-24868f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"放言有忌\",\n    \"author\": \"虞云国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042660-f57275?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简读中国史\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042147-004132?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"打造消费天堂\",\n    \"author\": \"连玲玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一等人\",\n    \"author\": \"宋华丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042015-7eebfb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱德华一世\",\n    \"author\": \"马克・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国抗日战争史（四卷套装）\",\n    \"author\": \"张宪文/左用章\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国经典古典名著套装20册\",\n    \"author\": \"司马迁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041949-2c728c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史（修订珍藏版）\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041145-b13043?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇权不下县？\",\n    \"author\": \"胡恒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041118-0a5ee2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的声音\",\n    \"author\": \"米歇尔・维诺克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041064-ba5df3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史（全六卷）\",\n    \"author\": \"邢来顺/吴友达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041019-a506b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧罗巴一千年\",\n    \"author\": \"伊恩・莫蒂默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040827-7ff413?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的流亡者\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"祖先的故事\",\n    \"author\": \"理查德・道金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国边缘\",\n    \"author\": \"马娅・亚桑诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040506-d747d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝托尔特·布莱希特\",\n    \"author\": \"雅恩・克诺普夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040365-b4e7a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无论如何都想告诉你的世界史\",\n    \"author\": \"玉木俊明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040368-13eaaa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贝希摩斯\",\n    \"author\": \"托马斯・霍布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹：世界最自由城市的历史\",\n    \"author\": \"萧拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040344-803e71?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悲剧遭遇\",\n    \"author\": \"佩吉・史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040260-bac7dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六舰\",\n    \"author\": \"伊恩・托尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的命运\",\n    \"author\": \"凯尔・哈珀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040251-bcd0df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梅毅说中华英雄史（全10册）\",\n    \"author\": \"梅毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040140-0d274d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"轰炸东京\",\n    \"author\": \"詹姆斯·M.斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039969-7b615d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清宫玄机录\",\n    \"author\": \"金性尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039738-d46cd6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国与第一次世界大战\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅典的胜利\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马的崛起\",\n    \"author\": \"安东尼・艾福瑞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039726-2352c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"根部之血：美国的一次种族清洗\",\n    \"author\": \"特里克・菲利普斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪满洲国\",\n    \"author\": \"迟子建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039606-452ac7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由的文化\",\n    \"author\": \"克里斯蒂安・迈耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隆美尔战时文件\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闪击英雄\",\n    \"author\": \"海因茨・威廉・古德里安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坚守与突围\",\n    \"author\": \"凤凰书品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039378-960d27?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的军事密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039258-40e6b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Gulag\",\n    \"author\": \"Anne Applebaum\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039219-530b32?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战完整历史实录（套装共38册）\",\n    \"author\": \"马夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方文明史：延续不断的遗产（第五版）\",\n    \"author\": \"马克・凯什岚斯基等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁古典欧洲怪诞生活志\",\n    \"author\": \"伊丽莎白・阿奇博尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039012-b15b5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"注定一战\",\n    \"author\": \"格雷厄姆・艾利森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴尔干百年简史\",\n    \"author\": \"马细谱/余志和\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038772-ae31dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南京传\",\n    \"author\": \"叶兆言\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038607-9ea609?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以上帝和恺撒之名\",\n    \"author\": \"理查德・巴塞特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史4\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038724-389581?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝圆舞曲\",\n    \"author\": \"高林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史迪威与美国在中国的经验（1911-1945）\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"愚政进行曲\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一声礼炮\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清帝国风云系列（全三册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037521-529d85?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"骄傲之塔\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文史哲入门三部曲\",\n    \"author\": \"吕思勉/胡适/郑振铎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037773-c7f7aa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原来你是这样的古人\",\n    \"author\": \"郁馥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037347-cb95ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方之镜\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方视野里的中国合集（共10册）\",\n    \"author\": \"庄士敦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1944阿登战役\",\n    \"author\": \"安东尼・比弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界简史\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036771-8aa3d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迈尔斯教授讲世界历史（全6册）\",\n    \"author\": \"菲利普・范・内斯・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036933-5ae1e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"醉酒简史\",\n    \"author\": \"马克・福赛思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球使命\",\n    \"author\": \"亨利・H・阿诺德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成化十四年\",\n    \"author\": \"梦溪石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035892-788349?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"茶叶大盗\",\n    \"author\": \"萨拉・罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清中国的光与影\",\n    \"author\": \"杜德维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035868-bc3e37?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国史论衡\",\n    \"author\": \"邝士元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035766-7facf5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"忽必烈的挑战\",\n    \"author\": \"杉山正明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清王朝的最后十年\",\n    \"author\": \"菲尔曼・拉里贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035697-05658d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文字的力量\",\n    \"author\": \"马丁・普克纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人人都该懂的启蒙运动\",\n    \"author\": \"吉隆・・奥哈拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李开周说宋史套装（全3册）\",\n    \"author\": \"李开周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"悬崖边的名士\",\n    \"author\": \"大生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035499-d66334?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正大传\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035448-d271fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒙古帝国\",\n    \"author\": \"易强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谜一样的清明上河图（精致版）\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035433-9e1141?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俄国与拿破仑的决战\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掉队的拉美\",\n    \"author\": \"塞巴斯蒂安・爱德华兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年帝国史\",\n    \"author\": \"克里尚・库马尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035127-d8bec6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"昨日的世界\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汴京之围\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034971-15dabf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未了中国缘\",\n    \"author\": \"约翰・帕顿・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034959-e448e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国大外交（60周年增订版）\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034854-6a0ae2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武士的女儿\",\n    \"author\": \"贾尼斯・宝莫伦斯・二村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034830-947585?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志文化（1945～2000年）\",\n    \"author\": \"赫尔曼・格拉瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034806-c7aa48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国\",\n    \"author\": \"周建行\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034782-d9ee2a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥艺术史（套装全8册）\",\n    \"author\": \"苏珊・伍德福德等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034887-1b0a28?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：众人受到召唤\",\n    \"author\": \"生活月刊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第4卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国公使夫人清宫回忆录\",\n    \"author\": \"苏珊・汤丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1945\",\n    \"author\": \"理查德・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034716-72269b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巴黎烧了吗？\",\n    \"author\": \"拉莱・科林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情的革命\",\n    \"author\": \"乔伊斯・阿普尔比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊对德意志的暴政\",\n    \"author\": \"伊莉莎・玛丽安・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第2卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲的去魔化\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国骑士（第3卷）\",\n    \"author\": \"汪冰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"野蛮大陆\",\n    \"author\": \"基思・罗威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军骑士（名著名译丛书）\",\n    \"author\": \"亨利克・显克维奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034416-c53e79?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诸葛亮：蜀汉舵手的历史真相\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦勃朗1642\",\n    \"author\": \"张佳玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧太后\",\n    \"author\": \"菲利普・威廉姆斯・萨金特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋人轶事汇编\",\n    \"author\": \"周勋初/葛渭君/周子来/王华宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正帝：中国的独裁君主\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文艺复兴的故事（全六册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天生幸存者\",\n    \"author\": \"温迪・霍尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033942-f423d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的试毒者\",\n    \"author\": \"罗塞拉・波斯托里诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列的诞生（全四册）\",\n    \"author\": \"赫尔曼・沃克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地理与世界霸权\",\n    \"author\": \"詹姆斯・费尔格里夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类六千年（上下两册）\",\n    \"author\": \"刘景华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我想重新解释历史\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033837-7ecd82?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大儒：王阳明\",\n    \"author\": \"周明河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐人轶事汇编\",\n    \"author\": \"周勋初/严杰/武秀成/姚松\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杀戮与文化\",\n    \"author\": \"维克托・戴维斯・汉森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走出帝制\",\n    \"author\": \"秦晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033669-f94efa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧亚皇家狩猎史\",\n    \"author\": \"托马斯・爱尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"撒马尔罕的金桃\",\n    \"author\": \"薛爱华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"米开朗琪罗与教皇的天花板\",\n    \"author\": \"罗斯・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美第奇家族的兴衰\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鏖战\",\n    \"author\": \"张新科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033360-8a444f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说中国\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万古江河\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国文化的精神\",\n    \"author\": \"许倬云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口气读完的大国战史系列\",\n    \"author\": \"郭强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033447-bee645?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平杂说\",\n    \"author\": \"潘旭澜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苍狼\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033288-e39de6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迦太基必须毁灭\",\n    \"author\": \"理查德・迈尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033276-eb158a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战略：一部历史\",\n    \"author\": \"劳伦斯・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史（五卷本）\",\n    \"author\": \"卜宪群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033426-04b3cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战爆发前十天\",\n    \"author\": \"理查德・奥弗里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷战\",\n    \"author\": \"约翰・刘易斯・加迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史深处的民国（全3册）\",\n    \"author\": \"江城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"死屋\",\n    \"author\": \"丹尼尔・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033177-b3ac59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之痒\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的崛起\",\n    \"author\": \"波里比阿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033156-220881?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"非常年代\",\n    \"author\": \"多莉丝・基恩斯・古德温\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郁金香热\",\n    \"author\": \"迈克・达什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝴蝶效应：历史漩涡中的汉唐帝国\",\n    \"author\": \"唐岛渔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033012-fd523b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被封印的唐史\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033009-fa3de9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中古中国门阀大族的消亡\",\n    \"author\": \"谭凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"湖南人与现代中国\",\n    \"author\": \"裴士锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032976-2e3783?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国国家图书馆珍藏名传（系列一共8册）\",\n    \"author\": \"雅各布・阿伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗共和国\",\n    \"author\": \"科林・伍达德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032946-dc4fd1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"财富的帝国\",\n    \"author\": \"约翰.S.戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩登时代：从1920年代到1990年代的世界\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032913-6118fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绿色黄金：茶叶帝国\",\n    \"author\": \"艾伦・麦克法兰/艾丽斯・麦克法兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力密码\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032886-a0070a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"壶里春秋\",\n    \"author\": \"朱维铮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海昏侯刘贺\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032874-fa7f10?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋经国传\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特拉法尔加战役\",\n    \"author\": \"朱利安·S.科贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"额田女王\",\n    \"author\": \"井上靖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032841-34c6b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"午夜将至\",\n    \"author\": \"迈克尔・多布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032853-5f84af?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奠基者：独立战争那一代\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032793-3eb972?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命之夏：美国独立的起源\",\n    \"author\": \"约瑟夫·J. 埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国民党高层的派系政治（修订本）\",\n    \"author\": \"金以林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回忆拿破仑\",\n    \"author\": \"布里昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文明史（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恺撒：巨人的一生\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄同学漫画中国史2\",\n    \"author\": \"那个黄同学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032661-abddf5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥古斯都：从革命者到皇帝\",\n    \"author\": \"阿德里安・戈兹沃西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战在亚洲及太平洋的起源\",\n    \"author\": \"入江昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032592-58ba06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争\",\n    \"author\": \"唐纳德・卡根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032625-63c026?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅口袋书系列·伟大的思想（第四辑）\",\n    \"author\": \"米歇尔・德・蒙田等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伦敦文学小史\",\n    \"author\": \"埃洛伊丝・米勒/萨姆・乔迪森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊莎贝拉\",\n    \"author\": \"克斯汀・唐尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二年，故人戏（全2册）\",\n    \"author\": \"墨宝非宝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿拉伯的劳伦斯\",\n    \"author\": \"斯科特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青年变革者\",\n    \"author\": \"许知远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"安第斯山脉的生与死\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032457-1c064e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印加帝国的末日\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊丽莎白女王\",\n    \"author\": \"艾莉森・威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1945：大国博弈下的世界秩序新格局\",\n    \"author\": \"迈克・内伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的转型\",\n    \"author\": \"诺姆・马格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易打造的世界\",\n    \"author\": \"彭慕兰/史蒂文・托皮克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梦幻之地\",\n    \"author\": \"库尔特・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032250-da0889?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊奇迹的观念基础\",\n    \"author\": \"陈中梅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032247-8b04d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑死病\",\n    \"author\": \"弗朗西斯・艾丹・加斯凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032304-c5b139?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由与毁灭\",\n    \"author\": \"彼得・麦克菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一看就停不下来的中国史\",\n    \"author\": \"最爱君\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032190-ca5444?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"托马斯·杰斐逊与海盗\",\n    \"author\": \"布莱恩・吉米德/唐・耶格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦始皇：创造力一统天下\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032160-073320?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史（修订珍藏版）\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鉴古晓今更渊博（套装共4册）\",\n    \"author\": \"干春松/张晓芒/王阳明/吕思勉/曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032055-42ab1f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲与没有历史的人\",\n    \"author\": \"埃里克·R.沃尔夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德皇威廉二世回忆录\",\n    \"author\": \"威廉二世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古一帝秦始皇（上下全2册）\",\n    \"author\": \"王立群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这才是清朝套装（全8册）\",\n    \"author\": \"鹿鼎公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031809-c21e9d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争史\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卢丹的恶魔\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031701-de423d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑与法兰西第一帝国（全2册）\",\n    \"author\": \"约瑟夫・富歇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031704-299c68?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拿破仑三世与法兰西第二帝国\",\n    \"author\": \"皮埃尔・德・拉诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪欧洲\",\n    \"author\": \"理查・威廉・丘奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊斯坦布尔\",\n    \"author\": \"埃布鲁・宝雅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国总参谋部\",\n    \"author\": \"斯宾塞・威尔金森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷月孤灯·静远楼读史\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031359-488f0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林：一座城市的肖像\",\n    \"author\": \"罗里・麦克林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往权力之路：叶卡捷琳娜大帝\",\n    \"author\": \"罗伯特·K·迈锡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"捡来的瓷器史\",\n    \"author\": \"涂睿明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031281-17ad02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图绘暹罗\",\n    \"author\": \"通猜・威尼差恭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：古典欧洲的诞生\",\n    \"author\": \"西蒙・普莱斯/彼得・索恩曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031152-135022?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：罗马帝国的遗产\",\n    \"author\": \"克里斯・威克姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：中世纪盛期的欧洲\",\n    \"author\": \"威廉・乔丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力与文化\",\n    \"author\": \"入江昭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031056-457560?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明评点曾国藩家书\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030825-08c459?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"季风帝国\",\n    \"author\": \"理查德・霍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内战记\",\n    \"author\": \"盖乌斯・尤利乌斯・恺撒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030756-3504a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"首届国会\",\n    \"author\": \"弗格斯·M.博德韦奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔子大历史\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿登纳回忆录（套装共4册）\",\n    \"author\": \"康拉德・阿登纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"垂帘听政\",\n    \"author\": \"向斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030708-e6f8d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"玻利维亚日记\",\n    \"author\": \"切・格瓦拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"隐公元年\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030429-4057fa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不敢懈怠\",\n    \"author\": \"纳尔逊・曼德拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三千年来谁铸币\",\n    \"author\": \"王永生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类酷刑简史\",\n    \"author\": \"马克·P.唐纳利/丹尼尔·迪尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国极简史\",\n    \"author\": \"詹姆斯・霍斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战风云：史上最大规模战争的伤痛（全3册）\",\n    \"author\": \"杨少丹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"义和团和八国联军真相\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030327-fd963d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五四的另一面\",\n    \"author\": \"杨念群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030243-59c30f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天人之际：薛仁明读《史记》\",\n    \"author\": \"薛仁明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030213-f27649?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代巨人：明末耶稣会士在中国的故事\",\n    \"author\": \"邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国人的历史：诸神的踪迹\",\n    \"author\": \"申赋渔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"匈奴史稿（增补版）\",\n    \"author\": \"陈序经\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030177-a6b1f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"制造汉武帝\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030171-cabd6a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画唐诗\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滴血的大朝代\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甲午战争\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030123-00cc8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋朝政坛319年系列丛书\",\n    \"author\": \"江永红/周宗奇/毕宝魁/郭晓晔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030120-a49339?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争系列\",\n    \"author\": \"青梅煮酒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列：一个民族的重生\",\n    \"author\": \"丹尼尔・戈迪斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030108-c2ca36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一阅千年\",\n    \"author\": \"马克・科尔兰斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗\",\n    \"author\": \"杰克・威泽弗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030057-ad67d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的崩塌\",\n    \"author\": \"埃里克·H.克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030063-a42a80?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伊本·赫勒敦\",\n    \"author\": \"罗伯特・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历史常识\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030000-796999?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"致命的倔强\",\n    \"author\": \"邢超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029979-766e1f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪战争艺术史（第一卷）\",\n    \"author\": \"查尔斯・威廉・欧曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030030-7c2c59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战术\",\n    \"author\": \"利奥六世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029895-0c0896?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无情之战\",\n    \"author\": \"约翰·W.道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029877-ef77af?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燕国八百年\",\n    \"author\": \"彭华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029868-03d746?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被掩盖的原罪\",\n    \"author\": \"爱德华・巴普蒂斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北平无战事\",\n    \"author\": \"刘和平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029835-35966e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细讲中国历史丛书（套装共12册）\",\n    \"author\": \"李学勤/郭志坤\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030339-2eb1f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坐龙椅：明清帝王的风雨人生（套装共2册）\",\n    \"author\": \"范军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029742-e501d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"郑天挺西南联大日记（全二册）\",\n    \"author\": \"郑天挺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029751-16b46e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瓜分波兰\",\n    \"author\": \"乔治・肖-勒费弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029763-26eb57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袍哥\",\n    \"author\": \"王笛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029658-37cafe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华史纲\",\n    \"author\": \"李定一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029643-40892a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾风云（1368-1683）\",\n    \"author\": \"张嵚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029589-c7bec5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鸦片战争\",\n    \"author\": \"蓝诗玲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029562-9dc4cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平洋战争\",\n    \"author\": \"赫克特·C. 拜沃特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"埃及四千年\",\n    \"author\": \"乔安・弗莱彻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029427-79b57f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"棉花帝国\",\n    \"author\": \"斯文・贝克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029418-eec041?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆年代四部曲（套装共4册）\",\n    \"author\": \"艾瑞克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029361-ff5c8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗大陆：20世纪的欧洲\",\n    \"author\": \"马克・马佐尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029334-f32666?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典遗产：希腊的遗产+罗马的遗产\",\n    \"author\": \"M.I.芬利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029247-2b7b69?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清危亡录\",\n    \"author\": \"凤城杜哥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029211-fd2b9f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的梦魇\",\n    \"author\": \"刘衍钢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029178-61ff6d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国内战回忆录（上下册）\",\n    \"author\": \"U.S.格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029088-94aa48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡椒的全球史\",\n    \"author\": \"玛乔丽・谢弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028983-15b29f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：宋史演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028935-86acbc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：明史演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028932-1448bd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：清史演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028929-e30705?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时（读客经典）\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028860-2bbd11?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治维新亲历记\",\n    \"author\": \"萨道义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028479-ee9dee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万国一邦\",\n    \"author\": \"托马斯・本德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028398-a4da09?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林肯传\",\n    \"author\": \"戴尔・卡耐基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028323-24d764?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：前汉演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028302-72b4a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：后汉演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028296-1399fb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"六史：唐史演义\",\n    \"author\": \"蔡东藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028293-90a16c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国历史中的文化诱惑\",\n    \"author\": \"沃尔夫・勒佩尼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关羽：神化的《三国志》英雄\",\n    \"author\": \"渡边义浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈布斯堡王朝：翱翔欧洲700年的双头鹰\",\n    \"author\": \"卫克安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海都物语\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹秦\",\n    \"author\": \"王杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028002-3ba7b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浮沉：帝国重臣的人生起落\",\n    \"author\": \"范军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027960-c3f3a3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风雅宋：看得见的大宋文明\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028143-e3cd42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现燕然山铭\",\n    \"author\": \"辛德勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027969-c72992?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从丹药到枪炮\",\n    \"author\": \"欧阳泰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年颠沛与千年往复\",\n    \"author\": \"王家范\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027825-d31c6f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"年羹尧之死\",\n    \"author\": \"郑小悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027813-3994d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抽签与民主、共和\",\n    \"author\": \"王绍光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的文明（套装共2册）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027801-a8005f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识分子\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027738-44fa7b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无规则游戏\",\n    \"author\": \"塔米姆・安萨利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荷马3000年\",\n    \"author\": \"亚当・尼科尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027369-65947b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅲ：血战长津湖\",\n    \"author\": \"何楚舞/凤鸣/陆宏宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑的清真寺\",\n    \"author\": \"伊恩・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天：美国人眼中的朝鲜战争\",\n    \"author\": \"大卫・哈伯斯塔姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争\",\n    \"author\": \"儿岛襄\",\n    \"link\": \"链接未找到\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兄弟连（译林纪念版）\",\n    \"author\": \"斯蒂芬•E．安布罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马共和国的衰落\",\n    \"author\": \"A.H.比斯利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027213-bd8c70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京百年史：从江户到昭和\",\n    \"author\": \"爱德华・赛登施蒂克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027168-a2ebb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗与今日世界之形成\",\n    \"author\": \"杰克・威泽弗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027153-72f4c4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒的影子帝国\",\n    \"author\": \"皮耶尔保罗・巴维里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐开国\",\n    \"author\": \"于赓哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027039-ea116e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"四朝高僧传（全5册）\",\n    \"author\": \"慧皎/道宣/赞宁/如惺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027009-b8f825?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伯罗奔尼撒战争史（详注修订本）\",\n    \"author\": \"修昔底德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026922-8375ca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史学的境界\",\n    \"author\": \"高华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"考古的故事\",\n    \"author\": \"埃里克·H.克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026685-adfaf2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史（详注修订本）\",\n    \"author\": \"希罗多德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026571-4204f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：基督教欧洲的巨变\",\n    \"author\": \"马克・格林格拉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026463-94526e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：追逐荣耀\",\n    \"author\": \"蒂莫西・布莱宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026451-3049ac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：竞逐权力\",\n    \"author\": \"理查德・埃文斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026442-f6a633?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"企鹅欧洲史：地狱之行\",\n    \"author\": \"伊恩・克肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026433-bb103f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寡头\",\n    \"author\": \"戴维・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当图书进入战争\",\n    \"author\": \"莫里・古皮提尔・曼宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个世界的战争\",\n    \"author\": \"安东尼・帕戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026268-2ca776?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本维新六十年\",\n    \"author\": \"樱雪丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026166-909097?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度3\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026157-634aa1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战中的巴黎\",\n    \"author\": \"提拉・马奇奥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025701-0b1776?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中世纪人\",\n    \"author\": \"艾琳・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025578-a85503?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹德国\",\n    \"author\": \"克劳斯・P.费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"显微镜下的大明\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025350-ca3612?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绍兴十二年\",\n    \"author\": \"夏坚勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025293-69c02c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明帝国战争史\",\n    \"author\": \"李湖光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国秩序的根基\",\n    \"author\": \"拉塞尔・柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中5·竹林七贤\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中7·幸会！苏东坡\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中8·了不起的宋版书\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025230-9eef33?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中16·西南联大的遗产\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北欧神话\",\n    \"author\": \"卡罗琳・拉灵顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1924：改变希特勒命运的一年\",\n    \"author\": \"彼得・罗斯・兰奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纳粹医生\",\n    \"author\": \"罗伯特・杰伊・利夫顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025107-90ecdb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"凯南日记\",\n    \"author\": \"乔治・凯南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国史料编年辑证（全二册）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025077-d7a712?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维京传奇\",\n    \"author\": \"拉尔斯・布朗沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025038-59b85c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无路可逃\",\n    \"author\": \"冯骥才\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国大战略\",\n    \"author\": \"爱德华·N.勒特韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈洗冤录：满怀冰雪\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024981-db0d77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿帝国\",\n    \"author\": \"莉齐・克林汉姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024939-01ef66?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩传\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024924-c79780?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱明王朝\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杨宽著作集第一辑（8种10册全）\",\n    \"author\": \"杨宽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025140-fdbb62?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断头王后：玛丽·安托瓦内特传\",\n    \"author\": \"斯・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024828-0ecc23?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆里的极简中国史\",\n    \"author\": \"张经纬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雷震传\",\n    \"author\": \"范泓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争的面目\",\n    \"author\": \"约翰・基根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐德刚作品集\",\n    \"author\": \"唐德刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024786-a5d2dd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晋的王朝\",\n    \"author\": \"旧时艳阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024702-5db725?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十二幅地图中的世界史\",\n    \"author\": \"杰里・布罗顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024693-19bb78?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国的崛起与衰落\",\n    \"author\": \"劳伦斯・詹姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024621-eefeab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的哲学密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拉丁美洲被切开的血管\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024495-ad2eac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本维新史\",\n    \"author\": \"赫伯特・诺曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024477-aaca5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋与文明\",\n    \"author\": \"林肯・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的故事（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋徽宗\",\n    \"author\": \"伊沛霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日不落帝国兴衰史（全五册）\",\n    \"author\": \"约翰・布莱尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024240-d3762e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明史不忍细看\",\n    \"author\": \"张朝山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023964-23b953?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐兴亡三百年\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023952-0cff73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国创世记：埃利斯建国史系列（套装共4册）\",\n    \"author\": \"约瑟夫·J.埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凛冬\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊人的故事（全三册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023988-a42df2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲中世纪三部曲+燃烧的远征（套装共4册）\",\n    \"author\": \"拉尔斯・布朗沃思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023808-852d17?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中苏关系史纲（增订版）\",\n    \"author\": \"沈志华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023796-f14eb6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的日本通史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023811-262c8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"泰国通史\",\n    \"author\": \"段立生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023805-06bd3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的印度通史\",\n    \"author\": \"陈恭禄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023724-9ae83b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"克里米亚战争\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023688-1a0b47?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"回访历史\",\n    \"author\": \"伊娃・霍夫曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023670-9aac87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯曼帝国六百年\",\n    \"author\": \"帕特里克・贝尔福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023592-246a21?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"皇帝腓特烈二世的故事（全2册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023466-0fbdd9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿尔比恩的种子\",\n    \"author\": \"大卫・哈克特・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁血蒙元\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋革新\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023322-d132ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王安石变法\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023325-383dbd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风流南宋\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明清之际士大夫研究\",\n    \"author\": \"赵园\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023301-4261b5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛史·晚清篇\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023268-c4b7c6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自由之魂\",\n    \"author\": \"刘台平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简二战史\",\n    \"author\": \"奈杰尔・考索恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023217-136ca3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆皇帝的荷包\",\n    \"author\": \"赖惠敏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023247-014af6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Jerusalem\",\n    \"author\": \"Simon Sebag Montefiore\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023058-302eaa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国通史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞跃5000年\",\n    \"author\": \"克里昂・斯考森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生活与命运\",\n    \"author\": \"瓦西里・格罗斯曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022971-fe6010?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"领袖：一项心理史学研究\",\n    \"author\": \"查尔斯・B．斯特罗齐尔/丹尼尔・奥弗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解放战争（套装共6册）\",\n    \"author\": \"刘统等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缔造和平：1919巴黎和会及其开启的战后世界\",\n    \"author\": \"玛格丽特・麦克米伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"峰会：影响20世纪的六场元首会谈\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格兰女王的悲剧\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"辛亥：计划外革命\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第一集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022830-3ddcad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌故（第二集）\",\n    \"author\": \"徐俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被误诊的艺术史\",\n    \"author\": \"董悠悠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全译罗马帝国衰亡史（全12册）\",\n    \"author\": \"爱德华・吉本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022686-8c5d14?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥美国史\",\n    \"author\": \"苏珊・玛丽・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022683-97bf54?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥意大利史\",\n    \"author\": \"克里斯托弗・达根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022665-152e48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"品人录\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读城记\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022617-f7baf2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的男人和女人\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022629-7a5047?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲话中国人\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022614-e2ccf9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雅尔塔：改变世界格局的八天\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022569-a065df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"邻人\",\n    \"author\": \"杨·T.格罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022545-465fc9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代史：1840-1937\",\n    \"author\": \"蒋廷黻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022515-8c554f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国史（全3卷）\",\n    \"author\": \"西蒙・沙玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022530-d45c41?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥德国史\",\n    \"author\": \"玛丽・富布卢克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022479-9288ae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五朝宰相\",\n    \"author\": \"姜狼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022383-05455f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庄子传\",\n    \"author\": \"张远山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022350-a02974?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品读中国（套装共6册）\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本之都\",\n    \"author\": \"拉纳・达斯古普塔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1943：中国在十字路口\",\n    \"author\": \"周锡瑞/李皓天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022260-f72b1c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Short Nights of the Shadow Catcher\",\n    \"author\": \"Egan, Timothy\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022299-6675d1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Genghis Khan and the Making of the Modern World\",\n    \"author\": \"Jack Weatherford\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022176-fe3719?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"铁道之旅\",\n    \"author\": \"沃尔夫冈・希弗尔布施\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国全史\",\n    \"author\": \"南门太守\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022050-eeaf02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗逻辑\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021993-ee1b86?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国家的启蒙\",\n    \"author\": \"马国川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021972-56b623?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现东亚\",\n    \"author\": \"宋念申\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021969-acc1f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝那些事儿（套装共7册）\",\n    \"author\": \"冬雪心境\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷告白\",\n    \"author\": \"利皮卡・佩拉汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚裔美国的创生\",\n    \"author\": \"李漪莲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国人的战争\",\n    \"author\": \"尼古拉斯・斯塔加特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年战争简史\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻影恐惧\",\n    \"author\": \"亚当・查莫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021573-27153d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦朝那些事儿（共3册）\",\n    \"author\": \"昊天牧云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021549-2b4b61?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球帝国史\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思享家丛书（套装共4册）\",\n    \"author\": \"周濂等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021486-85c08f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本主义简史\",\n    \"author\": \"于尔根・科卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格之恋\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021333-798278?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"档案：一部个人史\",\n    \"author\": \"蒂莫西・加顿艾什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教宗与墨索里尼\",\n    \"author\": \"大卫·I.科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"遗失的姆大陆之谜\",\n    \"author\": \"詹姆斯・乔治瓦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪简史\",\n    \"author\": \"杰弗里・布莱内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021225-d87722?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《伦敦新闻画报》记录的民国1926-1949（套装4册）\",\n    \"author\": \"沈弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国《小日报》记录的晚清（1891-1911）\",\n    \"author\": \"李红利/赵丽莎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国彩色画报记录的中国1850-1937（套装共2册）\",\n    \"author\": \"赵省伟/李小玉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021246-0c8518?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明治天皇：1852-1912\",\n    \"author\": \"唐纳德・基恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021156-b23e9c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南北战争三百年\",\n    \"author\": \"李硕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021018-29e73a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崇祯大传奇（全三册）\",\n    \"author\": \"晏青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020979-10eee9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国国民性演变历程\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020961-2b4f8d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史3\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021012-b2a5b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市民底层笔记\",\n    \"author\": \"张礼士\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020877-80c338?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五个人的战争\",\n    \"author\": \"马克・哈里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020868-e951f3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清棋局：明亡清兴卷\",\n    \"author\": \"刘澍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020847-19ba79?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狄更斯讲英国史（全彩图文版）\",\n    \"author\": \"查尔斯・狄更斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020844-2bcd58?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻画战勋\",\n    \"author\": \"马雅贞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020811-235335?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国改革史系列（共三册）\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020823-e86ce2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国日本I：时间的滋味\",\n    \"author\": \"茂吕美耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020751-1178c2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国日本II：败者的美学\",\n    \"author\": \"茂吕美耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020739-6cce59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐这二百九十年1：贞观之路\",\n    \"author\": \"吃青菜的蜗牛\",\n    \"link\": \"链接未找到\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐这二百九十年2：天皇天后\",\n    \"author\": \"吃青菜的蜗牛\",\n    \"link\": \"链接未找到\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒林外史\",\n    \"author\": \"吴敬梓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020583-080d65?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"告别霸权!\",\n    \"author\": \"蒙・赖克/理查德・内德・勒博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020550-3cfb43?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"迷信与暴力\",\n    \"author\": \"亨利・查尔斯・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020472-3eaa48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西班牙内战：真相、疯狂与死亡\",\n    \"author\": \"阿曼达・维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020454-d9c2eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法政纠结\",\n    \"author\": \"杨天宏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020388-cbd634?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丑的历史\",\n    \"author\": \"翁贝托・艾柯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020424-b520de?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清朝野史大观（全三册）\",\n    \"author\": \"小横香室主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020262-2939f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁在世界的中央\",\n    \"author\": \"梁二平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020298-7a1189?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：大国博弈\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020181-db0efd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：大国之略\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020175-352ae5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史上的蒙古征服\",\n    \"author\": \"梅天穆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020139-2566c0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我身在历史何处\",\n    \"author\": \"埃米尔・库斯图里卡\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019992-bd477d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史2\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020037-5762be?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海的衰落\",\n    \"author\": \"布雷斯特德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020049-1f86d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国人：国家的形成1707-1832\",\n    \"author\": \"琳达・科利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019965-6c0b00?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"权力之路：林登·约翰逊传\",\n    \"author\": \"罗伯特・A.卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"困顿与突围\",\n    \"author\": \"田文林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019911-f7637f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史上的南京之战（套装共2册）\",\n    \"author\": \"王洪光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019944-5497a4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的进退\",\n    \"author\": \"雷颐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019887-1a680f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的裂缝\",\n    \"author\": \"雷颐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019896-3e4312?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谁丢了美国\",\n    \"author\": \"安德鲁・杰克逊・奥肖内西\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019956-8834da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本占领天津时期罪行实录\",\n    \"author\": \"郭登浩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019794-08091e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度，漂浮的次大陆\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的背影系列（套装共3册）\",\n    \"author\": \"诺曼・斯通等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019785-2a75d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近百年政治史\",\n    \"author\": \"李剑农\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019722-b2f37a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张作霖大传\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019716-3c1ec2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可不知的非洲史\",\n    \"author\": \"杨益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019659-a63c03?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不可不知的朝韩史\",\n    \"author\": \"杨益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019653-a807c8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆帝及其时代\",\n    \"author\": \"戴逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019704-d2dce7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"莫斯科战役1941\",\n    \"author\": \"尼克拉斯・泽特林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019668-09e230?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"《人权宣言》在晚清中国的旅行\",\n    \"author\": \"程梦婧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019650-a84eeb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国宝四川：纪念汶川地震十周年\",\n    \"author\": \"《华夏地理》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019644-61d102?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思想史：从火到弗洛伊德（全二册）\",\n    \"author\": \"彼得・沃森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲文明史精品系列（套装共8册）\",\n    \"author\": \"阿曼达・维尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019635-e4c4dd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲现代史：从文艺复兴到现在（套装共2册）\",\n    \"author\": \"约翰・梅里曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019770-f8308f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"波斯战火\",\n    \"author\": \"汤姆・霍兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019572-97e2b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"博物馆窜行记\",\n    \"author\": \"顺手牵猴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019548-8a4e08?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大顺帝李自成\",\n    \"author\": \"李健侯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019515-8b0c3f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明历史读本系列（套装共6册）\",\n    \"author\": \"牟钟鉴等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019554-4d41ba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"澳门史1557-1999\",\n    \"author\": \"杰弗里・冈恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019521-94c448?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国命运（套装共3册）\",\n    \"author\": \"席勒/基佐/米涅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019497-15bf57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简明大历史\",\n    \"author\": \"伊恩・克夫顿/杰里米・布莱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019500-4367ef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"后三国战争史\",\n    \"author\": \"陈峰韬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"审问欧洲：二战时期的合作、抵抗与报复\",\n    \"author\": \"伊斯特万・迪克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"娜塔莎之舞：俄罗斯文化史\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019431-5c55a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的演变：19世纪史（全3册）\",\n    \"author\": \"于尔根・奥斯特哈默\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019389-c4eb1e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国的内战\",\n    \"author\": \"胡素珊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019377-b3f66d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个更安全的地方\",\n    \"author\": \"希拉里・曼特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019380-bb365e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天5：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019326-871ffb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚洲史概说\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019314-bb4568?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1913，一战前的世界\",\n    \"author\": \"查尔斯・埃默森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019293-a852b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019335-523960?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金融可以颠覆历史\",\n    \"author\": \"王巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨人的对决：日德兰海战中的主力舰\",\n    \"author\": \"张宇翔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019386-bcedf2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的教训\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019254-d01ce4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉重的皇冠\",\n    \"author\": \"克里斯托弗・克拉克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"繁荣的代价\",\n    \"author\": \"托德·G·布赫霍尔茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019242-46e661?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的王国\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019212-e7ca0b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马：一座城市的兴衰史\",\n    \"author\": \"克里斯托弗・希伯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019185-aa4682?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国建国史系列（套装全3册）\",\n    \"author\": \"约瑟夫・埃利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019095-53ad54?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金与铁：俾斯麦、布莱希罗德与德意志帝国的建立\",\n    \"author\": \"弗里茨・斯特恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019062-89d9da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史中国书系（全九册）\",\n    \"author\": \"姜狼/醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018999-2e7771?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿姆斯特丹梵高博物馆\",\n    \"author\": \"保拉・拉佩里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018915-b0ed02?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"柏林画廊\",\n    \"author\": \"威廉・德罗・鲁索\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018807-775ac1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国落日：晚清大变局\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018723-5c346e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创造日本：1853-1964\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018555-7b50e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实即颠覆：无以名之的十年的政治写作\",\n    \"author\": \"蒂莫西・加顿艾什\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018540-08e8a0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新视角全球简史套装（三册）\",\n    \"author\": \"莉奥妮・希克斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018528-cc4d08?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着回来的男人\",\n    \"author\": \"小熊英二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018474-680890?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏在地理中的历史学（共3册）\",\n    \"author\": \"林肯・佩恩等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018519-e91091?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服者：葡萄牙帝国崛起\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018390-117462?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西南联大行思录\",\n    \"author\": \"张曼菱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018297-9bd135?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乌鸦之城：伦敦，伦敦塔与乌鸦的故事\",\n    \"author\": \"博里亚・萨克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资治通鉴直解\",\n    \"author\": \"张居正整理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018210-d1a502?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史文化丛书（精选15册）\",\n    \"author\": \"王海利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019155-dbc0f5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸年轮：民国以来百年中国私人读本\",\n    \"author\": \"张冠生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017922-775184?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代政治得失\",\n    \"author\": \"钱穆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017871-5874f6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"火堆上的晚清帝国\",\n    \"author\": \"刘大木\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017859-df5ae7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方的兴起\",\n    \"author\": \"威廉・麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017958-a45d43?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼谷子的局：战国纵横（1-11册套装）\",\n    \"author\": \"寒川子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017850-088a8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度2\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017880-5bd0da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"The Sea Wolves\",\n    \"author\": \"Lars Brownworth\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017679-c5a00a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不情愿的大师\",\n    \"author\": \"斯蒂芬・葛霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017631-5dd734?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枢纽：3000年的中国\",\n    \"author\": \"施展\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017586-220883?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白话史记\",\n    \"author\": \"杨燕起\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017562-312941?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布局天下：中国古代军事地理大势\",\n    \"author\": \"饶胜文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017508-118f05?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赵匡胤：乱世枭雄开启文治盛世\",\n    \"author\": \"陈红晓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017484-9dba70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刘邦：汉民族文化的伟大开拓者\",\n    \"author\": \"洪亮亮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017478-cb43ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史，小世界\",\n    \"author\": \"辛西娅・斯托克斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国王的两个身体\",\n    \"author\": \"恩斯特・康托洛维茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚明民变\",\n    \"author\": \"李文治\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017412-226b45?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界秩序\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017367-b1f56a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类智慧小史\",\n    \"author\": \"特雷弗・科诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017340-a7f51c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蹉跎坡旧事\",\n    \"author\": \"沈博爱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017268-d0dff9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康熙盛世与帝王心术\",\n    \"author\": \"姚念慈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017247-df3930?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：1500年以前的世界\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017238-a96be6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：1500年以后的世界\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017241-7f501e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠：帝国最后的“鹰派”\",\n    \"author\": \"徐志频\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017196-e60417?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为你，耶路撒冷\",\n    \"author\": \"拉莱・科林斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017211-3712a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马奴隶制\",\n    \"author\": \"威斯特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017136-eb5c79?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古代的希腊和罗马\",\n    \"author\": \"吴于廑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017154-8d701b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争魔术师\",\n    \"author\": \"大卫・费希尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017109-9a5083?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道林·格雷的画像\",\n    \"author\": \"奥斯卡・王尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无敌舰队\",\n    \"author\": \"加勒特・马丁利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"踉跄：晚清以来中国人的梦想与超越\",\n    \"author\": \"李安义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016995-d375d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄河青山：黄仁宇回忆录\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016971-0cdd42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"对于历史，科学家有话说\",\n    \"author\": \"熊卫民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016641-473197?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清风云（全8册）\",\n    \"author\": \"鹿鼎公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016614-3ffe45?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从黎明到衰落（上下册）\",\n    \"author\": \"雅克・巴尔赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代日本史：从德川时代到21世纪\",\n    \"author\": \"安德鲁・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016578-431c10?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Q版大明衣冠图志\",\n    \"author\": \"撷芳主人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016557-4c2cd9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国时代（全二册）\",\n    \"author\": \"师永刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016368-b309d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"换个角度读历史（套装共3册）\",\n    \"author\": \"大卫・克里斯蒂安等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016593-cb129e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史\",\n    \"author\": \"大卫・克里斯蒂安等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016224-d086d6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国那些人那些事（套装5册）\",\n    \"author\": \"陈瓷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016065-19e132?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地裂三百年（上）\",\n    \"author\": \"覃仕勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016053-8fc9ae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天朝 洋奴 万邦协和\",\n    \"author\": \"傅斯年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016029-7caad2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"左宗棠收新疆\",\n    \"author\": \"汪衍振/谷占江/陈树照\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015969-cc27c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宛如梦幻三部曲\",\n    \"author\": \"赤军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015837-99af8c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"以色列：一个国家的诞生（1-3 合辑）\",\n    \"author\": \"十一点半\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015771-29d4ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗战时代生活史\",\n    \"author\": \"陈存仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国人在巴黎\",\n    \"author\": \"大卫・麦卡洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015738-b4c6cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章（全三册）\",\n    \"author\": \"张鸿福\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血性军人：百年中国战争亲历纪（共13册）\",\n    \"author\": \"全国政协文史和学习委员会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜子：照出你看不见的世界史\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015687-56df1e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛极简中国史\",\n    \"author\": \"阿尔伯特・克雷格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015678-11afee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类砍头小史\",\n    \"author\": \"弗朗西斯・拉尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC世界史\",\n    \"author\": \"安德鲁・玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艾希曼在耶路撒冷\",\n    \"author\": \"汉娜・阿伦特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015621-ee315c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方政治传统：近代自由主义之发展\",\n    \"author\": \"弗雷德里克・沃特金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血的皇冠\",\n    \"author\": \"曹昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015423-efdf72?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"嗜血的皇冠（大结局）\",\n    \"author\": \"曹昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015420-ffc62a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国原生文明启示录\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"协和医事\",\n    \"author\": \"常青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩瀚大洋是赌场（全3册）\",\n    \"author\": \"俞天任\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015387-cec59e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧山河\",\n    \"author\": \"刀尔登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界佛教通史（套装共14卷）\",\n    \"author\": \"周贵华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战纵横录（套装二十四册）\",\n    \"author\": \"胡元斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015495-8bfeee?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之秋\",\n    \"author\": \"裴士锋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015171-03bda3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国兵史\",\n    \"author\": \"雷海宗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015135-b850e8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人性中的善良天使\",\n    \"author\": \"斯蒂芬・平克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015102-e9b4b4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的温度\",\n    \"author\": \"张玮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014925-4b543e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩：唐浩明钦定版\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014871-07622b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和十年（套装共2册）\",\n    \"author\": \"郑曦原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014727-5ab666?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平天国兴亡录\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014724-33612e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"华杉讲透孙子兵法\",\n    \"author\": \"华杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014508-c3e54a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牲人祭\",\n    \"author\": \"皮埃尔・比恩鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014478-2f2e77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"危险的边疆：游牧帝国与中国\",\n    \"author\": \"巴菲尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014373-aa3442?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一口气读完中国战史\",\n    \"author\": \"顾晓绿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014607-058cae?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦谜：重新发现秦始皇\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014271-174e75?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国种族简史\",\n    \"author\": \"托马斯・索威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶鲁小历史系列（全三册）\",\n    \"author\": \"詹姆斯・韦斯特・戴维森等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014289-4430ac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉武帝：皇权的逻辑\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014190-bfcfcc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"染血的王冠：不列颠王权和战争史\",\n    \"author\": \"赵恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014103-2b0300?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潮来潮去：海关与中国现代性的全球起源\",\n    \"author\": \"方德万\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈寅恪与傅斯年（全新修订版）\",\n    \"author\": \"岳南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"项羽与刘邦\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013890-575f7a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丰臣家族\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013884-5d831d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坂本龙马\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013887-36253b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方建筑小史\",\n    \"author\": \"陈杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西部王国传奇（套装共5册）\",\n    \"author\": \"贾陈亮/王东等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本历史小说巨匠司马辽太郎经典作品集（套装共9册）\",\n    \"author\": \"司马辽太郎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013818-6d50c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国定型：美国的1890～1900\",\n    \"author\": \"徐弃郁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013650-529c52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"崩塌的世界\",\n    \"author\": \"梅尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013923-111e75?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的背影（套装共2册）\",\n    \"author\": \"彼得・贾德森/诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013590-8235a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金瓯缺（套装共4册）\",\n    \"author\": \"徐兴业\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013482-34f9d3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大博弈：英俄帝国争霸战\",\n    \"author\": \"彼得・霍普柯克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红星照耀中国\",\n    \"author\": \"埃德加・斯诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013473-b5c7fd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚历山大三部曲\",\n    \"author\": \"玛丽・瑞瑙特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013446-8bd673?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋觉梦录：袁世凯\",\n    \"author\": \"禅心初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013425-886951?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"广州贸易\",\n    \"author\": \"范岱克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中央帝国的财政密码\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代世界史（插图第10版）\",\n    \"author\": \"帕尔默/乔・科尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013437-274a1b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013191-9d7f86?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天2：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013188-c49746?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天3：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013185-a0743f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天4：从三岁到八十二岁\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013176-abfc15?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1493：物种大交换开创的世界史\",\n    \"author\": \"查尔斯・曼恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后日本史\",\n    \"author\": \"王新生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013008-9417f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重读甲午：中日国运大对决\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012939-c8481b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而有罪\",\n    \"author\": \"彼得・西施罗夫斯基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012927-e5aba8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中日恩怨两千年大合集（共4册）\",\n    \"author\": \"樱雪丸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012915-5b2e9a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国皇帝的五种命运\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012906-52df36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历代王朝系列全集（全28册）\",\n    \"author\": \"王新龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012909-fac22e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中华民国史（16册套装）\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012918-26053f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信经典历史之世界史篇（共6册）\",\n    \"author\": \"大卫・克里斯蒂安/伊恩・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012936-2633d0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信经典历史之中国史篇（共5册）\",\n    \"author\": \"杨早/马勇等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012885-c4bcf4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑暗时刻：希特勒、大屠杀与纳粹文化（上下册）\",\n    \"author\": \"单世联\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"焚书之书\",\n    \"author\": \"福尔克尔・魏德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012615-56e5ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老北京杂吧地\",\n    \"author\": \"岳永逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012531-6c54c3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被淹没和被拯救的\",\n    \"author\": \"普里莫・莱维\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012249-55fbc8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀局\",\n    \"author\": \"曲飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012123-162f93?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远去的胜利\",\n    \"author\": \"威廉・理查德森/西摩・弗雷德林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争简史（套装共2册）\",\n    \"author\": \"诺曼・斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012003-13f38f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金雀花王朝\",\n    \"author\": \"丹・琼斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银帝国\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高铁风云录\",\n    \"author\": \"高铁见闻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011880-d18366?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复活的日本财阀\",\n    \"author\": \"陈霞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011748-a353c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国的崩溃与美国的诞生\",\n    \"author\": \"尼克・邦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011766-64bb06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"剑桥中国史（套装全11卷）\",\n    \"author\": \"费正清/崔瑞德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011967-9e4705?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲的陨落\",\n    \"author\": \"马克思・加罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉经典作品合集（全14册）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012045-6418c3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庚子西狩丛谈\",\n    \"author\": \"吴永\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011625-b93e35?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东京梦华录\",\n    \"author\": \"孟元老\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德意志之魂\",\n    \"author\": \"特亚・多恩/里夏德・瓦格纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011616-7a3f09?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮日耀光：张居正与明代中后期政局\",\n    \"author\": \"韦庆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011595-bc04e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"台湾这些年所知道的祖国\",\n    \"author\": \"廖信忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在大清官场30年\",\n    \"author\": \"黄云凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011568-9f64c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西洋世界军事史（全三卷）\",\n    \"author\": \"富勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011562-ee7a99?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国是部金融史2\",\n    \"author\": \"陈雨露\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦刻尔克\",\n    \"author\": \"沃尔特・劳德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1491年：前哥伦布时代美洲启示录\",\n    \"author\": \"查尔斯・曼恩是\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011508-3f67fb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国的浩劫\",\n    \"author\": \"弗里德里希・迈内克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011484-6c4d96?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋氏家族\",\n    \"author\": \"斯特林・西格雷夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011463-fbc615?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信历史的镜像系列（套装共10本）\",\n    \"author\": \"理查德・埃文斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为奴十二年\",\n    \"author\": \"所罗门・诺瑟普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011313-653371?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国通史（套装共6册）\",\n    \"author\": \"钱乘旦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战后欧洲史（套装共4册）\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011190-f4b570?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉文集：三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011133-842806?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"那些惊心动魄的人类文明史（套装共18册）\",\n    \"author\": \"曹胜高等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年金融史\",\n    \"author\": \"威廉・戈兹曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国历史风云录\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010971-27004c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血战大武汉\",\n    \"author\": \"张军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010920-a3947f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天品三国\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010851-0bd01f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张学良的政治生涯\",\n    \"author\": \"傅虹霖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"林汉达中国故事经典套装（图文版）\",\n    \"author\": \"林汉达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010947-e40f70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾志刚说春秋×说战国（全十二册）\",\n    \"author\": \"贾志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夏威夷史诗(共2册）\",\n    \"author\": \"詹姆斯・米切纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010758-140387?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你绝对不知道的美国独立秘史\",\n    \"author\": \"何畏岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010698-8fdefe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图说天下：话说中国历史系列（全10册）\",\n    \"author\": \"龚书铎/刘德麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011025-25ef8d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九品中正制研究\",\n    \"author\": \"张旭华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010656-17c168?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦始皇：穿越现实与历史的思辨之旅\",\n    \"author\": \"吕世浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010635-d004d7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"正说司马家（1-3）\",\n    \"author\": \"张朝炬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010560-b2fada?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黎明破晓的世界\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国现代史\",\n    \"author\": \"徐中约\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不忍细看的大唐史\",\n    \"author\": \"谢国计\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010458-b98a48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的河山：抗日正面战场全纪实（套装共3册）\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"工业与帝国：英国的现代化历程\",\n    \"author\": \"埃里克・霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"顾颉刚国史讲话全本（三册）\",\n    \"author\": \"顾颉刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010383-dcf10f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马帝国的陨落\",\n    \"author\": \"彼得・希瑟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010386-84b362?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清最后十八年（大全集）（共4册）\",\n    \"author\": \"黄治军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010365-52de24?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简海洋文明史\",\n    \"author\": \"菲利普・德・索萨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走向共和\",\n    \"author\": \"张建伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010215-9eb25f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣重说晚清民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"闲看水浒\",\n    \"author\": \"十年砍柴\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010191-d34bba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新闻抄袭历史\",\n    \"author\": \"宋燕\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"岳飞传\",\n    \"author\": \"邓广铭\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010176-918d2c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梵蒂冈的乱世抉择（1922-1945）\",\n    \"author\": \"段琦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010149-afb62f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿提卡之夜（1-5卷）\",\n    \"author\": \"奥卢斯・革利乌斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010140-904f27?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"草原帝国（全译插图本）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英博物馆世界简史（套装共3册）\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"穿越百年中东\",\n    \"author\": \"郭建龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白话精编二十四史（全10册）\",\n    \"author\": \"龚书铎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010236-610f9d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1942河南大饥荒\",\n    \"author\": \"宋致新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009999-ed0873?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的技艺：塔奇曼论历史\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机械宇宙\",\n    \"author\": \"爱德华・多尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"时刻关注：二战经典战役纪实（套装共10册）\",\n    \"author\": \"二战经典战役编委会\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的最后十四天\",\n    \"author\": \"约阿希姆·・费斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009762-976759?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界小史\",\n    \"author\": \"恩斯特・贡布里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009717-003d99?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国近代通史（套装共10册）\",\n    \"author\": \"张海鹏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009672-5434a0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"没有宽恕就没有未来\",\n    \"author\": \"德斯蒙德・图图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序的起源\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"政治秩序与政治衰败\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·中国的历史（全十卷）\",\n    \"author\": \"宫本一夫/平势隆郎等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"枪炮、病菌和钢铁\",\n    \"author\": \"贾雷德・戴蒙德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"近代中国社会的新陈代谢（插图本）\",\n    \"author\": \"陈旭麓\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕氏春秋译注（修订本）\",\n    \"author\": \"张双棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，这是另一半中国史\",\n    \"author\": \"杨建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009540-88c0a5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失败的帝国：从斯大林到戈尔巴乔夫\",\n    \"author\": \"弗拉季斯拉夫・祖博克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的崩溃：苏联解体的台前幕后\",\n    \"author\": \"沙希利・浦洛基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009531-44dd38?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩智慧精髓大合集（套装共三册）\",\n    \"author\": \"曾国藩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画中国史\",\n    \"author\": \"二混子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009573-2a5b19?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯曼帝国的衰亡\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009525-0dfc4f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奥斯维辛\",\n    \"author\": \"劳伦斯・里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009495-02ded5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耳语者\",\n    \"author\": \"奥兰多・费吉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009489-577978?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布达佩斯往事\",\n    \"author\": \"卡蒂・马顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009486-392c89?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的中国史（套装共14册）\",\n    \"author\": \"童超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009903-8e6424?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人心至上：杜月笙\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒家统治的时代：宋的转型\",\n    \"author\": \"迪特・库恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009474-529aaf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冯国璋：北洋时期最有争议的总统\",\n    \"author\": \"韩仲义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009432-510c86?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的终结与最后的人\",\n    \"author\": \"弗朗西斯・福山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零年：1945\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联真相：对101个重要问题的思考（全三册）\",\n    \"author\": \"陆南泉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009399-e397a1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文武北洋・风流篇\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009363-bd9b77?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文武北洋・枭雄篇\",\n    \"author\": \"李洁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009366-f96c72?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个戴灰帽子的人\",\n    \"author\": \"邵燕祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009354-ecd060?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国名将：一个历史学家的排行榜\",\n    \"author\": \"方北辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009312-59e655?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从这里读懂第三帝国（套装共8册）\",\n    \"author\": \"齐格蒙・鲍曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界性的帝国：唐朝\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009291-f01621?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十杆枪：从独立战争到西部拓荒的美国勇敢冒险史\",\n    \"author\": \"克里斯・凯尔/威廉・道尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009336-cf85ab?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十个人的德意志\",\n    \"author\": \"孙世龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009267-7bdd51?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庞贝三日\",\n    \"author\": \"阿尔贝托・安杰拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世家的天下（全3册）\",\n    \"author\": \"潘彦明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009249-56da80?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"早期中华帝国：秦与汉\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009264-03cc70?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老兵自述：我在台湾40年\",\n    \"author\": \"于秀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009210-bceb7c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"步兵进攻\",\n    \"author\": \"埃尔温・隆美尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"仁者无敌：林肯的政治天才\",\n    \"author\": \"尤以丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009171-407c48?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界史纲：生物和人类的简明史\",\n    \"author\": \"吴文藻/冰心等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009207-280a2c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐朝绝对很邪乎\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009138-deec69?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分裂的帝国：南北朝\",\n    \"author\": \"陆威仪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009144-7f2fef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦墟\",\n    \"author\": \"月关\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009132-129b38?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"趣味生活简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"强迫症的历史：德国人的犹太恐惧症与大屠杀\",\n    \"author\": \"克劳斯・费舍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"燃烧的岛群\",\n    \"author\": \"宋宜昌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009099-e8b13b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日落九世纪：大唐帝国的衰亡\",\n    \"author\": \"赵益\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神偷天下（全三册）\",\n    \"author\": \"郑丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009021-1cedd4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明帝国边防史：从土木堡之变到大凌河血战\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：中国八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庸人治国\",\n    \"author\": \"苗棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008961-b049a1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"缠斗：方生与未死\",\n    \"author\": \"袁伟时\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暴风雨的记忆\",\n    \"author\": \"北岛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛棚杂忆（图文版）\",\n    \"author\": \"季羡林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"求索中国：文革前十年史\",\n    \"author\": \"萧东连/朱地等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008892-fc9b80?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"清朝开国史（上下卷）\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008889-dcadfa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类群星闪耀时\",\n    \"author\": \"斯蒂芬・茨威格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李鸿章时代（1870-1895）\",\n    \"author\": \"王鼎杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008859-c5c5f2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挣扎的帝国：元与明\",\n    \"author\": \"卜正民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008841-53bcc3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国：典藏套装版（全三册）\",\n    \"author\": \"高兴宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古拉格：一部历史\",\n    \"author\": \"安妮・阿普尔鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008823-3cb3b7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弱宋：造极之世\",\n    \"author\": \"陈胜利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008796-38df46?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清大变局\",\n    \"author\": \"马平安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008790-f00942?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫长的战斗：美国人眼中的朝鲜战争（修订版）\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008763-ceb9cf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"记忆小屋\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008715-f6ea28?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"艰难的一跃\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋大时代\",\n    \"author\": \"陈钦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经度\",\n    \"author\": \"达娃・索贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南京大屠杀\",\n    \"author\": \"张纯如\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008697-eb4356?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的中华帝国：大清\",\n    \"author\": \"罗威廉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008694-c9f404?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国简史\",\n    \"author\": \"孟钟捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经与史：华夏世界的历史建构\",\n    \"author\": \"刘仲敬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"旧制度与大革命\",\n    \"author\": \"托克维尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"永恒的边缘（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008637-b35210?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简亚洲千年史\",\n    \"author\": \"斯图亚特・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008547-7528e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍王：戴笠与中国特工\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008571-4000d9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋军阀史（套装共2册）\",\n    \"author\": \"来新夏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008457-b50456?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不忍细看的大汉史\",\n    \"author\": \"墨竹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008358-9b1891?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第三帝国的兴亡（全三册）\",\n    \"author\": \"威廉・夏伊勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东周列国志（上下）\",\n    \"author\": \"蔡元放/冯梦龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008370-900bac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变美国的时刻\",\n    \"author\": \"刘戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道光十九年：从禁烟到战争\",\n    \"author\": \"沈渭滨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008298-a00093?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哥伦布大交换\",\n    \"author\": \"艾尔弗雷德・克罗斯比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故宫的风花雪月\",\n    \"author\": \"祝勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洪业：清朝开国史\",\n    \"author\": \"魏斐德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008280-fe79e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国的兴衰（套装共2册）\",\n    \"author\": \"保罗・肯尼迪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国海盗\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦三部曲\",\n    \"author\": \"吕世浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008274-748b98?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坐天下：张宏杰解读中国帝王\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越南密战：1950-1954中国援越战争纪实\",\n    \"author\": \"钱江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"追寻历史的印迹\",\n    \"author\": \"杨天石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008211-2d3dc6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从帝制走向共和\",\n    \"author\": \"杨天石\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008190-26b9bb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"饥饿的盛世\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008151-db2720?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"倒转红轮\",\n    \"author\": \"金雁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008238-c702a9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天“帝国与共和”三部曲\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"易中天中华史：先秦到隋唐\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008340-6d454f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在故宫修文物\",\n    \"author\": \"萧寒/绿妖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"八月炮火\",\n    \"author\": \"巴巴拉・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老街的生命（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008025-85e9bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"兵贩子（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008028-fba137?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雪峰山决战（抗战三部曲）\",\n    \"author\": \"林家品\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008007-bd9450?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白日薄西山：大汉帝国的衰亡\",\n    \"author\": \"徐兴无\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007989-fae9b9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伪满洲国（套装共三册）\",\n    \"author\": \"迟子建\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007920-212a9c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"意大利黑手党的历史\",\n    \"author\": \"约翰・迪基\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007902-b4007c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武则天正传\",\n    \"author\": \"林语堂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战史诗三部曲\",\n    \"author\": \"科尼利厄斯・瑞恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个帝国的生与死\",\n    \"author\": \"夜狼啸西风\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007848-1e242c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个美国记者眼中的真实民国\",\n    \"author\": \"哈雷特・阿班\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战天京：晚清军政传信录\",\n    \"author\": \"谭伯牛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007827-5533c3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明王朝的七张面孔（套装共2册）\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007833-83ee88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戊戌变法史\",\n    \"author\": \"汤志钧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：跃升年代\",\n    \"author\": \"福尔克尔・乌尔里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血酬定律：中国历史中的生存游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"科雷马故事\",\n    \"author\": \"瓦尔拉姆・沙拉莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界的凛冬（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007761-91cc52?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联专家在中国（1948-1960）\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"未来简史\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅰ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的抗战Ⅱ\",\n    \"author\": \"《我的抗战》节目组\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希特勒传：从乞丐到元首\",\n    \"author\": \"约翰・托兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦古国志\",\n    \"author\": \"林屋公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007686-218743?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"先秦凶猛 （全五册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007683-6430e6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和国历史的细节\",\n    \"author\": \"李颖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007656-87a1fc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"“四人帮”兴亡（增订版）\",\n    \"author\": \"叶永烈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滑铁卢：四天、三支大军和三场战役的历史\",\n    \"author\": \"伯纳德・康沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马人的故事（套装共15册）\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：1453年以来的争霸之途\",\n    \"author\": \"布伦丹・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唉，我的沧桑50年（1959至今）\",\n    \"author\": \"八爪夜叉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从大历史的角度读蒋介石日记\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"呐喊-大屠杀回忆录\",\n    \"author\": \"曼尼・斯坦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭德怀自传\",\n    \"author\": \"彭德怀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"光荣与梦想（套装共4册）\",\n    \"author\": \"威廉・曼彻斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国大师细说中国历史（套装共12册）\",\n    \"author\": \"吕思勉/吴晗/傅斯年等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南明史\",\n    \"author\": \"顾诚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007554-d162d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宋慈大传\",\n    \"author\": \"王宏甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天命所终：晚清皇朝的崩溃\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007524-6152e3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"女人当国：慈禧太后与晚清五十年\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沉冤录\",\n    \"author\": \"张程\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007488-804e4c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"飞虎队在桂林\",\n    \"author\": \"赵平/韦芳/蒋桂英/苏晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007470-7a5427?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏联的最后一天\",\n    \"author\": \"康纳・奥克莱利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王之道：从痞子刘季到高祖刘邦\",\n    \"author\": \"刘小川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007440-17c90c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的分裂：美国独立战争的起源\",\n    \"author\": \"郑非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活在汉朝不容易\",\n    \"author\": \"侯虹斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马史\",\n    \"author\": \"特奥多尔・蒙森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"宫女谈往录\",\n    \"author\": \"金易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"头颅中国：另一个角度看先秦\",\n    \"author\": \"黄摩崖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007314-f6145e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白宫岁月：基辛格回忆录（套装共4册）\",\n    \"author\": \"亨利・基辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国崛起病\",\n    \"author\": \"黄钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007281-5bec5c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"统一大业（合订本）\",\n    \"author\": \"郭晨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清的角落\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"进步时代\",\n    \"author\": \"张国庆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"教科书里没有的历史细节\",\n    \"author\": \"王国华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一个世界帝国及其西征系列（共三册）\",\n    \"author\": \"布赖恩・莱弗里/汤姆・霍兰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐浩明晚清三部曲\",\n    \"author\": \"唐浩明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"唐太宗（全三卷）\",\n    \"author\": \"赵扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007050-bb3026?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史有一套（全6册）\",\n    \"author\": \"杨白劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007026-a96241?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犹太人的故事：寻找失落的字符\",\n    \"author\": \"西门·沙马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哇，历史原来可以这样学（套装共2册）\",\n    \"author\": \"林欣浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当道家统治中国\",\n    \"author\": \"林嘉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天公不语对枯棋\",\n    \"author\": \"姜鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006972-dc0d09?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"霍布斯鲍姆自传\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命的年代：1789～1848\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的年代：1848～1875\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的年代：1875～1914\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极端的年代：1914～1991\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006918-d93fd3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流血的天堂：乌孙王国传奇（原创白金版）\",\n    \"author\": \"金钊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006927-7d67fc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大实话：历史与现在\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006915-0aa5f7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罪孽的报应\",\n    \"author\": \"伊恩・布鲁玛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"维基解密：谁授权美国统管世界\",\n    \"author\": \"苏言/贺濒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"驼峰航线\",\n    \"author\": \"刘小童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东汉的豪族\",\n    \"author\": \"杨联陛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006837-a944f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗杀1905大合集（共3册）\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清三大名臣发迹史（套装共6册）\",\n    \"author\": \"汪衍振\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006798-f5d92b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出轨的盛唐：武后（套装共3册）\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006789-16cd14?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笨人的成圣之道：曾国藩\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉王朝的三张脸谱（全三册）\",\n    \"author\": \"飘雪楼主\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006753-0645a8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大中国史（全新校订超值珍藏版）\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国通史\",\n    \"author\": \"丁建弘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如果这是宋史（套装共10册）\",\n    \"author\": \"高天流云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006702-cf600b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十字军东征简史（插图本）\",\n    \"author\": \"米肖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大海盗时代\",\n    \"author\": \"海盗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的全球通史\",\n    \"author\": \"房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006666-b79483?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：一部全新的世界史\",\n    \"author\": \"彼得·弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红色账簿\",\n    \"author\": \"马祥林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006660-1bfd15?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中原大战：民国军阀的终极逐鹿\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006606-dd3be8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清相国\",\n    \"author\": \"王跃文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"彭大将军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千古大变局\",\n    \"author\": \"曾纪鑫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"潜规则：中国历史中的真实游戏\",\n    \"author\": \"吴思\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006486-e0c136?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦朝原来是这样\",\n    \"author\": \"醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006480-90a92e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"青铜时代：五百年的大局观（套装共5册）\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天崩地解：1644大变局\",\n    \"author\": \"汗青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006444-18d6eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本最危险的书\",\n    \"author\": \"克里斯托夫·克里布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从俾斯麦到希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"其实我们一直活在春秋战国（套装共6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夹边沟记事\",\n    \"author\": \"杨显惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006411-34b535?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"甘南纪事\",\n    \"author\": \"杨显惠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006405-e4b8cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这里曾经是汉朝（套装共6册）\",\n    \"author\": \"月望东山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006366-f6a436?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年袁家\",\n    \"author\": \"王碧蓉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝王师：张居正\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006345-151672?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝王师：刘伯温\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006339-c15817?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成吉思汗：意志征服世界\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"败因：蒋介石为什么败退台湾？\",\n    \"author\": \"武更斌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个大国的崛起与崩溃\",\n    \"author\": \"沈志华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西路军（套装共3册）\",\n    \"author\": \"冯亚光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006267-cdd7bc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"狗日的战争\",\n    \"author\": \"冰河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006264-a3a0da?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"二战秘密档案\",\n    \"author\": \"鲍里斯・瓦季莫维奇・索科洛夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱可夫：斯大林的将军\",\n    \"author\": \"杰弗里・罗伯茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006219-c6136a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简中国史\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006189-1d7a39?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个汉人皇帝：崇祯大败局\",\n    \"author\": \"晏青\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006183-848fe4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"军部当国：近代日本军国主义冒险史\",\n    \"author\": \"赵恺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006174-b628f4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"紫禁城魔咒（套装全三册）\",\n    \"author\": \"简千艾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006153-a21e3d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的二战史（上下卷）\",\n    \"author\": \"肖石忠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006273-4b1128?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个故宫的离合\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国强军：欧洲八大古战精锐\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬过（1949-1976）\",\n    \"author\": \"寒川子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006102-af215b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白门柳（套装共3册）\",\n    \"author\": \"刘斯奋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006099-ca9e83?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩：又笨又慢平天下\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006087-c38b42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚汉争霸启示录\",\n    \"author\": \"潇水\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006090-557c06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国的野蛮成长\",\n    \"author\": \"祝和军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006075-2932b6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"儒学、数术与政治\",\n    \"author\": \"陈侃理\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006072-66be1f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的凋零\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"想象异域\",\n    \"author\": \"葛兆光\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006078-e45465?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大忙人看的历史常识\",\n    \"author\": \"章学城\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006027-0210e9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汉朝大历史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006039-4817a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"红顶商人胡雪岩珍藏版大全集（套装共6册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简世界史\",\n    \"author\": \"姚尧、磨剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005991-0695cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简中国史\",\n    \"author\": \"磨剑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006015-5af5d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虎部队：国民党抗日王牌七十四军\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1856：纠结的大清、天国与列强\",\n    \"author\": \"陶短房\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后一个皇帝：袁世凯传\",\n    \"author\": \"陶菊隐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005958-558d42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"地中海史诗三部曲\",\n    \"author\": \"罗杰・克劳利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恶魔的饱食：日本731细菌战部队揭秘\",\n    \"author\": \"森村诚一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最后的大队\",\n    \"author\": \"野岛刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005955-4e31ac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"另一只眼看鸦片战争\",\n    \"author\": \"瞿巍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005928-95ec0a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"五大传奇权谋人物传记（套装共5册）\",\n    \"author\": \"度阴山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·初澜（1953～1968）\",\n    \"author\": \"定宜庄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国知青史·大潮（1966～1980）\",\n    \"author\": \"刘小萌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"触摸历史与进入五四\",\n    \"author\": \"陈平原\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的底稿\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史的边角料\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005868-04c945?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大宋帝国三百年（共5册）\",\n    \"author\": \"金纲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的应许之地\",\n    \"author\": \"阿里・沙维特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕思勉讲中国历史\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005865-39afd4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"吕著三国史话\",\n    \"author\": \"吕思勉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"共和中的帝制\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005838-df5318?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"抗日战争的细节大全集（共4册）\",\n    \"author\": \"魏风华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天谴行动\",\n    \"author\": \"乔治・乔纳斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005826-867b8f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再说戊戌变法\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005823-df41d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的空白处\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：角落里的民国\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005808-4cd3c9?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：大国的虚与实\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005817-deb0b2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：朝堂上的戏法\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005811-270f44?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：重说中国古代史\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005799-2834e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"张鸣说历史：重说中国国民性\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005796-d68785?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新发现宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"直截了当的独白\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真相：裕仁天皇与侵华战争\",\n    \"author\": \"赫伯特・比克斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005781-a36ade?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武夫当权：军阀集团的游戏规则\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005778-e952c5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"巨人的陨落（全3册）\",\n    \"author\": \"肯・福莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005775-add98f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"别笑，这是大清正史（套装共三册）\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005739-4e4df0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"陈舜臣“十八史略”\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005736-4f0d45?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"山的那一边\",\n    \"author\": \"李德・哈特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国超好看大全集\",\n    \"author\": \"君玉离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005691-37f328?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盘活：中国民间金融百年风云\",\n    \"author\": \"王千马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楚亡：从项羽到韩信\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005697-cd05d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大明王朝1566（套装共二册）\",\n    \"author\": \"刘和平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005589-4f319f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧全传\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卑鄙的圣人：曹操（套装共10册）\",\n    \"author\": \"王晓磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万物简史\",\n    \"author\": \"比尔・布莱森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你一定爱读的极简欧洲史\",\n    \"author\": \"约翰・赫斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极简人类史\",\n    \"author\": \"大卫・克里斯蒂安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国总理段祺瑞\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大故宫（全三册）\",\n    \"author\": \"阎崇年\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005595-48321c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国原来是这样\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005451-392314?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个曾国藩\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个袁世凯\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晚清有个李鸿章\",\n    \"author\": \"赵焰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"和氏璧\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明宫奇案\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"斧声烛影\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"夺位战争：康熙和他的儿子们\",\n    \"author\": \"金满楼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005391-a2fed4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跌荡一百年：中国企业1870-1977（纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"浩荡两千年：中国企业公元前7世纪-1869年\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国机密（全两册）\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"马伯庸笑翻中国简史\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原来你是这样的宋朝\",\n    \"author\": \"吴钩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005328-0cee06?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类简史：从动物到上帝\",\n    \"author\": \"尤瓦尔・赫拉利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005331-d43590?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲美国史\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005301-9fa40d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第一次世界大战回忆录（全五卷）\",\n    \"author\": \"温斯顿・丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"第二次世界大战回忆录（全六卷）\",\n    \"author\": \"温斯顿·丘吉尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着就为征服世界\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"日本！日本！：中日历史上的历次死磕\",\n    \"author\": \"王浩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005280-12bd88?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆十三年\",\n    \"author\": \"高王凌\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005277-d6967f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极乐诱惑：太平天国的兴亡\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦衣卫秘事\",\n    \"author\": \"夜行独侠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005262-15b909?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解读希特勒\",\n    \"author\": \"塞巴斯蒂安·哈夫纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三国人物传记合集（套装共六册）\",\n    \"author\": \"方北辰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005274-cab8cd?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不容青史尽成灰（套装五册）\",\n    \"author\": \"张嵚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005247-bb17a7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐的四张面孔（套装共四册）\",\n    \"author\": \"东江月明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005238-f97e96?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你知道或不知道的英国史\",\n    \"author\": \"贺桂金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大汉公主\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005241-e78c9b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的软肋：大汉王朝四百年\",\n    \"author\": \"陈舜臣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005232-e2cd5d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1644：中国式王朝兴替\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005220-eda0ce?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年乱局：争霸东北亚（套装共二册）\",\n    \"author\": \"方俞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005217-0b648c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"敦煌：碧海青天\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005196-b63054?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"孔雀胆\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大唐游侠\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鱼玄机\",\n    \"author\": \"吴蔚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大太监李莲英全传\",\n    \"author\": \"王牧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与看客\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005157-06675a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的正午\",\n    \"author\": \"赫连勃勃大王\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005139-267d57?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一寸河山一寸血（套装全五册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"血腥的盛唐大全集（珍藏版）\",\n    \"author\": \"王觉仁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005133-8ad8de?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蒋介石与现代中国\",\n    \"author\": \"陶涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005121-9824a2?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国最后的荣耀：大明1592抗日援朝\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005091-0ae1b1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"流血的仕途：李斯与秦始皇\",\n    \"author\": \"曹昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005082-4cc81c?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国1927·谁主沉浮\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史是个什么玩意儿（全四册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005076-2d0888?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲先秦·上古春秋\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005073-adcf42?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲先秦·战国纵横\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005064-2ad184?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲日本史\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005085-ff26cb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"袁腾飞讲两宋风云\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005067-5e3c5a?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小狗也要叫\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005055-f06b5e?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国运1909：清帝国的改革突围\",\n    \"author\": \"雪珥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005070-6a1110?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦崩：从秦始皇到刘邦\",\n    \"author\": \"李开元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005109-a88027?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"北洋裂变\",\n    \"author\": \"张鸣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005022-6f69d4?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慈禧私生活回忆录\",\n    \"author\": \"裕德龄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004989-2742d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"康熙大帝（全四册）\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005010-4813e7?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正皇帝（全三册）\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005025-c4d4ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"乾隆皇帝（全六册）\",\n    \"author\": \"二月河\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005028-731854?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大变局1911\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"曾国藩的正面与侧面\",\n    \"author\": \"张宏杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争就是这么回事儿（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"叫魂\",\n    \"author\": \"孔飞力\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004902-1b6315?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国之翼\",\n    \"author\": \"格雷戈里・克劳奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004914-6aa3a6?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战争从未如此热血：二战美日太平洋大对决（全四册）\",\n    \"author\": \"关河五十州\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"国会现场：1911—1928\",\n    \"author\": \"叶曙明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004872-0a13ad?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大秦帝国（全新修订版）\",\n    \"author\": \"孙皓晖\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004890-cf3460?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知日！知日！这次彻底了解日本（全四册）\",\n    \"author\": \"苏静\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004881-07a62d?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德川家康大全集\",\n    \"author\": \"山冈庄八\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004860-5761a5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"真实的汪精卫\",\n    \"author\": \"林思云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"万历十五年（经典版）\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004842-c3da51?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国大历史\",\n    \"author\": \"黄仁宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004833-543fef?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史非常档案\",\n    \"author\": \"李昊轩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004797-1cc3d5?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"激荡三十年（套装纪念版）\",\n    \"author\": \"吴晓波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明朝那些事儿（1-9）\",\n    \"author\": \"当年明月\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"让你爱不释手的极简美国史\",\n    \"author\": \"姚尧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"胡雪岩（全三册）\",\n    \"author\": \"高阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民国就是这么生猛（全四册）\",\n    \"author\": \"雾满拦江\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004713-b94ab1?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细说中国历史丛书（全十册）\",\n    \"author\": \"黎东方等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004698-777405?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这个历史挺靠谱（全三册）\",\n    \"author\": \"袁腾飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004674-6ba91b?p=8866\",\n    \"category\": \"历史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说魂儿（修订版）\",\n    \"author\": \"栾保群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866\",\n    \"category\": \"民俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"纸上寻仙记\",\n    \"author\": \"锦翼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866\",\n    \"category\": \"民俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"老北京杂吧地\",\n    \"author\": \"岳永逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012531-6c54c3?p=8866\",\n    \"category\": \"民俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怪谈：日本动漫中的传统妖怪\",\n    \"author\": \"周英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866\",\n    \"category\": \"民俗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"医目了然\",\n    \"author\": \"懒兔子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866\",\n    \"category\": \"治疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"身体从未忘记\",\n    \"author\": \"巴塞尔・范德考克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023610-57fe2f?p=8866\",\n    \"category\": \"治疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"爱，不释手\",\n    \"author\": \"琳・斯蒂格・斯特朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010044-9bddf2?p=8866\",\n    \"category\": \"治疗\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李洁非明史系列三部曲\",\n    \"author\": \"李洁非\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503595-333015?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱元璋大传\",\n    \"author\": \"陈梧桐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内忧与外患\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045750-19a698?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"王朝的末路\",\n    \"author\": \"樊树志\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045705-73a219?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一代巨人：明末耶稣会士在中国的故事\",\n    \"author\": \"邓恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滴血的大朝代\",\n    \"author\": \"宗承灏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"锦衣卫\",\n    \"author\": \"熊剑平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025716-291f4b?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"显微镜下的大明\",\n    \"author\": \"马伯庸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025350-ca3612?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朱明王朝\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明史不忍细看\",\n    \"author\": \"张朝山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023964-23b953?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暮日耀光：张居正与明代中后期政局\",\n    \"author\": \"韦庆远\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011595-bc04e1?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神偷天下（全三册）\",\n    \"author\": \"郑丰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009021-1cedd4?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"明帝国边防史：从土木堡之变到大凌河血战\",\n    \"author\": \"指文烽火工作室\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庸人治国\",\n    \"author\": \"苗棣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008961-b049a1?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"挣扎的帝国：元与明\",\n    \"author\": \"卜正民\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008841-53bcc3?p=8866\",\n    \"category\": \"明史\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大产品思维\",\n    \"author\": \"王雷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创意选择\",\n    \"author\": \"肯・科钦达\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"俞军产品方法论\",\n    \"author\": \"俞军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精益设计（第2版）\",\n    \"author\": \"Jeff Gothelf\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"产品经理修炼之道\",\n    \"author\": \"费杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014895-353831?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从点子到产品\",\n    \"author\": \"刘飞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014775-780161?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"结网@改变世界的互联网产品经理（修订版）\",\n    \"author\": \"王坚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866\",\n    \"category\": \"产品\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国陷阱\",\n    \"author\": \"诺埃尔・毛雷尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"伟大的贸易\",\n    \"author\": \"威廉・伯恩斯坦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"商业的本质套装（全3册）\",\n    \"author\": \"杨宗勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的冲突\",\n    \"author\": \"道格拉斯・欧文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贸易的真相\",\n    \"author\": \"丹尼・罗德里克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037065-bd5341?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看待全球化\",\n    \"author\": \"彼得・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一件T恤的全球经济之旅\",\n    \"author\": \"皮翠拉・瑞沃莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866\",\n    \"category\": \"贸易\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛陀相佑\",\n    \"author\": \"侯旭东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050952-03df2b?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幸福来自绝对的信任\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036834-77bd7f?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度佛教史\",\n    \"author\": \"平川彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楞严经\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022248-843010?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Why Buddhism is True\",\n    \"author\": \"Robert Wright\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019161-b5bee8?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"淡定的智慧\",\n    \"author\": \"弘一法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017016-132f58?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界佛教通史（套装共14卷）\",\n    \"author\": \"周贵华等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866\",\n    \"category\": \"佛教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"瑜老板三分钟京剧小灶（套装2册）\",\n    \"author\": \"瑜音社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513381-1aaee4?p=8866\",\n    \"category\": \"京剧\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清棋局：明亡清兴卷\",\n    \"author\": \"刘澍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020847-19ba79?p=8866\",\n    \"category\": \"大清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清风云（全8册）\",\n    \"author\": \"鹿鼎公子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016614-3ffe45?p=8866\",\n    \"category\": \"大清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大清相国\",\n    \"author\": \"王跃文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866\",\n    \"category\": \"大清\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看上去很美\",\n    \"author\": \"王朔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866\",\n    \"category\": \"童年\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"城南旧事（绘图本）\",\n    \"author\": \"林海音\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018462-adf327?p=8866\",\n    \"category\": \"童年\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹秦\",\n    \"author\": \"王杉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028002-3ba7b4?p=8866\",\n    \"category\": \"秦朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦朝那些事儿（共3册）\",\n    \"author\": \"昊天牧云\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021549-2b4b61?p=8866\",\n    \"category\": \"秦朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"秦朝原来是这样\",\n    \"author\": \"醉罢君山\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006480-90a92e?p=8866\",\n    \"category\": \"秦朝\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国货币史（精校本）\",\n    \"author\": \"米尔顿・弗里德曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界钱币2000年\",\n    \"author\": \"伯恩德・克鲁格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375503277-39fb14?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱的千年兴衰史\",\n    \"author\": \"金菁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国货币史\",\n    \"author\": \"彭信威\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币围城\",\n    \"author\": \"约翰・莫尔丁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币之惑\",\n    \"author\": \"乔治・吉尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币变局\",\n    \"author\": \"巴里・艾肯格林等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战（典藏版）\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048705-a6c49c?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币金融学（原书第2版）\",\n    \"author\": \"弗雷德里克S.米什金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界金融危机史经典丛书共6册\",\n    \"author\": \"约翰・莫尔丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037032-23759e?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史：从货币的起源到货币的未来\",\n    \"author\": \"苗延波\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030525-dfd919?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"三千年来谁铸币\",\n    \"author\": \"王永生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"管理美元\",\n    \"author\": \"船桥洋一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023124-73dd6d?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本全球化\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币野史\",\n    \"author\": \"菲利克斯・马汀\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币简史\",\n    \"author\": \"卡比尔・塞加尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银帝国\",\n    \"author\": \"徐瑾\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"布雷顿森林货币战\",\n    \"author\": \"本・斯泰尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"货币战争（套装共5册）\",\n    \"author\": \"宋鸿兵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类货币史\",\n    \"author\": \"戴维・欧瑞尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866\",\n    \"category\": \"货币\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们与恶的距离\",\n    \"author\": \"吕莳媛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002985-472c7f?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个人的车站\",\n    \"author\": \"埃・韦・布拉金斯基/埃・亚・梁赞诺夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大象席地而坐\",\n    \"author\": \"胡迁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"攀登者\",\n    \"author\": \"阿来\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039411-ec122d?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡利古拉\",\n    \"author\": \"阿尔贝・加缪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866\",\n    \"category\": \"剧本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大势研判：经济、政策与资本市场\",\n    \"author\": \"任泽平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866\",\n    \"category\": \"大势\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"利维坦号战记（套装共4册）\",\n    \"author\": \"斯科特・维斯特菲尔德/基斯・汤普森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866\",\n    \"category\": \"蒸汽朋克\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熊秉元生活经济学九部曲（套装共9册）\",\n    \"author\": \"熊秉元\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512484-bc72f7?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1小时图解经济学\",\n    \"author\": \"铃木一之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004122-0feb48?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"分析与思考\",\n    \"author\": \"黄奇帆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999058-c4ff9b?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"漫画经济学一看就懂\",\n    \"author\": \"武敬敏/田萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998920-f86ba8?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔经济学奖经典文库系列（套装共11册）\",\n    \"author\": \"保罗・克鲁格曼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995938-fd0511?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛奶可乐经济学套装（全四册）\",\n    \"author\": \"罗伯特・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986215-95b568?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海盗经济学\",\n    \"author\": \"彼得・里森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050655-a3539f?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给年轻人的极简金融课\",\n    \"author\": \"童哲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047652-cac8d7?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"经济学要义\",\n    \"author\": \"王福重\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044937-083bb7?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"市场真相\",\n    \"author\": \"杰克D.施瓦格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"就业、利息和货币通论\",\n    \"author\": \"约翰・梅纳德・凯恩斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034656-57288e?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"People, Power, and Profits\",\n    \"author\": \"Joseph E. Stiglitz\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034398-053bfe?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"精准投资\",\n    \"author\": \"管清友\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032097-a4efc4?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何看待全球化\",\n    \"author\": \"彼得・辛格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"养老保险经济学\",\n    \"author\": \"袁志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031059-7ae40f?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有闲阶级论\",\n    \"author\": \"凡勃伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030537-777029?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"诺贝尔经济学奖的逻辑\",\n    \"author\": \"阿夫纳・奥弗尔/加布里埃尔・索德伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030366-30de9b?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"AI极简经济学\",\n    \"author\": \"阿杰伊・阿格拉沃尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026862-49e254?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"创新法则：名企破局秘笈\",\n    \"author\": \"理查德・科克等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本全球化\",\n    \"author\": \"巴里・埃森格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"灰犀牛：如何应对大概率危机\",\n    \"author\": \"米歇尔・渥克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010110-fa186a?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"随机漫步的傻瓜\",\n    \"author\": \"戴纳西姆・尼古拉斯・塔勒布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本读通10位经济学大师\",\n    \"author\": \"菲尔・桑顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007854-f5a6d5?p=8866\",\n    \"category\": \"经济学\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊思想与文化\",\n    \"author\": \"吴晓群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491883-e507e4?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊三百年\",\n    \"author\": \"罗德里克・比顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498024-c93e11?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"了不起的古希腊\",\n    \"author\": \"王冬妮\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511563-62e19d?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"出发去希腊\",\n    \"author\": \"弗朗索瓦・阿赫托戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512691-8dea22?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊史：从梭伦时代到公元前403年\",\n    \"author\": \"乔治・格罗特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513582-255bbf?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊史纲（套装共5册）\",\n    \"author\": \"狄奥多罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990118-568fff?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"苏格拉底之死（译文经典）\",\n    \"author\": \"柏拉图\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊对德意志的暴政\",\n    \"author\": \"伊莉莎・玛丽安・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古希腊罗马奴隶制\",\n    \"author\": \"威斯特曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017136-eb5c79?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"希腊神话故事\",\n    \"author\": \"古斯塔夫・施瓦布\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866\",\n    \"category\": \"希腊\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人间\",\n    \"author\": \"阿缺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028071-d39120?p=8866\",\n    \"category\": \"机器人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"机器人时代\",\n    \"author\": \"马丁・福特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015234-30ae0c?p=8866\",\n    \"category\": \"机器人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"银河帝国：机器人五部曲\",\n    \"author\": \"艾萨克・阿西莫夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009321-283a4f?p=8866\",\n    \"category\": \"机器人\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"战国：七雄博弈\",\n    \"author\": \"朱良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512049-91370e?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋那杯茶，战国这碗酒（套装共4册）\",\n    \"author\": \"南柯月初\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋大义\",\n    \"author\": \"熊逸\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"称霸（上下册）\",\n    \"author\": \"刘勋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国真有趣（全6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"贾志刚说春秋×说战国（全十二册）\",\n    \"author\": \"贾志刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国：典藏套装版（全三册）\",\n    \"author\": \"高兴宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"其实我们一直活在春秋战国（套装共6册）\",\n    \"author\": \"龙镇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"春秋战国超好看大全集\",\n    \"author\": \"君玉离\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005691-37f328?p=8866\",\n    \"category\": \"春秋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年南开日本研究文库（共18册）\",\n    \"author\": \"吴廷璆等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509472-9832f9?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阿含经校注（全九册）\",\n    \"author\": \"恒强法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509343-bdaff3?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"将成为国王的教宗\",\n    \"author\": \"大卫・科泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511473-61ec1e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神好多的日本\",\n    \"author\": \"山口谣司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金枝（全两册）\",\n    \"author\": \"詹姆斯・乔治・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513420-73750d?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神圣的存在\",\n    \"author\": \"米尔恰・伊利亚德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"炼金术之梦\",\n    \"author\": \"C.G.荣格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天国之门\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教思想史（套装全3卷）\",\n    \"author\": \"胡斯都·L.冈察雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985126-1a8242?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"基督教史（套装共2册）\",\n    \"author\": \"胡斯托・冈萨雷斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"坛经（全本全注全译）\",\n    \"author\": \"尚荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中国佛教通史（套装十五卷）\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新教伦理与资本主义精神\",\n    \"author\": \"马克斯・韦伯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无神论（牛津通识读本）\",\n    \"author\": \"朱利安・巴吉尼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛陀相佑\",\n    \"author\": \"侯旭东\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050952-03df2b?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"酒鬼与圣徒\",\n    \"author\": \"劳伦斯・奥斯本\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"犍陀罗文明史\",\n    \"author\": \"孙英刚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045543-bc6145?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每个行业都离不开心理学（套装共5册）\",\n    \"author\": \"王梓等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑格尔早期神学著作\",\n    \"author\": \"贺麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044037-106386?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平经（全本全注全译）\",\n    \"author\": \"杨寄林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绑架风云\",\n    \"author\": \"大卫・I.科策\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"信徒的国度\",\n    \"author\": \"V.S.奈保尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"圣经的故事（果麦经典）\",\n    \"author\": \"亨德里克・威廉・房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一神论的影子\",\n    \"author\": \"赵汀阳/阿兰・乐比雄\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卢丹的恶魔\",\n    \"author\": \"阿道司・赫胥黎\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031701-de423d?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏传佛教极简史\",\n    \"author\": \"德昆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印度佛教史\",\n    \"author\": \"平川彰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"佛陀传\",\n    \"author\": \"一行禅师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029292-270b2e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"禅心直指\",\n    \"author\": \"澄海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027864-99937c?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慕尼黑的清真寺\",\n    \"author\": \"伊恩・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知中9·禅的入门\",\n    \"author\": \"罗威尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杜威选集（5卷本）\",\n    \"author\": \"刘放桐等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"楞严经\",\n    \"author\": \"赖永海\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022248-843010?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷告白\",\n    \"author\": \"利皮卡・佩拉汉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知三部曲\",\n    \"author\": \"理查德・尼斯贝特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中西方哲学史（套装共2册）\",\n    \"author\": \"冯友兰等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021030-097825?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信国学大典：哲学宗教（上册）\",\n    \"author\": \"周锡䪖等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019221-2ec92b?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"写给无神论者\",\n    \"author\": \"阿兰・德波顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016830-fff7c8?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"耶路撒冷三千年\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"晨钟暮鼓\",\n    \"author\": \"张克群\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大家小书译馆系列（套装10本）\",\n    \"author\": \"尼采等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013554-def23e?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"金枝\",\n    \"author\": \"詹姆斯・乔治・弗雷泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010026-3fff55?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千面英雄\",\n    \"author\": \"约瑟夫・坎贝尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失乐园（中英插图珍藏本）\",\n    \"author\": \"约翰・弥尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008913-ba5a39?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西藏生死书\",\n    \"author\": \"索甲仁波切\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"慧灯之光（全8册）\",\n    \"author\": \"慈诚罗珠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006576-5bbcbf?p=8866\",\n    \"category\": \"宗教\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"端到端流程\",\n    \"author\": \"迈克尔・哈默/丽莎・赫什曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048249-905292?p=8866\",\n    \"category\": \"服务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"Spring Cloud微服务实战\",\n    \"author\": \"翟永超\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020250-1e5ad7?p=8866\",\n    \"category\": \"服务\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"李国文陪读《三国演义》\",\n    \"author\": \"罗贯中/李国文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357040167-4c9161?p=8866\",\n    \"category\": \"三国演义\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服亚马孙\",\n    \"author\": \"埃德・斯塔福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅰ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我的探险生涯Ⅱ\",\n    \"author\": \"斯文・赫定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅰ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界最险恶之旅Ⅱ\",\n    \"author\": \"阿普斯利・谢里-加勒德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"熬：极地求生700天\",\n    \"author\": \"阿尔弗雷德・兰辛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"虫图腾（套装共5册）\",\n    \"author\": \"闫志洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"查理日记（套装1-9册）\",\n    \"author\": \"西西弗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"荒野求生少年生存小说系列（全6册）\",\n    \"author\": \"贝尔·格里尔斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"藏地密码（珍藏版大全集）\",\n    \"author\": \"何马\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866\",\n    \"category\": \"探险\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"恋人们的森林\",\n    \"author\": \"森茉莉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985423-777157?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"断代\",\n    \"author\": \"郭强生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024321-3e4d24?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：02陪伴\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011460-0422ee?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：03分离\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011451-c5bdd9?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"戴上手套擦泪：01相遇\",\n    \"author\": \"乔纳斯・嘉德尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010389-32ec03?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡罗尔\",\n    \"author\": \"帕特里夏・海史密斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008898-271551?p=8866\",\n    \"category\": \"同性\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"南宋行暮\",\n    \"author\": \"虞云国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042666-24868f?p=8866\",\n    \"category\": \"南宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绍兴十二年\",\n    \"author\": \"夏坚勇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025293-69c02c?p=8866\",\n    \"category\": \"南宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"风流南宋\",\n    \"author\": \"易中天\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866\",\n    \"category\": \"南宋\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"父与子全集（作家榜经典文库）\",\n    \"author\": \"埃・奥・卜劳恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866\",\n    \"category\": \"回本\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蝙蝠侠手记：超人类绝密档案\",\n    \"author\": \"S.D.佩里等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985720-975708?p=8866\",\n    \"category\": \"蝙蝠侠\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怦然心动（再版）\",\n    \"author\": \"文德琳・范・德拉安南\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985642-272a86?p=8866\",\n    \"category\": \"唯美\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚瑟王之死（果麦经典）\",\n    \"author\": \"托马斯・马洛礼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866\",\n    \"category\": \"亚瑟王\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亚马逊效应\",\n    \"author\": \"娜塔莉・伯格/米娅・奈茨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866\",\n    \"category\": \"电商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"破绽：风口上的独角兽\",\n    \"author\": \"陈歆磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866\",\n    \"category\": \"电商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"11.11如何卖到一个亿\",\n    \"author\": \"陈炉均/陈威/马国良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866\",\n    \"category\": \"电商\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新宋（共15册）\",\n    \"author\": \"阿越\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049803-dea15b?p=8866\",\n    \"category\": \"穿越\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"庆余年（精校版）\",\n    \"author\": \"猫腻\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043752-01e491?p=8866\",\n    \"category\": \"穿越\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千劫眉（套装5册）\",\n    \"author\": \"藤萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034515-d69375?p=8866\",\n    \"category\": \"穿越\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"寻秦记（套装全6卷）\",\n    \"author\": \"黄易\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006882-2ead58?p=8866\",\n    \"category\": \"穿越\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史与真理（二十世纪西方哲学经典）\",\n    \"author\": \"保罗・利科\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985459-26b47c?p=8866\",\n    \"category\": \"理论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"資治通鑑·繁體豎排版（胡三省注）\",\n    \"author\": \"司馬光編集/胡三省輯注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030630-44c1c2?p=8866\",\n    \"category\": \"理论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"几何原本（全译插图本）\",\n    \"author\": \"欧几里得\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010761-329742?p=8866\",\n    \"category\": \"理论\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡高效工作法\",\n    \"author\": \"大岛祥誉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866\",\n    \"category\": \"麦肯锡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的逻辑思维\",\n    \"author\": \"高杉尚伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866\",\n    \"category\": \"麦肯锡\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鲍勃·迪伦：诗人之歌\",\n    \"author\": \"让-多米尼克·布里埃\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866\",\n    \"category\": \"摇滚\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"天坑宝藏\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙海：荒沙诡影\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020958-faed28?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沙海2：沙蟒蛇巢\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020952-c06183?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"盗墓笔记（插图版）\",\n    \"author\": \"南派三叔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005646-e7641b?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"传古奇术（套装共四册）\",\n    \"author\": \"未六羊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"鬼吹灯全集（插图版）\",\n    \"author\": \"天下霸唱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004863-5bc405?p=8866\",\n    \"category\": \"盗墓\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"门到门时代\",\n    \"author\": \"Edward Humes\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866\",\n    \"category\": \"物流\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"供应链管理\",\n    \"author\": \"刘宝红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024912-2e274f?p=8866\",\n    \"category\": \"物流\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"集装箱改变世界（修订版）\",\n    \"author\": \"马克・莱文森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866\",\n    \"category\": \"物流\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文学的读法\",\n    \"author\": \"特里・伊格尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497127-2181e6?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"阅读变现\",\n    \"author\": \"山口周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499122-5f9eef?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡片笔记写作法\",\n    \"author\": \"申克・阿伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会读书\",\n    \"author\": \"叶圣陶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357003942-ca36b7?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"间谍学校\",\n    \"author\": \"丹尼斯・布金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000366-6508f7?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大忙人的高效阅读课\",\n    \"author\": \"李源\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995281-68ab8d?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心智与阅读\",\n    \"author\": \"丹尼尔·T.威林厄姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱歌川英语学习大全（套装共5册）\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级快速阅读\",\n    \"author\": \"克里斯蒂安・格吕宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987370-2cefa8?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读\",\n    \"author\": \"艾比・马克斯・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡精英高效阅读法\",\n    \"author\": \"赤羽雄二\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"短篇小说写作指南\",\n    \"author\": \"美国《作家文摘》杂志社\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读\",\n    \"author\": \"藤原和博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越读者\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023550-9e1081?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为生命而阅读\",\n    \"author\": \"威尔・施瓦尔贝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023328-a9e738?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"洋葱阅读法\",\n    \"author\": \"彭小六\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021639-2cdecd?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效阅读\",\n    \"author\": \"彼得・孔普\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018705-8aca11?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"碟形世界（套装共6册）\",\n    \"author\": \"特里・普拉切特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018381-23efd5?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读一本书\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致阅读手册\",\n    \"author\": \"高荣成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017784-d6d43c?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"快速阅读术\",\n    \"author\": \"印南敦史\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013968-1f2fcc?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑的阅读：破解人类阅读之谜\",\n    \"author\": \"斯坦尼斯拉斯・迪昂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本书\",\n    \"author\": \"莫提默・艾德勒 / 查尔斯・范多伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"舍不得读完的书\",\n    \"author\": \"聂震宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"52周记忆魔法实战手册\",\n    \"author\": \"多米尼克・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004722-bce77e?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我最想要的记忆魔法书\",\n    \"author\": \"多米尼克・奥布莱恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004725-2e954b?p=8866\",\n    \"category\": \"阅读\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"逢考必过\",\n    \"author\": \"布里特・本尼特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491946-02547b?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像高手一样行动\",\n    \"author\": \"丹尼尔・科伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这就是微学习\",\n    \"author\": \"罗宾・德费利斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500091-56a0ca?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丽声指南针英语名著分级读物高中版第三级（套装共6册）\",\n    \"author\": \"Joanna Davidson等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506067-2ec3d5?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习的方法\",\n    \"author\": \"圣地亚哥·拉蒙-卡哈尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507387-b58026?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"九宫格写作法\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"卡片笔记写作法\",\n    \"author\": \"申克・阿伦斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵程序设计丛书：Java进阶高手（套装共8册）\",\n    \"author\": \"沃伯顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"图灵前端核心知识进阶系列（套装全10册）\",\n    \"author\": \"韦鲁等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510897-922ded?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"通往未来之路\",\n    \"author\": \"赵昂/任国荣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"费曼学习法\",\n    \"author\": \"尹红心/李伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512211-79ec46?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"笔记思考术\",\n    \"author\": \"黄忠毅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512244-216e47?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识炼金术\",\n    \"author\": \"邱昭良/王谋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512442-a712f3?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"聪明人的才华战略\",\n    \"author\": \"莱昂纳多・洛斯佩纳托\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效写作的秘密\",\n    \"author\": \"杰拉尔德・格拉夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001641-466852?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"最好的学区房是你家的书房\",\n    \"author\": \"佐藤亮子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大壮的信\",\n    \"author\": \"苗炜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996169-ca0701?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何写出一篇好文章\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995383-8fa7c9?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"蔡骏24堂写作课\",\n    \"author\": \"蔡骏\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995332-e2f2c1?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"颠覆式学习\",\n    \"author\": \"周林文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效写作\",\n    \"author\": \"芝本秀德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995110-b7a712?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好思考\",\n    \"author\": \"成甲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图学与用\",\n    \"author\": \"思学团队\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992206-56a5d5?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效记忆（原书第2版）\",\n    \"author\": \"肯尼思・希格比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991930-4a8ea6?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"钱歌川英语学习大全（套装共5册）\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"超级快速阅读\",\n    \"author\": \"克里斯蒂安・格吕宁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987370-2cefa8?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"思维导图完整手册\",\n    \"author\": \"东尼・博赞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987073-f54ce6?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"微精通\",\n    \"author\": \"罗伯特・特威格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提高记忆的100种方法\",\n    \"author\": \"王小军\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985825-3dd88d?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讨论\",\n    \"author\": \"史蒂芬·D. 布鲁克菲尔德/史蒂芬・普莱斯基尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984676-66809c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读\",\n    \"author\": \"艾比・马克斯・比尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：如何成为一个有价值的知识变现者\",\n    \"author\": \"Angie\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"重新定义学习\",\n    \"author\": \"杨明高\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053160-525c7e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习天性\",\n    \"author\": \"小沼势矢\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051951-468fab?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哈佛大学经典课程分享（套装9册）\",\n    \"author\": \"哈佛大学\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习：10个你必须掌握的未来生存法则\",\n    \"author\": \"丹・苏利文/凯瑟琳・野村\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看完就用的思维导图\",\n    \"author\": \"刘艳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051396-5d6b11?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘+（第3版）\",\n    \"author\": \"邱昭良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"墨菲定律（青春版）\",\n    \"author\": \"书鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"零基础入门学习Python\",\n    \"author\": \"小甲鱼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"读懂一本书\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为未知而教，为未来而学\",\n    \"author\": \"戴维・珀金斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（八）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043593-cd4e90?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为面向未来的学习者（原书第7版）\",\n    \"author\": \"卡罗尔・卡特等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学语言\",\n    \"author\": \"亚历克斯・罗林斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043503-1bf41f?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（六）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043296-42eb15?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（七）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043164-770743?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（三）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043062-c23c04?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（四）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（五）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042861-1cb1cb?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英国《金融时报》原文阅读精选集（二）\",\n    \"author\": \"英国《金融时报》\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042696-3e0f87?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"被解释的美\",\n    \"author\": \"金雯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041943-2f0dec?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"研究生完全求生手冊\",\n    \"author\": \"彭明輝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039534-579efd?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"练习的心态\",\n    \"author\": \"托马斯 M. 斯特纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357038139-a13fd2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何高效学习\",\n    \"author\": \"斯科特・扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学会写作\",\n    \"author\": \"粥左罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓学习好，就是方法好\",\n    \"author\": \"坪田信贵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036189-bba070?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效的方法\",\n    \"author\": \"泰勒・本-沙哈尔/安格斯・里奇韦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道\",\n    \"author\": \"芭芭拉・奥克利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033018-b16bf2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习之道（第2版）\",\n    \"author\": \"乔希・维茨金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"怎样学习文言文\",\n    \"author\": \"张中行著\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"学习力：颠覆职场学习的高效方法\",\n    \"author\": \"王世民/缪志聪\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何用Kindle高效学习\",\n    \"author\": \"直树桑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032121-9975ae?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"10秒沟通\",\n    \"author\": \"荒木真理子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"能力陷阱\",\n    \"author\": \"埃米尼亚・伊贝拉\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高分智囊团\",\n    \"author\": \"郑书豪等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030951-f6b083?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"每天最重要的2小时\",\n    \"author\": \"乔西・戴维斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何管好自己（第五版）\",\n    \"author\": \"约翰・康特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意改变\",\n    \"author\": \"玛丽・简・瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028248-dd3101?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何学习：用更短的时间达到更佳效果和更好成绩\",\n    \"author\": \"亚当・罗宾逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身学习\",\n    \"author\": \"黄征宇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"英语写作手册：风格的要素\",\n    \"author\": \"威廉・斯特伦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"越读者\",\n    \"author\": \"郝明义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023550-9e1081?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度思考：不断逼近问题的本质\",\n    \"author\": \"莫琳・希凯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认知天性\",\n    \"author\": \"彼得・布朗/亨利・勒迪格三世\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终身幼儿园\",\n    \"author\": \"米切尔・雷斯尼克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"完全写作指南\",\n    \"author\": \"劳拉・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为有效学习的高手\",\n    \"author\": \"卡尔・纽波特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"知识大迁移\",\n    \"author\": \"威廉・庞德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019845-51d7de?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这样读书就够了\",\n    \"author\": \"赵周\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019695-1defad?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度学习：彻底解决你的知识焦虑\",\n    \"author\": \"今井睦美\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019398-eb3c14?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何成为一个学习忍者\",\n    \"author\": \"格雷厄姆・奥尔科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018495-810956?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效阅读一本书\",\n    \"author\": \"奥野宣之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"极致阅读手册\",\n    \"author\": \"高荣成\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017784-d6d43c?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"有效学习\",\n    \"author\": \"乌尔里希・伯泽尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1368个单词就够了\",\n    \"author\": \"王乐平\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"持续学习和行动让人生逆袭（套装9册）\",\n    \"author\": \"廖珺等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015714-57fbb1?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"翻译的技巧\",\n    \"author\": \"钱歌川\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015609-4aebb7?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"刻意练习：如何从新手到大师\",\n    \"author\": \"安德斯・艾利克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"脑洞大开的微积分\",\n    \"author\": \"刘祺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013872-96990e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一本小小的红色写作书\",\n    \"author\": \"布兰登・罗伊尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012708-71ba79?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼数学\",\n    \"author\": \"乔丹・艾伦伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012669-8145da?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"成功就靠这点破英语\",\n    \"author\": \"孙铁麟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011910-c8a840?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟各国人都聊的来\",\n    \"author\": \"本尼・刘易斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何阅读一本书\",\n    \"author\": \"莫提默・艾德勒 / 查尔斯・范多伦\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的男孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007704-26fa9e?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培养最棒的女孩\",\n    \"author\": \"赵子墨\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我们要自学\",\n    \"author\": \"张玳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"复盘：对过去的事情做思维演练\",\n    \"author\": \"陈中\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"外语是怎样学会的\",\n    \"author\": \"王初明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的眼脑直映快读法\",\n    \"author\": \"胡雅茹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004983-8ff776?p=8866\",\n    \"category\": \"学习\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"侯大利刑侦笔记7\",\n    \"author\": \"小桥老树\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491982-08c26c?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黄雀计划\",\n    \"author\": \"鬼庖丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498957-155512?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"弹弓神警2\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我在东北当警察（套装共3册）\",\n    \"author\": \"程琳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031446-ae2e03?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个刑警的日子\",\n    \"author\": \"蓝衣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023343-d37ba8?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑锅\",\n    \"author\": \"常书欣\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021141-2483c9?p=8866\",\n    \"category\": \"刑侦\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"武志红经典作品合集（套装共4册）\",\n    \"author\": \"武志红\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866\",\n    \"category\": \"武志红\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的手账整理魔法\",\n    \"author\": \"MUKI\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033114-327d0f?p=8866\",\n    \"category\": \"手绘\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"生而为猫挺好的\",\n    \"author\": \"猫小姐\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866\",\n    \"category\": \"手绘\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小人物：我和父亲乔布斯\",\n    \"author\": \"丽莎・布伦南・乔布斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866\",\n    \"category\": \"乔布斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"活着就为改变世界：乔布斯纪念套装四册\",\n    \"author\": \"杰弗里・扬/威廉・西蒙/艾伦・多伊奇曼/卡迈恩・加洛\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008478-595baa?p=8866\",\n    \"category\": \"乔布斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幻觉师\",\n    \"author\": \"悲伤感应\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006555-2ab14e?p=8866\",\n    \"category\": \"乔布斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"史蒂夫·乔布斯传\",\n    \"author\": \"沃尔特·艾萨克森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866\",\n    \"category\": \"乔布斯\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"周易参同契（全本全注全译）\",\n    \"author\": \"章偉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"太平经（全本全注全译）\",\n    \"author\": \"杨寄林译注\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"终南山密码\",\n    \"author\": \"巫童\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033876-257d0b?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"梁冬说庄子系列（套装共六册）\",\n    \"author\": \"梁冬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031500-73ab77?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东西之道\",\n    \"author\": \"汉斯・格奥尔格・梅勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"道德经\",\n    \"author\": \"老子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当道家统治中国\",\n    \"author\": \"林嘉文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866\",\n    \"category\": \"道家\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"社会设计\",\n    \"author\": \"笕裕介\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866\",\n    \"category\": \"价值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值\",\n    \"author\": \"张磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866\",\n    \"category\": \"价值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识投资（原书第10版）\",\n    \"author\": \"滋维・博迪/亚历克斯・凯恩/艾伦 J. 马库斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356995317-3a8c8c?p=8866\",\n    \"category\": \"价值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"价值规律\",\n    \"author\": \"水木然\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024876-c08f98?p=8866\",\n    \"category\": \"价值\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"手机摄影轻松学\",\n    \"author\": \"李华春\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985684-e8624f?p=8866\",\n    \"category\": \"实用\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"神奇的手账整理魔法\",\n    \"author\": \"MUKI\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033114-327d0f?p=8866\",\n    \"category\": \"实用\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"石头剪刀布博弈心理学\",\n    \"author\": \"木瓜制造\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007338-0946f5?p=8866\",\n    \"category\": \"实用\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摆谱：身份的潜规则\",\n    \"author\": \"余不讳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866\",\n    \"category\": \"实用\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"这真的是你的错吗\",\n    \"author\": \"加藤谛三\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499227-3864f2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"我就是你啊\",\n    \"author\": \"皮埃尔・佩利西耶\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"特别会说话的人都这样说话\",\n    \"author\": \"大野萌子\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"可复制的沟通力\",\n    \"author\": \"樊登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"把自己当回事儿\",\n    \"author\": \"杨天真\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"尬聊终结者\",\n    \"author\": \"庄舒涵\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"不妥协的谈判\",\n    \"author\": \"丹尼尔・夏皮罗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"个性优势\",\n    \"author\": \"吉姆・巴雷特/休・格林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511347-2ee920?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"畅所欲言\",\n    \"author\": \"道格・克兰德尔/马特・金卡德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511779-c8282c?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"无压力社交\",\n    \"author\": \"吉莉恩・巴特勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512292-5b84b2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"当时这样说就好了\",\n    \"author\": \"伊庭正康\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控沟通\",\n    \"author\": \"贾斯汀・李\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"奇葩心理学\",\n    \"author\": \"冈田尊司\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004146-e96884?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓会说话，就是会换位思考\",\n    \"author\": \"卡洛琳・塔格特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357002073-ea5db8?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡公众表达课\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝对坦率\",\n    \"author\": \"金・斯科特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"21天说服力养成\",\n    \"author\": \"诺瓦・戈尔茨坦等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357000174-b0db79?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判2\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效沟通的100种方法\",\n    \"author\": \"王利利\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事力\",\n    \"author\": \"高琳/林宏博\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何讲好一件事\",\n    \"author\": \"埃丝特·K·乔伊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992356-e961db?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"幽默感\",\n    \"author\": \"李新\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"允许被说服\",\n    \"author\": \"艾尔・比坦帕里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你的情商，决定你的人生高度\",\n    \"author\": \"心屋仁之助\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你为什么不道歉\",\n    \"author\": \"哈丽特・勒纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990589-e95cbc?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"会说话的人运气都不会太差\",\n    \"author\": \"矢野香\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"为什么精英这样沟通最高效\",\n    \"author\": \"桦泽紫苑\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服\",\n    \"author\": \"邝大卫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好接话\",\n    \"author\": \"山口拓朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何正确吵架\",\n    \"author\": \"朱迪斯・莱特/鲍勃・莱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"用事实说话\",\n    \"author\": \"马克・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"情商是什么？\",\n    \"author\": \"李筱懿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"所谓情商高，就是会说话\",\n    \"author\": \"佐佐木圭一\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝地谈判\",\n    \"author\": \"马蒂亚斯・施汉纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键提问\",\n    \"author\": \"詹姆斯·E.瑞安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"即兴演讲\",\n    \"author\": \"朱迪思・汉弗莱\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通赢家\",\n    \"author\": \"徐丽丽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049902-070654?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津式高效沟通\",\n    \"author\": \"冈田昭人\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1分钟沟通课\",\n    \"author\": \"鱼住理英\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高效人士的问题解决术\",\n    \"author\": \"森秀明\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049437-4b60bc?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"谈判技巧：菜鸟谈判进阶的八大要领\",\n    \"author\": \"鲍勃・埃瑟林顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度说服\",\n    \"author\": \"梁秋阳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商沟通\",\n    \"author\": \"仲佳伟/文娅\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043860-e43eee?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"麦肯锡教我的谈判武器\",\n    \"author\": \"高杉尚孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"边界\",\n    \"author\": \"吉莲・邰蒂\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通力就是销售力\",\n    \"author\": \"余尚祥\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"掌控谈话\",\n    \"author\": \"克里斯・沃斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"心理营养\",\n    \"author\": \"林文采/伍娜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话第一步\",\n    \"author\": \"麦克▪P.尼可斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"语言表达的艺术\",\n    \"author\": \"赵磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030414-9672c6?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"亲和力\",\n    \"author\": \"古宫昇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"自信表达\",\n    \"author\": \"兰迪・帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030198-77c629?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"深度影响：如何自然地赢得他人的心\",\n    \"author\": \"凯伦・梁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何建立好人缘\",\n    \"author\": \"谢湘萍\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高情商沟通术\",\n    \"author\": \"胡慎之\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357029124-a2a12a?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"与原生家庭和解\",\n    \"author\": \"爱丽丝・米勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话2\",\n    \"author\": \"马薇薇/黄执中/周玄毅等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"感召力\",\n    \"author\": \"西蒙・兰卡斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"像间谍一样思考\",\n    \"author\": \"卡尔森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020934-24a0ae?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷暴力\",\n    \"author\": \"玛丽・弗朗斯・伊里戈扬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"提升你的沟通技能（第四版）\",\n    \"author\": \"艾伦・巴克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020118-157ff6?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"内向者沟通圣经\",\n    \"author\": \"珍妮弗・康维勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"杠杆说服力\",\n    \"author\": \"凯文・霍根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019623-c2c1a7?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"绝佳提问：探询改变商业与生活\",\n    \"author\": \"沃伦・贝格尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何实现有效社交\",\n    \"author\": \"凯伦・伯格\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018606-3ed13e?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"高难度沟通\",\n    \"author\": \"贾森・杰伊/加布里埃尔・格兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018492-971649?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你就是孩子最好的玩具\",\n    \"author\": \"金伯莉・布雷恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017844-ea3b3d?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"说服：像讲故事一样讲道理\",\n    \"author\": \"尼克・克里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017778-78f09d?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"再也不怕跟人打交道\",\n    \"author\": \"莉尔・朗兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"如何有效提问\",\n    \"author\": \"斋藤孝\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016725-e622b1?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"故事思维\",\n    \"author\": \"安妮特・西蒙斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"细节：如何轻松影响他人\",\n    \"author\": \"罗伯特・西奥迪尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键对话\",\n    \"author\": \"凯瑞・派特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015342-e01712?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"关键冲突\",\n    \"author\": \"科里・帕特森/约瑟夫・格雷尼等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015339-b03473?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"解决冲突的关键技巧\",\n    \"author\": \"达纳・卡斯帕森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔鬼搭讪学\",\n    \"author\": \"魔鬼咨询师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"P.E.T.父母效能训练\",\n    \"author\": \"托马斯・戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话：新鲜有趣的话术精进技巧\",\n    \"author\": \"马东/马薇薇/黄执中等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"沟通的艺术\",\n    \"author\": \"罗纳德・阿德勒/拉塞尔・普罗克特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"魔力四射：如何打动、亲近和影响他人\",\n    \"author\": \"帕特里克・金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"冷读术（白金珍藏版）\",\n    \"author\": \"石真语\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"好好说话\",\n    \"author\": \"学诚法师\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"跟任何人都聊得来\",\n    \"author\": \"迈克・贝克特尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"演讲的力量\",\n    \"author\": \"克里斯・安德森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006537-682cc0?p=8866\",\n    \"category\": \"沟通\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"小说药丸\",\n    \"author\": \"埃拉・伯绍德/苏珊・埃尔德金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356987217-831e84?p=8866\",\n    \"category\": \"药方\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"朕知道了\",\n    \"author\": \"傅淞岩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866\",\n    \"category\": \"雍正\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"雍正帝：中国的独裁君主\",\n    \"author\": \"宫崎市定\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866\",\n    \"category\": \"雍正\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货狙击手\",\n    \"author\": \"彼得 ·L. 勃兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357004131-eff6fd?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期权、期货及其他衍生产品（原书第9版）\",\n    \"author\": \"约翰・赫尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"一个农民的亿万传奇\",\n    \"author\": \"傅海棠\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"十年一梦（修订版）\",\n    \"author\": \"青泽\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"证券混沌操作法（典藏版）\",\n    \"author\": \"比尔・威廉斯/贾丝廷・格雷戈里-威廉斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"发现价格\",\n    \"author\": \"姜洋\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"暗池\",\n    \"author\": \"帕特森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货市场技术分析\",\n    \"author\": \"约翰・墨菲\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"期货大作手风云录\",\n    \"author\": \"刘强\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"裸奔的钱\",\n    \"author\": \"沈良\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866\",\n    \"category\": \"期货\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"改变历史的香料商人\",\n    \"author\": \"贾尔斯・米尔顿\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375491709-49d668?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"原则：应对变化中的世界秩序\",\n    \"author\": \"瑞・达利欧\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492075-4f7b4c?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界环境史\",\n    \"author\": \"威廉·H. 麦克尼尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375492747-a5c12b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"民族国家间的和平与战争（全2册）\",\n    \"author\": \"雷蒙・阿隆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375497541-2895bb?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"哲学100问（套装共3册）\",\n    \"author\": \"书杰\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498444-830a41?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东大教授世界文学讲义系列（套装全5册）\",\n    \"author\": \"沼野充义\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375498672-8a6511?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大转向：世界如何步入现代\",\n    \"author\": \"斯蒂芬・格林布拉特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的历史精华·贝克知识丛书（套装共21册）\",\n    \"author\": \"汉斯-克里斯托弗・施罗德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375500913-fd0de9?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"书信中的世界史\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375505836-f1bc65?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"失落文明系列（套装共7卷）\",\n    \"author\": \"克里斯蒂娜・里格斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑色雅典娜：古典文明的亚非之根（套装全3卷共5册）\",\n    \"author\": \"马丁・贝尔纳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"契诃夫短篇小说精选集（2020）\",\n    \"author\": \"契诃夫\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375508863-47608a?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"滔天洪水\",\n    \"author\": \"亚当・图兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"半小时漫画世界史2\",\n    \"author\": \"陈磊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西学三书（套装共三册）\",\n    \"author\": \"赵林\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510249-849869?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界史的故事（套装共6册）\",\n    \"author\": \"苏珊・怀斯・鲍尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510552-7ebbe2?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法兰西双皇后\",\n    \"author\": \"南希・戈德斯通\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"认识世界：古代与中世纪哲学\",\n    \"author\": \"理查德・大卫・普莱希特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511017-ad42d5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"培生艺术史（套装6册）\",\n    \"author\": \"大卫·G.威尔金斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375511581-0d0d59?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帖木儿之后\",\n    \"author\": \"约翰・达尔文\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512304-8a0c34?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"走向火焰\",\n    \"author\": \"多米尼克・利芬\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375512313-ff672a?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭三部曲\",\n    \"author\": \"约翰・朱利叶斯・诺里奇\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513423-1f607d?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路上的帝国\",\n    \"author\": \"蒂姆・哈福德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513621-d0eb00?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大人物的世界史\",\n    \"author\": \"西蒙・蒙蒂菲奥里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1375513792-4193e9?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史上的大帝国\",\n    \"author\": \"加布里埃尔・马丁内斯-格罗斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356999973-6bcd2f?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大国霸权\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"参与的力量\",\n    \"author\": \"慎泰俊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356992248-f3bcbb?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：世界大战的时代（全三册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"赛雷三分钟漫画世界史\",\n    \"author\": \"赛雷三分钟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界英雄史诗译丛（套装14册）\",\n    \"author\": \"荷马等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356984031-b9ecb5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"牛津世界史丛书（共四册）\",\n    \"author\": \"贾斯珀・格里芬等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1356983875-afdd9b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看得见的世界史套装（全15卷）\",\n    \"author\": \"肖石忠等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"讲谈社·兴亡的世界史（全九卷）\",\n    \"author\": \"森谷公俊等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357052227-3cba4a?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"古典时代的终结（贝克知识丛书）\",\n    \"author\": \"哈特温・布兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中东史（套装共3册）\",\n    \"author\": \"哈全安\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"从航海图到世界史\",\n    \"author\": \"宫崎正胜\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"汤因比著作集（套装全7册）\",\n    \"author\": \"阿诺德・汤因比\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"西方通史：从古代源头到20世纪（全3册）\",\n    \"author\": \"海因里希・奥古斯特・温克勒\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"罗马元老院与人民\",\n    \"author\": \"玛丽・比尔德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明（套装共2册）\",\n    \"author\": \"玛丽・比尔德/戴维・奥卢索加\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：从史前到21世纪（第7版新校本）\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045897-0418e2?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"千年文明史\",\n    \"author\": \"勒尔・兹威克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"法国大革命\",\n    \"author\": \"维森\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"黑羊与灰鹰（套装共3册）\",\n    \"author\": \"丽贝卡・韦斯特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的历史（全5册）\",\n    \"author\": \"丹尼尔・布尔斯廷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"征服与革命中的阿拉伯人\",\n    \"author\": \"尤金・罗根\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英帝国与第一次世界大战\",\n    \"author\": \"戴维・雷诺兹\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"远方之镜\",\n    \"author\": \"巴巴拉・W・塔奇曼\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"人类六千年（上下两册）\",\n    \"author\": \"刘景华\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"摩登时代：从1920年代到1990年代的世界\",\n    \"author\": \"保罗・约翰逊\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032913-6118fe?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界文明史（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"印加帝国的末日\",\n    \"author\": \"金・麦夸里\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的崩塌\",\n    \"author\": \"埃里克·H.克莱因\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357030063-a42a80?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海都物语\",\n    \"author\": \"盐野七生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"东方的文明（套装共2册）\",\n    \"author\": \"勒内・格鲁塞\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357027801-a8005f?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"两个世界的战争\",\n    \"author\": \"安东尼・帕戈登\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357026268-2ca776?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"拜占庭帝国大战略\",\n    \"author\": \"爱德华·N.勒特韦克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"海洋与文明\",\n    \"author\": \"林肯・佩恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"文明的故事（全11卷）\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"百年战争简史\",\n    \"author\": \"德斯蒙德・苏厄德\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"20世纪简史\",\n    \"author\": \"杰弗里・布莱内\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357021225-d87722?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：大国博弈\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020181-db0efd?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"看懂世界格局的第一本书：大国之略\",\n    \"author\": \"王伟\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357020175-352ae5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲文明史精品系列（套装共8册）\",\n    \"author\": \"阿曼达・维尔等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019635-e4c4dd?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"历史的教训\",\n    \"author\": \"威尔・杜兰特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019254-d01ce4?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"新视角全球简史套装（三册）\",\n    \"author\": \"莉奥妮・希克斯等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018528-cc4d08?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"事实改变之后\",\n    \"author\": \"托尼・朱特\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史文化丛书（精选15册）\",\n    \"author\": \"王海利等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357019155-dbc0f5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大历史，小世界\",\n    \"author\": \"辛西娅・斯托克斯・布朗\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"全球通史：1500年以后的世界\",\n    \"author\": \"斯塔夫里阿诺斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357017241-7f501e?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"换个角度读历史（套装共3册）\",\n    \"author\": \"大卫・克里斯蒂安等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357016593-cb129e?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"镜子：照出你看不见的世界史\",\n    \"author\": \"爱德华多・加莱亚诺\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015687-56df1e?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"BBC世界史\",\n    \"author\": \"安德鲁・玛尔\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"白银资本：重视经济全球化中的东方\",\n    \"author\": \"贡德・弗兰克\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357014439-33d3c7?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"现代世界史（插图第10版）\",\n    \"author\": \"帕尔默/乔・科尔顿等\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013437-274a1b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"1493：物种大交换开创的世界史\",\n    \"author\": \"查尔斯・曼恩\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"中信经典历史之世界史篇（共6册）\",\n    \"author\": \"大卫・克里斯蒂安/伊恩・莫里斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357012936-2633d0?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"简·奥斯丁文集（套装共6本）\",\n    \"author\": \"简・奥斯丁\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357011874-14d4b5?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"大英博物馆世界简史（套装共3册）\",\n    \"author\": \"尼尔・麦格雷戈\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界小史\",\n    \"author\": \"恩斯特・贡布里希\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009717-003d99?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界未解之谜大全集（超值白金版）\",\n    \"author\": \"文若愚\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009702-76dece?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界是红的：看懂中国经济格局的一本书\",\n    \"author\": \"白云先生\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"德国简史\",\n    \"author\": \"孟钟捷\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"欧洲：1453年以来的争霸之途\",\n    \"author\": \"布伦丹・西姆斯\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"美国是个大公司\",\n    \"author\": \"闵纬国\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"世界历史有一套（全6册）\",\n    \"author\": \"杨白劳\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357007026-a96241?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"革命的年代：1789～1848\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"资本的年代：1848～1875\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"帝国的年代：1875～1914\",\n    \"author\": \"艾瑞克·霍布斯鲍姆\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"给大家看的全球通史\",\n    \"author\": \"房龙\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006666-b79483?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"丝绸之路：一部全新的世界史\",\n    \"author\": \"彼得·弗兰科潘\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  },\n  {\n    \"title\": \"你知道或不知道的英国史\",\n    \"author\": \"贺桂金\",\n    \"link\": \"https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866\",\n    \"category\": \"世界\",\n    \"language\": \"ZH\",\n    \"level\": \"Unknown\",\n    \"formats\": [\n      \"epub\",\n      \"mobi\",\n      \"azw3\"\n    ]\n  }\n]"
  },
  {
    "path": "docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"zh-CN\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"description\" content=\"电子书下载宝库 - 汇聚24,000+本电子书，涵盖文学、历史、科普、管理、技术等各个领域。支持epub、mobi、azw3格式，完全免费。\">\n    <meta name=\"keywords\" content=\"电子书下载,免费电子书,epub下载,mobi下载,azw3下载,电子书资源,文学电子书,历史电子书\">\n    <meta name=\"author\" content=\"ebook-treasure-chest\">\n    <meta name=\"robots\" content=\"index, follow\">\n    \n    <!-- Open Graph -->\n    <meta property=\"og:title\" content=\"📚 电子书下载宝库 - Ebook Treasure Chest\">\n    <meta property=\"og:description\" content=\"汇聚24,000+本电子书，涵盖文学、历史、科普、管理、技术等各个领域\">\n    <meta property=\"og:type\" content=\"website\">\n    \n    <!-- Preload critical resources -->\n    <link rel=\"preload\" href=\"all-books.json\" as=\"fetch\" crossorigin>\n    <link rel=\"preload\" href=\"search.js\" as=\"script\">\n    \n    <title>📚 电子书下载宝库 - Ebook Treasure Chest</title>\n    <style>\n        /* Solarized Dark Color Palette */\n        :root {\n            --base03: #002b36;  /* darkest background */\n            --base02: #073642;  /* dark background */\n            --base01: #586e75;  /* dark content */\n            --base00: #657b83;  /* content */\n            --base0: #839496;   /* main content */\n            --base1: #93a1a1;   /* comments */\n            --base2: #eee8d5;   /* light background */\n            --base3: #fdf6e3;   /* lightest background */\n            --yellow: #b58900;\n            --orange: #cb4b16;\n            --red: #dc322f;\n            --magenta: #d33682;\n            --violet: #6c71c4;\n            --blue: #268bd2;\n            --cyan: #2aa198;\n            --green: #859900;\n        }\n        \n        * {\n            box-sizing: border-box;\n            margin: 0;\n            padding: 0;\n        }\n        \n        body {\n            font-family: \"SF Mono\", \"Monaco\", \"Inconsolata\", \"Fira Code\", \"Roboto Mono\", \"Source Code Pro\", \"Consolas\", \"Courier New\", monospace, \"Microsoft YaHei\", sans-serif;\n            line-height: 1.7;\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 20px;\n            color: var(--base0);\n            background: var(--base03);\n            min-height: 100vh;\n        }\n        \n        @media (max-width: 768px) {\n            body {\n                padding: 15px;\n            }\n        }\n        \n        header {\n            background: var(--base02);\n            padding: 30px;\n            border-radius: 8px;\n            border: 1px solid var(--base01);\n            margin-bottom: 30px;\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);\n        }\n        \n        h1 {\n            font-size: 2.5em;\n            margin: 0 0 16px 0;\n            color: var(--cyan);\n            font-weight: 700;\n            text-align: center;\n            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);\n            letter-spacing: -0.5px;\n        }\n        \n        h2 {\n            font-size: 1.75em;\n            margin: 32px 0 20px 0;\n            padding-bottom: 12px;\n            border-bottom: 2px solid var(--blue);\n            color: var(--base1);\n            font-weight: 600;\n            position: relative;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }\n        \n        h2::before {\n            content: \"\";\n            position: absolute;\n            left: 0;\n            bottom: -2px;\n            width: 60px;\n            height: 2px;\n            background: var(--cyan);\n            border-radius: 1px;\n        }\n        \n        h3 {\n            font-size: 1.3em;\n            margin: 24px 0 12px 0;\n            color: var(--base0);\n            font-weight: 500;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }\n        \n        h4 {\n            font-size: 1.1em;\n            margin: 16px 0 8px 0;\n            color: var(--base00);\n            font-weight: 500;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }\n        \n        a {\n            color: var(--blue);\n            text-decoration: none;\n            transition: all 0.2s ease;\n            font-weight: 500;\n        }\n        \n        a:hover {\n            color: var(--cyan);\n            text-decoration: underline;\n        }\n        \n        a:focus {\n            outline: 2px solid var(--blue);\n            outline-offset: 2px;\n            border-radius: 2px;\n        }\n        \n        blockquote {\n            padding: 16px 20px;\n            color: var(--base1);\n            border-left: 4px solid var(--yellow);\n            margin: 20px 0;\n            background: var(--base02);\n            border-radius: 6px;\n            font-style: italic;\n            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);\n        }\n        \n        hr {\n            height: 1px;\n            margin: 40px 0;\n            background: linear-gradient(90deg, transparent, var(--base01), transparent);\n            border: 0;\n        }\n        \n        .search-container {\n            margin: 30px 0;\n            position: relative;\n            background: var(--base02);\n            padding: 24px;\n            border-radius: 8px;\n            border: 1px solid var(--base01);\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);\n        }\n        \n        input[type=\"text\"] {\n            width: 100%;\n            padding: 14px 18px;\n            font-size: 16px;\n            border: 2px solid var(--base01);\n            border-radius: 6px;\n            box-sizing: border-box;\n            transition: all 0.3s ease;\n            background-color: var(--base03);\n            color: var(--base0);\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);\n        }\n        \n        input[type=\"text\"]:hover {\n            border-color: var(--base00);\n            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);\n        }\n        \n        input[type=\"text\"]:focus {\n            outline: none;\n            border-color: var(--blue);\n            box-shadow: 0 0 0 3px rgba(38, 139, 210, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.2);\n            background-color: var(--base02);\n        }\n        \n        input[type=\"text\"]::placeholder {\n            color: var(--base01);\n        }\n        \n        .search-hint {\n            margin-top: 12px;\n            color: var(--base1);\n            font-size: 14px;\n            display: flex;\n            align-items: center;\n            gap: 8px;\n            padding: 8px 12px;\n            background: var(--base03);\n            border-radius: 6px;\n            border: 1px solid var(--base01);\n        }\n        \n        #search-results {\n            margin-top: 24px;\n            min-height: 50px;\n        }\n        \n        .loading-indicator {\n            text-align: center;\n            padding: 40px 20px;\n            color: var(--base1);\n            font-size: 16px;\n            background: var(--base02);\n            border-radius: 8px;\n            border: 1px solid var(--base01);\n        }\n        \n        .loading-indicator::before {\n            content: \"⏳ \";\n            animation: pulse 1.5s ease-in-out infinite;\n            color: var(--yellow);\n        }\n        \n        @keyframes pulse {\n            0%, 100% { opacity: 1; }\n            50% { opacity: 0.5; }\n        }\n        \n        ul {\n            padding-left: 0;\n            margin: 16px 0;\n            list-style: none;\n        }\n        \n        li {\n            margin: 12px 0;\n            padding: 12px 16px;\n            background: var(--base02);\n            border-left: 3px solid var(--blue);\n            border-radius: 6px;\n            transition: all 0.2s ease;\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n            border: 1px solid var(--base01);\n        }\n        \n        li:hover {\n            transform: translateX(4px);\n            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);\n            border-left-width: 4px;\n            border-left-color: var(--cyan);\n            background: var(--base03);\n        }\n        \n        li strong {\n            color: var(--base1);\n            font-size: 1.05em;\n            font-weight: 600;\n        }\n        \n        p {\n            margin: 16px 0;\n            line-height: 1.7;\n            color: var(--base0);\n        }\n        \n        .overview-stats {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));\n            gap: 20px;\n            margin: 30px 0;\n        }\n        \n        .stat-item {\n            padding: 20px 18px;\n            background: var(--base02);\n            border-radius: 8px;\n            border: 1px solid var(--base01);\n            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);\n            transition: all 0.3s ease;\n            text-align: center;\n        }\n        \n        .stat-item:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);\n            border-color: var(--cyan);\n            background: var(--base03);\n        }\n        \n        .stat-item span {\n            display: block;\n            font-size: 13px;\n            color: var(--base1);\n            margin-bottom: 10px;\n            font-weight: 500;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            opacity: 0.9;\n        }\n        \n        .stat-item strong {\n            display: block;\n            font-size: 1.4em;\n            color: var(--cyan);\n            font-weight: 600;\n            margin-top: 6px;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n            line-height: 1.3;\n        }\n        \n        @media (max-width: 600px) {\n            .overview-stats {\n                grid-template-columns: 1fr;\n                gap: 16px;\n            }\n            \n            h1 {\n                font-size: 2em;\n            }\n            \n            h2 {\n                font-size: 1.5em;\n            }\n        }\n        \n        .category-section {\n            background: var(--base02);\n            padding: 24px;\n            margin: 24px 0;\n            border-radius: 8px;\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);\n            border: 1px solid var(--base01);\n            transition: all 0.3s ease;\n        }\n        \n        .category-section:hover {\n            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);\n            border-color: var(--cyan);\n        }\n        \n        .book-item {\n            padding: 16px;\n            margin: 12px 0;\n            background: var(--base03);\n            border-radius: 6px;\n            border-left: 4px solid var(--blue);\n            border: 1px solid var(--base01);\n            border-left-width: 4px;\n            transition: all 0.2s ease;\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n        }\n        \n        .book-item:hover {\n            background: var(--base02);\n            transform: translateX(4px);\n            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);\n            border-left-color: var(--cyan);\n        }\n        \n        .book-item strong {\n            color: var(--base1);\n            font-size: 1.05em;\n            display: block;\n            margin-bottom: 6px;\n            font-weight: 600;\n        }\n        \n        .book-item .book-meta {\n            color: var(--base00);\n            font-size: 0.9em;\n            margin: 8px 0;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }\n        \n        .book-item .book-link {\n            display: inline-block;\n            margin-top: 8px;\n            padding: 6px 14px;\n            background: var(--blue);\n            color: var(--base03) !important;\n            border-radius: 6px;\n            font-weight: 600;\n            transition: all 0.2s ease;\n            text-decoration: none !important;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n        }\n        \n        .book-item .book-link:hover {\n            background: var(--cyan);\n            transform: translateY(-1px);\n            box-shadow: 0 4px 8px rgba(42, 161, 152, 0.4);\n            color: var(--base03) !important;\n        }\n        \n        .note-text {\n            padding: 12px 16px;\n            background: var(--base02);\n            border-left: 4px solid var(--yellow);\n            border-radius: 6px;\n            color: var(--yellow);\n            font-size: 14px;\n            margin: 20px 0;\n            border: 1px solid var(--base01);\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }\n        \n        .footer-note {\n            margin-top: 60px;\n            padding: 24px;\n            background: var(--base02);\n            border-radius: 8px;\n            text-align: center;\n            color: var(--base1);\n            font-size: 14px;\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);\n            border-top: 3px solid var(--cyan);\n            border: 1px solid var(--base01);\n            border-top-width: 3px;\n        }\n        \n        .footer-note a {\n            margin: 0 8px;\n            padding: 4px 8px;\n            border-radius: 4px;\n            color: var(--blue);\n        }\n        \n        .footer-note a:hover {\n            background: var(--base03);\n            text-decoration: none;\n            color: var(--cyan);\n        }\n        \n        /* 滚动条样式 - Solarized Dark */\n        ::-webkit-scrollbar {\n            width: 12px;\n        }\n        \n        ::-webkit-scrollbar-track {\n            background: var(--base03);\n        }\n        \n        ::-webkit-scrollbar-thumb {\n            background: var(--base01);\n            border-radius: 6px;\n            border: 2px solid var(--base03);\n        }\n        \n        ::-webkit-scrollbar-thumb:hover {\n            background: var(--base00);\n        }\n        \n        /* 代码风格字体优化 */\n        code {\n            background: var(--base02);\n            color: var(--green);\n            padding: 2px 6px;\n            border-radius: 3px;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            font-size: 0.9em;\n            border: 1px solid var(--base01);\n        }\n        \n        /* 强调文本 */\n        strong {\n            color: var(--base1);\n            font-weight: 600;\n        }\n        \n        /* 链接特殊样式 */\n        a[href^=\"http\"] {\n            color: var(--blue);\n        }\n        \n        a[href^=\"http\"]:hover {\n            color: var(--cyan);\n        }\n    </style>\n</head>\n<body>\n<header>\n<h1>📚 Ebook Treasure Chest</h1>\n\n<h2>📊 统计概览</h2>\n\n<div class=\"overview-stats\">\n<div class=\"stat-item\">\n<span>📘 总书籍数</span>\n<strong id=\"total-books\">24,071</strong>\n</div>\n<div class=\"stat-item\">\n<span>📂 分类数量</span>\n<strong id=\"total-categories\">1000</strong>\n</div>\n<div class=\"stat-item\">\n<span>🌍 支持语言</span>\n<strong>ZH</strong>\n</div>\n<div class=\"stat-item\">\n<span>📥 支持格式</span>\n<strong>EPUB / MOBI / AZW3</strong>\n</div>\n</div>\n\n\n<hr>\n\n<h2>🔍 搜索书籍</h2>\n\n<div class=\"search-container\">\n  <input\n    type=\"text\"\n    id=\"search-input\"\n    placeholder=\"搜索 书名 / 作者 / 分类（支持多关键词，用空格分隔）\"\n    oninput=\"onSearch(event)\"\n    aria-label=\"搜索书籍\"\n    autocomplete=\"off\"\n  />\n  <div class=\"search-hint\">\n    <span>💡</span>\n    <span>支持搜索书名、作者、分类，可输入多个关键词（用空格分隔）</span>\n  </div>\n</div>\n\n<div id=\"search-results\" role=\"region\" aria-live=\"polite\" aria-label=\"搜索结果\">\n  <div class=\"loading-indicator\">正在加载书籍数据...</div>\n</div>\n\n<script src=\"search.js\"></script>\n\n\n<hr>\n\n<p class=\"note-text\">💡 注：共 1000 个分类，以下显示前 20 个热门分类的书籍。使用搜索功能可查找所有书籍。</p>\n\n\n<div class=\"category-section\">\n\n## 📂 文学\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 2711 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>磨坊信札（作家榜经典文库）</strong>\n<div class=\"book-meta\">👤 阿尔封斯・都德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491025-903fa5?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>百年百部红色经典系列：第一辑（套装共20册）</strong>\n<div class=\"book-meta\">👤 周梅森等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491169-00db51?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>哈代作品集</strong>\n<div class=\"book-meta\">👤 托马斯・哈代 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491061-7ee4c9?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>单读29：当代剧作选</strong>\n<div class=\"book-meta\">👤 吴琦 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491283-25cf73?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>名利场（作家榜经典文库）</strong>\n<div class=\"book-meta\">👤 萨克雷 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491325-e911e2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>长岛小记</strong>\n<div class=\"book-meta\">👤 郭红 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491448-bef079?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>不定的荣耀</strong>\n<div class=\"book-meta\">👤 胡安・萨雷斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491469-ed6e5a?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>别的声音，别的房间</strong>\n<div class=\"book-meta\">👤 杜鲁门・卡波特 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491487-56594b?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>单读28：明亮的时刻-女导演特辑</strong>\n<div class=\"book-meta\">👤 吴琦 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491529-ab13d9?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>水经注套装全五册（全本全注全译）</strong>\n<div class=\"book-meta\">👤 郦道元 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491544-98a70b?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 沟通\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 84 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>这真的是你的错吗</strong>\n<div class=\"book-meta\">👤 加藤谛三 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499227-3864f2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>我就是你啊</strong>\n<div class=\"book-meta\">👤 皮埃尔・佩利西耶 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>特别会说话的人都这样说话</strong>\n<div class=\"book-meta\">👤 大野萌子 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>可复制的沟通力</strong>\n<div class=\"book-meta\">👤 樊登 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>把自己当回事儿</strong>\n<div class=\"book-meta\">👤 杨天真 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>尬聊终结者</strong>\n<div class=\"book-meta\">👤 庄舒涵 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>不妥协的谈判</strong>\n<div class=\"book-meta\">👤 丹尼尔・夏皮罗 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>个性优势</strong>\n<div class=\"book-meta\">👤 吉姆・巴雷特/休・格林 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375511347-2ee920?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>畅所欲言</strong>\n<div class=\"book-meta\">👤 道格・克兰德尔/马特・金卡德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375511779-c8282c?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>无压力社交</strong>\n<div class=\"book-meta\">👤 吉莉恩・巴特勒 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375512292-5b84b2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 励志\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 373 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>拆掉思维里的墙（白金升级版）</strong>\n<div class=\"book-meta\">👤 古典 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>妈妈的战争</strong>\n<div class=\"book-meta\">👤 Momself ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>破圈：如何突破认知局限并实现终身成长</strong>\n<div class=\"book-meta\">👤 顾及 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>像高手一样发言</strong>\n<div class=\"book-meta\">👤 久久 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>神兽引领的使命</strong>\n<div class=\"book-meta\">👤 小松美羽 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498813-e7da4f?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>底层逻辑：看清这个世界的底牌</strong>\n<div class=\"book-meta\">👤 刘润 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>成为可怕的自律人</strong>\n<div class=\"book-meta\">👤 马歇尔・古德史密斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499233-71cb99?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>像高手一样行动</strong>\n<div class=\"book-meta\">👤 丹尼尔・科伊尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>人生不必太用力</strong>\n<div class=\"book-meta\">👤 埃克哈特・托利 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>不和世界讲道理</strong>\n<div class=\"book-meta\">👤 曹晟康 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500178-c94c1a?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 经典\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 494 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>磨坊信札（作家榜经典文库）</strong>\n<div class=\"book-meta\">👤 阿尔封斯・都德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491025-903fa5?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>百年百部红色经典系列：第一辑（套装共20册）</strong>\n<div class=\"book-meta\">👤 周梅森等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491169-00db51?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>经史百家杂钞套装共8册（全本全注全译）</strong>\n<div class=\"book-meta\">👤 余兴安 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491943-3f0e5a?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>太多值得思考的事物</strong>\n<div class=\"book-meta\">👤 索尔・贝娄 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493218-ba0ce5?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>里程碑文库（第三辑）</strong>\n<div class=\"book-meta\">👤 唐克扬等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375496881-d79a75?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>译文经典·第一辑（套装共20册）</strong>\n<div class=\"book-meta\">👤 福楼拜等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497409-47086f?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>人生必读之书：文景古典·名译插图本</strong>\n<div class=\"book-meta\">👤 埃斯库罗斯等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497523-e093d0?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>西方心理学大师经典译丛（套装共11册）</strong>\n<div class=\"book-meta\">👤 阿尔弗雷德・阿德勒 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497529-0e8c3b?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>三联苏俄文学经典译著（套装15册）</strong>\n<div class=\"book-meta\">👤 高尔基等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497571-7a9471?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>世界名著名家经典译本·译文40（套装共40册）</strong>\n<div class=\"book-meta\">👤 奥威尔等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497904-e167f7?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 历史\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 1748 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>美国四百年</strong>\n<div class=\"book-meta\">👤 布・斯里尼瓦桑 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375490923-e9b635?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>六朝文明（中译修订版）</strong>\n<div class=\"book-meta\">👤 丁爱博 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491355-eb0d4e?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>黄金：权力与财富的世界简史</strong>\n<div class=\"book-meta\">👤 伯德・史蒂芬・格雷 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491481-144bc0?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>纳粹集中营史（全2册）</strong>\n<div class=\"book-meta\">👤 尼古劳斯・瓦克斯曼 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491625-c415d8?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>改变历史的香料商人</strong>\n<div class=\"book-meta\">👤 贾尔斯・米尔顿 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491709-49d668?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>哲人与权臣</strong>\n<div class=\"book-meta\">👤 詹姆斯・罗姆 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491652-6fd685?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>希腊思想与文化</strong>\n<div class=\"book-meta\">👤 吴晓群 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491883-e507e4?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>拜占庭的失落之城</strong>\n<div class=\"book-meta\">👤 斯蒂文・朗西曼 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491781-3f42cf?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>大酋长伊丽莎白</strong>\n<div class=\"book-meta\">👤 贾尔斯・米尔顿 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491760-3ce9b1?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>疑案里的中国史</strong>\n<div class=\"book-meta\">👤 艾公子 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492021-d4507b?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 科普\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 743 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>寻蜂记</strong>\n<div class=\"book-meta\">👤 戴夫・古尔森 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491859-9bd801?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>关灯就睡觉</strong>\n<div class=\"book-meta\">👤 格雷格·D·贾克布 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491976-465249?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>人人都该懂的地外生命</strong>\n<div class=\"book-meta\">👤 刘易斯・达特奈尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492573-a93ad2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>人人都该懂的能源新趋势</strong>\n<div class=\"book-meta\">👤 瓦茨拉夫・斯米尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493416-7ae8a8?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>数据如何误导了我们</strong>\n<div class=\"book-meta\">👤 桑内・布劳 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>危崖：生存性风险与人类的未来</strong>\n<div class=\"book-meta\">👤 托比・奥德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493782-80c088?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>牛津科普读本（第一辑）</strong>\n<div class=\"book-meta\">👤 克劳塞维茨等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375496395-3eb1b0?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>国家地理终极观星指南</strong>\n<div class=\"book-meta\">👤 霍华德・施耐德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375496701-44ca96?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>牛津通识课：理学套装（全4册）</strong>\n<div class=\"book-meta\">👤 麦克・戈德史密斯等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375496950-51ea21?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>0次与10000次</strong>\n<div class=\"book-meta\">👤 吉塔・雅各布 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497181-c8dc00?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 管理\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 613 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>灰犀牛：个人、组织如何与风险共舞</strong>\n<div class=\"book-meta\">👤 米歇尔・渥克 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>长期主义</strong>\n<div class=\"book-meta\">👤 高德威 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>福格行为模型</strong>\n<div class=\"book-meta\">👤 B.J.福格 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499539-38be34?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>像高手一样行动</strong>\n<div class=\"book-meta\">👤 丹尼尔・科伊尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>高效的组织都是圆的</strong>\n<div class=\"book-meta\">👤 戴维・珀金斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500100-7e145d?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>马尔科姆·格拉德威尔系列（套装共6册）</strong>\n<div class=\"book-meta\">👤 马尔科姆・格拉德威尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>时间管理</strong>\n<div class=\"book-meta\">👤 吉姆・兰德尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500340-640c65?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>像高手一样解决问题</strong>\n<div class=\"book-meta\">👤 伯纳德・加雷特等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500307-6d78d2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>影响力：全新升级版</strong>\n<div class=\"book-meta\">👤 罗伯特・西奥迪尼 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>鹿智者的法则</strong>\n<div class=\"book-meta\">👤 丹・米尔曼 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 社会\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 558 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>现代政治的正当性基础</strong>\n<div class=\"book-meta\">👤 周濂 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491484-c06fa6?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>地狱里的希望</strong>\n<div class=\"book-meta\">👤 丹・波托洛蒂 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492060-2c8fad?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>贾雷德·戴蒙德作品集（套装共4册）</strong>\n<div class=\"book-meta\">👤 贾雷德・戴蒙德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>吉姆·罗杰斯的大预测</strong>\n<div class=\"book-meta\">👤 吉姆・罗杰斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>温铁军套装（共5册）</strong>\n<div class=\"book-meta\">👤 温铁军 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493437-a29263?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>网上遗产</strong>\n<div class=\"book-meta\">👤 伊莱恩・卡斯凯特 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493404-9f5bf0?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>俄国史译（全7册）</strong>\n<div class=\"book-meta\">👤 伊利娜・谢尔盖耶夫娜・雷巴乔诺克等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>运气的诱饵</strong>\n<div class=\"book-meta\">👤 娜塔莎・道・舒尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493695-e4930e?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>在中国大地上</strong>\n<div class=\"book-meta\">👤 保罗・索鲁 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>单身偏见</strong>\n<div class=\"book-meta\">👤 克莱尔・佩恩 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493863-2752fc?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 推理\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 531 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>海神的后裔</strong>\n<div class=\"book-meta\">👤 宫部美雪 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492165-c1f419?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>女郎她死了</strong>\n<div class=\"book-meta\">👤 约翰・迪克森・卡尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497154-47f407?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>无颜的肖像</strong>\n<div class=\"book-meta\">👤 连城三纪彦 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498012-7fc0cd?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>土楼杀人事件</strong>\n<div class=\"book-meta\">👤 青稞 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498258-e31108?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>白兔</strong>\n<div class=\"book-meta\">👤 伊坂幸太郎 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498687-16a448?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>陈舜臣作品精选集（套装共20册）</strong>\n<div class=\"book-meta\">👤 陈舜臣 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498732-db7b9b?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>天涯双探4：双城血案</strong>\n<div class=\"book-meta\">👤 七名 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498834-6b8e51?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>非常疑犯</strong>\n<div class=\"book-meta\">👤 红眸 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499008-3c6677?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>静默的铁证</strong>\n<div class=\"book-meta\">👤 米烛光 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499452-818cac?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>时空旅行者的沙漏</strong>\n<div class=\"book-meta\">👤 方丈贵惠 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499554-129728?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 经济\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 487 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>金钱革命</strong>\n<div class=\"book-meta\">👤 安妮・博登 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375490917-6f069c?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>智造中国</strong>\n<div class=\"book-meta\">👤 马兆远 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491232-200000?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>原则：应对变化中的世界秩序</strong>\n<div class=\"book-meta\">👤 瑞・达利欧 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492075-4f7b4c?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>进化的力量</strong>\n<div class=\"book-meta\">👤 刘润 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492024-2f20d3?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>吉姆·罗杰斯的大预测</strong>\n<div class=\"book-meta\">👤 吉姆・罗杰斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>房价的逻辑</strong>\n<div class=\"book-meta\">👤 徐远 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493002-d88db9?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>温铁军套装（共5册）</strong>\n<div class=\"book-meta\">👤 温铁军 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493437-a29263?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>变量4</strong>\n<div class=\"book-meta\">👤 何帆 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493833-c77a73?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>芯片陷阱</strong>\n<div class=\"book-meta\">👤 马克・拉叙斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375495186-db8ef2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>超级资管</strong>\n<div class=\"book-meta\">👤 乔永远/孔祥 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 哲学\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 431 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>前行笔记之耕耘心田</strong>\n<div class=\"book-meta\">👤 希阿荣博堪布 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491703-fada1f?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>感知•理知•自我认知</strong>\n<div class=\"book-meta\">👤 陈嘉映 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491952-add17f?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>毓老师说系列（共十八册）</strong>\n<div class=\"book-meta\">👤 爱新觉罗・毓鋆讲述 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492564-bdeea5?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>佛系：中国人的生活智慧</strong>\n<div class=\"book-meta\">👤 果麦文化 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493296-11aa38?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>攀登尼采</strong>\n<div class=\"book-meta\">👤 约翰・卡格 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493479-e7baa8?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>西方古典学术史（第一卷）</strong>\n<div class=\"book-meta\">👤 约翰・埃德温・桑兹 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>刘擎西方现代思想讲义</strong>\n<div class=\"book-meta\">👤 刘擎 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498162-6d669a?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>哲学100问（套装共3册）</strong>\n<div class=\"book-meta\">👤 书杰 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498444-830a41?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>西方现代思想家精品译丛（18卷）</strong>\n<div class=\"book-meta\">👤 哈耶克等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498924-4e23e7?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>假如猫狗会说话</strong>\n<div class=\"book-meta\">👤 拉斯・弗雷德里克·H.史文德森 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499347-09c400?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 传记\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 413 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>达·芬奇传：自由的心灵</strong>\n<div class=\"book-meta\">👤 查尔斯・尼科尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491400-800bfb?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>斯大林传</strong>\n<div class=\"book-meta\">👤 德米特里・安东诺维奇・沃尔科戈诺夫 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491829-e707fa?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>陀思妥耶夫斯基传</strong>\n<div class=\"book-meta\">👤 安德里亚斯・古斯基 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498042-d0a3d3?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>帝国浮沉：关于拿破仑一世的私人回忆（全2册）</strong>\n<div class=\"book-meta\">👤 克劳德・梅尼瓦尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498120-b235b7?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>伊藤博文：近代日本奠基人</strong>\n<div class=\"book-meta\">👤 伊藤之雄 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498831-0dc067?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>德意志理想主义的诞生：席勒传</strong>\n<div class=\"book-meta\">👤 吕迪格尔・萨弗兰斯基 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499365-050061?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>牛顿传</strong>\n<div class=\"book-meta\">👤 詹姆斯・格雷克 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499524-4bd6cf?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>绯闻艺术史</strong>\n<div class=\"book-meta\">👤 林微云 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499971-4d8b4d?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>卡尔·拉格斐传</strong>\n<div class=\"book-meta\">👤 洛朗・阿朗-卡龙 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500028-a96942?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>译文传记作品系列（套装共15册）</strong>\n<div class=\"book-meta\">👤 斯特凡・茨威格 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500337-e1be2a?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 美国\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 399 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>美国四百年</strong>\n<div class=\"book-meta\">👤 布・斯里尼瓦桑 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375490923-e9b635?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>坠落与重生：911的故事</strong>\n<div class=\"book-meta\">👤 米切尔・祖科夫 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497535-e9ce53?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>大萧条前夜的繁荣与疯狂</strong>\n<div class=\"book-meta\">👤 比尔・布莱森 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>美利坚的民族</strong>\n<div class=\"book-meta\">👤 科林・伍达德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499449-5b4652?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>辉煌信标：美国灯塔史</strong>\n<div class=\"book-meta\">👤 埃里克・杰・多林 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499494-7adcd3?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>达摩流浪者</strong>\n<div class=\"book-meta\">👤 杰克・凯鲁亚克 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375501198-87ebe7?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>平原上的城市</strong>\n<div class=\"book-meta\">👤 科马克・麦卡锡 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375501537-1986a4?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>帝国统治的逻辑</strong>\n<div class=\"book-meta\">👤 赫尔弗里德・明克勒 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>被误解的盐</strong>\n<div class=\"book-meta\">👤 詹姆斯・迪尼科兰托尼奥 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>美国的反智传统</strong>\n<div class=\"book-meta\">👤 理查德・霍夫施塔特 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375506823-0cc3c2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 心理\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 396 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>我们为何无聊</strong>\n<div class=\"book-meta\">👤 詹姆斯・丹克特等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375490977-1e5ce8?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>认知工具</strong>\n<div class=\"book-meta\">👤 塞西莉亚・海耶斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491715-7dc597?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>动机与人格</strong>\n<div class=\"book-meta\">👤 亚伯拉罕・马斯洛 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375495429-a9bbbc?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>0次与10000次</strong>\n<div class=\"book-meta\">👤 吉塔・雅各布 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497181-c8dc00?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>疲劳自救手册</strong>\n<div class=\"book-meta\">👤 玛丽・伯吉斯/特鲁迪・查尔德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497475-e986a2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>沙发上的心理学</strong>\n<div class=\"book-meta\">👤 菲利帕・佩里 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497946-e0bf91?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>新乌合之众</strong>\n<div class=\"book-meta\">👤 迈赫迪・穆萨伊德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497907-396975?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>十种人性</strong>\n<div class=\"book-meta\">👤 德克斯特・迪亚斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>译文心理分析作品集（套装共12册）</strong>\n<div class=\"book-meta\">👤 西格蒙德・弗洛伊德等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>贪婪的多巴胺</strong>\n<div class=\"book-meta\">👤 丹尼尔・利伯曼等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498459-018013?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 悬疑\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 393 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>耳语之人</strong>\n<div class=\"book-meta\">👤 约翰・迪克森・卡尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493566-c34524?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>反骗案中案·完结版（全5册）</strong>\n<div class=\"book-meta\">👤 常书欣 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375495066-b34054?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>回到种子里去</strong>\n<div class=\"book-meta\">👤 加西亚・马尔克斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375495486-3c8ab0?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>人间我来过</strong>\n<div class=\"book-meta\">👤 那多 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375495513-a7fbae?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>那多经典作品合集（12册合集）</strong>\n<div class=\"book-meta\">👤 那多 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498663-8c7a04?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>天涯双探4：双城血案</strong>\n<div class=\"book-meta\">👤 七名 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498834-6b8e51?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>黄雀计划</strong>\n<div class=\"book-meta\">👤 鬼庖丁 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498957-155512?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>静默的铁证</strong>\n<div class=\"book-meta\">👤 米烛光 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499452-818cac?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>恶寒</strong>\n<div class=\"book-meta\">👤 伊冈瞬 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499659-21ca24?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>全员嫌疑人</strong>\n<div class=\"book-meta\">👤 大山诚一郎 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499701-1e03fc?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 商业\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 387 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>海尔制</strong>\n<div class=\"book-meta\">👤 胡国栋 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491937-798132?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>进化的力量</strong>\n<div class=\"book-meta\">👤 刘润 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492024-2f20d3?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>未来呼啸而来</strong>\n<div class=\"book-meta\">👤 彼得・戴曼迪斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375496473-11e887?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>生生不息</strong>\n<div class=\"book-meta\">👤 范海涛 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497664-326a21?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>常识的力量</strong>\n<div class=\"book-meta\">👤 梁宇峰 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>长期主义</strong>\n<div class=\"book-meta\">👤 高德威 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>底层逻辑：看清这个世界的底牌</strong>\n<div class=\"book-meta\">👤 刘润 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>像高手一样解决问题</strong>\n<div class=\"book-meta\">👤 伯纳德・加雷特等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500307-6d78d2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>影响力：全新升级版</strong>\n<div class=\"book-meta\">👤 罗伯特・西奥迪尼 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>贝佐斯传</strong>\n<div class=\"book-meta\">👤 哈罗德・布鲁姆 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 金融\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 370 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>金钱革命</strong>\n<div class=\"book-meta\">👤 安妮・博登 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375490917-6f069c?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>财富是认知的变现</strong>\n<div class=\"book-meta\">👤 舒泰峰 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375490950-03b116?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>耐心的资本</strong>\n<div class=\"book-meta\">👤 维多利亚・伊凡希娜/乔希・勒纳 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375495492-4e8778?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>超级资管</strong>\n<div class=\"book-meta\">👤 乔永远/孔祥 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>行为金融学</strong>\n<div class=\"book-meta\">👤 詹姆斯・蒙蒂尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497613-50ebe9?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>新金融帝国</strong>\n<div class=\"book-meta\">👤 田中道昭 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497616-4a5b13?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>中国资本市场变革</strong>\n<div class=\"book-meta\">👤 肖钢 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497634-635389?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>行为投资者</strong>\n<div class=\"book-meta\">👤 丹尼尔・克罗斯比 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>投资核心资产</strong>\n<div class=\"book-meta\">👤 王德伦等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>美国货币史（精校本）</strong>\n<div class=\"book-meta\">👤 米尔顿・弗里德曼 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 随笔\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 368 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>长岛小记</strong>\n<div class=\"book-meta\">👤 郭红 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491448-bef079?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>那间街角的茶铺</strong>\n<div class=\"book-meta\">👤 王笛 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491775-2dbac0?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>读书是最对得起付出的一件事</strong>\n<div class=\"book-meta\">👤 梁晓声 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491988-526c88?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>我爱这哭不出来的浪漫</strong>\n<div class=\"book-meta\">👤 严明 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492279-da9a63?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>借山而居（珍藏版）</strong>\n<div class=\"book-meta\">👤 张二冬 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492669-bdbbd4?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>躺平</strong>\n<div class=\"book-meta\">👤 贝恩德・布伦纳 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493068-3a03e2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>声誉</strong>\n<div class=\"book-meta\">👤 唐诺 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>圈外编辑</strong>\n<div class=\"book-meta\">👤 都筑响一 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493812-a4c0be?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>新冠时代的我们</strong>\n<div class=\"book-meta\">👤 保罗・乔尔达诺 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>再见，平成时代</strong>\n<div class=\"book-meta\">👤 新井一二三 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375496449-4bf150?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 投资\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 365 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>财富是认知的变现</strong>\n<div class=\"book-meta\">👤 舒泰峰 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375490950-03b116?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>中高净值人群财富管理的顶层设计（全5册）</strong>\n<div class=\"book-meta\">👤 李升等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491427-50aa01?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>价值投资的十项核心原则</strong>\n<div class=\"book-meta\">👤 詹姆斯・蒙蒂尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491475-157297?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>攻守：可转债投资实用手册</strong>\n<div class=\"book-meta\">👤 饕餮海等 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492006-a0e7e3?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>巴菲特之道（原书第3版）（典藏版）</strong>\n<div class=\"book-meta\">👤 罗伯特・哈格斯特朗 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375492738-ab0390?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>房价的逻辑</strong>\n<div class=\"book-meta\">👤 徐远 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493002-d88db9?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>超级资管</strong>\n<div class=\"book-meta\">👤 乔永远/孔祥 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>行为金融学</strong>\n<div class=\"book-meta\">👤 詹姆斯・蒙蒂尔 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375497613-50ebe9?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>股票魔法师3</strong>\n<div class=\"book-meta\">👤 Mark Minervini ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>趋势投资</strong>\n<div class=\"book-meta\">👤 丁圣元 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375498825-647703?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n<div class=\"category-section\">\n\n## 📂 思维\n\n### 🌍 Language: ZH\n\n#### ⭐ Level: Unknown\n\n<p class=\"note-text\">*（共 353 本，显示前 10 本）*</p>\n\n<div class=\"book-item\">\n<strong>认知工具</strong>\n<div class=\"book-meta\">👤 塞西莉亚・海耶斯 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375491715-7dc597?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>拆掉思维里的墙（白金升级版）</strong>\n<div class=\"book-meta\">👤 古典 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>人生不必太用力</strong>\n<div class=\"book-meta\">👤 埃克哈特・托利 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>鹿智者的法则</strong>\n<div class=\"book-meta\">👤 丹・米尔曼 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>批判性思维与说服性写作</strong>\n<div class=\"book-meta\">👤 路易丝・卡茨 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375501387-c9409e?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>大脑的一天·鹈鹕丛书</strong>\n<div class=\"book-meta\">👤 苏珊・格林菲尔德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375501504-478cce?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>九宫格写作法</strong>\n<div class=\"book-meta\">👤 山口拓朗 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>我是谁：心理学实证研究社会思维</strong>\n<div class=\"book-meta\">👤 戴维・迈尔斯/琼・特韦奇 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375509499-e67aab?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>深度影响</strong>\n<div class=\"book-meta\">👤 崔璀 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n<div class=\"book-item\">\n<strong>五维思考法</strong>\n<div class=\"book-meta\">👤 爱德华・伯格/迈克尔・斯塔伯德 ｜ 📥 epub, mobi, azw3</div>\n<a href=\"https://url89.ctfile.com/f/31084289-1375510294-3b55d2?p=8866\" target=\"_blank\" rel=\"noopener\" class=\"book-link\">📥 下载</a>\n</div>\n\n\n</div>\n\n\n\n<hr>\n\n<p class=\"note-text\">💡 还有 980 个分类未显示，请使用搜索功能查找。</p>\n\n</header>\n\n<footer class=\"footer-note\">\n    <p>📚 电子书下载宝库 </p>\n    <p style=\"margin-top: 8px; font-size: 12px;\">\n        <a href=\"https://github.com/jbiaojerry/ebook-treasure-chest\" target=\"_blank\" rel=\"noopener\">GitHub 仓库</a> |\n        <a href=\"README.md\" target=\"_blank\">使用说明</a>\n    </p>\n</footer>\n\n<script>\n// 更新统计信息（从 parse-stats.json）\n(function() {\n    const stats = {\"total_files\": 1000, \"success_files\": 1000, \"error_files\": 0, \"total_books\": 24071, \"categories_count\": 1000, \"top_categories\": {\"文学\": 2711, \"历史\": 1748, \"科普\": 743, \"管理\": 613, \"社会\": 558, \"推理\": 531, \"经典\": 494, \"经济\": 487, \"哲学\": 431, \"传记\": 413, \"美国\": 399, \"心理\": 396, \"悬疑\": 393, \"商业\": 387, \"励志\": 373, \"金融\": 370, \"随笔\": 368, \"投资\": 365, \"思维\": 353, \"文化\": 344}, \"error_file_list\": []};\n    const totalBooksEl = document.getElementById('total-books');\n    const totalCatsEl = document.getElementById('total-categories');\n    if (totalBooksEl && stats.total_books) {\n        totalBooksEl.textContent = stats.total_books.toLocaleString() + ' 本';\n    }\n    if (totalCatsEl && stats.categories_count) {\n        totalCatsEl.textContent = stats.categories_count.toLocaleString() + ' 个';\n    }\n})();\n</script>\n</body>\n</html>"
  },
  {
    "path": "docs/parse-stats.json",
    "content": "{\n  \"total_files\": 1000,\n  \"success_files\": 1000,\n  \"error_files\": 0,\n  \"total_books\": 24071,\n  \"categories_count\": 1000,\n  \"top_categories\": {\n    \"文学\": 2711,\n    \"历史\": 1748,\n    \"科普\": 743,\n    \"管理\": 613,\n    \"社会\": 558,\n    \"推理\": 531,\n    \"经典\": 494,\n    \"经济\": 487,\n    \"哲学\": 431,\n    \"传记\": 413,\n    \"美国\": 399,\n    \"心理\": 396,\n    \"悬疑\": 393,\n    \"商业\": 387,\n    \"励志\": 373,\n    \"金融\": 370,\n    \"随笔\": 368,\n    \"投资\": 365,\n    \"思维\": 353,\n    \"文化\": 344\n  },\n  \"error_file_list\": []\n}"
  },
  {
    "path": "docs/search.js",
    "content": "let books = [];\nlet searchTimeout = null;\nconst MAX_RESULTS = 100; // 最多显示100条结果\n\nasync function loadBooks() {\n  console.log(\"🔄 开始加载书籍数据...\");\n  \n  try {\n    // 优先加载 all-books.json（包含所有 md 文件的数据）\n    console.log(\"📥 尝试加载 all-books.json...\");\n    const res = await fetch(\"all-books.json\");\n    \n    if (res.ok) {\n      const data = await res.json();\n      books = data;\n      console.log(`✅ 已加载 ${books.length} 本书籍（来自 all-books.json）`);\n      \n      // 显示加载成功的提示\n      const searchBox = document.querySelector('input[type=\"text\"]');\n      if (searchBox) {\n        const originalPlaceholder = searchBox.placeholder;\n        searchBox.placeholder = `已加载 ${books.length.toLocaleString()} 本书，开始搜索...`;\n        setTimeout(() => {\n          searchBox.placeholder = originalPlaceholder;\n        }, 3000);\n      }\n      return;\n    } else {\n      console.warn(`⚠️  all-books.json 返回状态码: ${res.status}`);\n    }\n  } catch (e) {\n    console.warn(\"⚠️  all-books.json 加载失败:\", e);\n  }\n  \n  // 降级到 books.json（metadata 数据）\n  try {\n    console.log(\"📥 尝试加载 books.json...\");\n    const res = await fetch(\"books.json\");\n    if (res.ok) {\n      books = await res.json();\n      console.log(`✅ 已加载 ${books.length} 本书籍（来自 books.json，metadata 数据）`);\n      console.warn(\"💡 提示：建议运行 'python scripts/parse_md_to_json.py' 生成完整的 all-books.json\");\n    } else {\n      console.error(`❌ books.json 返回状态码: ${res.status}`);\n    }\n  } catch (e) {\n    console.error(\"❌ 无法加载书籍数据\", e);\n    alert(\"⚠️ 无法加载书籍数据，请检查网络连接或刷新页面重试\");\n  }\n}\n\nfunction searchBooks(keyword) {\n  if (!keyword || keyword.trim() === \"\") {\n    return [];\n  }\n  \n  const k = keyword.toLowerCase().trim();\n  const keywords = k.split(/\\s+/); // 支持多关键词搜索\n\n  return books.filter(b => {\n    const title = (b.title || \"\").toLowerCase();\n    const author = (b.author || \"\").toLowerCase();\n    const category = (b.category || \"\").toLowerCase();\n    \n    // 多关键词匹配：所有关键词都要匹配\n    return keywords.every(keyword => \n      title.includes(keyword) ||\n      author.includes(keyword) ||\n      category.includes(keyword)\n    );\n  }).slice(0, MAX_RESULTS); // 限制结果数量\n}\n\n// HTML 转义函数\nfunction escapeHtml(text) {\n  if (!text) return '';\n  const div = document.createElement('div');\n  div.textContent = text;\n  return div.innerHTML;\n}\n\n// 正则表达式特殊字符转义\nfunction escapeRegex(str) {\n  if (!str) return '';\n  return str.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\$&');\n}\n\nfunction highlightText(text, keyword) {\n  if (!keyword || !text) return escapeHtml(text);\n  \n  // 转义正则表达式特殊字符，防止正则表达式注入\n  const escapedKeyword = escapeRegex(keyword);\n  const regex = new RegExp(`(${escapedKeyword})`, 'gi');\n  \n  // 先转义 HTML，再添加高亮标记\n  const escapedText = escapeHtml(text);\n  return escapedText.replace(regex, '<mark>$1</mark>');\n}\n\nfunction renderResults(results, keyword) {\n  const box = document.getElementById(\"search-results\");\n  box.innerHTML = \"\";\n\n  if (results.length === 0) {\n    box.innerHTML = \"<p style='padding: 20px; text-align: center; color: #93a1a1; background: #073642; border-radius: 6px; border: 1px solid #586e75;'>❌ 没有找到相关书籍</p>\";\n    return;\n  }\n\n  const keywordLower = keyword.toLowerCase();\n  \n  // 显示结果数量\n  const countDiv = document.createElement(\"div\");\n  countDiv.style.cssText = \"padding: 12px 16px; background: #073642; border-radius: 6px; margin-bottom: 16px; border: 1px solid #586e75; color: #2aa198; font-family: 'SF Mono', 'Monaco', monospace;\";\n  countDiv.innerHTML = `<strong>找到 ${results.length}${results.length === MAX_RESULTS ? '+' : ''} 条结果</strong>`;\n  box.appendChild(countDiv);\n\n  results.forEach(b => {\n    const div = document.createElement(\"div\");\n    div.style.cssText = \"padding: 16px; margin: 12px 0; background: #073642; border: 1px solid #586e75; border-left: 4px solid #268bd2; border-radius: 6px; transition: all 0.2s ease; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\";\n    \n    // 添加 hover 效果\n    div.addEventListener('mouseenter', function() {\n      this.style.borderLeftColor = '#2aa198';\n      this.style.background = '#002b36';\n      this.style.transform = 'translateX(4px)';\n      this.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.3)';\n    });\n    div.addEventListener('mouseleave', function() {\n      this.style.borderLeftColor = '#268bd2';\n      this.style.background = '#073642';\n      this.style.transform = 'translateX(0)';\n      this.style.boxShadow = '0 2px 4px rgba(0, 0, 0, 0.2)';\n    });\n    \n    const highlightedTitle = highlightText(b.title || \"未知\", keywordLower);\n    const highlightedAuthor = highlightText(b.author || \"未知\", keywordLower);\n    const highlightedCategory = highlightText(b.category || \"\", keywordLower);\n    \n    // 验证和转义链接 URL，防止 javascript: 协议等 XSS 攻击\n    let safeLink = \"#\";\n    if (b.link) {\n      try {\n        const url = new URL(b.link, window.location.origin);\n        // 只允许 http、https 协议\n        if (url.protocol === 'http:' || url.protocol === 'https:') {\n          safeLink = url.href;\n        }\n      } catch (e) {\n        // 如果 URL 解析失败，使用原始链接（可能是相对路径）\n        // 但需要转义 HTML 特殊字符\n        safeLink = escapeHtml(b.link);\n      }\n    }\n    \n    div.innerHTML = `\n      <div style=\"margin-bottom: 10px;\">\n        <strong style=\"font-size: 16px; color: #93a1a1; font-weight: 600;\">${highlightedTitle}</strong>\n      </div>\n      <div style=\"color: #657b83; font-size: 14px; margin-bottom: 10px; font-family: 'SF Mono', 'Monaco', monospace;\">\n        <span>👤 ${highlightedAuthor}</span>\n        <span style=\"margin: 0 10px; color: #586e75;\">|</span>\n        <span>📂 ${highlightedCategory}</span>\n      </div>\n      <div>\n        <a href=\"${safeLink}\" target=\"_blank\" rel=\"noopener\" style=\"\n          display: inline-block;\n          padding: 6px 14px;\n          background: #268bd2;\n          color: #002b36;\n          text-decoration: none;\n          border-radius: 6px;\n          font-size: 14px;\n          font-weight: 600;\n          font-family: 'SF Mono', 'Monaco', monospace;\n          transition: all 0.2s ease;\n          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n        \" onmouseover=\"this.style.background='#2aa198'; this.style.transform='translateY(-1px)'; this.style.boxShadow='0 4px 8px rgba(42, 161, 152, 0.4)';\" \n           onmouseout=\"this.style.background='#268bd2'; this.style.transform='translateY(0)'; this.style.boxShadow='0 2px 4px rgba(0, 0, 0, 0.2)';\"\n        >📥 下载</a>\n      </div>\n    `;\n    box.appendChild(div);\n  });\n  \n  // 添加样式\n  if (!document.getElementById('search-results-style')) {\n    const style = document.createElement('style');\n    style.id = 'search-results-style';\n    style.textContent = `\n      #search-results mark {\n        background: #b58900;\n        color: #002b36;\n        padding: 2px 4px;\n        border-radius: 3px;\n        font-weight: 600;\n      }\n    `;\n    document.head.appendChild(style);\n  }\n}\n\nfunction onSearch(e) {\n  const keyword = e.target.value.trim();\n  \n  // 检查数据是否已加载\n  if (books.length === 0) {\n    const box = document.getElementById(\"search-results\");\n    box.innerHTML = \"<p style='padding: 20px; text-align: center; color: #d73a49;'>⏳ 正在加载书籍数据，请稍候...</p>\";\n    return;\n  }\n  \n  // 清除之前的定时器\n  if (searchTimeout) {\n    clearTimeout(searchTimeout);\n  }\n  \n  // 如果输入为空，清空结果\n  if (!keyword) {\n    document.getElementById(\"search-results\").innerHTML = \"\";\n    return;\n  }\n  \n  // 防抖：300ms 后执行搜索\n  searchTimeout = setTimeout(() => {\n    const results = searchBooks(keyword);\n    console.log(`🔍 搜索 \"${keyword}\" 找到 ${results.length} 条结果`);\n    renderResults(results, keyword);\n  }, 300);\n}\n\n// 页面加载完成后加载数据\n(function() {\n  if (document.readyState === 'loading') {\n    document.addEventListener('DOMContentLoaded', loadBooks);\n  } else {\n    loadBooks();\n  }\n})();\n"
  },
  {
    "path": "max_book_id_found.txt",
    "content": "64970"
  },
  {
    "path": "md/20世纪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 20世纪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 霍布斯鲍姆自传 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866) |\n"
  },
  {
    "path": "md/5G.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 5G\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 5G金融 | 莫开伟/陈名银/邱泉 | [下载](https://url89.ctfile.com/f/31084289-1356988384-74644e?p=8866) |\n| 5G时代：经济增长新引擎 | 孙松林 | [下载](https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866) |\n| 5G时代：生活方式和商业模式的大变革 | 龟井卓也 | [下载](https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866) |\n| 5G时代 | 项立刚 | [下载](https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866) |\n"
  },
  {
    "path": "md/731.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 731\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 恶魔的饱食：日本731细菌战部队揭秘 | 森村诚一 | [下载](https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866) |\n"
  },
  {
    "path": "md/AI.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# AI\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 智慧未来 | 李开复 | [下载](https://url89.ctfile.com/f/31084289-1375513735-fe1296?p=8866) |\n| 错觉：AI如何通过数据挖掘误导我们 | 加里・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866) |\n| 智能语音时代 | 詹姆斯・弗拉霍斯 | [下载](https://url89.ctfile.com/f/31084289-1356982510-7f3725?p=8866) |\n| 深度学习：智能时代的核心驱动力量 | 特伦斯・谢诺夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357029667-77e164?p=8866) |\n| 人类帝国的覆灭 | 常博逸 | [下载](https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866) |\n| AI迷航2 | 肖遥 | [下载](https://url89.ctfile.com/f/31084289-1357023982-655d95?p=8866) |\n| AI：人工智能的本质与未来 | 玛格丽特・博登 | [下载](https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866) |\n"
  },
  {
    "path": "md/CSS.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# CSS\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| CSS重构：样式表性能调优 | Steve Lindstrom | [下载](https://url89.ctfile.com/f/31084289-1357017682-29904e?p=8866) |\n| CSS禅意花园（修订版） | Dave Shea/Mollv E | [下载](https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866) |\n| 精通CSS（第2版） | Andy Budd/Cameron Moll | [下载](https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866) |\n| CSS设计指南（第3版） | Charles Wyke-Smith | [下载](https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866) |\n"
  },
  {
    "path": "md/Excel.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# Excel\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 对比Excel，轻松学习Python数据分析 | 张俊红 | [下载](https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866) |\n| 为什么精英都是Excel控 | 熊野整 | [下载](https://url89.ctfile.com/f/31084289-1357015744-ec5cf7?p=8866) |\n| 别怕，Excel VBA其实很简单 | 罗国发 | [下载](https://url89.ctfile.com/f/31084289-1357005424-36e2bc?p=8866) |\n"
  },
  {
    "path": "md/FBI.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# FBI\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 读心神探：FBI心理侧写术 | 约翰・道格拉斯/马克・奥尔谢克 | [下载](https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866) |\n"
  },
  {
    "path": "md/Java.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# Java\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| Netty实战 |  诺曼・毛瑞尔 | [下载](https://url89.ctfile.com/f/31084289-1357048471-3b0351?p=8866) |\n| Spring Boot实战 | Craig Walls | [下载](https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866) |\n| Java程序员修炼之道 | Benjamin J. Evans/Martijn Verburg | [下载](https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866) |\n| Java 8实战 | Raoul-Gabriel Urma等 | [下载](https://url89.ctfile.com/f/31084289-1357021054-fef42d?p=8866) |\n| Spring实战（第4版） | Craig Walls | [下载](https://url89.ctfile.com/f/31084289-1357020319-e008d6?p=8866) |\n"
  },
  {
    "path": "md/Linux.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# Linux\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鸟哥的Linux私房菜：基础学习篇（第三版） | 鸟哥 | [下载](https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866) |\n| 鸟哥的Linux私房菜：服务器架设篇（第三版） | 鸟哥 | [下载](https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866) |\n| Linux就该这么学 | 刘遄 | [下载](https://url89.ctfile.com/f/31084289-1357020865-7cfd40?p=8866) |\n| Linux环境编程：从应用到内核 | 高峰 | [下载](https://url89.ctfile.com/f/31084289-1357019278-91aa23?p=8866) |\n"
  },
  {
    "path": "md/MBA.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# MBA\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 用得上的商学课 | 路骋 | [下载](https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866) |\n| 30天精读MBA（套装共3册） | 科林・巴罗 | [下载](https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866) |\n| MBA十日读（第四版） | 史蒂文・西尔比格 | [下载](https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866) |\n"
  },
  {
    "path": "md/MYSQL.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# MYSQL\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| PHP和MySQL Web开发（原书第4版） | Luke Welling | [下载](https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866) |\n"
  },
  {
    "path": "md/OKR.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# OKR\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 绩效使能：超越OKR | 况阳 | [下载](https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866) |\n| OKR：源于英特尔和谷歌的目标管理利器 | 保罗・尼文/本・拉莫尔特 | [下载](https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866) |\n"
  },
  {
    "path": "md/PHP.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# PHP\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| PHP和MySQL Web开发（原书第4版） | Luke Welling | [下载](https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866) |\n"
  },
  {
    "path": "md/Python.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# Python\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| Python高性能编程 | 戈雷利克/欧日沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866) |\n| Python金融大数据分析 | 伊夫・希尔皮斯科 | [下载](https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866) |\n| 零基础入门学习Python | 小甲鱼 | [下载](https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866) |\n| 零起点Python大数据与量化交易 | 何海群 | [下载](https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866) |\n| 深度学习入门：基于Python的理论与实现 | 斋藤康毅 | [下载](https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866) |\n| 对比Excel，轻松学习Python数据分析 | 张俊红 | [下载](https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866) |\n| 精通Python爬虫框架Scrapy | 迪米特里奥斯 考奇斯-劳卡斯 | [下载](https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866) |\n| 用Python写网络爬虫（第2版） | Katharine Jarmul | [下载](https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866) |\n| 从Python开始学编程 | Vamei | [下载](https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866) |\n| 机器学习实战 | Peter Harrington | [下载](https://url89.ctfile.com/f/31084289-1357021075-0d6e7c?p=8866) |\n| 用Python写网络爬虫 | 理查德・劳森 | [下载](https://url89.ctfile.com/f/31084289-1357019827-2bfb81?p=8866) |\n| 像计算机科学家一样思考Python | Allen B.Downey | [下载](https://url89.ctfile.com/f/31084289-1357019812-6df559?p=8866) |\n| Python基础教程（第3版） | Magnus Lie Hetland | [下载](https://url89.ctfile.com/f/31084289-1357019476-163e41?p=8866) |\n| 精通Scrapy网络爬虫 | 刘硕 | [下载](https://url89.ctfile.com/f/31084289-1357019203-cea982?p=8866) |\n| Python核心编程（第3版） | Wesley Chun | [下载](https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866) |\n| Python极客项目编程 | Mahesh Venkitachalam | [下载](https://url89.ctfile.com/f/31084289-1357018480-2d6eec?p=8866) |\n| Flask Web开发 | Miguel Grinberg | [下载](https://url89.ctfile.com/f/31084289-1357018324-e7bedb?p=8866) |\n| 流畅的Python | Luciano Ramalho | [下载](https://url89.ctfile.com/f/31084289-1357018351-499390?p=8866) |\n| Python爬虫开发与项目实战 | 范传辉 | [下载](https://url89.ctfile.com/f/31084289-1357018354-f08e57?p=8866) |\n| 利用Python进行数据分析 | Wes McKinney | [下载](https://url89.ctfile.com/f/31084289-1357017943-1de00a?p=8866) |\n| 跟老齐学Python | 老齐 | [下载](https://url89.ctfile.com/f/31084289-1357016623-4a24a9?p=8866) |\n| Python网络数据采集 | Ryan Mitchell | [下载](https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866) |\n| 笨办法学Python | Zed A.Shaw | [下载](https://url89.ctfile.com/f/31084289-1357016419-cf9c7e?p=8866) |\n| Python编程：从入门到实践 | 埃里克・马瑟斯 | [下载](https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866) |\n| Python学习手册（原书第4版） | Mark Lutz | [下载](https://url89.ctfile.com/f/31084289-1357014307-045cb6?p=8866) |\n| Python编程快速上手 | Al Sweigart | [下载](https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866) |\n| Python核心编程（第二版） | 丘恩 | [下载](https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866) |\n| 父与子的编程之旅 | Warren Sande | [下载](https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866) |\n"
  },
  {
    "path": "md/Spring.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# Spring\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| Spring Boot实战 | Craig Walls | [下载](https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866) |\n| Spring实战（第4版） | Craig Walls | [下载](https://url89.ctfile.com/f/31084289-1357020319-e008d6?p=8866) |\n"
  },
  {
    "path": "md/WEB.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# WEB\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| Web安全之深度学习实战 | 刘焱 | [下载](https://url89.ctfile.com/f/31084289-1357027117-20aa4a?p=8866) |\n| Flask Web开发 | Miguel Grinberg | [下载](https://url89.ctfile.com/f/31084289-1357018324-e7bedb?p=8866) |\n| CSS禅意花园（修订版） | Dave Shea/Mollv E | [下载](https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866) |\n| 精通CSS（第2版） | Andy Budd/Cameron Moll | [下载](https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866) |\n| HTML5秘籍 | Matthew MacDonald | [下载](https://url89.ctfile.com/f/31084289-1357006540-4fb712?p=8866) |\n| CSS设计指南（第3版） | Charles Wyke-Smith | [下载](https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866) |\n"
  },
  {
    "path": "md/WEB开发.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# WEB开发\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| JavaScript函数式编程 | Michael Fogus | [下载](https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866) |\n| Node即学即用 | Tom Hughes-Croucher/Mike Wilson | [下载](https://url89.ctfile.com/f/31084289-1357019341-c051bb?p=8866) |\n| PHP和MySQL Web开发（原书第4版） | Luke Welling | [下载](https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866) |\n"
  },
  {
    "path": "md/iOS.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# iOS\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| iOS编程（第4版） | Christian Keur/Aaron Hillegass | [下载](https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866) |\n"
  },
  {
    "path": "md/tableau.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# tableau\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人人都是数据分析师 | 刘红阁/王淑娟/温融冰  | [下载](https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866) |\n"
  },
  {
    "path": "md/一战.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 一战\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 第一次世界大战：繁荣的幻灭 | 诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866) |\n| 第一次世界大战（贝克知识丛书） | 弗尔克・贝克汉恩 | [下载](https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866) |\n| 彗星年代 | 丹尼尔・舍恩普夫卢格 | [下载](https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866) |\n| 大英帝国与第一次世界大战 | 戴维・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866) |\n| 骄傲之塔 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866) |\n| 哈布斯堡的灭亡 | 杰弗里・瓦夫罗 | [下载](https://url89.ctfile.com/f/31084289-1357032763-6ef5f4?p=8866) |\n| 八月炮火 | 巴巴拉・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357022260-f72b1c?p=8866) |\n| 1913，一战前的世界 | 查尔斯・埃默森 | [下载](https://url89.ctfile.com/f/31084289-1357019293-a852b8?p=8866) |\n| 崩塌的世界 | 梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357013923-111e75?p=8866) |\n| 奥斯曼帝国的衰亡 | 尤金・罗根 | [下载](https://url89.ctfile.com/f/31084289-1357009525-0dfc4f?p=8866) |\n| 第一次世界大战回忆录（全五卷） | 温斯顿・丘吉尔 | [下载](https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866) |\n| 战争就是这么回事儿（全三册） | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866) |\n"
  },
  {
    "path": "md/三体.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 三体\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 三体秘密 | 田加刚 | [下载](https://url89.ctfile.com/f/31084289-1375508785-577194?p=8866) |\n| 《三体》中的物理学 | 李淼 | [下载](https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866) |\n| The Three-Body Problem | Cixin Liu | [下载](https://url89.ctfile.com/f/31084289-1357013644-82ce19?p=8866) |\n| The Dark Forest | Cixin Liu | [下载](https://url89.ctfile.com/f/31084289-1357013641-7de59a?p=8866) |\n| Death&#8217;s End | Cixin Liu | [下载](https://url89.ctfile.com/f/31084289-1357013638-dd39ad?p=8866) |\n"
  },
  {
    "path": "md/三国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 三国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 三国史话 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1375493698-8e176a?p=8866) |\n| 半小时漫画三国演义 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501411-8c4262?p=8866) |\n| 三国不演义 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1375506904-b9f4ff?p=8866) |\n| 三国：大暗黑时代的前奏曲 | 鸟山居士 | [下载](https://url89.ctfile.com/f/31084289-1357000855-46c47a?p=8866) |\n| 全面战争·日式三国（套装共5册） | 吉川英治 | [下载](https://url89.ctfile.com/f/31084289-1356989020-6eb90a?p=8866) |\n| 曹操：打不死的乐观主义者 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1356983932-901fe3?p=8866) |\n| 大汉帝国在巴蜀 | 饶胜文 | [下载](https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866) |\n| 三国英雄记（全六册） | 南门太守 | [下载](https://url89.ctfile.com/f/31084289-1357039126-d0e7c9?p=8866) |\n| 诸葛亮：蜀汉舵手的历史真相 | 南门太守 | [下载](https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866) |\n| 三国谍影（全四册） | 何慕 | [下载](https://url89.ctfile.com/f/31084289-1357033657-64c701?p=8866) |\n| 三国全史 | 南门太守 | [下载](https://url89.ctfile.com/f/31084289-1357022050-eeaf02?p=8866) |\n| 三国机密（新版全集） | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357019308-4cd05d?p=8866) |\n| 司马懿吃三国（套装共5册） | 李浩白 | [下载](https://url89.ctfile.com/f/31084289-1357017760-105460?p=8866) |\n| 三国演义（地图珍藏本） | 罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357017616-a7c9cd?p=8866) |\n| 三国那些人那些事（套装5册） | 陈瓷 | [下载](https://url89.ctfile.com/f/31084289-1357016065-19e132?p=8866) |\n| 水煮三国（十周年纪念版） | 成君忆 | [下载](https://url89.ctfile.com/f/31084289-1357015078-1ffe74?p=8866) |\n| 吕思勉文集：三国史话 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357011133-842806?p=8866) |\n| 易中天品三国 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357010851-0bd01f?p=8866) |\n| 正说司马家（1-3） | 张朝炬 | [下载](https://url89.ctfile.com/f/31084289-1357010560-b2fada?p=8866) |\n| 三国名将：一个历史学家的排行榜 | 方北辰 | [下载](https://url89.ctfile.com/f/31084289-1357009312-59e655?p=8866) |\n| 三国（套装共5册） | 吉川英治 | [下载](https://url89.ctfile.com/f/31084289-1357006129-6a7720?p=8866) |\n| 吕著三国史话 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866) |\n| 卑鄙的圣人：曹操（套装共10册） | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866) |\n| 三国机密（全两册） | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866) |\n| 风起陇西 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866) |\n| 三国人物传记合集（套装共六册） | 方北辰 | [下载](https://url89.ctfile.com/f/31084289-1357005274-cab8cd?p=8866) |\n"
  },
  {
    "path": "md/三国演义.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 三国演义\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 李国文陪读《三国演义》 | 罗贯中/李国文 | [下载](https://url89.ctfile.com/f/31084289-1357040167-4c9161?p=8866) |\n"
  },
  {
    "path": "md/上市.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 上市\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 梦想与浮沉：A股十年上市博弈（2004～2014） | 王骥跃/班妮 | [下载](https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866) |\n"
  },
  {
    "path": "md/上海.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 上海\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 上海传：叶辛眼中的上海 | 叶辛 | [下载](https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866) |\n| 家肴 | 唐颖 | [下载](https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866) |\n| 繁花 | 金宇澄 | [下载](https://url89.ctfile.com/f/31084289-1357027180-6130db?p=8866) |\n| 长乐路 | 史明智 | [下载](https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866) |\n| 上海秘境 | TimeOut 上海 | [下载](https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866) |\n"
  },
  {
    "path": "md/不平等.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 不平等\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 为什么不平等至关重要 | 托马斯・斯坎伦 | [下载](https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866) |\n| 断裂的阶梯 | 基思・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866) |\n"
  },
  {
    "path": "md/世界.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 世界\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 改变历史的香料商人 | 贾尔斯・米尔顿 | [下载](https://url89.ctfile.com/f/31084289-1375491709-49d668?p=8866) |\n| 原则：应对变化中的世界秩序 | 瑞・达利欧 | [下载](https://url89.ctfile.com/f/31084289-1375492075-4f7b4c?p=8866) |\n| 世界环境史 | 威廉·H. 麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1375492747-a5c12b?p=8866) |\n| 民族国家间的和平与战争（全2册） | 雷蒙・阿隆 | [下载](https://url89.ctfile.com/f/31084289-1375497541-2895bb?p=8866) |\n| 哲学100问（套装共3册） | 书杰 | [下载](https://url89.ctfile.com/f/31084289-1375498444-830a41?p=8866) |\n| 东大教授世界文学讲义系列（套装全5册） | 沼野充义 | [下载](https://url89.ctfile.com/f/31084289-1375498672-8a6511?p=8866) |\n| 大转向：世界如何步入现代 | 斯蒂芬・格林布拉特 | [下载](https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866) |\n| 看得见的历史精华·贝克知识丛书（套装共21册） | 汉斯-克里斯托弗・施罗德 | [下载](https://url89.ctfile.com/f/31084289-1375500913-fd0de9?p=8866) |\n| 书信中的世界史 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1375505836-f1bc65?p=8866) |\n| 失落文明系列（套装共7卷） | 克里斯蒂娜・里格斯等 | [下载](https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866) |\n| 黑色雅典娜：古典文明的亚非之根（套装全3卷共5册） | 马丁・贝尔纳 | [下载](https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866) |\n| 契诃夫短篇小说精选集（2020） |  契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1375508863-47608a?p=8866) |\n| 滔天洪水 | 亚当・图兹 | [下载](https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866) |\n| 半小时漫画世界史2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866) |\n| 西学三书（套装共三册） | 赵林 | [下载](https://url89.ctfile.com/f/31084289-1375510249-849869?p=8866) |\n| 世界史的故事（套装共6册） | 苏珊・怀斯・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1375510552-7ebbe2?p=8866) |\n| 法兰西双皇后 | 南希・戈德斯通 | [下载](https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866) |\n| 认识世界：古代与中世纪哲学 | 理查德・大卫・普莱希特 | [下载](https://url89.ctfile.com/f/31084289-1375511017-ad42d5?p=8866) |\n| 培生艺术史（套装6册） | 大卫·G.威尔金斯等 | [下载](https://url89.ctfile.com/f/31084289-1375511581-0d0d59?p=8866) |\n| 帖木儿之后 | 约翰・达尔文 | [下载](https://url89.ctfile.com/f/31084289-1375512304-8a0c34?p=8866) |\n| 走向火焰 | 多米尼克・利芬 | [下载](https://url89.ctfile.com/f/31084289-1375512313-ff672a?p=8866) |\n| 拜占庭三部曲 | 约翰・朱利叶斯・诺里奇 | [下载](https://url89.ctfile.com/f/31084289-1375513423-1f607d?p=8866) |\n| 丝绸之路上的帝国 | 蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1375513621-d0eb00?p=8866) |\n| 大人物的世界史 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1375513792-4193e9?p=8866) |\n| 历史上的大帝国 | 加布里埃尔・马丁内斯-格罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356999973-6bcd2f?p=8866) |\n| 大国霸权 | 宫崎正胜 | [下载](https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866) |\n| 参与的力量 | 慎泰俊 | [下载](https://url89.ctfile.com/f/31084289-1356992248-f3bcbb?p=8866) |\n| 西方通史：世界大战的时代（全三册） | 海因里希・奥古斯特・温克勒 | [下载](https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866) |\n| 赛雷三分钟漫画世界史 | 赛雷三分钟 | [下载](https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866) |\n| 世界英雄史诗译丛（套装14册） | 荷马等 | [下载](https://url89.ctfile.com/f/31084289-1356984031-b9ecb5?p=8866) |\n| 牛津世界史丛书（共四册） | 贾斯珀・格里芬等 | [下载](https://url89.ctfile.com/f/31084289-1356983875-afdd9b?p=8866) |\n| 看得见的世界史套装（全15卷） | 肖石忠等 | [下载](https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866) |\n| 讲谈社·兴亡的世界史（全九卷） | 森谷公俊等 | [下载](https://url89.ctfile.com/f/31084289-1357052227-3cba4a?p=8866) |\n| 古典时代的终结（贝克知识丛书） | 哈特温・布兰特 | [下载](https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866) |\n| 中东史（套装共3册） | 哈全安 | [下载](https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866) |\n| 从航海图到世界史 | 宫崎正胜 | [下载](https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866) |\n| 汤因比著作集（套装全7册） | 阿诺德・汤因比 | [下载](https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866) |\n| 西方通史：从古代源头到20世纪（全3册） | 海因里希・奥古斯特・温克勒 | [下载](https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866) |\n| 罗马元老院与人民 | 玛丽・比尔德 | [下载](https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866) |\n| 文明（套装共2册） | 玛丽・比尔德/戴维・奥卢索加 | [下载](https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866) |\n| 全球通史：从史前到21世纪（第7版新校本） | 斯塔夫里阿诺斯 | [下载](https://url89.ctfile.com/f/31084289-1357045897-0418e2?p=8866) |\n| 千年文明史 | 勒尔・兹威克 | [下载](https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866) |\n| 法国大革命 | 维森 | [下载](https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866) |\n| 黑羊与灰鹰（套装共3册） | 丽贝卡・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866) |\n| 文明的历史（全5册） | 丹尼尔・布尔斯廷 | [下载](https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866) |\n| 征服与革命中的阿拉伯人 | 尤金・罗根 | [下载](https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866) |\n| 大英帝国与第一次世界大战 | 戴维・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866) |\n| 远方之镜 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866) |\n| 人类六千年（上下两册） | 刘景华 | [下载](https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866) |\n| 摩登时代：从1920年代到1990年代的世界 | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357032913-6118fe?p=8866) |\n| 世界文明史（全11卷） | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866) |\n| 印加帝国的末日 | 金・麦夸里 | [下载](https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866) |\n| 文明的崩塌 | 埃里克·H.克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357030063-a42a80?p=8866) |\n| 海都物语 | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866) |\n| 东方的文明（套装共2册） | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357027801-a8005f?p=8866) |\n| 两个世界的战争 | 安东尼・帕戈登 | [下载](https://url89.ctfile.com/f/31084289-1357026268-2ca776?p=8866) |\n| 拜占庭帝国大战略 | 爱德华·N.勒特韦克 | [下载](https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866) |\n| 海洋与文明 | 林肯・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866) |\n| 文明的故事（全11卷） | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866) |\n| 百年战争简史 | 德斯蒙德・苏厄德 | [下载](https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866) |\n| 20世纪简史 | 杰弗里・布莱内 | [下载](https://url89.ctfile.com/f/31084289-1357021225-d87722?p=8866) |\n| 看懂世界格局的第一本书：大国博弈 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357020181-db0efd?p=8866) |\n| 看懂世界格局的第一本书：大国之略 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357020175-352ae5?p=8866) |\n| 欧洲文明史精品系列（套装共8册） | 阿曼达・维尔等 | [下载](https://url89.ctfile.com/f/31084289-1357019635-e4c4dd?p=8866) |\n| 历史的教训 | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357019254-d01ce4?p=8866) |\n| 新视角全球简史套装（三册） | 莉奥妮・希克斯等 | [下载](https://url89.ctfile.com/f/31084289-1357018528-cc4d08?p=8866) |\n| 事实改变之后 | 托尼・朱特 | [下载](https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866) |\n| 世界历史文化丛书（精选15册） | 王海利等 | [下载](https://url89.ctfile.com/f/31084289-1357019155-dbc0f5?p=8866) |\n| 大历史，小世界 | 辛西娅・斯托克斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866) |\n| 全球通史：1500年以后的世界 | 斯塔夫里阿诺斯  | [下载](https://url89.ctfile.com/f/31084289-1357017241-7f501e?p=8866) |\n| 换个角度读历史（套装共3册） | 大卫・克里斯蒂安等 | [下载](https://url89.ctfile.com/f/31084289-1357016593-cb129e?p=8866) |\n| 镜子：照出你看不见的世界史 | 爱德华多・加莱亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357015687-56df1e?p=8866) |\n| BBC世界史 | 安德鲁・玛尔 | [下载](https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866) |\n| 白银资本：重视经济全球化中的东方 | 贡德・弗兰克 | [下载](https://url89.ctfile.com/f/31084289-1357014439-33d3c7?p=8866) |\n| 现代世界史（插图第10版） | 帕尔默/乔・科尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357013437-274a1b?p=8866) |\n| 1493：物种大交换开创的世界史 | 查尔斯・曼恩 | [下载](https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866) |\n| 中信经典历史之世界史篇（共6册） | 大卫・克里斯蒂安/伊恩・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357012936-2633d0?p=8866) |\n| 简·奥斯丁文集（套装共6本） | 简・奥斯丁 | [下载](https://url89.ctfile.com/f/31084289-1357011874-14d4b5?p=8866) |\n| 大英博物馆世界简史（套装共3册） | 尼尔・麦格雷戈 | [下载](https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866) |\n| 世界小史 | 恩斯特・贡布里希 | [下载](https://url89.ctfile.com/f/31084289-1357009717-003d99?p=8866) |\n| 世界未解之谜大全集（超值白金版） | 文若愚 | [下载](https://url89.ctfile.com/f/31084289-1357009702-76dece?p=8866) |\n| 世界是红的：看懂中国经济格局的一本书 | 白云先生 | [下载](https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866) |\n| 德国简史 | 孟钟捷 | [下载](https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866) |\n| 欧洲：1453年以来的争霸之途 | 布伦丹・西姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866) |\n| 美国是个大公司 | 闵纬国 | [下载](https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866) |\n| 世界历史有一套（全6册） | 杨白劳 | [下载](https://url89.ctfile.com/f/31084289-1357007026-a96241?p=8866) |\n| 革命的年代：1789～1848 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866) |\n| 资本的年代：1848～1875 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866) |\n| 帝国的年代：1875～1914 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866) |\n| 给大家看的全球通史 | 房龙 | [下载](https://url89.ctfile.com/f/31084289-1357006666-b79483?p=8866) |\n| 丝绸之路：一部全新的世界史 | 彼得·弗兰科潘 | [下载](https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866) |\n| 你知道或不知道的英国史 | 贺桂金 | [下载](https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866) |\n"
  },
  {
    "path": "md/世界史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 世界史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 维京时代与英格兰 | 埃莉诺・帕克 | [下载](https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866) |\n| 第一次世界大战：繁荣的幻灭 | 诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866) |\n| 游牧民的世界史（修订版） | 杉山正明 | [下载](https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866) |\n| 犹太文明 | S.N.艾森斯塔特 | [下载](https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866) |\n| 彗星年代 | 丹尼尔・舍恩普夫卢格 | [下载](https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866) |\n| 新食货志 | 杜君立 | [下载](https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866) |\n| 拜占庭帝国史 | A.A.瓦西列夫 | [下载](https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866) |\n| 马其顿的亚历山大 | 彼得・格林 | [下载](https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866) |\n| 1848：革命之年 | 迈克・拉波特 | [下载](https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866) |\n| 雅典的胜利 | 安东尼・艾福瑞特 | [下载](https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866) |\n| 皇帝圆舞曲 | 高林 | [下载](https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866) |\n| 千年帝国史 | 克里尚・库马尔 | [下载](https://url89.ctfile.com/f/31084289-1357035127-d8bec6?p=8866) |\n| 欧亚皇家狩猎史 | 托马斯・爱尔森 | [下载](https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866) |\n| 圣经与利剑 | 巴巴拉・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866) |\n| 缔造和平：1919巴黎和会及其开启的战后世界 | 玛格丽特・麦克米伦 | [下载](https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866) |\n| 全球帝国史 | 约翰・达尔文 | [下载](https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866) |\n| 全球通史：1500年以前的世界 | 斯塔夫里阿诺斯  | [下载](https://url89.ctfile.com/f/31084289-1357017238-a96be6?p=8866) |\n"
  },
  {
    "path": "md/世界是.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 世界是\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 十二幅地图中的世界史 | 杰里・布罗顿 | [下载](https://url89.ctfile.com/f/31084289-1357024693-19bb78?p=8866) |\n"
  },
  {
    "path": "md/世界杯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 世界杯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 瓜迪奥拉：胜利的另一种道路 | 吉列姆・巴拉格 | [下载](https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866) |\n"
  },
  {
    "path": "md/世界观.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 世界观\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人人都该懂的科学哲学 | 杰弗里・戈勒姆 | [下载](https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866) |\n"
  },
  {
    "path": "md/世纪三部曲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 世纪三部曲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 永恒的边缘（全3册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357008637-b35210?p=8866) |\n"
  },
  {
    "path": "md/东欧.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 东欧\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 民族的重建 | 蒂莫西・斯奈德 | [下载](https://url89.ctfile.com/f/31084289-1375511398-d8e38f?p=8866) |\n| 客居己乡 | 哲尔吉・康拉德 | [下载](https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866) |\n| 十字军骑士（名著名译丛书） | 亨利克・显克维奇 | [下载](https://url89.ctfile.com/f/31084289-1357034416-c53e79?p=8866) |\n| 回访历史 | 伊娃・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357023670-9aac87?p=8866) |\n"
  },
  {
    "path": "md/东野圭吾.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 东野圭吾\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 东野圭吾年度套装（共56册） | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357046530-4e40c9?p=8866) |\n| 天使之耳 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357032541-4cba9e?p=8866) |\n| 东野圭吾天王套装 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031326-663108?p=8866) |\n"
  },
  {
    "path": "md/丝绸之路.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 丝绸之路\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 丝绸之路：一部全新的世界史 | 彼得·弗兰科潘 | [下载](https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866) |\n"
  },
  {
    "path": "md/两性.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 两性\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 李银河谈亲密关系 | 李银河 | [下载](https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866) |\n| 挽回爱情33堂课 | 穆木 | [下载](https://url89.ctfile.com/f/31084289-1356985810-12567b?p=8866) |\n| 二次吸引 | “小鹿情感”专家组 | [下载](https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866) |\n| 完美关系的秘密 | 杨冰阳 | [下载](https://url89.ctfile.com/f/31084289-1357041142-df8089?p=8866) |\n| 在亲密关系中成长 | 卡洛琳・戴奇/丽萨・罗伯邦 | [下载](https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866) |\n| 荷尔蒙战争 | 科迪莉亚・法恩 | [下载](https://url89.ctfile.com/f/31084289-1357020769-c67cdf?p=8866) |\n| 金赛性学报告（男人篇&#038;女人篇） | 阿尔弗雷德・C.金赛 | [下载](https://url89.ctfile.com/f/31084289-1357020571-87df7c?p=8866) |\n| 野兽绅士 | 巫家民 | [下载](https://url89.ctfile.com/f/31084289-1357012660-d06b04?p=8866) |\n| 男人来自火星，女人来自金星（套装共4册） | 约翰・格雷 | [下载](https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866) |\n| 性学观止（上下册） | 贺兰特・凯查杜里安 | [下载](https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866) |\n| 性学五章 | 江晓原 | [下载](https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866) |\n"
  },
  {
    "path": "md/个人.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 个人\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 爱自己是一生浪漫的开始 | 静听风 | [下载](https://url89.ctfile.com/f/31084289-1375513075-1286b7?p=8866) |\n| 个人可持续发展精要 | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357051120-d9b6a3?p=8866) |\n| 不疲惫的精力管理术 | 葛西纪明 | [下载](https://url89.ctfile.com/f/31084289-1357046434-95610f?p=8866) |\n| 创造时间 | 杰克・纳普/约翰・泽拉茨基 | [下载](https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866) |\n| Everything Is F*cked | Mark Manson | [下载](https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866) |\n| 大脑减压的子弹笔记术 | 电脑玩物站长 | [下载](https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866) |\n| 颠覆式成长 | 惠特尼・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866) |\n| 远离迷茫，从学会赚钱开始 | 曾鹏宇 | [下载](https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866) |\n| 思维精进 | 赵帅/王姗姗  | [下载](https://url89.ctfile.com/f/31084289-1357030216-90e1ab?p=8866) |\n| 深度成长 | 亚力山德拉・卡弗拉科斯/凯瑟琳・明斯 | [下载](https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866) |\n| 胜出：非掠夺社交智慧与共享式领导力 | 琳达・科汗 | [下载](https://url89.ctfile.com/f/31084289-1357029514-754530?p=8866) |\n| 你只是看起来很专注 | 张笑恒 | [下载](https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866) |\n| 如何学习：用更短的时间达到更佳效果和更好成绩 | 亚当・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866) |\n| 逆境成长：坚韧人格养成手册 | 小乔治·S.埃弗利等 | [下载](https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866) |\n| 子弹笔记 | 赖德・卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357025593-0c0c06?p=8866) |\n| 要事第一 | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357024057-5976ea?p=8866) |\n| 成功的要素 | 西蒙・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357022251-1bcbdc?p=8866) |\n| 让问题到你为止 | 博恩・崔西 | [下载](https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866) |\n| 掌控：开启不疲惫、不焦虑的人生 | 张展晖 | [下载](https://url89.ctfile.com/f/31084289-1357021903-0cf2b0?p=8866) |\n| 生命向前 | 迈克尔・海厄特/丹尼尔・哈卡维 | [下载](https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866) |\n| 零秒工作 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866) |\n| 成长到死 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357020892-1a7715?p=8866) |\n| 精准努力 | 野口真人 | [下载](https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866) |\n| 全神贯注的方法 | 托马斯 M. 斯特纳 | [下载](https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866) |\n| 直觉：我们为什么无从推理，却能决策 | 格尔德・吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866) |\n| 平均的终结 | 托德・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357019251-a6dba1?p=8866) |\n| 女神进化论 | 寺主人 | [下载](https://url89.ctfile.com/f/31084289-1357019086-4cbd0e?p=8866) |\n| 关键20小时，快速学会任何技能！ | 乔希・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357018735-508fa6?p=8866) |\n| 把时间当作朋友（第3版） | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866) |\n| 成功，动机与目标 | 海蒂・格兰特・霍尔沃森 | [下载](https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866) |\n| 斜杠青年 | Susan Kuang | [下载](https://url89.ctfile.com/f/31084289-1357017703-338a87?p=8866) |\n| DISCOVER自我探索（全彩） | 李海峰 | [下载](https://url89.ctfile.com/f/31084289-1357017607-237846?p=8866) |\n| 影响力大师（原书第2版） | 约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357017205-c1655c?p=8866) |\n| 从行动开始 | 石田淳 | [下载](https://url89.ctfile.com/f/31084289-1357016650-20e429?p=8866) |\n| 你一年的8760小时 | 艾力 | [下载](https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866) |\n| 每天学点时间整理术 | 特瑞博・伍兹 | [下载](https://url89.ctfile.com/f/31084289-1357015936-2a3d9f?p=8866) |\n| 光速成长 | 林晅 | [下载](https://url89.ctfile.com/f/31084289-1357015888-f1ac25?p=8866) |\n| 人生效率手册 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357015783-caef80?p=8866) |\n| 麦肯锡精英系列（共五册） | 高杉尚孝等 | [下载](https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866) |\n| 持续学习和行动让人生逆袭（套装9册） | 廖珺等 | [下载](https://url89.ctfile.com/f/31084289-1357015714-57fbb1?p=8866) |\n| 单核工作法图解 | 史蒂夫・诺特伯格 | [下载](https://url89.ctfile.com/f/31084289-1357015606-53a35f?p=8866) |\n| 靠谱 | 大石哲之 | [下载](https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866) |\n| 关键责任 | 科里・帕特森/约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866) |\n| 吉田医生哈佛求学记 | 吉田穗波 | [下载](https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866) |\n| 简化 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866) |\n| 好好工作，好好生活 | 克里斯汀・卡特 | [下载](https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866) |\n| 终身成长 | 卡罗尔・德韦克 | [下载](https://url89.ctfile.com/f/31084289-1357014808-fa0a34?p=8866) |\n| 好好学习 | 成甲 | [下载](https://url89.ctfile.com/f/31084289-1357014799-edd4b9?p=8866) |\n| 打破自我的标签 | 陈虎平 | [下载](https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866) |\n| 别再用勤奋掩饰你的懒惰 | 阿何 | [下载](https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866) |\n| 谁说你不能坚持 | 程龙 | [下载](https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866) |\n| 自制力 | 高原 | [下载](https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866) |\n| 最重要的事，只有一件 | 加里・凯勒/杰伊・帕帕森 | [下载](https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866) |\n| 精力管理 | 吉姆・洛尔/托尼・施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357009036-6c36ba?p=8866) |\n| Ego Is the Enemy | Ryan Holiday  | [下载](https://url89.ctfile.com/f/31084289-1357006948-f3c958?p=8866) |\n"
  },
  {
    "path": "md/中世纪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中世纪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 圣殿骑士团：从神坛跌落尘埃 | 迈克尔・克里根 | [下载](https://url89.ctfile.com/f/31084289-1375493314-61cf2a?p=8866) |\n| 骑士团九百年 | 德斯蒙德・苏厄德 | [下载](https://url89.ctfile.com/f/31084289-1375501162-ae68dd?p=8866) |\n| 奶酪与蛆虫 | 卡洛・金茨堡 | [下载](https://url89.ctfile.com/f/31084289-1375509391-1e6f1a?p=8866) |\n| 金犀牛 | 富威尔-艾玛尔 | [下载](https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866) |\n| 第一次十字军东征 | 彼得・弗兰科潘 | [下载](https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866) |\n| 爱德华一世 | 马克・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866) |\n| 黑死病 | 弗朗西斯・艾丹・加斯凯 | [下载](https://url89.ctfile.com/f/31084289-1357032304-c5b139?p=8866) |\n| 中世纪欧洲 | 理查・威廉・丘奇 | [下载](https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866) |\n| 企鹅欧洲史：中世纪盛期的欧洲 | 威廉・乔丹 | [下载](https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866) |\n| 中世纪人 | 艾琳・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357025578-a85503?p=8866) |\n| 皇帝腓特烈二世的故事（全2册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357023466-0fbdd9?p=8866) |\n| 欧洲中世纪史 | 朱迪斯・M・本内特等 | [下载](https://url89.ctfile.com/f/31084289-1357017151-2a3e9a?p=8866) |\n| 黎明破晓的世界 | 威廉・曼彻斯特 | [下载](https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866) |\n"
  },
  {
    "path": "md/中东.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中东\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 终结所有和平的和平 | 戴维・弗罗姆金 | [下载](https://url89.ctfile.com/f/31084289-1356999736-5c71a4?p=8866) |\n| 大征服 | 休・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866) |\n| 中东史（套装共3册） | 哈全安 | [下载](https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866) |\n| 敌人与邻居 | 伊恩・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866) |\n| 以色列的诞生（全四册） | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866) |\n| 阿拉伯的劳伦斯 | 斯科特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866) |\n| 圣经与利剑 | 巴巴拉・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866) |\n| 无规则游戏 | 塔米姆・安萨利 | [下载](https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866) |\n| 我的早年岁月 | 苏尔坦・本・穆罕默德・卡西米 | [下载](https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866) |\n| 父亲的失乐园 |  阿里埃勒・萨巴尔 | [下载](https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866) |\n| 穿越百年中东 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866) |\n"
  },
  {
    "path": "md/中亚.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中亚\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 撒马尔罕 | 阿敏・马卢夫 | [下载](https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866) |\n| 大博弈：英俄帝国争霸战 | 彼得・霍普柯克 | [下载](https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866) |\n"
  },
  {
    "path": "md/中医.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中医\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 图解国医典藏系列套装（全6册） | 张仲景等 | [下载](https://url89.ctfile.com/f/31084289-1375500892-16aa17?p=8866) |\n| 疾病密码 | 唐云 | [下载](https://url89.ctfile.com/f/31084289-1357003858-1a42ec?p=8866) |\n| 近代中西医的博弈 | 皮国立 | [下载](https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866) |\n| 问中医几度秋凉（增订版） | 艾宁 | [下载](https://url89.ctfile.com/f/31084289-1356984574-129632?p=8866) |\n| 问中医几度秋凉 | 艾宁 | [下载](https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866) |\n| 医目了然 | 懒兔子 | [下载](https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866) |\n| 中医祖传的那点儿东西2 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357023928-751840?p=8866) |\n| 救命之方 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357023430-dd9f1a?p=8866) |\n| 思考中医 | 刘力红 | [下载](https://url89.ctfile.com/f/31084289-1357010455-725a39?p=8866) |\n"
  },
  {
    "path": "md/中医学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中医学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 国医典藏系列套装（共四册） | 李时珍/孙思邈 | [下载](https://url89.ctfile.com/f/31084289-1356998563-a4c3ab?p=8866) |\n"
  },
  {
    "path": "md/中华.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中华\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中华生活经典系列（第一辑共11册） | 林洪等 | [下载](https://url89.ctfile.com/f/31084289-1357046236-5c0c2e?p=8866) |\n"
  },
  {
    "path": "md/中原大战.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中原大战\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中原大战：民国军阀的终极逐鹿 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357006606-dd3be8?p=8866) |\n"
  },
  {
    "path": "md/中国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 六朝文明（中译修订版） | 丁爱博 | [下载](https://url89.ctfile.com/f/31084289-1375491355-eb0d4e?p=8866) |\n| 智造中国 | 马兆远 | [下载](https://url89.ctfile.com/f/31084289-1375491232-200000?p=8866) |\n| 疑案里的中国史 | 艾公子 | [下载](https://url89.ctfile.com/f/31084289-1375492021-d4507b?p=8866) |\n| 二十六史：完本精校大全集 | 尹小林 | [下载](https://url89.ctfile.com/f/31084289-1375492978-9ee6ed?p=8866) |\n| 茅盾讲中国神话 | 茅盾 | [下载](https://url89.ctfile.com/f/31084289-1375492144-627120?p=8866) |\n| 读通鉴论（全本全注全译） | 王夫之等 | [下载](https://url89.ctfile.com/f/31084289-1375492498-e835e5?p=8866) |\n| 拿得起放不下的大唐史（套装共6册） | 九皋寒叟 | [下载](https://url89.ctfile.com/f/31084289-1375493803-e9b7e5?p=8866) |\n| 变量4 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1375493833-c77a73?p=8866) |\n| 易中天中华史（全24卷） | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1375495477-bb3864?p=8866) |\n| 海外中国研究套书合集（50册） | 杜赞奇 | [下载](https://url89.ctfile.com/f/31084289-1375494265-1152a5?p=8866) |\n| 中国从此走向大唐 | 叶言都 | [下载](https://url89.ctfile.com/f/31084289-1375497640-aa733a?p=8866) |\n| 大国合集（套装共4册） | 余玮等 | [下载](https://url89.ctfile.com/f/31084289-1375497739-6909f1?p=8866) |\n| 郑永年论中国系列（套装6册） | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866) |\n| 沸腾新十年：移动互联网丛林里的勇敢穿越者（套装共2册） | 林军/胡喆 | [下载](https://url89.ctfile.com/f/31084289-1375497964-c980d4?p=8866) |\n| 煌煌商周 | 高虫二 | [下载](https://url89.ctfile.com/f/31084289-1375498399-fe1caa?p=8866) |\n| 有趣得让人睡不着的三国史（套装共3册） | 醉罢君山 | [下载](https://url89.ctfile.com/f/31084289-1375498435-696d7b?p=8866) |\n| 杨宽著作集第一辑+第二辑（13种15册全） | 杨宽 | [下载](https://url89.ctfile.com/f/31084289-1375498888-2686f0?p=8866) |\n| 九说中国系列（第一辑·全九册） | 江晓原等 | [下载](https://url89.ctfile.com/f/31084289-1375498858-bb9ccb?p=8866) |\n| 岳南：考古中国（全11册） | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1375499434-08138d?p=8866) |\n| 中国的选择 | 马凯硕 | [下载](https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866) |\n| 乱世四百年（全3册） | 张程 | [下载](https://url89.ctfile.com/f/31084289-1375499563-57bb66?p=8866) |\n| 中古中国知识·信仰·制度研究书系（全11册） | 仇鹿鸣等 | [下载](https://url89.ctfile.com/f/31084289-1375501066-c19ce4?p=8866) |\n| 置身事内 | 兰小欢 | [下载](https://url89.ctfile.com/f/31084289-1375500901-c3b7ff?p=8866) |\n| 祥瑞：王莽和他的时代 | 张向荣 | [下载](https://url89.ctfile.com/f/31084289-1375501060-79c4bc?p=8866) |\n| 黎东方讲史（套装共九册） | 黎东方 | [下载](https://url89.ctfile.com/f/31084289-1375502284-a5d182?p=8866) |\n| 三联当代学术丛书（套装10册） | 茅海建等 | [下载](https://url89.ctfile.com/f/31084289-1375502293-05fab8?p=8866) |\n| 近代中国的知识与制度转型 | 桑兵/关晓红 | [下载](https://url89.ctfile.com/f/31084289-1375502335-2fab88?p=8866) |\n| 一套书读懂中国人文社会（套装共8册） | 冯友兰等 | [下载](https://url89.ctfile.com/f/31084289-1375502341-52b551?p=8866) |\n| 五四运动史 | 周策纵 | [下载](https://url89.ctfile.com/f/31084289-1375502563-5afaed?p=8866) |\n| 中华学人丛书（第二辑）（套种共十六册） | 李伯杰等 | [下载](https://url89.ctfile.com/f/31084289-1375503694-ac5276?p=8866) |\n| 新编历史-元明清简史系列 | 吴玉章等 | [下载](https://url89.ctfile.com/f/31084289-1375504225-455a2a?p=8866) |\n| 法度与人心 | 赵冬梅 | [下载](https://url89.ctfile.com/f/31084289-1375504462-48faff?p=8866) |\n| 中华学人丛书（第一辑）（套种共十五册） | 李细珠等 | [下载](https://url89.ctfile.com/f/31084289-1375504888-0865cd?p=8866) |\n| 中国通史大师课（全三册） | 许宏等 | [下载](https://url89.ctfile.com/f/31084289-1375504945-912385?p=8866) |\n| 一套书理解中国（套装共15册） | 蔡昉等 | [下载](https://url89.ctfile.com/f/31084289-1375506709-9a88fd?p=8866) |\n| 中国史学要籍丛刊（全十三册） | 司马迁等 | [下载](https://url89.ctfile.com/f/31084289-1375507369-8d2f54?p=8866) |\n| 人间烟火 | 赵冬梅 | [下载](https://url89.ctfile.com/f/31084289-1375507471-468a0e?p=8866) |\n| 未名中国史丛刊 | 李孝聪等 | [下载](https://url89.ctfile.com/f/31084289-1375508422-bc780c?p=8866) |\n| 中国建筑与历史文化精选（套装共5本） | 汪荣祖等 | [下载](https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866) |\n| 李顿调查团档案文献集 | 郭昭昭等 | [下载](https://url89.ctfile.com/f/31084289-1375508902-ee3647?p=8866) |\n| 被遗忘的海上中国史 | 罗荣邦 | [下载](https://url89.ctfile.com/f/31084289-1375508914-0714ec?p=8866) |\n| 民法典请求权基础检索手册 | 吴香香 | [下载](https://url89.ctfile.com/f/31084289-1375508941-e99844?p=8866) |\n| 明治维新以来日本涉华学术调查系列丛书（套装共5册） | 常盘大定等 | [下载](https://url89.ctfile.com/f/31084289-1375509337-ad0d6b?p=8866) |\n| 讲给大家的中国历史（套装共9册） | 杨照 | [下载](https://url89.ctfile.com/f/31084289-1375509490-b9fe88?p=8866) |\n| 改变中国 | 张军 | [下载](https://url89.ctfile.com/f/31084289-1375509850-d9c207?p=8866) |\n| 红楼梦魇 | 张爱玲 | [下载](https://url89.ctfile.com/f/31084289-1375511050-520d2a?p=8866) |\n| 古物记 | 果麦 | [下载](https://url89.ctfile.com/f/31084289-1375511083-8bffd6?p=8866) |\n| 中国经济2020 | 王德培 | [下载](https://url89.ctfile.com/f/31084289-1375511185-ea4e0f?p=8866) |\n| 云上的中国 | 吴晓波等 | [下载](https://url89.ctfile.com/f/31084289-1375511269-087c56?p=8866) |\n| 100个成语中的古代生活史 | 许晖 | [下载](https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866) |\n| 1840年以来的中国 | 王人博 | [下载](https://url89.ctfile.com/f/31084289-1375512094-24957e?p=8866) |\n| 白寿彝史学二十讲套装（共十一册） | 白寿彝 | [下载](https://url89.ctfile.com/f/31084289-1375512733-8591d3?p=8866) |\n| 舍不得看完的中国史 | 渤海小吏 | [下载](https://url89.ctfile.com/f/31084289-1375512874-eab20b?p=8866) |\n| 楚汉双雄 | 渤海小吏 | [下载](https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866) |\n| 跟随利玛窦来中国 | 张西平 | [下载](https://url89.ctfile.com/f/31084289-1375513096-e1c1a7?p=8866) |\n| 中华雅文化经典系列（套装共8册） | 陈敬等 | [下载](https://url89.ctfile.com/f/31084289-1375513279-73b746?p=8866) |\n| 西洋镜合集 | 赵省伟 | [下载](https://url89.ctfile.com/f/31084289-1375513801-cd009d?p=8866) |\n| 哈佛极简中国史（修订珍藏版） | 阿尔伯特・克雷格 | [下载](https://url89.ctfile.com/f/31084289-1375513678-179769?p=8866) |\n| 为什么是中国 | 金一南 | [下载](https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866) |\n| 古史六案 | 李洁非 | [下载](https://url89.ctfile.com/f/31084289-1375513729-d47abf?p=8866) |\n| 大美中国（全8册） | 陈炎等 | [下载](https://url89.ctfile.com/f/31084289-1375513846-cbc74c?p=8866) |\n| 革故鼎新 | 杨天宏 | [下载](https://url89.ctfile.com/f/31084289-1357004677-064105?p=8866) |\n| 新元史（全十册） | 柯劭忞等 | [下载](https://url89.ctfile.com/f/31084289-1357003306-a208db?p=8866) |\n| 我的二本学生 | 黄灯 | [下载](https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866) |\n| 从考古发现中国 | 张经纬 | [下载](https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866) |\n| 10000年中国艺术史（全2册） | 王逊 | [下载](https://url89.ctfile.com/f/31084289-1357002127-c9e3e5?p=8866) |\n| 有趣得让人睡不着的中国史 | 历史君 | [下载](https://url89.ctfile.com/f/31084289-1357002040-b2ebf4?p=8866) |\n| 这里是中国 | 星球研究所 | [下载](https://url89.ctfile.com/f/31084289-1357001278-e6701c?p=8866) |\n| 中国战疫！ | 张维为 | [下载](https://url89.ctfile.com/f/31084289-1357001119-7cf127?p=8866) |\n| 怀柔远人 | 何伟亚 | [下载](https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866) |\n| 超有料漫画中国史 | 韩明辉 | [下载](https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866) |\n| 华杉讲透《资治通鉴》（战国到三国·共7册） | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1356995530-d3ff91?p=8866) |\n| 新基建：全球大变局下的中国经济新引擎 | 任泽平/马家进/连一席 | [下载](https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866) |\n| 日本人眼中的中国史（全4册） | 堀敏一等 | [下载](https://url89.ctfile.com/f/31084289-1356995227-02574c?p=8866) |\n| 战时中国1940-1946 | 格兰姆・贝克 | [下载](https://url89.ctfile.com/f/31084289-1356995017-6778ad?p=8866) |\n| 何以中国 | 许宏 | [下载](https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866) |\n| 时刻：新全球化时代的中国韧性与创新 | 秦朔 | [下载](https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866) |\n| 当代中国学术思想史（套装共19卷） | 成一农等 | [下载](https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866) |\n| 中国共产党的九十年 | 中共中央党史研究室 | [下载](https://url89.ctfile.com/f/31084289-1356992086-13abd2?p=8866) |\n| 武英殿本四库全书总目·上（1-30册） | 纪昀等纂修编 | [下载](https://url89.ctfile.com/f/31084289-1356994612-c07393?p=8866) |\n| 武英殿本四库全书总目·下（31-60册） | 纪昀等纂修编 | [下载](https://url89.ctfile.com/f/31084289-1356994516-301912?p=8866) |\n| 他们不是虹城人 | 王苏辛 | [下载](https://url89.ctfile.com/f/31084289-1356990964-b8afd7?p=8866) |\n| 不只中国木建筑 | 赵广超 | [下载](https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866) |\n| 云雷岛事件 | 孙国栋 | [下载](https://url89.ctfile.com/f/31084289-1356990916-d09f48?p=8866) |\n| 代谢增长论 | 陈平 | [下载](https://url89.ctfile.com/f/31084289-1356990715-9d84b3?p=8866) |\n| 未来站在中国这一边 | 宁南山 | [下载](https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866) |\n| 中国治理 | 罗家德 | [下载](https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866) |\n| 中华文明史（全四卷） | 袁行霈 | [下载](https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866) |\n| 中国人生哲学 | 方东美 | [下载](https://url89.ctfile.com/f/31084289-1356990337-fd3773?p=8866) |\n| 中国的当下与未来 | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866) |\n| 赛雷三分钟漫画中国史3 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866) |\n| 中华二千年史（套装共3册） | 邓之诚 | [下载](https://url89.ctfile.com/f/31084289-1356990280-51b8f7?p=8866) |\n| 柏杨白话版资治通鉴（全72册） | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866) |\n| 中国政治思想史（套装共3册） | 刘泽华 | [下载](https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866) |\n| 赛雷三分钟漫画中国史2 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866) |\n| 九色鹿•边疆史系列（全7册） | 薛小林等 | [下载](https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866) |\n| 巴黎和会与北京政府的内外博弈 | 邓野 | [下载](https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866) |\n| 八次危机 | 温铁军 | [下载](https://url89.ctfile.com/f/31084289-1356987595-1cd401?p=8866) |\n| 少年读史记（套装全5册） | 张嘉骅 | [下载](https://url89.ctfile.com/f/31084289-1356986401-311f21?p=8866) |\n| 乌蒙山记 | 雷平阳 | [下载](https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866) |\n| 五万年中国简史（全二册） | 姚大力等 | [下载](https://url89.ctfile.com/f/31084289-1356985504-47fbca?p=8866) |\n| 文物中国史 | 中国国家博物馆 | [下载](https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866) |\n| 文史通义校注（中华国学文库） | 章学诚著/叶瑛校注 | [下载](https://url89.ctfile.com/f/31084289-1356984772-eeffe4?p=8866) |\n| 史通（全本全注全译） | 白云 | [下载](https://url89.ctfile.com/f/31084289-1356983833-e75058?p=8866) |\n| 正统与华夷 | 刘浦江 | [下载](https://url89.ctfile.com/f/31084289-1356983797-3ed0c7?p=8866) |\n| 有所不为的反叛者 | 罗新 | [下载](https://url89.ctfile.com/f/31084289-1356983353-cca417?p=8866) |\n| 纸上寻仙记 | 锦翼 | [下载](https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866) |\n| 中国古道 | 伊莎贝拉・韦廉臣 | [下载](https://url89.ctfile.com/f/31084289-1357053949-72e6cc?p=8866) |\n| 重审中国的“近代” | 孙江 | [下载](https://url89.ctfile.com/f/31084289-1357053655-c514d0?p=8866) |\n| 中国历代钱币 | 华东师大博物馆 | [下载](https://url89.ctfile.com/f/31084289-1357053706-4553fa?p=8866) |\n| 一书通识世界五千年历史悬案 | 仲英涛 | [下载](https://url89.ctfile.com/f/31084289-1357053085-b9a1ff?p=8866) |\n| 走：Green和张早故事集 | 司屠 | [下载](https://url89.ctfile.com/f/31084289-1357052647-06ffd0?p=8866) |\n| 中国纵横 | 史景迁 | [下载](https://url89.ctfile.com/f/31084289-1357052362-4807ce?p=8866) |\n| 2020：用数据看懂中国发展 | 谢伏瞻等 | [下载](https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866) |\n| 历史无间道 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866) |\n| 宫崎市定中国史 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357051033-abeffa?p=8866) |\n| 宫崎市定人物论 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866) |\n| 各朝各代那些事儿（套装30册） | 昊天牧云 | [下载](https://url89.ctfile.com/f/31084289-1357050676-782b7a?p=8866) |\n| 中国问题 | 伯特兰・罗素 | [下载](https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866) |\n| 二十五史简明读本（全15册） | 汪受宽 | [下载](https://url89.ctfile.com/f/31084289-1357050169-8543b7?p=8866) |\n| 一套书读懂中国经济下半场（套装共25册） | 陈元/钱颖一等 | [下载](https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866) |\n| 文化的江山·第一辑（全4册） | 刘刚/李冬君 | [下载](https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866) |\n| 陈舜臣说十八史略：中国历史极简本 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357048681-5bcfb9?p=8866) |\n| 宋词排行榜 | 王兆鹏/郁玉英/郭红欣 | [下载](https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866) |\n| 冷场 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1357048561-99f922?p=8866) |\n| 中国通史：从上古传说到1949 | 邓广铭/田余庆/戴逸 | [下载](https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866) |\n| 管子（全本全注全译） | 李山/轩新丽译注 | [下载](https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866) |\n| 离婚（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866) |\n| 那些忧伤的年轻人 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866) |\n| 大河深处 | 东来 | [下载](https://url89.ctfile.com/f/31084289-1357047136-68689e?p=8866) |\n| 媚骨之书 | 蒋蓝 | [下载](https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866) |\n| 倒退的帝国：朱元璋的成与败 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866) |\n| 开市大吉（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866) |\n| 我们的自信 | 陈曙光 | [下载](https://url89.ctfile.com/f/31084289-1357046188-7efacb?p=8866) |\n| 中国常识全集（套装共10册） | 吴晗等 | [下载](https://url89.ctfile.com/f/31084289-1357045489-a1fa67?p=8866) |\n| 历史的温度4 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866) |\n| 中国历朝通俗演义（全十一册） | 蔡东藩 | [下载](https://url89.ctfile.com/f/31084289-1357045354-75bb47?p=8866) |\n| 去海拉尔 | 王咸 | [下载](https://url89.ctfile.com/f/31084289-1357045237-1155f9?p=8866) |\n| 为什么中国人勤劳而不富有 | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866) |\n| 火枪与账簿 | 李伯重 | [下载](https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866) |\n| 中国精神读本 | 王蒙/王绍光 | [下载](https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866) |\n| 曾仕强中国式管理全集（套装书全23册） | 曾仕强 | [下载](https://url89.ctfile.com/f/31084289-1357045264-71c053?p=8866) |\n| 大汉荣耀：帝国建立与政权巩固 | 上医治国 | [下载](https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866) |\n| 大汉荣耀：王朝鼎盛与命运转折 | 上医治国 | [下载](https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866) |\n| 不安的生活 | 何力 | [下载](https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866) |\n| 昨天的中国 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866) |\n| 节日之书 | 余世存/老树 | [下载](https://url89.ctfile.com/f/31084289-1357044508-103e4d?p=8866) |\n| 给孩子的中国历史故事（作家榜经典文库） | 汤芸畦 | [下载](https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866) |\n| 从历史看组织 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357043785-33f6ec?p=8866) |\n| 江湖中国 | 于阳 | [下载](https://url89.ctfile.com/f/31084289-1357043692-f33615?p=8866) |\n| 草与禾 | 波音 | [下载](https://url89.ctfile.com/f/31084289-1357043632-3f8944?p=8866) |\n| 大美不言 | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866) |\n| 春秋战国真有趣（全6册） | 龙镇 | [下载](https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866) |\n| 不要害怕中国 | 菲利普・巴莱 | [下载](https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866) |\n| 购物凶猛 | 孙骁骥 | [下载](https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866) |\n| 简读中国史 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357042147-004132?p=8866) |\n| 五四运动史：现代中国的知识革命 | 周策纵 | [下载](https://url89.ctfile.com/f/31084289-1357041817-36939b?p=8866) |\n| 中国抗日战争史（四卷套装） | 张宪文/左用章 | [下载](https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866) |\n| 火星一号 | 朱个 | [下载](https://url89.ctfile.com/f/31084289-1357041376-a5c0bb?p=8866) |\n| 丹青手 | 周李立 | [下载](https://url89.ctfile.com/f/31084289-1357041214-971083?p=8866) |\n| 无麂岛之夜 | 池上 | [下载](https://url89.ctfile.com/f/31084289-1357040830-a8c559?p=8866) |\n| 感受中国（套装3本） | 李锦/任志刚/李新 | [下载](https://url89.ctfile.com/f/31084289-1357040905-1f77cd?p=8866) |\n| 常识与通识（纪念版） | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866) |\n| 中国经济2019 | 王德培 | [下载](https://url89.ctfile.com/f/31084289-1357040161-184485?p=8866) |\n| 中央帝国的军事密码 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357039258-40e6b4?p=8866) |\n| 梁冬说庄子（套装共九册） | 梁冬 | [下载](https://url89.ctfile.com/f/31084289-1357039057-19d5a8?p=8866) |\n| 太平广记钞（全4册） | 冯梦龙 | [下载](https://url89.ctfile.com/f/31084289-1357038181-7e9c85?p=8866) |\n| 文史哲入门三部曲 | 吕思勉/胡适/郑振铎 | [下载](https://url89.ctfile.com/f/31084289-1357037773-c7f7aa?p=8866) |\n| 国史论衡 | 邝士元 | [下载](https://url89.ctfile.com/f/31084289-1357035766-7facf5?p=8866) |\n| 忽必烈的挑战 | 杉山正明 | [下载](https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866) |\n| 大趋势 | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866) |\n| 中国1945 | 理查德・伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357034716-72269b?p=8866) |\n| 王朔文集（典藏版） | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866) |\n| 蜂巢 | 刘洋 | [下载](https://url89.ctfile.com/f/31084289-1357033603-f6beee?p=8866) |\n| 民国逸史（全2册） | 王习耕/梅振田 | [下载](https://url89.ctfile.com/f/31084289-1357033477-6c0e82?p=8866) |\n| 说中国 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866) |\n| 万古江河 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866) |\n| 中国文化的精神 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866) |\n| 太平杂说 | 潘旭澜 | [下载](https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866) |\n| 中国通史（五卷本） | 卜宪群 | [下载](https://url89.ctfile.com/f/31084289-1357033426-04b3cd?p=8866) |\n| 香山帮 | 朱宏梅 | [下载](https://url89.ctfile.com/f/31084289-1357033168-09c55f?p=8866) |\n| 中央帝国 | 乔治·N.赖特 | [下载](https://url89.ctfile.com/f/31084289-1357033150-8be846?p=8866) |\n| 中古中国门阀大族的消亡 | 谭凯 | [下载](https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866) |\n| 湖南人与现代中国 | 裴士锋 | [下载](https://url89.ctfile.com/f/31084289-1357032976-2e3783?p=8866) |\n| 镀金时代 | 夏清影 | [下载](https://url89.ctfile.com/f/31084289-1357032676-8550ac?p=8866) |\n| 中国哲学简史 | 冯友兰 | [下载](https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866) |\n| 一看就停不下来的中国史 | 最爱君 | [下载](https://url89.ctfile.com/f/31084289-1357032190-ca5444?p=8866) |\n| 中国经济史 | 钱穆/叶龙 | [下载](https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866) |\n| 寻路中国 | 彼得・海斯勒 | [下载](https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866) |\n| 深蓝的故事 | 深蓝 | [下载](https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866) |\n| 中国人的历史：诸神的踪迹 | 申赋渔 | [下载](https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866) |\n| 中国历史常识 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357030000-796999?p=8866) |\n| 华夏传统政治文明书系（全四册） | 马平安 | [下载](https://url89.ctfile.com/f/31084289-1357029841-addcd2?p=8866) |\n| 细讲中国历史丛书（套装共12册） | 李学勤/郭志坤 | [下载](https://url89.ctfile.com/f/31084289-1357030339-2eb1f4?p=8866) |\n| 中华史纲 | 李定一 | [下载](https://url89.ctfile.com/f/31084289-1357029643-40892a?p=8866) |\n| 我们太缺一门叫生命的学问 | 薛仁明 | [下载](https://url89.ctfile.com/f/31084289-1357029520-f3bc05?p=8866) |\n| 中国改革三部曲 | 吴敬琏 | [下载](https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866) |\n| 镖人6 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357029298-3e03c1?p=8866) |\n| 黑暗地母的礼物（下） | 残雪 | [下载](https://url89.ctfile.com/f/31084289-1357029073-348075?p=8866) |\n| 黑暗地母的礼物（上） | 残雪 | [下载](https://url89.ctfile.com/f/31084289-1357028494-c2546a?p=8866) |\n| 八〇年代 | 柳红 | [下载](https://url89.ctfile.com/f/31084289-1357027843-4ff995?p=8866) |\n| 历史学的境界 | 高华 | [下载](https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866) |\n| 历史的温度3 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357026157-634aa1?p=8866) |\n| 知中1·山水 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025278-3cb446?p=8866) |\n| 知中14·中国茶的基本 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866) |\n| 知中16·西南联大的遗产 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866) |\n| 无路可逃 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866) |\n| 朱明王朝 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866) |\n| 杨宽著作集第一辑（8种10册全） | 杨宽 | [下载](https://url89.ctfile.com/f/31084289-1357025140-fdbb62?p=8866) |\n| 博物馆里的极简中国史 | 张经纬 | [下载](https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866) |\n| 沧浪诗话 | 严羽 | [下载](https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866) |\n| 翅鬼 | 双雪涛 | [下载](https://url89.ctfile.com/f/31084289-1357024771-35d4c6?p=8866) |\n| 唐德刚作品集 | 唐德刚 | [下载](https://url89.ctfile.com/f/31084289-1357024786-a5d2dd?p=8866) |\n| 解读中国经济（增订版） | 林毅夫 | [下载](https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866) |\n| 镖人4 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357024066-18ec80?p=8866) |\n| 我只知道人是什么 | 余华 | [下载](https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866) |\n| 乡土中国、江村经济套装 | 费孝通 | [下载](https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866) |\n| 打工女孩 | 张彤禾 | [下载](https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866) |\n| 中国通史 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866) |\n| 中国社会各阶层分析 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357022956-0c4ce7?p=8866) |\n| 超频交易商 | 谢云宁 | [下载](https://url89.ctfile.com/f/31084289-1357022317-c95b84?p=8866) |\n| 青苔不会消失 | 袁凌 | [下载](https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866) |\n| 思享家丛书（套装共4册） | 周濂等 | [下载](https://url89.ctfile.com/f/31084289-1357021486-85c08f?p=8866) |\n| 《伦敦新闻画报》记录的民国1926-1949（套装4册） | 沈弘 | [下载](https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866) |\n| 法国《小日报》记录的晚清（1891-1911） | 李红利/赵丽莎 | [下载](https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866) |\n| 法国彩色画报记录的中国1850-1937（套装共2册） | 赵省伟/李小玉 | [下载](https://url89.ctfile.com/f/31084289-1357021246-0c8518?p=8866) |\n| 中国改革史系列（共三册） | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357020823-e86ce2?p=8866) |\n| 深度：惊心动魄三十年国运家事纪实 | 李锦  | [下载](https://url89.ctfile.com/f/31084289-1357020544-1aec28?p=8866) |\n| 半小时漫画中国史2 | 二混子 | [下载](https://url89.ctfile.com/f/31084289-1357020037-5762be?p=8866) |\n| 中国近百年政治史 | 李剑农 | [下载](https://url89.ctfile.com/f/31084289-1357019722-b2f37a?p=8866) |\n| 不换 | 蔡智恒 | [下载](https://url89.ctfile.com/f/31084289-1357019077-62b19a?p=8866) |\n| 伟大的中国工业革命 | 文一 | [下载](https://url89.ctfile.com/f/31084289-1357018393-aa4452?p=8866) |\n| 我认识了一个索马里海盗 | 邓安庆 | [下载](https://url89.ctfile.com/f/31084289-1357018387-8fbd0f?p=8866) |\n| 资治通鉴直解 | 张居正整理 | [下载](https://url89.ctfile.com/f/31084289-1357018210-d1a502?p=8866) |\n| 与中国打交道 | 亨利・鲍尔森 | [下载](https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866) |\n| 中国缺什么，日本缺什么 | 近藤大介 | [下载](https://url89.ctfile.com/f/31084289-1357017190-d077f5?p=8866) |\n| 马伯乐 | 萧红 | [下载](https://url89.ctfile.com/f/31084289-1357016926-0073c7?p=8866) |\n| 中国时代（全二册） | 师永刚 | [下载](https://url89.ctfile.com/f/31084289-1357016368-b309d0?p=8866) |\n| 未来镜像 | 刘慈欣/夏笳等 | [下载](https://url89.ctfile.com/f/31084289-1357016164-7dd1f6?p=8866) |\n| 天朝 洋奴 万邦协和 | 傅斯年 | [下载](https://url89.ctfile.com/f/31084289-1357016029-7caad2?p=8866) |\n| 中国原生文明启示录 | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866) |\n| 中国兵史 | 雷海宗 | [下载](https://url89.ctfile.com/f/31084289-1357015135-b850e8?p=8866) |\n| 蒋勋说文学之美（全5册修订版） | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357015126-9255a6?p=8866) |\n| 字看我一生 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866) |\n| 呼兰河传（1940年初刊还原版） | 萧红 | [下载](https://url89.ctfile.com/f/31084289-1357014454-6db54f?p=8866) |\n| 一口气读完中国战史 | 顾晓绿 | [下载](https://url89.ctfile.com/f/31084289-1357014607-058cae?p=8866) |\n| 广州贸易 | 范岱克 | [下载](https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866) |\n| 中国历代王朝系列全集（全28册） | 王新龙 | [下载](https://url89.ctfile.com/f/31084289-1357012909-fac22e?p=8866) |\n| 中信经典历史之中国史篇（共5册） | 杨早/马勇等 | [下载](https://url89.ctfile.com/f/31084289-1357012885-c4bcf4?p=8866) |\n| 吾国教育病理 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866) |\n| 吕思勉经典作品合集（全14册） | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357012045-6418c3?p=8866) |\n| 中国文化简史（套装共4册） | 王立 | [下载](https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866) |\n| 中国历史风云录 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357010971-27004c?p=8866) |\n| 图说天下：话说中国历史系列（全10册） | 龚书铎/刘德麟 | [下载](https://url89.ctfile.com/f/31084289-1357011025-25ef8d?p=8866) |\n| 中国现代史 | 徐中约 | [下载](https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866) |\n| 讲谈社·中国的历史（全十卷） | 宫本一夫/平势隆郎等 | [下载](https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866) |\n| 近代中国社会的新陈代谢（插图本） | 陈旭麓 | [下载](https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866) |\n| 别笑，这是另一半中国史 | 杨建 | [下载](https://url89.ctfile.com/f/31084289-1357009540-88c0a5?p=8866) |\n| 看得见的中国史（套装共14册） | 童超 | [下载](https://url89.ctfile.com/f/31084289-1357009903-8e6424?p=8866) |\n| 变革中国：市场经济的中国之路 | 罗纳德・哈里・科斯 | [下载](https://url89.ctfile.com/f/31084289-1357009333-847c6a?p=8866) |\n| 世界是红的：看懂中国经济格局的一本书 | 白云先生 | [下载](https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866) |\n| 日落九世纪：大唐帝国的衰亡 | 赵益 | [下载](https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866) |\n| 帝国强军：中国八大古战精锐 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866) |\n| 论中国 | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866) |\n| 经与史：华夏世界的历史建构 | 刘仲敬 | [下载](https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866) |\n| 大国速度 | 高铁见闻 | [下载](https://url89.ctfile.com/f/31084289-1357008568-459c27?p=8866) |\n| 荒野寒山 | 何善蒙 | [下载](https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866) |\n| 2052：未来四十年的中国与世界 | 乔根・兰德斯 | [下载](https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866) |\n| 苏联专家在中国（1948-1960） | 沈志华 | [下载](https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866) |\n| 棋王 | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357007548-c1b611?p=8866) |\n| 一地鸡毛 | 刘震云 | [下载](https://url89.ctfile.com/f/31084289-1357007380-c504ff?p=8866) |\n| 年轮 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357007125-fc1448?p=8866) |\n| 大中国史（全新校订超值珍藏版） | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866) |\n| 拿什么拯救中国经济？ | 叶檀 | [下载](https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866) |\n| 极简中国史 | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357006189-1d7a39?p=8866) |\n| 最后的大队 | 野岛刚 | [下载](https://url89.ctfile.com/f/31084289-1357005955-4e31ac?p=8866) |\n| 张鸣说历史：大国的虚与实 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005817-deb0b2?p=8866) |\n| 中国大历史 | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357004833-543fef?p=8866) |\n| 中国神话大词典 | 袁珂 | [下载](https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866) |\n| 细说中国历史丛书（全十册） | 黎东方等 | [下载](https://url89.ctfile.com/f/31084289-1357004698-777405?p=8866) |\n| 这个历史挺靠谱（全三册） | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357004674-6ba91b?p=8866) |\n"
  },
  {
    "path": "md/中国史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 中国史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中华经典普及文库（精选共15种20册） | 中华书局编辑部 | [下载](https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866) |\n| 唐史并不如烟系列（共6册） | 曲昌春 | [下载](https://url89.ctfile.com/f/31084289-1357032079-38cfae?p=8866) |\n| 清案探秘（全三册） | 唐博 | [下载](https://url89.ctfile.com/f/31084289-1357029499-d5c447?p=8866) |\n"
  },
  {
    "path": "md/丹道.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 丹道\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 周易参同契（全本全注全译） | 章偉文 | [下载](https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866) |\n"
  },
  {
    "path": "md/丹麦.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 丹麦\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 安徒生自传 | 安徒生 | [下载](https://url89.ctfile.com/f/31084289-1357042621-63bfda?p=8866) |\n| 丹麦女孩 | 大卫・埃贝尔舍夫 | [下载](https://url89.ctfile.com/f/31084289-1357019593-1352dc?p=8866) |\n| 丹麦人为什么幸福 | 迈克・维金 | [下载](https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866) |\n| 安徒生童话 | 安徒生 | [下载](https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866) |\n"
  },
  {
    "path": "md/乔布斯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 乔布斯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 小人物：我和父亲乔布斯 | 丽莎・布伦南・乔布斯 | [下载](https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866) |\n| 活着就为改变世界：乔布斯纪念套装四册 | 杰弗里・扬/威廉・西蒙/艾伦・多伊奇曼/卡迈恩・加洛 | [下载](https://url89.ctfile.com/f/31084289-1357008478-595baa?p=8866) |\n| 幻觉师 | 悲伤感应 | [下载](https://url89.ctfile.com/f/31084289-1357006555-2ab14e?p=8866) |\n| 史蒂夫·乔布斯传 | 沃尔特·艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866) |\n"
  },
  {
    "path": "md/习惯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 习惯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 福格行为模型 | B.J.福格 | [下载](https://url89.ctfile.com/f/31084289-1375499539-38be34?p=8866) |\n| 如何戒掉坏习惯 | 古川武士 | [下载](https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866) |\n| 坚持，一种可以养成的习惯 | 古川武士 | [下载](https://url89.ctfile.com/f/31084289-1357003810-be7b78?p=8866) |\n| 出众，从改变习惯开始 | 马克・列克劳 | [下载](https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866) |\n| 精彩人生的一分钟小习惯 | 冲幸子 | [下载](https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866) |\n| 掌控习惯 | 詹姆斯・克利尔 | [下载](https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866) |\n| 高效能人士的第八个习惯 | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866) |\n| 习惯的力量（图文精编版） | 查尔斯・都希格 | [下载](https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866) |\n| 极简主义：活出生命真意 | 乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯  | [下载](https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866) |\n"
  },
  {
    "path": "md/乡村.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 乡村\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 乡土中国、江村经济套装 | 费孝通 | [下载](https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866) |\n| 望春风 | 格非 | [下载](https://url89.ctfile.com/f/31084289-1357008655-3a2be5?p=8866) |\n"
  },
  {
    "path": "md/书信.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 书信\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 尺素风雅：近世文人书札 | 管继平 | [下载](https://url89.ctfile.com/f/31084289-1356997939-7912c7?p=8866) |\n| 以赛亚·伯林书信集（卷2） | 以赛亚・伯林爵士 | [下载](https://url89.ctfile.com/f/31084289-1356990103-846409?p=8866) |\n| 以赛亚·伯林书信集（卷1） | 以赛亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866) |\n| 奈保尔家书 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866) |\n| 爱你就像爱生命 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866) |\n| 美国家书 | 本杰明・富兰克林等 | [下载](https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866) |\n| 见字如面 | 关正文 | [下载](https://url89.ctfile.com/f/31084289-1357013293-3fec78?p=8866) |\n"
  },
  {
    "path": "md/书单.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 书单\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一生的读书计划 | 克里夫顿・费迪曼/约翰・S・梅杰 | [下载](https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866) |\n"
  },
  {
    "path": "md/书法.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 书法\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 条条大路通书法 | 寇克让 | [下载](https://url89.ctfile.com/f/31084289-1356987247-df4df8?p=8866) |\n| 永字八法 | 周汝昌 | [下载](https://url89.ctfile.com/f/31084289-1357053631-407cc1?p=8866) |\n"
  },
  {
    "path": "md/买房.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 买房\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 买房可以很简单 | 子安 | [下载](https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866) |\n| 家的书 | 考薇 | [下载](https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866) |\n"
  },
  {
    "path": "md/二战.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 二战\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 她来自马里乌波尔 | 娜塔莎・沃丁 | [下载](https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866) |\n| 纳粹猎人 | 安德鲁・纳戈尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1375499107-ffa76f?p=8866) |\n| 被隔绝的女孩 | 巴尔特・范埃斯 | [下载](https://url89.ctfile.com/f/31084289-1375501051-01d0ce?p=8866) |\n| 日本1941：导向深渊的决策 | 堀田江理 | [下载](https://url89.ctfile.com/f/31084289-1375502557-d83fcc?p=8866) |\n| 反败为胜 | 威廉・斯利姆 | [下载](https://url89.ctfile.com/f/31084289-1375510168-994493?p=8866) |\n| 二战东线全史（套装全13卷） | 朱世巍 | [下载](https://url89.ctfile.com/f/31084289-1375513234-e38f4b?p=8866) |\n| 灰猎犬号 | C.S.佛瑞斯特 | [下载](https://url89.ctfile.com/f/31084289-1357003174-b32007?p=8866) |\n| 燃烧的大洋 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866) |\n| 征服的怒潮 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357000099-60af65?p=8866) |\n| 第三帝国史 | 郑寅达/陈旸 | [下载](https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866) |\n| 战时的第三帝国 | 理查德·J. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1356998593-2b2916?p=8866) |\n| 盟友 | 琳恩・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866) |\n| 第二次世界大战：黑暗的年代 | 诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1356995848-9bb1c2?p=8866) |\n| 奥斯维辛的文身师 | 希瑟・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356991558-daf390?p=8866) |\n| 第三帝国的兴亡（增订版） | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866) |\n| 当权的第三帝国 | 理查德·J. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866) |\n| 第三帝国的到来 | 理查德·J. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866) |\n| 二战解放三部曲系列（套装共6册） | 里克・阿特金森 | [下载](https://url89.ctfile.com/f/31084289-1356986572-e0e277?p=8866) |\n| 隐身大师 | 萨拉・卡明斯基 | [下载](https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866) |\n| 空军飞行员（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866) |\n| 失去名字的女孩 | 玛莎・霍尔・凯莉 | [下载](https://url89.ctfile.com/f/31084289-1356984901-789579?p=8866) |\n| 善心女神 | 乔纳森・利特尔 | [下载](https://url89.ctfile.com/f/31084289-1356984781-170459?p=8866) |\n| 重逢 | 弗雷德・乌尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866) |\n| 进攻日本 | 雷蒙德・戴维斯/丹・温 | [下载](https://url89.ctfile.com/f/31084289-1357051780-7e58b0?p=8866) |\n| 战争时期日本精神史 | 鹤见俊辅 | [下载](https://url89.ctfile.com/f/31084289-1357049854-91db68?p=8866) |\n| 蜜蜂之死 | 汉妮・明策尔 | [下载](https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866) |\n| 历史与记忆中的第三帝国 | 理查德・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866) |\n| 来自纳粹地狱的报告 | 米克洛斯・尼斯利 | [下载](https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866) |\n| 命运攸关的抉择 | 伊恩・克肖 | [下载](https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866) |\n| 日本人为何选择了战争 | 加藤阳子 | [下载](https://url89.ctfile.com/f/31084289-1357043608-500337?p=8866) |\n| 中途岛奇迹 | 戈登・普兰奇等 | [下载](https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866) |\n| 二战史诗三部曲（珍藏版） | 科尼利厄斯・瑞恩 | [下载](https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866) |\n| 开往伊斯坦布尔的最后列车 | 艾雪・库林 | [下载](https://url89.ctfile.com/f/31084289-1357043023-4cbbe6?p=8866) |\n| 被涂污的鸟 | 耶日・科辛斯基 | [下载](https://url89.ctfile.com/f/31084289-1357041022-bb6b72?p=8866) |\n| 轰炸东京 | 詹姆斯·M.斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357039969-7b615d?p=8866) |\n| 隆美尔战时文件 | 李德・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866) |\n| 闪击英雄 | 海因茨・威廉・古德里安 | [下载](https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866) |\n| 史迪威与美国在中国的经验（1911-1945） | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866) |\n| 1944阿登战役 | 安东尼・比弗 | [下载](https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866) |\n| 帝国骑士（第4卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866) |\n| 巴黎烧了吗？ | 拉莱・科林斯 | [下载](https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866) |\n| 帝国骑士（第1卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866) |\n| 帝国骑士（第2卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866) |\n| 帝国骑士（第3卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866) |\n| 野蛮大陆 | 基思・罗威 | [下载](https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866) |\n| 天生幸存者 | 温迪・霍尔登 | [下载](https://url89.ctfile.com/f/31084289-1357033942-f423d9?p=8866) |\n| 希特勒的试毒者 | 罗塞拉・波斯托里诺 | [下载](https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866) |\n| 二战爆发前十天 | 理查德・奥弗里 | [下载](https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866) |\n| 第二次世界大战在亚洲及太平洋的起源 | 入江昭 | [下载](https://url89.ctfile.com/f/31084289-1357032592-58ba06?p=8866) |\n| 飞行战犬 | 达米恩・路易斯 | [下载](https://url89.ctfile.com/f/31084289-1357031125-c70223?p=8866) |\n| 权力与文化 | 入江昭 | [下载](https://url89.ctfile.com/f/31084289-1357031056-457560?p=8866) |\n| 里斯本之夜 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357030501-6ecfa7?p=8866) |\n| 二战风云：史上最大规模战争的伤痛（全3册） | 杨少丹 | [下载](https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866) |\n| 太平洋战争系列 | 青梅煮酒 | [下载](https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866) |\n| 无情之战 | 约翰·W.道尔 | [下载](https://url89.ctfile.com/f/31084289-1357029877-ef77af?p=8866) |\n| 莎拉的钥匙 | 塔季雅娜・德・罗斯奈 | [下载](https://url89.ctfile.com/f/31084289-1357029079-199577?p=8866) |\n| 兄弟连（译林纪念版） | 斯蒂芬•E．安布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866) |\n| 当图书进入战争 | 莫里・古皮提尔・曼宁 | [下载](https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866) |\n| 猩红色的天空下 | 马克・苏利文 | [下载](https://url89.ctfile.com/f/31084289-1357026145-807343?p=8866) |\n| 二战中的巴黎 | 提拉・马奇奥 | [下载](https://url89.ctfile.com/f/31084289-1357025701-0b1776?p=8866) |\n| 纳粹德国 | 克劳斯・P.费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866) |\n| 纳粹医生 | 罗伯特・杰伊・利夫顿 | [下载](https://url89.ctfile.com/f/31084289-1357025107-90ecdb?p=8866) |\n| 极简二战史 | 奈杰尔・考索恩 | [下载](https://url89.ctfile.com/f/31084289-1357023217-136ca3?p=8866) |\n| 雅尔塔：改变世界格局的八天 | 沙希利・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1357022569-a065df?p=8866) |\n| 邻人 | 杨·T.格罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357022545-465fc9?p=8866) |\n| 这里的黎明静悄悄…… | 鲍・瓦西里耶夫 | [下载](https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866) |\n| 德国人的战争 | 尼古拉斯・斯塔加特 | [下载](https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866) |\n| 教宗与墨索里尼 | 大卫·I.科泽 | [下载](https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866) |\n| 赎罪 | 伊恩・麦克尤恩 | [下载](https://url89.ctfile.com/f/31084289-1357021276-1a6b77?p=8866) |\n| 五个人的战争 | 马克・哈里斯 | [下载](https://url89.ctfile.com/f/31084289-1357020868-e951f3?p=8866) |\n| 莫斯科战役1941 | 尼克拉斯・泽特林 | [下载](https://url89.ctfile.com/f/31084289-1357019668-09e230?p=8866) |\n| 审问欧洲：二战时期的合作、抵抗与报复 | 伊斯特万・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866) |\n| 活着回来的男人 | 小熊英二 | [下载](https://url89.ctfile.com/f/31084289-1357018474-680890?p=8866) |\n| The Book Thief | Markus Zusak | [下载](https://url89.ctfile.com/f/31084289-1357017181-5f6d27?p=8866) |\n| 艾希曼在耶路撒冷 | 汉娜・阿伦特 | [下载](https://url89.ctfile.com/f/31084289-1357015621-ee315c?p=8866) |\n| 浩瀚大洋是赌场（全3册） | 俞天任 | [下载](https://url89.ctfile.com/f/31084289-1357015387-cec59e?p=8866) |\n| 第二次世界大战纵横录（套装二十四册） | 胡元斌  | [下载](https://url89.ctfile.com/f/31084289-1357015495-8bfeee?p=8866) |\n| 深入北方的小路 | 理查德・弗兰纳根 | [下载](https://url89.ctfile.com/f/31084289-1357013632-920634?p=8866) |\n| 战后日本史 | 王新生 | [下载](https://url89.ctfile.com/f/31084289-1357013008-9417f2?p=8866) |\n| 生而有罪 | 彼得・西施罗夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357012927-e5aba8?p=8866) |\n| 山顶上的男孩 | 约翰・伯恩 | [下载](https://url89.ctfile.com/f/31084289-1357012744-79efb3?p=8866) |\n| 集中营的舞者 | 保罗・格拉泽 | [下载](https://url89.ctfile.com/f/31084289-1357012684-e07dca?p=8866) |\n| 查无此人 | 凯瑟琳・克莱斯曼・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357012564-30c377?p=8866) |\n| 被淹没和被拯救的 | 普里莫・莱维  | [下载](https://url89.ctfile.com/f/31084289-1357012249-55fbc8?p=8866) |\n| 远去的胜利 | 威廉・理查德森/西摩・弗雷德林  | [下载](https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866) |\n| 穿条纹衣服的男孩 | 约翰・伯恩 | [下载](https://url89.ctfile.com/f/31084289-1357011964-f9985f?p=8866) |\n| All the Light We Cannot See | Anthony Doerr | [下载](https://url89.ctfile.com/f/31084289-1357011754-cffc1b?p=8866) |\n| 梵蒂冈的乱世抉择（1922-1945） | 段琦 | [下载](https://url89.ctfile.com/f/31084289-1357010149-afb62f?p=8866) |\n| 时刻关注：二战经典战役纪实（套装共10册） | 二战经典战役编委会 | [下载](https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866) |\n| 我是女兵，也是女人 | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866) |\n| 第三帝国的最后十四天 | 约阿希姆·・费斯特 | [下载](https://url89.ctfile.com/f/31084289-1357009762-976759?p=8866) |\n| 奥斯维辛 | 劳伦斯・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357009495-02ded5?p=8866) |\n| 零年：1945 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866) |\n| 燃烧的岛群 | 宋宜昌 | [下载](https://url89.ctfile.com/f/31084289-1357009099-e8b13b?p=8866) |\n| 南京大屠杀 | 张纯如 | [下载](https://url89.ctfile.com/f/31084289-1357008697-eb4356?p=8866) |\n| 第三帝国的兴亡（全三册） | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866) |\n| 风暴岛 | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357007962-abffe2?p=8866) |\n| 二战史诗三部曲 | 科尼利厄斯・瑞恩 | [下载](https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866) |\n| 希特勒传：跃升年代 | 福尔克尔・乌尔里希 | [下载](https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866) |\n| 呐喊-大屠杀回忆录 | 曼尼・斯坦伯格 | [下载](https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866) |\n| 飞虎队在桂林 | 赵平/韦芳/蒋桂英/苏晖  | [下载](https://url89.ctfile.com/f/31084289-1357007470-7a5427?p=8866) |\n| 血战太平洋（HBO官方完整版） | 休·安布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866) |\n| 罪孽的报应 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866) |\n| 驼峰航线 | 刘小童 | [下载](https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866) |\n| 二战秘密档案 | 鲍里斯・瓦季莫维奇・索科洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866) |\n| 有一类战犯叫参谋 | 俞天任 | [下载](https://url89.ctfile.com/f/31084289-1357006147-fac58d?p=8866) |\n| 看得见的二战史（上下卷） | 肖石忠 | [下载](https://url89.ctfile.com/f/31084289-1357006273-4b1128?p=8866) |\n| 恶魔的饱食：日本731细菌战部队揭秘 | 森村诚一 | [下载](https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866) |\n| 地狱绝杀：当关东军遇上苏联红军 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005877-d8ae7b?p=8866) |\n| 山的那一边 | 李德・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866) |\n| 第二次世界大战回忆录（全六卷） | 温斯顿·丘吉尔 | [下载](https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866) |\n| 解读希特勒 | 塞巴斯蒂安·哈夫纳 | [下载](https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866) |\n| 一寸河山一寸血（套装全五册） | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866) |\n| 战争就是这么回事儿（全三册） | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866) |\n| 无路可退的战士 | 杰克·希金斯 | [下载](https://url89.ctfile.com/f/31084289-1357004932-962a95?p=8866) |\n| 德国式英雄 | 杰克·希金斯 | [下载](https://url89.ctfile.com/f/31084289-1357004926-351dc3?p=8866) |\n| 中国之翼 | 格雷戈里・克劳奇 | [下载](https://url89.ctfile.com/f/31084289-1357004914-6aa3a6?p=8866) |\n| 战争从未如此热血：二战美日太平洋大对决（全四册） | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866) |\n"
  },
  {
    "path": "md/二战史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 二战史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 德意志公敌 | 杰弗里・赫夫 | [下载](https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866) |\n| 1945：大国博弈下的世界秩序新格局 | 迈克・内伯格 | [下载](https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866) |\n"
  },
  {
    "path": "md/互联网.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 互联网\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 网上遗产 | 伊莱恩・卡斯凯特 | [下载](https://url89.ctfile.com/f/31084289-1375493404-9f5bf0?p=8866) |\n| 未来呼啸而来 | 彼得・戴曼迪斯 | [下载](https://url89.ctfile.com/f/31084289-1375496473-11e887?p=8866) |\n| 生生不息 | 范海涛 | [下载](https://url89.ctfile.com/f/31084289-1375497664-326a21?p=8866) |\n| 沸腾新十年：移动互联网丛林里的勇敢穿越者（套装共2册） | 林军/胡喆 | [下载](https://url89.ctfile.com/f/31084289-1375497964-c980d4?p=8866) |\n| 元宇宙通证 | 邢杰等 | [下载](https://url89.ctfile.com/f/31084289-1375499134-ab1e5c?p=8866) |\n| 元宇宙 | 赵国栋/易欢欢/徐远重 | [下载](https://url89.ctfile.com/f/31084289-1375500148-0863f3?p=8866) |\n| 互联网口述历史第1辑（全8册） | 方兴东 | [下载](https://url89.ctfile.com/f/31084289-1375503886-a36268?p=8866) |\n| 开挂扩张 | 卢诗翰 | [下载](https://url89.ctfile.com/f/31084289-1375511560-66cc54?p=8866) |\n| 解密Instagram | 莎拉・弗莱尔 | [下载](https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866) |\n| 复盘网飞 | 马克・伦道夫 | [下载](https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866) |\n| 没有思想的世界 | 富兰克林・福尔 | [下载](https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866) |\n| 被看见的力量 | 快手研究院 | [下载](https://url89.ctfile.com/f/31084289-1357001092-9126ac?p=8866) |\n| 裂变增长 | 施襄/杨嘉伟 | [下载](https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866) |\n| 捍卫隐私 | 凯文・米特尼克/罗伯特・瓦摩西 | [下载](https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866) |\n| 崛起的超级智能 | 刘锋 | [下载](https://url89.ctfile.com/f/31084289-1356995242-8be920?p=8866) |\n| 后谷歌时代 | 乔治・吉尔德 | [下载](https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866) |\n| 工业互联网浪潮 | 张学军/王保平 | [下载](https://url89.ctfile.com/f/31084289-1356993973-efa42c?p=8866) |\n| 区块链在中国 | 刘兴亮 | [下载](https://url89.ctfile.com/f/31084289-1356992362-ce1ea4?p=8866) |\n| 数据资本时代 | Viktor Mayer-Schnberger | [下载](https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866) |\n| 优步：算法重新定义工作 | 亚力克斯・罗森布拉特 | [下载](https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866) |\n| 互联网四大 | 斯科特・加洛韦 | [下载](https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866) |\n| 用户画像 | 赵宏田 | [下载](https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866) |\n| 治愈未来 | 安德鲁・基恩 | [下载](https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866) |\n| 瑞幸闪电战 | 沈帅波 | [下载](https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866) |\n| 拉新 | 加布里埃尔・温伯格/贾斯汀・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866) |\n| 俞军产品方法论 | 俞军 | [下载](https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866) |\n| 硅谷简史 | 钱纲 | [下载](https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866) |\n| 解密腾讯帝国（全6册） | 吴晓波等 | [下载](https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866) |\n| 破绽：风口上的独角兽 | 陈歆磊 | [下载](https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866) |\n| 滑动解锁 | 尼尔・梅塔等 | [下载](https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866) |\n| 奔腾年代：互联网与中国：1995-2018 | 郭万盛 | [下载](https://url89.ctfile.com/f/31084289-1357040287-28d2ae?p=8866) |\n| 谷歌方法 | 比尔・基尔迪 | [下载](https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866) |\n| Design Systems | Alla Kholmatova | [下载](https://url89.ctfile.com/f/31084289-1357031929-0301f2?p=8866) |\n| 爱彼迎传 | 利・加拉格尔 | [下载](https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866) |\n| 颠覆式成长 | 惠特尼・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866) |\n| 首席增长官 | 张溪梦 | [下载](https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866) |\n| 时空内爆 | 常政 | [下载](https://url89.ctfile.com/f/31084289-1357030543-02217e?p=8866) |\n| 用户的本质 | 史蒂文・范・贝莱格姆 | [下载](https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866) |\n| 智能商业 | 曾鸣 | [下载](https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866) |\n| 大思维：集体智慧如何改变我们的世界 | 周若刚 | [下载](https://url89.ctfile.com/f/31084289-1357029070-010cf1?p=8866) |\n| 女孩老板 | 索菲亚・阿莫鲁索 | [下载](https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866) |\n| 揭秘跨境电商 | 李鹏博 | [下载](https://url89.ctfile.com/f/31084289-1357028146-739f5b?p=8866) |\n| 爆发 | 艾伯特-拉斯洛・巴拉巴西 | [下载](https://url89.ctfile.com/f/31084289-1357027993-9ab187?p=8866) |\n| 数字战争 | 查尔斯・亚瑟 | [下载](https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866) |\n| 走近2050 | 集智俱乐部 | [下载](https://url89.ctfile.com/f/31084289-1357026955-cae786?p=8866) |\n| 知识的边界 | 戴维・温伯格 | [下载](https://url89.ctfile.com/f/31084289-1357026913-097907?p=8866) |\n| 人类思维如何与互联网共同进化 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866) |\n| 新媒体营销概论 | 秋叶 | [下载](https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866) |\n| 精益设计（第2版） | Jeff Gothelf | [下载](https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866) |\n| 重新定义公司 | 埃里克・施密特 | [下载](https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866) |\n| 内容算法 | 闫泽华 | [下载](https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866) |\n| 算法的陷阱 | 阿里尔・扎拉奇 | [下载](https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866) |\n| 病毒循环 | 亚当・潘恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866) |\n| 刷脸背后 | 张重生 | [下载](https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866) |\n| 刷屏 | 凯文・阿洛卡 | [下载](https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866) |\n| 超级连接者 | 伊桑・祖克曼 | [下载](https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866) |\n| 极致产品 | 周鸿祎 | [下载](https://url89.ctfile.com/f/31084289-1357022053-f29ab7?p=8866) |\n| 众媒时代 | 腾讯传媒研究 | [下载](https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866) |\n| 跨境电商宝典（套装共2册） | 孙韬/老魏 | [下载](https://url89.ctfile.com/f/31084289-1357021741-39f857?p=8866) |\n| 资源革命 | 斯蒂芬・赫克等 | [下载](https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866) |\n| 硅谷百年史 | 阿伦・拉奥/皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866) |\n| 形式感+ | 晋小彦 | [下载](https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866) |\n| 重来2：更为简单高效的远程工作方式 | 贾森・弗里德/戴维・海涅迈尔・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866) |\n| 新媒体营销圣经 | 加里・维纳查克 | [下载](https://url89.ctfile.com/f/31084289-1357020331-3d803b?p=8866) |\n| 认知盈余：自由时间的力量 | 克莱・舍基 | [下载](https://url89.ctfile.com/f/31084289-1357020253-b77fad?p=8866) |\n| 一网打尽：贝佐斯与亚马逊时代 | 布拉德・斯通 | [下载](https://url89.ctfile.com/f/31084289-1357019773-9e4c6d?p=8866) |\n| 运营本源 | 金璞/张仲荣 | [下载](https://url89.ctfile.com/f/31084289-1357019602-d84d7d?p=8866) |\n| 创业维艰 | 本・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866) |\n| 流量池 | 杨飞 | [下载](https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866) |\n| 热点：引爆内容营销的6个密码 | 马克・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357019395-c60176?p=8866) |\n| The Lean Startup | Eric Ries | [下载](https://url89.ctfile.com/f/31084289-1357019344-110690?p=8866) |\n| Kubernetes实战（套装共2册） | 吴龙辉等 | [下载](https://url89.ctfile.com/f/31084289-1357019200-6c0097?p=8866) |\n| 计算广告 | 刘鹏/王超 | [下载](https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866) |\n| 这就是搜索引擎 | 张俊林 | [下载](https://url89.ctfile.com/f/31084289-1357019083-618f1a?p=8866) |\n| 全栈市场人 | Lydia | [下载](https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866) |\n| 一键下单：杰夫·贝佐斯与亚马逊的崛起 | 理查德・勃兰特 | [下载](https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866) |\n| 阿里巴巴正传 | 方兴东/刘伟  | [下载](https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866) |\n| 蚂蚁金服：从支付宝到新金融生态圈 | 廉薇等 | [下载](https://url89.ctfile.com/f/31084289-1357017802-c45526?p=8866) |\n| 参与感 | 黎万强 | [下载](https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866) |\n| 互联网下半场 | 李光斗 | [下载](https://url89.ctfile.com/f/31084289-1357017361-0a5786?p=8866) |\n| 图说区块链 | 徐明星/田颖/李霁月 | [下载](https://url89.ctfile.com/f/31084289-1357017304-a06e53?p=8866) |\n| 增长黑客：如何低成本实现爆发式成长 | Sean Ellis | [下载](https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866) |\n| 社交的本质 | 兰迪・扎克伯格 | [下载](https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866) |\n| 尽在双11：阿里巴巴技术演进与超越 | 阿里巴巴双11技术团队 | [下载](https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866) |\n| 科技的狂欢 | 安德鲁・基恩 | [下载](https://url89.ctfile.com/f/31084289-1357016656-d1cdf6?p=8866) |\n| 小群效应 | 徐志斌 | [下载](https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866) |\n| 你凭什么做好互联网 | 曹政 | [下载](https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866) |\n| 引爆用户增长 | 黄天文 | [下载](https://url89.ctfile.com/f/31084289-1357016125-7b3129?p=8866) |\n| 用数据讲故事 | Cole Nussbaumer Knaflic | [下载](https://url89.ctfile.com/f/31084289-1357016071-ab97a7?p=8866) |\n| 解码区块链（套装共6册） | 田颖等  | [下载](https://url89.ctfile.com/f/31084289-1357015585-81fda1?p=8866) |\n| 尖叫感 | 马楠 | [下载](https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866) |\n| 产品经理修炼之道 | 费杰 | [下载](https://url89.ctfile.com/f/31084289-1357014895-353831?p=8866) |\n| 从点子到产品 | 刘飞 | [下载](https://url89.ctfile.com/f/31084289-1357014775-780161?p=8866) |\n| 运营之光 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866) |\n| 运营之光2.0 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866) |\n| 结网@改变世界的互联网产品经理（修订版） | 王坚 | [下载](https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866) |\n| 浪潮之巅 | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866) |\n| 终极算法 | 佩德罗・多明戈斯 | [下载](https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866) |\n| 智能革命 | 李彦宏 | [下载](https://url89.ctfile.com/f/31084289-1357012960-18d4fa?p=8866) |\n| 降维攻击：未来互联网商业的三体法则 | 高德 | [下载](https://url89.ctfile.com/f/31084289-1357012711-3075ba?p=8866) |\n| 玻璃笼子 | 尼古拉斯・卡尔  | [下载](https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866) |\n| 图解HTTP | 上野宣 | [下载](https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866) |\n| 微创新 | 德鲁・博迪/雅各布・戈登堡 | [下载](https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866) |\n| 黑客与画家 | 保罗・格雷厄姆 | [下载](https://url89.ctfile.com/f/31084289-1357012513-5443cb?p=8866) |\n| 未来的组织：企业持续成长的智慧 | 章永宏/罗旭 | [下载](https://url89.ctfile.com/f/31084289-1357012483-15e595?p=8866) |\n| 这里改变世界：硅谷成功创新之谜 | 黛博拉・佩里・皮肖内 | [下载](https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866) |\n| 与机器赛跑 | 埃里克・布林约尔松 | [下载](https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866) |\n| 科技之巅2 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866) |\n| 人类2.0：在硅谷探索科技未来 | 皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866) |\n| 用户力：需求驱动的产品、运营和商业模式 | 郝志中 | [下载](https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866) |\n| 大数据时代 | 维克托・迈尔・舍恩伯格  | [下载](https://url89.ctfile.com/f/31084289-1357010281-c20367?p=8866) |\n| 从零开始做运营进阶篇 | 张亮 | [下载](https://url89.ctfile.com/f/31084289-1357010224-4cbecb?p=8866) |\n| 互联网思维独孤九剑 | 赵大伟 | [下载](https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866) |\n| 上瘾 | 尼尔・埃亚尔/瑞安・胡佛 | [下载](https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866) |\n| 超级IP：互联网新物种方法论 | 吴声 | [下载](https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866) |\n| 从零开始做运营入门篇 | 张亮 | [下载](https://url89.ctfile.com/f/31084289-1357009843-bcf808?p=8866) |\n| 痛点：挖掘小数据满足用户需求 | 马丁・林斯特龙 | [下载](https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866) |\n| 十亿美金的教训 | 林军 | [下载](https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866) |\n| 蚂蚁金服 | 由曦 | [下载](https://url89.ctfile.com/f/31084289-1357008874-46e181?p=8866) |\n| 区块链 | 长铗/韩锋等 | [下载](https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866) |\n| 风口上的猪：一本书看懂互联网金融 | 肖璟 | [下载](https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866) |\n| 必然 | 凯文・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866) |\n| 腾讯传1998-2016 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866) |\n| 阿里传：这是阿里巴巴的世界 | 波特・埃里斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866) |\n| 精益创业实战（第2版） | Ash Maurya | [下载](https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866) |\n| 跨越鸿沟：颠覆性产品营销圣经 | 杰弗里・摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866) |\n| 郎咸平说：新经济颠覆了什么 | 郎咸平 | [下载](https://url89.ctfile.com/f/31084289-1357007194-87eec7?p=8866) |\n| 信息简史 | 詹姆斯·格雷克  | [下载](https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866) |\n| 疯传：让你的产品、思想、行为像病毒一样入侵 | 乔纳・伯杰 | [下载](https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866) |\n| 精益创业 : 新创企业的成长思维 | 埃里克・莱斯  | [下载](https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866) |\n| 平台战略 | 陈威如/余卓轩  | [下载](https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866) |\n| 互联网思维：商业颠覆与重构 | 陈光锋 | [下载](https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866) |\n| 创业时，我们在知乎聊什么？ | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866) |\n| 周鸿祎自述：我的互联网方法论 | 周鸿祎 | [下载](https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866) |\n| 互联网新商业时代（套装共三册） | 克里斯・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866) |\n| 小米内幕 | 吴帝聪 | [下载](https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866) |\n| 增长黑客：创业公司的用户与收入增长秘籍 | 范冰 | [下载](https://url89.ctfile.com/f/31084289-1357004839-80eb34?p=8866) |\n| 沸腾十五年 | 林军 | [下载](https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866) |\n"
  },
  {
    "path": "md/五四.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 五四\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 五四的另一面 | 杨念群 | [下载](https://url89.ctfile.com/f/31084289-1357030243-59c30f?p=8866) |\n| 触摸历史与进入五四 | 陈平原 | [下载](https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866) |\n"
  },
  {
    "path": "md/亚洲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 亚洲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 横渡孟加拉湾 | 苏尼尔・阿姆瑞斯 | [下载](https://url89.ctfile.com/f/31084289-1375513060-c0b1a2?p=8866) |\n| 亚洲世纪 | 帕拉格・康纳 | [下载](https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866) |\n| 亚洲的决裂 | 汤姆斯·F. 密勒 | [下载](https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866) |\n| 大历史的多角度解读（套装共20册） | 蒋廷黻等 | [下载](https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866) |\n| 亚洲的去魔化 | 于尔根・奥斯特哈默 | [下载](https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866) |\n| 亚洲史概说 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357019314-bb4568?p=8866) |\n| 极简亚洲千年史 | 斯图亚特・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357008547-7528e7?p=8866) |\n"
  },
  {
    "path": "md/亚瑟王.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 亚瑟王\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 亚瑟王之死（果麦经典） | 托马斯・马洛礼 | [下载](https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866) |\n"
  },
  {
    "path": "md/亚马逊.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 亚马逊\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 贝佐斯传 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866) |\n| 亚马逊编年史 | 宁向东 | [下载](https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866) |\n| 贝佐斯的数字帝国 | 拉姆・查兰 | [下载](https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866) |\n| 亚马逊效应 | 娜塔莉・伯格/米娅・奈茨 | [下载](https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866) |\n"
  },
  {
    "path": "md/交易.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 交易\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 股票魔法师3 | Mark Minervini | [下载](https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866) |\n| 交易的逻辑与艺术 | 陈侃迪 | [下载](https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866) |\n| 交易的真相 | 极地之鹰 | [下载](https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866) |\n| 经典技术分析（原书第3版）（下） | 小查尔斯·D. 柯克帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1375513720-6f59ab?p=8866) |\n| 驾驭交易（原书第3版） | 约翰·F.卡特 | [下载](https://url89.ctfile.com/f/31084289-1357004470-5ede53?p=8866) |\n| 投资交易心理分析（典藏版） | 布雷特 N. 斯蒂恩博格 | [下载](https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866) |\n| 交易之路 | 陈凯 | [下载](https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866) |\n| 金融怪杰：华尔街的顶级交易员 | 杰克D. 施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866) |\n| 走进我的交易室 | 亚历山大・艾尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866) |\n| 驾驭交易（原书第2版） | 约翰・卡特 | [下载](https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866) |\n| 交易冠军 | 马丁・舒华兹 | [下载](https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866) |\n| 一个农民的亿万传奇 | 傅海棠 | [下载](https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866) |\n| 十年一梦（修订版） | 青泽 | [下载](https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866) |\n| 艾略特波浪理论：研判股市底部与顶部的有效工具 | 拉尔夫·N·艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866) |\n| 金融交易圣经 | 约翰・派珀 | [下载](https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866) |\n| 新金融怪杰 | 杰克・施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866) |\n| 高频交易（原书第2版） | 艾琳・奥尔德里奇 | [下载](https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866) |\n| 我如何从股市赚了200万（珍藏版） | 尼古拉斯・达瓦斯 | [下载](https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866) |\n| 概率游戏：像操盘手那样做股票 | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866) |\n| 以交易为生Ⅱ | 亚历山大・埃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866) |\n| 背离技术分析 | 江南小隐 | [下载](https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866) |\n| 戴维·朗德里波段交易法则 | 戴维・朗德里 | [下载](https://url89.ctfile.com/f/31084289-1357037992-dbffa0?p=8866) |\n| 金融怪杰：华尔街的顶级交易员（典藏版） | 杰克 D. 施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866) |\n| 证券混沌操作法（典藏版） | 比尔・威廉斯/贾丝廷・格雷戈里-威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866) |\n| 趋势戒律 | 柯弗 | [下载](https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866) |\n| 趋势交易 | 安德烈亚斯 F. 克列诺 | [下载](https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866) |\n| 暗池 | 帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866) |\n| 解密交易人的圣杯 &#8211; 卡玛利拉方程 | 何塞・曼纽尔・莫雷拉・巴蒂斯塔 | [下载](https://url89.ctfile.com/f/31084289-1357018888-a3598c?p=8866) |\n| Momentum Masters | Mark Minervini | [下载](https://url89.ctfile.com/f/31084289-1357017724-0cf662?p=8866) |\n| 威科夫操盘法 | 孟洪涛 | [下载](https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866) |\n| 打开量化投资的黑箱（原书第2版） | 里什・纳兰 | [下载](https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866) |\n| 外汇交易的10堂必修课 | 贾里德・马丁内斯 | [下载](https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866) |\n| 海龟交易法则（珍藏版） | 柯蒂斯・费思 | [下载](https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866) |\n| 华尔街幽灵 | 阿瑟・辛普森 | [下载](https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866) |\n| 套利的常识 | 章文 | [下载](https://url89.ctfile.com/f/31084289-1357009060-a4097b?p=8866) |\n| 走出幻觉・走向成熟 | 金融帝国 | [下载](https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866) |\n| 期权波动率与定价：高级交易策略与技巧 | 谢尔登・纳坦恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866) |\n| 麦克米伦谈期权 | 劳伦斯G.麦克米伦 | [下载](https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866) |\n| 对冲基金奇才 | 杰克·施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866) |\n| 裸奔的钱 | 沈良 | [下载](https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866) |\n| 短线交易秘诀（原书第2版） | 拉里·威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866) |\n| 以交易为生（珍藏版） | 亚历山大・埃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866) |\n"
  },
  {
    "path": "md/产业.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 产业\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 未来站在中国这一边 | 宁南山 | [下载](https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866) |\n| 光变：一个企业及其工业史 | 路风 | [下载](https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866) |\n"
  },
  {
    "path": "md/产品.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 产品\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大产品思维 | 王雷 | [下载](https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866) |\n| 创意选择 | 肯・科钦达 | [下载](https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866) |\n| 俞军产品方法论 | 俞军 | [下载](https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866) |\n| 精益设计（第2版） | Jeff Gothelf | [下载](https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866) |\n| 产品经理修炼之道 | 费杰 | [下载](https://url89.ctfile.com/f/31084289-1357014895-353831?p=8866) |\n| 从点子到产品 | 刘飞 | [下载](https://url89.ctfile.com/f/31084289-1357014775-780161?p=8866) |\n| 结网@改变世界的互联网产品经理（修订版） | 王坚 | [下载](https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866) |\n"
  },
  {
    "path": "md/京剧.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 京剧\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 瑜老板三分钟京剧小灶（套装2册） | 瑜音社 | [下载](https://url89.ctfile.com/f/31084289-1375513381-1aaee4?p=8866) |\n"
  },
  {
    "path": "md/亲子.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 亲子\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 不要和你妈争辩 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866) |\n| 父母的语言 | 达娜・萨斯金德等 | [下载](https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866) |\n| 写给父母的未来之书 | 童行学院教研团队 | [下载](https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866) |\n| 一流的教养 | 杰瑞米・克拉克/乔若莎・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357025281-72dc34?p=8866) |\n| 魔鬼老大，天使老二 | 诸葛越 | [下载](https://url89.ctfile.com/f/31084289-1357017640-9ed028?p=8866) |\n| 不成熟的父母 | 琳赛・吉布森 | [下载](https://url89.ctfile.com/f/31084289-1357015978-19b735?p=8866) |\n| P.E.T.父母效能训练 | 托马斯・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866) |\n| 西尔斯育儿经 | 西尔斯夫妇 | [下载](https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866) |\n"
  },
  {
    "path": "md/亲密关系.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 亲密关系\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 如何正确吵架 | 朱迪斯・莱特/鲍勃・莱特 | [下载](https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866) |\n"
  },
  {
    "path": "md/亲情.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 亲情\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 时生 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357034350-429229?p=8866) |\n| 亲爱的丫头 | 柯继铭 | [下载](https://url89.ctfile.com/f/31084289-1357026934-41b6dc?p=8866) |\n"
  },
  {
    "path": "md/人体.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人体\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人体的秘密 | 耶尔・阿德勒/卡佳・施皮策 | [下载](https://url89.ctfile.com/f/31084289-1357003708-5ef7a9?p=8866) |\n| 人体简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866) |\n| 超级潜能 | 亚当・皮奥里 | [下载](https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866) |\n"
  },
  {
    "path": "md/人力.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人力\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| HR转型突破 | 康志军 | [下载](https://url89.ctfile.com/f/31084289-1357016836-d313c3?p=8866) |\n| 激活个体 | 陈春花 | [下载](https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866) |\n"
  },
  {
    "path": "md/人口.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人口\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人口大逆转 | 查尔斯・古德哈特/马诺杰・普拉丹 | [下载](https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866) |\n| 龙王的嬗变 | 杨德爱/杨跃雄 | [下载](https://url89.ctfile.com/f/31084289-1375509319-b9f6e6?p=8866) |\n| 空荡荡的地球 | 达雷尔・布里克/约翰・伊比特森 | [下载](https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866) |\n| 人口浪潮 | 保罗・莫兰 | [下载](https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866) |\n| 大国空巢 | 易富贤 | [下载](https://url89.ctfile.com/f/31084289-1357008244-1d0cc5?p=8866) |\n"
  },
  {
    "path": "md/人工智能.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人工智能\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 技术陷阱 | 卡尔・贝内迪克特・弗雷 | [下载](https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866) |\n| 人工智能之不能 | 马兆远 | [下载](https://url89.ctfile.com/f/31084289-1375510333-472d20?p=8866) |\n| 崛起的超级智能 | 刘锋 | [下载](https://url89.ctfile.com/f/31084289-1356995242-8be920?p=8866) |\n| 智能机器如何思考 | 肖恩・格里什 | [下载](https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866) |\n| 无人驾驶 | 胡迪・利普森/梅尔芭・库曼 | [下载](https://url89.ctfile.com/f/31084289-1356983344-4b5bf8?p=8866) |\n| 智能语音时代 | 詹姆斯・弗拉霍斯 | [下载](https://url89.ctfile.com/f/31084289-1356982510-7f3725?p=8866) |\n| 人工智能时代，你的工作还好吗？ | 渠成/陈伟 | [下载](https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866) |\n| 人工智能十万个为什么 | 智能相对论 | [下载](https://url89.ctfile.com/f/31084289-1357051492-7ab628?p=8866) |\n| 动手学深度学习 | 阿斯顿・张等 | [下载](https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866) |\n| 智能城市 | 卡洛・拉蒂 | [下载](https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866) |\n| 超人诞生 | 稻见昌彦 | [下载](https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866) |\n| 人工智能会抢哪些工作 | 理查德・萨斯坎德/丹尼尔・萨斯坎德 | [下载](https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866) |\n| AI的25种可能 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866) |\n| 超级思维 | 托马斯·W·马隆 | [下载](https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866) |\n| 写给大家的AI极简史 | 托马斯・拉姆齐 | [下载](https://url89.ctfile.com/f/31084289-1357043935-90a7c1?p=8866) |\n| 人人都该懂的人工智能 | 布莱・惠特比 | [下载](https://url89.ctfile.com/f/31084289-1357036048-56b816?p=8866) |\n| 为什么 | 朱迪亚・珀尓/达纳・麦肯齐 | [下载](https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866) |\n| 深度学习入门：基于Python的理论与实现 | 斋藤康毅 | [下载](https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866) |\n| 与机器人共舞 | 约翰・马尔科夫 | [下载](https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866) |\n| 云球（第一部） | 白丁 | [下载](https://url89.ctfile.com/f/31084289-1357029952-67bb0c?p=8866) |\n| 深度学习：智能时代的核心驱动力量 | 特伦斯・谢诺夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357029667-77e164?p=8866) |\n| 暗知识：机器认知如何颠覆商业和社会 | 王维嘉 | [下载](https://url89.ctfile.com/f/31084289-1357029484-71f57f?p=8866) |\n| 喝掉这 “罐”书 | 阿米殿下 | [下载](https://url89.ctfile.com/f/31084289-1357029373-48052b?p=8866) |\n| 人类帝国的覆灭 | 常博逸 | [下载](https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866) |\n| 人工智能的进化 | 赫克托・莱韦斯克 | [下载](https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866) |\n| 人工智能简史 | 约翰・马尔科夫 | [下载](https://url89.ctfile.com/f/31084289-1357028056-700487?p=8866) |\n| AI极简经济学 | 阿杰伊・阿格拉沃尔 | [下载](https://url89.ctfile.com/f/31084289-1357026862-49e254?p=8866) |\n| 刷脸背后 | 张重生 | [下载](https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866) |\n| 不会被机器替代的人 | 杰夫・科尔文 | [下载](https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866) |\n| AI·未来 | 李开复 | [下载](https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866) |\n| 科学的极致：漫谈人工智能 | 集智俱乐部 | [下载](https://url89.ctfile.com/f/31084289-1357022236-849651?p=8866) |\n| 机器人叛乱 | 基思・斯坦诺维奇  | [下载](https://url89.ctfile.com/f/31084289-1357021507-5497dc?p=8866) |\n| 人工智能时代的教育革命 | 王作冰 | [下载](https://url89.ctfile.com/f/31084289-1357019908-719008?p=8866) |\n| 心智社会 | 马文・明斯基 | [下载](https://url89.ctfile.com/f/31084289-1357018900-706749?p=8866) |\n| 虚拟人 | 玛蒂娜・罗斯布拉特 | [下载](https://url89.ctfile.com/f/31084289-1357018252-b38b81?p=8866) |\n| 深度学习 | 伊恩・古德费洛/约书亚・本吉奥 | [下载](https://url89.ctfile.com/f/31084289-1357013449-ede60c?p=8866) |\n| 智能革命 | 李彦宏 | [下载](https://url89.ctfile.com/f/31084289-1357012960-18d4fa?p=8866) |\n| AI：人工智能的本质与未来 | 玛格丽特・博登 | [下载](https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866) |\n"
  },
  {
    "path": "md/人性.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人性\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 读水浒 | 押沙龙 | [下载](https://url89.ctfile.com/f/31084289-1375497586-5c95ce?p=8866) |\n| 甜蜜之家 | 殳俏 | [下载](https://url89.ctfile.com/f/31084289-1375511095-b66fd2?p=8866) |\n| 犯罪心理分析 | 张蔚 | [下载](https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866) |\n| 她的骑士男孩 | 金・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1356989767-a100a8?p=8866) |\n| 如果没有明天 | 余耕 | [下载](https://url89.ctfile.com/f/31084289-1356983716-ce8642?p=8866) |\n| 大卫·科波菲尔（果麦经典） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866) |\n| 人性中的善良天使（见识丛书） | 斯蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866) |\n| 罪与罚（名著名译丛书） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866) |\n| 献给阿尔吉侬的花束（理想国） | 丹尼尔・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866) |\n| 北海鲸梦 | 伊恩・麦奎尔 | [下载](https://url89.ctfile.com/f/31084289-1357033870-13a526?p=8866) |\n| 十五条狗 | 安德烈・亚历克西斯 | [下载](https://url89.ctfile.com/f/31084289-1357032739-cd5508?p=8866) |\n| 夏日尽处 | 荷曼・柯赫 | [下载](https://url89.ctfile.com/f/31084289-1357030960-3f8658?p=8866) |\n| 盐 | 孙频 | [下载](https://url89.ctfile.com/f/31084289-1357028746-af85fd?p=8866) |\n| 高老头（作家榜经典文库） | 奥诺雷·德·巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357027474-27cba5?p=8866) |\n| 辛德勒名单（译文经典） | 托马斯・基尼利 | [下载](https://url89.ctfile.com/f/31084289-1357027282-8e342c?p=8866) |\n| 原谅我红尘颠倒 | 慕容雪村 | [下载](https://url89.ctfile.com/f/31084289-1357019941-47b45f?p=8866) |\n| 追风筝的人 | 卡勒德・胡赛尼 | [下载](https://url89.ctfile.com/f/31084289-1357016443-983457?p=8866) |\n| 从此以后 | 罗莎蒙德・勒普顿 | [下载](https://url89.ctfile.com/f/31084289-1357012462-214ab8?p=8866) |\n| 香蕉的低语 | 伊切・泰玛尔库兰 | [下载](https://url89.ctfile.com/f/31084289-1357011982-494983?p=8866) |\n| 以诈止诈 | 刘墉 | [下载](https://url89.ctfile.com/f/31084289-1357011319-2fc00d?p=8866) |\n| 小心，无良是一种病 | 玛莎・斯托特 | [下载](https://url89.ctfile.com/f/31084289-1357010494-d80680?p=8866) |\n| 直到那一天 | 米歇尔・普西 | [下载](https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866) |\n| 绝秦书：民国十八年饥馑 | 张浩文 | [下载](https://url89.ctfile.com/f/31084289-1357009609-b22205?p=8866) |\n| 寂静的烽塔 | 卡伊斯・阿克巴尔・奥马尔  | [下载](https://url89.ctfile.com/f/31084289-1357008757-f55e62?p=8866) |\n| 钓鱼的男孩 | 奇戈希・奥比奥玛 | [下载](https://url89.ctfile.com/f/31084289-1357007668-848bf7?p=8866) |\n"
  },
  {
    "path": "md/人情.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人情\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 欧·亨利短篇小说精选（读客经典） | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1357034014-51fe85?p=8866) |\n"
  },
  {
    "path": "md/人文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 北欧：冰与火之地的寻真之旅 | 迈克尔・布斯 | [下载](https://url89.ctfile.com/f/31084289-1375498264-40e9d6?p=8866) |\n| 神奇的材料 | 艾妮莎・拉米雷斯 | [下载](https://url89.ctfile.com/f/31084289-1375506454-00e823?p=8866) |\n| 日常人文课（共5册） | 泰吉万・帕丁格 | [下载](https://url89.ctfile.com/f/31084289-1375506901-fb7ee6?p=8866) |\n| 古代人的日常生活2 | 王磊 | [下载](https://url89.ctfile.com/f/31084289-1375509049-84a6b4?p=8866) |\n| 人论（果麦经典） | 恩斯特・卡西尔 | [下载](https://url89.ctfile.com/f/31084289-1375513714-66cf91?p=8866) |\n| 此生只为守敦煌 | 叶文玲 | [下载](https://url89.ctfile.com/f/31084289-1357004449-d3ed62?p=8866) |\n| 这是真的，我在一本书里读到过 | 巴斯卡尔・博尼法斯 | [下载](https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866) |\n| 后望书（最终修订本） | 朱幼棣 | [下载](https://url89.ctfile.com/f/31084289-1357003348-6516f4?p=8866) |\n| 中国妆束：大唐女儿行 | 左丘萌/末春 | [下载](https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866) |\n| 鲁豫有约：说出你的故事（共5册） | 凤凰书品 | [下载](https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866) |\n| 故宫六百年 | 祝勇 | [下载](https://url89.ctfile.com/f/31084289-1357001329-12e528?p=8866) |\n| 不让生育的社会 | 小林美希 | [下载](https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866) |\n| 人文精神的伟大冒险 | 菲利普·E.毕肖普 | [下载](https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866) |\n| 无神论（牛津通识读本） | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866) |\n| 轴心时代 | 凯伦・阿姆斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866) |\n| 天才为何成群地来 | 王汎森 | [下载](https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866) |\n| 极简哲学史 | 莱斯莉・莱文 | [下载](https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866) |\n| 哲学是怎样炼成的 | 蒂莫西・威廉森 | [下载](https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866) |\n| 我心归处是敦煌 | 樊锦诗口述/顾春芳撰写 | [下载](https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866) |\n| 中国通史：从上古传说到1949 | 邓广铭/田余庆/戴逸 | [下载](https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866) |\n| 秘境 | 乔舒亚・福尔等 | [下载](https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866) |\n| 20世纪思想史：从弗洛伊德到互联网 | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866) |\n| 存在主义 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357037851-de25ea?p=8866) |\n| BBC艺术经典三部曲 | 肯尼斯・克拉克/罗伯特・休斯/西蒙・沙玛 | [下载](https://url89.ctfile.com/f/31084289-1357033444-1d3101?p=8866) |\n| 数字人文 | 安妮·博迪克等 | [下载](https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866) |\n| 耳朵借我 | 马世芳 | [下载](https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866) |\n| 王阳明大传：知行合一的心学智慧（全新修订版） | 冈田武彦 | [下载](https://url89.ctfile.com/f/31084289-1357029652-25187b?p=8866) |\n| 傅山的交往和应酬（增订本） | 白谦慎 | [下载](https://url89.ctfile.com/f/31084289-1357028113-e9791a?p=8866) |\n| 哈佛读书札记 | 赵一凡 | [下载](https://url89.ctfile.com/f/31084289-1357027321-89ad70?p=8866) |\n| 叶礼庭作品集（套装共3册） | 叶礼庭 | [下载](https://url89.ctfile.com/f/31084289-1357026292-6b6467?p=8866) |\n| 退步集 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866) |\n| 退步集续编 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866) |\n| 打开一颗心 | 斯蒂芬・韦斯塔比 | [下载](https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866) |\n| 杜威选集（5卷本） | 刘放桐等 | [下载](https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866) |\n| 瓶花谱 瓶史 | 张谦德/袁宏道 | [下载](https://url89.ctfile.com/f/31084289-1357020061-e5ca31?p=8866) |\n| 简明大历史 | 伊恩・克夫顿/杰里米・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1357019500-4367ef?p=8866) |\n| 艾柯谈美丑（套装共2册） | 翁贝托・艾柯 | [下载](https://url89.ctfile.com/f/31084289-1357019590-c15b80?p=8866) |\n| 后物欲时代的来临 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357019419-3b77fe?p=8866) |\n| 一只名叫鲍勃的流浪猫 | 詹姆斯・鲍文 | [下载](https://url89.ctfile.com/f/31084289-1357018270-7946fb?p=8866) |\n| 珍物：中国文艺百人物语 | 生活月刊编辑部 | [下载](https://url89.ctfile.com/f/31084289-1357018216-c353d3?p=8866) |\n| 生活的智慧（套装共6册） | 赵丽荣等 | [下载](https://url89.ctfile.com/f/31084289-1357017973-981516?p=8866) |\n| 牛津通识读本精选集（第一辑共58册） | 雷蒙德・瓦克斯 | [下载](https://url89.ctfile.com/f/31084289-1357016143-e41d19?p=8866) |\n| 协和医事 | 常青 | [下载](https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866) |\n| 世界佛教通史（套装共14卷） | 周贵华等 | [下载](https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866) |\n| 活过 | 南方人物周刊 | [下载](https://url89.ctfile.com/f/31084289-1357014892-297fa9?p=8866) |\n| 十里红妆 | 吴瑞贤/吴静波 | [下载](https://url89.ctfile.com/f/31084289-1357014310-ce95e8?p=8866) |\n| 暗物质与恐龙 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866) |\n| 都市速写簿 | 阮义忠 | [下载](https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866) |\n| 走近费曼丛书（套装共6册） | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866) |\n| 时间地图 | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357011370-deef54?p=8866) |\n| 大师讲国学经典文库（套装共5册） | 季风 | [下载](https://url89.ctfile.com/f/31084289-1357011094-ca367b?p=8866) |\n| 知识大融通：21世纪的科学与人文 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357009588-edfc82?p=8866) |\n| 阴阳五要奇书 | 郭璞 | [下载](https://url89.ctfile.com/f/31084289-1357009429-d6e794?p=8866) |\n| 传记文学书系（套装共4册） | 唐德刚/梁实秋等 | [下载](https://url89.ctfile.com/f/31084289-1357008748-e9f5e7?p=8866) |\n| 上瘾五百年 | 戴维・考特莱特 | [下载](https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866) |\n| 那些消失的文明 | 《环球科学》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866) |\n| 马伯庸笑翻中国简史 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866) |\n"
  },
  {
    "path": "md/人格.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人格\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 动机与人格 | 亚伯拉罕・马斯洛 | [下载](https://url89.ctfile.com/f/31084289-1375495429-a9bbbc?p=8866) |\n| 走出人格陷阱 | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357000846-80193c?p=8866) |\n| 别让性格害了你 | 邢群麟 | [下载](https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866) |\n| 你的眼界，决定你的全世界 | 西武 | [下载](https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866) |\n| 自卑与超越 | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357034974-0a7e53?p=8866) |\n| 墨菲定律（精装纪念版） | 张文成 | [下载](https://url89.ctfile.com/f/31084289-1357031155-58fe32?p=8866) |\n| 逆商：我们该如何应对坏事件 | 保罗・史托兹 | [下载](https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866) |\n| 人性的弱点（作家榜经典文库） | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866) |\n| 大势将至，未来已来 | 王鹏 | [下载](https://url89.ctfile.com/f/31084289-1357025284-f820b9?p=8866) |\n| 隐藏的人格 | 黄国胜 | [下载](https://url89.ctfile.com/f/31084289-1357024195-e4abf0?p=8866) |\n| 24重人格（十周年纪念版） | 卡梅伦・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357007740-d16ede?p=8866) |\n"
  },
  {
    "path": "md/人物.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人物\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 青年井上靖 | 宫崎润一 | [下载](https://url89.ctfile.com/f/31084289-1375507408-d785fd?p=8866) |\n| 岩田先生 | HOBO日刊ITOI新闻 | [下载](https://url89.ctfile.com/f/31084289-1375509361-e4316e?p=8866) |\n| 风雨琳琅 | 陈新华 | [下载](https://url89.ctfile.com/f/31084289-1375509841-8c539e?p=8866) |\n| 走近费曼丛书合集（套装共8册） | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1375510048-990016?p=8866) |\n| 索恩人物传记生而为王（全13册） | 汉内斯・默林等 | [下载](https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866) |\n| 特斯拉传：现代的发明者 | 理查德・芒森 | [下载](https://url89.ctfile.com/f/31084289-1375510540-98d20d?p=8866) |\n| 希腊罗马名人传（全五册） | 普鲁塔克 | [下载](https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866) |\n| 不畏：陆克文自传 | 陆克文 | [下载](https://url89.ctfile.com/f/31084289-1375510705-549377?p=8866) |\n| 伊藤博文 | 泷井一博 | [下载](https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866) |\n| 戴高乐将军（全二册） | 朱利安・杰克逊 | [下载](https://url89.ctfile.com/f/31084289-1375513408-b5f76e?p=8866) |\n| 寻找卡夫卡 | 拉德克・马利 | [下载](https://url89.ctfile.com/f/31084289-1375513639-141090?p=8866) |\n| 非常之人 | 张明扬 | [下载](https://url89.ctfile.com/f/31084289-1356999418-3ae058?p=8866) |\n| 激荡：十年二十人 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866) |\n| 宫崎市定人物论 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866) |\n| 钟南山传 | 叶依 | [下载](https://url89.ctfile.com/f/31084289-1357049332-254452?p=8866) |\n| 吾志所向 | 孙中山/许仕廉编著  | [下载](https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866) |\n| 永久记录 | 爱德华・斯诺登 | [下载](https://url89.ctfile.com/f/31084289-1357046221-17fc18?p=8866) |\n| 说说十大日本侵华人物 | 蒋丰 | [下载](https://url89.ctfile.com/f/31084289-1357045075-ebfb55?p=8866) |\n| 民国人物传记（全4册） | 罗志田/娄岙菲等 | [下载](https://url89.ctfile.com/f/31084289-1357044847-db4f81?p=8866) |\n| 格调崔永元 | 白安娜 | [下载](https://url89.ctfile.com/f/31084289-1357042573-8c69e3?p=8866) |\n| 我的一生略小于美国现代史 | 凯瑟琳・格雷厄姆 | [下载](https://url89.ctfile.com/f/31084289-1357039954-7c2c91?p=8866) |\n| 穆里尼奥传：葡萄牙制造（修订版） | 路易斯・洛伦索 | [下载](https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866) |\n| 民国大师书系（全6册） | 梁实秋等 | [下载](https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866) |\n| 慈禧太后 | 菲利普・威廉姆斯・萨金特 | [下载](https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866) |\n| 找寻真实的蒋介石（套装共2册） | 杨天石 | [下载](https://url89.ctfile.com/f/31084289-1357033129-0da7f4?p=8866) |\n| 猛兽总是独行：鲁迅与他的朋友圈 | 孙玉祥 | [下载](https://url89.ctfile.com/f/31084289-1357033105-83d7cd?p=8866) |\n| 美国国家图书馆珍藏名传（系列一共8册） | 雅各布・阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866) |\n| 蒋经国传 | 陶涵 | [下载](https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866) |\n| 富兰克林传 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866) |\n| 邬达克 | 卢卡・彭切里尼/尤利娅・切伊迪 | [下载](https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866) |\n| 天生有罪 | 特雷弗・诺亚 | [下载](https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866) |\n| 关羽：神化的《三国志》英雄 | 渡边义浩 | [下载](https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866) |\n| 浮沉：帝国重臣的人生起落 | 范军 | [下载](https://url89.ctfile.com/f/31084289-1357027960-c3f3a3?p=8866) |\n| 褚时健传 | 周桦 | [下载](https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866) |\n| 知中2·再认识李小龙 | 约翰・里特 | [下载](https://url89.ctfile.com/f/31084289-1357025305-200ba5?p=8866) |\n| 作家、水手、士兵、间谍 | 尼古拉斯・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866) |\n| 钟爱华传：洋医生的中国心 | 约翰・波洛克 | [下载](https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866) |\n| 金庸传（修订版） | 傅国涌 | [下载](https://url89.ctfile.com/f/31084289-1357023109-66a0ea?p=8866) |\n| 生命不息，折腾不止 | 罗永浩 | [下载](https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866) |\n| 先知三部曲（套装共三册） | 伊萨克・多伊彻 | [下载](https://url89.ctfile.com/f/31084289-1357019818-fab788?p=8866) |\n| 茨威格经典作品集 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357019506-ec53cc?p=8866) |\n| Open | Andre Agassi | [下载](https://url89.ctfile.com/f/31084289-1357019482-94cced?p=8866) |\n| 希特勒的兴亡 | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866) |\n| 吴敬琏传 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357018321-53a373?p=8866) |\n| 左宗棠传 | 贝尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357017298-68c107?p=8866) |\n| 致所有疯狂的家伙 | 理查德・布兰森 | [下载](https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866) |\n| 李鸿章（全三册） | 张鸿福 | [下载](https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866) |\n| 进击的局座：悄悄话 | 张召忠 | [下载](https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866) |\n| 李世民权力的逻辑（全4册） | 陈唐 | [下载](https://url89.ctfile.com/f/31084289-1357015375-ee641f?p=8866) |\n| 梁思成、林徽因与我 | 林洙 | [下载](https://url89.ctfile.com/f/31084289-1357014934-8a35b4?p=8866) |\n| 左宗棠的正面与背面 | 徐志频 | [下载](https://url89.ctfile.com/f/31084289-1357014202-e625fe?p=8866) |\n| 陈寅恪与傅斯年（全新修订版） | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866) |\n| 俾斯麦传 | 艾密尔・鲁特维克 | [下载](https://url89.ctfile.com/f/31084289-1357013704-70c38a?p=8866) |\n| 创新者 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866) |\n| 张学良的政治生涯 | 傅虹霖 | [下载](https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866) |\n| 人心至上：杜月笙 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866) |\n| 阿米尔·汗：我行我素 | 克里斯蒂娜・丹尼尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357009441-d75778?p=8866) |\n| 漫漫自由路 | 纳尔逊・曼德拉 | [下载](https://url89.ctfile.com/f/31084289-1357009420-a23ae5?p=8866) |\n| 艾伦・图灵传 | 安德鲁・霍奇斯 | [下载](https://url89.ctfile.com/f/31084289-1357009402-9c2f8a?p=8866) |\n| 生命的烤火者：杨绛传 | 慕容素衣 | [下载](https://url89.ctfile.com/f/31084289-1357009006-32c036?p=8866) |\n| 坐天下：张宏杰解读中国帝王 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866) |\n| 荒野寒山 | 何善蒙 | [下载](https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866) |\n| 武则天正传 | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866) |\n| 在火星上退休：伊隆・马斯克传 | 亚当・杰佛逊  | [下载](https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866) |\n| 卡斯特罗传 | 克劳迪娅・福丽娅蒂 | [下载](https://url89.ctfile.com/f/31084289-1357007353-db4a05?p=8866) |\n| 库克：苹果的后乔布斯时代 | 冷湖 | [下载](https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866) |\n| 千古一战神：韩信 | 姜狼 | [下载](https://url89.ctfile.com/f/31084289-1357007233-0e5888?p=8866) |\n| 唐浩明晚清三部曲 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866) |\n| 千古大变局 | 曾纪鑫 | [下载](https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866) |\n| 本·拉登传 | 简·萨森 | [下载](https://url89.ctfile.com/f/31084289-1357006387-47e6ef?p=8866) |\n| 百年袁家 | 王碧蓉 | [下载](https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866) |\n| 陈寅恪的最后二十年 | 陆键东 | [下载](https://url89.ctfile.com/f/31084289-1357006321-90dcb0?p=8866) |\n| 战神粟裕 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866) |\n| 大太监李莲英全传 | 王牧 | [下载](https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866) |\n| 曾国藩的正面与侧面 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866) |\n| 胡雪岩（全三册） | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866) |\n| 中国误会了袁世凯 | 吕峥 | [下载](https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866) |\n"
  },
  {
    "path": "md/人生.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人生\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 不和世界讲道理 | 曹晟康 | [下载](https://url89.ctfile.com/f/31084289-1375500178-c94c1a?p=8866) |\n| 过得刚好 | 郭德纲 | [下载](https://url89.ctfile.com/f/31084289-1375513618-32fba3?p=8866) |\n| 冯友兰哲思录 | 冯友兰 | [下载](https://url89.ctfile.com/f/31084289-1357004101-553863?p=8866) |\n| 墓志铭图书馆 | 萨缪尔・法努斯 | [下载](https://url89.ctfile.com/f/31084289-1357003990-425456?p=8866) |\n| 请勿离开车祸现场 | 叶扬 | [下载](https://url89.ctfile.com/f/31084289-1357003798-f07b2c?p=8866) |\n| 刘墉的处世情商课 | 刘墉 | [下载](https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866) |\n| 目光 | 陶勇 | [下载](https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866) |\n| 创造人生的伙伴 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866) |\n| 我离开之后 | 苏西・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866) |\n| 成就斜杠人生 | 玛希・埃尔博尔 | [下载](https://url89.ctfile.com/f/31084289-1356998818-5c9d5c?p=8866) |\n| 刀锋（读客经典） | 毛姆 | [下载](https://url89.ctfile.com/f/31084289-1356995125-5bc203?p=8866) |\n| 人生由我 | 梅耶・马斯克 | [下载](https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866) |\n| 亚当的人生歌单 | 格雷姆・辛浦生 | [下载](https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866) |\n| 像哲学家一样生活 | 威廉·B.欧文 | [下载](https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866) |\n| 人生新算法 | 矢野和男 | [下载](https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866) |\n| 忏悔录（上下册） | 卢梭 | [下载](https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866) |\n| 平如美棠：我俩的故事 | 饶平如 | [下载](https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866) |\n| 世界上最神奇的24堂课 | 查尔斯・哈奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866) |\n| 果敢力 | 蒋齐仕 | [下载](https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866) |\n| 文化与人生 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866) |\n| 失忆的爱丽丝 | 莉安・莫利亚提 | [下载](https://url89.ctfile.com/f/31084289-1357042543-545e28?p=8866) |\n| 精准努力：刘媛媛的逆袭课 | 刘媛媛 | [下载](https://url89.ctfile.com/f/31084289-1357040512-7c2ad0?p=8866) |\n| A4纸上看人生 | 刘建梅 | [下载](https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866) |\n| 无法完成的告别 | 大卫・利维森 | [下载](https://url89.ctfile.com/f/31084289-1357035373-d1df05?p=8866) |\n| 我喜欢人生快活的样子 | 蔡澜 | [下载](https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866) |\n| 布隆夫曼脱单历险记 | 丹尼尔・华莱士 | [下载](https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866) |\n| 走钢丝的人 | 大卫・阿尔蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357031827-350ba1?p=8866) |\n| 人质朗读会 | 小川洋子 | [下载](https://url89.ctfile.com/f/31084289-1357031818-fe8c83?p=8866) |\n| 人生的智慧（作家榜经典文库） | 阿图尔・叔本华 | [下载](https://url89.ctfile.com/f/31084289-1357029181-2bb63c?p=8866) |\n| 人不过如此 | 大卫・邵洛伊 | [下载](https://url89.ctfile.com/f/31084289-1357029004-57f394?p=8866) |\n| 别让好脾气害了你 | 周维丽 | [下载](https://url89.ctfile.com/f/31084289-1357027069-8b1e00?p=8866) |\n| 丈量世界 | 丹尼尔・凯曼 | [下载](https://url89.ctfile.com/f/31084289-1357025011-988ba8?p=8866) |\n| 爷爷一定要离婚 | 帕斯卡・鲁特 | [下载](https://url89.ctfile.com/f/31084289-1357024636-095fcc?p=8866) |\n| 生活的哲学 | 朱尔斯・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866) |\n| 我们都是孤独的行路人 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357022542-cf4133?p=8866) |\n| 百岁人生：长寿时代的生活和工作 | 琳达・格拉顿/安德鲁・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357021330-9ce0b1?p=8866) |\n| 人间食粮 | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357021168-e7d281?p=8866) |\n| 人生的智慧：如何才能幸福度过一生 | 阿图尔・叔本华 | [下载](https://url89.ctfile.com/f/31084289-1357018105-7725a4?p=8866) |\n| 这世界啊，随他去吧 | 李沐泽 | [下载](https://url89.ctfile.com/f/31084289-1357017355-7f8a21?p=8866) |\n| 何必等来生 | 燕子 | [下载](https://url89.ctfile.com/f/31084289-1357010593-8d64d5?p=8866) |\n| 人与永恒 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866) |\n| 一条狗的使命 | 布鲁斯・卡梅隆 | [下载](https://url89.ctfile.com/f/31084289-1357009954-f64d06?p=8866) |\n| 人性的弱点 | 戴尔・卡耐基  | [下载](https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866) |\n| 地产狂人许家印 | 魏昕 | [下载](https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866) |\n"
  },
  {
    "path": "md/人类.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人类\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 危崖：生存性风险与人类的未来 | 托比・奥德 | [下载](https://url89.ctfile.com/f/31084289-1375493782-80c088?p=8866) |\n| 人类进化史 | 加亚・文斯 | [下载](https://url89.ctfile.com/f/31084289-1375498165-5357ae?p=8866) |\n| 很高兴认识“我” | 比尔・沙利文 | [下载](https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866) |\n| 风雨横渡 | 西蒙・沙玛 | [下载](https://url89.ctfile.com/f/31084289-1375510204-4a529b?p=8866) |\n| 别睡，这里有蛇 | 丹尼尔・埃弗里特 | [下载](https://url89.ctfile.com/f/31084289-1375510891-4ad519?p=8866) |\n| 六论自发性 | 詹姆斯·C. 斯科特 | [下载](https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866) |\n| 人类学讲义稿 | 王铭铭 | [下载](https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866) |\n| 气候经济与人类未来 | 比尔・盖茨 | [下载](https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866) |\n| 愚蠢的人类 | 汤姆・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1357003243-bbb6f1?p=8866) |\n| 破译人类的明天 | 迈克尔・李 | [下载](https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866) |\n| 大历史与人类的未来（修订版） | 弗雷德・斯皮尔 | [下载](https://url89.ctfile.com/f/31084289-1356994171-41fd5a?p=8866) |\n| 礼物的流动 | 阎云翔 | [下载](https://url89.ctfile.com/f/31084289-1356985465-3e6908?p=8866) |\n| 崩溃：社会如何选择成败兴亡 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866) |\n| 人类的价值 | 罗伯特・博伊德 | [下载](https://url89.ctfile.com/f/31084289-1357051105-4b4530?p=8866) |\n| 灯塔工的值班室 | 弗朗索瓦・阿赫托戈 | [下载](https://url89.ctfile.com/f/31084289-1357043494-9e3f3d?p=8866) |\n| 科学元典套装（三） | 开普勒等 | [下载](https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866) |\n| 科学元典套装（一） | 摩尔根等 | [下载](https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866) |\n| 科学元典套装（二） | 玛丽・居里等 | [下载](https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866) |\n| 人类六千年（上下两册） | 刘景华 | [下载](https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866) |\n| 忧郁的热带 | 克洛德·列维-斯特劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866) |\n| 面对现代世界问题的人类学 | 克洛德·列维-斯特劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357032265-7d37d4?p=8866) |\n| 尼安德特人 | 斯万特・帕博 | [下载](https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866) |\n| 金叶：来自金枝的故事 | 丽莉・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1357028533-53157f?p=8866) |\n| 我是个妈妈，我需要铂金包 | 温妮斯蒂・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866) |\n| 进击的智人 | 河森堡 | [下载](https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866) |\n| 椰壳碗外的人生 | 本尼迪克特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866) |\n| 一切与创造有关 | 奥古斯汀・富恩特斯 | [下载](https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866) |\n| 为什么有的国家富裕，有的国家贫穷 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357018243-d98729?p=8866) |\n| 想象的共同体（增订版） | 本尼迪克特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357017700-976365?p=8866) |\n| 超人类革命 | 吕克・费希 | [下载](https://url89.ctfile.com/f/31084289-1357017670-bee6d3?p=8866) |\n| 我们人类的进化 | 亚历山大・哈考特 | [下载](https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866) |\n| 一万年的爆发 | 格雷戈里・柯克伦/亨利・哈本丁 | [下载](https://url89.ctfile.com/f/31084289-1357017313-fa9dd4?p=8866) |\n| 大历史 | 大卫・克里斯蒂安等 | [下载](https://url89.ctfile.com/f/31084289-1357016224-d086d6?p=8866) |\n| 人类的故事：正式授权续写至21世纪 | 亨德里克・威廉・房龙等 | [下载](https://url89.ctfile.com/f/31084289-1357015681-651344?p=8866) |\n| 人类砍头小史 | 弗朗西斯・拉尔森 | [下载](https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866) |\n| 中信历史的镜像系列（套装共10本） | 理查德・埃文斯等 | [下载](https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866) |\n| 私人生活的变革 | 阎云翔 | [下载](https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866) |\n| 那些惊心动魄的人类文明史（套装共18册） | 曹胜高等 | [下载](https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866) |\n| 人体的故事：进化、健康与疾病 | 丹尼尔・利伯曼  | [下载](https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866) |\n| 金枝 | 詹姆斯・乔治・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1357010026-3fff55?p=8866) |\n| 枪炮、病菌和钢铁 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866) |\n| 浮生取义 | 吴飞 | [下载](https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866) |\n| 神似祖先 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866) |\n| 我们都是食人族 | 克劳德・列维-斯特劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866) |\n| 疯狂人类进化史 | 史钧 | [下载](https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866) |\n| 极简人类史 | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866) |\n| 人类简史：从动物到上帝 | 尤瓦尔・赫拉利 | [下载](https://url89.ctfile.com/f/31084289-1357005331-d43590?p=8866) |\n"
  },
  {
    "path": "md/人类学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 人类学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 承袭的权力 | 乔瓦尼・莱维 | [下载](https://url89.ctfile.com/f/31084289-1356996505-07420a?p=8866) |\n| 数字起源 | 凯莱布・埃弗里特 | [下载](https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866) |\n| 人类的旅程 | 斯宾塞・韦尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866) |\n| 枪炮、病菌与钢铁（修订版） | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866) |\n| 腐败：人性与文化 | 克里斯・肖尔/迪特尔・哈勒 | [下载](https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866) |\n| 人类成功统治地球的秘密 | 约瑟夫・亨里奇 | [下载](https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866) |\n| 金泽：江南民间祭祀探源 | 李天纲 | [下载](https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866) |\n| 人类的起源 | 理查德・利基 | [下载](https://url89.ctfile.com/f/31084289-1357048492-6ce106?p=8866) |\n| 极简人类史（修订珍藏版） | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357041145-b13043?p=8866) |\n| 人类起源的故事 | 大卫・赖克 | [下载](https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866) |\n| 亚当的肚脐 | 迈克尔・西姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866) |\n| 从祖先到算法 | 亚历克斯・本特利 | [下载](https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866) |\n| 最好的亲密关系 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866) |\n| 大局观从何而来 | 罗宾・邓巴等 | [下载](https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866) |\n| 欧洲与没有历史的人 | 埃里克·R.沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866) |\n| 驯化 | 艾丽丝・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866) |\n| 裸猿三部曲（裸猿+人类动物园+亲密行为） | 德斯蒙德·莫利斯 | [下载](https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866) |\n"
  },
  {
    "path": "md/仙侠.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 仙侠\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 驭鲛记（全二册） | 九鹭非香 | [下载](https://url89.ctfile.com/f/31084289-1357045429-d26386?p=8866) |\n| 三生三世十里桃花 | 唐七公子 | [下载](https://url89.ctfile.com/f/31084289-1357007647-923bd8?p=8866) |\n"
  },
  {
    "path": "md/以色列.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 以色列\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 犹太人四千年（全两册） | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866) |\n| 犹太人三千年简史 | 雷蒙德・P.谢德林 | [下载](https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866) |\n| 以色列总理私人史 | 耶胡达・阿夫纳 | [下载](https://url89.ctfile.com/f/31084289-1375512085-4d09ea?p=8866) |\n| 独霸中东 | 雅科夫・卡茨/阿米尔・鲍博特 | [下载](https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866) |\n| 绑架风云 | 大卫・I.科策 | [下载](https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866) |\n| 恶意之山 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357033504-13c2d3?p=8866) |\n| 以色列：一个民族的重生 | 丹尼尔・戈迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357030108-c2ca36?p=8866) |\n| 爱与黑暗的故事 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023226-44689c?p=8866) |\n| 乡村生活图景 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023187-1ce16f?p=8866) |\n| 一样的海 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023175-088266?p=8866) |\n| 最后一个故事，就这样啦 | 埃特加・凯雷特 | [下载](https://url89.ctfile.com/f/31084289-1357020973-3979ae?p=8866) |\n| 为你，耶路撒冷 | 拉莱・科林斯等 | [下载](https://url89.ctfile.com/f/31084289-1357017211-3712a8?p=8866) |\n| 以色列：一个国家的诞生（1-3 合辑） | 十一点半 | [下载](https://url89.ctfile.com/f/31084289-1357015771-29d4ce?p=8866) |\n| 我的应许之地 | 阿里・沙维特 | [下载](https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866) |\n| 天谴行动 | 乔治・乔纳斯 | [下载](https://url89.ctfile.com/f/31084289-1357005826-867b8f?p=8866) |\n"
  },
  {
    "path": "md/价值.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 价值\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 社会设计 | 笕裕介 | [下载](https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866) |\n| 价值 | 张磊 | [下载](https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866) |\n| 认识投资（原书第10版） | 滋维・博迪/亚历克斯・凯恩/艾伦 J. 马库斯 | [下载](https://url89.ctfile.com/f/31084289-1356995317-3a8c8c?p=8866) |\n| 价值规律 | 水木然 | [下载](https://url89.ctfile.com/f/31084289-1357024876-c08f98?p=8866) |\n"
  },
  {
    "path": "md/价值观.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 价值观\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 营销革命3.0（轻携版） | 菲利普・科特勒 | [下载](https://url89.ctfile.com/f/31084289-1357046362-c6312f?p=8866) |\n"
  },
  {
    "path": "md/企业.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 企业\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 极度成功 | 丹尼尔・科伊尔 | [下载](https://url89.ctfile.com/f/31084289-1375510375-05242f?p=8866) |\n| 阿里人的答案书 | 阿里巴巴组织文化 | [下载](https://url89.ctfile.com/f/31084289-1375510804-a5e3a8?p=8866) |\n| 日本企业家精选（全5册） | 一条和生等 | [下载](https://url89.ctfile.com/f/31084289-1375511533-b724b2?p=8866) |\n| 麦肯锡决断力 | 石井辉美 | [下载](https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866) |\n| 华为管理哲学 | 蒋朝安/杜俊鸿 | [下载](https://url89.ctfile.com/f/31084289-1357050910-d72194?p=8866) |\n| 海尔是海：张瑞敏随笔选录 | 张瑞敏 | [下载](https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866) |\n| 营销的本质（珍藏版） | 包政 | [下载](https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866) |\n| 创始人手记 | 季琦 | [下载](https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866) |\n| 褚时健经营哲学系列（套装共3册） | 张小军 | [下载](https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866) |\n| 边界 | 吉莲・邰蒂 | [下载](https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866) |\n| 战略推演 | 王昶 | [下载](https://url89.ctfile.com/f/31084289-1357042372-78310a?p=8866) |\n| 在耶鲁精进 | 王烁 | [下载](https://url89.ctfile.com/f/31084289-1357039087-2cce2c?p=8866) |\n| 别输在不懂管理上 | 冯为中 | [下载](https://url89.ctfile.com/f/31084289-1357039018-f17707?p=8866) |\n| 345薪酬 | 李祖滨/汤鹏等 | [下载](https://url89.ctfile.com/f/31084289-1357034002-cf5f79?p=8866) |\n| 超级符号原理 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357031524-1a7a6c?p=8866) |\n| 第五项修炼·实践篇 | 彼得・圣吉 | [下载](https://url89.ctfile.com/f/31084289-1357031224-5ab3aa?p=8866) |\n| 能力陷阱 | 埃米尼亚・伊贝拉 | [下载](https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866) |\n| 第五项修炼·变革篇 | 彼得・圣吉 | [下载](https://url89.ctfile.com/f/31084289-1357030801-7b000d?p=8866) |\n| 领导力思维 | 珍妮弗・加维・伯格/基斯・约翰斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866) |\n| 逆向创新 | 亚当・摩根 | [下载](https://url89.ctfile.com/f/31084289-1357028677-7e2d5f?p=8866) |\n| 释放潜能：平台型组织的进化路线图 | 穆胜 | [下载](https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866) |\n| 让问题到你为止 | 博恩・崔西 | [下载](https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866) |\n| 七个天才团队的故事 | 沃伦・本尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866) |\n| 以客户为中心 | 黄卫伟 | [下载](https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866) |\n| 隐形冠军：未来全球化的先锋 | 赫尔曼・西蒙 | [下载](https://url89.ctfile.com/f/31084289-1357017103-ceb233?p=8866) |\n| 管理的常识 | 陈春花 | [下载](https://url89.ctfile.com/f/31084289-1357015057-903f80?p=8866) |\n| 光变：一个企业及其工业史 | 路风 | [下载](https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866) |\n| 吉姆·柯林斯成就卓越系列（套装共4册） | 吉姆・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866) |\n| 领导梯队（原书第2版） | 拉姆・查兰/斯蒂芬・德罗特 | [下载](https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866) |\n| 万达工作法 | 万达集团企业文化中心  | [下载](https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866) |\n| 野蛮生长（权威未删节） | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866) |\n"
  },
  {
    "path": "md/企业家.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 企业家\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 进化：顶级企业家自述40年成长心法 | 正和岛 | [下载](https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866) |\n| 褚时健传 | 周桦 | [下载](https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866) |\n"
  },
  {
    "path": "md/企管.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 企管\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 稻盛和夫经营实录（共5册） | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1356995602-63c5f5?p=8866) |\n"
  },
  {
    "path": "md/企鹅.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 企鹅\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 企鹅经典：小彩虹（第一辑） | 尤瓦尔・赫拉利等 | [下载](https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866) |\n| 企鹅与其他海鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866) |\n| 企鹅经典：小黑书（第一辑） | 薄伽丘等 | [下载](https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第六辑） | 乔治・艾略特等 | [下载](https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866) |\n"
  },
  {
    "path": "md/伊朗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 伊朗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 伊朗四千年 | 霍昌・纳哈万迪/伊夫・博马提 | [下载](https://url89.ctfile.com/f/31084289-1375499314-26cba2?p=8866) |\n"
  },
  {
    "path": "md/伏尔泰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 伏尔泰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 伏尔泰小说精选（读客经典） | 伏尔泰 | [下载](https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866) |\n"
  },
  {
    "path": "md/会计.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 会计\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 财报就像一本兵法书 | 刘顺仁 | [下载](https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866) |\n| 资本的眼睛 | 吴卫军 | [下载](https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866) |\n| 财务诡计 | 霍华德·M.施利特等 | [下载](https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866) |\n| 一本书读懂财报 | 肖星 | [下载](https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866) |\n| 世界上最简单的会计书 | 达雷尔・穆利斯/朱迪斯・奥洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357027939-522929?p=8866) |\n| 让数字说话：审计，就这么简单 | 孙含晖等 | [下载](https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866) |\n"
  },
  {
    "path": "md/传媒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 传媒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新闻业的怀乡病 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1375513351-511f7d?p=8866) |\n| 内容之王 | 迈克尔・巴斯卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357044808-3d7309?p=8866) |\n| 众媒时代 | 腾讯传媒研究 | [下载](https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866) |\n"
  },
  {
    "path": "md/传播.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 传播\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 效应 | 中璋 | [下载](https://url89.ctfile.com/f/31084289-1356997804-194bf8?p=8866) |\n| 理解媒介 | 马歇尔・麦克卢汉 | [下载](https://url89.ctfile.com/f/31084289-1357031776-144515?p=8866) |\n| 弱传播 | 邹振东 | [下载](https://url89.ctfile.com/f/31084289-1357027201-40d002?p=8866) |\n"
  },
  {
    "path": "md/传统.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 传统\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 半小时漫画中国史（中国传统节日） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866) |\n"
  },
  {
    "path": "md/传记.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 传记\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 达·芬奇传：自由的心灵 | 查尔斯・尼科尔 | [下载](https://url89.ctfile.com/f/31084289-1375491400-800bfb?p=8866) |\n| 斯大林传 | 德米特里・安东诺维奇・沃尔科戈诺夫 | [下载](https://url89.ctfile.com/f/31084289-1375491829-e707fa?p=8866) |\n| 陀思妥耶夫斯基传 | 安德里亚斯・古斯基 | [下载](https://url89.ctfile.com/f/31084289-1375498042-d0a3d3?p=8866) |\n| 帝国浮沉：关于拿破仑一世的私人回忆（全2册） | 克劳德・梅尼瓦尔 | [下载](https://url89.ctfile.com/f/31084289-1375498120-b235b7?p=8866) |\n| 伊藤博文：近代日本奠基人 | 伊藤之雄 | [下载](https://url89.ctfile.com/f/31084289-1375498831-0dc067?p=8866) |\n| 德意志理想主义的诞生：席勒传 | 吕迪格尔・萨弗兰斯基 | [下载](https://url89.ctfile.com/f/31084289-1375499365-050061?p=8866) |\n| 牛顿传 | 詹姆斯・格雷克 | [下载](https://url89.ctfile.com/f/31084289-1375499524-4bd6cf?p=8866) |\n| 绯闻艺术史 | 林微云 | [下载](https://url89.ctfile.com/f/31084289-1375499971-4d8b4d?p=8866) |\n| 卡尔·拉格斐传 | 洛朗・阿朗-卡龙 | [下载](https://url89.ctfile.com/f/31084289-1375500028-a96942?p=8866) |\n| 译文传记作品系列（套装共15册） | 斯特凡・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1375500337-e1be2a?p=8866) |\n| 玻利瓦尔 | 玛丽・阿拉纳 | [下载](https://url89.ctfile.com/f/31084289-1375500586-2ba984?p=8866) |\n| 贝佐斯传 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866) |\n| 艺术的故事（共12册） | 林家治等 | [下载](https://url89.ctfile.com/f/31084289-1375503403-e9d087?p=8866) |\n| 狄德罗与自由思考的艺术 | 安德鲁·S.柯伦 | [下载](https://url89.ctfile.com/f/31084289-1375506505-4ae859?p=8866) |\n| 青年井上靖 | 宫崎润一 | [下载](https://url89.ctfile.com/f/31084289-1375507408-d785fd?p=8866) |\n| 西方学者眼中的东方伟人（套装共三册） | 迪克・威尔逊/迪克・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1375508434-a870e5?p=8866) |\n| 岩田先生 | HOBO日刊ITOI新闻 | [下载](https://url89.ctfile.com/f/31084289-1375509361-e4316e?p=8866) |\n| 马克斯·韦伯：跨越时代的人生 | 于尔根・考伯 | [下载](https://url89.ctfile.com/f/31084289-1375509481-7f34ec?p=8866) |\n| 传奇之家：托马斯·曼一家的故事 | 蒂尔曼・拉姆 | [下载](https://url89.ctfile.com/f/31084289-1375509748-852c52?p=8866) |\n| 风雨琳琅 | 陈新华 | [下载](https://url89.ctfile.com/f/31084289-1375509841-8c539e?p=8866) |\n| 走近费曼丛书合集（套装共8册） | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1375510048-990016?p=8866) |\n| 索恩人物传记生而为王（全13册） | 汉内斯・默林等 | [下载](https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866) |\n| 荆棘与荣耀 | 马寅 | [下载](https://url89.ctfile.com/f/31084289-1375510381-a861bf?p=8866) |\n| 特斯拉传：现代的发明者 | 理查德・芒森 | [下载](https://url89.ctfile.com/f/31084289-1375510540-98d20d?p=8866) |\n| 希腊罗马名人传（全五册） | 普鲁塔克 | [下载](https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866) |\n| 不畏：陆克文自传 | 陆克文 | [下载](https://url89.ctfile.com/f/31084289-1375510705-549377?p=8866) |\n| 伊藤博文 | 泷井一博 | [下载](https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866) |\n| 牛顿传（修订版） | 迈克尔・怀特 | [下载](https://url89.ctfile.com/f/31084289-1375511131-b2fcc1?p=8866) |\n| 勒布朗·詹姆斯的商业帝国 | 布赖恩・文霍斯特 | [下载](https://url89.ctfile.com/f/31084289-1375511371-8604c1?p=8866) |\n| 梦室：大卫·林奇传 | 大卫・林奇/克里斯汀・麦肯纳 | [下载](https://url89.ctfile.com/f/31084289-1375511773-8b51cb?p=8866) |\n| 美国国家图书馆珍藏名传（系列二共13册） | 雅各布・阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1375511929-1ff7f2?p=8866) |\n| 从头开始 | 霍华德・舒尔茨 | [下载](https://url89.ctfile.com/f/31084289-1375512121-a7c05d?p=8866) |\n| 戴高乐将军（全二册） | 朱利安・杰克逊 | [下载](https://url89.ctfile.com/f/31084289-1375513408-b5f76e?p=8866) |\n| 达·芬奇：500年纪念版 | 马汀・坎普/法比奥・斯卡莱蒂 | [下载](https://url89.ctfile.com/f/31084289-1375513528-1ecffb?p=8866) |\n| 汪曾祺回忆录 | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1375513501-daa881?p=8866) |\n| 过得刚好 | 郭德纲 | [下载](https://url89.ctfile.com/f/31084289-1375513618-32fba3?p=8866) |\n| 寻找卡夫卡 | 拉德克・马利 | [下载](https://url89.ctfile.com/f/31084289-1375513639-141090?p=8866) |\n| 阿诺德·汤因比传 | 威廉・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357003873-4b5f8b?p=8866) |\n| 密码女王 | 贾森・法戈内 | [下载](https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866) |\n| 理查德·费曼传 | 劳伦斯・克劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357001806-54b61b?p=8866) |\n| 鲁豫有约：说出你的故事（共5册） | 凤凰书品 | [下载](https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866) |\n| 成为我自己：欧文·亚隆回忆录 | 欧文・亚隆 | [下载](https://url89.ctfile.com/f/31084289-1357001128-9e4690?p=8866) |\n| 有点意思 | 黄渤 | [下载](https://url89.ctfile.com/f/31084289-1357000483-0f32e7?p=8866) |\n| 毕竟战功谁第一（修订典藏本） | 谭伯牛 | [下载](https://url89.ctfile.com/f/31084289-1356999745-d06b6f?p=8866) |\n| 知晓我姓名 | 香奈儿・米勒 | [下载](https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866) |\n| 普京：权力的逻辑 | 胡贝特・塞佩尔 | [下载](https://url89.ctfile.com/f/31084289-1356997114-7f3bf3?p=8866) |\n| 一往无前 | 范海涛 | [下载](https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866) |\n| 美国第一夫人回忆录 | 塔夫脱总统夫人 | [下载](https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866) |\n| 杰斐逊总统 | 约翰・托里・莫尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866) |\n| 巴黎评论（套装共7册） | 《巴黎评论》编辑部 | [下载](https://url89.ctfile.com/f/31084289-1356995236-9e2014?p=8866) |\n| 大梦无疆 | 西蒙・佩雷斯 | [下载](https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866) |\n| 国外风云人物传记精选集（全10册） | 太田治子等 | [下载](https://url89.ctfile.com/f/31084289-1356995083-774357?p=8866) |\n| 苏东坡新传 | 李一冰 | [下载](https://url89.ctfile.com/f/31084289-1356994948-24d8ca?p=8866) |\n| 人生由我 | 梅耶・马斯克 | [下载](https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866) |\n| 陀思妥耶夫斯基：作家与他的时代 | 玛丽・彼得鲁塞维茨 | [下载](https://url89.ctfile.com/f/31084289-1356994630-9c340a?p=8866) |\n| 安身立命 | 许纪霖 | [下载](https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866) |\n| 悲鸿生命 | 范迪安 | [下载](https://url89.ctfile.com/f/31084289-1356994642-86e3db?p=8866) |\n| 启与魅 | 卡森・麦卡勒斯 | [下载](https://url89.ctfile.com/f/31084289-1356994519-34f572?p=8866) |\n| 我的前半生（全本） | 爱新觉罗・溥仪 | [下载](https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866) |\n| 一生的旅程 | 罗伯特・艾格/乔尔・洛弗尔 | [下载](https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866) |\n| 赌徒恺撒 | 马丁・耶内 | [下载](https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866) |\n| 偏执乐观 | 李思拓 | [下载](https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866) |\n| 伏尔泰传 | 安德烈・莫洛亚 | [下载](https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866) |\n| 我的情报与外交生涯 | 熊向晖 | [下载](https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866) |\n| 梅特涅：帝国与世界（全2册） | 沃尔弗拉姆・希曼 | [下载](https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866) |\n| 天空无界 | 尼尔・德格拉斯・泰森 | [下载](链接未找到) |\n| 梁漱溟往来书信集 | 梁培宽 | [下载](https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866) |\n| 孙正义传 | 杉本贵司 | [下载](https://url89.ctfile.com/f/31084289-1356989806-2063fb?p=8866) |\n| 谷歌的故事 | 戴维・怀斯/马克・摩西德 | [下载](https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866) |\n| 伪装的艺术 | 本・雅格达 | [下载](https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866) |\n| 苏珊·桑塔格全传 | 卡尔・罗利森 | [下载](https://url89.ctfile.com/f/31084289-1356986275-a21ab1?p=8866) |\n| 隐身大师 | 萨拉・卡明斯基 | [下载](https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866) |\n| 我的最后叹息 | 路易斯・布努艾尔 | [下载](https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866) |\n| 孔子的故事（全彩美绘本） | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1356985696-3603c8?p=8866) |\n| 孔子的故事 | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1356985597-1b96e0?p=8866) |\n| 搜历史 | 易小荷/曲飞 | [下载](https://url89.ctfile.com/f/31084289-1356985588-42c02a?p=8866) |\n| 西方画家及其作品套装（全4册） | 王月亮 | [下载](https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866) |\n| 我是落花生的女儿 | 许燕吉 | [下载](https://url89.ctfile.com/f/31084289-1356984751-7442f4?p=8866) |\n| 宫本武藏全传（套装共5册） | 吉川英治/小山胜清 | [下载](https://url89.ctfile.com/f/31084289-1356983713-9b788f?p=8866) |\n| 忏悔录（上下册） | 卢梭 | [下载](https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866) |\n| 苏世民：我的经验与教训 | 苏世民 | [下载](https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866) |\n| 美孚石油公司史 | 艾达・塔贝尔 | [下载](https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866) |\n| 平如美棠：我俩的故事 | 饶平如 | [下载](https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866) |\n| 西太后：薇薇安·威斯特伍德 | 薇薇安・威斯特伍德/伊恩・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357054321-5d3b9d?p=8866) |\n| 拿破仑大帝（全2册） | 安德鲁・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866) |\n| 元好问传 | 朱东润 | [下载](https://url89.ctfile.com/f/31084289-1357053739-812d98?p=8866) |\n| 激荡：十年二十人 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866) |\n| 钱锺书交游考 | 谢泳 | [下载](https://url89.ctfile.com/f/31084289-1357053523-510bb0?p=8866) |\n| 小人物：我和父亲乔布斯 | 丽莎・布伦南・乔布斯 | [下载](https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866) |\n| 漫威大战DC | 里德・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866) |\n| 至暗时刻 | 安东尼・麦卡滕 | [下载](https://url89.ctfile.com/f/31084289-1357052338-7e11b2?p=8866) |\n| 我也是鲁迅的遗物：朱安传 | 乔丽华 | [下载](https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866) |\n| 卡尔·马克思：生平与环境 | 以赛亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866) |\n| 林语堂传 | 钱锁桥 | [下载](https://url89.ctfile.com/f/31084289-1357051534-d8c6fd?p=8866) |\n| 米塞斯评传 | 伊斯雷尔·M·柯兹纳 | [下载](https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866) |\n| 朱元璋大传 | 陈梧桐 | [下载](https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866) |\n| 贝多芬传：扼住命运咽喉的英雄 | 费利克斯・胡赫 | [下载](https://url89.ctfile.com/f/31084289-1357051042-dc8d6b?p=8866) |\n| 芭比：一个娃娃风靡世界的秘密 | 罗宾・格博 | [下载](https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866) |\n| 遇见莫扎特 | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357050742-52e166?p=8866) |\n| 领袖们（全译修订版） | 理查德・尼克松 | [下载](https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866) |\n| 钟南山传 | 叶依 | [下载](https://url89.ctfile.com/f/31084289-1357049332-254452?p=8866) |\n| 维多利亚女王：帝国女统治者的秘密传记（全2册） | 茱莉娅・贝尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866) |\n| 我心归处是敦煌 | 樊锦诗口述/顾春芳撰写 | [下载](https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866) |\n| 真实科比 | 罗兰・拉赞比 | [下载](https://url89.ctfile.com/f/31084289-1357048894-1929bd?p=8866) |\n| 吾志所向 | 孙中山/许仕廉编著  | [下载](https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866) |\n| 黄金家族的最后一个王爷 | 朱文楚 | [下载](https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866) |\n| 创始人手记 | 季琦 | [下载](https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866) |\n| 世界皆营销 | 菲利普・科特勒 | [下载](https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866) |\n| 我的探险生涯Ⅱ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866) |\n| 稻盛和夫的人生哲学 | 北康利 | [下载](https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866) |\n| 居里夫人自传（果麦经典） | 玛丽・居里 | [下载](https://url89.ctfile.com/f/31084289-1357046320-31d73f?p=8866) |\n| 永久记录 | 爱德华・斯诺登 | [下载](https://url89.ctfile.com/f/31084289-1357046221-17fc18?p=8866) |\n| 整个巴黎属于我 | 莱斯利·M.M.布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866) |\n| 故事的开始 | 幾米 | [下载](https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866) |\n| 毫无保留 | 小比尔・马里奥特等 | [下载](https://url89.ctfile.com/f/31084289-1357045708-dae6d9?p=8866) |\n| 共同的生命线 | 约翰・苏尔斯顿/乔治娜・费里 | [下载](https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866) |\n| 杜尚传（第二版） | 王瑞芸 | [下载](https://url89.ctfile.com/f/31084289-1357044862-f93665?p=8866) |\n| 民国人物传记（全4册） | 罗志田/娄岙菲等 | [下载](https://url89.ctfile.com/f/31084289-1357044847-db4f81?p=8866) |\n| 第一道曙光下的真实 | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866) |\n| 银元时代生活史 | 陈存仁 | [下载](https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866) |\n| 爱因斯坦传（全2册） | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866) |\n| 20世纪五大传记书系（全5册） | 吴晗/林语堂等 | [下载](https://url89.ctfile.com/f/31084289-1357044160-869a78?p=8866) |\n| 马其顿的亚历山大 | 彼得・格林 | [下载](https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866) |\n| 格林斯潘传 | 塞巴斯蒂安・马拉比 | [下载](https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866) |\n| 黑暗时代的她们 | 杰奎琳・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866) |\n| 李白传 | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866) |\n| 塞纳河畔的一把椅子 | 阿明・马洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866) |\n| 格调崔永元 | 白安娜 | [下载](https://url89.ctfile.com/f/31084289-1357042573-8c69e3?p=8866) |\n| 安徒生自传 | 安徒生 | [下载](https://url89.ctfile.com/f/31084289-1357042621-63bfda?p=8866) |\n| 燃烧的大脑 | 苏珊娜・卡哈兰 | [下载](https://url89.ctfile.com/f/31084289-1357042210-b00ec5?p=8866) |\n| 贝托尔特·布莱希特 | 雅恩・克诺普夫 | [下载](https://url89.ctfile.com/f/31084289-1357040365-b4e7a4?p=8866) |\n| 我的一生略小于美国现代史 | 凯瑟琳・格雷厄姆 | [下载](https://url89.ctfile.com/f/31084289-1357039954-7c2c91?p=8866) |\n| 索罗斯传（白金珍藏版） | 罗伯特・斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866) |\n| 穆里尼奥传：葡萄牙制造（修订版） | 路易斯・洛伦索 | [下载](https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866) |\n| 我的奋斗2：恋爱中的男人 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1357038484-c5673e?p=8866) |\n| 我的奋斗1：父亲的葬礼 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1357037839-6b7aa9?p=8866) |\n| Benjamin Franklin | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357036897-1a5d9e?p=8866) |\n| Believe Me | Eddie Izzard | [下载](https://url89.ctfile.com/f/31084289-1357037281-40eeb7?p=8866) |\n| 权力的教训 | 弗朗索瓦・奥朗德 | [下载](https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866) |\n| T.S.艾略特传 | 林德尔・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866) |\n| Facebook诞生记 | 本・麦兹里奇 | [下载](https://url89.ctfile.com/f/31084289-1357035721-c40b04?p=8866) |\n| 加缪传 | 赫伯特・R.洛特曼 | [下载](https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866) |\n| 雍正大传 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357035448-d271fe?p=8866) |\n| 民国大师书系（全6册） | 梁实秋等 | [下载](https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866) |\n| 我就是风口 | 理查德・布兰森 | [下载](https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866) |\n| 未了中国缘 | 约翰・帕顿・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1357034959-e448e1?p=8866) |\n| 台湾《传记文学》珍藏系列（全15册） | 梁实秋/林语堂等 | [下载](https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866) |\n| Becoming | Michelle Obama | [下载](链接未找到) |\n| 帝国骑士（第1卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866) |\n| 魔灯（全译本） | 英格玛・伯格曼 | [下载](https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866) |\n| 伦勃朗1642 | 张佳玮 | [下载](https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866) |\n| 慈禧太后 | 菲利普・威廉姆斯・萨金特 | [下载](https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866) |\n| 周作人自编集 | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866) |\n| 最后的访谈系列（套装共6册） | 欧内斯特・米勒尔・海明威等 | [下载](https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866) |\n| 千古大儒：王阳明 | 周明河 | [下载](https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866) |\n| 丑牛系列之民国才子（套装3本） | 李克/沈燕/李平/孙琳 | [下载](https://url89.ctfile.com/f/31084289-1357033495-4c7802?p=8866) |\n| 找寻真实的蒋介石（套装共2册） | 杨天石 | [下载](https://url89.ctfile.com/f/31084289-1357033129-0da7f4?p=8866) |\n| 猛兽总是独行：鲁迅与他的朋友圈 | 孙玉祥 | [下载](https://url89.ctfile.com/f/31084289-1357033105-83d7cd?p=8866) |\n| 非常年代 | 多莉丝・基恩斯・古德温 | [下载](https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866) |\n| 美国国家图书馆珍藏名传（系列一共8册） | 雅各布・阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866) |\n| 进化：顶级企业家自述40年成长心法 | 正和岛 | [下载](https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866) |\n| 蒋经国传 | 陶涵 | [下载](https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866) |\n| 富兰克林传 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866) |\n| 安南回忆录 | 科菲・安南 | [下载](https://url89.ctfile.com/f/31084289-1357032844-1da8c4?p=8866) |\n| 回忆拿破仑 | 布里昂 | [下载](https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866) |\n| 恺撒：巨人的一生 | 阿德里安・戈兹沃西 | [下载](https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866) |\n| 人间鲁迅 | 林贤治 | [下载](https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866) |\n| 撒切尔夫人 | 乔纳森・艾特肯 | [下载](https://url89.ctfile.com/f/31084289-1357032679-f97385?p=8866) |\n| 奥古斯都：从革命者到皇帝 | 阿德里安・戈兹沃西 | [下载](https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866) |\n| 伊莎贝拉 | 克斯汀・唐尼 | [下载](https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866) |\n| 阿拉伯的劳伦斯 | 斯科特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866) |\n| 青年变革者 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866) |\n| 伊丽莎白女王 | 艾莉森・威尔 | [下载](https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866) |\n| 蒂姆·库克传 | 利恩德・卡尼 | [下载](https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866) |\n| 德皇威廉二世回忆录 | 威廉二世 | [下载](https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866) |\n| 千古一帝秦始皇（上下全2册） | 王立群 | [下载](https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866) |\n| 徐悲鸿 | 杨先让 | [下载](https://url89.ctfile.com/f/31084289-1357031851-179b0e?p=8866) |\n| 民国清流系列（全七册） | 汪兆骞 | [下载](https://url89.ctfile.com/f/31084289-1357031422-474dd4?p=8866) |\n| 通往权力之路：叶卡捷琳娜大帝 | 罗伯特·K·迈锡 | [下载](https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866) |\n| 奇来后书 | 杨牧 | [下载](https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866) |\n| 爱彼迎传 | 利・加拉格尔 | [下载](https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866) |\n| 邬达克 | 卢卡・彭切里尼/尤利娅・切伊迪 | [下载](https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866) |\n| 戴维斯王朝 | 约翰・罗斯柴尔德 | [下载](https://url89.ctfile.com/f/31084289-1357031242-bfcf62?p=8866) |\n| 他从凤凰来：沈从文传 | 金介甫 | [下载](https://url89.ctfile.com/f/31084289-1357030948-655c86?p=8866) |\n| 特斯拉传 | 哈米什・麦肯齐 | [下载](https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866) |\n| 唐浩明评点曾国藩家书 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357030825-08c459?p=8866) |\n| 孔子大历史 | 李硕 | [下载](https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866) |\n| 平衡的智慧 | 帕特・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357030681-682c4a?p=8866) |\n| 阿登纳回忆录（套装共4册） | 康拉德・阿登纳 | [下载](https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866) |\n| 我曾走在崩溃的边缘 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866) |\n| 任正非传 | 孙力科 | [下载](https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866) |\n| 温柔的正义 | 琳达・赫什曼 | [下载](https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866) |\n| 宋朝政坛319年系列丛书 | 江永红/周宗奇/毕宝魁/郭晓晔 | [下载](https://url89.ctfile.com/f/31084289-1357030120-a49339?p=8866) |\n| 成吉思汗 | 杰克・威泽弗德 | [下载](https://url89.ctfile.com/f/31084289-1357030057-ad67d7?p=8866) |\n| 曾国藩家书（果麦经典） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357030027-90dc35?p=8866) |\n| 危险地活着 | 汉斯・舒茨 | [下载](https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866) |\n| 伊本·赫勒敦 | 罗伯特・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866) |\n| 李小龙：不朽的东方传奇（图文版） | 郑杰 | [下载](https://url89.ctfile.com/f/31084289-1357029616-f92b6d?p=8866) |\n| 向前一步 | 谢丽尔・桑德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866) |\n| 富兰克林自传（译文名著精选） | 本杰明・富兰克林 | [下载](https://url89.ctfile.com/f/31084289-1357029466-e938e1?p=8866) |\n| 瓜迪奥拉：胜利的另一种道路 | 吉列姆・巴拉格 | [下载](https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866) |\n| 敢创之旅：科勒百年传奇 | 《敢创之旅》编写组 | [下载](https://url89.ctfile.com/f/31084289-1357029376-1a0ae7?p=8866) |\n| 拿破仑传（果麦经典） | 埃米尔・路德维希 | [下载](https://url89.ctfile.com/f/31084289-1357029262-51cdbd?p=8866) |\n| 伊万卡·特朗普 | 伊万卡・特朗普 | [下载](https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866) |\n| 亚历克斯·弗格森：我的自传 | 亚历克斯・弗格森 | [下载](https://url89.ctfile.com/f/31084289-1357029226-e94552?p=8866) |\n| 盲人奥里翁 | 龚祥瑞 | [下载](https://url89.ctfile.com/f/31084289-1357028482-369eaa?p=8866) |\n| 林肯传 | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1357028323-24d764?p=8866) |\n| 爱迪生：创新之源与商业成就的秘密 | 里昂纳多・迪格拉夫 | [下载](https://url89.ctfile.com/f/31084289-1357028344-204c61?p=8866) |\n| 漫威之父斯坦·李 | 鲍勃・巴彻勒 | [下载](https://url89.ctfile.com/f/31084289-1357028266-25f260?p=8866) |\n| 大学与大师 | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357028077-546989?p=8866) |\n| 特立斯非虚构经典著作 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357027792-68778f?p=8866) |\n| 知识分子 | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357027738-44fa7b?p=8866) |\n| 香农传 | 吉米・索尼 | [下载](https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866) |\n| 罗素传（全2册） | 瑞・蒙克 | [下载](https://url89.ctfile.com/f/31084289-1357027564-a1949f?p=8866) |\n| 八百万种走法 | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1357027432-29294c?p=8866) |\n| 成吉思汗与今日世界之形成 | 杰克・威泽弗德 | [下载](https://url89.ctfile.com/f/31084289-1357027153-72f4c4?p=8866) |\n| 她是天使误入人间：奥黛丽·赫本传 | 布可小姐 | [下载](https://url89.ctfile.com/f/31084289-1357027087-9bc2f6?p=8866) |\n| 褚时健 | 先燕云 | [下载](https://url89.ctfile.com/f/31084289-1357026892-ff2ed7?p=8866) |\n| 褚时健传 | 周桦 | [下载](https://url89.ctfile.com/f/31084289-1357026889-fa3aca?p=8866) |\n| 鲍勃·迪伦：诗人之歌 | 让-多米尼克·布里埃 | [下载](https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866) |\n| 生命之轮 | 伊丽莎白・库伯勒-罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866) |\n| 乐队女孩 | 金・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866) |\n| 网：阿加西自传 | 安德烈・阿加西 | [下载](https://url89.ctfile.com/f/31084289-1357025626-a758c0?p=8866) |\n| 知中2·再认识李小龙 | 约翰・里特 | [下载](https://url89.ctfile.com/f/31084289-1357025305-200ba5?p=8866) |\n| 知中7·幸会！苏东坡 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866) |\n| 成为 | 米歇尔・罗宾逊・奥巴马 | [下载](https://url89.ctfile.com/f/31084289-1357025125-c91f09?p=8866) |\n| 人生真相 | 彼得・斯莱文 | [下载](https://url89.ctfile.com/f/31084289-1357025128-9ada14?p=8866) |\n| 凯南日记 | 乔治・凯南 | [下载](https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866) |\n| 姚明传 | 杨毅 | [下载](https://url89.ctfile.com/f/31084289-1357025023-0d966b?p=8866) |\n| 曾国藩传 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357024924-c79780?p=8866) |\n| 断头王后：玛丽·安托瓦内特传 | 斯・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357024828-0ecc23?p=8866) |\n| 雷震传 | 范泓 | [下载](https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866) |\n| 最后的儒家 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866) |\n| 作家、水手、士兵、间谍 | 尼古拉斯・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866) |\n| 罗斯玛丽：肯尼迪家族隐藏的女儿 | 凯特・克里福・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357024627-9a0631?p=8866) |\n| 阿加莎·克里斯蒂的真实人生 | 安娜・马丁内蒂等 | [下载](https://url89.ctfile.com/f/31084289-1357024306-ad80e4?p=8866) |\n| 宋徽宗 | 伊沛霞 | [下载](https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866) |\n| 我钻进了金字塔 | 唐师曾 | [下载](https://url89.ctfile.com/f/31084289-1357023844-04f9b7?p=8866) |\n| 与自己对话：曼德拉自传 | 纳尔逊・曼德拉 | [下载](https://url89.ctfile.com/f/31084289-1357023478-a73738?p=8866) |\n| IBM帝国缔造者：小沃森自传 | 小托马斯・约翰・沃森/彼得・彼得 | [下载](https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866) |\n| 天才的编辑 | 司各特・伯格 | [下载](https://url89.ctfile.com/f/31084289-1357023316-2d09bb?p=8866) |\n| 自由之魂 | 刘台平 | [下载](https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866) |\n| 不得贪胜 | 李昌镐 | [下载](https://url89.ctfile.com/f/31084289-1357023190-b21759?p=8866) |\n| 苹果首席设计师：乔纳森传 | 利恩德・卡尼 | [下载](https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866) |\n| 沃兹传：与苹果一起疯狂 | 吉娜・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357023163-c9e4da?p=8866) |\n| 钟爱华传：洋医生的中国心 | 约翰・波洛克 | [下载](https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866) |\n| 强人治国：普京传 | 安格斯・罗克斯伯勒 | [下载](https://url89.ctfile.com/f/31084289-1357023151-211707?p=8866) |\n| 咏远有李 | 李咏 | [下载](https://url89.ctfile.com/f/31084289-1357023193-112edb?p=8866) |\n| 金庸传（修订版） | 傅国涌 | [下载](https://url89.ctfile.com/f/31084289-1357023109-66a0ea?p=8866) |\n| 我的早年岁月 | 苏尔坦・本・穆罕默德・卡西米 | [下载](https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866) |\n| 领袖：一项心理史学研究 | 查尔斯・B．斯特罗齐尔/丹尼尔・奥弗 | [下载](https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866) |\n| 一个定理的诞生 | 塞德里克・维拉尼 | [下载](https://url89.ctfile.com/f/31084289-1357022608-e6a289?p=8866) |\n| 命运：文在寅自传 | 文在寅 | [下载](https://url89.ctfile.com/f/31084289-1357022554-9440d1?p=8866) |\n| 李嘉诚全传 | 陈美华/辛磊 | [下载](https://url89.ctfile.com/f/31084289-1357022467-d6cebc?p=8866) |\n| 青年斯大林 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1357022413-7e0d2c?p=8866) |\n| 庄子传 | 张远山 | [下载](https://url89.ctfile.com/f/31084289-1357022350-a02974?p=8866) |\n| Short Nights of the Shadow Catcher | Egan, Timothy | [下载](https://url89.ctfile.com/f/31084289-1357022299-6675d1?p=8866) |\n| 生命不息，折腾不止 | 罗永浩 | [下载](https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866) |\n| 列奥纳多·达·芬奇传 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866) |\n| 知行合一王阳明2：四句话读懂阳明心学 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866) |\n| Leonardo da Vinci | Walter Isaacson | [下载](https://url89.ctfile.com/f/31084289-1357021798-d76fb3?p=8866) |\n| 美国梦 | 斯塔兹・特克尔 | [下载](https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866) |\n| 蚤满华袍：张爱玲后半生 | 伊北 | [下载](https://url89.ctfile.com/f/31084289-1357020742-af9458?p=8866) |\n| 卢作孚套装（全三册） | 鲁/张湛昀 | [下载](https://url89.ctfile.com/f/31084289-1357020706-3dfc66?p=8866) |\n| 共和国科学拓荒者传记（套装共9册） | 许鹿希等 | [下载](https://url89.ctfile.com/f/31084289-1357020856-bcb915?p=8866) |\n| 汉密尔顿传 | 罗恩・彻诺 | [下载](https://url89.ctfile.com/f/31084289-1357020625-ed77e3?p=8866) |\n| 默克尔传：德国总理安格拉·默克尔和她的权力世界 | 斯蒂凡・柯内琉斯 | [下载](https://url89.ctfile.com/f/31084289-1357020523-ee7487?p=8866) |\n| 我生有涯愿无尽 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357020394-9d305d?p=8866) |\n| 我身在历史何处 | 埃米尔・库斯图里卡 | [下载](https://url89.ctfile.com/f/31084289-1357019992-bd477d?p=8866) |\n| 一个瑜伽行者的自传 | 帕拉宏撒・尤迦南达 | [下载](https://url89.ctfile.com/f/31084289-1357019968-e117f9?p=8866) |\n| 权力之路：林登·约翰逊传 | 罗伯特・A.卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866) |\n| 先知三部曲（套装共三册） | 伊萨克・多伊彻 | [下载](https://url89.ctfile.com/f/31084289-1357019818-fab788?p=8866) |\n| 张作霖大传 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357019716-3c1ec2?p=8866) |\n| 茨威格经典作品集 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357019506-ec53cc?p=8866) |\n| Open | Andre Agassi | [下载](https://url89.ctfile.com/f/31084289-1357019482-94cced?p=8866) |\n| 武则天5：从三岁到八十二岁 | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357019326-871ffb?p=8866) |\n| 沉重的皇冠 | 克里斯托弗・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866) |\n| 我的创业史 | 方兴东/刘强东/刘伟 | [下载](https://url89.ctfile.com/f/31084289-1357019182-1f9b4c?p=8866) |\n| 我不要你死于一事无成 | 法齐娅・库菲 | [下载](https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866) |\n| 辣道至简：老干妈陶华碧的经营智慧 | 李琦晨 | [下载](https://url89.ctfile.com/f/31084289-1357019074-0c0d6b?p=8866) |\n| 希特勒的兴亡 | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866) |\n| 滚雪球：巴菲特和他的财富人生（套装共2册） | 艾丽斯・施罗德 | [下载](https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866) |\n| 吴敬琏传 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357018321-53a373?p=8866) |\n| My Brief History | Stephen Hawking | [下载](https://url89.ctfile.com/f/31084289-1357018171-0525fe?p=8866) |\n| 蒋介石后传 | 师永刚/方旭 | [下载](https://url89.ctfile.com/f/31084289-1357017532-586f77?p=8866) |\n| 赵匡胤：乱世枭雄开启文治盛世 | 陈红晓 | [下载](https://url89.ctfile.com/f/31084289-1357017484-9dba70?p=8866) |\n| 刘邦：汉民族文化的伟大开拓者 | 洪亮亮 | [下载](https://url89.ctfile.com/f/31084289-1357017478-cb43ff?p=8866) |\n| 左宗棠传 | 贝尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357017298-68c107?p=8866) |\n| 左宗棠：帝国最后的“鹰派” | 徐志频 | [下载](https://url89.ctfile.com/f/31084289-1357017196-e60417?p=8866) |\n| “雅众·影事”之日本导演系列（套装共4册） | 今敏/大岛渚等 | [下载](https://url89.ctfile.com/f/31084289-1357017130-8dc1b4?p=8866) |\n| 黄河青山：黄仁宇回忆录 | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357016971-0cdd42?p=8866) |\n| 活着为了讲述 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357016920-233354?p=8866) |\n| 致所有疯狂的家伙 | 理查德・布兰森 | [下载](https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866) |\n| 边缘人偶记 | 徐国琦 | [下载](https://url89.ctfile.com/f/31084289-1357016278-c6fdd0?p=8866) |\n| 蚕丝：钱学森传 | 张纯如 | [下载](https://url89.ctfile.com/f/31084289-1357015879-9f8145?p=8866) |\n| 李鸿章传 | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866) |\n| 进击的局座：悄悄话 | 张召忠 | [下载](https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866) |\n| 李世民权力的逻辑（全4册） | 陈唐 | [下载](https://url89.ctfile.com/f/31084289-1357015375-ee641f?p=8866) |\n| 梁思成、林徽因与我 | 林洙 | [下载](https://url89.ctfile.com/f/31084289-1357014934-8a35b4?p=8866) |\n| 曾国藩：唐浩明钦定版 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357014871-07622b?p=8866) |\n| 富兰克林自传 | 富兰克林 | [下载](https://url89.ctfile.com/f/31084289-1357014847-bd9379?p=8866) |\n| 颠覆者：周鸿祎自传 | 周鸿祎/范海涛 | [下载](https://url89.ctfile.com/f/31084289-1357014796-d33909?p=8866) |\n| 一个广告人的自白 | 大卫・奥格威 | [下载](https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866) |\n| 孵化皮克斯 | 劳伦斯・利维 | [下载](https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866) |\n| 左宗棠的正面与背面 | 徐志频 | [下载](https://url89.ctfile.com/f/31084289-1357014202-e625fe?p=8866) |\n| 梵高传（全三部） | 史蒂文・奈菲/格雷戈里・怀特・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866) |\n| 陈寅恪与傅斯年（全新修订版） | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866) |\n| 大道当然 | 王石 | [下载](https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866) |\n| 俾斯麦传 | 艾密尔・鲁特维克 | [下载](https://url89.ctfile.com/f/31084289-1357013704-70c38a?p=8866) |\n| 别逗了，费曼先生 | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866) |\n| 11枚戒指禅：师菲尔·杰克逊自传 | 菲尔・杰克逊/休・迪里汉提 | [下载](https://url89.ctfile.com/f/31084289-1357013530-adcbea?p=8866) |\n| 绝非偶然 | 埃利奥特・阿伦森 | [下载](https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866) |\n| 上海滩大亨黄金荣 | 雅瑟/海华 | [下载](https://url89.ctfile.com/f/31084289-1357012954-39abe5?p=8866) |\n| 中国灯笼 | 格蕾丝・汤普森・西登 | [下载](https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866) |\n| 敢问路在何方 | 杨洁 | [下载](https://url89.ctfile.com/f/31084289-1357012768-569107?p=8866) |\n| 弗兰克尔自传：活出生命的意义 | 维克多・弗兰克尔 | [下载](https://url89.ctfile.com/f/31084289-1357012507-1ce2f9?p=8866) |\n| 创新者 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866) |\n| 巴菲特传（纪念版） | 罗杰・洛温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866) |\n| 在绝望中寻找希望 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866) |\n| 摩托日记 | 埃内斯托・切・格瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866) |\n| 我的奋斗 | 罗永浩 | [下载](https://url89.ctfile.com/f/31084289-1357011676-e33838?p=8866) |\n| 荣格自传：回忆・梦・思考 | 卡尔・古斯塔夫・荣格 | [下载](https://url89.ctfile.com/f/31084289-1357011127-2e5b54?p=8866) |\n| 道金斯传（全2册） | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357010911-d31838?p=8866) |\n| 张学良的政治生涯 | 傅虹霖 | [下载](https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866) |\n| 丰臣秀吉（套装共6册） | 吉川英治 | [下载](https://url89.ctfile.com/f/31084289-1357010482-f30192?p=8866) |\n| 岳飞传 | 邓广铭 | [下载](https://url89.ctfile.com/f/31084289-1357010176-918d2c?p=8866) |\n| 曼德施塔姆夫人回忆录 | 娜杰日达・曼德施塔姆 | [下载](https://url89.ctfile.com/f/31084289-1357009744-9ce9e3?p=8866) |\n| 人心至上：杜月笙 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866) |\n| 阿米尔·汗：我行我素 | 克里斯蒂娜・丹尼尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357009441-d75778?p=8866) |\n| 漫漫自由路 | 纳尔逊・曼德拉 | [下载](https://url89.ctfile.com/f/31084289-1357009420-a23ae5?p=8866) |\n| 阿桑奇自传：不能不说的秘密 | 朱利安・阿桑奇 | [下载](https://url89.ctfile.com/f/31084289-1357009390-bd0480?p=8866) |\n| 艾伦・图灵传 | 安德鲁・霍奇斯 | [下载](https://url89.ctfile.com/f/31084289-1357009402-9c2f8a?p=8866) |\n| 宽客人生：从物理学家到数量金融大师的传奇 | 伊曼纽尔・德曼 | [下载](https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866) |\n| 仁者无敌：林肯的政治天才 | 尤以丁 | [下载](https://url89.ctfile.com/f/31084289-1357009171-407c48?p=8866) |\n| 生命的烤火者：杨绛传 | 慕容素衣 | [下载](https://url89.ctfile.com/f/31084289-1357009006-32c036?p=8866) |\n| 人类群星闪耀时 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866) |\n| 李鸿章时代（1870-1895） | 王鼎杰 | [下载](https://url89.ctfile.com/f/31084289-1357008859-c5c5f2?p=8866) |\n| 為了活下去：脫北女孩朴研美 | 朴研美 | [下载](https://url89.ctfile.com/f/31084289-1357008844-4ce616?p=8866) |\n| 记忆小屋 | 托尼・朱特 | [下载](https://url89.ctfile.com/f/31084289-1357008715-f6ea28?p=8866) |\n| 鞋狗 | 菲尔・奈特 | [下载](https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866) |\n| 甘地自传 | 甘地 | [下载](https://url89.ctfile.com/f/31084289-1357008160-0e39e0?p=8866) |\n| 武则天正传 | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866) |\n| 在火星上退休：伊隆・马斯克传 | 亚当・杰佛逊  | [下载](https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866) |\n| 一个美国记者眼中的真实民国 | 哈雷特・阿班 | [下载](https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866) |\n| 希拉里传（纪念版） | 卡尔・伯恩斯坦  | [下载](https://url89.ctfile.com/f/31084289-1357007839-6bdb2b?p=8866) |\n| 希特勒传：从乞丐到元首 | 约翰・托兰 | [下载](https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866) |\n| 我还年轻，我还可以重新出发 | 唐骏 | [下载](https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866) |\n| 从大历史的角度读蒋介石日记 | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866) |\n| 彭德怀自传 | 彭德怀 | [下载](https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866) |\n| 民国大师细说中国历史（套装共12册） | 吕思勉/吴晗/傅斯年等 | [下载](https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866) |\n| 宋慈大传 | 王宏甲 | [下载](https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866) |\n| 女人当国：慈禧太后与晚清五十年 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866) |\n| 丰盛人生：安利创始人理查・狄维士自传 | 理查・狄维士 | [下载](https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866) |\n| 双脑记：认知神经科学之父加扎尼加自传 | 迈克尔・加扎尼加 | [下载](https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866) |\n| 阿里传：这是阿里巴巴的世界 | 波特・埃里斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866) |\n| 地产狂人许家印 | 魏昕 | [下载](https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866) |\n| 卡斯特罗传 | 克劳迪娅・福丽娅蒂 | [下载](https://url89.ctfile.com/f/31084289-1357007353-db4a05?p=8866) |\n| 库克：苹果的后乔布斯时代 | 冷湖 | [下载](https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866) |\n| 千古一战神：韩信 | 姜狼 | [下载](https://url89.ctfile.com/f/31084289-1357007233-0e5888?p=8866) |\n| 南渡北归（增订版）套装 | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866) |\n| 红圈：海豹突击队前狙击手总教练回忆录 | 布兰登・韦伯/约翰・大卫・曼  | [下载](https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866) |\n| 从20万到30亿：特朗普自传 | 唐纳德・特朗普 | [下载](https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866) |\n| 痛并快乐着 | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866) |\n| 唐浩明晚清三部曲 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866) |\n| 行者：一念一生 | 六小龄童 | [下载](https://url89.ctfile.com/f/31084289-1357007038-8367b2?p=8866) |\n| 雷军：创业没有时间表 | 胡以贵 | [下载](https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866) |\n| 霍布斯鲍姆自传 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866) |\n| 独自上场 | 李娜 | [下载](https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866) |\n| 晚清三大名臣发迹史（套装共6册） | 汪衍振 | [下载](https://url89.ctfile.com/f/31084289-1357006798-f5d92b?p=8866) |\n| 出轨的盛唐：武后（套装共3册） | 宗承灏 | [下载](https://url89.ctfile.com/f/31084289-1357006789-16cd14?p=8866) |\n| 宗庆后：万有引力原理 | 迟宇宙 | [下载](https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866) |\n| 笨人的成圣之道：曾国藩 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866) |\n| 冬日笔记 | 保罗·奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866) |\n| 上半场 | 刘建宏 | [下载](https://url89.ctfile.com/f/31084289-1357006687-7d3e9b?p=8866) |\n| 大清相国 | 王跃文 | [下载](https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866) |\n| 幻觉师 | 悲伤感应 | [下载](https://url89.ctfile.com/f/31084289-1357006555-2ab14e?p=8866) |\n| 彭大将军 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866) |\n| 艽野尘梦 | 陈渠珍 | [下载](https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866) |\n| 本·拉登传 | 简·萨森 | [下载](https://url89.ctfile.com/f/31084289-1357006387-47e6ef?p=8866) |\n| 百年袁家 | 王碧蓉 | [下载](https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866) |\n| 帝王师：张居正 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006345-151672?p=8866) |\n| 帝王师：刘伯温 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006339-c15817?p=8866) |\n| 成吉思汗：意志征服世界 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866) |\n| 陈寅恪的最后二十年 | 陆键东 | [下载](https://url89.ctfile.com/f/31084289-1357006321-90dcb0?p=8866) |\n| 荣氏百年：中国商业第一家族 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866) |\n| 红顶商人胡雪岩珍藏版大全集（套装共6册） | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866) |\n| 最后一个皇帝：袁世凯传 | 陶菊隐 | [下载](https://url89.ctfile.com/f/31084289-1357005958-558d42?p=8866) |\n| 穿布鞋的马云：决定阿里巴巴生死的27个节点 | 王利芬 | [下载](https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866) |\n| 五大传奇权谋人物传记（套装共5册） | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866) |\n| 大谋小计五十年：诸葛亮传 | 若虚 | [下载](https://url89.ctfile.com/f/31084289-1357005889-9b8514?p=8866) |\n| 埃隆·马斯克传：用特斯拉撬动世界 | 邱恒明 | [下载](https://url89.ctfile.com/f/31084289-1357005745-0f69ba?p=8866) |\n| 史玉柱自述：我的营销心得 | 优米网 | [下载](https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866) |\n| 知行合一王阳明 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866) |\n| 战神粟裕 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866) |\n| 慈禧全传 | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866) |\n| 民国总理段祺瑞 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866) |\n| 晚清有个曾国藩 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866) |\n| 晚清有个袁世凯 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866) |\n| 晚清有个李鸿章 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866) |\n| 活着就为征服世界 | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866) |\n| 明朝一哥王阳明 | 吕峥 | [下载](https://url89.ctfile.com/f/31084289-1357005256-ea4e88?p=8866) |\n| 世界因你不同：李开复自传 | 李开复 | [下载](https://url89.ctfile.com/f/31084289-1357005244-a5ac8a?p=8866) |\n| 大太监李莲英全传 | 王牧 | [下载](https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866) |\n| 父亲南怀瑾 | 南一鹏 | [下载](https://url89.ctfile.com/f/31084289-1357005178-1fd0b7?p=8866) |\n| 小米内幕 | 吴帝聪 | [下载](https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866) |\n| 蒋介石与现代中国 | 陶涵 | [下载](https://url89.ctfile.com/f/31084289-1357005121-9824a2?p=8866) |\n| 史蒂夫·乔布斯传 | 沃尔特·艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866) |\n| 曾国藩的正面与侧面 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866) |\n| 硅谷钢铁侠 | 阿什利・万斯 | [下载](https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866) |\n| 德川家康大全集 | 山冈庄八 | [下载](https://url89.ctfile.com/f/31084289-1357004860-5761a5?p=8866) |\n| 真实的汪精卫 | 林思云 | [下载](https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866) |\n| 胡雪岩（全三册） | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866) |\n| 中国误会了袁世凯 | 吕峥 | [下载](https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866) |\n"
  },
  {
    "path": "md/伦理.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 伦理\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 伦理学知性改进论 | 斯宾诺莎 | [下载](https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866) |\n| 幸福哲学书 | 格雷琴・鲁宾 | [下载](https://url89.ctfile.com/f/31084289-1357036993-8eb226?p=8866) |\n| 爱的博弈 | 约翰・戈特曼 | [下载](https://url89.ctfile.com/f/31084289-1357021213-4c529b?p=8866) |\n| 陌生人溺水 | 拉里莎・麦克法夸尔 | [下载](https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866) |\n| 你会杀死那个胖子吗？ | 戴维・埃德蒙兹 | [下载](https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866) |\n"
  },
  {
    "path": "md/伦理学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 伦理学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 理与人（二十世纪西方哲学经典） | 德里克・帕菲特 | [下载](https://url89.ctfile.com/f/31084289-1356985840-14e9cf?p=8866) |\n"
  },
  {
    "path": "md/估值.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 估值\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 估值：难点、解决方案及相关案例（原书第3版） | 阿斯瓦斯・达莫达兰 | [下载](https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866) |\n| 故事与估值 | 阿斯沃斯・达摩达兰 | [下载](https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866) |\n| 学会估值，轻松投资 | 阿斯沃斯・达摩达兰 | [下载](https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866) |\n"
  },
  {
    "path": "md/体育.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 体育\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 体育健身训练丛书（套装全10册） | 阿诺德·G· 尼尔森等 | [下载](https://url89.ctfile.com/f/31084289-1375495096-de8ca5?p=8866) |\n| 真实科比 | 罗兰・拉赞比 | [下载](https://url89.ctfile.com/f/31084289-1357048894-1929bd?p=8866) |\n| 李小龙遗作：你从未见过的功夫之王（套装共3册） | 李小龙/约翰・里特 | [下载](https://url89.ctfile.com/f/31084289-1357029949-2bcb8f?p=8866) |\n| 当体育遇上商业 | 乌尔里克・瓦格纳等 | [下载](https://url89.ctfile.com/f/31084289-1357025614-d87bae?p=8866) |\n"
  },
  {
    "path": "md/佛学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 佛学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 前行笔记之耕耘心田 | 希阿荣博堪布 | [下载](https://url89.ctfile.com/f/31084289-1375491703-fada1f?p=8866) |\n| 佛系：中国人的生活智慧 | 果麦文化 | [下载](https://url89.ctfile.com/f/31084289-1375493296-11aa38?p=8866) |\n| 阿含经校注（全九册） | 恒强法师 | [下载](https://url89.ctfile.com/f/31084289-1375509343-bdaff3?p=8866) |\n| 洞见：从科学到哲学，打开人类的认知真相 | 罗伯特・赖特 | [下载](https://url89.ctfile.com/f/31084289-1356999022-8e84da?p=8866) |\n| 东方的智慧 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866) |\n| 坛经（全本全注全译） | 尚荣 | [下载](https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866) |\n| 中国佛教通史（套装十五卷） | 赖永海 | [下载](https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866) |\n| 洛阳伽蓝记（全本全注全译） | 尚荣译注 | [下载](https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866) |\n| 禅者的初心 | 铃木俊隆 | [下载](https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866) |\n| 藏传佛教极简史 | 德昆 | [下载](https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866) |\n| 佛陀传 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357029292-270b2e?p=8866) |\n| 正念的奇迹 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357029160-04ba40?p=8866) |\n| 佛系：如何成为一个快乐的人 | 草薙龙瞬 | [下载](https://url89.ctfile.com/f/31084289-1357022269-176d06?p=8866) |\n| 西藏生死书 | 索甲仁波切 | [下载](https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866) |\n| 慧灯之光（全8册） | 慈诚罗珠 | [下载](https://url89.ctfile.com/f/31084289-1357006576-5bbcbf?p=8866) |\n"
  },
  {
    "path": "md/佛教.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 佛教\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 佛陀相佑 | 侯旭东 | [下载](https://url89.ctfile.com/f/31084289-1357050952-03df2b?p=8866) |\n| 幸福来自绝对的信任 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357036834-77bd7f?p=8866) |\n| 印度佛教史 | 平川彰 | [下载](https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866) |\n| 楞严经 | 赖永海 | [下载](https://url89.ctfile.com/f/31084289-1357022248-843010?p=8866) |\n| Why Buddhism is True | Robert Wright | [下载](https://url89.ctfile.com/f/31084289-1357019161-b5bee8?p=8866) |\n| 淡定的智慧 | 弘一法师 | [下载](https://url89.ctfile.com/f/31084289-1357017016-132f58?p=8866) |\n| 世界佛教通史（套装共14卷） | 周贵华等 | [下载](https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866) |\n"
  },
  {
    "path": "md/佛法.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 佛法\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 活在此时此刻 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866) |\n| 好好说话 | 学诚法师 | [下载](https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866) |\n"
  },
  {
    "path": "md/侦探.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 侦探\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 物语系列：倾物语 | 西尾维新 | [下载](https://url89.ctfile.com/f/31084289-1375491532-54d69b?p=8866) |\n| 物语系列：猫物语.白 | 西尾维新 | [下载](https://url89.ctfile.com/f/31084289-1375491559-e90937?p=8866) |\n| 物语系列：猫物语.黑 | 西尾维新 | [下载](https://url89.ctfile.com/f/31084289-1375491565-9e0377?p=8866) |\n| 狐狸侦探系列（3册） | 弗朗齐斯卡・比尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375503268-1bec63?p=8866) |\n| 沉默的羔羊四部曲 | 托马斯・哈里斯 | [下载](https://url89.ctfile.com/f/31084289-1375507501-9415e7?p=8866) |\n| 天机十二宫（套装2册） | 王超 | [下载](https://url89.ctfile.com/f/31084289-1375513327-58c5bc?p=8866) |\n| 侯大利刑侦笔记5 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1375513426-83f70a?p=8866) |\n| 福尔摩斯探案全集（果麦经典） | 阿瑟・柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1356998860-dbddd1?p=8866) |\n| 大英图书馆·侦探小说黄金时代经典作品集（第一辑） | 梅维斯・多里尔・海等 | [下载](https://url89.ctfile.com/f/31084289-1356995047-3a5eaf?p=8866) |\n| 哈佛经济学家推理系列（套装共4册） | 马歇尔・杰文斯 | [下载](https://url89.ctfile.com/f/31084289-1356991537-2fc1c4?p=8866) |\n| 冤罪代码 | 纪遊 | [下载](https://url89.ctfile.com/f/31084289-1356991234-3be92d?p=8866) |\n| 重返犯罪现场（共4册） | 宇尘 | [下载](https://url89.ctfile.com/f/31084289-1356990115-eecd7e?p=8866) |\n| 推理计划 | 宁城荒 | [下载](https://url89.ctfile.com/f/31084289-1356985519-f13a9a?p=8866) |\n| 生死局 | 江海潮生 | [下载](https://url89.ctfile.com/f/31084289-1356985048-e4e04b?p=8866) |\n| 埃勒里·奎因（30本合集） | 埃勒里・奎因 | [下载](https://url89.ctfile.com/f/31084289-1357051606-c33e83?p=8866) |\n| 达希尔•哈米特系列（共8册） | 达希尔・哈米特 | [下载](https://url89.ctfile.com/f/31084289-1357050382-1b6108?p=8866) |\n| 我消失的影子 | 高博洋 | [下载](https://url89.ctfile.com/f/31084289-1357048903-6588d8?p=8866) |\n| 福尔摩斯先生 | 米奇・库林 | [下载](https://url89.ctfile.com/f/31084289-1357047973-333dca?p=8866) |\n| 白猿客栈 | 猎衣扬 | [下载](https://url89.ctfile.com/f/31084289-1357047937-74e8c8?p=8866) |\n| 弹弓神警 | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1357046815-9f9c8d?p=8866) |\n| 盗影 | 时晨 | [下载](https://url89.ctfile.com/f/31084289-1357046365-a83ffb?p=8866) |\n| 八卦侦探 | 姜木水 | [下载](https://url89.ctfile.com/f/31084289-1357046179-deec2b?p=8866) |\n| 青崎有吾推理作品集：里染天马系列（套装全4册） | 青崎有吾 | [下载](https://url89.ctfile.com/f/31084289-1357040971-7442fe?p=8866) |\n| 丝之屋 | 安东尼・赫洛维滋 | [下载](https://url89.ctfile.com/f/31084289-1357040410-cac2ae?p=8866) |\n| 阿加莎·克里斯蒂侦探小说大全集（全85册） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357036642-5cddab?p=8866) |\n| 京极夏彦百鬼夜行中短篇集（套装5册） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357033678-0e267f?p=8866) |\n| 马普尔小姐探案全集 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357029085-8c4c31?p=8866) |\n| 大侦探波洛探案全集 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357026937-aadc2c?p=8866) |\n| 天使安魂三部曲 | 安德鲁・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357022779-c4d931?p=8866) |\n| 岛田庄司精选作品合集（共14册） | 岛田庄司 | [下载](https://url89.ctfile.com/f/31084289-1357022599-4320ac?p=8866) |\n| 阿加莎的毒药 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357020940-286d4a?p=8866) |\n| 松本清张推理悬疑典藏版合集（套装共7册） | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357018183-4e0feb?p=8866) |\n| 律政先锋 | 蒂姆・维卡里 | [下载](https://url89.ctfile.com/f/31084289-1357017505-4cd655?p=8866) |\n| 阿加莎·克里斯蒂作品集（套装共45册） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357015663-b5afa0?p=8866) |\n| 华生手稿 | 邦妮・麦克伯德 | [下载](https://url89.ctfile.com/f/31084289-1357014928-2d50ce?p=8866) |\n| 重生 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357008217-788327?p=8866) |\n| 福尔摩斯探案全集（插图新注新译本） | 亚瑟·柯南·道尔 | [下载](https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866) |\n| 连环罪：心里有诡系列（上下册） | 墨绿青苔 | [下载](https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866) |\n"
  },
  {
    "path": "md/俄国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 俄国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 末代沙皇：尼古拉二世的最后503天 | 罗伯特・瑟维斯 | [下载](https://url89.ctfile.com/f/31084289-1375491478-017375?p=8866) |\n| 罪与罚（名著名译丛书） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866) |\n| 死魂灵（名著名译丛书） | 果戈理 | [下载](https://url89.ctfile.com/f/31084289-1357035190-455dfe?p=8866) |\n| 上尉的女儿（企鹅经典） | 普希金 | [下载](https://url89.ctfile.com/f/31084289-1357033594-5c7f0b?p=8866) |\n| 战争与和平（名著名译丛书） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866) |\n| 当代英雄（企鹅经典） | 米哈伊尔・莱蒙托夫 | [下载](https://url89.ctfile.com/f/31084289-1357032583-5401e7?p=8866) |\n| 死屋手记（企鹅经典） | 陀思妥耶夫斯基 | [下载](链接未找到) |\n| 鬼 | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357027531-e0ac8e?p=8866) |\n| 鱼王 | 维克托・阿斯塔菲耶夫 | [下载](https://url89.ctfile.com/f/31084289-1357008928-ed9c64?p=8866) |\n| 变色龙（译文名著精选） | 安东・契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357007737-3fd6bc?p=8866) |\n| 钢铁是怎样炼成的（译文名著精选） | 尼・奥斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357005319-d938bf?p=8866) |\n"
  },
  {
    "path": "md/俄国史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 俄国史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 死屋 | 丹尼尔・比尔 | [下载](https://url89.ctfile.com/f/31084289-1357033177-b3ac59?p=8866) |\n| 通往权力之路：叶卡捷琳娜大帝 | 罗伯特·K·迈锡 | [下载](https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866) |\n"
  },
  {
    "path": "md/俄罗斯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 俄罗斯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 俄国史译（全7册） | 伊利娜・谢尔盖耶夫娜・雷巴乔诺克等 | [下载](https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866) |\n| 伏特加政治 | 马克・劳伦斯・施拉德 | [下载](https://url89.ctfile.com/f/31084289-1375495120-2dd6c4?p=8866) |\n| 群星灿烂的年代 | 伊・伊・巴纳耶夫 | [下载](https://url89.ctfile.com/f/31084289-1375499674-569481?p=8866) |\n| 记忆记忆 | 玛丽亚・斯捷潘诺娃 | [下载](https://url89.ctfile.com/f/31084289-1375511308-7680dd?p=8866) |\n| 罗曼诺夫皇朝 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1375512334-c3c90b?p=8866) |\n| 俄罗斯文学（牛津通识读本） | 卡特里奥娜・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357000954-afc95e?p=8866) |\n| 狗心 | 米・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357000375-39b101?p=8866) |\n| 果戈理文集（全7册） | 果戈理 | [下载](https://url89.ctfile.com/f/31084289-1357051000-119a99?p=8866) |\n| 日瓦戈医生（名著名译丛书） | 帕斯捷尔纳克 | [下载](https://url89.ctfile.com/f/31084289-1357050841-ba42c6?p=8866) |\n| 日瓦戈医生 | 鲍里斯・帕斯捷尔纳克 | [下载](https://url89.ctfile.com/f/31084289-1357049863-602d2e?p=8866) |\n| 金蔷薇（果麦经典） | 康・帕乌斯托夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357048282-b6e283?p=8866) |\n| 古拉格群岛 | 亚历山大・索尔仁尼琴 | [下载](https://url89.ctfile.com/f/31084289-1357045198-ec8982?p=8866) |\n| 圣彼得堡 | 乔纳森・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357045036-3a0aa2?p=8866) |\n| 金蔷薇（译文经典） | 帕乌斯托夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357042630-5634d4?p=8866) |\n| 大师和玛格丽特（名著名译丛书） | 布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357034545-231c0d?p=8866) |\n| 契诃夫短篇小说选（企鹅经典） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357033195-5988c1?p=8866) |\n| 大师与玛格丽特 | 布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357031275-8620c1?p=8866) |\n| 孤独的帝国 | 波波・洛 | [下载](https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866) |\n| 七个被绞死的人 | 安德烈耶夫 | [下载](https://url89.ctfile.com/f/31084289-1357021981-96c437?p=8866) |\n| 燃烧的天使 | 瓦・勃留索夫 | [下载](https://url89.ctfile.com/f/31084289-1357021813-6662d1?p=8866) |\n| 阿尔谢尼耶夫的一生 | 伊万・布宁 | [下载](https://url89.ctfile.com/f/31084289-1357021804-a41a4f?p=8866) |\n| 娜塔莎之舞：俄罗斯文化史 | 奥兰多・费吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357019431-5c55a7?p=8866) |\n| 圣彼得堡冬宫博物馆 | 亚历山大・弗雷格伦特 | [下载](https://url89.ctfile.com/f/31084289-1357019044-36223b?p=8866) |\n| 活下去，并且要记住 | 拉斯普京 | [下载](https://url89.ctfile.com/f/31084289-1357015465-8edfc5?p=8866) |\n| 癌症楼 | 亚历山大・索尔仁尼琴 | [下载](https://url89.ctfile.com/f/31084289-1357005730-e81dcc?p=8866) |\n"
  },
  {
    "path": "md/保健.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 保健\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 健康守护全书 | 梁湛威等 | [下载](https://url89.ctfile.com/f/31084289-1375499209-1c9f53?p=8866) |\n| 以武论道：李小龙的功夫心法（套装共5册） | 李小龙 | [下载](https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866) |\n| 神经科医生有话要说 | 吴洵昳 | [下载](https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866) |\n| 萨提亚冥想 | 约翰・贝曼 | [下载](https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866) |\n| 很老很老的老偏方大全集（共10册） | 胡丽娟等 | [下载](https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866) |\n| 医目了然 | 懒兔子 | [下载](https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866) |\n| 和谐两性：从了解对方到相互吸引（套装共3册） | 埃德蒙・沙夫茨伯里 | [下载](https://url89.ctfile.com/f/31084289-1357029880-48513c?p=8866) |\n| 肿瘤防治科普丛书（套装共13册） | 重庆市肿瘤医院 | [下载](https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866) |\n| 摆脱：失眠、抑郁、焦虑（套装共3册） | 凯特・米德尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357019281-098512?p=8866) |\n| 抽烟喝酒防癌书 | 柳垂亮/李万瑶  | [下载](https://url89.ctfile.com/f/31084289-1357007020-4eeab1?p=8866) |\n"
  },
  {
    "path": "md/保险.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 保险\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 保险的未来 | 王和 | [下载](https://url89.ctfile.com/f/31084289-1356991489-b536e1?p=8866) |\n| 保险自选手册 | 许春波 | [下载](https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866) |\n| 大额保单操作实务 | 曾祥霞 | [下载](https://url89.ctfile.com/f/31084289-1357049410-6a8850?p=8866) |\n| 人人都该买保险 | 刘彦斌 | [下载](https://url89.ctfile.com/f/31084289-1357044769-0ccba8?p=8866) |\n| 你的第一本保险指南 | 槽叔 | [下载](https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866) |\n"
  },
  {
    "path": "md/信仰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 信仰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 恶人传 | 约翰・班扬 | [下载](https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866) |\n| 钟爱华传：洋医生的中国心 | 约翰・波洛克 | [下载](https://url89.ctfile.com/f/31084289-1357023157-fd9cc5?p=8866) |\n| 冈底斯遗书 | 陈庆港 | [下载](https://url89.ctfile.com/f/31084289-1357011769-d9d5d5?p=8866) |\n"
  },
  {
    "path": "md/信息.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 信息\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 信息技术简史 | 吕廷杰等 | [下载](https://url89.ctfile.com/f/31084289-1357043158-2c151c?p=8866) |\n| 信息背后的信息 | 马克斯・巴泽曼 | [下载](https://url89.ctfile.com/f/31084289-1357028227-08a419?p=8866) |\n| 信息简史 | 詹姆斯·格雷克  | [下载](https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866) |\n"
  },
  {
    "path": "md/信贷.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 信贷\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一本书看透信贷 | 何华平 | [下载](https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866) |\n| 信贷的逻辑与常识 | 刘元庆 | [下载](https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866) |\n"
  },
  {
    "path": "md/修养.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 修养\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 极简主义：活出生命真意 | 乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯  | [下载](https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866) |\n"
  },
  {
    "path": "md/修行.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 修行\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人生十二法则 | 乔丹・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866) |\n| 正念的奇迹 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357029160-04ba40?p=8866) |\n| 冥想 | 斯瓦米・拉玛 | [下载](https://url89.ctfile.com/f/31084289-1357019578-9ee5ca?p=8866) |\n| 淡定的智慧 | 弘一法师 | [下载](https://url89.ctfile.com/f/31084289-1357017016-132f58?p=8866) |\n"
  },
  {
    "path": "md/借贷.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 借贷\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 借钱：利息、债务和资本的故事 | 查尔斯・盖斯特 | [下载](https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866) |\n"
  },
  {
    "path": "md/债券.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 债券\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 可转债投资魔法书（第2版） | 安道全 | [下载](https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866) |\n| 债券投资实战 | 龙红亮 | [下载](https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866) |\n"
  },
  {
    "path": "md/健康.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 健康\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 疲劳自救手册 | 玛丽・伯吉斯/特鲁迪・查尔德 | [下载](https://url89.ctfile.com/f/31084289-1375497475-e986a2?p=8866) |\n| 健康守护全书 | 梁湛威等 | [下载](https://url89.ctfile.com/f/31084289-1375499209-1c9f53?p=8866) |\n| 拯救你的睡眠 | 阿里安娜・赫芬顿 | [下载](https://url89.ctfile.com/f/31084289-1375499422-0ad975?p=8866) |\n| 戒糖：改变一生的科学饮食法 | 初夏之菡 | [下载](https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866) |\n| 好孕，从卵子开始 | 瑞贝卡・费特 | [下载](https://url89.ctfile.com/f/31084289-1375500655-c5e536?p=8866) |\n| 一个健康吃货的自我修养（共4册） | 威廉・李博士 | [下载](https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866) |\n| 科学休息 | 亚历克斯・索勇－金・庞 | [下载](https://url89.ctfile.com/f/31084289-1375505929-497bb9?p=8866) |\n| 餐桌上的危机 | 玛丽安・麦克纳 | [下载](https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866) |\n| 张文鹤护肤指南 | 张文鹤 | [下载](https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866) |\n| 一起来粉碎朋友圈养生谣言 | 好奇博士团队 | [下载](https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866) |\n| 你想知道的生酮饮食错误 | 米尔萨德・哈西奇 | [下载](https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866) |\n| 伴你一生的睡眠指导书 | 爱丽丝・格雷戈里 | [下载](https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866) |\n| 老爸评测：你的健康呵护指南 | 老爸评测 | [下载](https://url89.ctfile.com/f/31084289-1375512535-af72f0?p=8866) |\n| 干掉失眠 | 科琳・恩斯特朗姆/阿丽莎・布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866) |\n| 科学跑步 | 罗炜樑 | [下载](https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866) |\n| 肥胖代码 | 冯子新 | [下载](https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866) |\n| 姿势跑法 | 尼古拉斯・罗曼诺夫/约翰・罗伯逊 | [下载](https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866) |\n| 这样减肥不反弹 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866) |\n| 优雅老去 | 杰罗尔德・温特 | [下载](https://url89.ctfile.com/f/31084289-1356990655-a922dd?p=8866) |\n| 不吃糖的理由 | 加里・陶布斯 | [下载](https://url89.ctfile.com/f/31084289-1356989851-a15964?p=8866) |\n| 一口一口“吃掉”你 | 生命时报 | [下载](https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866) |\n| 深度营养 | 凯瑟琳・沙纳汉 | [下载](https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866) |\n| 神经科医生有话要说 | 吴洵昳 | [下载](https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866) |\n| 无伤跑法 | 戴剑松/郑家轩 | [下载](https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866) |\n| 闪电增肌 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866) |\n| 健身笔记 | 叔贵 | [下载](https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866) |\n| 久坐不伤身 | 哈丽特・格里菲 | [下载](https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866) |\n| 自愈力的真相 | 乔・马钱特 | [下载](https://url89.ctfile.com/f/31084289-1357045252-1206fc?p=8866) |\n| 产科男医生手记 | 田吉顺 | [下载](https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866) |\n| 让我们灵魂激荡身体欢愉 | 任黎明 | [下载](https://url89.ctfile.com/f/31084289-1357043866-18019c?p=8866) |\n| 晓肚知肠 | 段云峰 | [下载](https://url89.ctfile.com/f/31084289-1357043326-134f07?p=8866) |\n| 女生呵护指南 | 六层楼 | [下载](https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866) |\n| 健康零食：知道这些就够了 | 戴尔・沃勒 | [下载](https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866) |\n| 神奇的肌肤能量书 | 金柏莉・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866) |\n| 你是你吃出来的 | 夏萌 | [下载](https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866) |\n| 我们为什么会发胖 | 盖里・陶比斯 | [下载](https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866) |\n| 去你的脂肪 | 格兰特・斯科菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866) |\n| 认识身体2 | 加文・弗朗西斯 | [下载](https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866) |\n| 主食芯片 | 鸿涛 | [下载](https://url89.ctfile.com/f/31084289-1357032313-6abb7f?p=8866) |\n| 食療聖經 | Michael Greger, MD | [下载](https://url89.ctfile.com/f/31084289-1357031794-797945?p=8866) |\n| 谷物大脑 | 戴维・珀尔马特/戴维・珀尔马特 | [下载](https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866) |\n| 菌群大脑 | 戴维・珀尔马特/克里斯廷・洛伯格 | [下载](https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866) |\n| 急救，比医生快一步 | 贾大成 | [下载](https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866) |\n| 饮食的迷思 | 蒂姆・斯佩克特 | [下载](https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866) |\n| 皮肤的秘密 | 耶尔・阿德勒  | [下载](https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866) |\n| 破解生死大数据 | 杰瑞米・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866) |\n| 长寿的基因 | 普雷斯顿・埃斯特普 | [下载](https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866) |\n| 中医祖传的那点儿东西1 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866) |\n| 中医祖传的那点儿东西2 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357023928-751840?p=8866) |\n| 明年更年轻 | 克里斯・克劳利/亨利・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866) |\n| 救命之方 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357023430-dd9f1a?p=8866) |\n| 再见，健身房 | 高宇 | [下载](https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866) |\n| 太极跑：不费力、无伤害的革命性跑步法 | 丹尼・德雷尔 | [下载](https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866) |\n| 每周健身4小时 | 蒂莫西・费里斯 | [下载](https://url89.ctfile.com/f/31084289-1357021222-0e5913?p=8866) |\n| 认识身体 | 加文・弗朗西斯 | [下载](https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866) |\n| 冥想 | 斯瓦米・拉玛 | [下载](https://url89.ctfile.com/f/31084289-1357019578-9ee5ca?p=8866) |\n| 睡眠革命 | 尼克・利特尔黑尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866) |\n| 肠子的小心思 | 朱莉娅・恩德斯 | [下载](https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866) |\n| 这书能让你戒烟 | 亚伦・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357011292-5c7edf?p=8866) |\n| 救护车到来前，你能做什么？ | 贾大成 | [下载](https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866) |\n| 谣言粉碎机系列（套装共3册） | 果壳 | [下载](https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866) |\n| 性学观止（上下册） | 贺兰特・凯查杜里安 | [下载](https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866) |\n| 生命的重建 | 露易丝·海 | [下载](https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866) |\n| 众病之王：癌症传 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866) |\n| 崔玉涛：宝贝健康公开课 | 崔玉涛 | [下载](https://url89.ctfile.com/f/31084289-1357004908-0271f7?p=8866) |\n"
  },
  {
    "path": "md/健身.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 健身\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 体育健身训练丛书（套装全10册） | 阿诺德·G· 尼尔森等 | [下载](https://url89.ctfile.com/f/31084289-1375495096-de8ca5?p=8866) |\n| 骨骼跑步法 | 铃木清和 | [下载](https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866) |\n| 自律给你自由 | 约克・威林克 | [下载](https://url89.ctfile.com/f/31084289-1375513741-adf394?p=8866) |\n| 我的最后一本减肥书 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866) |\n| 这样减肥不反弹 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866) |\n| 颜值和身材一个都不能少（套装共10册） | 森拓郎等 | [下载](https://url89.ctfile.com/f/31084289-1356983329-e2252e?p=8866) |\n| 闪电增肌 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866) |\n| 拉伸：适合全家人的健身与运动 | 杨克新 | [下载](https://url89.ctfile.com/f/31084289-1357051009-b7847b?p=8866) |\n| 健身笔记 | 叔贵 | [下载](https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866) |\n| 很老很老的老偏方大全集（共10册） | 胡丽娟等 | [下载](https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866) |\n| 学会呼吸 | 帕特里克・麦基翁 | [下载](https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866) |\n| 力量训练减脂圣经 | 尼克・特米勒罗 | [下载](https://url89.ctfile.com/f/31084289-1357033306-9ad46f?p=8866) |\n| 李小龙遗作：你从未见过的功夫之王（套装共3册） | 李小龙/约翰・里特 | [下载](https://url89.ctfile.com/f/31084289-1357029949-2bcb8f?p=8866) |\n| 郝鹏飞极简派健身 | 郝鹏飞 | [下载](https://url89.ctfile.com/f/31084289-1357024366-198ca6?p=8866) |\n| 肿瘤防治科普丛书（套装共13册） | 重庆市肿瘤医院 | [下载](https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866) |\n| 再见，健身房 | 高宇 | [下载](https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866) |\n| 力量训练套装 | 马克・瑞比拖/安迪・贝克 | [下载](https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866) |\n| 你可以跑得更快 | 徐国峰 | [下载](https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866) |\n| 拉伸运动系统训练（全彩图解第2版） | 阿诺德·G.尼尔森/尤卡・科科宁 | [下载](https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866) |\n| 每周健身4小时 | 蒂莫西・费里斯 | [下载](https://url89.ctfile.com/f/31084289-1357021222-0e5913?p=8866) |\n| 施瓦辛格健身全书 | 阿诺德・施瓦辛格 | [下载](https://url89.ctfile.com/f/31084289-1357021087-b4c0c0?p=8866) |\n| 精准拉伸 | 克里斯蒂安・博格 | [下载](https://url89.ctfile.com/f/31084289-1357020916-4b8c4a?p=8866) |\n| 无器械健身 | 马克・劳伦 | [下载](https://url89.ctfile.com/f/31084289-1357020154-710555?p=8866) |\n| 囚徒健身全集（共4册） | 保罗・威德 | [下载](https://url89.ctfile.com/f/31084289-1357019035-5dda2c?p=8866) |\n| 一平米健身：硬派健身 | 斌卡 | [下载](https://url89.ctfile.com/f/31084289-1357005727-03824e?p=8866) |\n"
  },
  {
    "path": "md/傅雷.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 傅雷\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 约翰·克利斯朵夫（全4册） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1357014469-ed82dc?p=8866) |\n"
  },
  {
    "path": "md/儒学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 儒学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 王安石全集：临川先生文集 | 王水照主编 | [下载](https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866) |\n| 法言（全本全注全译） | 扬雄 | [下载](https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866) |\n| 儒学小史 | 干春松 | [下载](https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866) |\n| 南怀瑾四书精讲（套装共11册） | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357029571-16066b?p=8866) |\n"
  },
  {
    "path": "md/儒家.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 儒家\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 梁启超修身三书 | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1356996163-d09e12?p=8866) |\n| 瞩望新轴心时代 | 汤一介 | [下载](https://url89.ctfile.com/f/31084289-1357030210-9be232?p=8866) |\n| 华杉讲透《大学中庸》 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357029907-e28d12?p=8866) |\n| 传习录 | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866) |\n"
  },
  {
    "path": "md/儿童.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 儿童\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 怪奇故事集 | 罗尔德・达尔 | [下载](https://url89.ctfile.com/f/31084289-1375493806-5ad7eb?p=8866) |\n| 汤汤奇幻童年故事本（套装6册） | 汤汤 | [下载](https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866) |\n| 杜利特医生的历险故事（套装共12册） | 休・洛夫廷 | [下载](https://url89.ctfile.com/f/31084289-1375498603-bd23d3?p=8866) |\n| 动物小说大王沈石溪·品藏书系（升级版）（套装36册） | 沈石溪 | [下载](https://url89.ctfile.com/f/31084289-1375499866-7f7659?p=8866) |\n| 给孩子的天工开物·绘本版（全三册） | 一页书 | [下载](https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866) |\n| 周锐幽默三国、西游记、水浒传、红楼梦系列套装4本 | 周锐 | [下载](https://url89.ctfile.com/f/31084289-1356985975-9f41e8?p=8866) |\n| 黑暗物质三部曲 | 菲利普・普尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866) |\n| 梅格时空大冒险（套装全5册） | 马德琳・英格 | [下载](https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866) |\n| 儿童教育心理学 | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866) |\n| 不同的音调 | 约翰・唐文/凯伦・祖克 | [下载](https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866) |\n| 21招，让孩子独立 | 叶壮 | [下载](https://url89.ctfile.com/f/31084289-1357040317-3e999a?p=8866) |\n| 爱、罪疚与修复 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037749-b31208?p=8866) |\n| 儿童精神分析 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037638-0eb9b3?p=8866) |\n| 儿童分析的故事 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866) |\n| 故宫怪兽（套装共3册） | 常怡 | [下载](https://url89.ctfile.com/f/31084289-1357037149-71d4a1?p=8866) |\n| 嫉羡与感恩 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866) |\n| 献给艾拉·格雷的歌 | 大卫・阿尔蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866) |\n| 跟随周恩来过草地 | 张文宝 | [下载](https://url89.ctfile.com/f/31084289-1357032232-26530e?p=8866) |\n| 造梦师（套装共4册） | 陈佳同 | [下载](https://url89.ctfile.com/f/31084289-1357032256-0c0e76?p=8866) |\n| 怪医杜立德（果麦经典） | 休・洛夫廷 | [下载](https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866) |\n| 365夜故事：春夏秋冬（套装共4册） | 叶圣陶/赵冰波等 | [下载](https://url89.ctfile.com/f/31084289-1357027690-6c12c9?p=8866) |\n| 穿堂风 | 曹文轩 | [下载](https://url89.ctfile.com/f/31084289-1357024801-ced57d?p=8866) |\n| 圣诞女孩 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866) |\n| 绿野仙踪 | 莱曼・弗兰克・鲍姆  | [下载](https://url89.ctfile.com/f/31084289-1357023013-03a6a2?p=8866) |\n| 奥吉和我 | 帕拉西奥 | [下载](https://url89.ctfile.com/f/31084289-1357020976-b53ede?p=8866) |\n| 我也有过小时候 | 任溶溶 | [下载](https://url89.ctfile.com/f/31084289-1357020673-497c78?p=8866) |\n| 绝境狼王（全6册） | 凯瑟琳・拉丝基 | [下载](https://url89.ctfile.com/f/31084289-1357017742-595b13?p=8866) |\n| 伯吉斯野外生存系列（套装四册） | 桑顿・伯吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866) |\n| 从前有条喷火龙（第一辑） | 凯特・麦克马伦/比尔・巴索 | [下载](https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866) |\n| 夏洛书屋电子书大套装（套装共27本） | Digital Lab | [下载](https://url89.ctfile.com/f/31084289-1357015618-ef6dd5?p=8866) |\n| 游戏力 | 劳伦斯・科恩 | [下载](https://url89.ctfile.com/f/31084289-1357014142-23eb93?p=8866) |\n| 林汉达中国故事经典套装（图文版） | 林汉达 | [下载](https://url89.ctfile.com/f/31084289-1357010947-e40f70?p=8866) |\n| 兔子共和国（果麦经典） | 理查德・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357008853-deb5e3?p=8866) |\n| 好心眼儿巨人 | 罗尔德・达尔  | [下载](https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866) |\n| 荒野求生少年生存小说系列（全6册） | 贝尔·格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866) |\n| 完整的成长：儿童生命的自我创造 | 孙瑞雪 | [下载](https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866) |\n| 谁拿走了孩子的幸福 | 李跃儿 | [下载](https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866) |\n"
  },
  {
    "path": "md/元宇宙.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 元宇宙\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 元宇宙时代：颠覆未来的技术变革与商业图景 | 金相允 | [下载](https://url89.ctfile.com/f/31084289-1375491193-14b1ac?p=8866) |\n"
  },
  {
    "path": "md/先秦.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 先秦\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 吴越春秋（全本全注全译） | 崔冶译注 | [下载](https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866) |\n| 穆天子传（全本全注全译） | 高永旺译注 | [下载](https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866) |\n| 孔子大历史 | 李硕 | [下载](https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866) |\n| 先秦文体与话语方式研究 | 过常宝 | [下载](https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866) |\n| 吕氏春秋译注（修订本） | 张双棣 | [下载](https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866) |\n| 先秦古国志 | 林屋公子 | [下载](https://url89.ctfile.com/f/31084289-1357007686-218743?p=8866) |\n| 先秦凶猛 （全五册） | 潇水 | [下载](https://url89.ctfile.com/f/31084289-1357007683-6430e6?p=8866) |\n| 头颅中国：另一个角度看先秦 | 黄摩崖 | [下载](https://url89.ctfile.com/f/31084289-1357007314-f6145e?p=8866) |\n"
  },
  {
    "path": "md/先秦史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 先秦史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西周的灭亡（增订本） | 李峰 | [下载](https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866) |\n| 燕国八百年 | 彭华 | [下载](https://url89.ctfile.com/f/31084289-1357029868-03d746?p=8866) |\n"
  },
  {
    "path": "md/党史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 党史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中国共产党的九十年 | 中共中央党史研究室 | [下载](https://url89.ctfile.com/f/31084289-1356992086-13abd2?p=8866) |\n| 红色三部曲（套装3册） | 叶永烈 | [下载](https://url89.ctfile.com/f/31084289-1357008625-ff83ec?p=8866) |\n| 红色账簿 | 马祥林 | [下载](https://url89.ctfile.com/f/31084289-1357006660-1bfd15?p=8866) |\n"
  },
  {
    "path": "md/入门.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 入门\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 政治学通识 | 包刚升 | [下载](https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866) |\n| 给投资新手的极简股票课 | lip师兄 | [下载](https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866) |\n| 经济学要义 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357044937-083bb7?p=8866) |\n"
  },
  {
    "path": "md/全球.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 全球\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 吉姆·罗杰斯的大预测 | 吉姆・罗杰斯 | [下载](https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866) |\n| 全球化简史 | 杰弗里・萨克斯 | [下载](https://url89.ctfile.com/f/31084289-1375499440-2ab9ca?p=8866) |\n| 美国国家地理全球史第一辑（套装共4册） | 美国国家地理学会 | [下载](https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866) |\n| 美国国家地理全球史第二辑（套装共6册） | 美国国家地理学会 | [下载](https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866) |\n| 增长危机 | 丹比萨・莫约 | [下载](https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866) |\n| 世界不是平的 | 简世勋 | [下载](https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866) |\n| 超级版图 | 帕拉格・康纳 | [下载](https://url89.ctfile.com/f/31084289-1357016413-98fcdd?p=8866) |\n| 1493：物种大交换开创的世界史 | 查尔斯・曼恩 | [下载](https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866) |\n"
  },
  {
    "path": "md/全球化.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 全球化\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 亚洲世纪 | 帕拉格・康纳 | [下载](https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866) |\n| 如何看待全球化 | 彼得・辛格 | [下载](https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866) |\n| 德国的七个秘密 | 戴维・奥德兹/埃里克・莱曼 | [下载](https://url89.ctfile.com/f/31084289-1357027957-1bbf09?p=8866) |\n"
  },
  {
    "path": "md/全球史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 全球史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大英殖民帝国 | 阿尔弗雷德・考尔德科特 | [下载](https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866) |\n"
  },
  {
    "path": "md/公平.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 公平\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 公平之怒 | 理查德・威尔金森/凯特・皮克特 | [下载](https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866) |\n"
  },
  {
    "path": "md/公益.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 公益\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 走的人多了，就有了路 | 尼可拉斯・克里斯多夫/雪莉・邓恩 | [下载](https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866) |\n"
  },
  {
    "path": "md/共情.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 共情\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 共情的力量 | 亚瑟・乔拉米卡利/凯瑟琳・柯茜 | [下载](https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866) |\n"
  },
  {
    "path": "md/关羽.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 关羽\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 关羽：神化的《三国志》英雄 | 渡边义浩 | [下载](https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866) |\n"
  },
  {
    "path": "md/兵器.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 兵器\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 现代兵器大百科（套装共12册） | 《深度军事》编委会 | [下载](https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866) |\n"
  },
  {
    "path": "md/养生.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 养生\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 陈允斌顺时生活的智慧（全12册） | 陈允斌 | [下载](https://url89.ctfile.com/f/31084289-1375498798-9bff2a?p=8866) |\n| 一起来粉碎朋友圈养生谣言 | 好奇博士团队 | [下载](https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866) |\n| 优雅老去 | 杰罗尔德・温特 | [下载](https://url89.ctfile.com/f/31084289-1356990655-a922dd?p=8866) |\n| 萨提亚冥想 | 约翰・贝曼 | [下载](https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866) |\n| 问中医几度秋凉 | 艾宁 | [下载](https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866) |\n| 很老很老的老偏方大全集（共10册） | 胡丽娟等 | [下载](https://url89.ctfile.com/f/31084289-1357049275-0ea080?p=8866) |\n| 学会呼吸 | 帕特里克・麦基翁 | [下载](https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866) |\n| 神奇的肌肤能量书 | 金柏莉・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866) |\n| 你是你吃出来的 | 夏萌 | [下载](https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866) |\n| 食療聖經 | Michael Greger, MD | [下载](https://url89.ctfile.com/f/31084289-1357031794-797945?p=8866) |\n| 谷物大脑 | 戴维・珀尔马特/戴维・珀尔马特 | [下载](https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866) |\n| 饮食的迷思 | 蒂姆・斯佩克特 | [下载](https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866) |\n| 破解生死大数据 | 杰瑞米・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866) |\n| 中医祖传的那点儿东西1 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866) |\n| 摆脱：失眠、抑郁、焦虑（套装共3册） | 凯特・米德尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357019281-098512?p=8866) |\n"
  },
  {
    "path": "md/冒险.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 冒险\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 天坑宝藏 | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866) |\n| 黑暗物质三部曲 | 菲利普・普尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866) |\n| 巨齿鲨 | 斯蒂夫・奥顿 | [下载](https://url89.ctfile.com/f/31084289-1357038691-82187b?p=8866) |\n| 库蒙的食人兽 | 吉姆・科比特 | [下载](https://url89.ctfile.com/f/31084289-1357028389-9bc0c8?p=8866) |\n| 红圈：海豹突击队前狙击手总教练回忆录 | 布兰登・韦伯/约翰・大卫・曼  | [下载](https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866) |\n"
  },
  {
    "path": "md/写作.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 写作\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 九宫格写作法 | 山口拓朗 | [下载](https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866) |\n| 卡片笔记写作法 | 申克・阿伦斯 | [下载](https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866) |\n| 高效论证 | 大卫・莫罗 | [下载](https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866) |\n| 顿悟的时刻 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357002361-5fc211?p=8866) |\n| 高效写作的秘密 | 杰拉尔德・格拉夫 | [下载](https://url89.ctfile.com/f/31084289-1357001641-466852?p=8866) |\n| 结构化写作 | 李忠秋 | [下载](https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866) |\n| 爆款文案写作指南 | 李洛克 | [下载](https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866) |\n| 爆款写作 | 陈阿咪 | [下载](https://url89.ctfile.com/f/31084289-1357000342-ae106c?p=8866) |\n| 如何写出一篇好文章 | 山口拓朗 | [下载](https://url89.ctfile.com/f/31084289-1356995383-8fa7c9?p=8866) |\n| 如何高效写作 | 芝本秀德 | [下载](https://url89.ctfile.com/f/31084289-1356995110-b7a712?p=8866) |\n| 文案的基本修养 | 东东枪 | [下载](https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866) |\n| 好文案会说话 | 梅田悟司 | [下载](https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866) |\n| 人人都能学会的刷屏文案写作技巧 | 吕白 | [下载](https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866) |\n| 文案基本功 | 苏芯 | [下载](https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866) |\n| 文学课 | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1356986485-1c1bd5?p=8866) |\n| 写作力 | 高语罕 | [下载](https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866) |\n| 写作的诞生 | 多萝西娅・布兰德 | [下载](https://url89.ctfile.com/f/31084289-1356983179-258589?p=8866) |\n| 精简写作 | 罗伊・彼得・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357054480-b67e25?p=8866) |\n| 怎样写故事 | 莉萨・克龙 | [下载](https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866) |\n| 正午5：有人送我西兰花 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052992-b766ed?p=8866) |\n| 写出娱乐的力量 | 貴志祐介 | [下载](https://url89.ctfile.com/f/31084289-1357052950-ffb7f3?p=8866) |\n| 正午6：旧山河，新故事 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866) |\n| 故事力思维 | 安东尼・塔斯加尔 | [下载](https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866) |\n| 非虚构写作指南 | 李梓新 | [下载](https://url89.ctfile.com/f/31084289-1357046785-ed2ee0?p=8866) |\n| 快书写，慢思考 | 马克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357045027-424d69?p=8866) |\n| 唤醒创作力 | 朱莉娅・卡梅伦 | [下载](https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866) |\n| 小说的八百万种写法 | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1357039474-4b3e24?p=8866) |\n| 学会写作 | 粥左罗 | [下载](https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866) |\n| 极速写作 | 剑飞 | [下载](https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866) |\n| 一本书就是一个喷嚏 | 杰克・格罗根 | [下载](https://url89.ctfile.com/f/31084289-1357033873-d0d32c?p=8866) |\n| 写小说最重要的十件事 | 厄休拉・勒古恩 | [下载](https://url89.ctfile.com/f/31084289-1357033486-6785a3?p=8866) |\n| 写作提高一点点 | 玛丽-凯特・麦基 | [下载](https://url89.ctfile.com/f/31084289-1357033330-7c6a2b?p=8866) |\n| 短篇小说写作指南 | 美国《作家文摘》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866) |\n| 写作课 | 叶开 | [下载](https://url89.ctfile.com/f/31084289-1357030036-d3ec1e?p=8866) |\n| 作家的灵感宝库 | 弗雷德・怀特 | [下载](https://url89.ctfile.com/f/31084289-1357030024-32c3ab?p=8866) |\n| 哈佛非虚构写作课：怎样讲好一个故事 | 马克・克雷默/温迪・考尔 | [下载](https://url89.ctfile.com/f/31084289-1357027537-a21903?p=8866) |\n| 童书写作指南 | 玛丽・科尔 | [下载](https://url89.ctfile.com/f/31084289-1357026970-0605e8?p=8866) |\n| 写作全技术 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357025719-d465f4?p=8866) |\n| 新媒体文案创作与传播 | 秋叶/叶小鱼/勾俊伟 | [下载](https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866) |\n| 英语写作手册：风格的要素 | 威廉・斯特伦克 | [下载](https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866) |\n| 写作是最好的自我投资 | Spenser | [下载](https://url89.ctfile.com/f/31084289-1357023547-075742?p=8866) |\n| 写作这门手艺 | 约翰・麦克菲 | [下载](https://url89.ctfile.com/f/31084289-1357023196-9d8958?p=8866) |\n| 完全写作指南 | 劳拉・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866) |\n| 自媒体写作 | 余老诗 | [下载](https://url89.ctfile.com/f/31084289-1357023055-a42878?p=8866) |\n| 小说的骨架 | 凯蒂・维兰德 | [下载](https://url89.ctfile.com/f/31084289-1357022875-616a5b?p=8866) |\n| The Sense of Style | Steven Pinker | [下载](https://url89.ctfile.com/f/31084289-1357021594-60f68e?p=8866) |\n| 风格感觉：21世纪写作指南 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357020082-efde84?p=8866) |\n| 文案创作完全手册 | 罗伯特・布莱 | [下载](https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866) |\n| 创意写作书系·走进大师（套装18册全） | 杰里・克利弗等 | [下载](https://url89.ctfile.com/f/31084289-1357017733-0f8010?p=8866) |\n| 七十二堂写作课 | 夏丏尊/叶圣陶  | [下载](https://url89.ctfile.com/f/31084289-1357017064-cd4bac?p=8866) |\n| 小说课（大家读大家） | 毕飞宇 | [下载](https://url89.ctfile.com/f/31084289-1357016464-4c0336?p=8866) |\n| 不畅销小说写作指南 | 大头马 | [下载](https://url89.ctfile.com/f/31084289-1357015129-764c03?p=8866) |\n| 一本小小的红色写作书 | 布兰登・罗伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357012708-71ba79?p=8866) |\n| 情节与人物 | 杰夫・格尔克 | [下载](https://url89.ctfile.com/f/31084289-1357011055-c9592f?p=8866) |\n| 这样写出好故事 | 詹姆斯・斯科特・贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357011034-28e8b6?p=8866) |\n| 经典人物原型45种 | 维多利亚・林恩・施密特 | [下载](https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866) |\n| 大师们的写作课：好文笔是读出来的 | 舒明月 | [下载](https://url89.ctfile.com/f/31084289-1357008586-9602d1?p=8866) |\n| 写作，打造个人IP，成就企业品牌 | 陈志红 | [下载](https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866) |\n"
  },
  {
    "path": "md/军事.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 军事\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 凡尔登战役 | 阿利斯泰尔・霍恩 | [下载](https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866) |\n| 纸上谈兵 | 张明扬 | [下载](https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866) |\n| 条顿骑士团 | 威廉・厄本 | [下载](https://url89.ctfile.com/f/31084289-1375511374-0df96e?p=8866) |\n| 号角：世界经典制服徽章艺术全集（套装共10册） | 指文号角工作室 | [下载](https://url89.ctfile.com/f/31084289-1375513021-755d2a?p=8866) |\n| 当大明遇上大清（全二册） | 宿巍 | [下载](https://url89.ctfile.com/f/31084289-1357004389-c9a2fa?p=8866) |\n| 21世纪战争论 | 克里斯托弗・科克尔 | [下载](https://url89.ctfile.com/f/31084289-1357002808-69f5f4?p=8866) |\n| 战争的本质 | A.C.葛瑞林 | [下载](https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866) |\n| 战争事典（041-050） | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866) |\n| 我在伏龙芝学军事 | 郝智慧 | [下载](https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866) |\n| 战争论（全三册） | 克劳塞维茨 | [下载](https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866) |\n| 古希腊罗马军事史（贝克知识丛书） | 莱昂哈特・布克哈特 | [下载](https://url89.ctfile.com/f/31084289-1357051891-e1f24d?p=8866) |\n| 独霸中东 | 雅科夫・卡茨/阿米尔・鲍博特 | [下载](https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866) |\n| 中国兵器史 | 周纬 | [下载](https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866) |\n| 亚洲古兵器图说 | 周纬 | [下载](https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866) |\n| 兵者不祥 | 刘鹤 | [下载](https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866) |\n| 美国国家安全局 | 克劳德・德莱斯 | [下载](https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866) |\n| 中途岛奇迹 | 戈登・普兰奇等 | [下载](https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866) |\n| 二战史诗三部曲（珍藏版） | 科尼利厄斯・瑞恩 | [下载](https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866) |\n| 步兵攻击（经典纪念版） | 埃尔温・隆美尔 | [下载](https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866) |\n| 六舰 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866) |\n| 隆美尔战时文件 | 李德・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866) |\n| 闪击英雄 | 海因茨・威廉・古德里安 | [下载](https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866) |\n| 第二次世界大战完整历史实录（套装共38册） | 马夫 | [下载](https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866) |\n| 注定一战 | 格雷厄姆・艾利森 | [下载](https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866) |\n| 1944阿登战役 | 安东尼・比弗 | [下载](https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866) |\n| 全球使命 | 亨利・H・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866) |\n| 俄国与拿破仑的决战 | 多米尼克・利芬 | [下载](https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866) |\n| 帝国骑士（第4卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866) |\n| 帝国骑士（第1卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866) |\n| 帝国骑士（第2卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866) |\n| 帝国骑士（第3卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866) |\n| 杀戮与文化 | 维克托・戴维斯・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866) |\n| 战略：一部历史 | 劳伦斯・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866) |\n| 特拉法尔加战役 | 朱利安·S.科贝特 | [下载](https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866) |\n| 战争史（修订珍藏版） | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866) |\n| 战争史 | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866) |\n| 德国总参谋部 | 斯宾塞・威尔金森 | [下载](https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866) |\n| 中世纪战争艺术史（第一卷） | 查尔斯・威廉・欧曼 | [下载](https://url89.ctfile.com/f/31084289-1357030030-7c2c59?p=8866) |\n| 盐战完结珍藏版套装（全二册） | 李浩白 | [下载](https://url89.ctfile.com/f/31084289-1357029898-df5d11?p=8866) |\n| 战术 | 利奥六世 | [下载](https://url89.ctfile.com/f/31084289-1357029895-0c0896?p=8866) |\n| 从丹药到枪炮 | 欧阳泰 | [下载](https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866) |\n| 最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争 | 儿岛襄 | [下载](链接未找到) |\n| 大明帝国战争史 | 李湖光 | [下载](https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866) |\n| 战争的面目 | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866) |\n| 赫尔曼·沃克作品集（共9册） | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357024753-9ab4e4?p=8866) |\n| 战争事典特辑 | 李湖光/王子午/宋毅  | [下载](https://url89.ctfile.com/f/31084289-1357023829-119ac1?p=8866) |\n| 战争事典（001-040） | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357024885-e1f1b0?p=8866) |\n| 解放战争（套装共6册） | 刘统等 | [下载](https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866) |\n| 布局天下：中国古代军事地理大势 | 饶胜文 | [下载](https://url89.ctfile.com/f/31084289-1357017508-118f05?p=8866) |\n| 战争魔术师 | 大卫・费希尔 | [下载](https://url89.ctfile.com/f/31084289-1357017109-9a5083?p=8866) |\n| 血性军人：百年中国战争亲历纪（共13册） | 全国政协文史和学习委员会 | [下载](https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866) |\n| 滇西抗战三部曲 | 余戈 | [下载](https://url89.ctfile.com/f/31084289-1357015765-b0be9b?p=8866) |\n| 进击的局座：悄悄话 | 张召忠 | [下载](https://url89.ctfile.com/f/31084289-1357015573-4d5d3c?p=8866) |\n| 兵以诈立 : 我读《孙子》 | 李零 | [下载](https://url89.ctfile.com/f/31084289-1357014802-6020b3?p=8866) |\n| 雄兵漫道 | 周林 | [下载](https://url89.ctfile.com/f/31084289-1357012069-80045a?p=8866) |\n| 地缘大战略 | 丁力 | [下载](https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866) |\n| 西洋世界军事史（全三卷） | 富勒 | [下载](https://url89.ctfile.com/f/31084289-1357011562-ee7a99?p=8866) |\n| 美国人眼中最真实的越南战争 | 卡尔・马兰提斯 | [下载](https://url89.ctfile.com/f/31084289-1357010791-35d8b5?p=8866) |\n| 国事机密档（全10册） | 凤凰周刊 | [下载](https://url89.ctfile.com/f/31084289-1357009705-558073?p=8866) |\n| 十杆枪：从独立战争到西部拓荒的美国勇敢冒险史 | 克里斯・凯尔/威廉・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357009336-cf85ab?p=8866) |\n| 步兵进攻 | 埃尔温・隆美尔 | [下载](https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866) |\n| 明帝国边防史：从土木堡之变到大凌河血战 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866) |\n| 狼群（全集） | 刺血 | [下载](https://url89.ctfile.com/f/31084289-1357008934-54c893?p=8866) |\n| 尔虞我诈：中国古代四千年谍海风云（全2册） | 赵英 | [下载](https://url89.ctfile.com/f/31084289-1357008742-adf1c5?p=8866) |\n| 大国海盗 | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866) |\n| 八月炮火 | 巴巴拉・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866) |\n| C形包围：内忧外患下的中国突围 | 戴旭 | [下载](https://url89.ctfile.com/f/31084289-1357007992-9f9eb2?p=8866) |\n| 滑铁卢：四天、三支大军和三场战役的历史 | 伯纳德・康沃尔 | [下载](https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866) |\n| 红圈：海豹突击队前狙击手总教练回忆录 | 布兰登・韦伯/约翰・大卫・曼  | [下载](https://url89.ctfile.com/f/31084289-1357007071-73987d?p=8866) |\n| 血战太平洋（HBO官方完整版） | 休·安布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866) |\n| 西路军（套装共3册） | 冯亚光 | [下载](https://url89.ctfile.com/f/31084289-1357006267-cdd7bc?p=8866) |\n| 狗日的战争2 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866) |\n| 狗日的战争3 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357006240-b0ff09?p=8866) |\n| 军部当国：近代日本军国主义冒险史 | 赵恺 | [下载](https://url89.ctfile.com/f/31084289-1357006174-b628f4?p=8866) |\n| 有一类战犯叫参谋 | 俞天任 | [下载](https://url89.ctfile.com/f/31084289-1357006147-fac58d?p=8866) |\n| 帝国强军：欧洲八大古战精锐 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866) |\n| 地狱绝杀：当关东军遇上苏联红军 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005877-d8ae7b?p=8866) |\n| 山的那一边 | 李德・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866) |\n| 战神粟裕 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005613-29ad37?p=8866) |\n| 日本！日本！：中日历史上的历次死磕 | 王浩 | [下载](https://url89.ctfile.com/f/31084289-1357005280-12bd88?p=8866) |\n"
  },
  {
    "path": "md/冥想.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 冥想\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 萨提亚冥想 | 约翰・贝曼 | [下载](https://url89.ctfile.com/f/31084289-1356984265-55ff8b?p=8866) |\n| 新情商 | 丹尼尔・戈尔曼 | [下载](https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866) |\n| 用安静改变世界 | 拉塞尔・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357023886-49af84?p=8866) |\n"
  },
  {
    "path": "md/冯唐.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 冯唐\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 成事 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866) |\n| 春风十里不如你：与冯唐聊天 | 凤凰书品 | [下载](https://url89.ctfile.com/f/31084289-1357008421-7af3cb?p=8866) |\n"
  },
  {
    "path": "md/冰岛.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 冰岛\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 没有你，什么都不甜蜜 | 约恩・卡尔曼・斯特凡松 | [下载](https://url89.ctfile.com/f/31084289-1357009612-883618?p=8866) |\n"
  },
  {
    "path": "md/决策.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 决策\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 远见：一本故事丰富的决策行为指南 | 史蒂文・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866) |\n| 波斯公主选驸马 | 帕维尔・莫托 | [下载](https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866) |\n| 做出明智判断的10个方法 | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866) |\n| 学会决断（原书第2版） | 苏・哈德菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866) |\n| 诚实的信号 | 阿莱克斯・彭特兰 | [下载](https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866) |\n| 清醒思考的策略 | 罗尔夫・多贝里 | [下载](https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866) |\n| 风险认知 | 格尔德・吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866) |\n| 简捷启发式：有限理性让我们更聪明 | 格尔德・吉仁泽等 | [下载](https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866) |\n| 对赌：信息不足时如何做出高明决策 | 安妮・杜克 | [下载](https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866) |\n| 潜意识与决策 | 克里斯・佩利 | [下载](https://url89.ctfile.com/f/31084289-1357043596-28e35d?p=8866) |\n| 灰度决策 | 小约瑟夫・巴达拉克 | [下载](https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866) |\n| 盲从与叛逆 | 米歇尔・巴德利 | [下载](https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866) |\n| 直觉：我们为什么无从推理，却能决策 | 格尔德・吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866) |\n| 决断力 | 奇普・希思/丹・希思  | [下载](https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866) |\n| 决策与判断 | 斯科特・普劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866) |\n| 慢决策：如何在极速时代掌握慢思考的力量 | 弗兰克・帕特诺伊  | [下载](https://url89.ctfile.com/f/31084289-1357008970-5275d1?p=8866) |\n| 思考，快与慢 | 丹尼尔・卡尼曼 | [下载](https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866) |\n| 风险与好的决策 | 格尔德·吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866) |\n"
  },
  {
    "path": "md/冷战.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 冷战\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 毒枪手：慕尼黑的秘密间谍 | 沙希利・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866) |\n| 铁幕欧洲之新生 | 卡尔・施勒格尔 | [下载](https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866) |\n| 冷战 | 约翰・刘易斯・加迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866) |\n| 午夜将至 | 迈克尔・多布斯 | [下载](https://url89.ctfile.com/f/31084289-1357032853-5f84af?p=8866) |\n| 档案：一部个人史 | 蒂莫西・加顿艾什 | [下载](https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866) |\n| 失败的帝国：从斯大林到戈尔巴乔夫 | 弗拉季斯拉夫・祖博克 | [下载](https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866) |\n| 布达佩斯往事 | 卡蒂・马顿 | [下载](https://url89.ctfile.com/f/31084289-1357009486-392c89?p=8866) |\n| 苏联专家在中国（1948-1960） | 沈志华 | [下载](https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866) |\n"
  },
  {
    "path": "md/冷笑话.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 冷笑话\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 柏拉图和鸭嘴兽一起去酒吧 | 托马斯・卡斯卡特/丹尼尔・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866) |\n"
  },
  {
    "path": "md/减肥.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 减肥\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 让你的肥胖自愈 | 刘松景 | [下载](https://url89.ctfile.com/f/31084289-1357004044-0541d7?p=8866) |\n| 肥胖代码 | 冯子新 | [下载](https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866) |\n| 我的最后一本减肥书 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866) |\n| 这样减肥不反弹 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1356991531-ec3b37?p=8866) |\n| 驾驭情绪的力量 | 珍妮弗・泰兹 | [下载](https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866) |\n| 我们为什么会发胖 | 盖里・陶比斯 | [下载](https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866) |\n| 去你的脂肪 | 格兰特・斯科菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866) |\n| 总觉得饿？ | 大卫. 路德维希 | [下载](https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866) |\n| 本能减脂 | 张景琦/孟令超 | [下载](https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866) |\n"
  },
  {
    "path": "md/减脂.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 减脂\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我的最后一本减肥书 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1356991690-185f09?p=8866) |\n| 去你的脂肪 | 格兰特・斯科菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357033336-c6c446?p=8866) |\n| 力量训练减脂圣经 | 尼克・特米勒罗 | [下载](https://url89.ctfile.com/f/31084289-1357033306-9ad46f?p=8866) |\n| 本能减脂 | 张景琦/孟令超 | [下载](https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866) |\n"
  },
  {
    "path": "md/凯恩斯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 凯恩斯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 就业、利息和货币通论 | 约翰・梅纳德・凯恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357034656-57288e?p=8866) |\n"
  },
  {
    "path": "md/凯撒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 凯撒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 赌徒恺撒 | 马丁・耶内 | [下载](https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866) |\n| 恺撒：巨人的一生 | 阿德里安・戈兹沃西 | [下载](https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866) |\n"
  },
  {
    "path": "md/刑侦.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 刑侦\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 侯大利刑侦笔记7 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1375491982-08c26c?p=8866) |\n| 黄雀计划 | 鬼庖丁 | [下载](https://url89.ctfile.com/f/31084289-1375498957-155512?p=8866) |\n| 弹弓神警2 | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866) |\n| 我在东北当警察（套装共3册） | 程琳 | [下载](https://url89.ctfile.com/f/31084289-1357031446-ae2e03?p=8866) |\n| 一个刑警的日子 | 蓝衣 | [下载](https://url89.ctfile.com/f/31084289-1357023343-d37ba8?p=8866) |\n| 黑锅 | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1357021141-2483c9?p=8866) |\n"
  },
  {
    "path": "md/刑法.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 刑法\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 刑法中的同意制度 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1357003372-a8ac3b?p=8866) |\n| 刑法罗盘 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866) |\n| 刑法学讲义 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866) |\n| 刑法格言的展开（第三版） | 张明楷 | [下载](https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866) |\n"
  },
  {
    "path": "md/创业.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 创业\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 开挂扩张 | 卢诗翰 | [下载](https://url89.ctfile.com/f/31084289-1375511560-66cc54?p=8866) |\n| 硅谷之火（第3版） | 迈克尔・斯韦因/保罗・弗赖伯格 | [下载](https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866) |\n| 复盘网飞 | 马克・伦道夫 | [下载](https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866) |\n| 不拘一格 | 里德・哈斯廷斯/艾琳・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866) |\n| 冯唐成事心法 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866) |\n| 一往无前 | 范海涛 | [下载](https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866) |\n| 飞轮效应 | 吉姆・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866) |\n| 去规模化 | 赫曼特・塔内佳/凯文・梅尼 | [下载](https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866) |\n| 扛住就是本事 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866) |\n| 如何成为超级创业英雄 | 提姆・德瑞普 | [下载](https://url89.ctfile.com/f/31084289-1356984295-7fd163?p=8866) |\n| 名创优品的101个新零售细节 | 张桓/杨永朋 | [下载](https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866) |\n| 敢于不同：商业巨头白手起家的秘诀 | 雷纳・齐特尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357050898-fc81cd?p=8866) |\n| 爆炸式增长 | 克里夫・勒纳 | [下载](https://url89.ctfile.com/f/31084289-1357049836-66e2fa?p=8866) |\n| 创始人手记 | 季琦 | [下载](https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866) |\n| 创业突围 | 郑旭 | [下载](https://url89.ctfile.com/f/31084289-1357045927-57d9d5?p=8866) |\n| 闪电式扩张 | 里德 · 霍夫曼/叶嘉新 | [下载](https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866) |\n| 奇才 | 梅利莎・席林 | [下载](https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866) |\n| 像开创者一样思考 | 保罗・斯隆 | [下载](https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866) |\n| 解密硅谷 | 米歇尔 E. 梅西纳等 | [下载](https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866) |\n| 20堂商业思维进阶课 | 环球人物新媒体中心 | [下载](https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866) |\n| 第二曲线创新 | 李善友 | [下载](https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866) |\n| 西贝的服务员为什么总爱笑 | 贾林男 | [下载](https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866) |\n| 21世纪的定位 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866) |\n| 创业头条 | 兰德尔・莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866) |\n| 失败课 | 周磊 | [下载](https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866) |\n| 一本书看透股权架构 | 李利威 | [下载](https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866) |\n| 我就是风口 | 理查德・布兰森 | [下载](https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866) |\n| 创新者的任务 | 克莱顿・克里斯坦森等 | [下载](https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866) |\n| 出版人 | 艾伦・布里克林 | [下载](https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866) |\n| 低风险创业 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866) |\n| 就想开间自己的小店 | 夏小暖 | [下载](https://url89.ctfile.com/f/31084289-1357031782-511b94?p=8866) |\n| 我曾走在崩溃的边缘 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866) |\n| 智能商业 | 曾鸣 | [下载](https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866) |\n| 未来，相信而看见 | 星野 | [下载](https://url89.ctfile.com/f/31084289-1357028395-7e1c0c?p=8866) |\n| 激情创业 | 于刚 | [下载](https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866) |\n| 阿里铁军销售课 | 李立恒 | [下载](https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866) |\n| 不颠覆，就会被淘汰 | 杰・萨米特 | [下载](https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866) |\n| 富人思维 | 贾森・卡拉卡尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866) |\n| 触点管理 | 安妮·M·许勒尔 | [下载](https://url89.ctfile.com/f/31084289-1357025596-850ca8?p=8866) |\n| 创业在路上 | 罗永浩 | [下载](https://url89.ctfile.com/f/31084289-1357025302-5c18dc?p=8866) |\n| 走红：如何打造个人品牌 | 杰瑞米・戈德曼/阿里・扎格特 | [下载](https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866) |\n| 疯长 | 肖恩・阿美拉蒂 | [下载](https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866) |\n| 重新理解创业 | 周航 | [下载](https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866) |\n| 谷歌创业帮 | 王丹 | [下载](https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866) |\n| 烧掉你的商业计划书 | 卡尔·J. 施拉姆 | [下载](https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866) |\n| 合伙人制度 | 郑指梁 | [下载](https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866) |\n| 重来2：更为简单高效的远程工作方式 | 贾森・弗里德/戴维・海涅迈尔・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866) |\n| 创业维艰 | 本・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866) |\n| 斜杠创业家 | 金伯莉・帕尔默 | [下载](https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866) |\n| The Lean Startup | Eric Ries | [下载](https://url89.ctfile.com/f/31084289-1357019344-110690?p=8866) |\n| 我的创业史 | 方兴东/刘强东/刘伟 | [下载](https://url89.ctfile.com/f/31084289-1357019182-1f9b4c?p=8866) |\n| 让大象飞 | 史蒂文・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866) |\n| 一键下单：杰夫·贝佐斯与亚马逊的崛起 | 理查德・勃兰特 | [下载](https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866) |\n| 创业36条军规 | 孙陶然 | [下载](https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866) |\n| 离经叛道 | 亚当・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357016914-9a3963?p=8866) |\n| 致所有疯狂的家伙 | 理查德・布兰森 | [下载](https://url89.ctfile.com/f/31084289-1357016887-cde58c?p=8866) |\n| 你凭什么做好互联网 | 曹政 | [下载](https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866) |\n| 卖故事：实践版 | 高朋 | [下载](https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866) |\n| 经营战略全史 | 三谷宏治 | [下载](https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866) |\n| 创业就是要细分垄断 | 李开复/汪华/傅盛  | [下载](https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866) |\n| 大众创新 | 埃里克・冯・希佩尔 | [下载](https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866) |\n| 指数型组织 | 萨利姆・伊斯梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866) |\n| 黑客与画家 | 保罗・格雷厄姆 | [下载](https://url89.ctfile.com/f/31084289-1357012513-5443cb?p=8866) |\n| 创新者 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866) |\n| 创新者的方法 | 内森・弗尔/杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866) |\n| 创新者的基因 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866) |\n| 胜利的法则 | 铃木博毅 | [下载](https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866) |\n| 中国快递桐庐帮 | 孙侃 | [下载](https://url89.ctfile.com/f/31084289-1357011220-4eeecf?p=8866) |\n| 28岁赚千万 | 穷富弹指间 | [下载](https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866) |\n| Elon Musk | Ashlee Vance | [下载](https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866) |\n| 投资异类 | 王利杰 | [下载](https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866) |\n| 在火星上退休：伊隆・马斯克传 | 亚当・杰佛逊  | [下载](https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866) |\n| 腾讯传1998-2016 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866) |\n| 精益创业实战（第2版） | Ash Maurya | [下载](https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866) |\n| 创新者的解答 | 克莱顿・克里斯坦森/迈克尔・雷纳 | [下载](https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866) |\n| 创新者的窘境 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866) |\n| 精益创业 : 新创企业的成长思维 | 埃里克・莱斯  | [下载](https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866) |\n| 宗庆后：万有引力原理 | 迟宇宙 | [下载](https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866) |\n| 全中国最穷的小伙子发财日记 | 重庆老康 | [下载](https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866) |\n| 互联网思维：商业颠覆与重构 | 陈光锋 | [下载](https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866) |\n| 创业时，我们在知乎聊什么？ | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866) |\n| 周鸿祎自述：我的互联网方法论 | 周鸿祎 | [下载](https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866) |\n| 创京东 | 李志刚 | [下载](https://url89.ctfile.com/f/31084289-1357005544-0bce57?p=8866) |\n| 硅谷钢铁侠 | 阿什利・万斯 | [下载](https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866) |\n| 从0到1：开启商业与未来的秘密 | 彼得・蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866) |\n| 增长黑客：创业公司的用户与收入增长秘籍 | 范冰 | [下载](https://url89.ctfile.com/f/31084289-1357004839-80eb34?p=8866) |\n"
  },
  {
    "path": "md/创作.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 创作\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 故事：材质、结构、风格和银幕剧作的原理 | 罗伯特・麦基 | [下载](https://url89.ctfile.com/f/31084289-1357022953-524f05?p=8866) |\n"
  },
  {
    "path": "md/创意.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 创意\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 像火箭科学家一样思考 | 奥赞・瓦罗尔 | [下载](https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866) |\n| 如果人类是整个宇宙的大脑 | 丹・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357003759-1d9daf?p=8866) |\n| 瘾：让人上瘾的产品、广告与创意背后的秘密 | 吴文芳 | [下载](https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866) |\n| 创意选择 | 肯・科钦达 | [下载](https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866) |\n| 微文案 | 朱冰 | [下载](https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866) |\n| 引爆流行 | 德里克・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866) |\n| 和毕加索一起淋浴 | 克里斯蒂安・斯塔迪尔等 | [下载](https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866) |\n| 发现你的创造力类型 | 梅塔・瓦格纳 | [下载](https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866) |\n| 脑洞 | 马修・桑托罗/杰克・格林 | [下载](https://url89.ctfile.com/f/31084289-1357029172-3654fd?p=8866) |\n| 想象思维 | 帕甘・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866) |\n| 形式感+ | 晋小彦 | [下载](https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866) |\n| 一页纸创意思考术 | 丹・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866) |\n"
  },
  {
    "path": "md/创投.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 创投\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 混乱的猴子 | 安东尼奥・加西亚・马丁内斯 | [下载](https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866) |\n"
  },
  {
    "path": "md/创新.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 创新\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 技术陷阱 | 卡尔・贝内迪克特・弗雷 | [下载](https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866) |\n| 创造性破坏的力量 | 菲利普・阿吉翁等 | [下载](https://url89.ctfile.com/f/31084289-1375498252-63196c?p=8866) |\n| 助燃创新的人 | 史蒂文・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375499887-18f06c?p=8866) |\n| 大产品思维 | 王雷 | [下载](https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866) |\n| 产品思维 | 张印帅 | [下载](https://url89.ctfile.com/f/31084289-1357004566-20c559?p=8866) |\n| 日常生活中的发明原理 | 高木芳德 | [下载](https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866) |\n| 变革性创新 | 加里・皮萨诺 | [下载](https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866) |\n| 繁荣的悖论 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866) |\n| 斯坦福社会创新评论合集（套装共9册） | 斯坦福社会创新评论编辑部 | [下载](https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866) |\n| 创模式 | 段传敏 | [下载](https://url89.ctfile.com/f/31084289-1356994075-3700fb?p=8866) |\n| 创新大脑 | 艾克纳恩・戈德堡艾克纳恩・戈德堡 | [下载](https://url89.ctfile.com/f/31084289-1356991867-61d613?p=8866) |\n| 创新简史：打开人类进步的黑匣子 | 赵炎 | [下载](https://url89.ctfile.com/f/31084289-1356991702-bc1ee7?p=8866) |\n| 创新者的行动 | 乔舒亚・甘斯 | [下载](https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866) |\n| 水平思考 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1356985939-5f27b0?p=8866) |\n| 奇才 | 梅利莎・席林 | [下载](https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866) |\n| 未来版图 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866) |\n| 极限创新 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866) |\n| 第二曲线创新 | 李善友 | [下载](https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866) |\n| 创新的国度 | 詹姆斯・布雷丁 | [下载](https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866) |\n| 从颠覆到创新 | 长江商学院 | [下载](https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866) |\n| 创新者的任务 | 克莱顿・克里斯坦森等 | [下载](https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866) |\n| 创新者的路径 | 斯蒂芬・温克尔等 | [下载](https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866) |\n| 飞奔的物种 | 大卫・伊格曼/安东尼・布兰德 | [下载](https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866) |\n| 第二曲线：跨越“S型曲线”的二次增长 | 查尔斯・汉迪 | [下载](https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866) |\n| 人生总会有办法 : 用逆向思维解决难题 | 戴维・尼文 | [下载](https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866) |\n| 伟大创意的诞生 | 史蒂文・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357019743-14b1f9?p=8866) |\n| 创新简史 | 杨旸 | [下载](https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866) |\n| 李善友颠覆式创新思维系列（共4册） | 李善友/龚焱 | [下载](https://url89.ctfile.com/f/31084289-1357016941-a33728?p=8866) |\n| 全球风口 | 王煜全/薛兆丰 | [下载](https://url89.ctfile.com/f/31084289-1357016092-2982cb?p=8866) |\n| 第七感 | 乔舒亚・库珀・雷默 | [下载](https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866) |\n| 创新自信力 | 戴维・凯利/汤姆・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866) |\n| 这里改变世界：硅谷成功创新之谜 | 黛博拉・佩里・皮肖内 | [下载](https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866) |\n| 创新的本能：类比思维的力量 | 约翰・波拉克 | [下载](https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866) |\n| 疯狂到位 | 亚当・施特尔茨/威廉・帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866) |\n| 创新者的解答 | 克莱顿・克里斯坦森/迈克尔・雷纳 | [下载](https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866) |\n| 创新者的窘境 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866) |\n"
  },
  {
    "path": "md/前端.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 前端\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| JavaScript函数式编程 | Michael Fogus | [下载](https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866) |\n| CSS重构：样式表性能调优 | Steve Lindstrom | [下载](https://url89.ctfile.com/f/31084289-1357017682-29904e?p=8866) |\n| 锋利的jQuery（第2版） | 单东林 | [下载](https://url89.ctfile.com/f/31084289-1357016728-3282f4?p=8866) |\n| 精通CSS（第2版） | Andy Budd/Cameron Moll | [下载](https://url89.ctfile.com/f/31084289-1357008904-4f5343?p=8866) |\n| JavaScript权威指南（第6版） | David Flanagan | [下载](https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866) |\n"
  },
  {
    "path": "md/前端开发.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 前端开发\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| HTML5秘籍 | Matthew MacDonald | [下载](https://url89.ctfile.com/f/31084289-1357006540-4fb712?p=8866) |\n| CSS设计指南（第3版） | Charles Wyke-Smith | [下载](https://url89.ctfile.com/f/31084289-1357005769-ddcb31?p=8866) |\n"
  },
  {
    "path": "md/剑桥.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 剑桥\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 剑桥中国史（套装全11卷） | 费正清/崔瑞德 | [下载](https://url89.ctfile.com/f/31084289-1357011967-9e4705?p=8866) |\n"
  },
  {
    "path": "md/剧本.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 剧本\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们与恶的距离 | 吕莳媛 | [下载](https://url89.ctfile.com/f/31084289-1357002985-472c7f?p=8866) |\n| 两个人的车站 | 埃・韦・布拉金斯基/埃・亚・梁赞诺夫 | [下载](https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866) |\n| 大象席地而坐 | 胡迁 | [下载](https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866) |\n| 攀登者 | 阿来 | [下载](https://url89.ctfile.com/f/31084289-1357039411-ec122d?p=8866) |\n| 卡利古拉 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866) |\n"
  },
  {
    "path": "md/力量训练.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 力量训练\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 力量训练套装 | 马克・瑞比拖/安迪・贝克 | [下载](https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866) |\n"
  },
  {
    "path": "md/功夫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 功夫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 以武论道：李小龙的功夫心法（套装共5册） | 李小龙 | [下载](https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866) |\n"
  },
  {
    "path": "md/加拿大.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 加拿大\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 跳舞女郎 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1357034623-126b75?p=8866) |\n| 强盗新娘 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1357034449-93c7ab?p=8866) |\n| 英国病人（企鹅经典） | 迈克尔・翁达杰 | [下载](https://url89.ctfile.com/f/31084289-1357032424-c5dfca?p=8866) |\n| 赫尔辛基罗卡曼迪欧家族背后的真相 | 扬・马特尔 | [下载](https://url89.ctfile.com/f/31084289-1357028062-53a082?p=8866) |\n| 标本师的魔幻剧本 | 扬・马特尔 | [下载](https://url89.ctfile.com/f/31084289-1357027834-e41a3d?p=8866) |\n| 少年Pi的奇幻漂流（绘图珍藏本） | 扬・马特尔 | [下载](https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866) |\n| 盲刺客 | 玛格丽特・阿特伍德  | [下载](https://url89.ctfile.com/f/31084289-1357014304-350e20?p=8866) |\n"
  },
  {
    "path": "md/加缪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 加缪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 加缪传 | 赫伯特・R.洛特曼 | [下载](https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866) |\n| 局外人（果麦经典） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034425-ba996e?p=8866) |\n"
  },
  {
    "path": "md/动漫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 动漫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 火影忍者（第1部：卷1~卷7） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866) |\n| 爆笑校园（套装共12册） | 朱斌 | [下载](https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866) |\n| 龙珠（1-7卷） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1357031014-763232?p=8866) |\n"
  },
  {
    "path": "md/动物.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 动物\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 那猫那人那城 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1375498936-fe5a9d?p=8866) |\n| 生命在于静止 | 篠原薰 | [下载](https://url89.ctfile.com/f/31084289-1375499569-193758?p=8866) |\n| 超级生物探寻指南 | 马修 · D. 拉普兰特 | [下载](https://url89.ctfile.com/f/31084289-1375499677-11db81?p=8866) |\n| 无脊椎动物百科 | 拉尔夫・布克斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1375500724-3e2969?p=8866) |\n| 七个世界，一个星球 | 强尼・基林/斯科特・亚历山大 | [下载](https://url89.ctfile.com/f/31084289-1375509295-af62d4?p=8866) |\n| 瓦尔登湖动植物图鉴 | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866) |\n| 动物王朝 | 冉浩 | [下载](https://url89.ctfile.com/f/31084289-1375512175-7e0849?p=8866) |\n| 动物眼中的人类 | 赵序茅 | [下载](https://url89.ctfile.com/f/31084289-1375513462-89d08b?p=8866) |\n| 动物不简单（套装共5册） | 德斯蒙德・莫里斯等 | [下载](https://url89.ctfile.com/f/31084289-1375513651-236db3?p=8866) |\n| 动物的“屁”事儿 | 尼克・卡鲁索等 | [下载](https://url89.ctfile.com/f/31084289-1357050424-0a1c39?p=8866) |\n| 万智有灵 | 弗朗斯・德瓦尔 | [下载](https://url89.ctfile.com/f/31084289-1357049908-4023d0?p=8866) |\n| 动物奇葩说 | 尼克・卡鲁索等 | [下载](https://url89.ctfile.com/f/31084289-1357048585-97d7e9?p=8866) |\n| 动物思维 | 查尔斯・福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866) |\n| 白牙（果麦经典） | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357045189-be69e1?p=8866) |\n| 猫的秘密 | 约翰・布拉德肖 | [下载](https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866) |\n| 我们迷人的鸟：猫头鹰 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866) |\n| 猫咪海洋简史 | 菲利帕・桑德尔/艾德・朗 | [下载](https://url89.ctfile.com/f/31084289-1357038478-6fe43e?p=8866) |\n| 飞行战犬 | 达米恩・路易斯 | [下载](https://url89.ctfile.com/f/31084289-1357031125-c70223?p=8866) |\n| 纸上动物园 | 夏洛特・斯莱 | [下载](https://url89.ctfile.com/f/31084289-1357026883-d8edc7?p=8866) |\n| 鸡征服世界 | 安德鲁・劳勒 | [下载](https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866) |\n| 猫武士首部曲（套装共6册） | 艾琳・亨特 | [下载](https://url89.ctfile.com/f/31084289-1357021747-2318d1?p=8866) |\n| 动物的精神生活 | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866) |\n| 在轮回中找你 | 布鲁斯・卡梅隆 | [下载](https://url89.ctfile.com/f/31084289-1357007332-ae6730?p=8866) |\n"
  },
  {
    "path": "md/努力.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 努力\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 将来的你，一定会感谢现在拼命的自己 | 汤木 | [下载](https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866) |\n"
  },
  {
    "path": "md/励志.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 励志\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 拆掉思维里的墙（白金升级版） | 古典 | [下载](https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866) |\n| 妈妈的战争 | Momself | [下载](https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866) |\n| 破圈：如何突破认知局限并实现终身成长 | 顾及 | [下载](https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866) |\n| 像高手一样发言 | 久久 | [下载](https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866) |\n| 神兽引领的使命 | 小松美羽 | [下载](https://url89.ctfile.com/f/31084289-1375498813-e7da4f?p=8866) |\n| 底层逻辑：看清这个世界的底牌 | 刘润 | [下载](https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866) |\n| 成为可怕的自律人 | 马歇尔・古德史密斯 | [下载](https://url89.ctfile.com/f/31084289-1375499233-71cb99?p=8866) |\n| 像高手一样行动 | 丹尼尔・科伊尔 | [下载](https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866) |\n| 人生不必太用力 | 埃克哈特・托利 | [下载](https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866) |\n| 不和世界讲道理 | 曹晟康 | [下载](https://url89.ctfile.com/f/31084289-1375500178-c94c1a?p=8866) |\n| 马尔科姆·格拉德威尔系列（套装共6册） | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866) |\n| 时间管理 | 吉姆・兰德尔 | [下载](https://url89.ctfile.com/f/31084289-1375500340-640c65?p=8866) |\n| 鹿鸣心理·心理咨询师系列精选（套装14册） | 沙格曼・卡亚金等 | [下载](https://url89.ctfile.com/f/31084289-1375500541-cb7910?p=8866) |\n| 宁静的力量 | 瑞安・霍利迪 | [下载](https://url89.ctfile.com/f/31084289-1375500661-e3cdce?p=8866) |\n| 错失恐惧 | 帕特里克·J.麦金尼斯 | [下载](https://url89.ctfile.com/f/31084289-1375500760-480526?p=8866) |\n| 自律修炼手册 | 史蒂夫・帕弗利纳 | [下载](https://url89.ctfile.com/f/31084289-1375500763-ae1e4a?p=8866) |\n| 心智突围 | Windy Liu | [下载](https://url89.ctfile.com/f/31084289-1375500784-b71caf?p=8866) |\n| 鹿鸣心理·心理自助读物精选（套装17册） | 南茜・戴维森等 | [下载](https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866) |\n| 鹿智者的法则 | 丹・米尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866) |\n| 李诞脱口秀工作手册 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866) |\n| 我就是你啊 | 皮埃尔・佩利西耶 | [下载](https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866) |\n| 管理敏感 | 全弘镇 | [下载](https://url89.ctfile.com/f/31084289-1375508092-cbb0a1?p=8866) |\n| 特别会说话的人都这样说话 | 大野萌子 | [下载](https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866) |\n| 终极心理测试 | 迈克・布里翁 | [下载](https://url89.ctfile.com/f/31084289-1375509244-f90270?p=8866) |\n| 你就是干不过做PPT的 | 下地宽也 | [下载](https://url89.ctfile.com/f/31084289-1375509607-fcbab6?p=8866) |\n| 深度影响 | 崔璀 | [下载](https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866) |\n| 拥抱可能 | 伊迪丝・伊娃・埃格尔 | [下载](https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866) |\n| 带着恐惧前行 | 鲁斯・苏库普 | [下载](https://url89.ctfile.com/f/31084289-1375510180-c33921?p=8866) |\n| 没时间休息的休息法 | 荻野淳也 | [下载](https://url89.ctfile.com/f/31084289-1375510219-79ad9b?p=8866) |\n| 荆棘与荣耀 | 马寅 | [下载](https://url89.ctfile.com/f/31084289-1375510381-a861bf?p=8866) |\n| 给职场人的5堂逻辑思考课 | 深泽真太郎 | [下载](https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866) |\n| 把自己当回事儿 | 杨天真 | [下载](https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866) |\n| 断舍离（全3册） | 山下英子 | [下载](https://url89.ctfile.com/f/31084289-1375510945-54d643?p=8866) |\n| 负面情绪，正面解决 | 利斯・范・萨斯特伦 | [下载](https://url89.ctfile.com/f/31084289-1375510939-6c58a7?p=8866) |\n| 反惰性 | 加布里埃尔・厄廷根 | [下载](https://url89.ctfile.com/f/31084289-1375511077-b1ee53?p=8866) |\n| 情绪力 | 萨姆・阿利布兰多 | [下载](https://url89.ctfile.com/f/31084289-1375511164-6145a4?p=8866) |\n| 非线性成长 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866) |\n| 尬聊终结者 | 庄舒涵 | [下载](https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866) |\n| 不妥协的谈判 | 丹尼尔・夏皮罗 | [下载](https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866) |\n| 个性优势 | 吉姆・巴雷特/休・格林 | [下载](https://url89.ctfile.com/f/31084289-1375511347-2ee920?p=8866) |\n| 交谈的要素 | N.J.恩菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1375511476-4db402?p=8866) |\n| 鞋狗（青少版） | 菲尔・奈特 | [下载](https://url89.ctfile.com/f/31084289-1375511956-44780a?p=8866) |\n| 演讲技巧 | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1375512052-f9a19a?p=8866) |\n| 100个工作基本 | 松浦弥太郎/野尻哲也 | [下载](https://url89.ctfile.com/f/31084289-1375512118-2798e5?p=8866) |\n| 成为黑马 | 托德・罗斯/奥吉・奥加斯 | [下载](https://url89.ctfile.com/f/31084289-1375512115-a73ff5?p=8866) |\n| 规划最好的一年 | 迈克尔・海亚特 | [下载](https://url89.ctfile.com/f/31084289-1375512514-02047a?p=8866) |\n| 重复力 | 梁译文 | [下载](https://url89.ctfile.com/f/31084289-1375512568-22e654?p=8866) |\n| 百万富翁比你强在哪儿 | 安・玛丽・萨巴思 | [下载](https://url89.ctfile.com/f/31084289-1375512610-18f14c?p=8866) |\n| 不为所动 | 朱迪斯・欧洛芙 | [下载](https://url89.ctfile.com/f/31084289-1375512892-a43fc0?p=8866) |\n| 超越自卑 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1375512901-1651ea?p=8866) |\n| 精进有道 | 孙陶然 | [下载](https://url89.ctfile.com/f/31084289-1375512904-0b5469?p=8866) |\n| 爱自己是一生浪漫的开始 | 静听风 | [下载](https://url89.ctfile.com/f/31084289-1375513075-1286b7?p=8866) |\n| 细节的力量 | FLANAGAN裕美子 | [下载](https://url89.ctfile.com/f/31084289-1375513111-35214f?p=8866) |\n| 决策大脑 | 艾克纳恩・戈德堡 | [下载](https://url89.ctfile.com/f/31084289-1375513321-96e79f?p=8866) |\n| 智商税 | 高德 | [下载](https://url89.ctfile.com/f/31084289-1375513330-2251ee?p=8866) |\n| 当时这样说就好了 | 伊庭正康 | [下载](https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866) |\n| 掌控沟通 | 贾斯汀・李 | [下载](https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866) |\n| 超级心智 | 诺曼·E·罗森塔尔 | [下载](https://url89.ctfile.com/f/31084289-1375513693-5e6741?p=8866) |\n| 自律给你自由 | 约克・威林克 | [下载](https://url89.ctfile.com/f/31084289-1375513741-adf394?p=8866) |\n| 抓重点 | 赵启 | [下载](https://url89.ctfile.com/f/31084289-1357004644-1ddabe?p=8866) |\n| 选准赛道再奔跑 | 七芊 | [下载](https://url89.ctfile.com/f/31084289-1357004608-82df1b?p=8866) |\n| 成为自控者 | Susan Kuang | [下载](https://url89.ctfile.com/f/31084289-1357004494-7eeeaf?p=8866) |\n| 赢家法则 | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357004374-804330?p=8866) |\n| 聪明人的才华战略 | 莱昂纳多・洛斯佩纳托 | [下载](https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866) |\n| 自我边界 | 乔治・戴德 | [下载](https://url89.ctfile.com/f/31084289-1357004260-42ce47?p=8866) |\n| 深度思考：透过表面看本质的六步思考法 | 萧亮 | [下载](https://url89.ctfile.com/f/31084289-1357004149-6c477b?p=8866) |\n| 如何戒掉坏习惯 | 古川武士 | [下载](https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866) |\n| 坚持，一种可以养成的习惯 | 古川武士 | [下载](https://url89.ctfile.com/f/31084289-1357003810-be7b78?p=8866) |\n| 瞧！不一样的我 | 小盐真司 | [下载](https://url89.ctfile.com/f/31084289-1357003723-564f84?p=8866) |\n| 慢思考 | 特奥・康普诺利 | [下载](https://url89.ctfile.com/f/31084289-1357003558-4cb404?p=8866) |\n| 气场哪里来 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357003540-37d1e7?p=8866) |\n| 快行动，慢思考 | 迪安・德尔・塞斯托 | [下载](https://url89.ctfile.com/f/31084289-1357002415-60e276?p=8866) |\n| 你的第一本抑郁自救指南 | 所长任有病 | [下载](https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866) |\n| 成为主角 | 陈岚 | [下载](https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866) |\n| 成为非凡的你 | 杰西卡・迪卢洛・赫林 | [下载](https://url89.ctfile.com/f/31084289-1357002193-fafba0?p=8866) |\n| 刘墉的处世情商课 | 刘墉 | [下载](https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866) |\n| 所谓会说话，就是会换位思考 | 卡洛琳・塔格特 | [下载](https://url89.ctfile.com/f/31084289-1357002073-ea5db8?p=8866) |\n| 聪明人的做事风格系列（全3册） | 高桥政史/横田真由子 | [下载](https://url89.ctfile.com/f/31084289-1357002070-37a922?p=8866) |\n| 动机心理学 | 罗曼・格尔佩林 | [下载](https://url89.ctfile.com/f/31084289-1357002016-a8251f?p=8866) |\n| 冷静表达的艺术 | 罗纳德·T·派特佛恩 | [下载](https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866) |\n| 焦虑你好 | 安珀・雷 | [下载](https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866) |\n| 创造人生的伙伴 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866) |\n| 祝你快乐勇敢 | 果麦 | [下载](https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866) |\n| 职场自我成长 | 渡边秀和 | [下载](https://url89.ctfile.com/f/31084289-1357001134-9c9089?p=8866) |\n| 拖延症患者自救手册 | 加兰・库尔森 | [下载](https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866) |\n| 结构化写作 | 李忠秋 | [下载](https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866) |\n| 记忆宫殿 | 石伟华 | [下载](https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866) |\n| 本事：应对未来世界的12项永久技能 | 基兰・弗拉纳根 | [下载](https://url89.ctfile.com/f/31084289-1357000405-a834ab?p=8866) |\n| 闭环思维 | 智俊启 | [下载](https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866) |\n| 爆款写作 | 陈阿咪 | [下载](https://url89.ctfile.com/f/31084289-1357000342-ae106c?p=8866) |\n| 极简时间 | 洛塔尔・赛韦特 | [下载](https://url89.ctfile.com/f/31084289-1357000291-c277a4?p=8866) |\n| 超越你的大脑 | 玛莎・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357000276-6ec305?p=8866) |\n| 彼岸风景 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357000249-6eb01e?p=8866) |\n| 少有人走的路（1-8全套） | 斯科特・派克 | [下载](https://url89.ctfile.com/f/31084289-1357000219-cda644?p=8866) |\n| 21天说服力养成 | 诺瓦・戈尔茨坦等 | [下载](https://url89.ctfile.com/f/31084289-1357000174-b0db79?p=8866) |\n| 归属感 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1356999826-9a1d49?p=8866) |\n| 好心情手册 | 邵夷贝 | [下载](https://url89.ctfile.com/f/31084289-1356999712-2d96e2?p=8866) |\n| 孤独的150个信念 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866) |\n| 2轴思维 | 木部智之 | [下载](https://url89.ctfile.com/f/31084289-1356999532-427444?p=8866) |\n| 行动变现 | 杨小米 | [下载](https://url89.ctfile.com/f/31084289-1356999424-ac20ab?p=8866) |\n| 大器晚成 | 里奇・卡尔加德 | [下载](https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866) |\n| 成就斜杠人生 | 玛希・埃尔博尔 | [下载](https://url89.ctfile.com/f/31084289-1356998818-5c9d5c?p=8866) |\n| 陌生人效应 | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1356998548-5194e2?p=8866) |\n| 漫画生活哲学一看就懂 | 李静 | [下载](https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866) |\n| 超级个体 | 徐大维 | [下载](https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866) |\n| 懂得倾听，是学会沟通的第一步 | 伯纳德·T.费拉里 | [下载](https://url89.ctfile.com/f/31084289-1356997870-0eb102?p=8866) |\n| 打破你的学生思维 | 北京职慧公益创业发展中心 | [下载](https://url89.ctfile.com/f/31084289-1356997843-a71c7e?p=8866) |\n| 图形思考 | 樱田润 | [下载](https://url89.ctfile.com/f/31084289-1356997600-d2665d?p=8866) |\n| 内在动机 | 爱德华・L. 德西 | [下载](https://url89.ctfile.com/f/31084289-1356997342-de547e?p=8866) |\n| 朋友圈的人际高手 | 诸葛思远 | [下载](https://url89.ctfile.com/f/31084289-1356997123-04d286?p=8866) |\n| 认知红利 | 谢春霖 | [下载](https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866) |\n| 每天演好一个情绪稳定的成年人 | 老杨的猫头鹰 | [下载](https://url89.ctfile.com/f/31084289-1356996994-edf7f5?p=8866) |\n| 硬功夫：助你精进的八大硬核技能 | 崔诚靓 | [下载](https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866) |\n| 高效沟通的100种方法 | 王利利 | [下载](https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866) |\n| 内心的重建 | 维尼老师 | [下载](https://url89.ctfile.com/f/31084289-1356996175-2a2c01?p=8866) |\n| 高效迭代 | 冯起升 | [下载](https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866) |\n| 带货王 | 李瑛 | [下载](https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866) |\n| 生活需要界限感 | 景天 | [下载](https://url89.ctfile.com/f/31084289-1356995263-2bc9b2?p=8866) |\n| 学会幸福 | 陈赛 | [下载](https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866) |\n| 差异优势 | 约翰·C. 马克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866) |\n| 超级大脑的七个习惯 | 菅原道仁 | [下载](https://url89.ctfile.com/f/31084289-1356995182-38b399?p=8866) |\n| 持续行动 | Scalers | [下载](https://url89.ctfile.com/f/31084289-1356995179-bf6496?p=8866) |\n| 成为极少数 | 李栩然 | [下载](https://url89.ctfile.com/f/31084289-1356995131-73e16b?p=8866) |\n| 我的最后一本口才书 | 陈慕妤 | [下载](https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866) |\n| 情商大师（息怒篇） | 伯纳德・金 | [下载](https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866) |\n| 向上生长 | 九边 | [下载](https://url89.ctfile.com/f/31084289-1356995068-5df96e?p=8866) |\n| 如何讲好一个故事 | 默里・诺塞尔 | [下载](https://url89.ctfile.com/f/31084289-1356995053-9ef98f?p=8866) |\n| 勇敢而非完美 | 拉什玛・萨贾尼 | [下载](https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866) |\n| 心：稻盛和夫的一生嘱托 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866) |\n| 深度改变 | 泽阳 | [下载](https://url89.ctfile.com/f/31084289-1356994561-5fcd0c?p=8866) |\n| 如何形成清晰的观点 | 查尔斯·S.皮尔士 | [下载](https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866) |\n| 故事力 | 高琳/林宏博 | [下载](https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866) |\n| 幽默就是说话让人舒服 | 王荣华 | [下载](https://url89.ctfile.com/f/31084289-1356993952-7eaaf2?p=8866) |\n| 煤气灯效应 | 罗宾・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866) |\n| 被拒绝的勇气 | 岸见一郎 | [下载](https://url89.ctfile.com/f/31084289-1356993493-64723f?p=8866) |\n| 如何讲好一件事 | 埃丝特·K·乔伊 | [下载](https://url89.ctfile.com/f/31084289-1356992356-e961db?p=8866) |\n| 情绪革命 | 约翰・辛德莱尔 | [下载](https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866) |\n| 抗逆力 | 邹建章 | [下载](https://url89.ctfile.com/f/31084289-1356992029-95a7a3?p=8866) |\n| 天赋觉醒 | 江潮 | [下载](https://url89.ctfile.com/f/31084289-1356992014-0ffeb8?p=8866) |\n| 别让性格害了你 | 邢群麟 | [下载](https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866) |\n| 别让情绪毁了你的努力 | 剑圣喵大师 | [下载](https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866) |\n| 自控力：人生自救课 | 博锋 | [下载](https://url89.ctfile.com/f/31084289-1356991816-6657bc?p=8866) |\n| 性格拼图 | 西尔维亚・洛肯 | [下载](https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866) |\n| 声音的魅力 | 张皓翔 | [下载](https://url89.ctfile.com/f/31084289-1356991552-babdf5?p=8866) |\n| 内向高敏者 | 西尔维亚・洛肯 | [下载](https://url89.ctfile.com/f/31084289-1356991516-921fc6?p=8866) |\n| 你是个年轻人，请你好好生活 | 吕不同 | [下载](https://url89.ctfile.com/f/31084289-1356991471-8feb15?p=8866) |\n| 职场谈判经典书系（套装共3册） | 德雷克・阿顿 | [下载](https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866) |\n| 恰到好处的挫折 | 格雷格• S •里德 | [下载](https://url89.ctfile.com/f/31084289-1356991267-795ad9?p=8866) |\n| 人生没有后悔药 | 约翰・伊佐 | [下载](https://url89.ctfile.com/f/31084289-1356990643-2981f8?p=8866) |\n| 你没有退路，才有出路 | 李尚龙 | [下载](https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866) |\n| 人性的优点 | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1356990421-adb4e8?p=8866) |\n| 学会决断（原书第2版） | 苏・哈德菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866) |\n| 即答力 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1356990169-68ccea?p=8866) |\n| 思维导图攻略 | 王健文 | [下载](https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866) |\n| 为什么精英这样沟通最高效 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866) |\n| 一年顶十年 | 剽悍一只猫 | [下载](https://url89.ctfile.com/f/31084289-1356989455-699466?p=8866) |\n| 魏斯曼的演讲大师课3 | 杰瑞・魏斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866) |\n| 我不想将就过一生 | 吴静 | [下载](https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866) |\n| 当你又忙又美，何惧患得患失 | 梁爽 | [下载](https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866) |\n| 为什么精英这样用脑不会累 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866) |\n| 思维的囚徒 | 亚历克斯・佩塔克斯/伊莱恩・丹顿 | [下载](https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866) |\n| 为什么精英都有超强专注力 | 西多昌规 | [下载](https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866) |\n| 我要做人生的甲方 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866) |\n| 是谁出的题这么难，到处都是正确答案 | 邱天 | [下载](https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866) |\n| 水平思考法 | 保罗・斯隆 | [下载](https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866) |\n| 智慧与魔咒 | 塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866) |\n| 微精通 | 罗伯特・特威格尔 | [下载](https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866) |\n| 图形思考与表达的20堂课 | 久恒启一 | [下载](https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866) |\n| 好好接话 | 山口拓朗 | [下载](https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866) |\n| 一本正经又怪诞的行为心理学 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356985639-1775da?p=8866) |\n| 时短术 | 日本生产性改善会议 | [下载](https://url89.ctfile.com/f/31084289-1356985471-dd0c8f?p=8866) |\n| 玩的就是规则 | 伊恩・伯格斯特 | [下载](https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866) |\n| 生命进阶 | 天降龙虾 | [下载](https://url89.ctfile.com/f/31084289-1356985267-e969dd?p=8866) |\n| 如何成为一个抗压的人 | 道格・亨施 | [下载](https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866) |\n| 如何思考 | 迈克尔D.C.卓特 | [下载](https://url89.ctfile.com/f/31084289-1356984643-f68bb5?p=8866) |\n| 如何做一场精彩的演讲 | 琼・戴兹 | [下载](https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866) |\n| 异议的力量 | 查兰・奈米斯 | [下载](https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866) |\n| 人生护城河 | 张辉 | [下载](https://url89.ctfile.com/f/31084289-1356983704-127285?p=8866) |\n| 认同自己 | 斯蒂芬妮・斯塔尔 | [下载](https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866) |\n| 如何给别人留下好印象 | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866) |\n| 小逻辑：让选择变简单的方法 | 欧文・瑟维斯/罗里・加拉格尔 | [下载](https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866) |\n| 优秀到不能被忽视 | 卡尔・纽波特 | [下载](https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866) |\n| 心理学与表达力影响力 | 洪琳 | [下载](https://url89.ctfile.com/f/31084289-1357054306-56f527?p=8866) |\n| 与内心的冲突和解 | 加藤谛三 | [下载](https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866) |\n| 有意识的社交 | 肯・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866) |\n| 这才是我要的工作 | 克里斯・吉耶博 | [下载](https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866) |\n| 用事实说话 | 马克・墨菲 | [下载](https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866) |\n| 学习力：如何成为一个有价值的知识变现者 | Angie | [下载](https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866) |\n| 赢在上班时 | 高城幸司 | [下载](https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866) |\n| 学会快乐 | 马修・理查德 | [下载](https://url89.ctfile.com/f/31084289-1357052965-df8220?p=8866) |\n| 一问一世界 | 杨澜 | [下载](https://url89.ctfile.com/f/31084289-1357052782-f552f4?p=8866) |\n| 一眼识破真相的思考力 | 丹尼尔・列维汀 | [下载](https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866) |\n| 认知·情感·意志 | 詹姆斯・马克・鲍德温 | [下载](https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866) |\n| 在时光中盛开的女子 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866) |\n| 自控：如何成为一个冷静智慧的人 | 董小楠 | [下载](https://url89.ctfile.com/f/31084289-1357052524-78de4c?p=8866) |\n| 如何成为职场实力派 | 日本GLOBIS商学院  | [下载](https://url89.ctfile.com/f/31084289-1357052479-c909c0?p=8866) |\n| 情商是什么？ | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866) |\n| 你的自律，给你自由 | 小椰子 | [下载](https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866) |\n| 零压人生 | 米修・斯托罗尼 | [下载](https://url89.ctfile.com/f/31084289-1357051774-c1d5fd?p=8866) |\n| 能力迁移 | 乔治・安德斯 | [下载](https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866) |\n| 内向思考 | 迈克尔・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866) |\n| 你的降落伞是什么颜色？（全新修订版） | 理查德・尼尔森・鲍利斯 | [下载](https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866) |\n| 怎样管精力，就怎样过一生 | 奥迪尔・夏布里亚克 | [下载](https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866) |\n| 可能性法则 | 梅尔・施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357051441-e9bca0?p=8866) |\n| 哈佛大学经典课程分享（套装9册） | 哈佛大学 | [下载](https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866) |\n| 早起的奇迹 | 哈尔・埃尔罗德 | [下载](https://url89.ctfile.com/f/31084289-1357051405-4773be?p=8866) |\n| 总能做出正确决定的幸运法则 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866) |\n| 你不是记性差，只是没找对方法 | 池田义博 | [下载](https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866) |\n| 出众，从改变习惯开始 | 马克・列克劳 | [下载](https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866) |\n| 麦肯锡决断力 | 石井辉美 | [下载](https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866) |\n| 吾心可鉴 | 彭凯平 | [下载](https://url89.ctfile.com/f/31084289-1357051123-b5e48b?p=8866) |\n| 麦肯锡笔记思考法 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866) |\n| 终身成长行动指南 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866) |\n| 加速 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357051021-d70559?p=8866) |\n| 精力管理手册 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357050901-31d610?p=8866) |\n| 关键提问 | 詹姆斯·E.瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866) |\n| 沟通也要懂套路 | 姜朝川 | [下载](https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866) |\n| 你不是失败，只是差一点成功 | 萨拉・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866) |\n| 马云的说话之道（2019版） | 张笑恒 | [下载](https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866) |\n| 格局逆袭 | 宗宁 | [下载](https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866) |\n| 牛津式高效沟通 | 冈田昭人 | [下载](https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866) |\n| 反本能2 | 刘船洋 | [下载](https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866) |\n| 好的焦虑 | 斯科特・施托塞尔 | [下载](https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866) |\n| 1分钟沟通课 | 鱼住理英 | [下载](https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866) |\n| 世界上最神奇的24堂课 | 查尔斯・哈奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866) |\n| 别做那只迷途的候鸟 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866) |\n| 跟任何人都合得来 | 罗伯特・萨顿 | [下载](https://url89.ctfile.com/f/31084289-1357049395-f814dd?p=8866) |\n| 第一印象心理学 | 周一南 | [下载](https://url89.ctfile.com/f/31084289-1357049380-6bfe58?p=8866) |\n| 社会心理学（第8版） | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866) |\n| 你要如何衡量你的人生 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866) |\n| 故事力思维 | 安东尼・塔斯加尔 | [下载](https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866) |\n| 墨菲定律（青春版） | 书鱼 | [下载](https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866) |\n| 受益一生的六本书（套装六册） | 鬼谷子等 | [下载](https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866) |\n| 果敢力 | 蒋齐仕 | [下载](https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866) |\n| 深度说服 | 梁秋阳 | [下载](https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866) |\n| 趁早（十周年畅销升级版） | 王潇 | [下载](https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866) |\n| 被左右的独立思维 | 塔利・沙罗特 | [下载](https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866) |\n| 安心正念课 | 赵安安 | [下载](https://url89.ctfile.com/f/31084289-1357046125-a2aee7?p=8866) |\n| 走出剧情 | 李雪 | [下载](https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866) |\n| 终结拖延症的49种方法 | 海韵 | [下载](https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866) |\n| 叛逆天才 | 弗朗西斯卡・吉诺 | [下载](https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866) |\n| 快书写，慢思考 | 马克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357045027-424d69?p=8866) |\n| 年轻人，你就是想太多 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1357045006-2bc59b?p=8866) |\n| 积极思考 | 约翰尼・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357044913-7a0138?p=8866) |\n| 5秒法则 | 梅尔・罗宾斯 | [下载](https://url89.ctfile.com/f/31084289-1357044172-d3beba?p=8866) |\n| 你当像鸟飞往你的山 | 塔拉・韦斯特弗 | [下载](https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866) |\n| 看人心理学 | 赵育宁 | [下载](https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866) |\n| 如何成为面向未来的学习者（原书第7版） | 卡罗尔・卡特等 | [下载](https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866) |\n| 生而不凡 | 维申・拉克雅礼 | [下载](https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866) |\n| 人生效率手册：重塑升级版 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866) |\n| 策略：如何在复杂的世界里成为高手 | 江潮 | [下载](https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866) |\n| 高情商者会谈判 | 冯岳宁 | [下载](https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866) |\n| 第三道门 | 亚历克斯・班纳言 | [下载](https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866) |\n| 发现你的创造力类型 | 梅塔・瓦格纳 | [下载](https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866) |\n| 不怯场 | 译夫 | [下载](https://url89.ctfile.com/f/31084289-1357042144-f8796b?p=8866) |\n| 超级记忆 | 卢龙斌 | [下载](https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866) |\n| 反惯性思维 | 任白 | [下载](https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866) |\n| 本能：为什么我们管不住自己？ | 特里・伯纳姆/杰伊・费伦 | [下载](https://url89.ctfile.com/f/31084289-1357041325-3a6922?p=8866) |\n| 聪明人极简图表工作法 | 高桥政史 | [下载](https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866) |\n| 董卿：做一个有才情的女子 | 乔瑞玲 | [下载](https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866) |\n| 不要输在思维方法上 | 夏欣 | [下载](https://url89.ctfile.com/f/31084289-1357040785-53d198?p=8866) |\n| 精准努力：刘媛媛的逆袭课 | 刘媛媛 | [下载](https://url89.ctfile.com/f/31084289-1357040512-7c2ad0?p=8866) |\n| 自信的力量 | 夏尔・佩潘 | [下载](https://url89.ctfile.com/f/31084289-1357040455-c1bdea?p=8866) |\n| 奔跑的查理 | 查理・恩格 | [下载](https://url89.ctfile.com/f/31084289-1357040404-94e03c?p=8866) |\n| 别输在不会拒绝上 | 李劲 | [下载](https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866) |\n| 勇气 | 萨莉・克劳切克 | [下载](https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866) |\n| 深度连接 | 杰西・沃伦・特维罗 | [下载](https://url89.ctfile.com/f/31084289-1357039315-f3117a?p=8866) |\n| 好听：如何练就好声音 | 徐洁 | [下载](https://url89.ctfile.com/f/31084289-1357038898-d0f679?p=8866) |\n| 练习的心态 | 托马斯 M. 斯特纳 | [下载](https://url89.ctfile.com/f/31084289-1357038139-a13fd2?p=8866) |\n| 嫉羡与感恩 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866) |\n| 说话体现格局，决定结局 | 凌岚 | [下载](https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866) |\n| A4纸上看人生 | 刘建梅 | [下载](https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866) |\n| 你的眼界，决定你的全世界 | 西武 | [下载](https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866) |\n| 每周工作4小时（修订版） | 蒂莫西・费里斯 | [下载](https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866) |\n| 钱意识 | 沈诱冰 | [下载](https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866) |\n| 高效能人士的第八个习惯 | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866) |\n| 人生的84000种可能 | 艾力 | [下载](https://url89.ctfile.com/f/31084289-1357033465-4e8890?p=8866) |\n| 深夜加油站遇见苏格拉底 | 丹・米尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866) |\n| 高维度思考法 | 细谷功 | [下载](https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866) |\n| 精进2：解锁万物的心智进化法 | 采铜 | [下载](https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866) |\n| 二十几岁，没有十年 | 孙晴悦 | [下载](https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866) |\n| 升维：让你人生出众的另类通道 | 褚明宇 | [下载](https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866) |\n| 心理学经典必读系列（套装共5册） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866) |\n| 我曾走在崩溃的边缘 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357030531-2b0a54?p=8866) |\n| 每一个认真生活的人，都值得被认真对待 | 马叛/傅首尔/小岩井等 | [下载](https://url89.ctfile.com/f/31084289-1357030477-a9eb3c?p=8866) |\n| 亲和力 | 古宫昇 | [下载](https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866) |\n| 你有多强大，就有多温柔 | 王珣 | [下载](https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866) |\n| 你有你的计划，世界另有计划 | 万维钢 | [下载](https://url89.ctfile.com/f/31084289-1357029721-72fca7?p=8866) |\n| 深度成长：颠覆思维模式，重新定义成功 | 科里・夏纳罕 | [下载](https://url89.ctfile.com/f/31084289-1357029661-3b9e65?p=8866) |\n| 向前一步 | 谢丽尔・桑德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866) |\n| 你只是看起来很专注 | 张笑恒 | [下载](https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866) |\n| 你坚持的原则其实害了你 | 午堂登纪雄 | [下载](https://url89.ctfile.com/f/31084289-1357029151-25cd57?p=8866) |\n| 再忙也要用心生活 | 凯莉・威廉斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866) |\n| 女孩老板 | 索菲亚・阿莫鲁索 | [下载](https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866) |\n| 高能量姿势 | 埃米・卡迪 | [下载](https://url89.ctfile.com/f/31084289-1357027921-c57e26?p=8866) |\n| 艾莉诺好极了 | 盖尔・霍尼曼 | [下载](https://url89.ctfile.com/f/31084289-1357027849-94039f?p=8866) |\n| 30岁前的每一天 | 水湄物语 | [下载](https://url89.ctfile.com/f/31084289-1357027846-1a01dd?p=8866) |\n| 如果世事总能得偿所愿 | 余儒海 | [下载](https://url89.ctfile.com/f/31084289-1357027333-fd42c9?p=8866) |\n| 正能量 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357027312-ce75d5?p=8866) |\n| 我在天堂那五年 | 约翰・施利姆 | [下载](https://url89.ctfile.com/f/31084289-1357027240-d0e434?p=8866) |\n| 自我赋能 | 蒂法尼・杜芙 | [下载](https://url89.ctfile.com/f/31084289-1357027006-6f650f?p=8866) |\n| 能力变现 | 林宣 | [下载](https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866) |\n| 让我们相逢在更高处 | 王潇 | [下载](https://url89.ctfile.com/f/31084289-1357026193-085500?p=8866) |\n| 别让直性子毁了你 | 冠诚 | [下载](https://url89.ctfile.com/f/31084289-1357024201-97cdf0?p=8866) |\n| 美好人生运营指南 | 一稼 | [下载](https://url89.ctfile.com/f/31084289-1357022893-a74f2b?p=8866) |\n| 为什么精英都是时间控 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866) |\n| 活出人生最好的可能 | 毕啸南 | [下载](https://url89.ctfile.com/f/31084289-1357021909-536ba4?p=8866) |\n| 向着光亮那方 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357020682-46d971?p=8866) |\n| 泰普勒极简人生法则系列（套装共6册） | 理查德・泰普勒 | [下载](https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866) |\n| 人性的弱点：如何赢得友谊并影响他人 | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1357020529-00fe95?p=8866) |\n| 所谓高情商，就是有趣和知趣 | 李林坪 | [下载](https://url89.ctfile.com/f/31084289-1357019842-a3c50e?p=8866) |\n| 书都不会读，你还想成功 | 二志成/郑会一 | [下载](https://url89.ctfile.com/f/31084289-1357019692-41d226?p=8866) |\n| 感谢那些让你不开心的事儿 | 索尼娅・瑞克蒂 | [下载](https://url89.ctfile.com/f/31084289-1357019236-6bd523?p=8866) |\n| 我不要你死于一事无成 | 法齐娅・库菲 | [下载](https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866) |\n| 好的孤独 | 陈果 | [下载](https://url89.ctfile.com/f/31084289-1357017451-8689ec?p=8866) |\n| 活法（修订版） | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357016905-37a500?p=8866) |\n| 你骨子里是个牛人 |  珍・新赛罗 | [下载](https://url89.ctfile.com/f/31084289-1357016563-63ad1c?p=8866) |\n| 另一种选择 | 谢丽尔・桑德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357016002-2ef252?p=8866) |\n| 没经验，是你最大优势 | 蒋雅淇 | [下载](https://url89.ctfile.com/f/31084289-1357015990-ad6ad2?p=8866) |\n| 吉田医生哈佛求学记 | 吉田穗波 | [下载](https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866) |\n| 世上没有怀才不遇这件事 | 温言 | [下载](https://url89.ctfile.com/f/31084289-1357014346-461bcf?p=8866) |\n| 你要么出众，要么出局 | 李尚龙 | [下载](https://url89.ctfile.com/f/31084289-1357014193-3f0667?p=8866) |\n| 拆掉思维里的墙 | 古典 | [下载](https://url89.ctfile.com/f/31084289-1357014028-901478?p=8866) |\n| 从现在出发 | 陈春花 | [下载](https://url89.ctfile.com/f/31084289-1357013962-86c669?p=8866) |\n| 我在哈佛的最后一堂课 | 艾瑞克・赛诺威 | [下载](https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866) |\n| 不完美，才美 | 海蓝博士 | [下载](https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866) |\n| 不完美，才美II | 海蓝博士  | [下载](https://url89.ctfile.com/f/31084289-1357013653-c8d28d?p=8866) |\n| 自信力：成为最好的自己 | 罗布・杨 | [下载](https://url89.ctfile.com/f/31084289-1357012822-5aa98f?p=8866) |\n| 如何学习 | 本尼迪克特・凯里  | [下载](https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866) |\n| 在绝望中寻找希望 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866) |\n| 你自以为的极限，只是别人的起点 | 特立独行的猫 | [下载](https://url89.ctfile.com/f/31084289-1357011988-1c9150?p=8866) |\n| 工作DNA | 郝明义 | [下载](https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866) |\n| 我的奋斗 | 罗永浩 | [下载](https://url89.ctfile.com/f/31084289-1357011676-e33838?p=8866) |\n| 不抱怨的世界套装（共2册） | 威尔・鲍温 | [下载](https://url89.ctfile.com/f/31084289-1357011442-839945?p=8866) |\n| 解决冲突的关键技巧 | 达纳・卡斯帕森 | [下载](https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866) |\n| 人生不设限（中英双语版） | 力克・胡哲 | [下载](https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866) |\n| 28岁赚千万 | 穷富弹指间 | [下载](https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866) |\n| 当下的力量（珍藏版） | 埃克哈特・托利 | [下载](https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866) |\n| 你的生命有什么可能 | 古典 | [下载](https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866) |\n| 当你的才华还撑不起你的梦想时 | 特立独行的猫 | [下载](https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866) |\n| 刻意学习 | Scalers | [下载](https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866) |\n| 谁动了我的奶酪 | 斯宾塞・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357009150-f75f96?p=8866) |\n| 魔力法则：用一年时间积累一生财富（套装共3册） | 拿破仑・希尔 | [下载](https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866) |\n| 你从未真正拼过 | LinkedIn（领英） | [下载](https://url89.ctfile.com/f/31084289-1357008895-f7513b?p=8866) |\n| 朗达・拜恩作品集（全五册） | 朗达・拜恩 | [下载](https://url89.ctfile.com/f/31084289-1357008868-6c5f07?p=8866) |\n| 罗振宇：罗辑思维成长三部曲 | 罗振宇 | [下载](https://url89.ctfile.com/f/31084289-1357008769-f7cf2e?p=8866) |\n| 愿你的青春不负梦想 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357008100-18736d?p=8866) |\n| 为什么精英都是清单控 | 宝拉・里佐 | [下载](https://url89.ctfile.com/f/31084289-1357007710-be0e00?p=8866) |\n| 我还年轻，我还可以重新出发 | 唐骏 | [下载](https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866) |\n| 巨婴国 | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866) |\n| 荒野求生：面对冰封的海洋 | 贝尔・格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866) |\n| 人性的弱点 | 戴尔・卡耐基  | [下载](https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866) |\n| 雷军：创业没有时间表 | 胡以贵 | [下载](https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866) |\n| 独自上场 | 李娜 | [下载](https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866) |\n| 伟大是熬出来的 | 优米网 | [下载](https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866) |\n| 精进：如何成为一个很厉害的人 | 采铜 | [下载](https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866) |\n| 生命的重建 | 露易丝·海 | [下载](https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866) |\n| 硅谷禁书 | 查尔斯・哈尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866) |\n| 猫眼看美国 | 聂平 | [下载](https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866) |\n| 全中国最穷的小伙子发财日记 | 重庆老康 | [下载](https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866) |\n| 努力，才配有未来 | 小川叔 | [下载](https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866) |\n| 努力到无能为力，拼搏到感动自己 | 沐木 | [下载](https://url89.ctfile.com/f/31084289-1357006447-568588?p=8866) |\n| 沃顿商学院最受欢迎的思维课 | 亚当・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866) |\n| 不奋斗就等死 | 陈轩 | [下载](https://url89.ctfile.com/f/31084289-1357006111-6361a4?p=8866) |\n| 高效能人士的七个习惯（20周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866) |\n| 疯狂的程序员 | 绝影 | [下载](https://url89.ctfile.com/f/31084289-1357005982-212b99?p=8866) |\n| 不要让未来的你，讨厌现在的自己 | 特立独行的猫 | [下载](https://url89.ctfile.com/f/31084289-1357005937-7d4be8?p=8866) |\n| 成功的真谛 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866) |\n| 谁的青春不迷茫 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866) |\n| 史玉柱自述：我的营销心得 | 优米网 | [下载](https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866) |\n| 谁都不敢欺负你 | 力克・胡哲 | [下载](https://url89.ctfile.com/f/31084289-1357005631-9ebae5?p=8866) |\n| 将来的你，一定会感谢现在拼命的自己 | 汤木 | [下载](https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866) |\n| 世界因你不同：李开复自传 | 李开复 | [下载](https://url89.ctfile.com/f/31084289-1357005244-a5ac8a?p=8866) |\n"
  },
  {
    "path": "md/匈牙利.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 匈牙利\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 客居己乡 | 哲尔吉・康拉德 | [下载](https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866) |\n| 不识字的人 | 雅歌塔・克里斯多夫 | [下载](https://url89.ctfile.com/f/31084289-1357046671-ef211b?p=8866) |\n| 烛烬 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027732-a9cbf4?p=8866) |\n| 反叛者 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027423-a2e18f?p=8866) |\n| 分手在布达 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027363-6c9da6?p=8866) |\n"
  },
  {
    "path": "md/化学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 化学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 周期表 | 普里莫・莱维 | [下载](https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866) |\n| 武侠化学 | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1357031512-ccaaad?p=8866) |\n"
  },
  {
    "path": "md/北京.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 北京\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 京华遗韵 | 李弘 | [下载](https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866) |\n| 京华心影 | 李弘 | [下载](https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866) |\n| 老北京的记忆 | 张善培 | [下载](https://url89.ctfile.com/f/31084289-1357051321-5b328c?p=8866) |\n| 北京的隐秘角落 | 陆波 | [下载](https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866) |\n| 再会，老北京 | 迈克尔・麦尔 | [下载](https://url89.ctfile.com/f/31084289-1357022461-d6df24?p=8866) |\n| 北京，1912 | 穆儒丐 | [下载](https://url89.ctfile.com/f/31084289-1357017358-eeec31?p=8866) |\n| 八面来风 | 张克群 | [下载](https://url89.ctfile.com/f/31084289-1357014949-70bd3c?p=8866) |\n| 晨钟暮鼓 | 张克群 | [下载](https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866) |\n| 红墙黄瓦 | 张克群 | [下载](https://url89.ctfile.com/f/31084289-1357014904-b28aee?p=8866) |\n"
  },
  {
    "path": "md/北宋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 北宋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 东京梦华录（全本全注全译） | 杨春俏 | [下载](https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866) |\n| 汴京之围 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357034971-15dabf?p=8866) |\n| 一个帝国的生与死 | 夜狼啸西风 | [下载](https://url89.ctfile.com/f/31084289-1357007848-1e242c?p=8866) |\n"
  },
  {
    "path": "md/北欧.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 北欧\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 维京人的世界 | 菲利普・帕克 | [下载](https://url89.ctfile.com/f/31084289-1356986962-f7608b?p=8866) |\n| 外出偷马 | 佩尔・帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866) |\n| 猎豹（全二册） | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866) |\n"
  },
  {
    "path": "md/北洋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 北洋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 北洋风云人物 | 董尧 | [下载](https://url89.ctfile.com/f/31084289-1357020238-6652c1?p=8866) |\n| 北洋觉梦录：袁世凯 | 禅心初 | [下载](https://url89.ctfile.com/f/31084289-1357013425-886951?p=8866) |\n| 冯国璋：北洋时期最有争议的总统 | 韩仲义 | [下载](https://url89.ctfile.com/f/31084289-1357009432-510c86?p=8866) |\n| 文武北洋・风流篇 | 李洁 | [下载](https://url89.ctfile.com/f/31084289-1357009363-bd9b77?p=8866) |\n| 文武北洋・枭雄篇 | 李洁 | [下载](https://url89.ctfile.com/f/31084289-1357009366-f96c72?p=8866) |\n| 北洋军阀史（套装共2册） | 来新夏 | [下载](https://url89.ctfile.com/f/31084289-1357008457-b50456?p=8866) |\n"
  },
  {
    "path": "md/北韩.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 北韩\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 為了活下去：脫北女孩朴研美 | 朴研美 | [下载](https://url89.ctfile.com/f/31084289-1357008844-4ce616?p=8866) |\n"
  },
  {
    "path": "md/匠人.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 匠人\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 了不起的匠人（全20册套装） | 知了青年 | [下载](https://url89.ctfile.com/f/31084289-1357007389-02fb3c?p=8866) |\n"
  },
  {
    "path": "md/区块链.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 区块链\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 区块链实战：从技术创新到商业模式 | 冒志鸿/陈俊 | [下载](https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866) |\n| 区块链在中国 | 刘兴亮 | [下载](https://url89.ctfile.com/f/31084289-1356992362-ce1ea4?p=8866) |\n| 尖峰对话区块链 | 王峰 | [下载](https://url89.ctfile.com/f/31084289-1356992212-9a31a5?p=8866) |\n| 区块链浪潮 | 贾英昊/江泽武 | [下载](https://url89.ctfile.com/f/31084289-1356991633-222d1d?p=8866) |\n| 一本书读懂区块链 | 王腾鹤 | [下载](https://url89.ctfile.com/f/31084289-1356989131-40f05d?p=8866) |\n| 区块链项目开发指南 | 纳拉扬・普鲁斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357018585-e3a2cc?p=8866) |\n| 图说区块链 | 徐明星/田颖/李霁月 | [下载](https://url89.ctfile.com/f/31084289-1357017304-a06e53?p=8866) |\n| 解码区块链（套装共6册） | 田颖等  | [下载](https://url89.ctfile.com/f/31084289-1357015585-81fda1?p=8866) |\n| 区块链革命 | 唐塔普斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357011610-23b769?p=8866) |\n| 区块链社会 | 龚鸣 | [下载](https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866) |\n| 区块链 | 长铗/韩锋等 | [下载](https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866) |\n"
  },
  {
    "path": "md/医学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 医学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 在人间：肿瘤科女医生亲历记录 | 沈琳/戴志悦 | [下载](https://url89.ctfile.com/f/31084289-1375498033-dfa046?p=8866) |\n| 身体由我 | 希拉・德利兹/路易莎・施托默尔 | [下载](https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866) |\n| 柏林病人 | 娜塔莉亚・霍尔特 | [下载](https://url89.ctfile.com/f/31084289-1375498453-ee35c9?p=8866) |\n| 医学简史 | 杰克琳・杜芬 | [下载](https://url89.ctfile.com/f/31084289-1375499506-2cac2b?p=8866) |\n| 法医报告2 | 苏・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1375499542-190a47?p=8866) |\n| 狡猾的细胞 | 雅典娜・阿克蒂皮斯 | [下载](https://url89.ctfile.com/f/31084289-1375500322-b11884?p=8866) |\n| 图解国医典藏系列套装（全6册） | 张仲景等 | [下载](https://url89.ctfile.com/f/31084289-1375500892-16aa17?p=8866) |\n| 外科的诞生 | 大卫・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1375500703-c0710c?p=8866) |\n| 药物简史 | 德劳因・伯奇 | [下载](https://url89.ctfile.com/f/31084289-1375500718-9137b0?p=8866) |\n| 耐药菌小史 | 穆罕默德·H.扎曼 | [下载](https://url89.ctfile.com/f/31084289-1375500787-4ece60?p=8866) |\n| 癌症·免疫与治愈 | 迈克尔・金奇 | [下载](https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866) |\n| 张文鹤护肤指南 | 张文鹤 | [下载](https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866) |\n| 21个被“淘汰”的人体器官 | 坂井建雄 | [下载](https://url89.ctfile.com/f/31084289-1375509247-6918f2?p=8866) |\n| 致命敌人 | 迈克尔·T.奥斯特霍姆 | [下载](https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866) |\n| 人类大瘟疫 | 马克・霍尼斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866) |\n| 手术刀下的历史 | 阿诺德・范德拉尔 | [下载](https://url89.ctfile.com/f/31084289-1375510960-26a6f8?p=8866) |\n| 当死亡化作生命 | 书亚・梅兹里希 | [下载](https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866) |\n| 荒诞医学史·中国篇 | 光子 | [下载](https://url89.ctfile.com/f/31084289-1375512193-724ebd?p=8866) |\n| 血液循环 | 弗朗索瓦・布斯塔尼 | [下载](https://url89.ctfile.com/f/31084289-1375512286-58e5e6?p=8866) |\n| 正午之魔 | 安德鲁・所罗门 | [下载](https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866) |\n| 传染病的文化史 | 洛伊斯·N.玛格纳 | [下载](https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866) |\n| 传染 | 亚当・库哈尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1357003660-c8d8ff?p=8866) |\n| 永远的现在时 | 苏珊・科金 | [下载](https://url89.ctfile.com/f/31084289-1357003021-92ad62?p=8866) |\n| 近代中西医的博弈 | 皮国立 | [下载](https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866) |\n| 猎药师 | 唐纳德・R・基尔希/奥吉・奥加斯 | [下载](https://url89.ctfile.com/f/31084289-1357000702-1890cd?p=8866) |\n| 薄世宁医学通识讲义 | 薄世宁 | [下载](https://url89.ctfile.com/f/31084289-1356999703-5d8070?p=8866) |\n| 致命接触（第二版） | 大卫・奎曼 | [下载](https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866) |\n| 如何睡个好觉 | 劳伦斯·J. 爱泼斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866) |\n| 大流感 | 约翰 M.巴里 | [下载](https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866) |\n| 法医报告 | 苏・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866) |\n| 一口一口“吃掉”你 | 生命时报 | [下载](https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866) |\n| 致命流感 | 杰里米・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866) |\n| 《新科学家》杂志轻科普系列（套装全3册） | 新科学家杂志 | [下载](https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866) |\n| 新型冠状病毒感染防护 | 何剑峰/宋铁 | [下载](https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866) |\n| 超级潜能 | 亚当・皮奥里 | [下载](https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866) |\n| 自愈力的真相 | 乔・马钱特 | [下载](https://url89.ctfile.com/f/31084289-1357045252-1206fc?p=8866) |\n| 共同的生命线 | 约翰・苏尔斯顿/乔治娜・费里 | [下载](https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866) |\n| 产科男医生手记 | 田吉顺 | [下载](https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866) |\n| 病者生存 | 沙龙・莫勒姆/乔纳森・普林斯 | [下载](https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866) |\n| 12个我 | 安定医院郝医生 | [下载](https://url89.ctfile.com/f/31084289-1357040833-aa12b3?p=8866) |\n| 免疫 | 尤拉・比斯 | [下载](https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866) |\n| 人人都该懂的遗传学 | 伯顿・格特曼等 | [下载](https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866) |\n| 新药的故事 | 梁贵柏 | [下载](https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866) |\n| 人人都该懂的法庭科学 | 杰伊・西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866) |\n| 认识身体2 | 加文・弗朗西斯 | [下载](https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866) |\n| 绝对笑喷之弃业医生日志 | 亚当・凯 | [下载](https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866) |\n| 菌群大脑 | 戴维・珀尔马特/克里斯廷・洛伯格 | [下载](https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866) |\n| 急救，比医生快一步 | 贾大成 | [下载](https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866) |\n| 破解生死大数据 | 杰瑞米・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357029103-b96a45?p=8866) |\n| 隐藏的意识 | 约翰・巴奇 | [下载](https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866) |\n| 打开一颗心 | 斯蒂芬・韦斯塔比 | [下载](https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866) |\n| 医生的精进 | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866) |\n| 中医祖传的那点儿东西1 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357023940-2253ae?p=8866) |\n| 荒诞医学史 | 莉迪亚・康/内特・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866) |\n| 暗黑医疗史 | 苏上豪 | [下载](https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866) |\n| 医学的真相 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866) |\n| 消失的微生物 | 马丁・布莱泽 | [下载](https://url89.ctfile.com/f/31084289-1357020871-3d589b?p=8866) |\n| 安慰剂效应 | 莉萨・兰金 | [下载](https://url89.ctfile.com/f/31084289-1357020814-39b49a?p=8866) |\n| 病毒防御和心理复原力三部曲 | 内森・沃尔夫等 | [下载](https://url89.ctfile.com/f/31084289-1357020532-469146?p=8866) |\n| 阿图医生（第一季） | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357020301-9a986a?p=8866) |\n| 阿图医生（第二季） | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357020292-b5bcc6?p=8866) |\n| 每个人的战争 | 大卫・塞尔旺・施莱伯 | [下载](https://url89.ctfile.com/f/31084289-1357020205-f17668?p=8866) |\n| 他们应当行走 | 戴维・M. 奥辛斯基 | [下载](https://url89.ctfile.com/f/31084289-1357017937-987b61?p=8866) |\n| 超越人类 | 伊芙・赫洛尔德 | [下载](https://url89.ctfile.com/f/31084289-1357017697-b3e68f?p=8866) |\n| 癌症科普（套装共2册） | 李治中 | [下载](https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866) |\n| 协和医事 | 常青 | [下载](https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866) |\n| 湛庐文化医学人文经典书系（套装共5册） | 阿图・葛文德等 | [下载](https://url89.ctfile.com/f/31084289-1357012834-c2175e?p=8866) |\n| 最好的抉择 | 杰尔姆・格罗普曼/帕米拉・哈茨班德 | [下载](https://url89.ctfile.com/f/31084289-1357012789-a455a7?p=8866) |\n| 人体的故事：进化、健康与疾病 | 丹尼尔・利伯曼  | [下载](https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866) |\n| 迈克尔·波伦“饮食觉醒”系列（套装共3册） | 迈克尔・波伦 | [下载](https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866) |\n| 血疫：埃博拉的故事 | 理查德・普雷斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866) |\n| 致命接触：全球大型传染病探秘之旅 | 大卫·奎曼  | [下载](https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866) |\n| 癌症·真相 | 菠萝 | [下载](https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866) |\n| 众病之王：癌症传 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866) |\n"
  },
  {
    "path": "md/医疗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 医疗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 疫苗竞赛 | 梅雷迪丝・瓦德曼 | [下载](https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866) |\n| 医疗与人性系列（套装共4册） | 亨利・马什等 | [下载](https://url89.ctfile.com/f/31084289-1357004365-27ce81?p=8866) |\n| 美国病 | 伊丽莎白・罗森塔尔 | [下载](https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866) |\n| 未来的处方 | 伊齐基尔・伊曼纽尔 | [下载](https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866) |\n| 病者生存 | 沙龙・莫勒姆/乔纳森・普林斯 | [下载](https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866) |\n| 新药的故事 | 梁贵柏 | [下载](https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866) |\n| 医生的修炼 | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357024060-80fd78?p=8866) |\n| 医生的精进 | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866) |\n| 暗黑医疗史 | 苏上豪 | [下载](https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866) |\n| 认识身体 | 加文・弗朗西斯 | [下载](https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866) |\n"
  },
  {
    "path": "md/十字军.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 十字军\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 最后的十字军东征 | 奈杰尔・克利夫 | [下载](https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866) |\n| 第一次十字军东征 | 彼得・弗兰科潘 | [下载](https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866) |\n| 圣经与利剑 | 巴巴拉・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357030240-83cc6f?p=8866) |\n| 十字军东征简史（插图本） | 米肖 | [下载](https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866) |\n"
  },
  {
    "path": "md/华为.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 华为\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大头侃人：任正非 | 于立坤 | [下载](https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866) |\n| 从偶然到必然 | 夏忠毅 | [下载](https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866) |\n| 熵减：华为活力之源 | 华为大学 | [下载](https://url89.ctfile.com/f/31084289-1357003804-77cb09?p=8866) |\n| 华为增长法 | 胡赛雄 | [下载](https://url89.ctfile.com/f/31084289-1356994717-50ac38?p=8866) |\n| 华为管理变革 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357036516-884b3b?p=8866) |\n| 华为方法论 | 周锡冰 | [下载](https://url89.ctfile.com/f/31084289-1357033705-5ef0ea?p=8866) |\n| 任正非传 | 孙力科 | [下载](https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866) |\n| 价值为纲：华为公司财经管理纲要 | 黄卫伟 | [下载](https://url89.ctfile.com/f/31084289-1357017811-05f4eb?p=8866) |\n| 华为没有秘密 | 吴春波 | [下载](https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866) |\n"
  },
  {
    "path": "md/华尔街.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 华尔街\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 说谎者的扑克牌（纪念版） | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866) |\n| 华尔街之狼：掌握直线销售的艺术 | 乔丹・贝尔福特 | [下载](https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866) |\n| 最后的财富帝国 | 彼得・查普曼 | [下载](https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866) |\n| 大而不倒 | 安德鲁・罗斯・索尔金 | [下载](https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866) |\n| 华尔街之狼 | 乔丹・贝尔福特 | [下载](https://url89.ctfile.com/f/31084289-1357020553-c64dc1?p=8866) |\n| 伟大的博弈 | 约翰・斯蒂尔・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866) |\n| 华尔街潜规则 | 乔舒亚・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866) |\n| 大空头 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866) |\n| 年轻资本 | 凯文·鲁斯 | [下载](https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866) |\n| 门口的野蛮人 | 布赖恩・伯勒 | [下载](https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866) |\n"
  },
  {
    "path": "md/协同.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 协同\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 协同：如何打造高联动团队 | 马克・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866) |\n"
  },
  {
    "path": "md/南北朝.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 南北朝\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 魏晋南北朝史十二讲 | 周一良 | [下载](https://url89.ctfile.com/f/31084289-1356989491-004df4?p=8866) |\n| 南北战争三百年 | 李硕 | [下载](https://url89.ctfile.com/f/31084289-1357021018-29e73a?p=8866) |\n| 后三国战争史 | 陈峰韬 | [下载](https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866) |\n| 分裂的帝国：南北朝 | 陆威仪 | [下载](https://url89.ctfile.com/f/31084289-1357009144-7f2fef?p=8866) |\n"
  },
  {
    "path": "md/南宋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 南宋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 南宋行暮 | 虞云国 | [下载](https://url89.ctfile.com/f/31084289-1357042666-24868f?p=8866) |\n| 绍兴十二年 | 夏坚勇 | [下载](https://url89.ctfile.com/f/31084289-1357025293-69c02c?p=8866) |\n| 风流南宋 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866) |\n"
  },
  {
    "path": "md/南怀瑾.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 南怀瑾\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 南怀瑾人生精讲系列（套装共5册） | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357029634-7b17a3?p=8866) |\n"
  },
  {
    "path": "md/南极.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 南极\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 世界最险恶之旅Ⅰ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866) |\n| 世界最险恶之旅Ⅱ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866) |\n| 熬：极地求生700天 | 阿尔弗雷德・兰辛 | [下载](https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866) |\n"
  },
  {
    "path": "md/南非.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 南非\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 不敢懈怠 | 纳尔逊・曼德拉 | [下载](https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866) |\n| 南非的启示 | 秦晖 | [下载](https://url89.ctfile.com/f/31084289-1357012105-8052a4?p=8866) |\n| 没有宽恕就没有未来 | 德斯蒙德・图图 | [下载](https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866) |\n"
  },
  {
    "path": "md/博弈.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 博弈\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 博弈：所有问题都是一场赛局 | 川西谕 | [下载](https://url89.ctfile.com/f/31084289-1375509700-04f1de?p=8866) |\n| 绝地谈判 | 马蒂亚斯・施汉纳 | [下载](https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866) |\n| 合作的复杂性 | 罗伯特・阿克塞尔罗德 | [下载](https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866) |\n| 合作的进化 | 罗伯特・艾克斯罗德 | [下载](https://url89.ctfile.com/f/31084289-1357021090-b0978a?p=8866) |\n| 击败庄家 | 爱德华・索普 | [下载](https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866) |\n| 囚徒的困境 | 威廉姆・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866) |\n| 妙趣横生博弈论（珍藏版） | 阿维纳什・迪克西特/巴里・奈尔伯夫 | [下载](https://url89.ctfile.com/f/31084289-1357014160-37866b?p=8866) |\n| 用博弈的思维看世界 | 蒋文华 | [下载](https://url89.ctfile.com/f/31084289-1357014109-0ed381?p=8866) |\n| 博弈论的诡计 | 王春永 | [下载](https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866) |\n| 博弈论平话 | 王则柯 | [下载](https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866) |\n| 活学活用博弈论 | 詹姆斯・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866) |\n"
  },
  {
    "path": "md/博弈论.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 博弈论\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 博弈论与生活 | 兰・费雪 | [下载](https://url89.ctfile.com/f/31084289-1375507066-43abdb?p=8866) |\n| 角斗士、海盗与信任博弈 | 哈伊姆・夏皮拉 | [下载](https://url89.ctfile.com/f/31084289-1357050799-329cef?p=8866) |\n"
  },
  {
    "path": "md/博物馆.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 博物馆\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 走进博物馆（套装12册） | 陕西省文物局 | [下载](https://url89.ctfile.com/f/31084289-1375498555-c1a8e6?p=8866) |\n| 让木乃伊跳舞（新版） | 托马斯・霍文 | [下载](https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866) |\n| 博物馆里的极简中国史 | 张经纬 | [下载](https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866) |\n| 佛罗伦萨圣母百花大教堂博物馆 | 蒂莫西・弗登 | [下载](https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866) |\n| 雅典考古博物馆 | 卢卡・莫扎蒂 | [下载](https://url89.ctfile.com/f/31084289-1357022161-31f368?p=8866) |\n| 那不勒斯国家考古博物馆 | 迪雷塔・哥伦布 | [下载](https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866) |\n| 米兰波尔迪·佩佐利博物馆 | 玛利亚·特蕾莎·巴尔博尼·布雷萨等 | [下载](https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866) |\n| 开罗埃及博物馆 | 西尔维娅・埃诺迪 | [下载](https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866) |\n| 那不勒斯卡波迪蒙特博物馆 | 马蒂亚・盖塔 | [下载](https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866) |\n| 米兰布雷拉美术馆 | 斯蒂芬尼・祖菲 | [下载](https://url89.ctfile.com/f/31084289-1357019170-dd2f29?p=8866) |\n| 米兰斯福尔扎古堡博物馆 | 马蒂诺・阿斯托尔菲 | [下载](https://url89.ctfile.com/f/31084289-1357019149-58301b?p=8866) |\n| 威尼斯学院美术馆 | 露琪亚・伊姆佩鲁索 | [下载](https://url89.ctfile.com/f/31084289-1357019119-338773?p=8866) |\n| 帕尔马国家美术馆 | 乔瓦娜・达米亚尼等 | [下载](https://url89.ctfile.com/f/31084289-1357019065-def2cc?p=8866) |\n| 莫斯科普希金博物馆 | 西莫内塔・佩卢西 | [下载](https://url89.ctfile.com/f/31084289-1357019038-d6ede3?p=8866) |\n| 圣彼得堡冬宫博物馆 | 亚历山大・弗雷格伦特 | [下载](https://url89.ctfile.com/f/31084289-1357019044-36223b?p=8866) |\n| 博洛尼亚国家艺术画廊 | 贝亚特莉切・布斯卡罗利 | [下载](https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866) |\n| 华盛顿国家艺术馆 | 罗萨娜・乔尔吉 | [下载](https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866) |\n| 伦敦国家美术馆 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357018696-513898?p=8866) |\n| 马德里普拉多博物馆 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357018684-d7b281?p=8866) |\n| 乌尔比诺马尔凯国家美术馆 | 罗伦查・莫基・奥诺里等 | [下载](https://url89.ctfile.com/f/31084289-1357018648-5c52b0?p=8866) |\n| 维也纳艺术史博物馆 | 西尔维娅・波尔盖斯 | [下载](https://url89.ctfile.com/f/31084289-1357018669-686c5d?p=8866) |\n| 巴黎卢浮宫 | 亚历山德拉・弗雷格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357012414-10182f?p=8866) |\n| 阿姆斯特丹国家博物馆 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866) |\n| 佛罗伦萨皮蒂宫 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357012279-fd065b?p=8866) |\n| 佛罗伦萨乌菲齐画廊 | 艾莱娜・吉纳耐斯奇 | [下载](https://url89.ctfile.com/f/31084289-1357012285-af45df?p=8866) |\n| 伦敦大英博物馆 | 卢卡・莫扎蒂  | [下载](https://url89.ctfile.com/f/31084289-1357012210-e9d448?p=8866) |\n| 巴黎奥赛美术馆 | 西蒙娜・巴尔多蕾娜 | [下载](https://url89.ctfile.com/f/31084289-1357012240-1bee54?p=8866) |\n| 大英博物馆世界简史（套装共3册） | 尼尔・麦格雷戈 | [下载](https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866) |\n| 两个故宫的离合 | 野岛刚  | [下载](https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866) |\n"
  },
  {
    "path": "md/卡通.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 卡通\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 镖人10 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1375492399-b7dec5?p=8866) |\n| 乌龙院大长篇之活宝传奇（第二辑） | 敖幼祥 | [下载](https://url89.ctfile.com/f/31084289-1375495999-c078ba?p=8866) |\n| 乌龙院大长篇之活宝传奇（第一辑） | 敖幼祥 | [下载](https://url89.ctfile.com/f/31084289-1375494919-9c0725?p=8866) |\n| 阿拉蕾（第1部：卷1~卷6） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1375497349-aa8a4e?p=8866) |\n| 恶犬之牙 | 鱼骨互娱 | [下载](https://url89.ctfile.com/f/31084289-1357001476-984182?p=8866) |\n| hi我的名字叫镰 | 天翼爱动漫 | [下载](https://url89.ctfile.com/f/31084289-1356999409-80bef5?p=8866) |\n"
  },
  {
    "path": "md/印度.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 印度\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 阿育王 | 文森特・阿瑟・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1356996580-36df48?p=8866) |\n| 印度文明史 | 常磐大定 | [下载](https://url89.ctfile.com/f/31084289-1356995485-394351?p=8866) |\n| 孟买：欲望丛林 | 苏科图・梅塔 | [下载](https://url89.ctfile.com/f/31084289-1356991444-36c1f2?p=8866) |\n| 浮世恒河 | 乔治・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866) |\n| 莫卧儿帝国 | H.G.基恩 | [下载](https://url89.ctfile.com/f/31084289-1357053571-9577f0?p=8866) |\n| 犍陀罗文明史 | 孙英刚 | [下载](https://url89.ctfile.com/f/31084289-1357045543-bc6145?p=8866) |\n| 皇位之争 | 贾杜纳斯・萨卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357043626-79ec52?p=8866) |\n| 幽暗国度 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866) |\n| 印度：受伤的文明 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038451-62394a?p=8866) |\n| 印度：百万叛变的今天 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866) |\n| 季风帝国 | 理查德・霍尔 | [下载](https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866) |\n| 印度佛教史 | 平川彰 | [下载](https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866) |\n| 给大家看的印度通史 | 陈恭禄 | [下载](https://url89.ctfile.com/f/31084289-1357023724-9ae83b?p=8866) |\n| The Association of Small Bombs | Mahajan Karan | [下载](https://url89.ctfile.com/f/31084289-1357023568-86906f?p=8866) |\n| 资本之都 | 拉纳・达斯古普塔 | [下载](https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866) |\n| 印度，漂浮的次大陆 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866) |\n| 从西天到中土 | 西天中土项目组 | [下载](https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866) |\n| 甘地自传 | 甘地 | [下载](https://url89.ctfile.com/f/31084289-1357008160-0e39e0?p=8866) |\n"
  },
  {
    "path": "md/危机.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 危机\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 灭火：美国金融危机及其教训 | 本・伯南克等 | [下载](https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866) |\n"
  },
  {
    "path": "md/历史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 历史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 美国四百年 | 布・斯里尼瓦桑 | [下载](https://url89.ctfile.com/f/31084289-1375490923-e9b635?p=8866) |\n| 六朝文明（中译修订版） | 丁爱博 | [下载](https://url89.ctfile.com/f/31084289-1375491355-eb0d4e?p=8866) |\n| 黄金：权力与财富的世界简史 | 伯德・史蒂芬・格雷 | [下载](https://url89.ctfile.com/f/31084289-1375491481-144bc0?p=8866) |\n| 纳粹集中营史（全2册） | 尼古劳斯・瓦克斯曼 | [下载](https://url89.ctfile.com/f/31084289-1375491625-c415d8?p=8866) |\n| 改变历史的香料商人 | 贾尔斯・米尔顿 | [下载](https://url89.ctfile.com/f/31084289-1375491709-49d668?p=8866) |\n| 哲人与权臣 | 詹姆斯・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1375491652-6fd685?p=8866) |\n| 希腊思想与文化 | 吴晓群 | [下载](https://url89.ctfile.com/f/31084289-1375491883-e507e4?p=8866) |\n| 拜占庭的失落之城 | 斯蒂文・朗西曼 | [下载](https://url89.ctfile.com/f/31084289-1375491781-3f42cf?p=8866) |\n| 大酋长伊丽莎白 | 贾尔斯・米尔顿 | [下载](https://url89.ctfile.com/f/31084289-1375491760-3ce9b1?p=8866) |\n| 疑案里的中国史 | 艾公子 | [下载](https://url89.ctfile.com/f/31084289-1375492021-d4507b?p=8866) |\n| 二十六史：完本精校大全集 | 尹小林 | [下载](https://url89.ctfile.com/f/31084289-1375492978-9ee6ed?p=8866) |\n| 全球海盗史 | 彼得・莱尔 | [下载](https://url89.ctfile.com/f/31084289-1375492117-e4c788?p=8866) |\n| 作家们的作家 | 克雷格・惠特洛克 | [下载](https://url89.ctfile.com/f/31084289-1375492210-4f29b8?p=8866) |\n| 三联文史新论（套装21册） | 王家范等 | [下载](https://url89.ctfile.com/f/31084289-1375492912-36485b?p=8866) |\n| 读通鉴论（全本全注全译） | 王夫之等 | [下载](https://url89.ctfile.com/f/31084289-1375492498-e835e5?p=8866) |\n| 世界环境史 | 威廉·H. 麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1375492747-a5c12b?p=8866) |\n| 圣殿骑士团：从神坛跌落尘埃 | 迈克尔・克里根 | [下载](https://url89.ctfile.com/f/31084289-1375493314-61cf2a?p=8866) |\n| 历史的温度6 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1375493095-500939?p=8866) |\n| 俄国史译（全7册） | 伊利娜・谢尔盖耶夫娜・雷巴乔诺克等 | [下载](https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866) |\n| 三国史话 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1375493698-8e176a?p=8866) |\n| 拿得起放不下的大唐史（套装共6册） | 九皋寒叟 | [下载](https://url89.ctfile.com/f/31084289-1375493803-e9b7e5?p=8866) |\n| 诸神的黄昏 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866) |\n| 易中天中华史（全24卷） | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1375495477-bb3864?p=8866) |\n| 海外中国研究套书合集（50册） | 杜赞奇 | [下载](https://url89.ctfile.com/f/31084289-1375494265-1152a5?p=8866) |\n| 牛津欧洲史 | 威廉·多伊尔等 | [下载](https://url89.ctfile.com/f/31084289-1375495393-244d19?p=8866) |\n| 反战之战 | 乌娜·A. 海瑟薇 | [下载](https://url89.ctfile.com/f/31084289-1375495162-eff7e1?p=8866) |\n| 宋代中国的改革 | 刘子健 | [下载](https://url89.ctfile.com/f/31084289-1375495447-1ca964?p=8866) |\n| 最后的十字军东征 | 奈杰尔・克利夫 | [下载](https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866) |\n| 魏斐德上海三部曲 | 魏斐德 | [下载](https://url89.ctfile.com/f/31084289-1375496977-14fca6?p=8866) |\n| 布拉格：欧洲的十字路口 | 德里克・塞耶 | [下载](https://url89.ctfile.com/f/31084289-1375497352-fa1e56?p=8866) |\n| 欧洲史：古典时代 | 诺曼・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375497439-2b024e?p=8866) |\n| 欧洲史：帝国时代 | 诺曼・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375497445-985dca?p=8866) |\n| 欧洲史：转型时代 | 诺曼・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375497463-481df6?p=8866) |\n| 超实用的日本史 | 后藤武士 | [下载](https://url89.ctfile.com/f/31084289-1375497544-bdb659?p=8866) |\n| 民族国家间的和平与战争（全2册） | 雷蒙・阿隆 | [下载](https://url89.ctfile.com/f/31084289-1375497541-2895bb?p=8866) |\n| 西方古典学术史（第三卷） | 约翰・埃德温・桑兹 | [下载](https://url89.ctfile.com/f/31084289-1375497601-28eb3a?p=8866) |\n| 海洋帝国的崛起 | 安东・范德伦 | [下载](https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866) |\n| 别人的动物园 | 扬・莫恩浩特 | [下载](https://url89.ctfile.com/f/31084289-1375497574-d5742d?p=8866) |\n| 西方古典学术史（第一卷） | 约翰・埃德温・桑兹 | [下载](https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866) |\n| 中国从此走向大唐 | 叶言都 | [下载](https://url89.ctfile.com/f/31084289-1375497640-aa733a?p=8866) |\n| 西方古典学术史（第二卷） | 约翰・埃德温・桑兹 | [下载](https://url89.ctfile.com/f/31084289-1375497706-77e84b?p=8866) |\n| 帝国与蛮族 | 彼得・希瑟 | [下载](https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866) |\n| 日本战国群雄系列（套装八册） | 山冈庄八等 | [下载](https://url89.ctfile.com/f/31084289-1375497868-3fc56a?p=8866) |\n| 希腊三百年 | 罗德里克・比顿 | [下载](https://url89.ctfile.com/f/31084289-1375498024-c93e11?p=8866) |\n| 走进博物馆（套装12册） | 陕西省文物局 | [下载](https://url89.ctfile.com/f/31084289-1375498555-c1a8e6?p=8866) |\n| 大萧条前夜的繁荣与疯狂 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866) |\n| 煌煌商周 | 高虫二 | [下载](https://url89.ctfile.com/f/31084289-1375498399-fe1caa?p=8866) |\n| 有趣得让人睡不着的三国史（套装共3册） | 醉罢君山 | [下载](https://url89.ctfile.com/f/31084289-1375498435-696d7b?p=8866) |\n| 杨宽著作集第一辑+第二辑（13种15册全） | 杨宽 | [下载](https://url89.ctfile.com/f/31084289-1375498888-2686f0?p=8866) |\n| 日本及其历史枷锁 | 塔格特・墨菲 | [下载](https://url89.ctfile.com/f/31084289-1375498516-d910c5?p=8866) |\n| 法国大革命前夕的图书世界 | 罗伯特・达恩顿 | [下载](https://url89.ctfile.com/f/31084289-1375498648-a7b92b?p=8866) |\n| 横滨中华街（1894～1972） | 韩清安 | [下载](https://url89.ctfile.com/f/31084289-1375498627-a64b34?p=8866) |\n| 跟着文物穿越历史 | 张志浩 | [下载](https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866) |\n| 国宝来了 | 马菁菁 | [下载](https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866) |\n| 毒枪手：慕尼黑的秘密间谍 | 沙希利・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866) |\n| 文治帝国 | 艾公子 | [下载](https://url89.ctfile.com/f/31084289-1375498795-f4db48?p=8866) |\n| 大明兴衰三百年 | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1375498804-6bd132?p=8866) |\n| 罗马史纲 | 李筠 | [下载](https://url89.ctfile.com/f/31084289-1375498807-cf24d9?p=8866) |\n| 佩拉宫的午夜 | 查尔斯・金 | [下载](https://url89.ctfile.com/f/31084289-1375498822-cf18fd?p=8866) |\n| 伊藤博文：近代日本奠基人 | 伊藤之雄 | [下载](https://url89.ctfile.com/f/31084289-1375498831-0dc067?p=8866) |\n| 九说中国系列（第一辑·全九册） | 江晓原等 | [下载](https://url89.ctfile.com/f/31084289-1375498858-bb9ccb?p=8866) |\n| 地中海世界一万五千年 | 阿兰・布隆迪 | [下载](https://url89.ctfile.com/f/31084289-1375498942-9f4334?p=8866) |\n| 古希腊文明的光芒 | 赵林 | [下载](https://url89.ctfile.com/f/31084289-1375499062-3dfd8c?p=8866) |\n| 工业革命前的欧洲社会与经济 | 卡洛·M. 奇波拉 | [下载](https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866) |\n| 纳粹猎人 | 安德鲁・纳戈尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1375499107-ffa76f?p=8866) |\n| 诅咒之塔 | 罗杰・克劳利 | [下载](https://url89.ctfile.com/f/31084289-1375499152-78edc0?p=8866) |\n| 萤火虫丛书第三辑（套装共10册） | 汉娜・韦斯特莱克 | [下载](https://url89.ctfile.com/f/31084289-1375499902-209173?p=8866) |\n| 伊朗四千年 | 霍昌・纳哈万迪/伊夫・博马提 | [下载](https://url89.ctfile.com/f/31084289-1375499314-26cba2?p=8866) |\n| 巴黎陷落 | 阿利斯泰尔・霍恩 | [下载](https://url89.ctfile.com/f/31084289-1375499338-db0284?p=8866) |\n| 丝绸之路大历史 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1375499356-2aa497?p=8866) |\n| 帝国经济风暴 | 张昕冉 | [下载](https://url89.ctfile.com/f/31084289-1375499353-a57622?p=8866) |\n| 德意志理想主义的诞生：席勒传 | 吕迪格尔・萨弗兰斯基 | [下载](https://url89.ctfile.com/f/31084289-1375499365-050061?p=8866) |\n| 西乡隆盛与明治维新 | 坂野润治 | [下载](https://url89.ctfile.com/f/31084289-1375499371-114dcf?p=8866) |\n| 大加速：1945年以来人类世的环境史 | 约翰·R.麦克尼尔等 | [下载](https://url89.ctfile.com/f/31084289-1375499380-1d1f87?p=8866) |\n| 凝视上帝 | 西蒙・赫弗 | [下载](https://url89.ctfile.com/f/31084289-1375499425-8eff3d?p=8866) |\n| 美利坚的民族 | 科林・伍达德 | [下载](https://url89.ctfile.com/f/31084289-1375499449-5b4652?p=8866) |\n| 凡尔登战役 | 阿利斯泰尔・霍恩 | [下载](https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866) |\n| 大转向：世界如何步入现代 | 斯蒂芬・格林布拉特 | [下载](https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866) |\n| 辉煌信标：美国灯塔史 | 埃里克・杰・多林 | [下载](https://url89.ctfile.com/f/31084289-1375499494-7adcd3?p=8866) |\n| 乱世四百年（全3册） | 张程 | [下载](https://url89.ctfile.com/f/31084289-1375499563-57bb66?p=8866) |\n| 玛雅三千年 | 西尔韦纳斯・莫利 | [下载](https://url89.ctfile.com/f/31084289-1375499653-c0d007?p=8866) |\n| 清华建筑小史全系套装（套装共6册） | 孙大章等 | [下载](https://url89.ctfile.com/f/31084289-1375500016-12c10e?p=8866) |\n| 珞珈筑记 | 刘文祥 | [下载](https://url89.ctfile.com/f/31084289-1375499812-bde5c1?p=8866) |\n| 萤火虫丛书第一辑（套装共10册） | 乔恩・怀特等 | [下载](https://url89.ctfile.com/f/31084289-1375500310-1289b6?p=8866) |\n| 萤火虫丛书第二辑（套装共10册） | 艾米・贝斯特等 | [下载](https://url89.ctfile.com/f/31084289-1375500640-a5b55f?p=8866) |\n| 绯闻艺术史 | 林微云 | [下载](https://url89.ctfile.com/f/31084289-1375499971-4d8b4d?p=8866) |\n| 共有的习惯 | E.P. 汤普森 | [下载](https://url89.ctfile.com/f/31084289-1375500268-020026?p=8866) |\n| 画以人传 | 陈文璟 | [下载](https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866) |\n| 100个物品中的德国历史 | 赫尔曼・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1375500205-230f28?p=8866) |\n| 四大帝国兴衰史（套装共4册） | 塞西尔・詹金斯等 | [下载](https://url89.ctfile.com/f/31084289-1375500286-2a28e0?p=8866) |\n| 大战：1914～1918年的世界（全2册） | 赫尔弗里德・明克勒 | [下载](https://url89.ctfile.com/f/31084289-1375500367-921478?p=8866) |\n| 维多利亚时代 | 朱迪丝・弗兰德斯 | [下载](https://url89.ctfile.com/f/31084289-1375500562-7ac52d?p=8866) |\n| 玻利瓦尔 | 玛丽・阿拉纳 | [下载](https://url89.ctfile.com/f/31084289-1375500586-2ba984?p=8866) |\n| 索恩日本史（全三卷） | 乔治・贝利・桑瑟姆 | [下载](https://url89.ctfile.com/f/31084289-1375500676-41bbe4?p=8866) |\n| 简读日本史 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1375500772-59176a?p=8866) |\n| 看得见的历史精华·贝克知识丛书（套装共21册） | 汉斯-克里斯托弗・施罗德 | [下载](https://url89.ctfile.com/f/31084289-1375500913-fd0de9?p=8866) |\n| 黑暗时代 | 马丁·J. 多尔蒂 | [下载](https://url89.ctfile.com/f/31084289-1375501063-141e2f?p=8866) |\n| 被隔绝的女孩 | 巴尔特・范埃斯 | [下载](https://url89.ctfile.com/f/31084289-1375501051-01d0ce?p=8866) |\n| 祥瑞：王莽和他的时代 | 张向荣 | [下载](https://url89.ctfile.com/f/31084289-1375501060-79c4bc?p=8866) |\n| 骑士团九百年 | 德斯蒙德・苏厄德 | [下载](https://url89.ctfile.com/f/31084289-1375501162-ae68dd?p=8866) |\n| 讲谈社·日本的历史套装（全10册） | 寺泽薫等 | [下载](https://url89.ctfile.com/f/31084289-1375501306-1c097f?p=8866) |\n| 重返帕米尔 | 侯杨方 | [下载](https://url89.ctfile.com/f/31084289-1375501357-a9c1bd?p=8866) |\n| 征服，1016-1130西西里的诺曼王朝Ⅰ | 约翰・朱利叶斯・诺威奇 | [下载](https://url89.ctfile.com/f/31084289-1375501414-844f43?p=8866) |\n| 王国，1130-1194西西里的诺曼王朝Ⅱ | 约翰・朱利叶斯・诺威奇 | [下载](https://url89.ctfile.com/f/31084289-1375501453-a22ed4?p=8866) |\n| 日本社会变迁研究套书（全4卷） | 中国日本史学会东北师范大学东亚研究院 | [下载](https://url89.ctfile.com/f/31084289-1375501510-03fea8?p=8866) |\n| 传染病与人类历史 | 约书亚·S.卢米斯 | [下载](https://url89.ctfile.com/f/31084289-1375501513-c3ab6e?p=8866) |\n| 星空5500年 | 爱德华・布鲁克-海钦 | [下载](https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866) |\n| 金线：织物如何改变了历史？ | 卡西亚・圣克莱尔 | [下载](https://url89.ctfile.com/f/31084289-1375501624-793bc8?p=8866) |\n| 茅海建作品集（套装共5册） | 茅海建 | [下载](https://url89.ctfile.com/f/31084289-1375502044-913caf?p=8866) |\n| 黎东方讲史（套装共九册） | 黎东方 | [下载](https://url89.ctfile.com/f/31084289-1375502284-a5d182?p=8866) |\n| 三联当代学术丛书（套装10册） | 茅海建等 | [下载](https://url89.ctfile.com/f/31084289-1375502293-05fab8?p=8866) |\n| 近代中国的知识与制度转型 | 桑兵/关晓红 | [下载](https://url89.ctfile.com/f/31084289-1375502335-2fab88?p=8866) |\n| 日本1941：导向深渊的决策 | 堀田江理 | [下载](https://url89.ctfile.com/f/31084289-1375502557-d83fcc?p=8866) |\n| 五四运动史 | 周策纵 | [下载](https://url89.ctfile.com/f/31084289-1375502563-5afaed?p=8866) |\n| 战争艺术史（全4卷） | 汉斯・德尔布吕克 | [下载](https://url89.ctfile.com/f/31084289-1375502593-9217ce?p=8866) |\n| 漫画百年党史·开天辟地 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375503298-2b5d77?p=8866) |\n| 帝国统治的逻辑 | 赫尔弗里德・明克勒 | [下载](https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866) |\n| 李洁非明史系列三部曲 | 李洁非 | [下载](https://url89.ctfile.com/f/31084289-1375503595-333015?p=8866) |\n| 华文全球史帝国篇（第四季12册） | 查尔斯欧曼等 | [下载](https://url89.ctfile.com/f/31084289-1375505485-7d1366?p=8866) |\n| 苏格兰民族 | T.M.迪瓦恩 | [下载](https://url89.ctfile.com/f/31084289-1375503739-f61668?p=8866) |\n| 规训、惩罚与征服 | 周思成 | [下载](https://url89.ctfile.com/f/31084289-1375503931-6e6be2?p=8866) |\n| 英格兰简史大套装（套装共十册） | 埃德・韦斯特等 | [下载](https://url89.ctfile.com/f/31084289-1375504159-936447?p=8866) |\n| 新编历史-元明清简史系列 | 吴玉章等 | [下载](https://url89.ctfile.com/f/31084289-1375504225-455a2a?p=8866) |\n| 新编历史小丛书（人物篇） | 戴毅 | [下载](https://url89.ctfile.com/f/31084289-1375504273-c088ee?p=8866) |\n| 史记（精注全译）（全12册） | 司马迁 | [下载](https://url89.ctfile.com/f/31084289-1375504366-972bdd?p=8866) |\n| 黑色的旗，蓝色的海 | 埃里克・杰・多林 | [下载](https://url89.ctfile.com/f/31084289-1375504423-4afc88?p=8866) |\n| 法度与人心 | 赵冬梅 | [下载](https://url89.ctfile.com/f/31084289-1375504462-48faff?p=8866) |\n| 华文全球史战争篇（第三季12册） | 查尔斯欧曼等 | [下载](https://url89.ctfile.com/f/31084289-1375505293-a53fe1?p=8866) |\n| 中华学人丛书（第一辑）（套种共十五册） | 李细珠等 | [下载](https://url89.ctfile.com/f/31084289-1375504888-0865cd?p=8866) |\n| 中国通史大师课（全三册） | 许宏等 | [下载](https://url89.ctfile.com/f/31084289-1375504945-912385?p=8866) |\n| 东京绮梦 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1375504987-bfdd8c?p=8866) |\n| 书信中的世界史 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1375505836-f1bc65?p=8866) |\n| 失落文明系列（套装共7卷） | 克里斯蒂娜・里格斯等 | [下载](https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866) |\n| 法国大革命史译丛（套装共六册） | 哈里・狄金森等 | [下载](https://url89.ctfile.com/f/31084289-1375506574-7351e2?p=8866) |\n| 王树增战争系列（全5册） | 王树增 | [下载](https://url89.ctfile.com/f/31084289-1375506748-bc1f58?p=8866) |\n| 古罗马文学史（全3册） | 江澜 | [下载](https://url89.ctfile.com/f/31084289-1375506940-b655c7?p=8866) |\n| 南宋不忍细看 | 晏建怀 | [下载](https://url89.ctfile.com/f/31084289-1375506802-d15dec?p=8866) |\n| 三国不演义 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1375506904-b9f4ff?p=8866) |\n| 中国史学要籍丛刊（全十三册） | 司马迁等 | [下载](https://url89.ctfile.com/f/31084289-1375507369-8d2f54?p=8866) |\n| 隳三都 | 周思成 | [下载](https://url89.ctfile.com/f/31084289-1375507117-ec7ad5?p=8866) |\n| 人间烟火 | 赵冬梅 | [下载](https://url89.ctfile.com/f/31084289-1375507471-468a0e?p=8866) |\n| 黑色雅典娜：古典文明的亚非之根（套装全3卷共5册） | 马丁・贝尔纳 | [下载](https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866) |\n| 未名中国史丛刊 | 李孝聪等 | [下载](https://url89.ctfile.com/f/31084289-1375508422-bc780c?p=8866) |\n| 西方学者眼中的东方伟人（套装共三册） | 迪克・威尔逊/迪克・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1375508434-a870e5?p=8866) |\n| 中国建筑与历史文化精选（套装共5本） | 汪荣祖等 | [下载](https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866) |\n| 李顿调查团档案文献集 | 郭昭昭等 | [下载](https://url89.ctfile.com/f/31084289-1375508902-ee3647?p=8866) |\n| 被遗忘的海上中国史 | 罗荣邦 | [下载](https://url89.ctfile.com/f/31084289-1375508914-0714ec?p=8866) |\n| 文明：文化、野心，以及人与自然的伟大博弈 | 菲利普・费尔南多-阿梅斯托 | [下载](https://url89.ctfile.com/f/31084289-1375508923-b0e527?p=8866) |\n| 帝国的崛起 | 约翰・马里奥特/格兰特・罗伯逊 | [下载](https://url89.ctfile.com/f/31084289-1375508947-f67a76?p=8866) |\n| 新史学&#038;多元对话系列（第一辑） | 陈怀宇等 | [下载](https://url89.ctfile.com/f/31084289-1375509076-0c1223?p=8866) |\n| 犹太人四千年（全两册） | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866) |\n| 古代人的日常生活2 | 王磊 | [下载](https://url89.ctfile.com/f/31084289-1375509049-84a6b4?p=8866) |\n| 物语日本史（全3册） | 平泉澄 | [下载](https://url89.ctfile.com/f/31084289-1375509064-03b3d0?p=8866) |\n| 明治维新以来日本涉华学术调查系列丛书（套装共5册） | 常盘大定等 | [下载](https://url89.ctfile.com/f/31084289-1375509337-ad0d6b?p=8866) |\n| 战国的策套装（全五册） | 许葆云 | [下载](https://url89.ctfile.com/f/31084289-1375509265-83b7d0?p=8866) |\n| 维京时代与英格兰 | 埃莉诺・帕克 | [下载](https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866) |\n| 近代国字号事物的命运 | 桑兵/关晓红 | [下载](https://url89.ctfile.com/f/31084289-1375509313-0f5a5a?p=8866) |\n| 犹太人三千年简史 | 雷蒙德・P.谢德林 | [下载](https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866) |\n| 秦制两千年 | 谌旭彬 | [下载](https://url89.ctfile.com/f/31084289-1375509367-728e53?p=8866) |\n| 陋规：明清的腐败与反腐败 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1375509385-821866?p=8866) |\n| 奶酪与蛆虫 | 卡洛・金茨堡 | [下载](https://url89.ctfile.com/f/31084289-1375509391-1e6f1a?p=8866) |\n| 讲给大家的中国历史（套装共9册） | 杨照 | [下载](https://url89.ctfile.com/f/31084289-1375509490-b9fe88?p=8866) |\n| 夜间的战斗 | 卡洛・金茨堡 | [下载](https://url89.ctfile.com/f/31084289-1375509478-1024cd?p=8866) |\n| 美国国家地理全球史第一辑（套装共4册） | 美国国家地理学会 | [下载](https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866) |\n| 逝物录 | 尤迪特・沙朗斯基 | [下载](https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866) |\n| 美国国家地理全球史第二辑（套装共6册） | 美国国家地理学会 | [下载](https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866) |\n| 传奇之家：托马斯·曼一家的故事 | 蒂尔曼・拉姆 | [下载](https://url89.ctfile.com/f/31084289-1375509748-852c52?p=8866) |\n| 郭论：第二季（共3册） | 郭德纲 | [下载](https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866) |\n| 我的五个德国 | 弗里茨・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866) |\n| 真相：裕仁天皇与现代日本的形成 | 赫伯特・比克斯 | [下载](https://url89.ctfile.com/f/31084289-1375509922-37c72a?p=8866) |\n| 滔天洪水 | 亚当・图兹 | [下载](https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866) |\n| 家国与世情 | 十年砍柴 | [下载](https://url89.ctfile.com/f/31084289-1375509973-b55da1?p=8866) |\n| 半小时漫画世界史2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866) |\n| 毒品史：美国和墨西哥的百年恩怨 | 卡门・博洛萨/迈克・华莱士 | [下载](https://url89.ctfile.com/f/31084289-1375510021-718e77?p=8866) |\n| 一个世纪的抗争：美国女权运动史 | 埃莉诺・弗莱克斯纳 | [下载](https://url89.ctfile.com/f/31084289-1375510030-25e3e0?p=8866) |\n| 思想的轨迹 | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1375510099-304ff5?p=8866) |\n| 冷战的终结：1985-1991 | 罗伯特・瑟维斯 | [下载](https://url89.ctfile.com/f/31084289-1375510135-274388?p=8866) |\n| 马勇讲清史（全5册） | 唐彦 | [下载](https://url89.ctfile.com/f/31084289-1375510183-c8ea60?p=8866) |\n| 反败为胜 | 威廉・斯利姆 | [下载](https://url89.ctfile.com/f/31084289-1375510168-994493?p=8866) |\n| 幸运儿：晚清留美幼童的故事 | 利尔・莱博维茨/马修・米勒 | [下载](https://url89.ctfile.com/f/31084289-1375510192-ccbbf4?p=8866) |\n| 索恩人物传记生而为王（全13册） | 汉内斯・默林等 | [下载](https://url89.ctfile.com/f/31084289-1375510228-5cec70?p=8866) |\n| 西学三书（套装共三册） | 赵林 | [下载](https://url89.ctfile.com/f/31084289-1375510249-849869?p=8866) |\n| 自由主义被遗忘的历史 | 海伦娜・罗森布拉特 | [下载](https://url89.ctfile.com/f/31084289-1375510303-b7bcd2?p=8866) |\n| 紫禁城的荣光 | 冈田英弘/神田信夫/松村润 | [下载](https://url89.ctfile.com/f/31084289-1375510330-9ffe7e?p=8866) |\n| 日本开国五十年史（全52卷） | 大隈重信 | [下载](https://url89.ctfile.com/f/31084289-1375510348-4cff4c?p=8866) |\n| 纸上谈兵 | 张明扬 | [下载](https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866) |\n| 世界史的故事（套装共6册） | 苏珊・怀斯・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1375510552-7ebbe2?p=8866) |\n| 希腊罗马名人传（全五册） | 普鲁塔克 | [下载](https://url89.ctfile.com/f/31084289-1375510543-383b0a?p=8866) |\n| 张宗和日记（全二卷） | 张宗和 | [下载](https://url89.ctfile.com/f/31084289-1375510597-3f3fea?p=8866) |\n| 张荫麟作品集（套装共四册） | 张荫麟 | [下载](https://url89.ctfile.com/f/31084289-1375510609-e084e7?p=8866) |\n| 王的归程 | 威廉・达尔林普尔 | [下载](https://url89.ctfile.com/f/31084289-1375510789-d047d4?p=8866) |\n| 中国原生文明启示录（全新修订版） | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1375510822-79b18c?p=8866) |\n| 法兰西双皇后 | 南希・戈德斯通 | [下载](https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866) |\n| 东京梦华录（全本全注全译） | 杨春俏 | [下载](https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866) |\n| 伊藤博文 | 泷井一博 | [下载](https://url89.ctfile.com/f/31084289-1375510927-cdce2c?p=8866) |\n| 法国大革命与革命心理学 | 古斯塔夫・勒庞 | [下载](https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866) |\n| 史前人类生活大辟谣 | 安托万・巴尔泽奥 | [下载](https://url89.ctfile.com/f/31084289-1375511002-65432a?p=8866) |\n| 高清一战全史（套装全3册） | 特霍兰・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1375511767-d6f291?p=8866) |\n| 花之忠臣藏 | 野口武彦 | [下载](https://url89.ctfile.com/f/31084289-1375511146-d2b38e?p=8866) |\n| 托马斯·克伦威尔 | 特蕾西・博尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375511191-682a44?p=8866) |\n| 汉家天下（1-4册） | 清秋子 | [下载](https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866) |\n| 空王冠 | 丹・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1375511281-8b102c?p=8866) |\n| 2000年以来的西方 | 刘擎 | [下载](https://url89.ctfile.com/f/31084289-1375511290-e2db6a?p=8866) |\n| 条顿骑士团 | 威廉・厄本 | [下载](https://url89.ctfile.com/f/31084289-1375511374-0df96e?p=8866) |\n| 民族的重建 | 蒂莫西・斯奈德 | [下载](https://url89.ctfile.com/f/31084289-1375511398-d8e38f?p=8866) |\n| 秦谜：重新发现秦始皇（插图增订版） | 李开元 | [下载](https://url89.ctfile.com/f/31084289-1375511506-fe2b0a?p=8866) |\n| 将成为国王的教宗 | 大卫・科泽 | [下载](https://url89.ctfile.com/f/31084289-1375511473-61ec1e?p=8866) |\n| 了不起的古希腊 | 王冬妮 | [下载](https://url89.ctfile.com/f/31084289-1375511563-62e19d?p=8866) |\n| 岩波日本史（共8卷） | 吉村武彦等 | [下载](https://url89.ctfile.com/f/31084289-1375511677-107009?p=8866) |\n| 亨利八世与都铎王朝 | 约翰・马图夏克 | [下载](https://url89.ctfile.com/f/31084289-1375511740-575290?p=8866) |\n| 梦室：大卫·林奇传 | 大卫・林奇/克里斯汀・麦肯纳 | [下载](https://url89.ctfile.com/f/31084289-1375511773-8b51cb?p=8866) |\n| 美国国家图书馆珍藏名传（系列二共13册） | 雅各布・阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1375511929-1ff7f2?p=8866) |\n| 德国人 | 埃米尔・路德维希 | [下载](https://url89.ctfile.com/f/31084289-1375511845-4ad275?p=8866) |\n| 大奥日本 | 茂吕美耶 | [下载](https://url89.ctfile.com/f/31084289-1375511923-5b1f3b?p=8866) |\n| 法国大革命和拿破仑 | 林恩・亨特/杰克・R. 森瑟 | [下载](https://url89.ctfile.com/f/31084289-1375512043-6f670b?p=8866) |\n| 度量衡简史 | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1375511983-ec1b7c?p=8866) |\n| 龙马史 | 矶田道史 | [下载](https://url89.ctfile.com/f/31084289-1375511986-128e0c?p=8866) |\n| 欧洲：欧洲文明如何塑造现代世界 | 胡里奥・克雷斯波・麦克伦南 | [下载](https://url89.ctfile.com/f/31084289-1375512004-f37e6f?p=8866) |\n| 蒙古帝国的世界征服 | 约西姆・巴克汉森 | [下载](https://url89.ctfile.com/f/31084289-1375512010-b9109b?p=8866) |\n| 以色列总理私人史 | 耶胡达・阿夫纳 | [下载](https://url89.ctfile.com/f/31084289-1375512085-4d09ea?p=8866) |\n| 战国：七雄博弈 | 朱良 | [下载](https://url89.ctfile.com/f/31084289-1375512049-91370e?p=8866) |\n| 铁幕欧洲之新生 | 卡尔・施勒格尔 | [下载](https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866) |\n| 1840年以来的中国 | 王人博 | [下载](https://url89.ctfile.com/f/31084289-1375512094-24957e?p=8866) |\n| 津巴多口述史 | 菲利普· 津巴多 | [下载](https://url89.ctfile.com/f/31084289-1375512103-83c3d3?p=8866) |\n| 切尔诺贝利的午夜 | 亚当・希金博特姆 | [下载](https://url89.ctfile.com/f/31084289-1375512130-738686?p=8866) |\n| 非凡抄本寻访录 | 克里斯托弗・德・哈梅尔 | [下载](https://url89.ctfile.com/f/31084289-1375512256-da56df?p=8866) |\n| 恶病年代 | 埃德・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1375512205-c22f7a?p=8866) |\n| 帖木儿之后 | 约翰・达尔文 | [下载](https://url89.ctfile.com/f/31084289-1375512304-8a0c34?p=8866) |\n| 走向火焰 | 多米尼克・利芬 | [下载](https://url89.ctfile.com/f/31084289-1375512313-ff672a?p=8866) |\n| 罗曼诺夫皇朝 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1375512334-c3c90b?p=8866) |\n| 资本5000年 | 彭兴庭 | [下载](https://url89.ctfile.com/f/31084289-1375512352-c23aa4?p=8866) |\n| 希罗多德的镜子 | 弗朗索瓦・阿赫托戈 | [下载](https://url89.ctfile.com/f/31084289-1375512361-e3c598?p=8866) |\n| 法老的宝藏 | 约翰・高德特 | [下载](https://url89.ctfile.com/f/31084289-1375512496-f7d5bd?p=8866) |\n| 哥伦布与大航海时代 | 华盛顿・欧文 | [下载](https://url89.ctfile.com/f/31084289-1375512508-b18cf7?p=8866) |\n| 男人们的故事（套装3册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1375512532-808aae?p=8866) |\n| 甲骨文有故事 | 许进雄 | [下载](https://url89.ctfile.com/f/31084289-1375512556-901413?p=8866) |\n| 高清日本战国史（套装全4册） | 樱雪丸 | [下载](https://url89.ctfile.com/f/31084289-1375512547-9faf73?p=8866) |\n| 白寿彝史学二十讲套装（共十一册） | 白寿彝 | [下载](https://url89.ctfile.com/f/31084289-1375512733-8591d3?p=8866) |\n| 德川幕府与御三家 | 河合敦 | [下载](https://url89.ctfile.com/f/31084289-1375512616-03b4fd?p=8866) |\n| 九色鹿·唐宋系列（全五册） | 冯立君等 | [下载](https://url89.ctfile.com/f/31084289-1375512697-5d7133?p=8866) |\n| 出发去希腊 | 弗朗索瓦・阿赫托戈 | [下载](https://url89.ctfile.com/f/31084289-1375512691-8dea22?p=8866) |\n| 多极亚洲中的唐朝 | 王贞平 | [下载](https://url89.ctfile.com/f/31084289-1375512703-66fba9?p=8866) |\n| 二战东线全史（套装全13卷） | 朱世巍 | [下载](https://url89.ctfile.com/f/31084289-1375513234-e38f4b?p=8866) |\n| 幽灵帝国拜占庭 | 理查德・菲德勒 | [下载](https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866) |\n| 古埃及女性 | 克里斯蒂安・雅克 | [下载](https://url89.ctfile.com/f/31084289-1375512898-c00ee5?p=8866) |\n| 舍不得看完的中国史 | 渤海小吏 | [下载](https://url89.ctfile.com/f/31084289-1375512874-eab20b?p=8866) |\n| 间谍与叛徒 | 本・麦金泰尔 | [下载](https://url89.ctfile.com/f/31084289-1375512889-07541d?p=8866) |\n| 楚汉双雄 | 渤海小吏 | [下载](https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866) |\n| 跟随利玛窦来中国 | 张西平 | [下载](https://url89.ctfile.com/f/31084289-1375513096-e1c1a7?p=8866) |\n| 横渡孟加拉湾 | 苏尼尔・阿姆瑞斯 | [下载](https://url89.ctfile.com/f/31084289-1375513060-c0b1a2?p=8866) |\n| 中华民国专题史（套装共18册） | 王川等 | [下载](https://url89.ctfile.com/f/31084289-1375513258-eca3f0?p=8866) |\n| 法兰西世界史 | 帕特里克・布琼 | [下载](https://url89.ctfile.com/f/31084289-1375513288-07aed4?p=8866) |\n| 拜占庭三部曲 | 约翰・朱利叶斯・诺里奇 | [下载](https://url89.ctfile.com/f/31084289-1375513423-1f607d?p=8866) |\n| 郭论：第一季（共3册） | 郭德纲 | [下载](https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866) |\n| 西洋镜合集 | 赵省伟 | [下载](https://url89.ctfile.com/f/31084289-1375513801-cd009d?p=8866) |\n| 丝绸之路的世界 | 海尔曼-约瑟夫・弗里施 | [下载](https://url89.ctfile.com/f/31084289-1375513564-0046f8?p=8866) |\n| 消失的古城 | 王笛 | [下载](https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866) |\n| 希腊史：从梭伦时代到公元前403年 | 乔治・格罗特 | [下载](https://url89.ctfile.com/f/31084289-1375513582-255bbf?p=8866) |\n| 国家的歧路 | 马国川 | [下载](https://url89.ctfile.com/f/31084289-1375513606-dd29b8?p=8866) |\n| 丝绸之路上的帝国 | 蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1375513621-d0eb00?p=8866) |\n| 汉字与文物的故事（套装共4册） | 许进雄 | [下载](https://url89.ctfile.com/f/31084289-1375513744-067186?p=8866) |\n| 哈佛极简中国史（修订珍藏版） | 阿尔伯特・克雷格 | [下载](https://url89.ctfile.com/f/31084289-1375513678-179769?p=8866) |\n| 古史六案 | 李洁非 | [下载](https://url89.ctfile.com/f/31084289-1375513729-d47abf?p=8866) |\n| 丝绸之路：从蓬莱到罗马 | 高洪雷 | [下载](https://url89.ctfile.com/f/31084289-1375513765-208e02?p=8866) |\n| 大人物的世界史 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1375513792-4193e9?p=8866) |\n| 丝绸之路：十二种唐朝人生 | 魏泓 | [下载](https://url89.ctfile.com/f/31084289-1375513810-ba6f6d?p=8866) |\n| 盛世：西汉 | 侯杨方 | [下载](https://url89.ctfile.com/f/31084289-1357004632-07093a?p=8866) |\n| 盛世：康乾 | 侯杨方 | [下载](https://url89.ctfile.com/f/31084289-1357004629-21ceb7?p=8866) |\n| 戴逸文集（套装共12册） | 戴逸 | [下载](https://url89.ctfile.com/f/31084289-1357004710-58e865?p=8866) |\n| 大汗之怒 | 周思成 | [下载](https://url89.ctfile.com/f/31084289-1357004506-1bb50d?p=8866) |\n| BBC苏格兰史 | 尼尔・奥利弗 | [下载](https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866) |\n| 穿越非洲两百年 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357004452-fd0c14?p=8866) |\n| 当大明遇上大清（全二册） | 宿巍 | [下载](https://url89.ctfile.com/f/31084289-1357004389-c9a2fa?p=8866) |\n| 美国不平等的起源 | 伊莎贝尔・威尔克森 | [下载](https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866) |\n| 最后的抵抗 | 宿巍 | [下载](https://url89.ctfile.com/f/31084289-1357004233-6220df?p=8866) |\n| 生死秦始皇 | 辛德勇 | [下载](https://url89.ctfile.com/f/31084289-1357004158-8201b6?p=8866) |\n| 深蓝帝国：英国海军的兴衰 | 本・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866) |\n| 阿诺德·汤因比传 | 威廉・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357003873-4b5f8b?p=8866) |\n| 银、剑、石：拉丁美洲的三重烙印 | 玛丽・阿拉纳 | [下载](https://url89.ctfile.com/f/31084289-1357003672-fa8a61?p=8866) |\n| 战争的战争（1618-1648） | 约翰内斯・布克哈特 | [下载](https://url89.ctfile.com/f/31084289-1357003393-26399e?p=8866) |\n| 把世界装进火柴盒 | 西蒙・加菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357003369-e3fa61?p=8866) |\n| 新元史（全十册） | 柯劭忞等 | [下载](https://url89.ctfile.com/f/31084289-1357003306-a208db?p=8866) |\n| 愚蠢的人类 | 汤姆・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1357003243-bbb6f1?p=8866) |\n| 向您告知，明天我们一家就要被杀 | 菲利普・古雷维奇 | [下载](https://url89.ctfile.com/f/31084289-1357003192-ccdfef?p=8866) |\n| 密码女王 | 贾森・法戈内 | [下载](https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866) |\n| 历史的荣耀 | 历史研习社 | [下载](https://url89.ctfile.com/f/31084289-1357003117-b1094a?p=8866) |\n| 历史的温度5 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866) |\n| 将无同 | 胡宝国 | [下载](https://url89.ctfile.com/f/31084289-1357002655-622be6?p=8866) |\n| 中国妆束：大唐女儿行 | 左丘萌/末春 | [下载](https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866) |\n| 史景迁作品12册套装 | 史景迁 | [下载](https://url89.ctfile.com/f/31084289-1357002556-1557e9?p=8866) |\n| 海上丝绸之路 | 罗德里希・普塔克 | [下载](https://url89.ctfile.com/f/31084289-1357002505-7e6ed9?p=8866) |\n| 从考古发现中国 | 张经纬 | [下载](https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866) |\n| 一路向西：东西方3000年 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357002199-fb7d77?p=8866) |\n| 漫长的战败 | 桥本明子 | [下载](https://url89.ctfile.com/f/31084289-1357002115-41f1b0?p=8866) |\n| 10000年中国艺术史（全2册） | 王逊 | [下载](https://url89.ctfile.com/f/31084289-1357002127-c9e3e5?p=8866) |\n| 有趣得让人睡不着的中国史 | 历史君 | [下载](https://url89.ctfile.com/f/31084289-1357002040-b2ebf4?p=8866) |\n| 山居杂忆 | 高诵芬 | [下载](https://url89.ctfile.com/f/31084289-1357002007-f88da6?p=8866) |\n| 藏着：一个西班牙人的33年内战人生 | 罗纳德・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1357001866-8ba183?p=8866) |\n| 好看到睡不着的中国史（全4册） | 史壮宁 | [下载](https://url89.ctfile.com/f/31084289-1357001776-6db8e6?p=8866) |\n| 西方博弈往事 | 九边 | [下载](https://url89.ctfile.com/f/31084289-1357001752-65085c?p=8866) |\n| 一读就上瘾的中国史 | 温伯陵 | [下载](https://url89.ctfile.com/f/31084289-1357001608-8e9514?p=8866) |\n| 庞贝：一座罗马城市的生与死 | 玛丽・比尔德 | [下载](https://url89.ctfile.com/f/31084289-1357001596-3c92ea?p=8866) |\n| 近代中西医的博弈 | 皮国立 | [下载](https://url89.ctfile.com/f/31084289-1357001020-af706e?p=8866) |\n| 日本权力结构之谜 | 卡瑞尔・范・沃尔夫伦 | [下载](https://url89.ctfile.com/f/31084289-1357000906-aafbe6?p=8866) |\n| 人类善恶小史 | 策妄・阿拉布坦 | [下载](https://url89.ctfile.com/f/31084289-1357000900-ed1aca?p=8866) |\n| 三国：大暗黑时代的前奏曲 | 鸟山居士 | [下载](https://url89.ctfile.com/f/31084289-1357000855-46c47a?p=8866) |\n| 4000年中国天文史 | 让・马克・博奈・比多 | [下载](https://url89.ctfile.com/f/31084289-1357000792-a0a2d6?p=8866) |\n| 大秦帝国（全新插图珍藏版） | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357000723-5e1d6c?p=8866) |\n| 近代朝鲜与日本 | 赵景达 | [下载](https://url89.ctfile.com/f/31084289-1357000528-ff6dab?p=8866) |\n| 包罗万象中外历史精选集（套装共20册） | 汤姆・利文等 | [下载](https://url89.ctfile.com/f/31084289-1357000627-ea3343?p=8866) |\n| 燃烧的大洋 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866) |\n| 应仁之乱 | 吴座勇一 | [下载](https://url89.ctfile.com/f/31084289-1357000261-4a809a?p=8866) |\n| 荷兰海洋帝国史 | 顾卫民 | [下载](https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866) |\n| 征服的怒潮 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357000099-60af65?p=8866) |\n| 从那霸到上海 | 孙歌 | [下载](https://url89.ctfile.com/f/31084289-1356999979-26d9ad?p=8866) |\n| 历史上的大帝国 | 加布里埃尔・马丁内斯-格罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356999973-6bcd2f?p=8866) |\n| 大英帝国套装（共2册） | 詹姆斯・查斯洛・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1356999904-67d00c?p=8866) |\n| 毕竟战功谁第一（修订典藏本） | 谭伯牛 | [下载](https://url89.ctfile.com/f/31084289-1356999745-d06b6f?p=8866) |\n| 终结所有和平的和平 | 戴维・弗罗姆金 | [下载](https://url89.ctfile.com/f/31084289-1356999736-5c71a4?p=8866) |\n| 第三帝国史 | 郑寅达/陈旸 | [下载](https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866) |\n| 牛津艺术史系列（第一辑） | 罗宾・奥斯本等 | [下载](https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866) |\n| 非常之人 | 张明扬 | [下载](https://url89.ctfile.com/f/31084289-1356999418-3ae058?p=8866) |\n| 怀柔远人 | 何伟亚 | [下载](https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866) |\n| 暗黑之门 | 理查德・阿尔德里奇/罗里・科马克 | [下载](https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866) |\n| 大宋之变，1063-1086 | 赵冬梅 | [下载](https://url89.ctfile.com/f/31084289-1356999199-15db8f?p=8866) |\n| 恶魔之城 | 保罗・法兰奇 | [下载](https://url89.ctfile.com/f/31084289-1356999031-bcb0af?p=8866) |\n| 大国霸权 | 宫崎正胜 | [下载](https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866) |\n| 伯罗奔尼撒战争三部曲 | 唐纳德・卡根 | [下载](https://url89.ctfile.com/f/31084289-1356998965-3139a8?p=8866) |\n| 战时的第三帝国 | 理查德·J. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1356998593-2b2916?p=8866) |\n| 审判希特勒 | 大卫・金 | [下载](https://url89.ctfile.com/f/31084289-1356998536-d8c07b?p=8866) |\n| 半小时漫画中国史（经济篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866) |\n| 许倬云说美国 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866) |\n| 泰晤士：大河大城 | 彼得・阿克罗伊德 | [下载](https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866) |\n| 海权：海洋帝国与今日世界 | 詹姆斯・斯塔夫里迪斯 | [下载](https://url89.ctfile.com/f/31084289-1356997723-fe76ef?p=8866) |\n| 肮脏的三十年代 | 蒂莫西・伊根 | [下载](https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866) |\n| 春秋与汉道 | 陈苏镇 | [下载](https://url89.ctfile.com/f/31084289-1356997624-363d35?p=8866) |\n| 耶路撒冷之前的艾希曼 | 贝蒂娜・施汤内特 | [下载](https://url89.ctfile.com/f/31084289-1356997453-459c45?p=8866) |\n| 超有料漫画中国史 | 韩明辉 | [下载](https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866) |\n| 希特勒与20世纪德国 | 汉斯・莫姆森 | [下载](https://url89.ctfile.com/f/31084289-1356997363-fc796f?p=8866) |\n| 严嵩与张居正 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1356997336-91c17f?p=8866) |\n| 新美国 | 弗雷德里克・洛根・帕克森 | [下载](https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866) |\n| 超有料漫画中国史2 | 韩明辉 | [下载](https://url89.ctfile.com/f/31084289-1356997261-6d28e2?p=8866) |\n| 盟友 | 琳恩・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866) |\n| 超有料漫画中国史3 | 韩明辉 | [下载](https://url89.ctfile.com/f/31084289-1356996865-28d03d?p=8866) |\n| 美国内战史：1861-1865 | 詹姆斯・福特・罗德斯 | [下载](https://url89.ctfile.com/f/31084289-1356996796-130fe4?p=8866) |\n| 法国大革命与法兰西第一帝国 | 威廉・奥康纳・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356996736-b9c328?p=8866) |\n| 美洲奴隶贸易 | 约翰・伦道夫・斯皮尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356996619-c30f76?p=8866) |\n| 阿育王 | 文森特・阿瑟・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1356996580-36df48?p=8866) |\n| 承袭的权力 | 乔瓦尼・莱维 | [下载](https://url89.ctfile.com/f/31084289-1356996505-07420a?p=8866) |\n| 民主德国的秘密读者 | 齐格弗里德・洛卡蒂斯/英格里德・宗塔格 | [下载](https://url89.ctfile.com/f/31084289-1356996481-32da34?p=8866) |\n| 使日十年 | 约瑟夫・C.格鲁 | [下载](https://url89.ctfile.com/f/31084289-1356996427-a28791?p=8866) |\n| 三十年战争史：1618-1648 | 塞缪尔・罗森・加德纳 | [下载](https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866) |\n| 拜占庭帝国史：从拜占庭建城到君士坦丁堡陷落 | 查尔斯・奥曼 | [下载](https://url89.ctfile.com/f/31084289-1356996493-f3ded1?p=8866) |\n| 古希腊史（全两册） | 查尔斯・奥曼 | [下载](https://url89.ctfile.com/f/31084289-1356996343-d966c9?p=8866) |\n| 美国成长三部曲 | 弗雷德里克・刘易斯・艾伦 | [下载](https://url89.ctfile.com/f/31084289-1356996151-fcfc33?p=8866) |\n| 澳大利亚史 | 欧内斯特・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1356996043-23ee0f?p=8866) |\n| 第一次世界大战：繁荣的幻灭 | 诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1356995860-028486?p=8866) |\n| 第二次世界大战：黑暗的年代 | 诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1356995848-9bb1c2?p=8866) |\n| 杰斐逊总统 | 约翰・托里・莫尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866) |\n| 美国艺术史 | 塞缪尔·G.W.本杰明 | [下载](https://url89.ctfile.com/f/31084289-1356995716-d01373?p=8866) |\n| 海上帝国：现代航运世界的故事 | 洛丽・安・拉罗科 | [下载](https://url89.ctfile.com/f/31084289-1356995551-55cc18?p=8866) |\n| 华杉讲透《资治通鉴》（战国到三国·共7册） | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1356995530-d3ff91?p=8866) |\n| 印度文明史 | 常磐大定 | [下载](https://url89.ctfile.com/f/31084289-1356995485-394351?p=8866) |\n| 清史九讲 | 内藤湖南 | [下载](https://url89.ctfile.com/f/31084289-1356995440-976d6f?p=8866) |\n| 罗马三巨头 | 查尔斯・梅里维尔 | [下载](https://url89.ctfile.com/f/31084289-1356995458-5d95b6?p=8866) |\n| 两京十五日（全2册） | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1356995422-f90173?p=8866) |\n| 半小时漫画中国哲学史 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866) |\n| 半小时漫画中国史5 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356995404-e9c71c?p=8866) |\n| 巨兽：工厂与现代世界的形成 | 乔舒亚・B.弗里曼 | [下载](https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866) |\n| 日本人眼中的中国史（全4册） | 堀敏一等 | [下载](https://url89.ctfile.com/f/31084289-1356995227-02574c?p=8866) |\n| 艺术哲学（作家榜经典文库） | H. A. 丹纳 | [下载](https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866) |\n| 历史的镜子（全新修订版） | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866) |\n| 历史与传奇 | 张佳玮 | [下载](https://url89.ctfile.com/f/31084289-1356995116-27f3e6?p=8866) |\n| 客居己乡 | 哲尔吉・康拉德 | [下载](https://url89.ctfile.com/f/31084289-1356995098-63b0d5?p=8866) |\n| 大故宫六百年风云史 | 阎崇年 | [下载](https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866) |\n| 大梦无疆 | 西蒙・佩雷斯 | [下载](https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866) |\n| 战时中国1940-1946 | 格兰姆・贝克 | [下载](https://url89.ctfile.com/f/31084289-1356995017-6778ad?p=8866) |\n| 德国：一个国家的记忆 | 尼尔・麦格雷戈 | [下载](https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866) |\n| 中国人史纲 | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866) |\n| 诺曼征服 | 马克・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866) |\n| 床的人类史 | 布莱恩・费根/纳迪亚・杜兰尼 | [下载](https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866) |\n| 暴力与反暴力 | 谭旋 | [下载](https://url89.ctfile.com/f/31084289-1356994615-7c3ab4?p=8866) |\n| 廷巴克图 | 约书亚・哈默 | [下载](https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866) |\n| 大汉兴亡四百年2 | 李金海 | [下载](https://url89.ctfile.com/f/31084289-1356994534-e30d7c?p=8866) |\n| 大历史与人类的未来（修订版） | 弗雷德・斯皮尔 | [下载](https://url89.ctfile.com/f/31084289-1356994171-41fd5a?p=8866) |\n| 我的前半生（全本） | 爱新觉罗・溥仪 | [下载](https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866) |\n| 分身：新日本论 | 李永晶 | [下载](https://url89.ctfile.com/f/31084289-1356993670-c0a10d?p=8866) |\n| 始皇帝：秦始皇和他生活的时代 | 鹤间和幸 | [下载](https://url89.ctfile.com/f/31084289-1356992335-5f1bd7?p=8866) |\n| 何以中国 | 许宏 | [下载](https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866) |\n| 历史性的体制 | 弗朗索瓦・阿赫托戈 | [下载](https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866) |\n| 赌徒恺撒 | 马丁・耶内 | [下载](https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866) |\n| 武英殿本四库全书总目·上（1-30册） | 纪昀等纂修编 | [下载](https://url89.ctfile.com/f/31084289-1356994612-c07393?p=8866) |\n| 武英殿本四库全书总目·下（31-60册） | 纪昀等纂修编 | [下载](https://url89.ctfile.com/f/31084289-1356994516-301912?p=8866) |\n| 公司与将军 | 亚当・克卢洛 | [下载](https://url89.ctfile.com/f/31084289-1356991738-0e7446?p=8866) |\n| 冈仓天心东方美学三书 | 冈仓天心 | [下载](https://url89.ctfile.com/f/31084289-1356991678-e1d2d9?p=8866) |\n| 菊花王朝 | 胡炜权 | [下载](https://url89.ctfile.com/f/31084289-1356991672-1fcdce?p=8866) |\n| 战争的本质 | A.C.葛瑞林 | [下载](https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866) |\n| 奥斯维辛的文身师 | 希瑟・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356991558-daf390?p=8866) |\n| 大汉兴亡四百年 | 李金海 | [下载](https://url89.ctfile.com/f/31084289-1356991453-c67787?p=8866) |\n| 千年维新 | 铲史官 | [下载](https://url89.ctfile.com/f/31084289-1356991513-1cd046?p=8866) |\n| 牛津古罗马史 | 约翰・博德曼 | [下载](https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866) |\n| 从丝绸到硅 | 杰弗里・加滕 | [下载](https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866) |\n| 楼兰 | 井上靖 | [下载](https://url89.ctfile.com/f/31084289-1356990937-7c842c?p=8866) |\n| 第三帝国的兴亡（增订版） | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866) |\n| 以眼还眼 | 米切尔·P·罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866) |\n| 我的情报与外交生涯 | 熊向晖 | [下载](https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866) |\n| 中华文明史（全四卷） | 袁行霈 | [下载](https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866) |\n| 中国近代史 | 陈恭禄 | [下载](https://url89.ctfile.com/f/31084289-1356990388-6ec689?p=8866) |\n| 中国货币史 | 彭信威 | [下载](https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866) |\n| 赛雷三分钟漫画中国史3 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866) |\n| 梅特涅：帝国与世界（全2册） | 沃尔弗拉姆・希曼 | [下载](https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866) |\n| 中华二千年史（套装共3册） | 邓之诚 | [下载](https://url89.ctfile.com/f/31084289-1356990280-51b8f7?p=8866) |\n| 原罪、梦想与霸权 | 维克多・基尔南 | [下载](https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866) |\n| 希腊史纲（套装共5册） | 狄奥多罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356990118-568fff?p=8866) |\n| 柏杨白话版资治通鉴（全72册） | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866) |\n| 中国政治思想史（套装共3册） | 刘泽华 | [下载](https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866) |\n| 魏晋南北朝简史 | 劳榦先生 | [下载](https://url89.ctfile.com/f/31084289-1356990064-033d75?p=8866) |\n| 耶鲁古文明发现史 | 布莱恩・费根 | [下载](https://url89.ctfile.com/f/31084289-1356989986-64a34d?p=8866) |\n| 当权的第三帝国 | 理查德·J. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866) |\n| 魏晋之际的政治权力与家族网络 | 仇鹿鸣 | [下载](https://url89.ctfile.com/f/31084289-1356989743-9081ea?p=8866) |\n| 中国往事1905-1949（共四册） | 赵柏田 | [下载](https://url89.ctfile.com/f/31084289-1356989617-e19045?p=8866) |\n| 祸起1914 | 克斯・黑斯廷斯 | [下载](https://url89.ctfile.com/f/31084289-1356989533-0de9f7?p=8866) |\n| 魏晋南北朝史十二讲 | 周一良 | [下载](https://url89.ctfile.com/f/31084289-1356989491-004df4?p=8866) |\n| 第三帝国的到来 | 理查德·J. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866) |\n| 剧变 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866) |\n| 大秦帝国·点评本（全11册） | 孙皓晖/谢有顺 | [下载](https://url89.ctfile.com/f/31084289-1356988537-4ac278?p=8866) |\n| 赛雷三分钟漫画中国史2 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866) |\n| 九色鹿•边疆史系列（全7册） | 薛小林等 | [下载](https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866) |\n| 巴黎和会与北京政府的内外博弈 | 邓野 | [下载](https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866) |\n| 战争事典（041-050） | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866) |\n| 唐朝定居指南（新版） | 森林鹿 | [下载](https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866) |\n| 唐朝穿越指南（新版） | 森林鹿 | [下载](https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866) |\n| 维京人的世界 | 菲利普・帕克 | [下载](https://url89.ctfile.com/f/31084289-1356986962-f7608b?p=8866) |\n| 伪装的艺术 | 本・雅格达 | [下载](https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866) |\n| 极简20世纪史 | 妮古拉・查尔顿/梅雷迪思・麦克阿德尔 | [下载](https://url89.ctfile.com/f/31084289-1356986602-539487?p=8866) |\n| 实践智慧 | 野中郁次郎/荻野进介 | [下载](https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866) |\n| 二战解放三部曲系列（套装共6册） | 里克・阿特金森 | [下载](https://url89.ctfile.com/f/31084289-1356986572-e0e277?p=8866) |\n| 少年读史记（套装全5册） | 张嘉骅 | [下载](https://url89.ctfile.com/f/31084289-1356986401-311f21?p=8866) |\n| 隐身大师 | 萨拉・卡明斯基 | [下载](https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866) |\n| 大征服 | 休・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866) |\n| 简史：世界隐秘知识博库（套装全4册） | 大卫・沃克等 | [下载](https://url89.ctfile.com/f/31084289-1356986746-917056?p=8866) |\n| 宋案重审 | 尚小明 | [下载](https://url89.ctfile.com/f/31084289-1356985948-5c1a66?p=8866) |\n| 晚清三国 | 李洁 | [下载](https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866) |\n| 战国策（全本全注全译） | 缪文远 | [下载](https://url89.ctfile.com/f/31084289-1356985609-204824?p=8866) |\n| 搜历史 | 易小荷/曲飞 | [下载](https://url89.ctfile.com/f/31084289-1356985588-42c02a?p=8866) |\n| 时光博物馆 | 人民日报社新媒体中心 | [下载](https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866) |\n| 五万年中国简史（全二册） | 姚大力等 | [下载](https://url89.ctfile.com/f/31084289-1356985504-47fbca?p=8866) |\n| 沿坟墓而行 | 纳韦德・凯尔曼尼 | [下载](https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866) |\n| 唐德刚经典作品集 | 唐德刚 | [下载](https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866) |\n| 美国人：从殖民到民主的历程 | 丹尼尔・布尔斯廷 | [下载](https://url89.ctfile.com/f/31084289-1356985291-454b87?p=8866) |\n| 神文时代 | 孙英刚 | [下载](https://url89.ctfile.com/f/31084289-1356985255-8c1141?p=8866) |\n| 生活的逻辑 | 胡悦晗 | [下载](https://url89.ctfile.com/f/31084289-1356985243-9b3e36?p=8866) |\n| 盐铁论（全本全注全译） | 陈桐生 | [下载](https://url89.ctfile.com/f/31084289-1356985165-67a2d3?p=8866) |\n| 京华遗韵 | 李弘 | [下载](https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866) |\n| 京华心影 | 李弘 | [下载](https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866) |\n| 基督教思想史（套装全3卷） | 胡斯都·L.冈察雷斯 | [下载](https://url89.ctfile.com/f/31084289-1356985126-1a8242?p=8866) |\n| 音调未定的传统（增订本） | 朱维铮 | [下载](https://url89.ctfile.com/f/31084289-1356985084-f06396?p=8866) |\n| 基督教史（套装共2册） | 胡斯托・冈萨雷斯 | [下载](https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866) |\n| 新序（全本全注全译） | 马世年 | [下载](https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866) |\n| 掘墓人 | 吕迪格・巴特/豪克・弗里德里希 | [下载](https://url89.ctfile.com/f/31084289-1356985024-aa55e8?p=8866) |\n| 文物中国史 | 中国国家博物馆 | [下载](https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866) |\n| 美国海：墨西哥湾的历史 | 杰克·E.戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1356984943-5a4981?p=8866) |\n| 赛雷三分钟漫画中国史 | 赛雷三分钟 | [下载](https://url89.ctfile.com/f/31084289-1356985012-e16de7?p=8866) |\n| 上海传：叶辛眼中的上海 | 叶辛 | [下载](https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866) |\n| 浮世恒河 | 乔治・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866) |\n| 文史通义校注（中华国学文库） | 章学诚著/叶瑛校注 | [下载](https://url89.ctfile.com/f/31084289-1356984772-eeffe4?p=8866) |\n| 吴越春秋（全本全注全译） | 崔冶译注 | [下载](https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866) |\n| 西方通史：世界大战的时代（全三册） | 海因里希・奥古斯特・温克勒 | [下载](https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866) |\n| 困学纪闻注 | 王应麟 | [下载](https://url89.ctfile.com/f/31084289-1356984739-88bbe6?p=8866) |\n| 中国佛教通史（套装十五卷） | 赖永海 | [下载](https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866) |\n| 蒙古历史拼图 | 邹进 | [下载](https://url89.ctfile.com/f/31084289-1356984655-a06873?p=8866) |\n| 日耳曼尼亚 | 西蒙・温德尔 | [下载](https://url89.ctfile.com/f/31084289-1356984622-8c00f4?p=8866) |\n| 宋论（全本全注全译） | 王夫之 | [下载](https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866) |\n| 人文通史 | 詹尼特・勒博・本顿/罗伯特・笛亚尼 | [下载](https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866) |\n| 战争论（全三册） | 克劳塞维茨 | [下载](https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866) |\n| 赛雷三分钟漫画世界史 | 赛雷三分钟 | [下载](https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866) |\n| 江湖丛谈（注音注释插图本） | 连阔如 | [下载](https://url89.ctfile.com/f/31084289-1356984292-077343?p=8866) |\n| 崩溃：社会如何选择成败兴亡 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866) |\n| 曹操：打不死的乐观主义者 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1356983932-901fe3?p=8866) |\n| 枪炮、病菌与钢铁（修订版） | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866) |\n| 朱元璋全传（作家榜经典文库） | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866) |\n| 约翰王 | 马克・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356983881-bdebff?p=8866) |\n| 牛津世界史丛书（共四册） | 贾斯珀・格里芬等 | [下载](https://url89.ctfile.com/f/31084289-1356983875-afdd9b?p=8866) |\n| 史通（全本全注全译） | 白云 | [下载](https://url89.ctfile.com/f/31084289-1356983833-e75058?p=8866) |\n| 正统与华夷 | 刘浦江 | [下载](https://url89.ctfile.com/f/31084289-1356983797-3ed0c7?p=8866) |\n| 人物志（全本全注全译） | 刘劭/梁满仓 | [下载](https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866) |\n| 宫本武藏全传（套装共5册） | 吉川英治/小山胜清 | [下载](https://url89.ctfile.com/f/31084289-1356983713-9b788f?p=8866) |\n| 强迫症的历史 | 克劳斯·P.费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866) |\n| 商君书（全本全注全译） | 石磊 | [下载](https://url89.ctfile.com/f/31084289-1356983665-3e96e4?p=8866) |\n| 希波战争 | G.W.考克斯 | [下载](https://url89.ctfile.com/f/31084289-1356983626-e7197b?p=8866) |\n| 秋风宝剑孤臣泪 | 姜鸣 | [下载](https://url89.ctfile.com/f/31084289-1356983611-ecaec9?p=8866) |\n| 有所不为的反叛者 | 罗新 | [下载](https://url89.ctfile.com/f/31084289-1356983353-cca417?p=8866) |\n| 顾维钧回忆录（全13册） | 顾维钧 | [下载](https://url89.ctfile.com/f/31084289-1356983332-e78898?p=8866) |\n| 美孚石油公司史 | 艾达・塔贝尔 | [下载](https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866) |\n| 被统治的艺术 | 宋怡明 | [下载](https://url89.ctfile.com/f/31084289-1356983314-16ffcd?p=8866) |\n| 现代主义：从波德莱尔到贝克特之后 | 彼得・盖伊 | [下载](https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866) |\n| 洛阳伽蓝记（全本全注全译） | 尚荣译注 | [下载](https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866) |\n| 拜占庭一千年 | 狄奥尼修斯・史塔克普洛斯 | [下载](https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866) |\n| 游牧民的世界史（修订版） | 杉山正明 | [下载](https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866) |\n| 在台湾发现历史 | 杨渡 | [下载](https://url89.ctfile.com/f/31084289-1356982489-7f9cfb?p=8866) |\n| 5000年文明启示录 | 威廉·H.麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1356982480-ddd078?p=8866) |\n| 耶鲁极简科学史 | 威廉・拜纳姆 | [下载](https://url89.ctfile.com/f/31084289-1356982441-5807b0?p=8866) |\n| 礼记（全本全注全译） | 胡平生译注/张萌译注  | [下载](https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866) |\n| 长安与河北之间 | 仇鹿鸣 | [下载](https://url89.ctfile.com/f/31084289-1357054402-00b665?p=8866) |\n| 拿破仑大帝（全2册） | 安德鲁・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866) |\n| 家人父子 | 赵园 | [下载](https://url89.ctfile.com/f/31084289-1357053889-726410?p=8866) |\n| 秦汉帝国 | 西嶋定生 | [下载](https://url89.ctfile.com/f/31084289-1357053790-cd6e5d?p=8866) |\n| 士大夫政治演生史稿 | 阎步克 | [下载](https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866) |\n| 元好问传 | 朱东润 | [下载](https://url89.ctfile.com/f/31084289-1357053739-812d98?p=8866) |\n| 重审中国的“近代” | 孙江 | [下载](https://url89.ctfile.com/f/31084289-1357053655-c514d0?p=8866) |\n| 莫卧儿帝国 | H.G.基恩 | [下载](https://url89.ctfile.com/f/31084289-1357053571-9577f0?p=8866) |\n| 尼尔弗格森看历史（共5册） | 尼尔・弗格森 | [下载](https://url89.ctfile.com/f/31084289-1357053550-51e73c?p=8866) |\n| 钱锺书交游考 | 谢泳 | [下载](https://url89.ctfile.com/f/31084289-1357053523-510bb0?p=8866) |\n| 亲历滇缅公路（套装共4本） | 内维尔・布拉德利等 | [下载](https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866) |\n| 广场与高塔 | 尼尔・弗格森 | [下载](https://url89.ctfile.com/f/31084289-1357053496-3c88ef?p=8866) |\n| 蒙古帝国中亚征服史 | G. D.古拉提 | [下载](https://url89.ctfile.com/f/31084289-1357053502-bdd0ab?p=8866) |\n| 魏晋玄学史（第二版） | 余敦康 | [下载](https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866) |\n| 艺术史：1940年至今天 | 乔纳森・费恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866) |\n| 一看就懂的大汉史（修订版） | 朱真 | [下载](https://url89.ctfile.com/f/31084289-1357053139-fdde88?p=8866) |\n| 一书通识世界五千年历史悬案 | 仲英涛 | [下载](https://url89.ctfile.com/f/31084289-1357053085-b9a1ff?p=8866) |\n| 亚洲的决裂 | 汤姆斯·F. 密勒 | [下载](https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866) |\n| 富可敌国（经典版） | 塞巴斯蒂安・马拉比 | [下载](https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866) |\n| 中国人与美国人 | 徐国琦 | [下载](https://url89.ctfile.com/f/31084289-1357052743-2f01b0?p=8866) |\n| 通鉴纪事本末（注译本）全42卷 | 袁枢 | [下载](https://url89.ctfile.com/f/31084289-1357052959-de2d4c?p=8866) |\n| 中国纵横 | 史景迁 | [下载](https://url89.ctfile.com/f/31084289-1357052362-4807ce?p=8866) |\n| 中法海战 | 陈悦 | [下载](https://url89.ctfile.com/f/31084289-1357052590-a0f649?p=8866) |\n| 至暗时刻 | 安东尼・麦卡滕 | [下载](https://url89.ctfile.com/f/31084289-1357052338-7e11b2?p=8866) |\n| 看得见的世界史套装（全15卷） | 肖石忠等 | [下载](https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866) |\n| 国家是怎样炼成的3 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866) |\n| 古希腊罗马技术史（贝克知识丛书） | 赫尔穆特・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866) |\n| 观察家精选系列（套装共7册） | 迈克尔・霍华德等 | [下载](https://url89.ctfile.com/f/31084289-1357051912-677f1d?p=8866) |\n| 西班牙史（贝克知识丛书） | 瓦尔特·L.伯尔奈克 | [下载](https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866) |\n| 进攻日本 | 雷蒙德・戴维斯/丹・温 | [下载](https://url89.ctfile.com/f/31084289-1357051780-7e58b0?p=8866) |\n| 讲谈社·兴亡的世界史（全九卷） | 森谷公俊等 | [下载](https://url89.ctfile.com/f/31084289-1357052227-3cba4a?p=8866) |\n| 国家是怎样炼成的 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866) |\n| 古典时代的终结（贝克知识丛书） | 哈特温・布兰特 | [下载](https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866) |\n| 国家是怎样炼成的2 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866) |\n| 第一次世界大战（贝克知识丛书） | 弗尔克・贝克汉恩 | [下载](https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866) |\n| 轴心时代 | 凯伦・阿姆斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866) |\n| 古罗马的日常生活 | 阿尔贝托・安杰拉 | [下载](https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866) |\n| 中东史（套装共3册） | 哈全安 | [下载](https://url89.ctfile.com/f/31084289-1357051753-6b71da?p=8866) |\n| 卡尔·马克思：生平与环境 | 以赛亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866) |\n| 历史无间道 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866) |\n| 罗马史（贝克知识丛书） | 克劳斯・布林格曼 | [下载](https://url89.ctfile.com/f/31084289-1357051513-17a241?p=8866) |\n| 二十世纪德国史（贝克知识丛书） | 安德烈亚斯・维尔申 | [下载](https://url89.ctfile.com/f/31084289-1357051465-79abc2?p=8866) |\n| 米塞斯评传 | 伊斯雷尔·M·柯兹纳 | [下载](https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866) |\n| 老北京的记忆 | 张善培 | [下载](https://url89.ctfile.com/f/31084289-1357051321-5b328c?p=8866) |\n| 从航海图到世界史 | 宫崎正胜 | [下载](https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866) |\n| 天才时代 | A.C.格雷林 | [下载](https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866) |\n| 金犀牛 | 富威尔-艾玛尔 | [下载](https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866) |\n| 布宜诺斯艾利斯传 | 詹姆斯・加德纳 | [下载](https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866) |\n| 进击的铁骑 | 刘澍 | [下载](https://url89.ctfile.com/f/31084289-1357051048-0840f0?p=8866) |\n| 宫崎市定中国史 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357051033-abeffa?p=8866) |\n| 宫崎市定人物论 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357050928-2049de?p=8866) |\n| 印尼Etc | 伊丽莎白・皮萨尼 | [下载](https://url89.ctfile.com/f/31084289-1357050922-272408?p=8866) |\n| 哈尔滨档案 | 玛拉・穆斯塔芬 | [下载](https://url89.ctfile.com/f/31084289-1357050781-93c481?p=8866) |\n| 大外交 | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866) |\n| 国家、经济与大分流 | 皮尔・弗里斯 | [下载](https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866) |\n| 各朝各代那些事儿（套装30册） | 昊天牧云 | [下载](https://url89.ctfile.com/f/31084289-1357050676-782b7a?p=8866) |\n| 资治通鉴启示录（全二册） | 张国刚 | [下载](https://url89.ctfile.com/f/31084289-1357050523-9bace2?p=8866) |\n| 德意志公敌 | 杰弗里・赫夫 | [下载](https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866) |\n| 汤因比著作集（套装全7册） | 阿诺德・汤因比 | [下载](https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866) |\n| 独霸中东 | 雅科夫・卡茨/阿米尔・鲍博特 | [下载](https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866) |\n| 罗马的复辟 | 彼得・希瑟 | [下载](https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866) |\n| 滑铁卢：决定欧洲命运的四天 | 蒂姆・克莱顿 | [下载](https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866) |\n| 二十五史简明读本（全15册） | 汪受宽 | [下载](https://url89.ctfile.com/f/31084289-1357050169-8543b7?p=8866) |\n| 战争时期日本精神史 | 鹤见俊辅 | [下载](https://url89.ctfile.com/f/31084289-1357049854-91db68?p=8866) |\n| 向和平宣战 | 罗南・法罗 | [下载](https://url89.ctfile.com/f/31084289-1357049848-3b94eb?p=8866) |\n| 邂逅秦始皇 | 中信出版·大方 | [下载](https://url89.ctfile.com/f/31084289-1357049749-255362?p=8866) |\n| 西方通史：从古代源头到20世纪（全3册） | 海因里希・奥古斯特・温克勒 | [下载](https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866) |\n| 曾国藩的经济课 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866) |\n| 枫丹白露宫 | 蒂埃里・萨尔芒等 | [下载](https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866) |\n| 旧京人物影像馆（套装三册） | 张社生 | [下载](https://url89.ctfile.com/f/31084289-1357049425-7f26ab?p=8866) |\n| 文化的江山·第一辑（全4册） | 刘刚/李冬君 | [下载](https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866) |\n| 西域余闻 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866) |\n| 维多利亚女王：帝国女统治者的秘密传记（全2册） | 茱莉娅・贝尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866) |\n| 耶路撒冷三千年（全新增订版） | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866) |\n| 宽容、狭隘与帝国兴亡 | 艾米・蔡 | [下载](https://url89.ctfile.com/f/31084289-1357049143-5ef8f3?p=8866) |\n| 春秋那杯茶，战国这碗酒（套装共4册） | 南柯月初 | [下载](https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866) |\n| 犹太文明 | S.N.艾森斯塔特 | [下载](https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866) |\n| 大历史的多角度解读（套装共20册） | 蒋廷黻等 | [下载](https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866) |\n| 明朝简史 | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1357048765-cc45e6?p=8866) |\n| 北京的隐秘角落 | 陆波 | [下载](https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866) |\n| 马背上的朝廷 | 张勉治 | [下载](https://url89.ctfile.com/f/31084289-1357048699-77f374?p=8866) |\n| 吾志所向 | 孙中山/许仕廉编著  | [下载](https://url89.ctfile.com/f/31084289-1357048690-7bdaa7?p=8866) |\n| 陈舜臣说十八史略：中国历史极简本 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357048681-5bcfb9?p=8866) |\n| 黄金家族的最后一个王爷 | 朱文楚 | [下载](https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866) |\n| 人类的起源 | 理查德・利基 | [下载](https://url89.ctfile.com/f/31084289-1357048492-6ce106?p=8866) |\n| 欧洲一万年（全三册） | J.M.罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357048477-099fc8?p=8866) |\n| 中国通史：从上古传说到1949 | 邓广铭/田余庆/戴逸 | [下载](https://url89.ctfile.com/f/31084289-1357048360-fdc789?p=8866) |\n| 华文全球史（套装15册） | 哈罗德坦珀利等 | [下载](https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866) |\n| 美术史十议 | 巫鸿 | [下载](https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866) |\n| 罗马帝国兴亡史三部曲 | 罗伯特・格雷夫斯 | [下载](https://url89.ctfile.com/f/31084289-1357047541-286b5b?p=8866) |\n| 彗星年代 | 丹尼尔・舍恩普夫卢格 | [下载](https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866) |\n| 大汉帝国（套装共2册） | 萧然 | [下载](https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866) |\n| 春秋大义 | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866) |\n| 文艺复兴人 | 罗伯特・戴维斯/贝丝・琳达史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866) |\n| 老鼠、虱子和历史 | 汉斯・辛瑟尔 | [下载](https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866) |\n| 帝国之衰 | 王三义 | [下载](https://url89.ctfile.com/f/31084289-1357046941-f63985?p=8866) |\n| 中国兵器史 | 周纬 | [下载](https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866) |\n| 倒退的帝国：朱元璋的成与败 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866) |\n| 新食货志 | 杜君立 | [下载](https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866) |\n| 智慧七柱Ⅰ | T. E.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866) |\n| 智慧七柱Ⅱ | T. E.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866) |\n| 大转折时代 | 茱莉亚・瓜尔内里 | [下载](https://url89.ctfile.com/f/31084289-1357046326-8b0fec?p=8866) |\n| 伊斯坦布尔三城记 | 贝塔妮・休斯 | [下载](https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866) |\n| 大英殖民帝国 | 阿尔弗雷德・考尔德科特 | [下载](https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866) |\n| 西班牙无敌舰队 | 加勒・马丁利 | [下载](https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866) |\n| 哥伦布、大航海时代与地理大发现 | 约翰・S.C.阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866) |\n| 党员、党权与党争 | 王奇生 | [下载](https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866) |\n| 大金王朝 | 熊召政 | [下载](https://url89.ctfile.com/f/31084289-1357046032-54fc0e?p=8866) |\n| 亚洲古兵器图说 | 周纬 | [下载](https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866) |\n| 最残酷的夏天：美国人眼中的越南战争 | 菲利普・卡普托 | [下载](https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866) |\n| 罗马元老院与人民 | 玛丽・比尔德 | [下载](https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866) |\n| 朝廷与党争 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045885-5bdfc7?p=8866) |\n| 文明（套装共2册） | 玛丽・比尔德/戴维・奥卢索加 | [下载](https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866) |\n| 午夜北平（全2册） | 保罗・法兰奇 | [下载](https://url89.ctfile.com/f/31084289-1357045792-854bf8?p=8866) |\n| 曾国藩全集（全31册） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866) |\n| 内忧与外患 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045750-19a698?p=8866) |\n| 全球通史：从史前到21世纪（第7版新校本） | 斯塔夫里阿诺斯 | [下载](https://url89.ctfile.com/f/31084289-1357045897-0418e2?p=8866) |\n| 王朝的末路 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045705-73a219?p=8866) |\n| 伟大的海（全2册） | 大卫・阿布拉菲亚 | [下载](https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866) |\n| 晚明大变局 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045558-e69b30?p=8866) |\n| 茶叶战争（修订版） | 周重林 | [下载](https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866) |\n| 古代丝绸之路的绝唱 | 罗三洋 | [下载](https://url89.ctfile.com/f/31084289-1357045555-39eb63?p=8866) |\n| 新政与盛世 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045420-8e75ff?p=8866) |\n| 历史的温度4 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866) |\n| 从鹏扶摇到蝶蹁跹 | 崔宜明 | [下载](https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866) |\n| 當帝國回到家 | 華樂瑞 | [下载](https://url89.ctfile.com/f/31084289-1357045342-435071?p=8866) |\n| 马基雅维利语录 | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357045288-8aa412?p=8866) |\n| 敌人与邻居 | 伊恩・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866) |\n| 千年文明史 | 勒尔・兹威克 | [下载](https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866) |\n| 中国历朝通俗演义（全十一册） | 蔡东藩 | [下载](https://url89.ctfile.com/f/31084289-1357045354-75bb47?p=8866) |\n| 千年悖论 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357045231-d7d6f7?p=8866) |\n| 古拉格群岛 | 亚历山大・索尔仁尼琴 | [下载](https://url89.ctfile.com/f/31084289-1357045198-ec8982?p=8866) |\n| 火枪与账簿 | 李伯重 | [下载](https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866) |\n| 20世纪思想史：从弗洛伊德到互联网 | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866) |\n| 称霸（上下册） | 刘勋 | [下载](https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866) |\n| 欧洲之门 | 谢尔希・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1357045066-209a47?p=8866) |\n| 说说十大日本侵华人物 | 蒋丰 | [下载](https://url89.ctfile.com/f/31084289-1357045075-ebfb55?p=8866) |\n| 经典里的中国（套装共十册） | 杨照 | [下载](https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866) |\n| 日本当代名医访谈录 | 蒋丰 | [下载](https://url89.ctfile.com/f/31084289-1357045093-bd6d39?p=8866) |\n| 强势生存 | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357044985-7bb35e?p=8866) |\n| 圣彼得堡 | 乔纳森・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357045036-3a0aa2?p=8866) |\n| 古希腊人 | 伊迪丝・霍尔 | [下载](https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866) |\n| 大汉荣耀：帝国建立与政权巩固 | 上医治国 | [下载](https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866) |\n| 大汉荣耀：王朝鼎盛与命运转折 | 上医治国 | [下载](https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866) |\n| 纸上威尼斯 | 亚历山德罗・马尔佐・马尼奥 | [下载](https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866) |\n| 兵者不祥 | 刘鹤 | [下载](https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866) |\n| 昨天的中国 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866) |\n| 历史的叙述方式 | 茅海建 | [下载](https://url89.ctfile.com/f/31084289-1357044724-930fe0?p=8866) |\n| 半小时漫画中国史（中国传统节日） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866) |\n| 大争之世：战国 | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357044667-a224f9?p=8866) |\n| 北京的城墙与城门 | 喜仁龙 | [下载](https://url89.ctfile.com/f/31084289-1357044700-c36d74?p=8866) |\n| 王朝物语（套装全四册） | 中野京子 | [下载](https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866) |\n| 历史与记忆中的第三帝国 | 理查德・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866) |\n| 从幕末到明治 | 佐佐木克 | [下载](https://url89.ctfile.com/f/31084289-1357044436-c0c700?p=8866) |\n| 来自纳粹地狱的报告 | 米克洛斯・尼斯利 | [下载](https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866) |\n| 命运攸关的抉择 | 伊恩・克肖 | [下载](https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866) |\n| 我在故宫看大门 | 维一 | [下载](https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866) |\n| 我们最幸福 | 芭芭拉・德米克 | [下载](https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866) |\n| 银元时代生活史 | 陈存仁 | [下载](https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866) |\n| 香料漂流记 | 加里・保罗・纳卜汉 | [下载](https://url89.ctfile.com/f/31084289-1357044238-605eec?p=8866) |\n| 拜占庭帝国史 | A.A.瓦西列夫 | [下载](https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866) |\n| 20世纪五大传记书系（全5册） | 吴晗/林语堂等 | [下载](https://url89.ctfile.com/f/31084289-1357044160-869a78?p=8866) |\n| 马其顿的亚历山大 | 彼得・格林 | [下载](https://url89.ctfile.com/f/31084289-1357044046-0ebfa7?p=8866) |\n| 法国大革命 | 维森 | [下载](https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866) |\n| 极简算法史 | 吕克・德・布拉班迪尔 | [下载](https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866) |\n| 皇宫日落（全2册） | 姜建强 | [下载](https://url89.ctfile.com/f/31084289-1357043920-9d3751?p=8866) |\n| 黑羊与灰鹰（套装共3册） | 丽贝卡・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866) |\n| 温莎王朝 | 汤姆・利文 | [下载](https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866) |\n| 给孩子的中国历史故事（作家榜经典文库） | 汤芸畦 | [下载](https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866) |\n| 从历史看组织 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357043785-33f6ec?p=8866) |\n| 1683维也纳之战 | 安德鲁・惠克罗夫特 | [下载](https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866) |\n| 草与禾 | 波音 | [下载](https://url89.ctfile.com/f/31084289-1357043632-3f8944?p=8866) |\n| 皇位之争 | 贾杜纳斯・萨卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357043626-79ec52?p=8866) |\n| 日本人为何选择了战争 | 加藤阳子 | [下载](https://url89.ctfile.com/f/31084289-1357043608-500337?p=8866) |\n| 文明的历史（全5册） | 丹尼尔・布尔斯廷 | [下载](https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866) |\n| 灯塔工的值班室 | 弗朗索瓦・阿赫托戈 | [下载](https://url89.ctfile.com/f/31084289-1357043494-9e3f3d?p=8866) |\n| 征服与革命中的阿拉伯人 | 尤金・罗根 | [下载](https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866) |\n| 大英图书馆书籍史话 | 大卫・皮尔森 | [下载](https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866) |\n| 中途岛奇迹 | 戈登・普兰奇等 | [下载](https://url89.ctfile.com/f/31084289-1357043398-ec3e78?p=8866) |\n| 大汉帝国在巴蜀 | 饶胜文 | [下载](https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866) |\n| 二战史诗三部曲（珍藏版） | 科尼利厄斯・瑞恩 | [下载](https://url89.ctfile.com/f/31084289-1357043365-3a2d94?p=8866) |\n| 气候改变世界 | 布莱恩・费根 | [下载](https://url89.ctfile.com/f/31084289-1357043254-e54d87?p=8866) |\n| 激荡的百年史 | 吉田茂 | [下载](https://url89.ctfile.com/f/31084289-1357043236-c78d00?p=8866) |\n| 刺桐城 | 王铭铭 | [下载](https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866) |\n| 朕知道了 | 傅淞岩 | [下载](https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866) |\n| 人性中的善良天使（见识丛书） | 斯蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866) |\n| 春秋战国真有趣（全6册） | 龙镇 | [下载](https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866) |\n| 塞纳河畔的一把椅子 | 阿明・马洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866) |\n| 缔造大英帝国 | 詹姆斯・查斯洛・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866) |\n| 南宋行暮 | 虞云国 | [下载](https://url89.ctfile.com/f/31084289-1357042666-24868f?p=8866) |\n| 放言有忌 | 虞云国 | [下载](https://url89.ctfile.com/f/31084289-1357042660-f57275?p=8866) |\n| 简读中国史 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357042147-004132?p=8866) |\n| 打造消费天堂 | 连玲玲 | [下载](https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866) |\n| 第一等人 | 宋华丽 | [下载](https://url89.ctfile.com/f/31084289-1357042015-7eebfb?p=8866) |\n| 爱德华一世 | 马克・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866) |\n| 中国抗日战争史（四卷套装） | 张宪文/左用章 | [下载](https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866) |\n| 中国经典古典名著套装20册 | 司马迁等 | [下载](https://url89.ctfile.com/f/31084289-1357041949-2c728c?p=8866) |\n| 极简人类史（修订珍藏版） | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357041145-b13043?p=8866) |\n| 皇权不下县？ | 胡恒 | [下载](https://url89.ctfile.com/f/31084289-1357041118-0a5ee2?p=8866) |\n| 自由的声音 | 米歇尔・维诺克 | [下载](https://url89.ctfile.com/f/31084289-1357041064-ba5df3?p=8866) |\n| 德国通史（全六卷） | 邢来顺/吴友达 | [下载](https://url89.ctfile.com/f/31084289-1357041019-a506b4?p=8866) |\n| 欧罗巴一千年 | 伊恩・莫蒂默 | [下载](https://url89.ctfile.com/f/31084289-1357040827-7ff413?p=8866) |\n| 自由的流亡者 | 马娅・亚桑诺夫 | [下载](https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866) |\n| 祖先的故事 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866) |\n| 帝国边缘 | 马娅・亚桑诺夫 | [下载](https://url89.ctfile.com/f/31084289-1357040506-d747d7?p=8866) |\n| 贝托尔特·布莱希特 | 雅恩・克诺普夫 | [下载](https://url89.ctfile.com/f/31084289-1357040365-b4e7a4?p=8866) |\n| 无论如何都想告诉你的世界史 | 玉木俊明 | [下载](https://url89.ctfile.com/f/31084289-1357040368-13eaaa?p=8866) |\n| 贝希摩斯 | 托马斯・霍布斯 | [下载](https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866) |\n| 阿姆斯特丹：世界最自由城市的历史 | 萧拉瑟 | [下载](https://url89.ctfile.com/f/31084289-1357040344-803e71?p=8866) |\n| 悲剧遭遇 | 佩吉・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357040260-bac7dc?p=8866) |\n| 六舰 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866) |\n| 罗马的命运 | 凯尔・哈珀 | [下载](https://url89.ctfile.com/f/31084289-1357040251-bcd0df?p=8866) |\n| 梅毅说中华英雄史（全10册） | 梅毅 | [下载](https://url89.ctfile.com/f/31084289-1357040140-0d274d?p=8866) |\n| 轰炸东京 | 詹姆斯·M.斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357039969-7b615d?p=8866) |\n| 清宫玄机录 | 金性尧 | [下载](https://url89.ctfile.com/f/31084289-1357039738-d46cd6?p=8866) |\n| 大英帝国与第一次世界大战 | 戴维・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357039822-4fe1a8?p=8866) |\n| 雅典的胜利 | 安东尼・艾福瑞特 | [下载](https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866) |\n| 罗马的崛起 | 安东尼・艾福瑞特 | [下载](https://url89.ctfile.com/f/31084289-1357039726-2352c5?p=8866) |\n| 根部之血：美国的一次种族清洗 | 特里克・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866) |\n| 伪满洲国 | 迟子建 | [下载](https://url89.ctfile.com/f/31084289-1357039606-452ac7?p=8866) |\n| 自由的文化 | 克里斯蒂安・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866) |\n| 隆美尔战时文件 | 李德・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357039558-d489c6?p=8866) |\n| 闪击英雄 | 海因茨・威廉・古德里安 | [下载](https://url89.ctfile.com/f/31084289-1357039564-bc32db?p=8866) |\n| 坚守与突围 | 凤凰书品 | [下载](https://url89.ctfile.com/f/31084289-1357039378-960d27?p=8866) |\n| 中央帝国的军事密码 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357039258-40e6b4?p=8866) |\n| Gulag | Anne Applebaum | [下载](https://url89.ctfile.com/f/31084289-1357039219-530b32?p=8866) |\n| 第二次世界大战完整历史实录（套装共38册） | 马夫 | [下载](https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866) |\n| 西方文明史：延续不断的遗产（第五版） | 马克・凯什岚斯基等 | [下载](https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866) |\n| 耶鲁古典欧洲怪诞生活志 | 伊丽莎白・阿奇博尔德 | [下载](https://url89.ctfile.com/f/31084289-1357039012-b15b5d?p=8866) |\n| 注定一战 | 格雷厄姆・艾利森 | [下载](https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866) |\n| 巴尔干百年简史 | 马细谱/余志和 | [下载](https://url89.ctfile.com/f/31084289-1357038772-ae31dc?p=8866) |\n| 南京传 | 叶兆言 | [下载](https://url89.ctfile.com/f/31084289-1357038607-9ea609?p=8866) |\n| 以上帝和恺撒之名 | 理查德・巴塞特 | [下载](https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866) |\n| 半小时漫画中国史4 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357038724-389581?p=8866) |\n| 皇帝圆舞曲 | 高林 | [下载](https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866) |\n| 史迪威与美国在中国的经验（1911-1945） | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866) |\n| 愚政进行曲 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866) |\n| 第一声礼炮 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866) |\n| 晚清帝国风云系列（全三册） | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357037521-529d85?p=8866) |\n| 骄傲之塔 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866) |\n| 文史哲入门三部曲 | 吕思勉/胡适/郑振铎 | [下载](https://url89.ctfile.com/f/31084289-1357037773-c7f7aa?p=8866) |\n| 原来你是这样的古人 | 郁馥 | [下载](https://url89.ctfile.com/f/31084289-1357037347-cb95ad?p=8866) |\n| 远方之镜 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866) |\n| 西方视野里的中国合集（共10册） | 庄士敦等 | [下载](https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866) |\n| 1944阿登战役 | 安东尼・比弗 | [下载](https://url89.ctfile.com/f/31084289-1357037029-6f5127?p=8866) |\n| 世界简史 | 威廉・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357036771-8aa3d0?p=8866) |\n| 迈尔斯教授讲世界历史（全6册） | 菲利普・范・内斯・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357036933-5ae1e2?p=8866) |\n| 醉酒简史 | 马克・福赛思 | [下载](https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866) |\n| 全球使命 | 亨利・H・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866) |\n| 成化十四年 | 梦溪石 | [下载](https://url89.ctfile.com/f/31084289-1357035892-788349?p=8866) |\n| 茶叶大盗 | 萨拉・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866) |\n| 晚清中国的光与影 | 杜德维 | [下载](https://url89.ctfile.com/f/31084289-1357035868-bc3e37?p=8866) |\n| 国史论衡 | 邝士元 | [下载](https://url89.ctfile.com/f/31084289-1357035766-7facf5?p=8866) |\n| 忽必烈的挑战 | 杉山正明 | [下载](https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866) |\n| 清王朝的最后十年 | 菲尔曼・拉里贝 | [下载](https://url89.ctfile.com/f/31084289-1357035697-05658d?p=8866) |\n| 文字的力量 | 马丁・普克纳 | [下载](https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866) |\n| 人人都该懂的启蒙运动 | 吉隆・・奥哈拉 | [下载](https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866) |\n| 李开周说宋史套装（全3册） | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866) |\n| 悬崖边的名士 | 大生 | [下载](https://url89.ctfile.com/f/31084289-1357035499-d66334?p=8866) |\n| 雍正大传 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357035448-d271fe?p=8866) |\n| 蒙古帝国 | 易强 | [下载](https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866) |\n| 谜一样的清明上河图（精致版） | 野岛刚 | [下载](https://url89.ctfile.com/f/31084289-1357035433-9e1141?p=8866) |\n| 俄国与拿破仑的决战 | 多米尼克・利芬 | [下载](https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866) |\n| 掉队的拉美 | 塞巴斯蒂安・爱德华兹 | [下载](https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866) |\n| 千年帝国史 | 克里尚・库马尔 | [下载](https://url89.ctfile.com/f/31084289-1357035127-d8bec6?p=8866) |\n| 昨日的世界 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866) |\n| 汴京之围 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357034971-15dabf?p=8866) |\n| 未了中国缘 | 约翰・帕顿・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1357034959-e448e1?p=8866) |\n| 美国大外交（60周年增订版） | 乔治・凯南 | [下载](https://url89.ctfile.com/f/31084289-1357034854-6a0ae2?p=8866) |\n| 武士的女儿 | 贾尼斯・宝莫伦斯・二村 | [下载](https://url89.ctfile.com/f/31084289-1357034830-947585?p=8866) |\n| 德意志文化（1945～2000年） | 赫尔曼・格拉瑟 | [下载](https://url89.ctfile.com/f/31084289-1357034806-c7aa48?p=8866) |\n| 大明帝国 | 周建行 | [下载](https://url89.ctfile.com/f/31084289-1357034782-d9ee2a?p=8866) |\n| 剑桥艺术史（套装全8册） | 苏珊・伍德福德等 | [下载](https://url89.ctfile.com/f/31084289-1357034887-1b0a28?p=8866) |\n| 敦煌：众人受到召唤 | 生活月刊 | [下载](https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866) |\n| 帝国骑士（第4卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866) |\n| 英国公使夫人清宫回忆录 | 苏珊・汤丽 | [下载](https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866) |\n| 中国1945 | 理查德・伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357034716-72269b?p=8866) |\n| 巴黎烧了吗？ | 拉莱・科林斯 | [下载](https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866) |\n| 无情的革命 | 乔伊斯・阿普尔比 | [下载](https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866) |\n| 希腊对德意志的暴政 | 伊莉莎・玛丽安・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866) |\n| 帝国骑士（第2卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866) |\n| 亚洲的去魔化 | 于尔根・奥斯特哈默 | [下载](https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866) |\n| 帝国骑士（第3卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866) |\n| 野蛮大陆 | 基思・罗威 | [下载](https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866) |\n| 十字军骑士（名著名译丛书） | 亨利克・显克维奇 | [下载](https://url89.ctfile.com/f/31084289-1357034416-c53e79?p=8866) |\n| 诸葛亮：蜀汉舵手的历史真相 | 南门太守 | [下载](https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866) |\n| 伦勃朗1642 | 张佳玮 | [下载](https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866) |\n| 慈禧太后 | 菲利普・威廉姆斯・萨金特 | [下载](https://url89.ctfile.com/f/31084289-1357034272-2fcee2?p=8866) |\n| 宋人轶事汇编 | 周勋初/葛渭君/周子来/王华宝 | [下载](https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866) |\n| 雍正帝：中国的独裁君主 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866) |\n| 文艺复兴的故事（全六册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866) |\n| 天生幸存者 | 温迪・霍尔登 | [下载](https://url89.ctfile.com/f/31084289-1357033942-f423d9?p=8866) |\n| 希特勒的试毒者 | 罗塞拉・波斯托里诺 | [下载](https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866) |\n| 以色列的诞生（全四册） | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866) |\n| 地理与世界霸权 | 詹姆斯・费尔格里夫 | [下载](https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866) |\n| 人类六千年（上下两册） | 刘景华 | [下载](https://url89.ctfile.com/f/31084289-1357033867-2e79ed?p=8866) |\n| 我想重新解释历史 | 吴思 | [下载](https://url89.ctfile.com/f/31084289-1357033837-7ecd82?p=8866) |\n| 千古大儒：王阳明 | 周明河 | [下载](https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866) |\n| 唐人轶事汇编 | 周勋初/严杰/武秀成/姚松 | [下载](https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866) |\n| 杀戮与文化 | 维克托・戴维斯・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866) |\n| 走出帝制 | 秦晖 | [下载](https://url89.ctfile.com/f/31084289-1357033669-f94efa?p=8866) |\n| 欧亚皇家狩猎史 | 托马斯・爱尔森 | [下载](https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866) |\n| 撒马尔罕的金桃 | 薛爱华 | [下载](https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866) |\n| 米开朗琪罗与教皇的天花板 | 罗斯・金 | [下载](https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866) |\n| 美第奇家族的兴衰 | 克里斯托弗・希伯特 | [下载](https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866) |\n| 鏖战 | 张新科 | [下载](https://url89.ctfile.com/f/31084289-1357033360-8a444f?p=8866) |\n| 说中国 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866) |\n| 万古江河 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866) |\n| 中国文化的精神 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866) |\n| 一口气读完的大国战史系列 | 郭强 | [下载](https://url89.ctfile.com/f/31084289-1357033447-bee645?p=8866) |\n| 太平杂说 | 潘旭澜 | [下载](https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866) |\n| 苍狼 | 井上靖 | [下载](https://url89.ctfile.com/f/31084289-1357033288-e39de6?p=8866) |\n| 迦太基必须毁灭 | 理查德・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357033276-eb158a?p=8866) |\n| 战略：一部历史 | 劳伦斯・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866) |\n| 中国通史（五卷本） | 卜宪群 | [下载](https://url89.ctfile.com/f/31084289-1357033426-04b3cd?p=8866) |\n| 二战爆发前十天 | 理查德・奥弗里 | [下载](https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866) |\n| 冷战 | 约翰・刘易斯・加迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866) |\n| 历史深处的民国（全3册） | 江城 | [下载](https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866) |\n| 死屋 | 丹尼尔・比尔 | [下载](https://url89.ctfile.com/f/31084289-1357033177-b3ac59?p=8866) |\n| 天国之痒 | 李洁非 | [下载](https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866) |\n| 罗马帝国的崛起 | 波里比阿 | [下载](https://url89.ctfile.com/f/31084289-1357033156-220881?p=8866) |\n| 非常年代 | 多莉丝・基恩斯・古德温 | [下载](https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866) |\n| 郁金香热 | 迈克・达什 | [下载](https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866) |\n| 蝴蝶效应：历史漩涡中的汉唐帝国 | 唐岛渔夫 | [下载](https://url89.ctfile.com/f/31084289-1357033012-fd523b?p=8866) |\n| 被封印的唐史 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357033009-fa3de9?p=8866) |\n| 中古中国门阀大族的消亡 | 谭凯 | [下载](https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866) |\n| 湖南人与现代中国 | 裴士锋 | [下载](https://url89.ctfile.com/f/31084289-1357032976-2e3783?p=8866) |\n| 美国国家图书馆珍藏名传（系列一共8册） | 雅各布・阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1357033111-1a7d11?p=8866) |\n| 海盗共和国 | 科林・伍达德 | [下载](https://url89.ctfile.com/f/31084289-1357032946-dc4fd1?p=8866) |\n| 财富的帝国 | 约翰.S.戈登 | [下载](https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866) |\n| 摩登时代：从1920年代到1990年代的世界 | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357032913-6118fe?p=8866) |\n| 绿色黄金：茶叶帝国 | 艾伦・麦克法兰/艾丽斯・麦克法兰 | [下载](https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866) |\n| 权力密码 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357032886-a0070a?p=8866) |\n| 壶里春秋 | 朱维铮 | [下载](https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866) |\n| 海昏侯刘贺 | 辛德勇 | [下载](https://url89.ctfile.com/f/31084289-1357032874-fa7f10?p=8866) |\n| 蒋经国传 | 陶涵 | [下载](https://url89.ctfile.com/f/31084289-1357032877-09a543?p=8866) |\n| 特拉法尔加战役 | 朱利安·S.科贝特 | [下载](https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866) |\n| 额田女王 | 井上靖 | [下载](https://url89.ctfile.com/f/31084289-1357032841-34c6b1?p=8866) |\n| 午夜将至 | 迈克尔・多布斯 | [下载](https://url89.ctfile.com/f/31084289-1357032853-5f84af?p=8866) |\n| 奠基者：独立战争那一代 | 约瑟夫·J. 埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357032793-3eb972?p=8866) |\n| 革命之夏：美国独立的起源 | 约瑟夫·J. 埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866) |\n| 国民党高层的派系政治（修订本） | 金以林 | [下载](https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866) |\n| 回忆拿破仑 | 布里昂 | [下载](https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866) |\n| 世界文明史（全11卷） | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866) |\n| 恺撒：巨人的一生 | 阿德里安・戈兹沃西 | [下载](https://url89.ctfile.com/f/31084289-1357032718-228358?p=8866) |\n| 黄同学漫画中国史 | 那个黄同学 | [下载](https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866) |\n| 黄同学漫画中国史2 | 那个黄同学 | [下载](https://url89.ctfile.com/f/31084289-1357032661-abddf5?p=8866) |\n| 奥古斯都：从革命者到皇帝 | 阿德里安・戈兹沃西 | [下载](https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866) |\n| 第二次世界大战在亚洲及太平洋的起源 | 入江昭 | [下载](https://url89.ctfile.com/f/31084289-1357032592-58ba06?p=8866) |\n| 伯罗奔尼撒战争 | 唐纳德・卡根 | [下载](https://url89.ctfile.com/f/31084289-1357032625-63c026?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第四辑） | 米歇尔・德・蒙田等 | [下载](https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866) |\n| 伦敦文学小史 | 埃洛伊丝・米勒/萨姆・乔迪森 | [下载](https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866) |\n| 伊莎贝拉 | 克斯汀・唐尼 | [下载](https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866) |\n| 十二年，故人戏（全2册） | 墨宝非宝 | [下载](https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866) |\n| 阿拉伯的劳伦斯 | 斯科特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357032547-0e7048?p=8866) |\n| 青年变革者 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866) |\n| 安第斯山脉的生与死 | 金・麦夸里 | [下载](https://url89.ctfile.com/f/31084289-1357032457-1c064e?p=8866) |\n| 印加帝国的末日 | 金・麦夸里 | [下载](https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866) |\n| 伊丽莎白女王 | 艾莉森・威尔 | [下载](https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866) |\n| 1945：大国博弈下的世界秩序新格局 | 迈克・内伯格 | [下载](https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866) |\n| 伟大的转型 | 诺姆・马格尔 | [下载](https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866) |\n| 贸易打造的世界 | 彭慕兰/史蒂文・托皮克 | [下载](https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866) |\n| 梦幻之地 | 库尔特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357032250-da0889?p=8866) |\n| 希腊奇迹的观念基础 | 陈中梅 | [下载](https://url89.ctfile.com/f/31084289-1357032247-8b04d4?p=8866) |\n| 黑死病 | 弗朗西斯・艾丹・加斯凯 | [下载](https://url89.ctfile.com/f/31084289-1357032304-c5b139?p=8866) |\n| 自由与毁灭 | 彼得・麦克菲 | [下载](https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866) |\n| 一看就停不下来的中国史 | 最爱君 | [下载](https://url89.ctfile.com/f/31084289-1357032190-ca5444?p=8866) |\n| 托马斯·杰斐逊与海盗 | 布莱恩・吉米德/唐・耶格 | [下载](https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866) |\n| 秦始皇：创造力一统天下 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357032160-073320?p=8866) |\n| 战争史（修订珍藏版） | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866) |\n| 鉴古晓今更渊博（套装共4册） | 干春松/张晓芒/王阳明/吕思勉/曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357032055-42ab1f?p=8866) |\n| 欧洲与没有历史的人 | 埃里克·R.沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866) |\n| 德皇威廉二世回忆录 | 威廉二世 | [下载](https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866) |\n| 千古一帝秦始皇（上下全2册） | 王立群 | [下载](https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866) |\n| 这才是清朝套装（全8册） | 鹿鼎公子 | [下载](https://url89.ctfile.com/f/31084289-1357031809-c21e9d?p=8866) |\n| 战争史 | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866) |\n| 卢丹的恶魔 | 阿道司・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357031701-de423d?p=8866) |\n| 拿破仑与法兰西第一帝国（全2册） | 约瑟夫・富歇 | [下载](https://url89.ctfile.com/f/31084289-1357031704-299c68?p=8866) |\n| 拿破仑三世与法兰西第二帝国 | 皮埃尔・德・拉诺 | [下载](https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866) |\n| 中世纪欧洲 | 理查・威廉・丘奇 | [下载](https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866) |\n| 伊斯坦布尔 | 埃布鲁・宝雅 | [下载](https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866) |\n| 德国总参谋部 | 斯宾塞・威尔金森 | [下载](https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866) |\n| 冷月孤灯·静远楼读史 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357031359-488f0a?p=8866) |\n| 柏林：一座城市的肖像 | 罗里・麦克林 | [下载](https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866) |\n| 通往权力之路：叶卡捷琳娜大帝 | 罗伯特·K·迈锡 | [下载](https://url89.ctfile.com/f/31084289-1357031311-287747?p=8866) |\n| 捡来的瓷器史 | 涂睿明 | [下载](https://url89.ctfile.com/f/31084289-1357031281-17ad02?p=8866) |\n| 图绘暹罗 | 通猜・威尼差恭 | [下载](https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866) |\n| 企鹅欧洲史：古典欧洲的诞生 | 西蒙・普莱斯/彼得・索恩曼 | [下载](https://url89.ctfile.com/f/31084289-1357031152-135022?p=8866) |\n| 企鹅欧洲史：罗马帝国的遗产 | 克里斯・威克姆 | [下载](https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866) |\n| 企鹅欧洲史：中世纪盛期的欧洲 | 威廉・乔丹 | [下载](https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866) |\n| 权力与文化 | 入江昭 | [下载](https://url89.ctfile.com/f/31084289-1357031056-457560?p=8866) |\n| 唐浩明评点曾国藩家书 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357030825-08c459?p=8866) |\n| 季风帝国 | 理查德・霍尔 | [下载](https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866) |\n| 内战记 | 盖乌斯・尤利乌斯・恺撒 | [下载](https://url89.ctfile.com/f/31084289-1357030756-3504a4?p=8866) |\n| 首届国会 | 弗格斯·M.博德韦奇 | [下载](https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866) |\n| 孔子大历史 | 李硕 | [下载](https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866) |\n| 阿登纳回忆录（套装共4册） | 康拉德・阿登纳 | [下载](https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866) |\n| 垂帘听政 | 向斯 | [下载](https://url89.ctfile.com/f/31084289-1357030708-e6f8d1?p=8866) |\n| 玻利维亚日记 | 切・格瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866) |\n| 隐公元年 | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357030429-4057fa?p=8866) |\n| 不敢懈怠 | 纳尔逊・曼德拉 | [下载](https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866) |\n| 三千年来谁铸币 | 王永生 | [下载](https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866) |\n| 人类酷刑简史 | 马克·P.唐纳利/丹尼尔·迪尔 | [下载](https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866) |\n| 德国极简史 | 詹姆斯・霍斯 | [下载](https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866) |\n| 二战风云：史上最大规模战争的伤痛（全3册） | 杨少丹 | [下载](https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866) |\n| 义和团和八国联军真相 | 邢超 | [下载](https://url89.ctfile.com/f/31084289-1357030327-fd963d?p=8866) |\n| 五四的另一面 | 杨念群 | [下载](https://url89.ctfile.com/f/31084289-1357030243-59c30f?p=8866) |\n| 天人之际：薛仁明读《史记》 | 薛仁明 | [下载](https://url89.ctfile.com/f/31084289-1357030213-f27649?p=8866) |\n| 一代巨人：明末耶稣会士在中国的故事 | 邓恩 | [下载](https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866) |\n| 中国人的历史：诸神的踪迹 | 申赋渔 | [下载](https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866) |\n| 匈奴史稿（增补版） | 陈序经 | [下载](https://url89.ctfile.com/f/31084289-1357030177-a6b1f3?p=8866) |\n| 制造汉武帝 | 辛德勇 | [下载](https://url89.ctfile.com/f/31084289-1357030171-cabd6a?p=8866) |\n| 半小时漫画唐诗 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866) |\n| 滴血的大朝代 | 宗承灏 | [下载](https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866) |\n| 甲午战争 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357030123-00cc8f?p=8866) |\n| 宋朝政坛319年系列丛书 | 江永红/周宗奇/毕宝魁/郭晓晔 | [下载](https://url89.ctfile.com/f/31084289-1357030120-a49339?p=8866) |\n| 太平洋战争系列 | 青梅煮酒 | [下载](https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866) |\n| 以色列：一个民族的重生 | 丹尼尔・戈迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357030108-c2ca36?p=8866) |\n| 一阅千年 | 马克・科尔兰斯基 | [下载](https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866) |\n| 成吉思汗 | 杰克・威泽弗德 | [下载](https://url89.ctfile.com/f/31084289-1357030057-ad67d7?p=8866) |\n| 文明的崩塌 | 埃里克·H.克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357030063-a42a80?p=8866) |\n| 伊本·赫勒敦 | 罗伯特・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866) |\n| 中国历史常识 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357030000-796999?p=8866) |\n| 致命的倔强 | 邢超 | [下载](https://url89.ctfile.com/f/31084289-1357029979-766e1f?p=8866) |\n| 中世纪战争艺术史（第一卷） | 查尔斯・威廉・欧曼 | [下载](https://url89.ctfile.com/f/31084289-1357030030-7c2c59?p=8866) |\n| 战术 | 利奥六世 | [下载](https://url89.ctfile.com/f/31084289-1357029895-0c0896?p=8866) |\n| 无情之战 | 约翰·W.道尔 | [下载](https://url89.ctfile.com/f/31084289-1357029877-ef77af?p=8866) |\n| 燕国八百年 | 彭华 | [下载](https://url89.ctfile.com/f/31084289-1357029868-03d746?p=8866) |\n| 被掩盖的原罪 | 爱德华・巴普蒂斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866) |\n| 北平无战事 | 刘和平 | [下载](https://url89.ctfile.com/f/31084289-1357029835-35966e?p=8866) |\n| 细讲中国历史丛书（套装共12册） | 李学勤/郭志坤 | [下载](https://url89.ctfile.com/f/31084289-1357030339-2eb1f4?p=8866) |\n| 坐龙椅：明清帝王的风雨人生（套装共2册） | 范军 | [下载](https://url89.ctfile.com/f/31084289-1357029742-e501d3?p=8866) |\n| 郑天挺西南联大日记（全二册） | 郑天挺 | [下载](https://url89.ctfile.com/f/31084289-1357029751-16b46e?p=8866) |\n| 瓜分波兰 | 乔治・肖-勒费弗 | [下载](https://url89.ctfile.com/f/31084289-1357029763-26eb57?p=8866) |\n| 袍哥 | 王笛 | [下载](https://url89.ctfile.com/f/31084289-1357029658-37cafe?p=8866) |\n| 中华史纲 | 李定一 | [下载](https://url89.ctfile.com/f/31084289-1357029643-40892a?p=8866) |\n| 台湾风云（1368-1683） | 张嵚 | [下载](https://url89.ctfile.com/f/31084289-1357029589-c7bec5?p=8866) |\n| 鸦片战争 | 蓝诗玲 | [下载](https://url89.ctfile.com/f/31084289-1357029562-9dc4cd?p=8866) |\n| 太平洋战争 | 赫克特·C. 拜沃特 | [下载](https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866) |\n| 埃及四千年 | 乔安・弗莱彻 | [下载](https://url89.ctfile.com/f/31084289-1357029427-79b57f?p=8866) |\n| 棉花帝国 | 斯文・贝克特 | [下载](https://url89.ctfile.com/f/31084289-1357029418-eec041?p=8866) |\n| 霍布斯鲍姆年代四部曲（套装共4册） | 艾瑞克・霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357029361-ff5c8f?p=8866) |\n| 黑暗大陆：20世纪的欧洲 | 马克・马佐尔 | [下载](https://url89.ctfile.com/f/31084289-1357029334-f32666?p=8866) |\n| 古典遗产：希腊的遗产+罗马的遗产 | M.I.芬利等 | [下载](https://url89.ctfile.com/f/31084289-1357029247-2b7b69?p=8866) |\n| 晚清危亡录 | 凤城杜哥 | [下载](https://url89.ctfile.com/f/31084289-1357029211-fd2b9f?p=8866) |\n| 罗马帝国的梦魇 | 刘衍钢 | [下载](https://url89.ctfile.com/f/31084289-1357029178-61ff6d?p=8866) |\n| 美国内战回忆录（上下册） | U.S.格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357029088-94aa48?p=8866) |\n| 胡椒的全球史 | 玛乔丽・谢弗 | [下载](https://url89.ctfile.com/f/31084289-1357028983-15b29f?p=8866) |\n| 六史：宋史演义 | 蔡东藩 | [下载](https://url89.ctfile.com/f/31084289-1357028935-86acbc?p=8866) |\n| 六史：明史演义 | 蔡东藩 | [下载](https://url89.ctfile.com/f/31084289-1357028932-1448bd?p=8866) |\n| 六史：清史演义 | 蔡东藩 | [下载](https://url89.ctfile.com/f/31084289-1357028929-e30705?p=8866) |\n| 人类群星闪耀时（读客经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357028860-2bbd11?p=8866) |\n| 明治维新亲历记 | 萨道义 | [下载](https://url89.ctfile.com/f/31084289-1357028479-ee9dee?p=8866) |\n| 万国一邦 | 托马斯・本德 | [下载](https://url89.ctfile.com/f/31084289-1357028398-a4da09?p=8866) |\n| 林肯传 | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1357028323-24d764?p=8866) |\n| 六史：前汉演义 | 蔡东藩 | [下载](https://url89.ctfile.com/f/31084289-1357028302-72b4a7?p=8866) |\n| 六史：后汉演义 | 蔡东藩 | [下载](https://url89.ctfile.com/f/31084289-1357028296-1399fb?p=8866) |\n| 六史：唐史演义 | 蔡东藩 | [下载](https://url89.ctfile.com/f/31084289-1357028293-90a16c?p=8866) |\n| 德国历史中的文化诱惑 | 沃尔夫・勒佩尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866) |\n| 关羽：神化的《三国志》英雄 | 渡边义浩 | [下载](https://url89.ctfile.com/f/31084289-1357028101-c928be?p=8866) |\n| 哈布斯堡王朝：翱翔欧洲700年的双头鹰 | 卫克安 | [下载](https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866) |\n| 海都物语 | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866) |\n| 弹秦 | 王杉 | [下载](https://url89.ctfile.com/f/31084289-1357028002-3ba7b4?p=8866) |\n| 浮沉：帝国重臣的人生起落 | 范军 | [下载](https://url89.ctfile.com/f/31084289-1357027960-c3f3a3?p=8866) |\n| 风雅宋：看得见的大宋文明 | 吴钩 | [下载](https://url89.ctfile.com/f/31084289-1357028143-e3cd42?p=8866) |\n| 发现燕然山铭 | 辛德勇 | [下载](https://url89.ctfile.com/f/31084289-1357027969-c72992?p=8866) |\n| 从丹药到枪炮 | 欧阳泰 | [下载](https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866) |\n| 百年颠沛与千年往复 | 王家范 | [下载](https://url89.ctfile.com/f/31084289-1357027825-d31c6f?p=8866) |\n| 年羹尧之死 | 郑小悠 | [下载](https://url89.ctfile.com/f/31084289-1357027813-3994d1?p=8866) |\n| 抽签与民主、共和 | 王绍光 | [下载](https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866) |\n| 东方的文明（套装共2册） | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357027801-a8005f?p=8866) |\n| 知识分子 | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357027738-44fa7b?p=8866) |\n| 无规则游戏 | 塔米姆・安萨利 | [下载](https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866) |\n| 荷马3000年 | 亚当・尼科尔森 | [下载](https://url89.ctfile.com/f/31084289-1357027369-65947b?p=8866) |\n| 最寒冷的冬天Ⅲ：血战长津湖 | 何楚舞/凤鸣/陆宏宇  | [下载](https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866) |\n| 慕尼黑的清真寺 | 伊恩・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866) |\n| 最寒冷的冬天：美国人眼中的朝鲜战争 | 大卫・哈伯斯塔姆 | [下载](https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866) |\n| 最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争 | 儿岛襄 | [下载](链接未找到) |\n| 兄弟连（译林纪念版） | 斯蒂芬•E．安布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866) |\n| 罗马共和国的衰落 | A.H.比斯利 | [下载](https://url89.ctfile.com/f/31084289-1357027213-bd8c70?p=8866) |\n| 东京百年史：从江户到昭和 | 爱德华・赛登施蒂克 | [下载](https://url89.ctfile.com/f/31084289-1357027168-a2ebb9?p=8866) |\n| 成吉思汗与今日世界之形成 | 杰克・威泽弗德 | [下载](https://url89.ctfile.com/f/31084289-1357027153-72f4c4?p=8866) |\n| 希特勒的影子帝国 | 皮耶尔保罗・巴维里 | [下载](https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866) |\n| 唐开国 | 于赓哲 | [下载](https://url89.ctfile.com/f/31084289-1357027039-ea116e?p=8866) |\n| 四朝高僧传（全5册） | 慧皎/道宣/赞宁/如惺 | [下载](https://url89.ctfile.com/f/31084289-1357027009-b8f825?p=8866) |\n| 伯罗奔尼撒战争史（详注修订本） | 修昔底德 | [下载](https://url89.ctfile.com/f/31084289-1357026922-8375ca?p=8866) |\n| 历史学的境界 | 高华 | [下载](https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866) |\n| 考古的故事 | 埃里克·H.克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357026685-adfaf2?p=8866) |\n| 历史（详注修订本） | 希罗多德 | [下载](https://url89.ctfile.com/f/31084289-1357026571-4204f0?p=8866) |\n| 企鹅欧洲史：基督教欧洲的巨变 | 马克・格林格拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357026463-94526e?p=8866) |\n| 企鹅欧洲史：追逐荣耀 | 蒂莫西・布莱宁 | [下载](https://url89.ctfile.com/f/31084289-1357026451-3049ac?p=8866) |\n| 企鹅欧洲史：竞逐权力 | 理查德・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357026442-f6a633?p=8866) |\n| 企鹅欧洲史：地狱之行 | 伊恩・克肖 | [下载](https://url89.ctfile.com/f/31084289-1357026433-bb103f?p=8866) |\n| 寡头 | 戴维・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866) |\n| 当图书进入战争 | 莫里・古皮提尔・曼宁 | [下载](https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866) |\n| 两个世界的战争 | 安东尼・帕戈登 | [下载](https://url89.ctfile.com/f/31084289-1357026268-2ca776?p=8866) |\n| 日本维新六十年 | 樱雪丸 | [下载](https://url89.ctfile.com/f/31084289-1357026166-909097?p=8866) |\n| 历史的温度3 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357026157-634aa1?p=8866) |\n| 二战中的巴黎 | 提拉・马奇奥 | [下载](https://url89.ctfile.com/f/31084289-1357025701-0b1776?p=8866) |\n| 中世纪人 | 艾琳・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357025578-a85503?p=8866) |\n| 纳粹德国 | 克劳斯・P.费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866) |\n| 显微镜下的大明 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357025350-ca3612?p=8866) |\n| 绍兴十二年 | 夏坚勇 | [下载](https://url89.ctfile.com/f/31084289-1357025293-69c02c?p=8866) |\n| 大明帝国战争史 | 李湖光 | [下载](https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866) |\n| 美国秩序的根基 | 拉塞尔・柯克 | [下载](https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866) |\n| 知中5·竹林七贤 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866) |\n| 知中7·幸会！苏东坡 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866) |\n| 知中8·了不起的宋版书 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025230-9eef33?p=8866) |\n| 知中16·西南联大的遗产 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866) |\n| 北欧神话 | 卡罗琳・拉灵顿 | [下载](https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866) |\n| 1924：改变希特勒命运的一年 | 彼得・罗斯・兰奇 | [下载](https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866) |\n| 纳粹医生 | 罗伯特・杰伊・利夫顿 | [下载](https://url89.ctfile.com/f/31084289-1357025107-90ecdb?p=8866) |\n| 凯南日记 | 乔治・凯南 | [下载](https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866) |\n| 战国史料编年辑证（全二册） | 杨宽 | [下载](https://url89.ctfile.com/f/31084289-1357025077-d7a712?p=8866) |\n| 维京传奇 | 拉尔斯・布朗沃思 | [下载](https://url89.ctfile.com/f/31084289-1357025038-59b85c?p=8866) |\n| 无路可逃 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866) |\n| 拜占庭帝国大战略 | 爱德华·N.勒特韦克 | [下载](https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866) |\n| 宋慈洗冤录：满怀冰雪 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357024981-db0d77?p=8866) |\n| 饥饿帝国 | 莉齐・克林汉姆 | [下载](https://url89.ctfile.com/f/31084289-1357024939-01ef66?p=8866) |\n| 曾国藩传 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357024924-c79780?p=8866) |\n| 朱明王朝 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866) |\n| 杨宽著作集第一辑（8种10册全） | 杨宽 | [下载](https://url89.ctfile.com/f/31084289-1357025140-fdbb62?p=8866) |\n| 断头王后：玛丽·安托瓦内特传 | 斯・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357024828-0ecc23?p=8866) |\n| 博物馆里的极简中国史 | 张经纬 | [下载](https://url89.ctfile.com/f/31084289-1357024930-f290a1?p=8866) |\n| 雷震传 | 范泓 | [下载](https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866) |\n| 战争的面目 | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866) |\n| 唐德刚作品集 | 唐德刚 | [下载](https://url89.ctfile.com/f/31084289-1357024786-a5d2dd?p=8866) |\n| 晋的王朝 | 旧时艳阳 | [下载](https://url89.ctfile.com/f/31084289-1357024702-5db725?p=8866) |\n| 十二幅地图中的世界史 | 杰里・布罗顿 | [下载](https://url89.ctfile.com/f/31084289-1357024693-19bb78?p=8866) |\n| 大英帝国的崛起与衰落 | 劳伦斯・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357024621-eefeab?p=8866) |\n| 中央帝国的哲学密码 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866) |\n| 拉丁美洲被切开的血管 | 爱德华多・加莱亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357024495-ad2eac?p=8866) |\n| 日本维新史 | 赫伯特・诺曼 | [下载](https://url89.ctfile.com/f/31084289-1357024477-aaca5d?p=8866) |\n| 海洋与文明 | 林肯・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866) |\n| 文明的故事（全11卷） | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866) |\n| 宋徽宗 | 伊沛霞 | [下载](https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866) |\n| 日不落帝国兴衰史（全五册） | 约翰・布莱尔等 | [下载](https://url89.ctfile.com/f/31084289-1357024240-d3762e?p=8866) |\n| 明史不忍细看 | 张朝山 | [下载](https://url89.ctfile.com/f/31084289-1357023964-23b953?p=8866) |\n| 大唐兴亡三百年 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357023952-0cff73?p=8866) |\n| 美国创世记：埃利斯建国史系列（套装共4册） | 约瑟夫·J.埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866) |\n| 帝国的凛冬 | 冬雪心境 | [下载](https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866) |\n| 希腊人的故事（全三册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357023988-a42df2?p=8866) |\n| 欧洲中世纪三部曲+燃烧的远征（套装共4册） | 拉尔斯・布朗沃思 | [下载](https://url89.ctfile.com/f/31084289-1357023808-852d17?p=8866) |\n| 中苏关系史纲（增订版） | 沈志华等 | [下载](https://url89.ctfile.com/f/31084289-1357023796-f14eb6?p=8866) |\n| 给大家看的日本通史 | 陈恭禄 | [下载](https://url89.ctfile.com/f/31084289-1357023811-262c8c?p=8866) |\n| 泰国通史 | 段立生 | [下载](https://url89.ctfile.com/f/31084289-1357023805-06bd3d?p=8866) |\n| 给大家看的印度通史 | 陈恭禄 | [下载](https://url89.ctfile.com/f/31084289-1357023724-9ae83b?p=8866) |\n| 克里米亚战争 | 奥兰多・费吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357023688-1a0b47?p=8866) |\n| 回访历史 | 伊娃・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357023670-9aac87?p=8866) |\n| 奥斯曼帝国六百年 | 帕特里克・贝尔福 | [下载](https://url89.ctfile.com/f/31084289-1357023592-246a21?p=8866) |\n| 皇帝腓特烈二世的故事（全2册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357023466-0fbdd9?p=8866) |\n| 阿尔比恩的种子 | 大卫・哈克特・费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866) |\n| 铁血蒙元 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866) |\n| 大宋革新 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023322-d132ff?p=8866) |\n| 王安石变法 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023325-383dbd?p=8866) |\n| 风流南宋 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866) |\n| 明清之际士大夫研究 | 赵园 | [下载](https://url89.ctfile.com/f/31084289-1357023301-4261b5?p=8866) |\n| 牛史·晚清篇 | 谭伯牛 | [下载](https://url89.ctfile.com/f/31084289-1357023268-c4b7c6?p=8866) |\n| 自由之魂 | 刘台平 | [下载](https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866) |\n| 极简二战史 | 奈杰尔・考索恩 | [下载](https://url89.ctfile.com/f/31084289-1357023217-136ca3?p=8866) |\n| 乾隆皇帝的荷包 | 赖惠敏 | [下载](https://url89.ctfile.com/f/31084289-1357023247-014af6?p=8866) |\n| Jerusalem | Simon Sebag Montefiore | [下载](https://url89.ctfile.com/f/31084289-1357023058-302eaa?p=8866) |\n| 中国通史 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866) |\n| 飞跃5000年 | 克里昂・斯考森 | [下载](https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866) |\n| 生活与命运 | 瓦西里・格罗斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357022971-fe6010?p=8866) |\n| 领袖：一项心理史学研究 | 查尔斯・B．斯特罗齐尔/丹尼尔・奥弗 | [下载](https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866) |\n| 解放战争（套装共6册） | 刘统等 | [下载](https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866) |\n| 缔造和平：1919巴黎和会及其开启的战后世界 | 玛格丽特・麦克米伦 | [下载](https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866) |\n| 峰会：影响20世纪的六场元首会谈 | 戴维・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866) |\n| 苏格兰女王的悲剧 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866) |\n| 辛亥：计划外革命 | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866) |\n| 掌故（第一集） | 徐俊 | [下载](https://url89.ctfile.com/f/31084289-1357022830-3ddcad?p=8866) |\n| 掌故（第二集） | 徐俊 | [下载](https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866) |\n| 被误诊的艺术史 | 董悠悠 | [下载](https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866) |\n| 全译罗马帝国衰亡史（全12册） | 爱德华・吉本 | [下载](https://url89.ctfile.com/f/31084289-1357022686-8c5d14?p=8866) |\n| 剑桥美国史 | 苏珊・玛丽・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357022683-97bf54?p=8866) |\n| 剑桥意大利史 | 克里斯托弗・达根 | [下载](https://url89.ctfile.com/f/31084289-1357022665-152e48?p=8866) |\n| 品人录 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866) |\n| 读城记 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022617-f7baf2?p=8866) |\n| 中国的男人和女人 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022629-7a5047?p=8866) |\n| 闲话中国人 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022614-e2ccf9?p=8866) |\n| 雅尔塔：改变世界格局的八天 | 沙希利・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1357022569-a065df?p=8866) |\n| 邻人 | 杨·T.格罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357022545-465fc9?p=8866) |\n| 中国近代史：1840-1937 | 蒋廷黻 | [下载](https://url89.ctfile.com/f/31084289-1357022515-8c554f?p=8866) |\n| 英国史（全3卷） | 西蒙・沙玛 | [下载](https://url89.ctfile.com/f/31084289-1357022530-d45c41?p=8866) |\n| 剑桥德国史 | 玛丽・富布卢克 | [下载](https://url89.ctfile.com/f/31084289-1357022479-9288ae?p=8866) |\n| 五朝宰相 | 姜狼 | [下载](https://url89.ctfile.com/f/31084289-1357022383-05455f?p=8866) |\n| 庄子传 | 张远山 | [下载](https://url89.ctfile.com/f/31084289-1357022350-a02974?p=8866) |\n| 易中天品读中国（套装共6册） | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866) |\n| 资本之都 | 拉纳・达斯古普塔 | [下载](https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866) |\n| 1943：中国在十字路口 | 周锡瑞/李皓天 | [下载](https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866) |\n| 八月炮火 | 巴巴拉・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357022260-f72b1c?p=8866) |\n| Short Nights of the Shadow Catcher | Egan, Timothy | [下载](https://url89.ctfile.com/f/31084289-1357022299-6675d1?p=8866) |\n| Genghis Khan and the Making of the Modern World | Jack Weatherford | [下载](https://url89.ctfile.com/f/31084289-1357022176-fe3719?p=8866) |\n| 铁道之旅 | 沃尔夫冈・希弗尔布施 | [下载](https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866) |\n| 三国全史 | 南门太守 | [下载](https://url89.ctfile.com/f/31084289-1357022050-eeaf02?p=8866) |\n| 暗逻辑 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357021993-ee1b86?p=8866) |\n| 国家的启蒙 | 马国川 | [下载](https://url89.ctfile.com/f/31084289-1357021972-56b623?p=8866) |\n| 发现东亚 | 宋念申 | [下载](https://url89.ctfile.com/f/31084289-1357021969-acc1f3?p=8866) |\n| 唐朝那些事儿（套装共7册） | 冬雪心境 | [下载](https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866) |\n| 耶路撒冷告白 | 利皮卡・佩拉汉 | [下载](https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866) |\n| 亚裔美国的创生 | 李漪莲 | [下载](https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866) |\n| 德国人的战争 | 尼古拉斯・斯塔加特 | [下载](https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866) |\n| 百年战争简史 | 德斯蒙德・苏厄德 | [下载](https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866) |\n| 幻影恐惧 | 亚当・查莫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357021573-27153d?p=8866) |\n| 秦朝那些事儿（共3册） | 昊天牧云 | [下载](https://url89.ctfile.com/f/31084289-1357021549-2b4b61?p=8866) |\n| 全球帝国史 | 约翰・达尔文 | [下载](https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866) |\n| 思享家丛书（套装共4册） | 周濂等 | [下载](https://url89.ctfile.com/f/31084289-1357021486-85c08f?p=8866) |\n| 资本主义简史 | 于尔根・科卡 | [下载](https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866) |\n| 古拉格之恋 | 奥兰多・费吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357021333-798278?p=8866) |\n| 档案：一部个人史 | 蒂莫西・加顿艾什 | [下载](https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866) |\n| 教宗与墨索里尼 | 大卫·I.科泽 | [下载](https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866) |\n| 遗失的姆大陆之谜 | 詹姆斯・乔治瓦特 | [下载](https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866) |\n| 20世纪简史 | 杰弗里・布莱内 | [下载](https://url89.ctfile.com/f/31084289-1357021225-d87722?p=8866) |\n| 《伦敦新闻画报》记录的民国1926-1949（套装4册） | 沈弘 | [下载](https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866) |\n| 法国《小日报》记录的晚清（1891-1911） | 李红利/赵丽莎 | [下载](https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866) |\n| 法国彩色画报记录的中国1850-1937（套装共2册） | 赵省伟/李小玉 | [下载](https://url89.ctfile.com/f/31084289-1357021246-0c8518?p=8866) |\n| 明治天皇：1852-1912 | 唐纳德・基恩 | [下载](https://url89.ctfile.com/f/31084289-1357021156-b23e9c?p=8866) |\n| 南北战争三百年 | 李硕 | [下载](https://url89.ctfile.com/f/31084289-1357021018-29e73a?p=8866) |\n| 崇祯大传奇（全三册） | 晏青 | [下载](https://url89.ctfile.com/f/31084289-1357020979-10eee9?p=8866) |\n| 中国国民性演变历程 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357020961-2b4f8d?p=8866) |\n| 半小时漫画中国史3 | 二混子 | [下载](https://url89.ctfile.com/f/31084289-1357021012-b2a5b1?p=8866) |\n| 市民底层笔记 | 张礼士 | [下载](https://url89.ctfile.com/f/31084289-1357020877-80c338?p=8866) |\n| 五个人的战争 | 马克・哈里斯 | [下载](https://url89.ctfile.com/f/31084289-1357020868-e951f3?p=8866) |\n| 大清棋局：明亡清兴卷 | 刘澍 | [下载](https://url89.ctfile.com/f/31084289-1357020847-19ba79?p=8866) |\n| 狄更斯讲英国史（全彩图文版） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357020844-2bcd58?p=8866) |\n| 刻画战勋 | 马雅贞 | [下载](https://url89.ctfile.com/f/31084289-1357020811-235335?p=8866) |\n| 中国改革史系列（共三册） | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357020823-e86ce2?p=8866) |\n| 战国日本I：时间的滋味 | 茂吕美耶 | [下载](https://url89.ctfile.com/f/31084289-1357020751-1178c2?p=8866) |\n| 战国日本II：败者的美学 | 茂吕美耶 | [下载](https://url89.ctfile.com/f/31084289-1357020739-6cce59?p=8866) |\n| 大唐这二百九十年1：贞观之路 | 吃青菜的蜗牛 | [下载](链接未找到) |\n| 大唐这二百九十年2：天皇天后 | 吃青菜的蜗牛 | [下载](链接未找到) |\n| 儒林外史 | 吴敬梓 | [下载](https://url89.ctfile.com/f/31084289-1357020583-080d65?p=8866) |\n| 告别霸权! | 蒙・赖克/理查德・内德・勒博  | [下载](https://url89.ctfile.com/f/31084289-1357020550-3cfb43?p=8866) |\n| 迷信与暴力 | 亨利・查尔斯・李 | [下载](https://url89.ctfile.com/f/31084289-1357020472-3eaa48?p=8866) |\n| 西班牙内战：真相、疯狂与死亡 | 阿曼达・维尔 | [下载](https://url89.ctfile.com/f/31084289-1357020454-d9c2eb?p=8866) |\n| 法政纠结 | 杨天宏 | [下载](https://url89.ctfile.com/f/31084289-1357020388-cbd634?p=8866) |\n| 丑的历史 | 翁贝托・艾柯 | [下载](https://url89.ctfile.com/f/31084289-1357020424-b520de?p=8866) |\n| 清朝野史大观（全三册） | 小横香室主人 | [下载](https://url89.ctfile.com/f/31084289-1357020262-2939f2?p=8866) |\n| 谁在世界的中央 | 梁二平 | [下载](https://url89.ctfile.com/f/31084289-1357020298-7a1189?p=8866) |\n| 看懂世界格局的第一本书：大国博弈 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357020181-db0efd?p=8866) |\n| 看懂世界格局的第一本书：大国之略 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357020175-352ae5?p=8866) |\n| 世界历史上的蒙古征服 | 梅天穆 | [下载](https://url89.ctfile.com/f/31084289-1357020139-2566c0?p=8866) |\n| 我身在历史何处 | 埃米尔・库斯图里卡 | [下载](https://url89.ctfile.com/f/31084289-1357019992-bd477d?p=8866) |\n| 半小时漫画中国史2 | 二混子 | [下载](https://url89.ctfile.com/f/31084289-1357020037-5762be?p=8866) |\n| 地中海的衰落 | 布雷斯特德 | [下载](https://url89.ctfile.com/f/31084289-1357020049-1f86d7?p=8866) |\n| 英国人：国家的形成1707-1832 | 琳达・科利 | [下载](https://url89.ctfile.com/f/31084289-1357019965-6c0b00?p=8866) |\n| 权力之路：林登·约翰逊传 | 罗伯特・A.卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866) |\n| 困顿与突围 | 田文林 | [下载](https://url89.ctfile.com/f/31084289-1357019911-f7637f?p=8866) |\n| 历史上的南京之战（套装共2册） | 王洪光  | [下载](https://url89.ctfile.com/f/31084289-1357019944-5497a4?p=8866) |\n| 历史的进退 | 雷颐 | [下载](https://url89.ctfile.com/f/31084289-1357019887-1a680f?p=8866) |\n| 历史的裂缝 | 雷颐 | [下载](https://url89.ctfile.com/f/31084289-1357019896-3e4312?p=8866) |\n| 谁丢了美国 | 安德鲁・杰克逊・奥肖内西 | [下载](https://url89.ctfile.com/f/31084289-1357019956-8834da?p=8866) |\n| 日本占领天津时期罪行实录 | 郭登浩等 | [下载](https://url89.ctfile.com/f/31084289-1357019794-08091e?p=8866) |\n| 印度，漂浮的次大陆 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866) |\n| 帝国的背影系列（套装共3册） | 诺曼・斯通等 | [下载](https://url89.ctfile.com/f/31084289-1357019785-2a75d6?p=8866) |\n| 中国近百年政治史 | 李剑农 | [下载](https://url89.ctfile.com/f/31084289-1357019722-b2f37a?p=8866) |\n| 张作霖大传 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357019716-3c1ec2?p=8866) |\n| 不可不知的非洲史 | 杨益 | [下载](https://url89.ctfile.com/f/31084289-1357019659-a63c03?p=8866) |\n| 不可不知的朝韩史 | 杨益 | [下载](https://url89.ctfile.com/f/31084289-1357019653-a807c8?p=8866) |\n| 乾隆帝及其时代 | 戴逸 | [下载](https://url89.ctfile.com/f/31084289-1357019704-d2dce7?p=8866) |\n| 莫斯科战役1941 | 尼克拉斯・泽特林 | [下载](https://url89.ctfile.com/f/31084289-1357019668-09e230?p=8866) |\n| 《人权宣言》在晚清中国的旅行 | 程梦婧 | [下载](https://url89.ctfile.com/f/31084289-1357019650-a84eeb?p=8866) |\n| 国宝四川：纪念汶川地震十周年 | 《华夏地理》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357019644-61d102?p=8866) |\n| 思想史：从火到弗洛伊德（全二册） | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866) |\n| 欧洲文明史精品系列（套装共8册） | 阿曼达・维尔等 | [下载](https://url89.ctfile.com/f/31084289-1357019635-e4c4dd?p=8866) |\n| 欧洲现代史：从文艺复兴到现在（套装共2册） | 约翰・梅里曼 | [下载](https://url89.ctfile.com/f/31084289-1357019770-f8308f?p=8866) |\n| 波斯战火 | 汤姆・霍兰 | [下载](https://url89.ctfile.com/f/31084289-1357019572-97e2b4?p=8866) |\n| 博物馆窜行记 | 顺手牵猴 | [下载](https://url89.ctfile.com/f/31084289-1357019548-8a4e08?p=8866) |\n| 大顺帝李自成 | 李健侯 | [下载](https://url89.ctfile.com/f/31084289-1357019515-8b0c3f?p=8866) |\n| 简明历史读本系列（套装共6册） | 牟钟鉴等 | [下载](https://url89.ctfile.com/f/31084289-1357019554-4d41ba?p=8866) |\n| 澳门史1557-1999 | 杰弗里・冈恩 | [下载](https://url89.ctfile.com/f/31084289-1357019521-94c448?p=8866) |\n| 大国命运（套装共3册） | 席勒/基佐/米涅 | [下载](https://url89.ctfile.com/f/31084289-1357019497-15bf57?p=8866) |\n| 简明大历史 | 伊恩・克夫顿/杰里米・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1357019500-4367ef?p=8866) |\n| 后三国战争史 | 陈峰韬 | [下载](https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866) |\n| 审问欧洲：二战时期的合作、抵抗与报复 | 伊斯特万・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866) |\n| 娜塔莎之舞：俄罗斯文化史 | 奥兰多・费吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357019431-5c55a7?p=8866) |\n| 世界的演变：19世纪史（全3册） | 于尔根・奥斯特哈默 | [下载](https://url89.ctfile.com/f/31084289-1357019389-c4eb1e?p=8866) |\n| 中国的内战 | 胡素珊 | [下载](https://url89.ctfile.com/f/31084289-1357019377-b3f66d?p=8866) |\n| 一个更安全的地方 | 希拉里・曼特尔 | [下载](https://url89.ctfile.com/f/31084289-1357019380-bb365e?p=8866) |\n| 武则天5：从三岁到八十二岁 | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357019326-871ffb?p=8866) |\n| 亚洲史概说 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357019314-bb4568?p=8866) |\n| 1913，一战前的世界 | 查尔斯・埃默森 | [下载](https://url89.ctfile.com/f/31084289-1357019293-a852b8?p=8866) |\n| 半小时漫画世界史 | 二混子 | [下载](https://url89.ctfile.com/f/31084289-1357019335-523960?p=8866) |\n| 金融可以颠覆历史 | 王巍 | [下载](https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866) |\n| 巨人的对决：日德兰海战中的主力舰 | 张宇翔 | [下载](https://url89.ctfile.com/f/31084289-1357019386-bcedf2?p=8866) |\n| 历史的教训 | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357019254-d01ce4?p=8866) |\n| 沉重的皇冠 | 克里斯托弗・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866) |\n| 繁荣的代价 | 托德·G·布赫霍尔茨  | [下载](https://url89.ctfile.com/f/31084289-1357019242-46e661?p=8866) |\n| 分裂的王国 | 丹・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357019212-e7ca0b?p=8866) |\n| 罗马：一座城市的兴衰史 | 克里斯托弗・希伯特 | [下载](https://url89.ctfile.com/f/31084289-1357019185-aa4682?p=8866) |\n| 美国建国史系列（套装全3册） | 约瑟夫・埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357019095-53ad54?p=8866) |\n| 金与铁：俾斯麦、布莱希罗德与德意志帝国的建立 | 弗里茨・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1357019062-89d9da?p=8866) |\n| 历史中国书系（全九册） | 姜狼/醉罢君山 | [下载](https://url89.ctfile.com/f/31084289-1357018999-2e7771?p=8866) |\n| 阿姆斯特丹梵高博物馆 | 保拉・拉佩里 | [下载](https://url89.ctfile.com/f/31084289-1357018915-b0ed02?p=8866) |\n| 柏林画廊 | 威廉・德罗・鲁索 | [下载](https://url89.ctfile.com/f/31084289-1357018807-775ac1?p=8866) |\n| 帝国落日：晚清大变局 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357018723-5c346e?p=8866) |\n| 创造日本：1853-1964 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1357018555-7b50e1?p=8866) |\n| 事实即颠覆：无以名之的十年的政治写作 | 蒂莫西・加顿艾什 | [下载](https://url89.ctfile.com/f/31084289-1357018540-08e8a0?p=8866) |\n| 新视角全球简史套装（三册） | 莉奥妮・希克斯等 | [下载](https://url89.ctfile.com/f/31084289-1357018528-cc4d08?p=8866) |\n| 活着回来的男人 | 小熊英二 | [下载](https://url89.ctfile.com/f/31084289-1357018474-680890?p=8866) |\n| 藏在地理中的历史学（共3册） | 林肯・佩恩等 | [下载](https://url89.ctfile.com/f/31084289-1357018519-e91091?p=8866) |\n| 征服者：葡萄牙帝国崛起 | 罗杰・克劳利 | [下载](https://url89.ctfile.com/f/31084289-1357018390-117462?p=8866) |\n| 西南联大行思录 | 张曼菱 | [下载](https://url89.ctfile.com/f/31084289-1357018297-9bd135?p=8866) |\n| 乌鸦之城：伦敦，伦敦塔与乌鸦的故事 | 博里亚・萨克斯 | [下载](https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866) |\n| 资治通鉴直解 | 张居正整理 | [下载](https://url89.ctfile.com/f/31084289-1357018210-d1a502?p=8866) |\n| 世界历史文化丛书（精选15册） | 王海利等 | [下载](https://url89.ctfile.com/f/31084289-1357019155-dbc0f5?p=8866) |\n| 纸年轮：民国以来百年中国私人读本 | 张冠生 | [下载](https://url89.ctfile.com/f/31084289-1357017922-775184?p=8866) |\n| 中国历代政治得失 | 钱穆 | [下载](https://url89.ctfile.com/f/31084289-1357017871-5874f6?p=8866) |\n| 火堆上的晚清帝国 | 刘大木 | [下载](https://url89.ctfile.com/f/31084289-1357017859-df5ae7?p=8866) |\n| 西方的兴起 | 威廉・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357017958-a45d43?p=8866) |\n| 鬼谷子的局：战国纵横（1-11册套装） | 寒川子 | [下载](https://url89.ctfile.com/f/31084289-1357017850-088a8c?p=8866) |\n| 历史的温度2 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357017880-5bd0da?p=8866) |\n| The Sea Wolves | Lars Brownworth | [下载](https://url89.ctfile.com/f/31084289-1357017679-c5a00a?p=8866) |\n| 不情愿的大师 | 斯蒂芬・葛霖 | [下载](https://url89.ctfile.com/f/31084289-1357017631-5dd734?p=8866) |\n| 枢纽：3000年的中国 | 施展 | [下载](https://url89.ctfile.com/f/31084289-1357017586-220883?p=8866) |\n| 白话史记 | 杨燕起 | [下载](https://url89.ctfile.com/f/31084289-1357017562-312941?p=8866) |\n| 布局天下：中国古代军事地理大势 | 饶胜文 | [下载](https://url89.ctfile.com/f/31084289-1357017508-118f05?p=8866) |\n| 赵匡胤：乱世枭雄开启文治盛世 | 陈红晓 | [下载](https://url89.ctfile.com/f/31084289-1357017484-9dba70?p=8866) |\n| 刘邦：汉民族文化的伟大开拓者 | 洪亮亮 | [下载](https://url89.ctfile.com/f/31084289-1357017478-cb43ff?p=8866) |\n| 大历史，小世界 | 辛西娅・斯托克斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866) |\n| 国王的两个身体 | 恩斯特・康托洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866) |\n| 晚明民变 | 李文治 | [下载](https://url89.ctfile.com/f/31084289-1357017412-226b45?p=8866) |\n| 世界秩序 | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357017367-b1f56a?p=8866) |\n| 人类智慧小史 | 特雷弗・科诺 | [下载](https://url89.ctfile.com/f/31084289-1357017340-a7f51c?p=8866) |\n| 蹉跎坡旧事 | 沈博爱 | [下载](https://url89.ctfile.com/f/31084289-1357017268-d0dff9?p=8866) |\n| 康熙盛世与帝王心术 | 姚念慈 | [下载](https://url89.ctfile.com/f/31084289-1357017247-df3930?p=8866) |\n| 全球通史：1500年以前的世界 | 斯塔夫里阿诺斯  | [下载](https://url89.ctfile.com/f/31084289-1357017238-a96be6?p=8866) |\n| 全球通史：1500年以后的世界 | 斯塔夫里阿诺斯  | [下载](https://url89.ctfile.com/f/31084289-1357017241-7f501e?p=8866) |\n| 左宗棠：帝国最后的“鹰派” | 徐志频 | [下载](https://url89.ctfile.com/f/31084289-1357017196-e60417?p=8866) |\n| 为你，耶路撒冷 | 拉莱・科林斯等 | [下载](https://url89.ctfile.com/f/31084289-1357017211-3712a8?p=8866) |\n| 古希腊罗马奴隶制 | 威斯特曼 | [下载](https://url89.ctfile.com/f/31084289-1357017136-eb5c79?p=8866) |\n| 古代的希腊和罗马 | 吴于廑 | [下载](https://url89.ctfile.com/f/31084289-1357017154-8d701b?p=8866) |\n| 战争魔术师 | 大卫・费希尔 | [下载](https://url89.ctfile.com/f/31084289-1357017109-9a5083?p=8866) |\n| 道林·格雷的画像 | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866) |\n| 无敌舰队 | 加勒特・马丁利 | [下载](https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866) |\n| 踉跄：晚清以来中国人的梦想与超越 | 李安义 | [下载](https://url89.ctfile.com/f/31084289-1357016995-d375d7?p=8866) |\n| 黄河青山：黄仁宇回忆录 | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357016971-0cdd42?p=8866) |\n| 对于历史，科学家有话说 | 熊卫民 | [下载](https://url89.ctfile.com/f/31084289-1357016641-473197?p=8866) |\n| 大清风云（全8册） | 鹿鼎公子 | [下载](https://url89.ctfile.com/f/31084289-1357016614-3ffe45?p=8866) |\n| 从黎明到衰落（上下册） | 雅克・巴尔赞 | [下载](https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866) |\n| 现代日本史：从德川时代到21世纪 | 安德鲁・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357016578-431c10?p=8866) |\n| Q版大明衣冠图志 | 撷芳主人 | [下载](https://url89.ctfile.com/f/31084289-1357016557-4c2cd9?p=8866) |\n| 中国时代（全二册） | 师永刚 | [下载](https://url89.ctfile.com/f/31084289-1357016368-b309d0?p=8866) |\n| 换个角度读历史（套装共3册） | 大卫・克里斯蒂安等 | [下载](https://url89.ctfile.com/f/31084289-1357016593-cb129e?p=8866) |\n| 大历史 | 大卫・克里斯蒂安等 | [下载](https://url89.ctfile.com/f/31084289-1357016224-d086d6?p=8866) |\n| 耶路撒冷三千年 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866) |\n| 三国那些人那些事（套装5册） | 陈瓷 | [下载](https://url89.ctfile.com/f/31084289-1357016065-19e132?p=8866) |\n| 天崩地裂三百年（上） | 覃仕勇 | [下载](https://url89.ctfile.com/f/31084289-1357016053-8fc9ae?p=8866) |\n| 天朝 洋奴 万邦协和 | 傅斯年 | [下载](https://url89.ctfile.com/f/31084289-1357016029-7caad2?p=8866) |\n| 左宗棠收新疆 | 汪衍振/谷占江/陈树照  | [下载](https://url89.ctfile.com/f/31084289-1357015969-cc27c5?p=8866) |\n| 宛如梦幻三部曲 | 赤军 | [下载](https://url89.ctfile.com/f/31084289-1357015837-99af8c?p=8866) |\n| 以色列：一个国家的诞生（1-3 合辑） | 十一点半 | [下载](https://url89.ctfile.com/f/31084289-1357015771-29d4ce?p=8866) |\n| 抗战时代生活史 | 陈存仁 | [下载](https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866) |\n| 美国人在巴黎 | 大卫・麦卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357015738-b4c6cb?p=8866) |\n| 李鸿章（全三册） | 张鸿福 | [下载](https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866) |\n| 血性军人：百年中国战争亲历纪（共13册） | 全国政协文史和学习委员会 | [下载](https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866) |\n| 镜子：照出你看不见的世界史 | 爱德华多・加莱亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357015687-56df1e?p=8866) |\n| 哈佛极简中国史 | 阿尔伯特・克雷格 | [下载](https://url89.ctfile.com/f/31084289-1357015678-11afee?p=8866) |\n| 人类砍头小史 | 弗朗西斯・拉尔森 | [下载](https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866) |\n| BBC世界史 | 安德鲁・玛尔 | [下载](https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866) |\n| 艾希曼在耶路撒冷 | 汉娜・阿伦特 | [下载](https://url89.ctfile.com/f/31084289-1357015621-ee315c?p=8866) |\n| 西方政治传统：近代自由主义之发展 | 弗雷德里克・沃特金斯 | [下载](https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866) |\n| 嗜血的皇冠 | 曹昇 | [下载](https://url89.ctfile.com/f/31084289-1357015423-efdf72?p=8866) |\n| 嗜血的皇冠（大结局） | 曹昇 | [下载](https://url89.ctfile.com/f/31084289-1357015420-ffc62a?p=8866) |\n| 中国原生文明启示录 | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866) |\n| 协和医事 | 常青 | [下载](https://url89.ctfile.com/f/31084289-1357015390-324e8b?p=8866) |\n| 浩瀚大洋是赌场（全3册） | 俞天任 | [下载](https://url89.ctfile.com/f/31084289-1357015387-cec59e?p=8866) |\n| 旧山河 | 刀尔登 | [下载](https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866) |\n| 世界佛教通史（套装共14卷） | 周贵华等 | [下载](https://url89.ctfile.com/f/31084289-1357015327-e5c39a?p=8866) |\n| 第二次世界大战纵横录（套装二十四册） | 胡元斌  | [下载](https://url89.ctfile.com/f/31084289-1357015495-8bfeee?p=8866) |\n| 天国之秋 | 裴士锋 | [下载](https://url89.ctfile.com/f/31084289-1357015171-03bda3?p=8866) |\n| 中国兵史 | 雷海宗 | [下载](https://url89.ctfile.com/f/31084289-1357015135-b850e8?p=8866) |\n| 人性中的善良天使 | 斯蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357015102-e9b4b4?p=8866) |\n| 历史的温度 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357014925-4b543e?p=8866) |\n| 曾国藩：唐浩明钦定版 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357014871-07622b?p=8866) |\n| 共和十年（套装共2册） | 郑曦原 | [下载](https://url89.ctfile.com/f/31084289-1357014727-5ab666?p=8866) |\n| 太平天国兴亡录 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357014724-33612e?p=8866) |\n| 华杉讲透孙子兵法 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357014508-c3e54a?p=8866) |\n| 牲人祭 | 皮埃尔・比恩鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357014478-2f2e77?p=8866) |\n| 危险的边疆：游牧帝国与中国 | 巴菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357014373-aa3442?p=8866) |\n| 一口气读完中国战史 | 顾晓绿 | [下载](https://url89.ctfile.com/f/31084289-1357014607-058cae?p=8866) |\n| 秦谜：重新发现秦始皇 | 李开元 | [下载](https://url89.ctfile.com/f/31084289-1357014271-174e75?p=8866) |\n| 美国种族简史 | 托马斯・索威尔 | [下载](https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866) |\n| 耶鲁小历史系列（全三册） | 詹姆斯・韦斯特・戴维森等 | [下载](https://url89.ctfile.com/f/31084289-1357014289-4430ac?p=8866) |\n| 汉武帝：皇权的逻辑 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357014190-bfcfcc?p=8866) |\n| 染血的王冠：不列颠王权和战争史 | 赵恺 | [下载](https://url89.ctfile.com/f/31084289-1357014103-2b0300?p=8866) |\n| 潮来潮去：海关与中国现代性的全球起源 | 方德万 | [下载](https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866) |\n| 陈寅恪与傅斯年（全新修订版） | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357014088-be1d2c?p=8866) |\n| 项羽与刘邦 | 司马辽太郎 | [下载](https://url89.ctfile.com/f/31084289-1357013890-575f7a?p=8866) |\n| 丰臣家族 | 司马辽太郎 | [下载](https://url89.ctfile.com/f/31084289-1357013884-5d831d?p=8866) |\n| 坂本龙马 | 司马辽太郎 | [下载](https://url89.ctfile.com/f/31084289-1357013887-36253b?p=8866) |\n| 西方建筑小史 | 陈杰 | [下载](https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866) |\n| 西部王国传奇（套装共5册） | 贾陈亮/王东等 | [下载](https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866) |\n| 日本历史小说巨匠司马辽太郎经典作品集（套装共9册） | 司马辽太郎 | [下载](https://url89.ctfile.com/f/31084289-1357013818-6d50c1?p=8866) |\n| 帝国定型：美国的1890～1900 | 徐弃郁 | [下载](https://url89.ctfile.com/f/31084289-1357013650-529c52?p=8866) |\n| 崩塌的世界 | 梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357013923-111e75?p=8866) |\n| 帝国的背影（套装共2册） | 彼得・贾德森/诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1357013590-8235a7?p=8866) |\n| 金瓯缺（套装共4册） | 徐兴业 | [下载](https://url89.ctfile.com/f/31084289-1357013482-34f9d3?p=8866) |\n| 大博弈：英俄帝国争霸战 | 彼得・霍普柯克 | [下载](https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866) |\n| 红星照耀中国 | 埃德加・斯诺 | [下载](https://url89.ctfile.com/f/31084289-1357013473-b5c7fd?p=8866) |\n| 亚历山大三部曲 | 玛丽・瑞瑙特 | [下载](https://url89.ctfile.com/f/31084289-1357013446-8bd673?p=8866) |\n| 北洋觉梦录：袁世凯 | 禅心初 | [下载](https://url89.ctfile.com/f/31084289-1357013425-886951?p=8866) |\n| 广州贸易 | 范岱克 | [下载](https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866) |\n| 中央帝国的财政密码 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866) |\n| 现代世界史（插图第10版） | 帕尔默/乔・科尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357013437-274a1b?p=8866) |\n| 武则天：从三岁到八十二岁 | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357013191-9d7f86?p=8866) |\n| 武则天2：从三岁到八十二岁 | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357013188-c49746?p=8866) |\n| 武则天3：从三岁到八十二岁 | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357013185-a0743f?p=8866) |\n| 武则天4：从三岁到八十二岁 | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357013176-abfc15?p=8866) |\n| 1493：物种大交换开创的世界史 | 查尔斯・曼恩 | [下载](https://url89.ctfile.com/f/31084289-1357013140-55487b?p=8866) |\n| 战后日本史 | 王新生 | [下载](https://url89.ctfile.com/f/31084289-1357013008-9417f2?p=8866) |\n| 重读甲午：中日国运大对决 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357012939-c8481b?p=8866) |\n| 生而有罪 | 彼得・西施罗夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357012927-e5aba8?p=8866) |\n| 中日恩怨两千年大合集（共4册） | 樱雪丸 | [下载](https://url89.ctfile.com/f/31084289-1357012915-5b2e9a?p=8866) |\n| 中国皇帝的五种命运 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357012906-52df36?p=8866) |\n| 中国历代王朝系列全集（全28册） | 王新龙 | [下载](https://url89.ctfile.com/f/31084289-1357012909-fac22e?p=8866) |\n| 中华民国史（16册套装） | 李新 | [下载](https://url89.ctfile.com/f/31084289-1357012918-26053f?p=8866) |\n| 中信经典历史之世界史篇（共6册） | 大卫・克里斯蒂安/伊恩・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357012936-2633d0?p=8866) |\n| 中信经典历史之中国史篇（共5册） | 杨早/马勇等 | [下载](https://url89.ctfile.com/f/31084289-1357012885-c4bcf4?p=8866) |\n| 黑暗时刻：希特勒、大屠杀与纳粹文化（上下册） | 单世联 | [下载](https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866) |\n| 焚书之书 | 福尔克尔・魏德曼 | [下载](https://url89.ctfile.com/f/31084289-1357012615-56e5ad?p=8866) |\n| 老北京杂吧地 | 岳永逸 | [下载](https://url89.ctfile.com/f/31084289-1357012531-6c54c3?p=8866) |\n| 被淹没和被拯救的 | 普里莫・莱维  | [下载](https://url89.ctfile.com/f/31084289-1357012249-55fbc8?p=8866) |\n| 暗杀局 | 曲飞 | [下载](https://url89.ctfile.com/f/31084289-1357012123-162f93?p=8866) |\n| 远去的胜利 | 威廉・理查德森/西摩・弗雷德林  | [下载](https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866) |\n| 战争简史（套装共2册） | 诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1357012003-13f38f?p=8866) |\n| 金雀花王朝 | 丹・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866) |\n| 白银帝国 | 徐瑾 | [下载](https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866) |\n| 高铁风云录 | 高铁见闻 | [下载](https://url89.ctfile.com/f/31084289-1357011880-d18366?p=8866) |\n| 复活的日本财阀 | 陈霞 | [下载](https://url89.ctfile.com/f/31084289-1357011748-a353c5?p=8866) |\n| 大英帝国的崩溃与美国的诞生 | 尼克・邦克 | [下载](https://url89.ctfile.com/f/31084289-1357011766-64bb06?p=8866) |\n| 剑桥中国史（套装全11卷） | 费正清/崔瑞德 | [下载](https://url89.ctfile.com/f/31084289-1357011967-9e4705?p=8866) |\n| 欧洲的陨落 | 马克思・加罗 | [下载](https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866) |\n| 吕思勉经典作品合集（全14册） | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357012045-6418c3?p=8866) |\n| 庚子西狩丛谈 | 吴永 | [下载](https://url89.ctfile.com/f/31084289-1357011625-b93e35?p=8866) |\n| 东京梦华录 | 孟元老 | [下载](https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866) |\n| 德意志之魂 | 特亚・多恩/里夏德・瓦格纳 | [下载](https://url89.ctfile.com/f/31084289-1357011616-7a3f09?p=8866) |\n| 暮日耀光：张居正与明代中后期政局 | 韦庆远 | [下载](https://url89.ctfile.com/f/31084289-1357011595-bc04e1?p=8866) |\n| 台湾这些年所知道的祖国 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866) |\n| 我在大清官场30年 | 黄云凯 | [下载](https://url89.ctfile.com/f/31084289-1357011568-9f64c1?p=8866) |\n| 西洋世界军事史（全三卷） | 富勒 | [下载](https://url89.ctfile.com/f/31084289-1357011562-ee7a99?p=8866) |\n| 中国是部金融史 | 陈雨露 | [下载](https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866) |\n| 中国是部金融史2 | 陈雨露 | [下载](https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866) |\n| 敦刻尔克 | 沃尔特・劳德 | [下载](https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866) |\n| 1491年：前哥伦布时代美洲启示录 | 查尔斯・曼恩是 | [下载](https://url89.ctfile.com/f/31084289-1357011508-3f67fb?p=8866) |\n| 德国的浩劫 | 弗里德里希・迈内克 | [下载](https://url89.ctfile.com/f/31084289-1357011484-6c4d96?p=8866) |\n| 宋氏家族 | 斯特林・西格雷夫 | [下载](https://url89.ctfile.com/f/31084289-1357011463-fbc615?p=8866) |\n| 中信历史的镜像系列（套装共10本） | 理查德・埃文斯等 | [下载](https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866) |\n| 为奴十二年 | 所罗门・诺瑟普 | [下载](https://url89.ctfile.com/f/31084289-1357011313-653371?p=8866) |\n| 英国通史（套装共6册） | 钱乘旦 | [下载](https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866) |\n| 战后欧洲史（套装共4册） | 托尼・朱特 | [下载](https://url89.ctfile.com/f/31084289-1357011190-f4b570?p=8866) |\n| 吕思勉文集：三国史话 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357011133-842806?p=8866) |\n| 那些惊心动魄的人类文明史（套装共18册） | 曹胜高等 | [下载](https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866) |\n| 千年金融史 | 威廉・戈兹曼 | [下载](https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866) |\n| 中国历史风云录 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357010971-27004c?p=8866) |\n| 血战大武汉 | 张军 | [下载](https://url89.ctfile.com/f/31084289-1357010920-a3947f?p=8866) |\n| 易中天品三国 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357010851-0bd01f?p=8866) |\n| 张学良的政治生涯 | 傅虹霖 | [下载](https://url89.ctfile.com/f/31084289-1357010866-54265b?p=8866) |\n| 林汉达中国故事经典套装（图文版） | 林汉达 | [下载](https://url89.ctfile.com/f/31084289-1357010947-e40f70?p=8866) |\n| 贾志刚说春秋×说战国（全十二册） | 贾志刚 | [下载](https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866) |\n| 夏威夷史诗(共2册） | 詹姆斯・米切纳 | [下载](https://url89.ctfile.com/f/31084289-1357010758-140387?p=8866) |\n| 你绝对不知道的美国独立秘史 | 何畏岩 | [下载](https://url89.ctfile.com/f/31084289-1357010698-8fdefe?p=8866) |\n| 图说天下：话说中国历史系列（全10册） | 龚书铎/刘德麟 | [下载](https://url89.ctfile.com/f/31084289-1357011025-25ef8d?p=8866) |\n| 九品中正制研究 | 张旭华 | [下载](https://url89.ctfile.com/f/31084289-1357010656-17c168?p=8866) |\n| 秦始皇：穿越现实与历史的思辨之旅 | 吕世浩 | [下载](https://url89.ctfile.com/f/31084289-1357010635-d004d7?p=8866) |\n| 正说司马家（1-3） | 张朝炬 | [下载](https://url89.ctfile.com/f/31084289-1357010560-b2fada?p=8866) |\n| 黎明破晓的世界 | 威廉・曼彻斯特 | [下载](https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866) |\n| 中国现代史 | 徐中约 | [下载](https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866) |\n| 不忍细看的大唐史 | 谢国计 | [下载](https://url89.ctfile.com/f/31084289-1357010458-b98a48?p=8866) |\n| 我的河山：抗日正面战场全纪实（套装共3册） | 陈钦  | [下载](https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866) |\n| 工业与帝国：英国的现代化历程 | 埃里克・霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866) |\n| 顾颉刚国史讲话全本（三册） | 顾颉刚 | [下载](https://url89.ctfile.com/f/31084289-1357010383-dcf10f?p=8866) |\n| 罗马帝国的陨落 | 彼得・希瑟 | [下载](https://url89.ctfile.com/f/31084289-1357010386-84b362?p=8866) |\n| 晚清最后十八年（大全集）（共4册） | 黄治军 | [下载](https://url89.ctfile.com/f/31084289-1357010365-52de24?p=8866) |\n| 极简海洋文明史 | 菲利普・德・索萨 | [下载](https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866) |\n| 走向共和 | 张建伟 | [下载](https://url89.ctfile.com/f/31084289-1357010215-9eb25f?p=8866) |\n| 张鸣重说晚清民国 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866) |\n| 闲看水浒 | 十年砍柴 | [下载](https://url89.ctfile.com/f/31084289-1357010191-d34bba?p=8866) |\n| 新闻抄袭历史 | 宋燕 | [下载](https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866) |\n| 岳飞传 | 邓广铭 | [下载](https://url89.ctfile.com/f/31084289-1357010176-918d2c?p=8866) |\n| 梵蒂冈的乱世抉择（1922-1945） | 段琦 | [下载](https://url89.ctfile.com/f/31084289-1357010149-afb62f?p=8866) |\n| 阿提卡之夜（1-5卷） | 奥卢斯・革利乌斯 | [下载](https://url89.ctfile.com/f/31084289-1357010140-904f27?p=8866) |\n| 草原帝国（全译插图本） | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866) |\n| 大英博物馆世界简史（套装共3册） | 尼尔・麦格雷戈 | [下载](https://url89.ctfile.com/f/31084289-1357010083-942903?p=8866) |\n| 穿越百年中东 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866) |\n| 白话精编二十四史（全10册） | 龚书铎等 | [下载](https://url89.ctfile.com/f/31084289-1357010236-610f9d?p=8866) |\n| 1942河南大饥荒 | 宋致新 | [下载](https://url89.ctfile.com/f/31084289-1357009999-ed0873?p=8866) |\n| 历史的技艺：塔奇曼论历史 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866) |\n| 机械宇宙 | 爱德华・多尼克 | [下载](https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866) |\n| 时刻关注：二战经典战役纪实（套装共10册） | 二战经典战役编委会 | [下载](https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866) |\n| 第三帝国的最后十四天 | 约阿希姆·・费斯特 | [下载](https://url89.ctfile.com/f/31084289-1357009762-976759?p=8866) |\n| 世界小史 | 恩斯特・贡布里希 | [下载](https://url89.ctfile.com/f/31084289-1357009717-003d99?p=8866) |\n| 中国近代通史（套装共10册） | 张海鹏 | [下载](https://url89.ctfile.com/f/31084289-1357009672-5434a0?p=8866) |\n| 没有宽恕就没有未来 | 德斯蒙德・图图 | [下载](https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866) |\n| 政治秩序的起源 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866) |\n| 政治秩序与政治衰败 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866) |\n| 讲谈社·中国的历史（全十卷） | 宫本一夫/平势隆郎等 | [下载](https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866) |\n| 枪炮、病菌和钢铁 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866) |\n| 近代中国社会的新陈代谢（插图本） | 陈旭麓 | [下载](https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866) |\n| 吕氏春秋译注（修订本） | 张双棣 | [下载](https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866) |\n| 别笑，这是另一半中国史 | 杨建 | [下载](https://url89.ctfile.com/f/31084289-1357009540-88c0a5?p=8866) |\n| 失败的帝国：从斯大林到戈尔巴乔夫 | 弗拉季斯拉夫・祖博克 | [下载](https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866) |\n| 大国的崩溃：苏联解体的台前幕后 | 沙希利・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1357009531-44dd38?p=8866) |\n| 曾国藩智慧精髓大合集（套装共三册） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866) |\n| 半小时漫画中国史 | 二混子 | [下载](https://url89.ctfile.com/f/31084289-1357009573-2a5b19?p=8866) |\n| 奥斯曼帝国的衰亡 | 尤金・罗根 | [下载](https://url89.ctfile.com/f/31084289-1357009525-0dfc4f?p=8866) |\n| 奥斯维辛 | 劳伦斯・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357009495-02ded5?p=8866) |\n| 耳语者 | 奥兰多・费吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357009489-577978?p=8866) |\n| 布达佩斯往事 | 卡蒂・马顿 | [下载](https://url89.ctfile.com/f/31084289-1357009486-392c89?p=8866) |\n| 看得见的中国史（套装共14册） | 童超 | [下载](https://url89.ctfile.com/f/31084289-1357009903-8e6424?p=8866) |\n| 人心至上：杜月笙 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357009444-66c53e?p=8866) |\n| 儒家统治的时代：宋的转型 | 迪特・库恩 | [下载](https://url89.ctfile.com/f/31084289-1357009474-529aaf?p=8866) |\n| 冯国璋：北洋时期最有争议的总统 | 韩仲义 | [下载](https://url89.ctfile.com/f/31084289-1357009432-510c86?p=8866) |\n| 历史的终结与最后的人 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866) |\n| 零年：1945 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866) |\n| 苏联真相：对101个重要问题的思考（全三册） | 陆南泉 | [下载](https://url89.ctfile.com/f/31084289-1357009399-e397a1?p=8866) |\n| 文武北洋・风流篇 | 李洁 | [下载](https://url89.ctfile.com/f/31084289-1357009363-bd9b77?p=8866) |\n| 文武北洋・枭雄篇 | 李洁 | [下载](https://url89.ctfile.com/f/31084289-1357009366-f96c72?p=8866) |\n| 一个戴灰帽子的人 | 邵燕祥 | [下载](https://url89.ctfile.com/f/31084289-1357009354-ecd060?p=8866) |\n| 三国名将：一个历史学家的排行榜 | 方北辰 | [下载](https://url89.ctfile.com/f/31084289-1357009312-59e655?p=8866) |\n| 从这里读懂第三帝国（套装共8册） | 齐格蒙・鲍曼等 | [下载](https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866) |\n| 世界性的帝国：唐朝 | 陆威仪 | [下载](https://url89.ctfile.com/f/31084289-1357009291-f01621?p=8866) |\n| 十杆枪：从独立战争到西部拓荒的美国勇敢冒险史 | 克里斯・凯尔/威廉・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357009336-cf85ab?p=8866) |\n| 十个人的德意志 | 孙世龙 | [下载](https://url89.ctfile.com/f/31084289-1357009267-7bdd51?p=8866) |\n| 庞贝三日 | 阿尔贝托・安杰拉 | [下载](https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866) |\n| 世家的天下（全3册） | 潘彦明 | [下载](https://url89.ctfile.com/f/31084289-1357009249-56da80?p=8866) |\n| 早期中华帝国：秦与汉 | 陆威仪 | [下载](https://url89.ctfile.com/f/31084289-1357009264-03cc70?p=8866) |\n| 老兵自述：我在台湾40年 | 于秀 | [下载](https://url89.ctfile.com/f/31084289-1357009210-bceb7c?p=8866) |\n| 步兵进攻 | 埃尔温・隆美尔 | [下载](https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866) |\n| 仁者无敌：林肯的政治天才 | 尤以丁 | [下载](https://url89.ctfile.com/f/31084289-1357009171-407c48?p=8866) |\n| 世界史纲：生物和人类的简明史 | 吴文藻/冰心等 | [下载](https://url89.ctfile.com/f/31084289-1357009207-280a2c?p=8866) |\n| 唐朝绝对很邪乎 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357009138-deec69?p=8866) |\n| 分裂的帝国：南北朝 | 陆威仪 | [下载](https://url89.ctfile.com/f/31084289-1357009144-7f2fef?p=8866) |\n| 秦墟 | 月关 | [下载](https://url89.ctfile.com/f/31084289-1357009132-129b38?p=8866) |\n| 趣味生活简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866) |\n| 强迫症的历史：德国人的犹太恐惧症与大屠杀 | 克劳斯・费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866) |\n| 燃烧的岛群 | 宋宜昌 | [下载](https://url89.ctfile.com/f/31084289-1357009099-e8b13b?p=8866) |\n| 日落九世纪：大唐帝国的衰亡 | 赵益 | [下载](https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866) |\n| 神偷天下（全三册） | 郑丰 | [下载](https://url89.ctfile.com/f/31084289-1357009021-1cedd4?p=8866) |\n| 明帝国边防史：从土木堡之变到大凌河血战 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866) |\n| 帝国强军：中国八大古战精锐 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866) |\n| 庸人治国 | 苗棣 | [下载](https://url89.ctfile.com/f/31084289-1357008961-b049a1?p=8866) |\n| 缠斗：方生与未死 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866) |\n| 暴风雨的记忆 | 北岛 | [下载](https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866) |\n| 牛棚杂忆（图文版） | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866) |\n| 求索中国：文革前十年史 | 萧东连/朱地等 | [下载](https://url89.ctfile.com/f/31084289-1357008892-fc9b80?p=8866) |\n| 清朝开国史（上下卷） | 阎崇年 | [下载](https://url89.ctfile.com/f/31084289-1357008889-dcadfa?p=8866) |\n| 人类群星闪耀时 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866) |\n| 李鸿章时代（1870-1895） | 王鼎杰 | [下载](https://url89.ctfile.com/f/31084289-1357008859-c5c5f2?p=8866) |\n| 挣扎的帝国：元与明 | 卜正民 | [下载](https://url89.ctfile.com/f/31084289-1357008841-53bcc3?p=8866) |\n| 春秋战国：典藏套装版（全三册） | 高兴宇 | [下载](https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866) |\n| 古拉格：一部历史 | 安妮・阿普尔鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357008823-3cb3b7?p=8866) |\n| 弱宋：造极之世 | 陈胜利 | [下载](https://url89.ctfile.com/f/31084289-1357008796-38df46?p=8866) |\n| 晚清大变局 | 马平安 | [下载](https://url89.ctfile.com/f/31084289-1357008790-f00942?p=8866) |\n| 漫长的战斗：美国人眼中的朝鲜战争（修订版） | 约翰・托兰 | [下载](https://url89.ctfile.com/f/31084289-1357008763-ceb9cf?p=8866) |\n| 记忆小屋 | 托尼・朱特 | [下载](https://url89.ctfile.com/f/31084289-1357008715-f6ea28?p=8866) |\n| 艰难的一跃 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866) |\n| 北洋大时代 | 陈钦 | [下载](https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866) |\n| 经度 | 达娃・索贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866) |\n| 南京大屠杀 | 张纯如 | [下载](https://url89.ctfile.com/f/31084289-1357008697-eb4356?p=8866) |\n| 最后的中华帝国：大清 | 罗威廉 | [下载](https://url89.ctfile.com/f/31084289-1357008694-c9f404?p=8866) |\n| 德国简史 | 孟钟捷 | [下载](https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866) |\n| 经与史：华夏世界的历史建构 | 刘仲敬 | [下载](https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866) |\n| 旧制度与大革命 | 托克维尔 | [下载](https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866) |\n| 永恒的边缘（全3册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357008637-b35210?p=8866) |\n| 极简亚洲千年史 | 斯图亚特・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357008547-7528e7?p=8866) |\n| 间谍王：戴笠与中国特工 | 魏斐德 | [下载](https://url89.ctfile.com/f/31084289-1357008571-4000d9?p=8866) |\n| 北洋军阀史（套装共2册） | 来新夏 | [下载](https://url89.ctfile.com/f/31084289-1357008457-b50456?p=8866) |\n| 不忍细看的大汉史 | 墨竹 | [下载](https://url89.ctfile.com/f/31084289-1357008358-9b1891?p=8866) |\n| 第三帝国的兴亡（全三册） | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866) |\n| 东周列国志（上下） | 蔡元放/冯梦龙  | [下载](https://url89.ctfile.com/f/31084289-1357008370-900bac?p=8866) |\n| 改变美国的时刻 | 刘戈 | [下载](https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866) |\n| 道光十九年：从禁烟到战争 | 沈渭滨 | [下载](https://url89.ctfile.com/f/31084289-1357008298-a00093?p=8866) |\n| 哥伦布大交换 | 艾尔弗雷德・克罗斯比 | [下载](https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866) |\n| 故宫的风花雪月 | 祝勇 | [下载](https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866) |\n| 洪业：清朝开国史 | 魏斐德 | [下载](https://url89.ctfile.com/f/31084289-1357008280-fe79e7?p=8866) |\n| 大国的兴衰（套装共2册） | 保罗・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866) |\n| 大国海盗 | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866) |\n| 大秦三部曲 | 吕世浩 | [下载](https://url89.ctfile.com/f/31084289-1357008274-748b98?p=8866) |\n| 坐天下：张宏杰解读中国帝王 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866) |\n| 越南密战：1950-1954中国援越战争纪实 | 钱江 | [下载](https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866) |\n| 追寻历史的印迹 | 杨天石 | [下载](https://url89.ctfile.com/f/31084289-1357008211-2d3dc6?p=8866) |\n| 从帝制走向共和 | 杨天石 | [下载](https://url89.ctfile.com/f/31084289-1357008190-26b9bb?p=8866) |\n| 饥饿的盛世 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357008151-db2720?p=8866) |\n| 倒转红轮 | 金雁 | [下载](https://url89.ctfile.com/f/31084289-1357008238-c702a9?p=8866) |\n| 易中天“帝国与共和”三部曲 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866) |\n| 易中天中华史：先秦到隋唐 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357008340-6d454f?p=8866) |\n| 晚清原来是这样 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866) |\n| 我在故宫修文物 | 萧寒/绿妖 | [下载](https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866) |\n| 八月炮火 | 巴巴拉・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866) |\n| 老街的生命（抗战三部曲） | 林家品 | [下载](https://url89.ctfile.com/f/31084289-1357008025-85e9bc?p=8866) |\n| 兵贩子（抗战三部曲） | 林家品 | [下载](https://url89.ctfile.com/f/31084289-1357008028-fba137?p=8866) |\n| 雪峰山决战（抗战三部曲） | 林家品 | [下载](https://url89.ctfile.com/f/31084289-1357008007-bd9450?p=8866) |\n| 白日薄西山：大汉帝国的衰亡 | 徐兴无 | [下载](https://url89.ctfile.com/f/31084289-1357007989-fae9b9?p=8866) |\n| 伪满洲国（套装共三册） | 迟子建 | [下载](https://url89.ctfile.com/f/31084289-1357007920-212a9c?p=8866) |\n| 意大利黑手党的历史 | 约翰・迪基 | [下载](https://url89.ctfile.com/f/31084289-1357007902-b4007c?p=8866) |\n| 武则天正传 | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1357007881-cf94f5?p=8866) |\n| 二战史诗三部曲 | 科尼利厄斯・瑞恩 | [下载](https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866) |\n| 一个帝国的生与死 | 夜狼啸西风 | [下载](https://url89.ctfile.com/f/31084289-1357007848-1e242c?p=8866) |\n| 一个美国记者眼中的真实民国 | 哈雷特・阿班 | [下载](https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866) |\n| 战天京：晚清军政传信录 | 谭伯牛 | [下载](https://url89.ctfile.com/f/31084289-1357007827-5533c3?p=8866) |\n| 大明王朝的七张面孔（套装共2册） | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357007833-83ee88?p=8866) |\n| 戊戌变法史 | 汤志钧 | [下载](https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866) |\n| 希特勒传：跃升年代 | 福尔克尔・乌尔里希 | [下载](https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866) |\n| 血酬定律：中国历史中的生存游戏 | 吴思 | [下载](https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866) |\n| 科雷马故事 | 瓦尔拉姆・沙拉莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866) |\n| 世界的凛冬（全3册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357007761-91cc52?p=8866) |\n| 苏联专家在中国（1948-1960） | 沈志华 | [下载](https://url89.ctfile.com/f/31084289-1357007764-392d30?p=8866) |\n| 未来简史 | 尤瓦尔・赫拉利 | [下载](https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866) |\n| 我的抗战Ⅰ | 《我的抗战》节目组 | [下载](https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866) |\n| 我的抗战Ⅱ | 《我的抗战》节目组 | [下载](https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866) |\n| 希特勒传：从乞丐到元首 | 约翰・托兰 | [下载](https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866) |\n| 先秦古国志 | 林屋公子 | [下载](https://url89.ctfile.com/f/31084289-1357007686-218743?p=8866) |\n| 先秦凶猛 （全五册） | 潇水 | [下载](https://url89.ctfile.com/f/31084289-1357007683-6430e6?p=8866) |\n| 共和国历史的细节 | 李颖 | [下载](https://url89.ctfile.com/f/31084289-1357007656-87a1fc?p=8866) |\n| “四人帮”兴亡（增订版） | 叶永烈 | [下载](https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866) |\n| 滑铁卢：四天、三支大军和三场战役的历史 | 伯纳德・康沃尔 | [下载](https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866) |\n| 罗马人的故事（套装共15册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866) |\n| 欧洲：1453年以来的争霸之途 | 布伦丹・西姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866) |\n| 唉，我的沧桑50年（1959至今） | 八爪夜叉 | [下载](https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866) |\n| 从大历史的角度读蒋介石日记 | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866) |\n| 呐喊-大屠杀回忆录 | 曼尼・斯坦伯格 | [下载](https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866) |\n| 彭德怀自传 | 彭德怀 | [下载](https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866) |\n| 光荣与梦想（套装共4册） | 威廉・曼彻斯特 | [下载](https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866) |\n| 民国大师细说中国历史（套装共12册） | 吕思勉/吴晗/傅斯年等 | [下载](https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866) |\n| 南明史 | 顾诚 | [下载](https://url89.ctfile.com/f/31084289-1357007554-d162d5?p=8866) |\n| 宋慈大传 | 王宏甲 | [下载](https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866) |\n| 天命所终：晚清皇朝的崩溃 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357007524-6152e3?p=8866) |\n| 女人当国：慈禧太后与晚清五十年 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866) |\n| 沉冤录 | 张程 | [下载](https://url89.ctfile.com/f/31084289-1357007488-804e4c?p=8866) |\n| 飞虎队在桂林 | 赵平/韦芳/蒋桂英/苏晖  | [下载](https://url89.ctfile.com/f/31084289-1357007470-7a5427?p=8866) |\n| 苏联的最后一天 | 康纳・奥克莱利 | [下载](https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866) |\n| 王之道：从痞子刘季到高祖刘邦 | 刘小川 | [下载](https://url89.ctfile.com/f/31084289-1357007440-17c90c?p=8866) |\n| 帝国的分裂：美国独立战争的起源 | 郑非 | [下载](https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866) |\n| 活在汉朝不容易 | 侯虹斌 | [下载](https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866) |\n| 罗马史 | 特奥多尔・蒙森 | [下载](https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866) |\n| 宫女谈往录 | 金易 | [下载](https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866) |\n| 头颅中国：另一个角度看先秦 | 黄摩崖 | [下载](https://url89.ctfile.com/f/31084289-1357007314-f6145e?p=8866) |\n| 白宫岁月：基辛格回忆录（套装共4册） | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866) |\n| 帝国崛起病 | 黄钟 | [下载](https://url89.ctfile.com/f/31084289-1357007281-5bec5c?p=8866) |\n| 统一大业（合订本） | 郭晨 | [下载](https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866) |\n| 大清的角落 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866) |\n| 进步时代 | 张国庆 | [下载](https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866) |\n| 教科书里没有的历史细节 | 王国华 | [下载](https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866) |\n| 第一个世界帝国及其西征系列（共三册） | 布赖恩・莱弗里/汤姆・霍兰 | [下载](https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866) |\n| 唐浩明晚清三部曲 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357007041-55d2ec?p=8866) |\n| 唐太宗（全三卷） | 赵扬 | [下载](https://url89.ctfile.com/f/31084289-1357007050-bb3026?p=8866) |\n| 世界历史有一套（全6册） | 杨白劳 | [下载](https://url89.ctfile.com/f/31084289-1357007026-a96241?p=8866) |\n| 犹太人的故事：寻找失落的字符 | 西门·沙马  | [下载](https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866) |\n| 哇，历史原来可以这样学（套装共2册） | 林欣浩 | [下载](https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866) |\n| 当道家统治中国 | 林嘉文 | [下载](https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866) |\n| 天公不语对枯棋 | 姜鸣 | [下载](https://url89.ctfile.com/f/31084289-1357006972-dc0d09?p=8866) |\n| 霍布斯鲍姆自传 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006945-240989?p=8866) |\n| 革命的年代：1789～1848 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866) |\n| 资本的年代：1848～1875 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866) |\n| 帝国的年代：1875～1914 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866) |\n| 极端的年代：1914～1991 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006918-d93fd3?p=8866) |\n| 流血的天堂：乌孙王国传奇（原创白金版） |  金钊 | [下载](https://url89.ctfile.com/f/31084289-1357006927-7d67fc?p=8866) |\n| 大实话：历史与现在 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357006915-0aa5f7?p=8866) |\n| 罪孽的报应 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866) |\n| 维基解密：谁授权美国统管世界 | 苏言/贺濒 | [下载](https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866) |\n| 驼峰航线 | 刘小童 | [下载](https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866) |\n| 东汉的豪族 | 杨联陛 | [下载](https://url89.ctfile.com/f/31084289-1357006837-a944f1?p=8866) |\n| 暗杀1905大合集（共3册） | 巫童 | [下载](https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866) |\n| 晚清三大名臣发迹史（套装共6册） | 汪衍振 | [下载](https://url89.ctfile.com/f/31084289-1357006798-f5d92b?p=8866) |\n| 出轨的盛唐：武后（套装共3册） | 宗承灏 | [下载](https://url89.ctfile.com/f/31084289-1357006789-16cd14?p=8866) |\n| 笨人的成圣之道：曾国藩 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866) |\n| 大汉王朝的三张脸谱（全三册） | 飘雪楼主 | [下载](https://url89.ctfile.com/f/31084289-1357006753-0645a8?p=8866) |\n| 大中国史（全新校订超值珍藏版） | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866) |\n| 德国通史 | 丁建弘  | [下载](https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866) |\n| 如果这是宋史（套装共10册） | 高天流云 | [下载](https://url89.ctfile.com/f/31084289-1357006702-cf600b?p=8866) |\n| 十字军东征简史（插图本） | 米肖 | [下载](https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866) |\n| 大海盗时代 | 海盗 | [下载](https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866) |\n| 给大家看的全球通史 | 房龙 | [下载](https://url89.ctfile.com/f/31084289-1357006666-b79483?p=8866) |\n| 丝绸之路：一部全新的世界史 | 彼得·弗兰科潘 | [下载](https://url89.ctfile.com/f/31084289-1357006663-0b315e?p=8866) |\n| 红色账簿 | 马祥林 | [下载](https://url89.ctfile.com/f/31084289-1357006660-1bfd15?p=8866) |\n| 中原大战：民国军阀的终极逐鹿 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357006606-dd3be8?p=8866) |\n| 大清相国 | 王跃文 | [下载](https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866) |\n| 彭大将军 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866) |\n| 千古大变局 | 曾纪鑫 | [下载](https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866) |\n| 潜规则：中国历史中的真实游戏 | 吴思 | [下载](https://url89.ctfile.com/f/31084289-1357006486-e0c136?p=8866) |\n| 秦朝原来是这样 | 醉罢君山 | [下载](https://url89.ctfile.com/f/31084289-1357006480-90a92e?p=8866) |\n| 青铜时代：五百年的大局观（套装共5册） | 潇水 | [下载](https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866) |\n| 天崩地解：1644大变局 | 汗青 | [下载](https://url89.ctfile.com/f/31084289-1357006444-18d6eb?p=8866) |\n| 一本最危险的书 | 克里斯托夫·克里布斯 | [下载](https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866) |\n| 从俾斯麦到希特勒 | 塞巴斯蒂安·哈夫纳 | [下载](https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866) |\n| 其实我们一直活在春秋战国（套装共6册） | 龙镇 | [下载](https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866) |\n| 夹边沟记事 | 杨显惠 | [下载](https://url89.ctfile.com/f/31084289-1357006411-34b535?p=8866) |\n| 甘南纪事 | 杨显惠 | [下载](https://url89.ctfile.com/f/31084289-1357006405-e4b8cb?p=8866) |\n| 这里曾经是汉朝（套装共6册） | 月望东山 | [下载](https://url89.ctfile.com/f/31084289-1357006366-f6a436?p=8866) |\n| 百年袁家 | 王碧蓉 | [下载](https://url89.ctfile.com/f/31084289-1357006375-46b0fa?p=8866) |\n| 帝王师：张居正 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006345-151672?p=8866) |\n| 帝王师：刘伯温 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006339-c15817?p=8866) |\n| 成吉思汗：意志征服世界 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866) |\n| 败因：蒋介石为什么败退台湾？ | 武更斌 | [下载](https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866) |\n| 一个大国的崛起与崩溃 | 沈志华 | [下载](https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866) |\n| 西路军（套装共3册） | 冯亚光 | [下载](https://url89.ctfile.com/f/31084289-1357006267-cdd7bc?p=8866) |\n| 狗日的战争 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357006264-a3a0da?p=8866) |\n| 二战秘密档案 | 鲍里斯・瓦季莫维奇・索科洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866) |\n| 朱可夫：斯大林的将军 | 杰弗里・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357006219-c6136a?p=8866) |\n| 极简中国史 | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357006189-1d7a39?p=8866) |\n| 最后一个汉人皇帝：崇祯大败局 | 晏青 | [下载](https://url89.ctfile.com/f/31084289-1357006183-848fe4?p=8866) |\n| 军部当国：近代日本军国主义冒险史 | 赵恺 | [下载](https://url89.ctfile.com/f/31084289-1357006174-b628f4?p=8866) |\n| 紫禁城魔咒（套装全三册） | 简千艾 | [下载](https://url89.ctfile.com/f/31084289-1357006153-a21e3d?p=8866) |\n| 看得见的二战史（上下卷） | 肖石忠 | [下载](https://url89.ctfile.com/f/31084289-1357006273-4b1128?p=8866) |\n| 两个故宫的离合 | 野岛刚  | [下载](https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866) |\n| 帝国强军：欧洲八大古战精锐 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866) |\n| 熬过（1949-1976） | 寒川子 | [下载](https://url89.ctfile.com/f/31084289-1357006102-af215b?p=8866) |\n| 白门柳（套装共3册） | 刘斯奋 | [下载](https://url89.ctfile.com/f/31084289-1357006099-ca9e83?p=8866) |\n| 曾国藩：又笨又慢平天下 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006087-c38b42?p=8866) |\n| 楚汉争霸启示录 | 潇水 | [下载](https://url89.ctfile.com/f/31084289-1357006090-557c06?p=8866) |\n| 大秦帝国的野蛮成长 | 祝和军 | [下载](https://url89.ctfile.com/f/31084289-1357006075-2932b6?p=8866) |\n| 儒学、数术与政治 | 陈侃理 | [下载](https://url89.ctfile.com/f/31084289-1357006072-66be1f?p=8866) |\n| 帝国的凋零 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866) |\n| 想象异域 | 葛兆光 | [下载](https://url89.ctfile.com/f/31084289-1357006078-e45465?p=8866) |\n| 给大忙人看的历史常识 | 章学城 | [下载](https://url89.ctfile.com/f/31084289-1357006027-0210e9?p=8866) |\n| 汉朝大历史 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357006039-4817a7?p=8866) |\n| 红顶商人胡雪岩珍藏版大全集（套装共6册） | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866) |\n| 让你爱不释手的极简世界史 | 姚尧、磨剑  | [下载](https://url89.ctfile.com/f/31084289-1357005991-0695cb?p=8866) |\n| 让你爱不释手的极简中国史 | 磨剑 | [下载](https://url89.ctfile.com/f/31084289-1357006015-5af5d5?p=8866) |\n| 虎部队：国民党抗日王牌七十四军 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866) |\n| 1856：纠结的大清、天国与列强 | 陶短房 | [下载](https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866) |\n| 最后一个皇帝：袁世凯传 | 陶菊隐 | [下载](https://url89.ctfile.com/f/31084289-1357005958-558d42?p=8866) |\n| 地中海史诗三部曲 | 罗杰・克劳利 | [下载](https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866) |\n| 恶魔的饱食：日本731细菌战部队揭秘 | 森村诚一 | [下载](https://url89.ctfile.com/f/31084289-1357005949-f03dbf?p=8866) |\n| 最后的大队 | 野岛刚 | [下载](https://url89.ctfile.com/f/31084289-1357005955-4e31ac?p=8866) |\n| 另一只眼看鸦片战争 | 瞿巍 | [下载](https://url89.ctfile.com/f/31084289-1357005928-95ec0a?p=8866) |\n| 五大传奇权谋人物传记（套装共5册） | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866) |\n| 中国知青史·初澜（1953～1968） | 定宜庄 | [下载](https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866) |\n| 中国知青史·大潮（1966～1980） | 刘小萌 | [下载](https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866) |\n| 触摸历史与进入五四 | 陈平原 | [下载](https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866) |\n| 历史的底稿 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866) |\n| 大历史的边角料 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005868-04c945?p=8866) |\n| 大宋帝国三百年（共5册） | 金纲 | [下载](https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866) |\n| 我的应许之地 | 阿里・沙维特 | [下载](https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866) |\n| 吕思勉讲中国历史 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357005865-39afd4?p=8866) |\n| 吕著三国史话 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866) |\n| 共和中的帝制 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005838-df5318?p=8866) |\n| 抗日战争的细节大全集（共4册） | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866) |\n| 天谴行动 | 乔治・乔纳斯 | [下载](https://url89.ctfile.com/f/31084289-1357005826-867b8f?p=8866) |\n| 再说戊戌变法 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005823-df41d5?p=8866) |\n| 历史的空白处 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866) |\n| 张鸣说历史：角落里的民国 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005808-4cd3c9?p=8866) |\n| 张鸣说历史：大国的虚与实 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005817-deb0b2?p=8866) |\n| 张鸣说历史：朝堂上的戏法 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005811-270f44?p=8866) |\n| 张鸣说历史：重说中国古代史 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005799-2834e7?p=8866) |\n| 张鸣说历史：重说中国国民性 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005796-d68785?p=8866) |\n| 重新发现宋朝 | 吴钩 | [下载](https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866) |\n| 直截了当的独白 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866) |\n| 真相：裕仁天皇与侵华战争 | 赫伯特・比克斯 | [下载](https://url89.ctfile.com/f/31084289-1357005781-a36ade?p=8866) |\n| 武夫当权：军阀集团的游戏规则 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005778-e952c5?p=8866) |\n| 巨人的陨落（全3册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357005775-add98f?p=8866) |\n| 别笑，这是大清正史（套装共三册） | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357005739-4e4df0?p=8866) |\n| 陈舜臣“十八史略” | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357005736-4f0d45?p=8866) |\n| 山的那一边 | 李德・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866) |\n| 春秋战国超好看大全集 | 君玉离 | [下载](https://url89.ctfile.com/f/31084289-1357005691-37f328?p=8866) |\n| 盘活：中国民间金融百年风云 | 王千马 | [下载](https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866) |\n| 楚亡：从项羽到韩信 | 李开元 | [下载](https://url89.ctfile.com/f/31084289-1357005697-cd05d4?p=8866) |\n| 大明王朝1566（套装共二册） | 刘和平 | [下载](https://url89.ctfile.com/f/31084289-1357005589-4f319f?p=8866) |\n| 慈禧全传 | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866) |\n| 卑鄙的圣人：曹操（套装共10册） | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866) |\n| 万物简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866) |\n| 你一定爱读的极简欧洲史 | 约翰・赫斯特 | [下载](https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866) |\n| 极简人类史 | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866) |\n| 民国总理段祺瑞 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866) |\n| 大故宫（全三册） | 阎崇年 | [下载](https://url89.ctfile.com/f/31084289-1357005595-48321c?p=8866) |\n| 民国原来是这样 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357005451-392314?p=8866) |\n| 晚清有个曾国藩 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866) |\n| 晚清有个袁世凯 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866) |\n| 晚清有个李鸿章 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866) |\n| 和氏璧 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866) |\n| 明宫奇案 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866) |\n| 斧声烛影 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866) |\n| 夺位战争：康熙和他的儿子们 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357005391-a2fed4?p=8866) |\n| 跌荡一百年：中国企业1870-1977（纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866) |\n| 浩荡两千年：中国企业公元前7世纪-1869年 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866) |\n| 三国机密（全两册） | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866) |\n| 马伯庸笑翻中国简史 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866) |\n| 原来你是这样的宋朝 | 吴钩 | [下载](https://url89.ctfile.com/f/31084289-1357005328-0cee06?p=8866) |\n| 人类简史：从动物到上帝 | 尤瓦尔・赫拉利 | [下载](https://url89.ctfile.com/f/31084289-1357005331-d43590?p=8866) |\n| 袁腾飞讲美国史 | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357005301-9fa40d?p=8866) |\n| 第一次世界大战回忆录（全五卷） | 温斯顿・丘吉尔 | [下载](https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866) |\n| 第二次世界大战回忆录（全六卷） | 温斯顿·丘吉尔 | [下载](https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866) |\n| 活着就为征服世界 | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866) |\n| 日本！日本！：中日历史上的历次死磕 | 王浩 | [下载](https://url89.ctfile.com/f/31084289-1357005280-12bd88?p=8866) |\n| 乾隆十三年 | 高王凌 | [下载](https://url89.ctfile.com/f/31084289-1357005277-d6967f?p=8866) |\n| 极乐诱惑：太平天国的兴亡 | 赫连勃勃大王 | [下载](https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866) |\n| 锦衣卫秘事 | 夜行独侠 | [下载](https://url89.ctfile.com/f/31084289-1357005262-15b909?p=8866) |\n| 解读希特勒 | 塞巴斯蒂安·哈夫纳 | [下载](https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866) |\n| 三国人物传记合集（套装共六册） | 方北辰 | [下载](https://url89.ctfile.com/f/31084289-1357005274-cab8cd?p=8866) |\n| 不容青史尽成灰（套装五册） | 张嵚 | [下载](https://url89.ctfile.com/f/31084289-1357005247-bb17a7?p=8866) |\n| 大唐的四张面孔（套装共四册） | 东江月明 | [下载](https://url89.ctfile.com/f/31084289-1357005238-f97e96?p=8866) |\n| 你知道或不知道的英国史 | 贺桂金 | [下载](https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866) |\n| 大汉公主 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005241-e78c9b?p=8866) |\n| 帝国的软肋：大汉王朝四百年 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357005232-e2cd5d?p=8866) |\n| 1644：中国式王朝兴替 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005220-eda0ce?p=8866) |\n| 千年乱局：争霸东北亚（套装共二册） | 方俞 | [下载](https://url89.ctfile.com/f/31084289-1357005217-0b648c?p=8866) |\n| 敦煌：碧海青天 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005196-b63054?p=8866) |\n| 孔雀胆 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866) |\n| 大唐游侠 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866) |\n| 鱼玄机 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866) |\n| 大太监李莲英全传 | 王牧 | [下载](https://url89.ctfile.com/f/31084289-1357005160-ff696f?p=8866) |\n| 历史与看客 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005157-06675a?p=8866) |\n| 帝国的正午 | 赫连勃勃大王 | [下载](https://url89.ctfile.com/f/31084289-1357005139-267d57?p=8866) |\n| 一寸河山一寸血（套装全五册） | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866) |\n| 血腥的盛唐大全集（珍藏版） | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357005133-8ad8de?p=8866) |\n| 蒋介石与现代中国 | 陶涵 | [下载](https://url89.ctfile.com/f/31084289-1357005121-9824a2?p=8866) |\n| 帝国最后的荣耀：大明1592抗日援朝 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005091-0ae1b1?p=8866) |\n| 流血的仕途：李斯与秦始皇 | 曹昇 | [下载](https://url89.ctfile.com/f/31084289-1357005082-4cc81c?p=8866) |\n| 中国1927·谁主沉浮 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866) |\n| 历史是个什么玩意儿（全四册） | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357005076-2d0888?p=8866) |\n| 袁腾飞讲先秦·上古春秋 | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357005073-adcf42?p=8866) |\n| 袁腾飞讲先秦·战国纵横 | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357005064-2ad184?p=8866) |\n| 袁腾飞讲日本史 | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357005085-ff26cb?p=8866) |\n| 袁腾飞讲两宋风云 | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357005067-5e3c5a?p=8866) |\n| 小狗也要叫 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005055-f06b5e?p=8866) |\n| 国运1909：清帝国的改革突围 | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357005070-6a1110?p=8866) |\n| 秦崩：从秦始皇到刘邦 | 李开元 | [下载](https://url89.ctfile.com/f/31084289-1357005109-a88027?p=8866) |\n| 北洋裂变 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005022-6f69d4?p=8866) |\n| 慈禧私生活回忆录 | 裕德龄 | [下载](https://url89.ctfile.com/f/31084289-1357004989-2742d5?p=8866) |\n| 康熙大帝（全四册） | 二月河 | [下载](https://url89.ctfile.com/f/31084289-1357005010-4813e7?p=8866) |\n| 雍正皇帝（全三册） | 二月河 | [下载](https://url89.ctfile.com/f/31084289-1357005025-c4d4ea?p=8866) |\n| 乾隆皇帝（全六册） | 二月河 | [下载](https://url89.ctfile.com/f/31084289-1357005028-731854?p=8866) |\n| 大变局1911 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866) |\n| 曾国藩的正面与侧面 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866) |\n| 战争就是这么回事儿（全三册） | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866) |\n| 叫魂 | 孔飞力 | [下载](https://url89.ctfile.com/f/31084289-1357004902-1b6315?p=8866) |\n| 中国之翼 | 格雷戈里・克劳奇 | [下载](https://url89.ctfile.com/f/31084289-1357004914-6aa3a6?p=8866) |\n| 战争从未如此热血：二战美日太平洋大对决（全四册） | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866) |\n| 国会现场：1911—1928 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357004872-0a13ad?p=8866) |\n| 大秦帝国（全新修订版） | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357004890-cf3460?p=8866) |\n| 知日！知日！这次彻底了解日本（全四册） | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357004881-07a62d?p=8866) |\n| 德川家康大全集 | 山冈庄八 | [下载](https://url89.ctfile.com/f/31084289-1357004860-5761a5?p=8866) |\n| 真实的汪精卫 | 林思云 | [下载](https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866) |\n| 万历十五年（经典版） | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357004842-c3da51?p=8866) |\n| 中国大历史 | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357004833-543fef?p=8866) |\n| 历史非常档案 | 李昊轩 | [下载](https://url89.ctfile.com/f/31084289-1357004797-1cc3d5?p=8866) |\n| 激荡三十年（套装纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866) |\n| 明朝那些事儿（1-9） | 当年明月 | [下载](https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866) |\n| 让你爱不释手的极简美国史 | 姚尧 | [下载](https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866) |\n| 胡雪岩（全三册） | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357004719-be5079?p=8866) |\n| 民国就是这么生猛（全四册） | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357004713-b94ab1?p=8866) |\n| 细说中国历史丛书（全十册） | 黎东方等 | [下载](https://url89.ctfile.com/f/31084289-1357004698-777405?p=8866) |\n| 这个历史挺靠谱（全三册） | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357004674-6ba91b?p=8866) |\n"
  },
  {
    "path": "md/厨房.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 厨房\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 厨艺的常识 | 迈克尔・鲁尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866) |\n| 食帖07：大丈夫生于厨房 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866) |\n"
  },
  {
    "path": "md/双语.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 双语\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人生不设限（中英双语版） | 力克・胡哲 | [下载](https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866) |\n"
  },
  {
    "path": "md/反腐.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 反腐\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 追问 | 丁捷 | [下载](https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866) |\n| 人民的名义 | 周梅森 | [下载](https://url89.ctfile.com/f/31084289-1357007896-f02fcd?p=8866) |\n| 纳粹德国的腐败与反腐 | 弗兰克・巴约尔 | [下载](https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866) |\n"
  },
  {
    "path": "md/发明.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 发明\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 塑造世界经济的50项伟大发明 | 蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866) |\n"
  },
  {
    "path": "md/发财.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 发财\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 全中国最穷的小伙子发财日记 | 重庆老康 | [下载](https://url89.ctfile.com/f/31084289-1357006528-68ef63?p=8866) |\n"
  },
  {
    "path": "md/叛逆.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 叛逆\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 叛逆天才 | 弗朗西斯卡・吉诺 | [下载](https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866) |\n| 盲从与叛逆 | 米歇尔・巴德利 | [下载](https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866) |\n"
  },
  {
    "path": "md/口才.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 口才\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 像高手一样发言 | 久久 | [下载](https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866) |\n| 李诞脱口秀工作手册 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866) |\n| 当时这样说就好了 | 伊庭正康 | [下载](https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866) |\n| 带货王 | 李瑛 | [下载](https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866) |\n| 我的最后一本口才书 | 陈慕妤 | [下载](https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866) |\n| 职场谈判经典书系（套装共3册） | 德雷克・阿顿 | [下载](https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866) |\n| 魏斯曼的演讲大师课3 | 杰瑞・魏斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866) |\n| TED说话的力量 | 阿卡什·P.卡里亚 | [下载](https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866) |\n| 谈判的艺术 | 于反 | [下载](https://url89.ctfile.com/f/31084289-1356986518-9ea72b?p=8866) |\n| 说服力：如何让沟通充满逻辑与技巧 | 白丽洁 | [下载](https://url89.ctfile.com/f/31084289-1356986359-ce2061?p=8866) |\n| 说服力：如何让沟通充满逻辑（全新升级版） | 白丽洁 | [下载](https://url89.ctfile.com/f/31084289-1356985729-c3f598?p=8866) |\n| 所谓情商高，就是会说话 | 佐佐木圭一 | [下载](https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866) |\n| 马云的说话之道（2019版） | 张笑恒 | [下载](https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866) |\n| 不怯场 | 译夫 | [下载](https://url89.ctfile.com/f/31084289-1357042144-f8796b?p=8866) |\n| 别输在不会拒绝上 | 李劲 | [下载](https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866) |\n| 精准表达：开口就能说重点 | 牛津 | [下载](https://url89.ctfile.com/f/31084289-1357026985-8d194b?p=8866) |\n"
  },
  {
    "path": "md/古代.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古代\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 100个成语中的古代生活史 | 许晖 | [下载](https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866) |\n| 大师经典：王力先生的古代文化通识课 | 王力 | [下载](https://url89.ctfile.com/f/31084289-1375512367-d2614c?p=8866) |\n| 古代志怪小说鉴赏辞典 | 上海辞书出版社 | [下载](https://url89.ctfile.com/f/31084289-1357002868-8633d6?p=8866) |\n| 中国历代钱币 | 华东师大博物馆 | [下载](https://url89.ctfile.com/f/31084289-1357053706-4553fa?p=8866) |\n| 历史无间道 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357051522-ca930d?p=8866) |\n| 古代人的日常生活 | 讲历史的王老师 | [下载](https://url89.ctfile.com/f/31084289-1357043638-abdc6f?p=8866) |\n| 中古中国门阀大族的消亡 | 谭凯 | [下载](https://url89.ctfile.com/f/31084289-1357032985-f3d84f?p=8866) |\n| 凯尔特神话 | 米兰达・阿尔德豪斯-格林 | [下载](https://url89.ctfile.com/f/31084289-1357026139-d5e318?p=8866) |\n| 中国古代大案探奇录系列丛书 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357020886-9e4f01?p=8866) |\n| 广州贸易 | 范岱克 | [下载](https://url89.ctfile.com/f/31084289-1357013410-cf4546?p=8866) |\n| 中国古代艳情小说史 | 张廷兴 | [下载](https://url89.ctfile.com/f/31084289-1357011268-efad9b?p=8866) |\n| 九品中正制研究 | 张旭华 | [下载](https://url89.ctfile.com/f/31084289-1357010656-17c168?p=8866) |\n| 金瓶梅（崇祯本） | 兰陵笑笑生  | [下载](https://url89.ctfile.com/f/31084289-1357008631-0b6df9?p=8866) |\n| 水浒传（校注本） | 施耐庵/罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866) |\n| 西游记（校注本） | 吴承恩 | [下载](https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866) |\n| 红楼梦（校注本） | 曹雪芹/高鹗 | [下载](https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866) |\n| 大中国史（全新校订超值珍藏版） | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357006756-680d86?p=8866) |\n| 中国神话大词典 | 袁珂 | [下载](https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866) |\n"
  },
  {
    "path": "md/古代史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古代史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 高卢战记 | 盖乌斯・尤利乌斯・恺撒 | [下载](https://url89.ctfile.com/f/31084289-1357030762-72487f?p=8866) |\n| 张鸣说历史：重说中国古代史 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005799-2834e7?p=8866) |\n"
  },
  {
    "path": "md/古典.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古典\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 诺顿音乐断代史丛书（套装共4册） | 菲利普・唐斯 | [下载](https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866) |\n| 西方古典学术史（第一卷） | 约翰・埃德温・桑兹 | [下载](https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866) |\n| 宋元笔记小说大观（全35册） | 王应麟等 | [下载](https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866) |\n| 神曲（全三册） | 但丁・阿利格耶里 | [下载](https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866) |\n| 明清戏曲序跋纂笺（12册） | 郭英德/李志远 | [下载](https://url89.ctfile.com/f/31084289-1375499515-e7ed9c?p=8866) |\n| 中国古典文学名家选集（全17册） | 王维等 | [下载](https://url89.ctfile.com/f/31084289-1375502398-fe5b0d?p=8866) |\n| 杜甫诗选（古典文学大字本） | 杜甫/谢思炜 | [下载](https://url89.ctfile.com/f/31084289-1375504429-062f6a?p=8866) |\n| 中国古典文学读本丛书典藏（第二辑全15册） | 王起主等 | [下载](https://url89.ctfile.com/f/31084289-1375508965-0eb459?p=8866) |\n| 莱蒙托夫诗选（外国文学名著丛书） | 莱蒙托夫 | [下载](https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866) |\n| 明文选 | 赵伯陶 | [下载](https://url89.ctfile.com/f/31084289-1375510711-3cd429?p=8866) |\n| 明清叙事文学中的城市与生活（大家读大家） | 胡晓真 | [下载](https://url89.ctfile.com/f/31084289-1357003978-424fb6?p=8866) |\n| 快意江湖：彩绘水浒传 | 张琳绘/张睿著 | [下载](https://url89.ctfile.com/f/31084289-1356999922-583382?p=8866) |\n| 楚辞（果麦经典） | 屈原等 | [下载](https://url89.ctfile.com/f/31084289-1356999010-1d65d7?p=8866) |\n| 三言二拍插图典藏版（全六册） | 冯梦龙等 | [下载](https://url89.ctfile.com/f/31084289-1356990106-7735f0?p=8866) |\n| 手绘儒生 | 金龠 | [下载](https://url89.ctfile.com/f/31084289-1356987880-6e72c2?p=8866) |\n| 文选（全本全注全译） | 萧统 | [下载](https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866) |\n| 中华古典文库典藏（共40册） | 李汝珍等 | [下载](https://url89.ctfile.com/f/31084289-1357054597-4de0db?p=8866) |\n| 楚辞（国学典藏） | 洪兴祖 补注 | [下载](https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866) |\n| 管子（全本全注全译） | 李山/轩新丽译注 | [下载](https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866) |\n| 春秋公羊传（全本全注全译） | 孔子/公羊寿 | [下载](https://url89.ctfile.com/f/31084289-1357046404-436973?p=8866) |\n| 聊斋志异（全校会注集评） | 蒲松龄 | [下载](https://url89.ctfile.com/f/31084289-1357046074-8abd51?p=8866) |\n| 山海经（全本全注全译） | 方韬译注 | [下载](https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866) |\n| 神仙传（全本全注全译） | 葛洪 | [下载](https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866) |\n| 李清照诗词全集（作家榜经典文集） | 李清照 | [下载](https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866) |\n| 中华经典普及文库（精选共15种20册） | 中华书局编辑部 | [下载](https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866) |\n| 聊斋志异（全本全注全译） | 蒲松龄 | [下载](https://url89.ctfile.com/f/31084289-1357042888-47daec?p=8866) |\n| 自由的文化 | 克里斯蒂安・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866) |\n| 纳兰词集（词系列） | 张草纫 | [下载](https://url89.ctfile.com/f/31084289-1357033222-a4ae5e?p=8866) |\n| 中国古典文学荟萃（全36册） | 沈复/吴楚材/吴调侯等 | [下载](https://url89.ctfile.com/f/31084289-1357032133-b8e344?p=8866) |\n| 一生必读古典小说系列（套装共10册） | 曾朴/凌蒙初等 | [下载](https://url89.ctfile.com/f/31084289-1357031902-43a76c?p=8866) |\n| 诗词里的趣事套装（全4册） | 王月亮/黄震/黄秀春 | [下载](https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866) |\n| 华杉讲透《大学中庸》 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357029907-e28d12?p=8866) |\n| 宋诗鉴赏辞典 | 缪钺 | [下载](https://url89.ctfile.com/f/31084289-1357029934-f3d31f?p=8866) |\n| 金圣叹批评本西厢记 | 王实甫 | [下载](https://url89.ctfile.com/f/31084289-1357028926-90d03b?p=8866) |\n| 镜花缘（作家榜经典文库） | 李汝珍 | [下载](https://url89.ctfile.com/f/31084289-1357027699-5765f0?p=8866) |\n| 世说新语译注 | 刘义庆 | [下载](https://url89.ctfile.com/f/31084289-1357026997-7dd4f3?p=8866) |\n| 沧浪诗话 | 严羽 | [下载](https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866) |\n| 中国十大禁毁小说文库 | 雪樵主人 | [下载](https://url89.ctfile.com/f/31084289-1357024510-63968c?p=8866) |\n| 诗经（风雅颂三卷） | 骆玉明/细井徇 | [下载](https://url89.ctfile.com/f/31084289-1357021144-d46886?p=8866) |\n| 闲情偶寄（果麦经典） | 李渔 | [下载](https://url89.ctfile.com/f/31084289-1357013896-9da2db?p=8866) |\n| 儒林外史（果麦经典） | 吴敬梓 | [下载](https://url89.ctfile.com/f/31084289-1357008754-58ab37?p=8866) |\n| 浮生六记 | 沈复 | [下载](https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866) |\n| 极简音乐史 | 冈田晓生 | [下载](https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866) |\n"
  },
  {
    "path": "md/古典文学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古典文学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 黄庭坚词集（词系列） | 黄庭坚 | [下载](https://url89.ctfile.com/f/31084289-1357033456-e77dbf?p=8866) |\n| 温庭筠词集·韦庄词集（词系列） | 温庭筠/韦庄 | [下载](https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866) |\n"
  },
  {
    "path": "md/古希腊.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古希腊\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 古希腊文明的光芒 | 赵林 | [下载](https://url89.ctfile.com/f/31084289-1375499062-3dfd8c?p=8866) |\n| 古希腊史（全两册） | 查尔斯・奥曼 | [下载](https://url89.ctfile.com/f/31084289-1356996343-d966c9?p=8866) |\n| 希波战争 | G.W.考克斯 | [下载](https://url89.ctfile.com/f/31084289-1356983626-e7197b?p=8866) |\n| 古希腊罗马技术史（贝克知识丛书） | 赫尔穆特・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866) |\n| 古希腊罗马军事史（贝克知识丛书） | 莱昂哈特・布克哈特 | [下载](https://url89.ctfile.com/f/31084289-1357051891-e1f24d?p=8866) |\n| 古希腊人 | 伊迪丝・霍尔 | [下载](https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866) |\n| 雅典的胜利 | 安东尼・艾福瑞特 | [下载](https://url89.ctfile.com/f/31084289-1357039756-0e0ed2?p=8866) |\n| 伯罗奔尼撒战争 | 唐纳德・卡根 | [下载](https://url89.ctfile.com/f/31084289-1357032625-63c026?p=8866) |\n| 希腊奇迹的观念基础 | 陈中梅 | [下载](https://url89.ctfile.com/f/31084289-1357032247-8b04d4?p=8866) |\n| 荷马3000年 | 亚当・尼科尔森 | [下载](https://url89.ctfile.com/f/31084289-1357027369-65947b?p=8866) |\n| 理想国（译文经典） | 柏拉图 | [下载](https://url89.ctfile.com/f/31084289-1357027216-6c81c9?p=8866) |\n| 伯罗奔尼撒战争史（详注修订本） | 修昔底德 | [下载](https://url89.ctfile.com/f/31084289-1357026922-8375ca?p=8866) |\n| 历史（详注修订本） | 希罗多德 | [下载](https://url89.ctfile.com/f/31084289-1357026571-4204f0?p=8866) |\n| 希腊人的故事（全三册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357023988-a42df2?p=8866) |\n| 阿提卡之夜（1-5卷） | 奥卢斯・革利乌斯 | [下载](https://url89.ctfile.com/f/31084289-1357010140-904f27?p=8866) |\n"
  },
  {
    "path": "md/古文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新序（全本全注全译） | 马世年 | [下载](https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866) |\n| 怎样学习文言文 | 张中行著 | [下载](https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866) |\n| 念楼学短 | 锺叔河 | [下载](https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866) |\n| 百年文言 | 陳永正/徐晉如 | [下载](https://url89.ctfile.com/f/31084289-1357027861-286c94?p=8866) |\n"
  },
  {
    "path": "md/古籍.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古籍\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 水经注套装全五册（全本全注全译） | 郦道元 | [下载](https://url89.ctfile.com/f/31084289-1375491544-98a70b?p=8866) |\n| 茶经 续茶经（全本全注全译） | 杜斌 | [下载](https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866) |\n| 二十四史：文白对照版（全12册） |  《二十四史》编委会 | [下载](https://url89.ctfile.com/f/31084289-1375509637-6f1905?p=8866) |\n| 王阳明年谱长编（全四册） | 束景南 | [下载](https://url89.ctfile.com/f/31084289-1357004326-b1739c?p=8866) |\n| 读书杂志 | 王念孙 | [下载](https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866) |\n| 史学要籍丛刊 | 左丘明等 | [下载](https://url89.ctfile.com/f/31084289-1356992179-55d354?p=8866) |\n| 阅微草堂笔记（全本全注全译） | 纪昀 | [下载](https://url89.ctfile.com/f/31084289-1356985663-f34ed2?p=8866) |\n| 晏子春秋校注（中华国学文库） | 张纯一撰 | [下载](https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866) |\n| 拾遗记（全本全注全译） | 王兴芬 | [下载](https://url89.ctfile.com/f/31084289-1356983911-a2e9a3?p=8866) |\n| 劝学篇（全本全注全译） | 张之洞 | [下载](https://url89.ctfile.com/f/31084289-1356983266-6db10e?p=8866) |\n| 洛阳伽蓝记（全本全注全译） | 尚荣译注 | [下载](https://url89.ctfile.com/f/31084289-1356982528-11947d?p=8866) |\n| 四书五经（全本全注全译） | 陈晓芬/徐儒宗 | [下载](https://url89.ctfile.com/f/31084289-1357053883-1b6ff5?p=8866) |\n| 古籍校勘方法论 | 王瑞来 | [下载](https://url89.ctfile.com/f/31084289-1357051468-1a95e2?p=8866) |\n| 春秋穀梁传（全本全注全译） | 徐正英/邹皓 | [下载](https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866) |\n| 中国经典古典名著套装20册 | 司马迁等 | [下载](https://url89.ctfile.com/f/31084289-1357041949-2c728c?p=8866) |\n| 澄衷蒙学堂字课图说（全8册） | 刘树屏 | [下载](https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866) |\n| 中华经典藏书全套装（全61册） | 胡平生等 | [下载](https://url89.ctfile.com/f/31084289-1357038349-85eafc?p=8866) |\n| 辛弃疾词集（词系列） | 辛弃疾 | [下载](https://url89.ctfile.com/f/31084289-1357029985-edf7ad?p=8866) |\n| 吕氏春秋译注（修订本） | 张双棣 | [下载](https://url89.ctfile.com/f/31084289-1357009552-1808fb?p=8866) |\n"
  },
  {
    "path": "md/古罗马.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古罗马\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 拜占庭一千年 | 狄奥尼修斯・史塔克普洛斯 | [下载](https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866) |\n| 古罗马的日常生活 | 阿尔贝托・安杰拉 | [下载](https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866) |\n| 罗马元老院与人民 | 玛丽・比尔德 | [下载](https://url89.ctfile.com/f/31084289-1357045987-fc2cec?p=8866) |\n| 沉思录（译文经典） | 马可・奥勒留 | [下载](https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866) |\n| 罗马帝国的崛起 | 波里比阿 | [下载](https://url89.ctfile.com/f/31084289-1357033156-220881?p=8866) |\n| 奥古斯都：从革命者到皇帝 | 阿德里安・戈兹沃西 | [下载](https://url89.ctfile.com/f/31084289-1357032637-53e650?p=8866) |\n| 企鹅欧洲史：罗马帝国的遗产 | 克里斯・威克姆 | [下载](https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866) |\n| 内战记 | 盖乌斯・尤利乌斯・恺撒 | [下载](https://url89.ctfile.com/f/31084289-1357030756-3504a4?p=8866) |\n"
  },
  {
    "path": "md/古言.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 古言\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 昭奚旧草（套装共2册） | 书海沧生 | [下载](https://url89.ctfile.com/f/31084289-1357009678-61145d?p=8866) |\n| 临渊（全2册） | 尤四姐 | [下载](https://url89.ctfile.com/f/31084289-1357007251-590cf4?p=8866) |\n"
  },
  {
    "path": "md/可口可乐.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 可口可乐\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 情感驱动 | 维尔・桑切斯・拉米拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866) |\n"
  },
  {
    "path": "md/可转债.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 可转债\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 攻守：可转债投资实用手册 | 饕餮海等 | [下载](https://url89.ctfile.com/f/31084289-1375492006-a0e7e3?p=8866) |\n| 可转债投资魔法书（第2版） | 安道全 | [下载](https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866) |\n| 可转债投资魔法书 | 安道全 | [下载](https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866) |\n"
  },
  {
    "path": "md/台湾.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 台湾\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 台湾小吃全书 | 焦桐 | [下载](https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866) |\n| 爱的24则运算 | 林婉瑜 | [下载](https://url89.ctfile.com/f/31084289-1357000729-a46ceb?p=8866) |\n| 在台湾发现历史 | 杨渡 | [下载](https://url89.ctfile.com/f/31084289-1356982489-7f9cfb?p=8866) |\n| 迷宫中的恋人 | 陈雪 | [下载](https://url89.ctfile.com/f/31084289-1357053472-87b733?p=8866) |\n| 雨狗空间 | 卧斧 | [下载](https://url89.ctfile.com/f/31084289-1357051516-baea86?p=8866) |\n| 冬将军来的夏天 | 甘耀明 | [下载](https://url89.ctfile.com/f/31084289-1357033342-c27b37?p=8866) |\n| 奇来前书 | 杨牧 | [下载](https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866) |\n| 奇来后书 | 杨牧 | [下载](https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866) |\n| 台湾风云（1368-1683） | 张嵚 | [下载](https://url89.ctfile.com/f/31084289-1357029589-c7bec5?p=8866) |\n| 没有神的所在 ：私房阅读《金瓶梅》 | 侯文咏 | [下载](链接未找到) |\n| 三十三年梦 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1357027630-221dda?p=8866) |\n| 邦查女孩 | 甘耀明 | [下载](https://url89.ctfile.com/f/31084289-1357026436-0c6072?p=8866) |\n| 雷震传 | 范泓 | [下载](https://url89.ctfile.com/f/31084289-1357024813-51be80?p=8866) |\n| 寂寞的游戏 | 袁哲生 | [下载](https://url89.ctfile.com/f/31084289-1357023985-064394?p=8866) |\n| 自由之魂 | 刘台平 | [下载](https://url89.ctfile.com/f/31084289-1357023205-5d21ee?p=8866) |\n| 春灯公子 | 张大春 | [下载](https://url89.ctfile.com/f/31084289-1357016404-86542e?p=8866) |\n| 失落的优雅 | 阮义忠 | [下载](https://url89.ctfile.com/f/31084289-1357014619-e2d4f6?p=8866) |\n| 都市速写簿 | 阮义忠 | [下载](https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866) |\n| 直航台海：我在台湾牢狱的日子 | 张力 | [下载](https://url89.ctfile.com/f/31084289-1357012021-e78d70?p=8866) |\n| 台湾这些年所知道的祖国 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866) |\n| 我们台湾这些年 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011574-9729a0?p=8866) |\n| 我们台湾这些年2 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011571-5ec4cc?p=8866) |\n| 这就是台湾，这才是台湾 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011721-b791c3?p=8866) |\n| 老兵自述：我在台湾40年 | 于秀 | [下载](https://url89.ctfile.com/f/31084289-1357009210-bceb7c?p=8866) |\n| 房思琪的初恋乐园 | 林奕含 | [下载](https://url89.ctfile.com/f/31084289-1357008127-c9eeda?p=8866) |\n| 统一大业（合订本） | 郭晨 | [下载](https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866) |\n| 南渡北归（增订版）套装 | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866) |\n| 戴立宁的传记与文集 | 戴立宁 | [下载](https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866) |\n"
  },
  {
    "path": "md/史书.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 史书\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 二十四史：文白对照版（全12册） |  《二十四史》编委会 | [下载](https://url89.ctfile.com/f/31084289-1375509637-6f1905?p=8866) |\n"
  },
  {
    "path": "md/史学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 史学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新史学&#038;多元对话系列（第一辑） | 陈怀宇等 | [下载](https://url89.ctfile.com/f/31084289-1375509076-0c1223?p=8866) |\n| 民国名家史学典藏系列（共14册） | 吕思勉/郑振铎等 | [下载](https://url89.ctfile.com/f/31084289-1356989620-4f5379?p=8866) |\n| 经与史：康有为与章太炎（全二册） | 汤志钧 | [下载](https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866) |\n| 放言有忌 | 虞云国 | [下载](https://url89.ctfile.com/f/31084289-1357042660-f57275?p=8866) |\n| 資治通鑑·繁體豎排版（胡三省注） | 司馬光編集/胡三省輯注 | [下载](https://url89.ctfile.com/f/31084289-1357030630-44c1c2?p=8866) |\n| 明朝那些事儿（1-9） | 当年明月 | [下载](https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866) |\n"
  },
  {
    "path": "md/史料.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 史料\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 孙宝瑄日记 | 孙宝瑄 | [下载](https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866) |\n| 宋人轶事汇编 | 周勋初/葛渭君/周子来/王华宝 | [下载](https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866) |\n| 掌故（第二集） | 徐俊 | [下载](https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866) |\n"
  },
  {
    "path": "md/史记.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 史记\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 史记（精注全译）（全12册） | 司马迁 | [下载](https://url89.ctfile.com/f/31084289-1375504366-972bdd?p=8866) |\n| 天人之际：薛仁明读《史记》 | 薛仁明 | [下载](https://url89.ctfile.com/f/31084289-1357030213-f27649?p=8866) |\n"
  },
  {
    "path": "md/史诗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 史诗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| A Game of Thrones Series | George R. R. Martin | [下载](https://url89.ctfile.com/f/31084289-1357039252-7f3bcd?p=8866) |\n| 时光之轮全集 | 罗伯特·乔丹 | [下载](https://url89.ctfile.com/f/31084289-1357006192-45f890?p=8866) |\n| 冰与火之歌1-5卷（全15册） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357005802-26b297?p=8866) |\n"
  },
  {
    "path": "md/吃货.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 吃货\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 吃货心理学 | 金圣荣 | [下载](https://url89.ctfile.com/f/31084289-1357043953-b41fb5?p=8866) |\n| 红楼飨宴 | 闻佳/艾格吃饱了 | [下载](https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866) |\n"
  },
  {
    "path": "md/同性.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 同性\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 恋人们的森林 | 森茉莉 | [下载](https://url89.ctfile.com/f/31084289-1356985423-777157?p=8866) |\n| 断代 | 郭强生 | [下载](https://url89.ctfile.com/f/31084289-1357024321-3e4d24?p=8866) |\n| 戴上手套擦泪：02陪伴 | 乔纳斯・嘉德尔 | [下载](https://url89.ctfile.com/f/31084289-1357011460-0422ee?p=8866) |\n| 戴上手套擦泪：03分离 | 乔纳斯・嘉德尔 | [下载](https://url89.ctfile.com/f/31084289-1357011451-c5bdd9?p=8866) |\n| 戴上手套擦泪：01相遇 | 乔纳斯・嘉德尔 | [下载](https://url89.ctfile.com/f/31084289-1357010389-32ec03?p=8866) |\n| 卡罗尔 | 帕特里夏・海史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357008898-271551?p=8866) |\n"
  },
  {
    "path": "md/名家.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 名家\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 原典书坊合辑（全八册） | 鲁迅等 | [下载](https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866) |\n| 外研社双语读库·情感故事书系（套装共66本） | 歌德等 | [下载](https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866) |\n| 傅雷谈艺录及其他 | 傅雷 | [下载](https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866) |\n| 丑牛系列之民国婉约（套装7本） | 江晓英/林杉/臧宪柱/李婍/牧来 | [下载](https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866) |\n| 鉴古晓今更渊博（套装共4册） | 干春松/张晓芒/王阳明/吕思勉/曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357032055-42ab1f?p=8866) |\n"
  },
  {
    "path": "md/名著.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 名著\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 世界经典名著超值套装（80册）（经典译林） | 詹姆斯・乔伊斯等 | [下载](https://url89.ctfile.com/f/31084289-1375498210-cccd8e?p=8866) |\n| 陀思妥耶夫斯基中篇心理小说经典（全4册） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375499635-ae8716?p=8866) |\n| 世界名著大师课合集（套装全7册） | 柳鸣九等 | [下载](https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866) |\n| 四大名著（彩皮版） | 曹雪芹等 | [下载](https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866) |\n| 哈代文集（全7册） | 托马斯・哈代 | [下载](https://url89.ctfile.com/f/31084289-1356989746-ce7666?p=8866) |\n| 四大名著·权威定本（套装4册） | 吴承恩等 | [下载](https://url89.ctfile.com/f/31084289-1356985042-6b7221?p=8866) |\n| 中国四大名著（插图典藏版） | 曹雪芹等 | [下载](https://url89.ctfile.com/f/31084289-1357054390-341814?p=8866) |\n| 世界少年文学经典文库·国外经典篇（全套47册） | 雨果等 | [下载](https://url89.ctfile.com/f/31084289-1357041877-25ba88?p=8866) |\n| 南方与北方（名著名译丛书） | 盖斯凯尔夫人 | [下载](https://url89.ctfile.com/f/31084289-1357040674-6dd07a?p=8866) |\n| 城堡（名著名译丛书） | 弗兰茨・卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1357040650-b9b5bf?p=8866) |\n| 北大名家名著文丛（套装共六册） | 许渊冲等 | [下载](https://url89.ctfile.com/f/31084289-1357040761-0f0cc1?p=8866) |\n| 螺丝在拧紧（译文经典） | 亨利・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357039372-a73b97?p=8866) |\n| 弃儿汤姆·琼斯史（全2册） | 亨利・菲尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357037641-305812?p=8866) |\n| 尼采经典著作及研究丛书（四册全） | 尼采 | [下载](https://url89.ctfile.com/f/31084289-1357036969-f5e56d?p=8866) |\n| 傅雷经典译文全集（共45册） | 巴尔扎克等 | [下载](https://url89.ctfile.com/f/31084289-1357036606-f389f7?p=8866) |\n| 名著名译丛书（第四辑） | 大仲马等 | [下载](https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866) |\n| 名著名译丛书（第五辑） | 梭罗等 | [下载](https://url89.ctfile.com/f/31084289-1357035886-c54a82?p=8866) |\n| 名著名译丛书（第一辑） | 莫泊桑等 | [下载](https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866) |\n| 名著名译丛书（第二辑） | 荷马等 | [下载](https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866) |\n| 约翰·克里斯朵夫（作家榜经典文库） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1357035442-13d259?p=8866) |\n| 堂吉诃德（名著名译丛书） | 塞万提斯 | [下载](https://url89.ctfile.com/f/31084289-1357035391-f2f31c?p=8866) |\n| 外国著名作家的必读短篇小说集（套装8本） | 契诃夫等 | [下载](https://url89.ctfile.com/f/31084289-1357035313-d1c72e?p=8866) |\n| 大卫·科波菲尔（名著名译丛书） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357034719-d1f933?p=8866) |\n| 忏悔录（名著名译丛书） | 卢梭 | [下载](https://url89.ctfile.com/f/31084289-1357034620-54b3ea?p=8866) |\n| 海明威作品全集（套装共17册） | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357034464-b3597e?p=8866) |\n| 一位女士的画像（名著名译丛书） | 亨利・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357034101-54f30a?p=8866) |\n| 三国演义漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866) |\n| 水浒传漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866) |\n| 红楼梦漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866) |\n| 西游记漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866) |\n| 世界十大文学名著（名译珍藏版） | 列夫・托尔斯泰等 | [下载](https://url89.ctfile.com/f/31084289-1357032628-52a9ac?p=8866) |\n| 夏目漱石四部曲 | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1357031974-779200?p=8866) |\n| 世界经典文学名著四师深度解读推荐版（套装七册） | 威廉・福克纳等 | [下载](https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866) |\n| 一生必读的外国文学经典（套装35册）（经典译林） | 詹姆斯・乔伊斯等 | [下载](https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866) |\n| 外国文学名著名译化境文库（套装共9册） | 化境文库编委会 | [下载](https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866) |\n| 齐民要术（全本全注全译） | 贾思勰 | [下载](https://url89.ctfile.com/f/31084289-1357030642-350654?p=8866) |\n| （新华书店十年畅销书系列）世界名著39本合集（下册） | 新华文轩出版集团 | [下载](https://url89.ctfile.com/f/31084289-1357030141-351a91?p=8866) |\n| 世界文学名著合辑（套装共50册） | 莎士比亚等 | [下载](https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866) |\n| 傲慢与偏见（名著译林） | 简・奥斯丁 | [下载](https://url89.ctfile.com/f/31084289-1357029805-90d798?p=8866) |\n| 简·爱（名著译林） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866) |\n| 海底两万里（名著译林） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357029784-a7b283?p=8866) |\n| 格列佛游记（名著译林） | 乔纳森・斯威夫特 | [下载](https://url89.ctfile.com/f/31084289-1357029787-13d237?p=8866) |\n| 钢铁是怎样炼成的（名著译林） | 尼・奥斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866) |\n| 红楼梦（果麦经典） | 曹雪芹 | [下载](https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866) |\n| 三国演义（果麦经典） | 罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866) |\n| 水浒传（果麦经典） | 施耐庵 | [下载](https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866) |\n| 巴黎圣母院（读客经典） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028290-a85451?p=8866) |\n| 巴黎圣母院 | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866) |\n| 巴黎圣母院（世界十大文学名著） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866) |\n| 老人与海（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866) |\n| 神曲（译文名著典藏） | 但丁 | [下载](https://url89.ctfile.com/f/31084289-1357026799-5090ac?p=8866) |\n| 泰戈尔集（全六册） | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866) |\n| 司汤达集（全四册） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866) |\n| 屠格涅夫集（全五册） | 屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1357022206-6b62a3?p=8866) |\n| 陀思妥耶夫斯基集（全九册） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357022209-03d5a0?p=8866) |\n| 契诃夫集（套装共2册） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357022194-6adc55?p=8866) |\n| 左拉集（全四册） | 左拉 | [下载](https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866) |\n| 福楼拜集（套装共3册） | 福楼拜 | [下载](https://url89.ctfile.com/f/31084289-1357022185-594952?p=8866) |\n| 爱的教育 | 艾德蒙多・德・亚米契斯 | [下载](https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866) |\n| 狄更斯集（套装共10册） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866) |\n| 冈察洛夫集（全四册） | 冈察洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866) |\n| 哈代集（共五册） | 哈代 | [下载](https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866) |\n| 歌德集（全五册） | 歌德 | [下载](https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866) |\n| 纪德集（全五册） | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866) |\n| 德莱塞集（全四册） | 德莱塞 | [下载](https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866) |\n| 莱蒙托夫集（全二册） | 莱蒙托夫 | [下载](https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866) |\n| 托尔斯泰集（共6册） | 托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866) |\n| 茨威格集（全2册） | 茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866) |\n| 大仲马集（共八册） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866) |\n| 劳伦斯集（共5册） | 劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866) |\n| 约翰·克利斯朵夫（全4册） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1357014469-ed82dc?p=8866) |\n| 不如归 | 德富芦花 | [下载](https://url89.ctfile.com/f/31084289-1357014187-9c87f4?p=8866) |\n| 三个火枪手 | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357012471-f5ee43?p=8866) |\n| 老人与海 | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357012459-fb55b5?p=8866) |\n| 简·奥斯丁文集（套装共6本） | 简・奥斯丁 | [下载](https://url89.ctfile.com/f/31084289-1357011874-14d4b5?p=8866) |\n| 契诃夫小说全集（全10卷） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357011106-4623e3?p=8866) |\n| 卡拉马佐夫兄弟 | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357010242-7facf4?p=8866) |\n| 漂亮朋友 | 莫泊桑 | [下载](https://url89.ctfile.com/f/31084289-1357009795-28962c?p=8866) |\n| 简·爱 | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357009786-616590?p=8866) |\n| 巴尔扎克精选集16册 | 巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866) |\n| 名利场（套装上下册） | 萨克雷 | [下载](https://url89.ctfile.com/f/31084289-1357008997-bf0775?p=8866) |\n"
  },
  {
    "path": "md/后宫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 后宫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 后宫·甄嬛传（全7册） | 流潋紫 | [下载](https://url89.ctfile.com/f/31084289-1357006210-d08087?p=8866) |\n| 后宫·如懿传（套装全六册） | 流潋紫 | [下载](https://url89.ctfile.com/f/31084289-1357006000-6ed972?p=8866) |\n"
  },
  {
    "path": "md/启蒙.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 启蒙\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 孙子兵法青少版（作家榜经典文库） | 孙武 | [下载](https://url89.ctfile.com/f/31084289-1375493158-bd5029?p=8866) |\n"
  },
  {
    "path": "md/吸血鬼.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 吸血鬼\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 吸血鬼之女 | 阿曼达・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357028350-88de58?p=8866) |\n| 吸血鬼王系列（套装共3册） | J.R.沃德 | [下载](https://url89.ctfile.com/f/31084289-1357017319-773723?p=8866) |\n"
  },
  {
    "path": "md/周鸿祎.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 周鸿祎\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 周鸿祎自述：我的互联网方法论 | 周鸿祎 | [下载](https://url89.ctfile.com/f/31084289-1357005718-39dbe8?p=8866) |\n"
  },
  {
    "path": "md/咖啡.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 咖啡\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知道咖啡系列（套装共3册） | 斯图尔德・李・艾伦 | [下载](https://url89.ctfile.com/f/31084289-1375508371-3eb8b9?p=8866) |\n| 左手咖啡，右手世界 | 马克・彭德格拉斯特 | [下载](https://url89.ctfile.com/f/31084289-1375512196-0468bd?p=8866) |\n| 咖啡新零售 | 场景实验室 | [下载](https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866) |\n| 猫头鹰的咖啡馆 | 佐拉 | [下载](https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866) |\n| 咖啡 咖啡 | 齐鸣 | [下载](https://url89.ctfile.com/f/31084289-1357015963-7019a0?p=8866) |\n| 世界咖啡学 | 韩怀宗 | [下载](https://url89.ctfile.com/f/31084289-1357015366-f832b2?p=8866) |\n| 咖啡咖啡处处开 | 杰里米・托茨/史蒂文・马卡东尼亚 | [下载](https://url89.ctfile.com/f/31084289-1357015165-adf5d0?p=8866) |\n"
  },
  {
    "path": "md/品牌.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 品牌\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 从0到1打造个人品牌 | 王一九 | [下载](https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866) |\n| 超级标签 | 闫跃龙 | [下载](https://url89.ctfile.com/f/31084289-1356997891-01926e?p=8866) |\n| 刷新品牌 | 高端训 | [下载](https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866) |\n| 2小时品牌素养 | 邓德隆 | [下载](https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866) |\n| 可口可乐传 | 马克・彭德格拉斯特 | [下载](https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866) |\n| 品牌洗脑（珍藏版） | 马丁・林斯特龙 | [下载](https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866) |\n"
  },
  {
    "path": "md/哈佛.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 哈佛\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 哈佛极简中国史 | 阿尔伯特・克雷格 | [下载](https://url89.ctfile.com/f/31084289-1357015678-11afee?p=8866) |\n| 我在哈佛的最后一堂课 | 艾瑞克・赛诺威 | [下载](https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866) |\n"
  },
  {
    "path": "md/哥伦布.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 哥伦布\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 哥伦布、大航海时代与地理大发现 | 约翰・S.C.阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866) |\n"
  },
  {
    "path": "md/哪吒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 哪吒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 哪吒：业火红莲 | 马御 | [下载](https://url89.ctfile.com/f/31084289-1357051309-a8695f?p=8866) |\n| 哪吒 | 奚淞 | [下载](https://url89.ctfile.com/f/31084289-1357049710-0661df?p=8866) |\n"
  },
  {
    "path": "md/哲学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 哲学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 前行笔记之耕耘心田 | 希阿荣博堪布 | [下载](https://url89.ctfile.com/f/31084289-1375491703-fada1f?p=8866) |\n| 感知•理知•自我认知 | 陈嘉映 | [下载](https://url89.ctfile.com/f/31084289-1375491952-add17f?p=8866) |\n| 毓老师说系列（共十八册） | 爱新觉罗・毓鋆讲述 | [下载](https://url89.ctfile.com/f/31084289-1375492564-bdeea5?p=8866) |\n| 佛系：中国人的生活智慧 | 果麦文化 | [下载](https://url89.ctfile.com/f/31084289-1375493296-11aa38?p=8866) |\n| 攀登尼采 | 约翰・卡格 | [下载](https://url89.ctfile.com/f/31084289-1375493479-e7baa8?p=8866) |\n| 西方古典学术史（第一卷） | 约翰・埃德温・桑兹 | [下载](https://url89.ctfile.com/f/31084289-1375497643-d4630d?p=8866) |\n| 刘擎西方现代思想讲义 | 刘擎 | [下载](https://url89.ctfile.com/f/31084289-1375498162-6d669a?p=8866) |\n| 哲学100问（套装共3册） | 书杰 | [下载](https://url89.ctfile.com/f/31084289-1375498444-830a41?p=8866) |\n| 西方现代思想家精品译丛（18卷） | 哈耶克等 | [下载](https://url89.ctfile.com/f/31084289-1375498924-4e23e7?p=8866) |\n| 假如猫狗会说话 | 拉斯・弗雷德里克·H.史文德森 | [下载](https://url89.ctfile.com/f/31084289-1375499347-09c400?p=8866) |\n| 人的局限性 | 塞缪尔・约翰生 | [下载](https://url89.ctfile.com/f/31084289-1375499611-c45040?p=8866) |\n| 陈鼓应著作精选合集（套装共6册） | 陈鼓应 | [下载](https://url89.ctfile.com/f/31084289-1375499644-a23b2a?p=8866) |\n| 工作、消费主义和新穷人 | 齐格蒙特・鲍曼 | [下载](https://url89.ctfile.com/f/31084289-1375500127-368b0a?p=8866) |\n| 优雅变老的艺术 | 奥特弗里德・赫费 | [下载](https://url89.ctfile.com/f/31084289-1375500535-92fecd?p=8866) |\n| 如何证明你不是僵尸 | 杰里米・斯特朗姆 | [下载](https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866) |\n| 半小时漫画中国哲学史2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501417-ad432d?p=8866) |\n| 王阳明心学口诀 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1375503745-b8ddbc?p=8866) |\n| 人生答案之书 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375506391-6ca6c8?p=8866) |\n| 狄德罗与自由思考的艺术 | 安德鲁·S.柯伦 | [下载](https://url89.ctfile.com/f/31084289-1375506505-4ae859?p=8866) |\n| 康德文集（注释版） | 伊曼努尔・康德 | [下载](https://url89.ctfile.com/f/31084289-1375508737-9992e1?p=8866) |\n| 思想家和思想导读丛书精选（套装共5册） | 雷克斯・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866) |\n| 只是眷恋这人间烟火（全新修订版） | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375508929-c650ea?p=8866) |\n| 也许你该找个人聊聊 | 洛莉・戈特利布 | [下载](https://url89.ctfile.com/f/31084289-1375508959-595ed0?p=8866) |\n| 文白对照四书五经全本（精注全译） | 李伯钦 | [下载](https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866) |\n| 解剖无聊 | 马克・金维尔 | [下载](https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866) |\n| 虚无时代 | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866) |\n| 柏拉图哲学作品集（套装6册） | 柏拉图 | [下载](https://url89.ctfile.com/f/31084289-1375509394-d47210?p=8866) |\n| 孔子 | 和辻哲郎 | [下载](https://url89.ctfile.com/f/31084289-1375509535-569088?p=8866) |\n| 论自由（果麦经典） | 约翰・穆勒 | [下载](https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866) |\n| 我喜欢生命根底里的宁静 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866) |\n| 拜托，哲学没有那么难 | 小川仁志 | [下载](https://url89.ctfile.com/f/31084289-1375509877-4157bd?p=8866) |\n| 威尔·杜兰特经典系列（套装共4册） | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1375509931-1e8eab?p=8866) |\n| 庄子说什么 | 韩鹏杰 | [下载](https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866) |\n| 自由主义被遗忘的历史 | 海伦娜・罗森布拉特 | [下载](https://url89.ctfile.com/f/31084289-1375510303-b7bcd2?p=8866) |\n| 易中天谈美 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1375510363-f6a67e?p=8866) |\n| 关于痛苦的七堂哲学课 | 斯科特・塞缪尔森 | [下载](https://url89.ctfile.com/f/31084289-1375510948-7b1f45?p=8866) |\n| 认识世界：古代与中世纪哲学 | 理查德・大卫・普莱希特 | [下载](https://url89.ctfile.com/f/31084289-1375511017-ad42d5?p=8866) |\n| 超现实主义宣言 | 安德烈・布勒东 | [下载](https://url89.ctfile.com/f/31084289-1375511032-8e425b?p=8866) |\n| 承认：一部欧洲观念史 | 阿克塞尔・霍耐特 | [下载](https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866) |\n| 当你学会独处 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375511314-f0d8b4?p=8866) |\n| 历史的用途与滥用 | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866) |\n| 让孩子像哲学家一样会思考 | 张玮/沈文婕 | [下载](https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866) |\n| 做一个清醒的现代人 | 刘擎 | [下载](https://url89.ctfile.com/f/31084289-1375511419-5571b1?p=8866) |\n| 伯林传 | 叶礼庭 | [下载](https://url89.ctfile.com/f/31084289-1375512067-e53a08?p=8866) |\n| 应向花园安放灵魂 | 达蒙・扬 | [下载](https://url89.ctfile.com/f/31084289-1375512184-8c90b3?p=8866) |\n| 价值的理由 | 陈嘉映 | [下载](https://url89.ctfile.com/f/31084289-1375512478-959447?p=8866) |\n| 和狗狗的十二次哲学漫步 | 安东尼・麦高恩 | [下载](https://url89.ctfile.com/f/31084289-1375512505-d10692?p=8866) |\n| 重来也不会好过现在 | 基兰・塞蒂亚 | [下载](https://url89.ctfile.com/f/31084289-1375513138-ab2d02?p=8866) |\n| 简明哲学逻辑思维读本（套装共5册） | 威廉姆・韦斯利・库克等 | [下载](https://url89.ctfile.com/f/31084289-1375513669-9bcbcb?p=8866) |\n| 人论（果麦经典） | 恩斯特・卡西尔 | [下载](https://url89.ctfile.com/f/31084289-1375513714-66cf91?p=8866) |\n| 大众哲学 | 艾思奇 | [下载](https://url89.ctfile.com/f/31084289-1357004557-14bc8a?p=8866) |\n| 文明及其不满（果麦经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357004269-ea87b0?p=8866) |\n| 鳗鱼的旅行 | 帕特里克・斯文松 | [下载](https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866) |\n| 冯友兰哲思录 | 冯友兰 | [下载](https://url89.ctfile.com/f/31084289-1357004101-553863?p=8866) |\n| 布莱希特作品集（套装共四册） | 贝托尔特・布莱希特 | [下载](https://url89.ctfile.com/f/31084289-1357004098-26f5ec?p=8866) |\n| 神圣的存在 | 米尔恰・伊利亚德 | [下载](https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866) |\n| 魔术师时代 | 沃尔夫拉姆・艾伦伯格 | [下载](https://url89.ctfile.com/f/31084289-1357003984-f36531?p=8866) |\n| 形而上学俱乐部 | 路易斯・梅南 | [下载](https://url89.ctfile.com/f/31084289-1357003579-09071b?p=8866) |\n| 欧盟的危机 | 尤尔根・哈贝马斯 | [下载](https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866) |\n| 舍勒作品集（套装共七册） | 马克思・舍勒 | [下载](https://url89.ctfile.com/f/31084289-1357003123-717cf7?p=8866) |\n| 民主的不满 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866) |\n| 大众的反叛 | 何塞・奥尔特加・伊・加塞特 | [下载](https://url89.ctfile.com/f/31084289-1357002775-9ae93e?p=8866) |\n| 论爱美 | 夏尔・佩潘 | [下载](https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866) |\n| 哲思与海 | 戴维・法雷尔・克雷尔 | [下载](https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866) |\n| 吉尔·德·莱斯案 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866) |\n| 金岳霖哲学三书 | 金岳霖 | [下载](https://url89.ctfile.com/f/31084289-1357001944-360496?p=8866) |\n| 目光 | 陶勇 | [下载](https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866) |\n| 理性的边界 | 诺桑・亚诺夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357001614-cc8dce?p=8866) |\n| 性经验史（3卷本） | 米歇尔・福柯 | [下载](https://url89.ctfile.com/f/31084289-1357001113-170e8b?p=8866) |\n| 娱乐何为 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357000798-72f1c7?p=8866) |\n| 不安之书 | 费尔南多・佩索阿 | [下载](https://url89.ctfile.com/f/31084289-1357000333-bab6a5?p=8866) |\n| 解码时间 | 阿德里安・巴登 | [下载](https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866) |\n| 他者的消失 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357000279-32504e?p=8866) |\n| 政治哲学 | 乔纳森・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356999835-300928?p=8866) |\n| 倦怠社会 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1356999751-ac5097?p=8866) |\n| 道德哲学 | 乔纳森・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356999415-d9e5bb?p=8866) |\n| 读书与书籍 | 叔本华 | [下载](https://url89.ctfile.com/f/31084289-1356999265-48afc3?p=8866) |\n| 人人都该懂的认识论 | 罗伯特・马丁 | [下载](https://url89.ctfile.com/f/31084289-1356999046-10db8e?p=8866) |\n| 洞见：从科学到哲学，打开人类的认知真相 | 罗伯特・赖特 | [下载](https://url89.ctfile.com/f/31084289-1356999022-8e84da?p=8866) |\n| 人人都该懂的批判性思维 | 莎伦・M. 凯 | [下载](https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866) |\n| 人人都该懂的美学 | 查尔斯・塔利亚费罗 | [下载](https://url89.ctfile.com/f/31084289-1356998848-bdbcb5?p=8866) |\n| 查拉图斯特拉如是说（果麦经典） | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1356997918-4ecd27?p=8866) |\n| 春蚕吐丝 | 陈鼓应 | [下载](https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866) |\n| 伊雍：自性现象学研究 | C. G. 荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995866-2fee9e?p=8866) |\n| 移情心理学 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995587-b19864?p=8866) |\n| 东方的智慧 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866) |\n| 走出唯一真理观 | 陈嘉映 | [下载](https://url89.ctfile.com/f/31084289-1356995503-31ccb1?p=8866) |\n| 炼金术之梦 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866) |\n| 半小时漫画中国哲学史 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866) |\n| 相约星期二 | 米奇・阿尔博姆 | [下载](https://url89.ctfile.com/f/31084289-1356995149-c4bf6c?p=8866) |\n| 艺术哲学（作家榜经典文库） | H. A. 丹纳 | [下载](https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866) |\n| 你以为你以为的就是你以为的吗？ | 朱利安・巴吉尼/杰里米・斯唐鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866) |\n| 你以为你以为的就是你以为的吗？2 | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866) |\n| 心：稻盛和夫的一生嘱托 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866) |\n| 哲学与人：20世纪西方哲学精选（套装共5本） | 卡尔・雅斯贝斯等 | [下载](https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866) |\n| 如何形成清晰的观点 | 查尔斯·S.皮尔士 | [下载](https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866) |\n| 岩波：日本社会写实精选系列 | 森冈孝二等 | [下载](https://url89.ctfile.com/f/31084289-1356993460-3e8452?p=8866) |\n| 制造儒家 | 詹启华 | [下载](https://url89.ctfile.com/f/31084289-1356992017-ecbdd9?p=8866) |\n| 哲学100问 | 书杰 | [下载](https://url89.ctfile.com/f/31084289-1356991753-47c268?p=8866) |\n| 伟大的思想（中英双语版·全48册） | 马可・波罗等 | [下载](https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866) |\n| 西方的智慧（全译本） | 伯特兰・罗素 | [下载](https://url89.ctfile.com/f/31084289-1356990757-a6caa2?p=8866) |\n| 中国人生哲学 | 方东美 | [下载](https://url89.ctfile.com/f/31084289-1356990337-fd3773?p=8866) |\n| 世界边缘的秘密 | 光子 | [下载](https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866) |\n| 基本收入·鹈鹕丛书 | 盖伊・斯坦丁 | [下载](https://url89.ctfile.com/f/31084289-1356990058-b0a6de?p=8866) |\n| 舍勒作品系列（全七册） | 马克思・舍勒 | [下载](https://url89.ctfile.com/f/31084289-1356990016-2b1ab0?p=8866) |\n| 思维魔方 | 陈波 | [下载](https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866) |\n| 概念与范畴 | 以赛亚・伯林爵士 | [下载](https://url89.ctfile.com/f/31084289-1356989650-26d77f?p=8866) |\n| 以赛亚·伯林书信集（卷1） | 以赛亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866) |\n| 曾国藩家训（全本全注全译） | 檀作文 | [下载](https://url89.ctfile.com/f/31084289-1356989560-a0570d?p=8866) |\n| 莱布尼茨、牛顿与发明时间 | 托马斯・德・帕多瓦 | [下载](https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866) |\n| 学术与政治（理想国新版） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356988129-ec950b?p=8866) |\n| 智慧与魔咒 | 塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866) |\n| 物的追问（二十世纪西方哲学经典） | 马丁・海德格尔 | [下载](https://url89.ctfile.com/f/31084289-1356985936-6e200a?p=8866) |\n| 维特根斯坦说逻辑与语言 | 维特根斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356985915-d52a79?p=8866) |\n| 理与人（二十世纪西方哲学经典） | 德里克・帕菲特 | [下载](https://url89.ctfile.com/f/31084289-1356985840-14e9cf?p=8866) |\n| 苏菲的哲学课 | 多米尼克・贾尼科 | [下载](https://url89.ctfile.com/f/31084289-1356985762-968eb9?p=8866) |\n| 皮尔士论符号 （二十世纪西方哲学经典） | 查尔斯・皮尔士 | [下载](https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866) |\n| 心、脑与科学（二十世纪西方哲学经典） | 约翰・塞尔 | [下载](https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866) |\n| 现象学的方法（二十世纪西方哲学经典） | 埃德蒙德・胡塞尔 | [下载](https://url89.ctfile.com/f/31084289-1356985603-202a69?p=8866) |\n| 神性的温柔 | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866) |\n| 客观知识（二十世纪西方哲学经典） | 卡尔・波普尔 | [下载](https://url89.ctfile.com/f/31084289-1356985501-f55e56?p=8866) |\n| 人的大地（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866) |\n| 像哲学家一样生活 | 威廉·B.欧文 | [下载](https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866) |\n| 历史与真理（二十世纪西方哲学经典） | 保罗・利科 | [下载](https://url89.ctfile.com/f/31084289-1356985459-26b47c?p=8866) |\n| 享乐主义宣言 | 米歇尔・翁福雷 | [下载](https://url89.ctfile.com/f/31084289-1356985336-4cdc66?p=8866) |\n| 活的隐喻（二十世纪西方哲学经典） | 保罗・利科 | [下载](https://url89.ctfile.com/f/31084289-1356985294-b76e94?p=8866) |\n| 猜想与反驳（二十世纪西方哲学经典） | 卡尔・波普尔 | [下载](https://url89.ctfile.com/f/31084289-1356985108-70772e?p=8866) |\n| 坛经（全本全注全译） | 尚荣 | [下载](https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866) |\n| 简朴的哲学 | 埃默里斯・韦斯特科特 | [下载](https://url89.ctfile.com/f/31084289-1356984784-db9149?p=8866) |\n| 新教伦理与资本主义精神 | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866) |\n| 无穷的开始 | 戴维・多伊奇 | [下载](https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866) |\n| 闲散的哲学 | 布莱恩・奥康纳 | [下载](https://url89.ctfile.com/f/31084289-1356983638-36d26e?p=8866) |\n| 哲学的指引 | 马西莫・匹格里奇 | [下载](https://url89.ctfile.com/f/31084289-1356982504-6a843c?p=8866) |\n| 道德经说什么2 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1356982450-7b0f04?p=8866) |\n| 艺术哲学 | 丹纳 | [下载](https://url89.ctfile.com/f/31084289-1356982453-5594f6?p=8866) |\n| 老子（全本全注全译） | 老子 | [下载](https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866) |\n| 异端：进击的哲学现场 | 史蒂文・纳德勒 | [下载](https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866) |\n| 选择生命 | 池田大作/阿诺德・约瑟夫・汤因比 | [下载](https://url89.ctfile.com/f/31084289-1357054378-95bb9a?p=8866) |\n| 六韬（全本全注全译） | 陈曦 | [下载](https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866) |\n| 庄子现代版（最新修订版） | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357053886-547f3d?p=8866) |\n| 四书五经（全本全注全译） | 陈晓芬/徐儒宗 | [下载](https://url89.ctfile.com/f/31084289-1357053883-1b6ff5?p=8866) |\n| 德里达（牛津通识读本） | 西蒙・格伦迪宁 | [下载](https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866) |\n| 德国文学（牛津通识读本） | 尼古拉斯・博伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866) |\n| 与神对话（全五卷） | 尼尔・唐纳德・沃尔什 | [下载](https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866) |\n| 魏晋玄学史（第二版） | 余敦康 | [下载](https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866) |\n| 批判理论（牛津通识读本） | 斯蒂芬・埃里克・布朗纳 | [下载](https://url89.ctfile.com/f/31084289-1357053451-652219?p=8866) |\n| 无神论（牛津通识读本） | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866) |\n| 哲学的底色 | 提默・艾德勒 | [下载](https://url89.ctfile.com/f/31084289-1357053025-11c135?p=8866) |\n| 景观社会 | 居伊・德波 | [下载](https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866) |\n| 黑格尔的精神现象学 | 马丁・海德格尔 | [下载](https://url89.ctfile.com/f/31084289-1357052602-06e6fe?p=8866) |\n| 黑格尔 | 马丁・海德格尔 | [下载](https://url89.ctfile.com/f/31084289-1357052539-7f6be3?p=8866) |\n| 哲学原来很有趣 | 刘帅 | [下载](https://url89.ctfile.com/f/31084289-1357052497-71e6ec?p=8866) |\n| 每个人的亚里士多德 | 莫提默・艾德勒 | [下载](https://url89.ctfile.com/f/31084289-1357051708-d0a98b?p=8866) |\n| 不可能性 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866) |\n| 论语今读（增订版） | 李泽厚 | [下载](https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866) |\n| 老子疏解 | 黄克剑 | [下载](https://url89.ctfile.com/f/31084289-1357051570-dc56d2?p=8866) |\n| 卡尔·马克思：生平与环境 | 以赛亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1357051525-3b9407?p=8866) |\n| 逻辑学入门很简单 | 兰晓华 | [下载](https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866) |\n| 和伊壁鸠鲁一起旅行 | 丹尼尔・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866) |\n| 中国问题 | 伯特兰・罗素 | [下载](https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866) |\n| 极简哲学史 | 莱斯莉・莱文 | [下载](https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866) |\n| 哲学是怎样炼成的 | 蒂莫西・威廉森 | [下载](https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866) |\n| 辩护的政治 | 陈肖生 | [下载](https://url89.ctfile.com/f/31084289-1357049620-9477eb?p=8866) |\n| 摆脱共情 | 保罗・布卢姆 | [下载](https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866) |\n| 几何原本（果麦经典） | 欧几里得 | [下载](https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866) |\n| 世界上最神奇的24堂课 | 查尔斯・哈奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866) |\n| 《荒岛》及其他文本 | 吉尔・德勒兹/大卫・拉普雅德 | [下载](https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866) |\n| 论人类的认识（校勘全译本） | 约翰・洛克 | [下载](https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866) |\n| 罗兰·巴尔特文集（套装） | 罗兰・巴尔特 | [下载](https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866) |\n| 哲学的迷途 | 莫提默・艾德勒 | [下载](https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866) |\n| 缺爱 | 罗伯特・纳伯格 | [下载](https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866) |\n| 爱默生和中国 | 钱满素 | [下载](https://url89.ctfile.com/f/31084289-1357048462-5cb91a?p=8866) |\n| 果敢力 | 蒋齐仕 | [下载](https://url89.ctfile.com/f/31084289-1357047928-5fd17a?p=8866) |\n| 打开哲学家的正确方式 | 畠山创 | [下载](https://url89.ctfile.com/f/31084289-1357047841-67f2ce?p=8866) |\n| 法言（全本全注全译） | 扬雄 | [下载](https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866) |\n| 稻盛和夫的人生哲学 | 北康利 | [下载](https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866) |\n| 被左右的独立思维 | 塔利・沙罗特 | [下载](https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866) |\n| 暴力拓扑学 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357045756-006b45?p=8866) |\n| 人生十二法则 | 乔丹・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866) |\n| 山海经（全本全注全译） | 方韬译注 | [下载](https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866) |\n| 从鹏扶摇到蝶蹁跹 | 崔宜明 | [下载](https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866) |\n| 20世纪思想史：从弗洛伊德到互联网 | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866) |\n| 哲学史讲演录（4卷） | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866) |\n| 马克思博士论文 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044634-5ea046?p=8866) |\n| 每个行业都离不开心理学（套装共5册） | 王梓等 | [下载](https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866) |\n| 黑格尔学述 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044370-525bea?p=8866) |\n| 现代西方哲学讲演集 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044244-278ff8?p=8866) |\n| 五十年来的中国哲学 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044184-1eb4a5?p=8866) |\n| 黑格尔早期神学著作 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044037-106386?p=8866) |\n| 一日一善（套装全4册） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866) |\n| 黑格尔哲学讲演集 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357043905-0f7e12?p=8866) |\n| 叛逆的思想家 | 皮耶尔乔治・奥迪弗雷迪 | [下载](https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866) |\n| 哈耶克作品（共6册） | 弗里德里希・奥古斯特・哈耶克 | [下载](https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866) |\n| 康德《纯粹理性批判》句读 | 邓晓芒 | [下载](https://url89.ctfile.com/f/31084289-1357043740-d2094f?p=8866) |\n| 近代唯心论简释 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866) |\n| 小逻辑 | 黑格尔 | [下载](https://url89.ctfile.com/f/31084289-1357043518-deed3d?p=8866) |\n| 智慧书（作家榜经典文库） | 巴尔塔萨尔・格拉西安 | [下载](https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866) |\n| 伦理学知性改进论 | 斯宾诺莎 | [下载](https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866) |\n| 沉思录（译文经典） | 马可・奥勒留 | [下载](https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866) |\n| 论自愿为奴（译文经典） | 艾蒂安・德・拉・波埃西 | [下载](https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866) |\n| 时代的精神状况（译文经典） | 卡尔・雅斯贝斯 | [下载](https://url89.ctfile.com/f/31084289-1357042081-4c4aec?p=8866) |\n| 苏格拉底之死（译文经典） | 柏拉图 | [下载](https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866) |\n| 心灵、自我与社会（译文经典） | 米德 | [下载](https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866) |\n| 新教伦理与资本主义精神（译文经典） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866) |\n| 自我与本我（译文经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866) |\n| 西方的没落（译林人文精选） | 奥斯瓦尔德・斯宾格勒 | [下载](https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866) |\n| 爱欲与文明（译文经典） | 赫伯特・马尔库塞 | [下载](https://url89.ctfile.com/f/31084289-1357039576-5787a8?p=8866) |\n| 安静 | 艾林・卡格 | [下载](https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866) |\n| 空间的诗学（译文经典） | 加斯东・巴什拉 | [下载](https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866) |\n| 梁冬说庄子（套装共九册） | 梁冬 | [下载](https://url89.ctfile.com/f/31084289-1357039057-19d5a8?p=8866) |\n| 新马克思主义导引 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357038226-094d97?p=8866) |\n| 意会时刻 | 克里斯琴・马兹比尔格/米凯尔・拉斯马森 | [下载](https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866) |\n| 实用主义和语用论 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866) |\n| 存在主义 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357037851-de25ea?p=8866) |\n| 消费社会 | 让・鲍德里亚 | [下载](https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866) |\n| 罗素哲学概论 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357037785-1e18fb?p=8866) |\n| 结构主义 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357037434-aff26f?p=8866) |\n| 幸福哲学书 | 格雷琴・鲁宾 | [下载](https://url89.ctfile.com/f/31084289-1357036993-8eb226?p=8866) |\n| 尼采经典著作及研究丛书（四册全） | 尼采 | [下载](https://url89.ctfile.com/f/31084289-1357036969-f5e56d?p=8866) |\n| 柏拉图和鸭嘴兽一起去酒吧 | 托马斯・卡斯卡特/丹尼尔・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866) |\n| 西方政治思想的社会史：公民到领主 | 艾伦・梅克辛斯・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866) |\n| 科学元典套装（四） | 约翰・布鲁德斯・华生等 | [下载](https://url89.ctfile.com/f/31084289-1357035742-b3a5b1?p=8866) |\n| 人人都该懂的启蒙运动 | 吉隆・・奥哈拉 | [下载](https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866) |\n| 人人都该懂的科学哲学 | 杰弗里・戈勒姆 | [下载](https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866) |\n| 儒学小史 | 干春松 | [下载](https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866) |\n| 科学元典套装（三） | 开普勒等 | [下载](https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866) |\n| 世界因何美妙而优雅地运行 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866) |\n| 人人都能梦的解析 | 高铭 | [下载](https://url89.ctfile.com/f/31084289-1357035280-e7c7d0?p=8866) |\n| 科学元典套装（一） | 摩尔根等 | [下载](https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866) |\n| 科学元典套装（二） | 玛丽・居里等 | [下载](https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866) |\n| 异类心理学 | 小川仁志 | [下载](https://url89.ctfile.com/f/31084289-1357035106-50ba06?p=8866) |\n| 堕落 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034953-de3083?p=8866) |\n| 反抗者 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034860-79f647?p=8866) |\n| 南怀瑾著作全收录 | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866) |\n| 西西弗神话 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866) |\n| 我是谁？如果有我，有几个我？ | 理查德・大卫・普列斯特 | [下载](https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866) |\n| 道德经说什么：一部教你做得道之人的生命学宝典 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866) |\n| 千古大儒：王阳明 | 周明河 | [下载](https://url89.ctfile.com/f/31084289-1357033831-44c7ed?p=8866) |\n| 时间的秩序 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866) |\n| 深夜加油站遇见苏格拉底 | 丹・米尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866) |\n| 在群中 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357033090-248e22?p=8866) |\n| 爱欲之死 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357033084-abadc2?p=8866) |\n| 精神政治学 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357033087-6bd310?p=8866) |\n| 论人类不平等的起源和基础（果麦经典） | 让-雅克・卢梭 | [下载](https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866) |\n| 西方哲学常识 | 菲利普・斯托克斯 | [下载](https://url89.ctfile.com/f/31084289-1357032880-081e2d?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第五辑） | 雅各布・布克哈特等 | [下载](https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第六辑） | 乔治・艾略特等 | [下载](https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第三辑） | 爱德华・吉本等 | [下载](https://url89.ctfile.com/f/31084289-1357032616-894226?p=8866) |\n| 中国哲学简史 | 冯友兰 | [下载](https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第四辑） | 米歇尔・德・蒙田等 | [下载](https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866) |\n| 人生学校：阿兰·德波顿的生活哲学课（套装共5册） | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357032523-3b4094?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第一辑） | 亨利・戴维・梭罗等 | [下载](https://url89.ctfile.com/f/31084289-1357032496-a4b82d?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第二辑） | 米歇尔・德・蒙田等 | [下载](https://url89.ctfile.com/f/31084289-1357032466-45f355?p=8866) |\n| 一神论的影子 | 赵汀阳/阿兰・乐比雄 | [下载](https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866) |\n| 色情 | 乔治・巴塔耶 | [下载](链接未找到) |\n| 被诅咒的部分 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866) |\n| 梁冬说庄子系列（套装共六册） | 梁冬 | [下载](https://url89.ctfile.com/f/31084289-1357031500-73ab77?p=8866) |\n| 人类愚蠢辞典 | 皮耶尔乔治・奥迪弗雷迪  | [下载](https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866) |\n| 表象与本质 | 侯世达/桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866) |\n| 叔本华哲学经典（套装共5册） | 叔本华 | [下载](https://url89.ctfile.com/f/31084289-1357030699-1c8a13?p=8866) |\n| 心理学经典必读系列（套装共5册） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866) |\n| 阅读蒙田，是为了生活 | 萨拉・贝克韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866) |\n| 单独中的洞见 | 张方宇 | [下载](https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866) |\n| 打开：周濂的100堂西方哲学课 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866) |\n| 学会创新 | 罗德・贾金斯 | [下载](https://url89.ctfile.com/f/31084289-1357030234-48a5cc?p=8866) |\n| 瞩望新轴心时代 | 汤一介 | [下载](https://url89.ctfile.com/f/31084289-1357030210-9be232?p=8866) |\n| 哲学的故事 | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357030186-7ef3cf?p=8866) |\n| 思维的艺术 | 延斯・森特根 | [下载](https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866) |\n| 翁贝托·埃科作品系列套装（共6册） | 翁贝托・埃科 | [下载](https://url89.ctfile.com/f/31084289-1357030105-3621bc?p=8866) |\n| 直面人生的困惑 | 郭继承 | [下载](https://url89.ctfile.com/f/31084289-1357029922-c7333c?p=8866) |\n| 华杉讲透王阳明《传习录》 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357029910-ae3bf9?p=8866) |\n| 熊逸书院（套装共8册） | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357029850-c5adf5?p=8866) |\n| 王阳明大传：知行合一的心学智慧（全新修订版） | 冈田武彦 | [下载](https://url89.ctfile.com/f/31084289-1357029652-25187b?p=8866) |\n| 书写的疗愈力量（原书第3版） | 詹姆斯・彭尼贝克 | [下载](https://url89.ctfile.com/f/31084289-1357029613-545650?p=8866) |\n| 小王子的领悟 | 周保松 | [下载](https://url89.ctfile.com/f/31084289-1357029604-147daf?p=8866) |\n| 上帝笑了99次 | 彼得・凯弗 | [下载](https://url89.ctfile.com/f/31084289-1357029406-b5a217?p=8866) |\n| 论自由（理想国新版） | 约翰・穆勒 | [下载](https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866) |\n| 资本论（套装共3册） | 中共中央马克思恩格斯列宁斯大林著作编译局 | [下载](https://url89.ctfile.com/f/31084289-1357029451-0ebaad?p=8866) |\n| 周国平尼采译著系列 | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1357029268-e62a4a?p=8866) |\n| 人人都该懂的哲学 | 彼得・卡夫 | [下载](https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866) |\n| 人生的智慧（作家榜经典文库） | 阿图尔・叔本华 | [下载](https://url89.ctfile.com/f/31084289-1357029181-2bb63c?p=8866) |\n| 马克思与《资本论》 | 大卫・哈维 | [下载](https://url89.ctfile.com/f/31084289-1357029055-50e394?p=8866) |\n| 美学讲稿 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357029019-43518f?p=8866) |\n| 瓦格纳事件 | 弗雷德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1357028971-e22892?p=8866) |\n| 卡尔霍恩文集（上、下） | 约翰·C.卡尔霍恩 | [下载](https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866) |\n| 逻辑十九讲（美国新思想运动之父的逻辑学入门读物） | 威廉・沃克・阿特金森 | [下载](https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866) |\n| 尼采哲学经典（套装共5册） | 尼采 | [下载](https://url89.ctfile.com/f/31084289-1357028356-b09317?p=8866) |\n| 箭术与禅心 | 奥根・赫立格尔 | [下载](https://url89.ctfile.com/f/31084289-1357028221-f5198d?p=8866) |\n| 好的爱情 | 陈果 | [下载](https://url89.ctfile.com/f/31084289-1357027975-a6a097?p=8866) |\n| 第二性（合卷本） | 西蒙娜・德・波伏瓦 | [下载](https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866) |\n| 当下的启蒙 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357027996-39914b?p=8866) |\n| 单向度的人 | 赫伯特・马尔库塞 | [下载](https://url89.ctfile.com/f/31084289-1357027930-c2ca75?p=8866) |\n| 罗兰·巴特文选（全6册） | 罗兰・巴特 | [下载](https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866) |\n| 平常的恶 | 朱迪丝·N.施克莱 | [下载](https://url89.ctfile.com/f/31084289-1357027648-d9850c?p=8866) |\n| 罗素传（全2册） | 瑞・蒙克 | [下载](https://url89.ctfile.com/f/31084289-1357027564-a1949f?p=8866) |\n| 权力意志与永恒轮回（译文经典） | 弗里德里希·威廉·尼采 | [下载](https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866) |\n| 理想国（译文经典） | 柏拉图 | [下载](https://url89.ctfile.com/f/31084289-1357027216-6c81c9?p=8866) |\n| 音乐符号 | 塔拉斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866) |\n| 世界哲学简史 | 罗伯特·C·所罗门等 | [下载](https://url89.ctfile.com/f/31084289-1357026994-8f39ae?p=8866) |\n| 自立 | 拉尔夫・瓦尔多・爱默生 | [下载](https://url89.ctfile.com/f/31084289-1357026919-bdb3e9?p=8866) |\n| 世界观（原书第2版） | 理查德・德威特 | [下载](https://url89.ctfile.com/f/31084289-1357026505-be18f3?p=8866) |\n| 撼动世界史的思想家格斗 | 茂木诚 | [下载](https://url89.ctfile.com/f/31084289-1357026415-5855e5?p=8866) |\n| 我们时代的精神状况 | 海因里希・盖瑟尔伯格 | [下载](https://url89.ctfile.com/f/31084289-1357026277-82d739?p=8866) |\n| 生命之轮 | 伊丽莎白・库伯勒-罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866) |\n| 当美拯救我们 | 夏尔・佩潘 | [下载](https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866) |\n| 行走，一堂哲学课 | 弗里德里克・格鲁 | [下载](https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866) |\n| 幸福，一次哲学之旅 | 弗雷德里克・勒诺瓦 | [下载](https://url89.ctfile.com/f/31084289-1357025566-82e0dc?p=8866) |\n| 世界第一好懂的哲学课（修订版） | 小川仁志 | [下载](https://url89.ctfile.com/f/31084289-1357025569-9209ca?p=8866) |\n| 知中9·禅的入门 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866) |\n| 性学三论（果麦经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357024942-0c5d1b?p=8866) |\n| 天幕红尘 | 豆豆 | [下载](https://url89.ctfile.com/f/31084289-1357024933-e961b6?p=8866) |\n| 意识光谱 | 肯・威尔伯 | [下载](https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866) |\n| 生活的哲学 | 朱尔斯・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866) |\n| 杜威选集（5卷本） | 刘放桐等 | [下载](https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866) |\n| 中央帝国的哲学密码 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866) |\n| 哲学·科学·常识 | 陈嘉映 | [下载](https://url89.ctfile.com/f/31084289-1357024279-dcadb0?p=8866) |\n| 极简西方哲学史 | 杰瑞米・斯坦格鲁/詹姆斯・加维 | [下载](https://url89.ctfile.com/f/31084289-1357024156-e74da6?p=8866) |\n| 直觉泵和其他思考工具 |  丹尼尔・丹尼特 | [下载](https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866) |\n| 东西之道 | 汉斯・格奥尔格・梅勒 | [下载](https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866) |\n| 理性、美德和灵魂的声音 | 西塞罗 | [下载](https://url89.ctfile.com/f/31084289-1357023961-69cf76?p=8866) |\n| 中国哲学常识 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357023640-fe3bfc?p=8866) |\n| 别笑，我是正经哲学书 | 富增章成 | [下载](https://url89.ctfile.com/f/31084289-1357023448-35b5d1?p=8866) |\n| 简单的逻辑学 | 麦克伦尼 | [下载](https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866) |\n| 朝话 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866) |\n| 现实主义者的乌托邦 | 鲁特格尔・布雷格曼 | [下载](https://url89.ctfile.com/f/31084289-1357023271-cc8268?p=8866) |\n| 哲学之美 | 艾克哈特・玛腾斯 | [下载](https://url89.ctfile.com/f/31084289-1357023118-bb94c1?p=8866) |\n| 超级智能 | 尼克・波斯特洛姆 | [下载](https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866) |\n| 恶的科学 | 西蒙・巴伦-科恩 | [下载](https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866) |\n| 无政府、国家和乌托邦 | 罗伯特・诺齐克 | [下载](https://url89.ctfile.com/f/31084289-1357022605-61758e?p=8866) |\n| 宪法学说（修订译本） | 卡尔・施米特 | [下载](https://url89.ctfile.com/f/31084289-1357022602-de44b4?p=8866) |\n| 我与你（果麦经典） | 马丁・布伯 | [下载](https://url89.ctfile.com/f/31084289-1357022446-f472b6?p=8866) |\n| 哲学起步 | 邓晓芒 | [下载](https://url89.ctfile.com/f/31084289-1357022341-909e43?p=8866) |\n| 本书书名无法描述本书内容 | 埃里克・卡普兰 | [下载](https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866) |\n| 非理性的人（译文经典） | 威廉・巴雷特 | [下载](https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866) |\n| 时间重生 | 李・斯莫林 | [下载](https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866) |\n| 认知三部曲 | 理查德・尼斯贝特 | [下载](https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866) |\n| 知行合一王阳明2：四句话读懂阳明心学 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866) |\n| 知行合一王阳明3：王阳明家训 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866) |\n| 传习录 | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866) |\n| 人类存在的意义 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866) |\n| 爱的博弈 | 约翰・戈特曼 | [下载](https://url89.ctfile.com/f/31084289-1357021213-4c529b?p=8866) |\n| 中西方哲学史（套装共2册） | 冯友兰等 | [下载](https://url89.ctfile.com/f/31084289-1357021030-097825?p=8866) |\n| Illuminations | 瓦尔特・本雅明 | [下载](https://url89.ctfile.com/f/31084289-1357020604-dce4aa?p=8866) |\n| 卸下心头重担 | 阿鲁老和尚 | [下载](https://url89.ctfile.com/f/31084289-1357020496-159444?p=8866) |\n| 看，这是哲学 | 唐纳德・帕尔默 | [下载](https://url89.ctfile.com/f/31084289-1357020112-4d9cd4?p=8866) |\n| 小书馆系列第一辑（共8册） | 冯友兰/瞿蜕园/俞剑华 | [下载](https://url89.ctfile.com/f/31084289-1357020055-b5b7a8?p=8866) |\n| 科学学习：斯坦福黄金学习法则 | 丹尼尔 L. 施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357020025-038e41?p=8866) |\n| 一个瑜伽行者的自传 | 帕拉宏撒・尤迦南达 | [下载](https://url89.ctfile.com/f/31084289-1357019968-e117f9?p=8866) |\n| 思想史：从火到弗洛伊德（全二册） | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866) |\n| 思想的力量 | 布鲁克・诺埃尔・穆尔/肯尼思・布鲁德 | [下载](https://url89.ctfile.com/f/31084289-1357019563-28ba63?p=8866) |\n| 艾柯谈美丑（套装共2册） | 翁贝托・艾柯 | [下载](https://url89.ctfile.com/f/31084289-1357019590-c15b80?p=8866) |\n| 哲学家们都干了些什么？（2015年全新修订版） | 林欣浩 | [下载](https://url89.ctfile.com/f/31084289-1357019287-bbfe16?p=8866) |\n| 中信国学大典：哲学宗教（上册） | 周锡䪖等 | [下载](https://url89.ctfile.com/f/31084289-1357019221-2ec92b?p=8866) |\n| 中信国学大典：哲学宗教（下册） | 杨祖汉等 | [下载](https://url89.ctfile.com/f/31084289-1357019209-42a853?p=8866) |\n| Why Buddhism is True | Robert Wright | [下载](https://url89.ctfile.com/f/31084289-1357019161-b5bee8?p=8866) |\n| 哲学的快乐 | 罗伯特・所罗门 | [下载](https://url89.ctfile.com/f/31084289-1357019143-2bee90?p=8866) |\n| 存在主义咖啡馆 | 莎拉・贝克韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357019089-4e2eda?p=8866) |\n| 人生的智慧：如何才能幸福度过一生 | 阿图尔・叔本华 | [下载](https://url89.ctfile.com/f/31084289-1357018105-7725a4?p=8866) |\n| 名家名译·大师人生智慧精华丛书 | 柏拉图/叔本华等 | [下载](https://url89.ctfile.com/f/31084289-1357018189-56ffc0?p=8866) |\n| 生活的智慧（套装共6册） | 赵丽荣等 | [下载](https://url89.ctfile.com/f/31084289-1357017973-981516?p=8866) |\n| 实验是如何终结的？ | 彼得・伽里森 | [下载](https://url89.ctfile.com/f/31084289-1357017994-a7216f?p=8866) |\n| 天下的当代性 | 赵汀阳 | [下载](https://url89.ctfile.com/f/31084289-1357017931-313da6?p=8866) |\n| 好的孤独 | 陈果 | [下载](https://url89.ctfile.com/f/31084289-1357017451-8689ec?p=8866) |\n| 国王的两个身体 | 恩斯特・康托洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866) |\n| 活法（修订版） | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357016905-37a500?p=8866) |\n| 写给无神论者 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016830-fff7c8?p=8866) |\n| 哲学的慰藉 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016734-154cfc?p=8866) |\n| 你就要很独特 | 西蒙・布莱克本 | [下载](https://url89.ctfile.com/f/31084289-1357016554-bec7cf?p=8866) |\n| 安静冥想的力量（十册套装） | 帕拉宏撒・尤迦南达等 | [下载](https://url89.ctfile.com/f/31084289-1357016377-d348d3?p=8866) |\n| 批判性思维与创造性思维 | 加里・R・卡比 | [下载](https://url89.ctfile.com/f/31084289-1357016056-730262?p=8866) |\n| 逻辑十九讲 | 威廉姆・沃克・阿特金森  | [下载](https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866) |\n| 美国的智慧（全2册） | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1357015927-98a2b1?p=8866) |\n| 世界哲学史 | 汉斯・约阿西姆・施杜里希 | [下载](https://url89.ctfile.com/f/31084289-1357015684-127350?p=8866) |\n| 我们如何正确思维 | 约翰・杜威 | [下载](https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866) |\n| 陌生人溺水 | 拉里莎・麦克法夸尔 | [下载](https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866) |\n| 技术的本质 | 布莱恩・阿瑟 | [下载](https://url89.ctfile.com/f/31084289-1357015207-84ea05?p=8866) |\n| 红书 | 荣格 | [下载](https://url89.ctfile.com/f/31084289-1357015039-8a6091?p=8866) |\n| 改变心理学的40项研究（第7版） | 罗杰・R・霍克博士 | [下载](https://url89.ctfile.com/f/31084289-1357014838-650722?p=8866) |\n| 查拉图斯特拉如是说 | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1357014622-0410f5?p=8866) |\n| 悉达多（果麦经典） | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357014601-c70ef2?p=8866) |\n| 铃木大拙说禅 | 铃木大拙 | [下载](https://url89.ctfile.com/f/31084289-1357014136-19a5b6?p=8866) |\n| 世界顶级思维 | 沧海满月 | [下载](https://url89.ctfile.com/f/31084289-1357013860-8e324d?p=8866) |\n| 大家小书译馆系列（套装10本） | 尼采等 | [下载](https://url89.ctfile.com/f/31084289-1357013554-def23e?p=8866) |\n| 你的第一本哲学书 | 托马斯・内格尔 | [下载](https://url89.ctfile.com/f/31084289-1357012999-032fe2?p=8866) |\n| 顿悟：捕捉灵感的艺术 | 查尔斯・基弗/马尔科姆・康斯特布尔 | [下载](https://url89.ctfile.com/f/31084289-1357012723-eac5ab?p=8866) |\n| 一本小小的蓝色逻辑书 | 布兰登・罗伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866) |\n| 哲学家们都干了些什么？ | 林欣浩 | [下载](https://url89.ctfile.com/f/31084289-1357012042-46b91e?p=8866) |\n| 正义：一场思辨之旅 | 迈可・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357012036-0c58f8?p=8866) |\n| 与机器赛跑 | 埃里克・布林约尔松 | [下载](https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866) |\n| 《存在与时间》释义 | 张汝伦 | [下载](https://url89.ctfile.com/f/31084289-1357011925-622b16?p=8866) |\n| 你会杀死那个胖子吗？ | 戴维・埃德蒙兹 | [下载](https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866) |\n| 浪漫主义的根源 | 以赛亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1357011475-a98679?p=8866) |\n| 谁是谁的太阳：尼采随笔 | 弗里德里希・威廉・尼采 | [下载](https://url89.ctfile.com/f/31084289-1357011469-72eb20?p=8866) |\n| 太傻天书 | 太傻 | [下载](https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866) |\n| 爱智书系(套装共7册) | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357011070-3f1f08?p=8866) |\n| 物理世界的本质 | 亚瑟・斯坦利・爱丁顿 | [下载](https://url89.ctfile.com/f/31084289-1357010893-b337b8?p=8866) |\n| 如果没有今天，明天会不会有昨天？ | 伊夫・博萨尔特 | [下载](https://url89.ctfile.com/f/31084289-1357010665-9c2c9a?p=8866) |\n| 道德景观 | 萨姆・哈里斯 | [下载](https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866) |\n| 思考中医 | 刘力红 | [下载](https://url89.ctfile.com/f/31084289-1357010455-725a39?p=8866) |\n| 饥饿的灵魂 | 查尔斯・汉迪 | [下载](https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866) |\n| 我们的后人类未来 |  弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866) |\n| 弗洛伊德经典作品集 | 弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357010278-e9d59e?p=8866) |\n| 人与永恒 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866) |\n| 爱的艺术 | 艾里希・弗洛姆 | [下载](https://url89.ctfile.com/f/31084289-1357010122-1f898c?p=8866) |\n| 控制论与科学方法论 | 金观涛/华国凡  | [下载](https://url89.ctfile.com/f/31084289-1357009942-8968ed?p=8866) |\n| 西方哲学史（套装共2册） | 弗兰克・梯利 | [下载](https://url89.ctfile.com/f/31084289-1357009582-0a04b7?p=8866) |\n| 坎贝尔生活美学 | 戴安娜・奥斯本 | [下载](https://url89.ctfile.com/f/31084289-1357009570-bbd908?p=8866) |\n| 从西天到中土 | 西天中土项目组 | [下载](https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866) |\n| 教育家叔本华 | 韦启昌 | [下载](https://url89.ctfile.com/f/31084289-1357009453-72d4ea?p=8866) |\n| 大断裂 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009438-2a63df?p=8866) |\n| 阴阳五要奇书 | 郭璞 | [下载](https://url89.ctfile.com/f/31084289-1357009429-d6e794?p=8866) |\n| 梦的解析 | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357009282-2232c8?p=8866) |\n| 开放社会及其敌人（全二卷） | 卡尔・波普尔爵士 | [下载](https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866) |\n| 经与史：华夏世界的历史建构 | 刘仲敬 | [下载](https://url89.ctfile.com/f/31084289-1357008652-542f0c?p=8866) |\n| 洞穴奇案 | 萨伯 | [下载](https://url89.ctfile.com/f/31084289-1357008175-d08cdd?p=8866) |\n| 公正：该如何做是好 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357008139-f61de9?p=8866) |\n| 真正全集：王阳明全集 | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866) |\n| 塞利格曼幸福五部曲 | 马丁・塞利格曼 | [下载](https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866) |\n| 我们都是食人族 | 克劳德・列维-斯特劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866) |\n| 科学究竟是什么（第3版） | A.F.查尔默斯 | [下载](https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866) |\n| 当道家统治中国 | 林嘉文 | [下载](https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866) |\n| 自私的基因（30周年纪念版） | 理查德·道金斯  | [下载](https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866) |\n| 不能承受的生命之轻 | 米兰·昆德拉 | [下载](https://url89.ctfile.com/f/31084289-1357006690-905dbd?p=8866) |\n| 禅与摩托车维修艺术 | 罗伯特·M.波西格 | [下载](https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866) |\n| 人的权利（译文经典） | 托马斯・潘恩 | [下载](https://url89.ctfile.com/f/31084289-1357006564-636a09?p=8866) |\n| 你永远都无法叫醒一个装睡的人 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866) |\n| 古代哲学的智慧（译文经典） | 皮埃尔・阿多 | [下载](https://url89.ctfile.com/f/31084289-1357006372-3fb9a1?p=8866) |\n| 中华的智慧 | 刘笑敢等 | [下载](https://url89.ctfile.com/f/31084289-1357006306-708bf4?p=8866) |\n| 瓦尔登湖（经典译林） | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866) |\n| 知行合一王阳明 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866) |\n| 厚黑学大全集 | 李宗吾 | [下载](https://url89.ctfile.com/f/31084289-1357005253-80c12a?p=8866) |\n"
  },
  {
    "path": "md/唐代.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 唐代\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 多极亚洲中的唐朝 | 王贞平 | [下载](https://url89.ctfile.com/f/31084289-1375512703-66fba9?p=8866) |\n| 丝绸之路：十二种唐朝人生 | 魏泓 | [下载](https://url89.ctfile.com/f/31084289-1375513810-ba6f6d?p=8866) |\n| 酉阳杂俎（全本全注全译） | 段成式 | [下载](https://url89.ctfile.com/f/31084289-1357043302-be1cec?p=8866) |\n"
  },
  {
    "path": "md/唐朝.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 唐朝\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 长安客 | 北溟鱼 | [下载](https://url89.ctfile.com/f/31084289-1356995563-0b6444?p=8866) |\n| 唐朝定居指南（新版） | 森林鹿 | [下载](https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866) |\n| 唐朝穿越指南（新版） | 森林鹿 | [下载](https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866) |\n| 大唐兴亡三百年 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357023952-0cff73?p=8866) |\n| 贞观幽明谭 | 燕垒生 | [下载](https://url89.ctfile.com/f/31084289-1357023625-5e1243?p=8866) |\n| 唐朝那些事儿（套装共7册） | 冬雪心境 | [下载](https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866) |\n| 大唐这二百九十年1：贞观之路 | 吃青菜的蜗牛 | [下载](链接未找到) |\n| 大唐这二百九十年2：天皇天后 | 吃青菜的蜗牛 | [下载](链接未找到) |\n| 世界性的帝国：唐朝 | 陆威仪 | [下载](https://url89.ctfile.com/f/31084289-1357009291-f01621?p=8866) |\n| 唐朝绝对很邪乎 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357009138-deec69?p=8866) |\n| 日落九世纪：大唐帝国的衰亡 | 赵益 | [下载](https://url89.ctfile.com/f/31084289-1357009090-d2ef54?p=8866) |\n| 唐太宗（全三卷） | 赵扬 | [下载](https://url89.ctfile.com/f/31084289-1357007050-bb3026?p=8866) |\n| 唐朝诡事录 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866) |\n| 唐朝诡事录2：长安鬼迹 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866) |\n| 大唐的四张面孔（套装共四册） | 东江月明 | [下载](https://url89.ctfile.com/f/31084289-1357005238-f97e96?p=8866) |\n| 血腥的盛唐大全集（珍藏版） | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357005133-8ad8de?p=8866) |\n"
  },
  {
    "path": "md/唐诗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 唐诗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 钱锺书选唐诗 | 钱锺书 | [下载](https://url89.ctfile.com/f/31084289-1375513468-25af5c?p=8866) |\n| 唐诗三百首（果麦经典） | 陈引驰 | [下载](https://url89.ctfile.com/f/31084289-1357004200-106e00?p=8866) |\n| 唐诗选注 | 葛兆光 | [下载](https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866) |\n| 唐诗排行榜 | 王兆鹏/邵大为/张静/唐元 | [下载](https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866) |\n| 给孩子的唐诗课 | 六神磊磊 | [下载](https://url89.ctfile.com/f/31084289-1357043047-73180f?p=8866) |\n| 半小时漫画唐诗2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357040122-5a5f09?p=8866) |\n| 唐诗鉴赏辞典 | 周啸天 | [下载](https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866) |\n| 蒋勋说唐诗 | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357021003-a4fa60?p=8866) |\n"
  },
  {
    "path": "md/唯美.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 唯美\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 怦然心动（再版） | 文德琳・范・德拉安南 | [下载](https://url89.ctfile.com/f/31084289-1356985642-272a86?p=8866) |\n"
  },
  {
    "path": "md/商业.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 商业\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 海尔制 | 胡国栋 | [下载](https://url89.ctfile.com/f/31084289-1375491937-798132?p=8866) |\n| 进化的力量 | 刘润 | [下载](https://url89.ctfile.com/f/31084289-1375492024-2f20d3?p=8866) |\n| 未来呼啸而来 | 彼得・戴曼迪斯 | [下载](https://url89.ctfile.com/f/31084289-1375496473-11e887?p=8866) |\n| 生生不息 | 范海涛 | [下载](https://url89.ctfile.com/f/31084289-1375497664-326a21?p=8866) |\n| 常识的力量 | 梁宇峰 | [下载](https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866) |\n| 长期主义 | 高德威 | [下载](https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866) |\n| 底层逻辑：看清这个世界的底牌 | 刘润 | [下载](https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866) |\n| 像高手一样解决问题 | 伯纳德・加雷特等 | [下载](https://url89.ctfile.com/f/31084289-1375500307-6d78d2?p=8866) |\n| 影响力：全新升级版 | 罗伯特・西奥迪尼 | [下载](https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866) |\n| 贝佐斯传 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1375500592-39d6e8?p=8866) |\n| 通往财富自由之路 | 阿什文・B. 查布拉 | [下载](https://url89.ctfile.com/f/31084289-1375501078-233e0c?p=8866) |\n| 亚马逊编年史 | 宁向东 | [下载](https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866) |\n| 贝佐斯致股东的信 | 史蒂夫・安德森/卡伦・安德森 | [下载](https://url89.ctfile.com/f/31084289-1375502302-565477?p=8866) |\n| 互联网口述历史第1辑（全8册） | 方兴东 | [下载](https://url89.ctfile.com/f/31084289-1375503886-a36268?p=8866) |\n| 成就 | 埃里克・施密特等 | [下载](https://url89.ctfile.com/f/31084289-1375509649-bb9c5c?p=8866) |\n| 光环效应 | 罗森维 | [下载](https://url89.ctfile.com/f/31084289-1375509661-105edd?p=8866) |\n| 广告争夺战 | 肯・奥莱塔 | [下载](https://url89.ctfile.com/f/31084289-1375509673-5b5abf?p=8866) |\n| 副业赚钱之道 | 安晓辉/程涛 | [下载](https://url89.ctfile.com/f/31084289-1375509718-cf4b4b?p=8866) |\n| 投资：嘉信理财持续创新之道 | 查尔斯・施瓦布 | [下载](https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866) |\n| 麦肯锡&#038;波士顿解决问题方法和创造价值技巧 | 名和高司 | [下载](https://url89.ctfile.com/f/31084289-1375509916-d4a822?p=8866) |\n| 重来3 | 贾森・弗里德/戴维・海涅迈尔・汉森（ | [下载](https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866) |\n| 铁军团队 | 欧德张 | [下载](https://url89.ctfile.com/f/31084289-1375510093-23e3eb?p=8866) |\n| 大头侃人：任正非 | 于立坤 | [下载](https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866) |\n| 硬核晋升 | 朱莉・卓 | [下载](https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866) |\n| 创新者的世界 | 许奔 | [下载](https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866) |\n| 价值投资经典战例之中国恒大 | 正合奇胜 | [下载](https://url89.ctfile.com/f/31084289-1375510600-59043f?p=8866) |\n| 地产是部金融史 | 黄立坚 | [下载](https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866) |\n| 本质：贝佐斯的商业逻辑与领导力法则 | 海伦娜・亨特 | [下载](https://url89.ctfile.com/f/31084289-1375511119-ae55f7?p=8866) |\n| 共创对话 | 林小桢 | [下载](https://url89.ctfile.com/f/31084289-1375511161-a37ad3?p=8866) |\n| 海星式组织 | 奥瑞・布莱福曼/罗德・贝克斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866) |\n| 大营销哲学 | 陈军 | [下载](https://url89.ctfile.com/f/31084289-1375511335-35eeb4?p=8866) |\n| 从绿到金 | 丹尼尔・埃斯蒂/安德鲁・温斯顿 | [下载](https://url89.ctfile.com/f/31084289-1375511350-277a7e?p=8866) |\n| 勒布朗·詹姆斯的商业帝国 | 布赖恩・文霍斯特 | [下载](https://url89.ctfile.com/f/31084289-1375511371-8604c1?p=8866) |\n| 哈佛大学危机管理课 | 伦纳德・马库斯等 | [下载](https://url89.ctfile.com/f/31084289-1375511461-c57e66?p=8866) |\n| 超级参与者 | 杰里米・海曼斯/亨利・蒂姆斯 | [下载](https://url89.ctfile.com/f/31084289-1375511710-5d87a4?p=8866) |\n| 好视频一秒抓住人心 | 高桥弘树 | [下载](https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866) |\n| 创造差异 | 斯科特・麦克凯恩 | [下载](https://url89.ctfile.com/f/31084289-1375512001-af91e6?p=8866) |\n| 解密Instagram | 莎拉・弗莱尔 | [下载](https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866) |\n| 无止之境 | 秦朔/陈天翔 | [下载](https://url89.ctfile.com/f/31084289-1375512349-8a08a2?p=8866) |\n| 游戏化营销 | 胡华成 | [下载](https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866) |\n| 销售冠军是如何炼成的 | 贺学友 | [下载](https://url89.ctfile.com/f/31084289-1375512427-0c8976?p=8866) |\n| 硅谷搅局者 | 莱斯利・柏林 | [下载](https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866) |\n| 影响力变现 | 徐悦佳 | [下载](https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866) |\n| 复盘网飞 | 马克・伦道夫 | [下载](https://url89.ctfile.com/f/31084289-1375513411-d212c5?p=8866) |\n| 方舟：数字经济创新史 | 赵小兵 | [下载](https://url89.ctfile.com/f/31084289-1375513465-e21bc9?p=8866) |\n| 铁道之心 | 水户冈锐治 | [下载](https://url89.ctfile.com/f/31084289-1375513615-da47d3?p=8866) |\n| 重新定义增长 | 马丁・R.斯塔奇等 | [下载](https://url89.ctfile.com/f/31084289-1375513630-010be2?p=8866) |\n| 工具，还是武器？ | 布拉德・史密斯/卡罗尔・安・布朗 | [下载](https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866) |\n| 工匠哲学 | 马修・克劳福德 | [下载](https://url89.ctfile.com/f/31084289-1357004671-7199ef?p=8866) |\n| 从偶然到必然 | 夏忠毅 | [下载](https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866) |\n| 不拘一格 | 里德・哈斯廷斯/艾琳・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866) |\n| 这就是茅台 | 张小军/马玥/熊玥伽 | [下载](https://url89.ctfile.com/f/31084289-1357004500-5515a4?p=8866) |\n| 财富管理与传承 | 云大慧 | [下载](https://url89.ctfile.com/f/31084289-1357004485-01b160?p=8866) |\n| 全球创新投资 | 睦大均 | [下载](https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866) |\n| 特斯拉模式 | 迈克尔・瓦伦丁 | [下载](https://url89.ctfile.com/f/31084289-1357004248-9ec263?p=8866) |\n| 认识顾客（原书第13版） | 戴维·L.马瑟斯博等 | [下载](https://url89.ctfile.com/f/31084289-1357004203-857c83?p=8866) |\n| 转机 | 萨拉・罗布・奥黑根 | [下载](https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866) |\n| 冯唐成事心法 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866) |\n| 世风日上 | 方三文 | [下载](https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866) |\n| 大国出行 | 王千马/何丹 | [下载](https://url89.ctfile.com/f/31084289-1357002166-292e8e?p=8866) |\n| 被看见的力量 | 快手研究院 | [下载](https://url89.ctfile.com/f/31084289-1357001092-9126ac?p=8866) |\n| 估值：难点、解决方案及相关案例（原书第3版） | 阿斯瓦斯・达莫达兰 | [下载](https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866) |\n| 爆款文案写作指南 | 李洛克 | [下载](https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866) |\n| 伟大的贸易 | 威廉・伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866) |\n| 绝对坦率 | 金・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866) |\n| 光刻巨人 | 瑞尼・雷吉梅克 | [下载](https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866) |\n| 华与华方法 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866) |\n| 变革性创新 | 加里・皮萨诺 | [下载](https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866) |\n| 繁荣的悖论 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866) |\n| 穿越寒冬 | 史蒂文・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1356998776-90be10?p=8866) |\n| 超级话题 | 肖大侠 | [下载](https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866) |\n| 明智转向 | 奥马尔・阿布什 | [下载](https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866) |\n| 顾客心理战 | 菲利普・格雷夫斯 | [下载](https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866) |\n| 激进市场 | 埃里克·A.波斯纳/E.格伦·韦尔 | [下载](https://url89.ctfile.com/f/31084289-1356995302-d77728?p=8866) |\n| 商业之巅 | 周导 | [下载](https://url89.ctfile.com/f/31084289-1356995260-2128f8?p=8866) |\n| 飞轮效应 | 吉姆・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866) |\n| 商业实战三部曲 | 唐纳德・米勒等 | [下载](https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866) |\n| 心：稻盛和夫的一生嘱托 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1356994795-e24bd6?p=8866) |\n| 华为增长法 | 胡赛雄 | [下载](https://url89.ctfile.com/f/31084289-1356994717-50ac38?p=8866) |\n| 去规模化 | 赫曼特・塔内佳/凯文・梅尼 | [下载](https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866) |\n| 商从商朝来 | 傅奕群 | [下载](https://url89.ctfile.com/f/31084289-1356994669-267453?p=8866) |\n| 一生的旅程 | 罗伯特・艾格/乔尔・洛弗尔 | [下载](https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866) |\n| 创造知识的实践 | 野中郁次郎/西原文乃 | [下载](https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866) |\n| 时刻：新全球化时代的中国韧性与创新 | 秦朔 | [下载](https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866) |\n| 啤酒经济学 | 约翰・思文/德文・布里斯基 | [下载](https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866) |\n| 从对抗到共赢 | 杨杜泽/沈莉娟/王赛/范松璐 | [下载](https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866) |\n| 偏执乐观 | 李思拓 | [下载](https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866) |\n| 优步：算法重新定义工作 | 亚力克斯・罗森布拉特 | [下载](https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866) |\n| 好的经济学 | 阿比吉特・班纳吉/埃斯特・迪弗洛 | [下载](https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866) |\n| 互联网四大 | 斯科特・加洛韦 | [下载](https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866) |\n| 叙事经济学 | 罗伯特・希勒 | [下载](https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866) |\n| 跨界竞争 | 王小圈 | [下载](https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866) |\n| 扛住就是本事 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866) |\n| 贝佐斯的数字帝国 | 拉姆・查兰 | [下载](https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866) |\n| 七次转型 | 罗伯特 A. 伯格曼 | [下载](https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866) |\n| 赢的答案（尊享版） | 杰克・韦尔奇/苏茜・韦尔奇 | [下载](https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866) |\n| 商业模式4.0 | 梁宇亮 | [下载](https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866) |\n| 无处不在 | 中国邮政快递报社 | [下载](https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866) |\n| 爆发式赢单 | 倪建伟 | [下载](https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866) |\n| 苏世民：我的经验与教训 | 苏世民 | [下载](https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866) |\n| 美孚石油公司史 | 艾达・塔贝尔 | [下载](https://url89.ctfile.com/f/31084289-1356983323-f8e2c3?p=8866) |\n| 隐藏的行为 | 托马斯・科洛波洛斯 | [下载](https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866) |\n| 用得上的商学课 | 路骋 | [下载](https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866) |\n| 增长五线 | 王赛 | [下载](https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866) |\n| 协同：数字化时代组织效率的本质 | 陈春花/朱丽 | [下载](https://url89.ctfile.com/f/31084289-1357053076-87dade?p=8866) |\n| 无印良品世界观 | 松井忠三 | [下载](https://url89.ctfile.com/f/31084289-1357052854-1168e3?p=8866) |\n| 无印良品笔记术 | 松井忠三 | [下载](https://url89.ctfile.com/f/31084289-1357052794-d169d9?p=8866) |\n| 知识管理如何改变商业模式 | 卡拉・欧戴尔/辛迪・休伯特 | [下载](https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866) |\n| 门到门时代 | Edward Humes | [下载](https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866) |\n| 让顾客都成为回头客 | 安部修仁 | [下载](https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866) |\n| 瑞幸闪电战 | 沈帅波 | [下载](https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866) |\n| 名创优品的101个新零售细节 | 张桓/杨永朋 | [下载](https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866) |\n| 芭比：一个娃娃风靡世界的秘密 | 罗宾・格博 | [下载](https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866) |\n| 敢于不同：商业巨头白手起家的秘诀 | 雷纳・齐特尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357050898-fc81cd?p=8866) |\n| 拉新 | 加布里埃尔・温伯格/贾斯汀・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866) |\n| 海盗经济学 | 彼得・里森 | [下载](https://url89.ctfile.com/f/31084289-1357050655-a3539f?p=8866) |\n| 回归商业常识 | 麦克・霍夫林格 | [下载](https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866) |\n| 管理是个技术活 | 芭芭拉・米切尔/科妮莉亚・甘伦 | [下载](https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866) |\n| 咖啡新零售 | 场景实验室 | [下载](https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866) |\n| 弹性 | 列纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866) |\n| 5G时代：经济增长新引擎 | 孙松林 | [下载](https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866) |\n| 营销的本质 | 包政 | [下载](https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866) |\n| 华与华百万大奖赛案例集 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866) |\n| 创始人手记 | 季琦 | [下载](https://url89.ctfile.com/f/31084289-1357048567-61a471?p=8866) |\n| “芯”想事成 | 陈芳 | [下载](https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866) |\n| 超脑行为金融学 | 薛冰岩 | [下载](https://url89.ctfile.com/f/31084289-1357047115-117230?p=8866) |\n| 世界皆营销 | 菲利普・科特勒 | [下载](https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866) |\n| 稻盛和夫的人生哲学 | 北康利 | [下载](https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866) |\n| 逃不开的经济周期2 | 拉斯・特维德 | [下载](https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866) |\n| 营销革命4.0 | 菲利普・科特勒等 | [下载](https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866) |\n| 超越哈佛 | 马克·H.麦考梅克 | [下载](https://url89.ctfile.com/f/31084289-1357046038-9c7a11?p=8866) |\n| 创业突围 | 郑旭 | [下载](https://url89.ctfile.com/f/31084289-1357045927-57d9d5?p=8866) |\n| 良性增长 | 拉姆・查兰 | [下载](https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866) |\n| 闪电式扩张 | 里德 · 霍夫曼/叶嘉新 | [下载](https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866) |\n| 30天精读MBA（套装共3册） | 科林・巴罗 | [下载](https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866) |\n| 智能战略 | 曾鸣 | [下载](https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866) |\n| 破绽：风口上的独角兽 | 陈歆磊 | [下载](https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866) |\n| 互惠资本主义 | 布鲁诺・罗奇 | [下载](https://url89.ctfile.com/f/31084289-1357044532-bf397f?p=8866) |\n| 和毕加索一起淋浴 | 克里斯蒂安・斯塔迪尔等 | [下载](https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866) |\n| 商业的本质套装（全3册） | 杨宗勇 | [下载](https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866) |\n| 混乱的猴子 | 安东尼奥・加西亚・马丁内斯 | [下载](https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866) |\n| 像开创者一样思考 | 保罗・斯隆 | [下载](https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866) |\n| 说谎者的扑克牌 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866) |\n| 独立，从财富开始 | 水湄物语 | [下载](https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866) |\n| 突破之道 | 基思 R. 麦克法兰 | [下载](https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866) |\n| 麦肯锡教我的写作武器 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866) |\n| 麦肯锡教我的逻辑思维 | 高杉尚伊 | [下载](https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866) |\n| 商业冒险 | 约翰・布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866) |\n| 解密硅谷 | 米歇尔 E. 梅西纳等 | [下载](https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866) |\n| 20堂商业思维进阶课 | 环球人物新媒体中心 | [下载](https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866) |\n| 未来版图 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866) |\n| 极限创新 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866) |\n| 未来工作 | 泰勒・皮尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357040533-619ca7?p=8866) |\n| 突破现实的困境 | 克里斯・布拉德利等 | [下载](https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866) |\n| 销售铁军 | 贺学友 | [下载](https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866) |\n| 第二曲线创新 | 李善友 | [下载](https://url89.ctfile.com/f/31084289-1357039387-b25822?p=8866) |\n| 西贝的服务员为什么总爱笑 | 贾林男 | [下载](https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866) |\n| 反常识 | 邓肯·J. 瓦茨等 | [下载](https://url89.ctfile.com/f/31084289-1357038859-8c613f?p=8866) |\n| 超级营销必修课（套装全8册） | 帕科・昂德希尔等 | [下载](https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866) |\n| 意会时刻 | 克里斯琴・马兹比尔格/米凯尔・拉斯马森 | [下载](https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866) |\n| 硅谷帝国 | 露西・格林 | [下载](https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866) |\n| 21世纪的定位 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866) |\n| 创新的国度 | 詹姆斯・布雷丁 | [下载](https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866) |\n| 从颠覆到创新 | 长江商学院 | [下载](https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866) |\n| 创业头条 | 兰德尔・莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866) |\n| 品牌22律 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866) |\n| Facebook诞生记 | 本・麦兹里奇 | [下载](https://url89.ctfile.com/f/31084289-1357035721-c40b04?p=8866) |\n| 销售圣经 | 杰弗里・吉特黙 | [下载](https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866) |\n| 一本书看透股权架构 | 李利威 | [下载](https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866) |\n| 21世纪的管理挑战 | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866) |\n| 我就是风口 | 理查德・布兰森 | [下载](https://url89.ctfile.com/f/31084289-1357034962-11eb78?p=8866) |\n| 灰度决策 | 小约瑟夫・巴达拉克 | [下载](https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866) |\n| 谷歌方法 | 比尔・基尔迪 | [下载](https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866) |\n| 创新者的路径 | 斯蒂芬・温克尔等 | [下载](https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866) |\n| 25%的回头客创造75%的利润 | 高田靖久 | [下载](https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866) |\n| 进化：顶级企业家自述40年成长心法 | 正和岛 | [下载](https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866) |\n| 出版人 | 艾伦・布里克林 | [下载](https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866) |\n| 低风险创业 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866) |\n| 设计大师的商业课 | 戴维・舍温 | [下载](https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866) |\n| 野蛮生存 | 李凯旋 | [下载](https://url89.ctfile.com/f/31084289-1357032421-4c536f?p=8866) |\n| 蒂姆·库克传 | 利恩德・卡尼 | [下载](https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866) |\n| 互动 | 詹妮弗・杜尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1357031617-5f50a6?p=8866) |\n| 爱彼迎传 | 利・加拉格尔 | [下载](https://url89.ctfile.com/f/31084289-1357031269-5e8ab2?p=8866) |\n| 特斯拉传 | 哈米什・麦肯齐 | [下载](https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866) |\n| 零售的本质 | 本多利范 | [下载](https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866) |\n| 硅谷蓝图 | 雅各・范德库伊 | [下载](https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866) |\n| 永不放弃 | 唐纳德・特朗普/梅瑞迪斯・麦基沃 | [下载](https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866) |\n| 第二曲线：跨越“S型曲线”的二次增长 | 查尔斯・汉迪 | [下载](https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866) |\n| 时空内爆 | 常政 | [下载](https://url89.ctfile.com/f/31084289-1357030543-02217e?p=8866) |\n| 崩溃 | 克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克 | [下载](https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866) |\n| 故事与估值 | 阿斯沃斯・达摩达兰 | [下载](https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866) |\n| 企业生命周期 | 伊查克・爱迪思 | [下载](https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866) |\n| 用户的本质 | 史蒂文・范・贝莱格姆 | [下载](https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866) |\n| 小米哲学 | 杨宗勇 | [下载](https://url89.ctfile.com/f/31084289-1357030237-138f5e?p=8866) |\n| 清醒：如何用价值观创造价值 | 弗雷德・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866) |\n| Trillion Dollar Coach | Eric Schmidt | [下载](https://url89.ctfile.com/f/31084289-1357029766-d3bd25?p=8866) |\n| 美国陷阱 | 弗雷德里克・皮耶鲁齐 | [下载](https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866) |\n| 坏血：一个硅谷巨头的秘密与谎言 | 约翰・卡雷鲁 | [下载](https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866) |\n| 智能商业 | 曾鸣 | [下载](https://url89.ctfile.com/f/31084289-1357029430-72ec54?p=8866) |\n| 本质 | 正和岛 | [下载](https://url89.ctfile.com/f/31084289-1357029286-80bcf0?p=8866) |\n| 伊万卡·特朗普 | 伊万卡・特朗普 | [下载](https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866) |\n| 下一站火星 | 克里斯蒂安・达文波特 | [下载](https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866) |\n| 这就是OKR | 约翰・杜尔 | [下载](https://url89.ctfile.com/f/31084289-1357028263-0178b7?p=8866) |\n| 解密无印良品 | 松井忠三 | [下载](https://url89.ctfile.com/f/31084289-1357028110-182231?p=8866) |\n| 认识经济 | 迪恩・卡尔兰/乔纳森・默多克 | [下载](https://url89.ctfile.com/f/31084289-1357028074-3310e2?p=8866) |\n| 数字战争 | 查尔斯・亚瑟 | [下载](https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866) |\n| 德国的七个秘密 | 戴维・奥德兹/埃里克・莱曼 | [下载](https://url89.ctfile.com/f/31084289-1357027957-1bbf09?p=8866) |\n| 沟通力就是执行力 | 赵伟 | [下载](https://url89.ctfile.com/f/31084289-1357027924-49edb9?p=8866) |\n| 适应性创新 |  蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1357027912-c374f8?p=8866) |\n| 阿里铁军销售课 | 李立恒 | [下载](https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866) |\n| 成交：如何实现可持续性销售 | 诺亚・弗雷明 | [下载](https://url89.ctfile.com/f/31084289-1357027513-d2ebed?p=8866) |\n| 不颠覆，就会被淘汰 | 杰・萨米特 | [下载](https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866) |\n| HBO的内容战略 | 小比尔・梅西 | [下载](https://url89.ctfile.com/f/31084289-1357026886-3c5154?p=8866) |\n| 富人思维 | 贾森・卡拉卡尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866) |\n| 小趋势² | 马克・佩恩/梅勒迪斯・法恩曼 | [下载](https://url89.ctfile.com/f/31084289-1357026817-44ce10?p=8866) |\n| 创业在路上 | 罗永浩 | [下载](https://url89.ctfile.com/f/31084289-1357025302-5c18dc?p=8866) |\n| 变革的基因 | 杨国安 | [下载](https://url89.ctfile.com/f/31084289-1357024687-a63a0b?p=8866) |\n| Bad Blood | John Carreyrou | [下载](https://url89.ctfile.com/f/31084289-1357024663-88d5e5?p=8866) |\n| 订阅：数字时代的商业变现路径 | 罗伯特・金奇尔 | [下载](https://url89.ctfile.com/f/31084289-1357024594-662d48?p=8866) |\n| 常青：如何持久吸引客户 | 诺亚・弗雷明 | [下载](https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866) |\n| 重新定义团队 | 拉斯洛・博克 | [下载](https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866) |\n| 重新定义公司 | 埃里克・施密特 | [下载](https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866) |\n| 疯长 | 肖恩・阿美拉蒂 | [下载](https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866) |\n| 深度粉销 | 丁丁 | [下载](https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866) |\n| 奈飞文化手册 | 帕蒂・麦考德 | [下载](https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866) |\n| 哈佛决策课 | 迈克尔・罗伯托 | [下载](https://url89.ctfile.com/f/31084289-1357024012-dc6cf8?p=8866) |\n| 底特律往事 | 比尔・弗拉斯科 | [下载](https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866) |\n| 光电帝国 | 吉尔・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357023925-f4200b?p=8866) |\n| 算法的陷阱 | 阿里尔・扎拉奇 | [下载](https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866) |\n| 重新理解创业 | 周航 | [下载](https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866) |\n| 情感驱动 | 维尔・桑切斯・拉米拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866) |\n| 认识商业 | 威廉・尼克尔斯等 | [下载](https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866) |\n| 病毒循环 | 亚当・潘恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866) |\n| 新零售进化论 | 陈欢/陈澄波 | [下载](https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866) |\n| IBM帝国缔造者：小沃森自传 | 小托马斯・约翰・沃森/彼得・彼得 | [下载](https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866) |\n| 认同感 | 吉姆・西诺雷利 | [下载](https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866) |\n| 数文明 | 涂子沛 | [下载](https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866) |\n| 赢（纪念版） | 杰克・韦尔奇/苏茜・韦尔奇 | [下载](https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866) |\n| 谷歌创业帮 | 王丹 | [下载](https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866) |\n| 抢占心智 | 江南春 | [下载](https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866) |\n| 创新法则：名企破局秘笈 | 理查德・科克等 | [下载](https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866) |\n| AI·未来 | 李开复 | [下载](https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866) |\n| 众媒时代 | 腾讯传媒研究 | [下载](https://url89.ctfile.com/f/31084289-1357021915-018c3a?p=8866) |\n| The Fifth Discipline Fieldbook | Peter M. Senge/et al  | [下载](https://url89.ctfile.com/f/31084289-1357021675-47e500?p=8866) |\n| 洞见未来商业（套装共4册） | 威廉・尼克尔斯等 | [下载](https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866) |\n| 烧掉你的商业计划书 | 卡尔·J. 施拉姆 | [下载](https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866) |\n| 永远的零售 | 厉玲 | [下载](https://url89.ctfile.com/f/31084289-1357021438-4c2d0b?p=8866) |\n| 资源革命 | 斯蒂芬・赫克等 | [下载](https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866) |\n| 游戏改变人生 | 简・麦戈尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866) |\n| MBA十日读（第四版） | 史蒂文・西尔比格 | [下载](https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866) |\n| 合伙人制度 | 郑指梁 | [下载](https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866) |\n| 冷启动：零成本做营销 | 高臻臻 | [下载](https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866) |\n| 阿里巴巴与四十大道 | 赵先超 | [下载](https://url89.ctfile.com/f/31084289-1357020613-0c1a46?p=8866) |\n| 营销的16个关键词 | 叶茂中 | [下载](https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866) |\n| 麦肯锡思维 | 洛威茨 | [下载](https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866) |\n| 心智力：商业奇迹的底层思维 | 李中莹/舒瀚霆 | [下载](https://url89.ctfile.com/f/31084289-1357019779-447881?p=8866) |\n| 一网打尽：贝佐斯与亚马逊时代 | 布拉德・斯通 | [下载](https://url89.ctfile.com/f/31084289-1357019773-9e4c6d?p=8866) |\n| 横越未知 | 周健工 | [下载](https://url89.ctfile.com/f/31084289-1357019683-4e86be?p=8866) |\n| 视觉锤 | 劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357019587-9bb3b2?p=8866) |\n| 日本制造 | 盛田昭夫/下村满子 | [下载](https://url89.ctfile.com/f/31084289-1357019545-1177bd?p=8866) |\n| 绝佳提问：探询改变商业与生活 | 沃伦・贝格尔 | [下载](https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866) |\n| 创新简史 | 杨旸 | [下载](https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866) |\n| 让大象飞 | 史蒂文・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866) |\n| 塞氏企业：设计未来组织新模式 | 里卡多・塞姆勒 | [下载](https://url89.ctfile.com/f/31084289-1357019056-a8bb99?p=8866) |\n| 不做无效的营销 | 王泽蕴 | [下载](https://url89.ctfile.com/f/31084289-1357018744-787c46?p=8866) |\n| 小米逻辑 | 吴正炜 | [下载](https://url89.ctfile.com/f/31084289-1357018564-06c2df?p=8866) |\n| 区块链项目开发指南 | 纳拉扬・普鲁斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357018585-e3a2cc?p=8866) |\n| Under New Management | David Burkus | [下载](https://url89.ctfile.com/f/31084289-1357018441-015a18?p=8866) |\n| 社群思维：精神商业时代的创新创业法 | 付岩 | [下载](https://url89.ctfile.com/f/31084289-1357018435-120347?p=8866) |\n| 平台革命：改变世界的商业模式 | 杰奥夫雷 G. 帕克等 | [下载](https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866) |\n| 诺基亚总裁自述：重压之下 | 约玛・奥利拉/哈利・沙库马 | [下载](https://url89.ctfile.com/f/31084289-1357017967-f37367?p=8866) |\n| 决战大数据（升级版） | 车品觉 | [下载](https://url89.ctfile.com/f/31084289-1357017913-52f044?p=8866) |\n| 3G资本帝国 | 克里斯蒂娜・柯利娅 | [下载](https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866) |\n| 创业36条军规 | 孙陶然 | [下载](https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866) |\n| 参与感 | 黎万强 | [下载](https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866) |\n| 社交的本质 | 兰迪・扎克伯格 | [下载](https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866) |\n| 商业的本质 | 杰克・韦尔奇/苏西・韦尔奇 | [下载](https://url89.ctfile.com/f/31084289-1357017043-68bb69?p=8866) |\n| 商业模式全史 | 三谷宏治 | [下载](https://url89.ctfile.com/f/31084289-1357017052-d7e7bd?p=8866) |\n| 激荡十年，水大鱼大 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357017037-4de889?p=8866) |\n| 离经叛道 | 亚当・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357016914-9a3963?p=8866) |\n| Business Adventures | John Brooks | [下载](https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866) |\n| OKR：源于英特尔和谷歌的目标管理利器 | 保罗・尼文/本・拉莫尔特 | [下载](https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866) |\n| 共赢 | 约翰・麦克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1357016227-aa004f?p=8866) |\n| 小群效应 | 徐志斌 | [下载](https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866) |\n| 全球风口 | 王煜全/薛兆丰 | [下载](https://url89.ctfile.com/f/31084289-1357016092-2982cb?p=8866) |\n| 内容经济 | 谢利明 | [下载](https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866) |\n| 经营战略全史 | 三谷宏治 | [下载](https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866) |\n| 终极复制 | 李智勇 | [下载](https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866) |\n| 趋势红利 | 刘润 | [下载](https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866) |\n| 新制造时代 | 王千马/梁冬梅/何丹 | [下载](https://url89.ctfile.com/f/31084289-1357015264-52fd08?p=8866) |\n| 激活个体 | 陈春花 | [下载](https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866) |\n| 光变：一个企业及其工业史 | 路风 | [下载](https://url89.ctfile.com/f/31084289-1357015045-f54b86?p=8866) |\n| 规则颠覆者 | 内田和成 | [下载](https://url89.ctfile.com/f/31084289-1357015054-0bd70a?p=8866) |\n| 回头客战略 | 谢家华 | [下载](https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866) |\n| 海尔转型：人人都是CEO | 曹仰锋 | [下载](https://url89.ctfile.com/f/31084289-1357014961-4d7acd?p=8866) |\n| HR+三支柱 | 彭剑锋/马海刚/西楠 | [下载](https://url89.ctfile.com/f/31084289-1357014970-7e75ae?p=8866) |\n| 华为没有秘密 | 吴春波 | [下载](https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866) |\n| 富甲美国 | 山姆・沃尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357014853-c66266?p=8866) |\n| 爆品战略 | 金错刀 | [下载](https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866) |\n| 对赌（2017全新修订版） | 陈楫宝 | [下载](https://url89.ctfile.com/f/31084289-1357014739-d21b56?p=8866) |\n| 公司的概念（珍藏版） | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357014736-217047?p=8866) |\n| 孵化皮克斯 | 劳伦斯・利维 | [下载](https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866) |\n| 创业就是要细分垄断 | 李开复/汪华/傅盛  | [下载](https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866) |\n| 怎样卖龙虾 | 比尔・毕晓普 | [下载](https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866) |\n| 新物种爆炸 | 吴声 | [下载](https://url89.ctfile.com/f/31084289-1357014184-7e8d0a?p=8866) |\n| 逆势销售：UGG创始人自述 | 布莱恩・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866) |\n| 褚时健管理法 | 张小军/马玥 | [下载](https://url89.ctfile.com/f/31084289-1357013983-1e34a0?p=8866) |\n| 大道当然 | 王石 | [下载](https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866) |\n| 精酿啤酒革命 | 史蒂夫・欣迪 | [下载](https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866) |\n| 浪潮之巅 | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866) |\n| AsK.反直觉询问 | 莱恩・莱韦斯克 | [下载](https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866) |\n| 指数型组织 | 萨利姆・伊斯梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866) |\n| 无价 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866) |\n| CEO说：像企业家一样思考 | 拉姆・查兰 | [下载](https://url89.ctfile.com/f/31084289-1357012924-0396bc?p=8866) |\n| 微创新 | 德鲁・博迪/雅各布・戈登堡 | [下载](https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866) |\n| 名创优品没有秘密 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866) |\n| 斯坦福商业决策课 | 卡尔・斯佩茨勒等 | [下载](https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866) |\n| 创新者的方法 | 内森・弗尔/杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866) |\n| 华为工作法 | 黄继伟 | [下载](https://url89.ctfile.com/f/31084289-1357012357-a75698?p=8866) |\n| 胜利的法则 | 铃木博毅 | [下载](https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866) |\n| 可口可乐传 | 马克・彭德格拉斯特 | [下载](https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866) |\n| 科技之巅2 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866) |\n| 复活的日本财阀 | 陈霞 | [下载](https://url89.ctfile.com/f/31084289-1357011748-a353c5?p=8866) |\n| 新零售时代三部曲（套装共三册） | 杰弗里・米勒/大卫・贝尔等 | [下载](https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866) |\n| 自私的皮球 | 辉格 | [下载](https://url89.ctfile.com/f/31084289-1357010674-bc3805?p=8866) |\n| 哈佛商业评论・职场那些事（全10册） | 哈佛商业评论 | [下载](https://url89.ctfile.com/f/31084289-1357010470-365bbf?p=8866) |\n| 哈佛商业评论・像管理者一样思考（全15册） | 哈佛商业评论 | [下载](https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866) |\n| 帮你省时间！替你划重点！教你学管理！ | 哈佛商业评论 | [下载](https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866) |\n| 罗杰·道森优势谈判系列 | 罗杰・道森 | [下载](https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866) |\n| 干法 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866) |\n| 互联网思维独孤九剑 | 赵大伟 | [下载](https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866) |\n| 上瘾 | 尼尔・埃亚尔/瑞安・胡佛 | [下载](https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866) |\n| 超级IP：互联网新物种方法论 | 吴声 | [下载](https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866) |\n| 钱商 | 阿瑟・黑利 | [下载](https://url89.ctfile.com/f/31084289-1357009600-e4c107?p=8866) |\n| 十亿美金的教训 | 林军 | [下载](https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866) |\n| 小米生态链战地笔记 | 小米生态链谷仓学院 | [下载](https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866) |\n| 人工智能 | 李开复/王咏刚  | [下载](https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866) |\n| 鞋狗 | 菲尔・奈特 | [下载](https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866) |\n| 董事会里的战争 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866) |\n| 风口上的猪：一本书看懂互联网金融 | 肖璟 | [下载](https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866) |\n| 疯狂到位 | 亚当・施特尔茨/威廉・帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866) |\n| 好战略，坏战略 | 理查德・鲁梅尔特 | [下载](https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866) |\n| 与众不同 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866) |\n| 重来：更为简单有效的商业思维 | 贾森・弗里德/大卫・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866) |\n| 在火星上退休：伊隆・马斯克传 | 亚当・杰佛逊  | [下载](https://url89.ctfile.com/f/31084289-1357007857-0842b9?p=8866) |\n| 重新定位（珍藏版） | 杰克・特劳特/史蒂夫・里夫金 | [下载](https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866) |\n| 麦肯锡精英的48个工作习惯 | 户塚隆将 | [下载](https://url89.ctfile.com/f/31084289-1357007767-d82cd1?p=8866) |\n| 吉姆·柯林斯成就卓越系列（套装共4册） | 吉姆・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866) |\n| 新一轮产业革命 | 亚力克・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866) |\n| 柳问：柳传志的管理三要素 | 张涛 | [下载](https://url89.ctfile.com/f/31084289-1357007566-7946b7?p=8866) |\n| 丰盛人生：安利创始人理查・狄维士自传 | 理查・狄维士 | [下载](https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866) |\n| 吴晓波细说商业史（套装共5册） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357007437-79d20a?p=8866) |\n| 阿里传：这是阿里巴巴的世界 | 波特・埃里斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866) |\n| 海底捞你学不会 | 黄铁鹰 | [下载](https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866) |\n| 精益创业实战（第2版） | Ash Maurya | [下载](https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866) |\n| 创新者的解答 | 克莱顿・克里斯坦森/迈克尔・雷纳 | [下载](https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866) |\n| 创新者的窘境 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866) |\n| 跨越鸿沟：颠覆性产品营销圣经 | 杰弗里・摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866) |\n| 联想风云三十年 | 赵雪/姜美芝 | [下载](https://url89.ctfile.com/f/31084289-1357007260-d642e2?p=8866) |\n| 商战 | 杰克・特劳特 / 阿尔・里斯  | [下载](https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866) |\n| 集装箱改变世界（修订版） | 马克・莱文森 | [下载](https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866) |\n| 万达工作法 | 万达集团企业文化中心  | [下载](https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866) |\n| 22条商规 | 艾・里斯 / 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866) |\n| 零售哲学系列：7-11便利店创始人自述（套装共2册） | 铃木敏文 | [下载](https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866) |\n| 疯传：让你的产品、思想、行为像病毒一样入侵 | 乔纳・伯杰 | [下载](https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866) |\n| 从20万到30亿：特朗普自传 | 唐纳德・特朗普 | [下载](https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866) |\n| 精益创业 : 新创企业的成长思维 | 埃里克・莱斯  | [下载](https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866) |\n| 伟大是熬出来的 | 优米网 | [下载](https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866) |\n| 万达哲学：王健林首次自述经营之道 | 王健林 | [下载](https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866) |\n| 白手套 | 陈楫宝 | [下载](https://url89.ctfile.com/f/31084289-1357006468-79d6ba?p=8866) |\n| 平台战略 | 陈威如/余卓轩  | [下载](https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866) |\n| 行在宽处 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866) |\n| 理想丰满 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866) |\n| 野蛮生长（权威未删节） | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866) |\n| 豪门兴衰：百年香港商业 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866) |\n| 荣氏百年：中国商业第一家族 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866) |\n| 下一个倒下的会不会是华为 | 吴春波/田涛 | [下载](https://url89.ctfile.com/f/31084289-1357005934-356c47?p=8866) |\n| 门口的野蛮人 | 布赖恩・伯勒 | [下载](https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866) |\n| 历代经济变革得失 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005394-6e2c3b?p=8866) |\n| 跌荡一百年：中国企业1870-1977（纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866) |\n| 浩荡两千年：中国企业公元前7世纪-1869年 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866) |\n| 互联网新商业时代（套装共三册） | 克里斯・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866) |\n| 游戏化思维 | 凯文・韦巴赫/丹・亨特 | [下载](https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866) |\n| 大败局（十周年套装纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866) |\n| 从0到1：开启商业与未来的秘密 | 彼得・蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866) |\n| 沸腾十五年 | 林军 | [下载](https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866) |\n| 激荡三十年（套装纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866) |\n"
  },
  {
    "path": "md/商务.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 商务\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 职场第一课（套装共5册） | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866) |\n"
  },
  {
    "path": "md/商场.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 商场\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 亿万：围剿华尔街大白鲨 | 茜拉・科尔哈特卡 | [下载](https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866) |\n"
  },
  {
    "path": "md/商战.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 商战\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们的时代（共3册） | 王强 | [下载](https://url89.ctfile.com/f/31084289-1375504177-aa627c?p=8866) |\n| 最后一个金融大鳄2 | 邓荣栋 | [下载](https://url89.ctfile.com/f/31084289-1357052422-c462a6?p=8866) |\n| 最后一个金融大鳄 | 邓荣栋 | [下载](https://url89.ctfile.com/f/31084289-1357051852-ff30a4?p=8866) |\n| 金融街：危险交易 | 梁成 | [下载](https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866) |\n| 我在东北当警察（套装共3册） | 程琳 | [下载](https://url89.ctfile.com/f/31084289-1357031446-ae2e03?p=8866) |\n| 金牌投资人2 | 龙在宇 | [下载](https://url89.ctfile.com/f/31084289-1357022887-a6b83d?p=8866) |\n| 圈子圈套1：战局篇 | 王强 | [下载](https://url89.ctfile.com/f/31084289-1357021465-4d2c0f?p=8866) |\n| 圈子圈套2：迷局篇 | 王强 | [下载](https://url89.ctfile.com/f/31084289-1357021450-f4aaca?p=8866) |\n| 圈子圈套3：终局篇 | 王强 | [下载](https://url89.ctfile.com/f/31084289-1357021447-9e6224?p=8866) |\n"
  },
  {
    "path": "md/啤酒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 啤酒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 啤酒原来是这么回事儿 | 吉雷克・奥贝尔 | [下载](https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866) |\n| 啤酒经济学 | 约翰・思文/德文・布里斯基 | [下载](https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866) |\n| 啤博士的啤酒札记 | 太空精酿 | [下载](https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866) |\n| 如何畅享啤酒 | 约翰・霍尔  | [下载](https://url89.ctfile.com/f/31084289-1357032259-138919?p=8866) |\n| 精酿啤酒革命 | 史蒂夫・欣迪 | [下载](https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866) |\n"
  },
  {
    "path": "md/四书.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 四书\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 四书直解 | 张居正整理 | [下载](https://url89.ctfile.com/f/31084289-1357017934-78ec02?p=8866) |\n| 四书讲义（中华国学文库） | 吕留良撰 | [下载](https://url89.ctfile.com/f/31084289-1357012750-bf36f4?p=8866) |\n"
  },
  {
    "path": "md/四大名著.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 四大名著\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 水浒传（校注本） | 施耐庵/罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866) |\n| 西游记（校注本） | 吴承恩 | [下载](https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866) |\n| 红楼梦（校注本） | 曹雪芹/高鹗 | [下载](https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866) |\n| 三国演义（校注本） | 罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357008598-ec27d1?p=8866) |\n"
  },
  {
    "path": "md/回忆.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 回忆\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 山居杂忆 | 高诵芬 | [下载](https://url89.ctfile.com/f/31084289-1357002007-f88da6?p=8866) |\n| 春蚕吐丝 | 陈鼓应 | [下载](https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866) |\n| 西南联大行思录 | 张曼菱 | [下载](https://url89.ctfile.com/f/31084289-1357018297-9bd135?p=8866) |\n| 抗战时代生活史 | 陈存仁 | [下载](https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866) |\n"
  },
  {
    "path": "md/回忆录.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 回忆录\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 汪曾祺回忆录 | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1375513501-daa881?p=8866) |\n| 美国第一夫人回忆录 | 塔夫脱总统夫人 | [下载](https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866) |\n| 我的情报与外交生涯 | 熊向晖 | [下载](https://url89.ctfile.com/f/31084289-1356990448-11dba0?p=8866) |\n| 天空无界 | 尼尔・德格拉斯・泰森 | [下载](链接未找到) |\n| 隐身大师 | 萨拉・卡明斯基 | [下载](https://url89.ctfile.com/f/31084289-1356986074-a696da?p=8866) |\n| 我的最后叹息 | 路易斯・布努艾尔 | [下载](https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866) |\n| 我在伏龙芝学军事 | 郝智慧 | [下载](https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866) |\n| 我是落花生的女儿 | 许燕吉 | [下载](https://url89.ctfile.com/f/31084289-1356984751-7442f4?p=8866) |\n| 战争的一瞬间 | 洛瑞・李 | [下载](https://url89.ctfile.com/f/31084289-1356983962-13cbc9?p=8866) |\n| 顾维钧回忆录（全13册） | 顾维钧 | [下载](https://url89.ctfile.com/f/31084289-1356983332-e78898?p=8866) |\n| 领袖们（全译修订版） | 理查德・尼克松 | [下载](https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866) |\n| 智慧七柱Ⅱ | T. E.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866) |\n| 萝西与苹果酒 | 洛瑞・李 | [下载](https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866) |\n| 老先生 | 周实 | [下载](https://url89.ctfile.com/f/31084289-1357044673-2e0611?p=8866) |\n| 第一道曙光下的真实 | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866) |\n| 我在故宫看大门 | 维一 | [下载](https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866) |\n| 张岪与木心 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866) |\n| 你当像鸟飞往你的山 | 塔拉・韦斯特弗 | [下载](https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866) |\n| 不锈时光 | 任曙林 | [下载](https://url89.ctfile.com/f/31084289-1357040479-46f77b?p=8866) |\n| 英国公使夫人清宫回忆录 | 苏珊・汤丽 | [下载](https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866) |\n| I Am, I Am, I Am | Maggie O'Farrell | [下载](https://url89.ctfile.com/f/31084289-1357034404-5f9292?p=8866) |\n| 周作人自编集 | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866) |\n| 安南回忆录 | 科菲・安南 | [下载](https://url89.ctfile.com/f/31084289-1357032844-1da8c4?p=8866) |\n| 流氓的归来 | 诺曼・马内阿 | [下载](https://url89.ctfile.com/f/31084289-1357032382-2de8ce?p=8866) |\n| 天生有罪 | 特雷弗・诺亚 | [下载](https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866) |\n| 阿登纳回忆录（套装共4册） | 康拉德・阿登纳 | [下载](https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866) |\n| 往事与随想（共3册） | 赫尔岑 | [下载](https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866) |\n| 牛棚杂忆 | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866) |\n| 忆往谈旧录 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866) |\n| 那些难忘的声音 | 张稼峰 | [下载](https://url89.ctfile.com/f/31084289-1357017289-27536c?p=8866) |\n| 蹉跎坡旧事 | 沈博爱 | [下载](https://url89.ctfile.com/f/31084289-1357017268-d0dff9?p=8866) |\n| 边缘人偶记 | 徐国琦 | [下载](https://url89.ctfile.com/f/31084289-1357016278-c6fdd0?p=8866) |\n| 梁漱溟日记 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357010896-aa236e?p=8866) |\n| 一个戴灰帽子的人 | 邵燕祥 | [下载](https://url89.ctfile.com/f/31084289-1357009354-ecd060?p=8866) |\n| 暴风雨的记忆 | 北岛 | [下载](https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866) |\n| 我们仨 | 杨绛 | [下载](https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866) |\n| 呐喊-大屠杀回忆录 | 曼尼・斯坦伯格 | [下载](https://url89.ctfile.com/f/31084289-1357007560-362d82?p=8866) |\n| 宫女谈往录 | 金易 | [下载](https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866) |\n| 痛并快乐着 | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866) |\n"
  },
  {
    "path": "md/回本.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 回本\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 父与子全集（作家榜经典文库） | 埃・奥・卜劳恩 | [下载](https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866) |\n"
  },
  {
    "path": "md/团队.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 团队\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 团队赋能 | 迈克・布伦特/菲奥娜・爱尔莎・丹特 | [下载](https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866) |\n| 协同：如何打造高联动团队 | 马克・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866) |\n| 重新定义系列（共四册） | 埃里克・施密特等 | [下载](https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866) |\n| 重新定义团队 | 拉斯洛・博克 | [下载](https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866) |\n| 我这就跟你走 | 科里・鲍克 | [下载](https://url89.ctfile.com/f/31084289-1357024180-eaf889?p=8866) |\n"
  },
  {
    "path": "md/围棋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 围棋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知中11·宇宙之道，就在围棋 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866) |\n| 不得贪胜 | 李昌镐 | [下载](https://url89.ctfile.com/f/31084289-1357023190-b21759?p=8866) |\n"
  },
  {
    "path": "md/国外.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 国外\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 道林·格雷的画像 | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866) |\n| 漫长的中场休息 | 本・方登 | [下载](https://url89.ctfile.com/f/31084289-1357015132-9c1e9a?p=8866) |\n| 巴尔扎克精选集16册 | 巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866) |\n| 教父三部曲（典藏版套装） | 马里奥・普佐 | [下载](https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866) |\n"
  },
  {
    "path": "md/国学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 国学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 经史百家杂钞套装共8册（全本全注全译） | 余兴安 | [下载](https://url89.ctfile.com/f/31084289-1375491943-3f0e5a?p=8866) |\n| 孙子兵法青少版（作家榜经典文库） | 孙武 | [下载](https://url89.ctfile.com/f/31084289-1375493158-bd5029?p=8866) |\n| 国学大书院（套装40册） | 孙武等 | [下载](https://url89.ctfile.com/f/31084289-1375509625-852982?p=8866) |\n| 庄子说什么 | 韩鹏杰 | [下载](https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866) |\n| 透过经济看国学 | 翁礼华 | [下载](https://url89.ctfile.com/f/31084289-1375510531-3f4603?p=8866) |\n| 王蒙写给年轻人的中国智慧（全四册） | 王蒙 | [下载](https://url89.ctfile.com/f/31084289-1375513588-2fdf16?p=8866) |\n| 跟大师学国学系列第一辑（套装共7册） | 梁启超等 | [下载](https://url89.ctfile.com/f/31084289-1375513594-7db32f?p=8866) |\n| 民国大师周作人作品大全集（套装七十八册） | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357002694-d93afe?p=8866) |\n| 国学大师顾随大全集（套装10册） | 顾随 | [下载](https://url89.ctfile.com/f/31084289-1356995206-7fee3d?p=8866) |\n| 周礼（全本全注全译） | 徐正英/常佩雨 | [下载](https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866) |\n| 战国策（全本全注全译） | 缪文远 | [下载](https://url89.ctfile.com/f/31084289-1356985609-204824?p=8866) |\n| 政论 昌言（全本全注全译） | 孙启治译注 | [下载](https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866) |\n| 仪礼（全本全注全译） | 彭林译注 | [下载](https://url89.ctfile.com/f/31084289-1356985543-fb5537?p=8866) |\n| 颜氏家训（全本全注全译） | 檀作文 | [下载](https://url89.ctfile.com/f/31084289-1356985381-82364d?p=8866) |\n| 新序（全本全注全译） | 马世年 | [下载](https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866) |\n| 坛经（全本全注全译） | 尚荣 | [下载](https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866) |\n| 文选（全本全注全译） | 萧统 | [下载](https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866) |\n| 吴越春秋（全本全注全译） | 崔冶译注 | [下载](https://url89.ctfile.com/f/31084289-1356984754-42dd25?p=8866) |\n| 晏子春秋校注（中华国学文库） | 张纯一撰 | [下载](https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866) |\n| 问中医几度秋凉 | 艾宁 | [下载](https://url89.ctfile.com/f/31084289-1356983815-ca2b85?p=8866) |\n| 人物志（全本全注全译） | 刘劭/梁满仓 | [下载](https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866) |\n| 南怀瑾作品（共21册） | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1356982492-7bf040?p=8866) |\n| 老子（全本全注全译） | 老子 | [下载](https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866) |\n| 礼记（全本全注全译） | 胡平生译注/张萌译注  | [下载](https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866) |\n| 六韬（全本全注全译） | 陈曦 | [下载](https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866) |\n| 论语今读（增订版） | 李泽厚 | [下载](https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866) |\n| 经与史：康有为与章太炎（全二册） | 汤志钧 | [下载](https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866) |\n| 焚书（全本全注全译） | 张建业 | [下载](https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866) |\n| 公孙龙子（全本全注全译） | 黄克剑译注 | [下载](https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866) |\n| 法言（全本全注全译） | 扬雄 | [下载](https://url89.ctfile.com/f/31084289-1357047487-84f2fd?p=8866) |\n| 尔雅（全本全注全译） | 管锡华译注 | [下载](https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866) |\n| 曾国藩家书（全本全注全译） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357045999-309b55?p=8866) |\n| 曾国藩全集（全31册） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866) |\n| 从鹏扶摇到蝶蹁跹 | 崔宜明 | [下载](https://url89.ctfile.com/f/31084289-1357045324-3d818a?p=8866) |\n| 经典里的中国（套装共十册） | 杨照 | [下载](https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866) |\n| 国学大师顾随全集（套装10册） | 顾随 | [下载](https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866) |\n| 从诗经到红楼梦 | 一条课堂 | [下载](https://url89.ctfile.com/f/31084289-1357043464-ad95e4?p=8866) |\n| 太平经（全本全注全译） | 杨寄林译注 | [下载](https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866) |\n| 给孩子的唐诗课 | 六神磊磊 | [下载](https://url89.ctfile.com/f/31084289-1357043047-73180f?p=8866) |\n| 国学梯级公开课（套装共6册） | 摩罗/杨帆 | [下载](https://url89.ctfile.com/f/31084289-1357036837-519673?p=8866) |\n| 蔡志忠经典解密系列6本 | 蔡志忠 | [下载](https://url89.ctfile.com/f/31084289-1357035520-653d63?p=8866) |\n| 台湾《传记文学》珍藏系列（全15册） | 梁实秋/林语堂等 | [下载](https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866) |\n| 南怀瑾著作全收录 | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866) |\n| 说文解字十二讲 | 万献初/刘会龙 | [下载](https://url89.ctfile.com/f/31084289-1357030201-30e984?p=8866) |\n| 华杉讲透王阳明《传习录》 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357029910-ae3bf9?p=8866) |\n| 南怀瑾人生精讲系列（套装共5册） | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357029634-7b17a3?p=8866) |\n| 最后的儒家 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866) |\n| 国学大纲 | 汪震/王正己 | [下载](https://url89.ctfile.com/f/31084289-1357023292-710c34?p=8866) |\n| 传习录 | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866) |\n| 船山遗书 | 王夫之 | [下载](https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866) |\n| 中信国学大典：诸子百家（上册） | 陈耀南男 | [下载](https://url89.ctfile.com/f/31084289-1357019713-a62b5d?p=8866) |\n| 中信国学大典：诸子百家（下册） | 趙善軒等 | [下载](https://url89.ctfile.com/f/31084289-1357019707-ed5d95?p=8866) |\n| 四书直解 | 张居正整理 | [下载](https://url89.ctfile.com/f/31084289-1357017934-78ec02?p=8866) |\n| 华杉讲透论语 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357017736-fae163?p=8866) |\n| 华杉讲透孟子 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357017730-33bfc2?p=8866) |\n| 读书指南（国学经典精校版） | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1357014856-7dd474?p=8866) |\n| 诗经（全本全注全译） | 王秀梅译注 | [下载](https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866) |\n| 大师讲国学经典文库（套装共5册） | 季风 | [下载](https://url89.ctfile.com/f/31084289-1357011094-ca367b?p=8866) |\n| 顾颉刚国史讲话全本（三册） | 顾颉刚 | [下载](https://url89.ctfile.com/f/31084289-1357010383-dcf10f?p=8866) |\n| 胡适文集（套装共7册） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866) |\n| 白话精编二十四史（全10册） | 龚书铎等 | [下载](https://url89.ctfile.com/f/31084289-1357010236-610f9d?p=8866) |\n| 三大师谈国学 | 梁启超/章太炎/朱自清  | [下载](https://url89.ctfile.com/f/31084289-1357009111-4abd60?p=8866) |\n| 传记文学书系（套装共4册） | 唐德刚/梁实秋等 | [下载](https://url89.ctfile.com/f/31084289-1357008748-e9f5e7?p=8866) |\n| 道德经 | 老子 | [下载](https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866) |\n| 北大授课：中华文化四十七讲 | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1357007980-4d8887?p=8866) |\n| 群书治要译注 | 魏徵等 | [下载](https://url89.ctfile.com/f/31084289-1357006303-52769e?p=8866) |\n"
  },
  {
    "path": "md/国家.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 国家\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 国家是怎样炼成的3 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866) |\n| 国家行动 | 程琳 | [下载](https://url89.ctfile.com/f/31084289-1357016677-c8f62e?p=8866) |\n"
  },
  {
    "path": "md/国民党.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 国民党\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 党员、党权与党争 | 王奇生 | [下载](https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866) |\n| 国民党高层的派系政治（修订本） | 金以林 | [下载](https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866) |\n"
  },
  {
    "path": "md/国漫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 国漫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人间快递1 | 漫漫漫画 | [下载](https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866) |\n| 镖人9 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866) |\n| 白鹤三绝 | 二斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866) |\n"
  },
  {
    "path": "md/国际.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 国际\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一件T恤的全球经济之旅 | 皮翠拉・瑞沃莉 | [下载](https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866) |\n"
  },
  {
    "path": "md/土耳其.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 土耳其\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 佩拉宫的午夜 | 查尔斯・金 | [下载](https://url89.ctfile.com/f/31084289-1375498822-cf18fd?p=8866) |\n| 帝国之衰 | 王三义 | [下载](https://url89.ctfile.com/f/31084289-1357046941-f63985?p=8866) |\n| 伊斯坦布尔三城记 | 贝塔妮・休斯 | [下载](https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866) |\n| 伊斯坦布尔 | 埃布鲁・宝雅 | [下载](https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866) |\n| 奥斯曼帝国六百年 | 帕特里克・贝尔福 | [下载](https://url89.ctfile.com/f/31084289-1357023592-246a21?p=8866) |\n"
  },
  {
    "path": "md/圣经.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 圣经\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 圣经的故事（果麦经典） | 亨德里克・威廉・房龙 | [下载](https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866) |\n"
  },
  {
    "path": "md/地中海.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 地中海\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 地中海世界一万五千年 | 阿兰・布隆迪 | [下载](https://url89.ctfile.com/f/31084289-1375498942-9f4334?p=8866) |\n| 伟大的海（全2册） | 大卫・阿布拉菲亚 | [下载](https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866) |\n| 地中海的衰落 | 布雷斯特德 | [下载](https://url89.ctfile.com/f/31084289-1357020049-1f86d7?p=8866) |\n| 罗马灭亡后的地中海世界（上下册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866) |\n| 地中海史诗三部曲 | 罗杰・克劳利 | [下载](https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866) |\n"
  },
  {
    "path": "md/地图.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 地图\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 地图3000年 | 托马斯・伯格 | [下载](https://url89.ctfile.com/f/31084289-1375506883-89a846?p=8866) |\n| 京华心影 | 李弘 | [下载](https://url89.ctfile.com/f/31084289-1356985177-faad3a?p=8866) |\n"
  },
  {
    "path": "md/地球.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 地球\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 重新认识资本主义三部曲 | 娜奥米・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866) |\n"
  },
  {
    "path": "md/地理.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 地理\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 重返帕米尔 | 侯杨方 | [下载](https://url89.ctfile.com/f/31084289-1375501357-a9c1bd?p=8866) |\n| 深时之旅 | 罗伯特・麦克法伦 | [下载](https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866) |\n| 地球的故事 | 罗伯特・哈森 | [下载](https://url89.ctfile.com/f/31084289-1375505959-214d70?p=8866) |\n| 美国国家地理全球史第一辑（套装共4册） | 美国国家地理学会 | [下载](https://url89.ctfile.com/f/31084289-1375509697-1692ee?p=8866) |\n| 美国国家地理全球史第二辑（套装共6册） | 美国国家地理学会 | [下载](https://url89.ctfile.com/f/31084289-1375510276-da2547?p=8866) |\n| 这里是中国 | 星球研究所 | [下载](https://url89.ctfile.com/f/31084289-1357001278-e6701c?p=8866) |\n| 地理的时空 | 尼古拉斯・克兰 | [下载](https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866) |\n| 极简地理学 | 威尔・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357050448-e34a7b?p=8866) |\n| 秘境 | 乔舒亚・福尔等 | [下载](https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866) |\n| 地理与世界霸权 | 詹姆斯・费尔格里夫 | [下载](https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866) |\n| 谁在世界的中央 | 梁二平 | [下载](https://url89.ctfile.com/f/31084289-1357020298-7a1189?p=8866) |\n| 中信国学大典：历史地理（上册） | 单周尧等 | [下载](https://url89.ctfile.com/f/31084289-1357019728-de9599?p=8866) |\n| 中信国学大典：历史地理（下册） | 张伟保等 | [下载](https://url89.ctfile.com/f/31084289-1357019734-e6e9b5?p=8866) |\n| 地理学与生活：全彩插图第11版 | 阿瑟・格蒂斯等 | [下载](https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866) |\n| 西部王国传奇（套装共5册） | 贾陈亮/王东等 | [下载](https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866) |\n| 飞乐鸟的手绘旅行笔记：厦门 | 飞乐鸟 | [下载](https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866) |\n| 地缘大战略 | 丁力 | [下载](https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866) |\n| 马伯庸笑翻中国简史 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005364-c7bb93?p=8866) |\n"
  },
  {
    "path": "md/埃博拉.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 埃博拉\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 血疫：埃博拉的故事 | 理查德・普雷斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866) |\n"
  },
  {
    "path": "md/埃及.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 埃及\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 古埃及女性 | 克里斯蒂安・雅克 | [下载](https://url89.ctfile.com/f/31084289-1375512898-c00ee5?p=8866) |\n| 埃及四千年 | 乔安・弗莱彻 | [下载](https://url89.ctfile.com/f/31084289-1357029427-79b57f?p=8866) |\n| 埃及神话 | 加里·J.肖 | [下载](https://url89.ctfile.com/f/31084289-1357025149-2a44c7?p=8866) |\n| 开罗埃及博物馆 | 西尔维娅・埃诺迪 | [下载](https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866) |\n| 都灵埃及博物馆 | 西尔维娅・埃诺迪  | [下载](https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866) |\n| 谋杀金字塔 | 克里斯提昂・贾克 | [下载](https://url89.ctfile.com/f/31084289-1357008451-7b089f?p=8866) |\n| 沙漠法则 | 克里斯提昂・贾克 | [下载](https://url89.ctfile.com/f/31084289-1357008442-61c5a4?p=8866) |\n| 首相的正义 | 克里斯提昂・贾克 | [下载](https://url89.ctfile.com/f/31084289-1357008430-839940?p=8866) |\n"
  },
  {
    "path": "md/城市.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 城市\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人间杭州 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1375498333-278c6e?p=8866) |\n| 城市与压力 | 马兹达・阿德里 | [下载](https://url89.ctfile.com/f/31084289-1375509655-c19810?p=8866) |\n| 烟囱与进步人士 | 大卫・斯特拉德林 | [下载](https://url89.ctfile.com/f/31084289-1375512436-c178c9?p=8866) |\n| 消失的古城 | 王笛 | [下载](https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866) |\n| 泰晤士：大河大城 | 彼得・阿克罗伊德 | [下载](https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866) |\n| 威尼斯：晨昏岛屿的集市 | 彼得・阿克罗伊德 | [下载](https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866) |\n| 新城市科学 | 迈克尔・巴蒂 | [下载](https://url89.ctfile.com/f/31084289-1356995401-9787ba?p=8866) |\n| 孟买：欲望丛林 | 苏科图・梅塔 | [下载](https://url89.ctfile.com/f/31084289-1356991444-36c1f2?p=8866) |\n| 一座城市，一部历史 | 李永石等 | [下载](https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866) |\n| 数据驱动的智能城市 | 史蒂芬・戈德史密斯/苏珊・克劳福德 | [下载](https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866) |\n| 上海摩登（修订版） | 李欧梵 | [下载](https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866) |\n| 上海传：叶辛眼中的上海 | 叶辛 | [下载](https://url89.ctfile.com/f/31084289-1356984811-e257e0?p=8866) |\n| 创造未来城市 | 迈克尔・巴蒂 | [下载](https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866) |\n| 北京的隐秘角落 | 陆波 | [下载](https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866) |\n| 智能城市 | 卡洛・拉蒂 | [下载](https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866) |\n| 刺桐城 | 王铭铭 | [下载](https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866) |\n| 城市隐秩序 | 刘春成 | [下载](https://url89.ctfile.com/f/31084289-1357042336-7a14a0?p=8866) |\n| 26城记 | 蔡天新 | [下载](https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866) |\n| 房地产与城市发展 | 陈杰/陆铭/黄益平/潘英丽 | [下载](https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866) |\n| 上海秘境 | TimeOut 上海 | [下载](https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866) |\n"
  },
  {
    "path": "md/基因.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 基因\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 很高兴认识“我” | 比尔・沙利文 | [下载](https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866) |\n| 基因蓝图 | 罗伯特・普罗明 | [下载](https://url89.ctfile.com/f/31084289-1356994126-6e174f?p=8866) |\n| 基因与命运 | 斯蒂芬·J.海涅 | [下载](https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866) |\n| 人类的旅程 | 斯宾塞・韦尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866) |\n| 共同的生命线 | 约翰・苏尔斯顿/乔治娜・费里 | [下载](https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866) |\n| 生命密码 | 尹烨 | [下载](https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866) |\n| 自私的基因（40周年增订版） | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357023907-8aa3e0?p=8866) |\n| 重新设计生命 | 约翰・帕林顿 | [下载](https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866) |\n| 基因魔剪 | 日本NHK“基因组编辑”采访组 | [下载](https://url89.ctfile.com/f/31084289-1357020022-f75244?p=8866) |\n| 上帝的手术刀 | 王立铭 | [下载](https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866) |\n| 基因传 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866) |\n| 基因组：人类自传 | 马特・里德利 | [下载](https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866) |\n"
  },
  {
    "path": "md/基督.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 基督\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一代巨人：明末耶稣会士在中国的故事 | 邓恩 | [下载](https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866) |\n"
  },
  {
    "path": "md/基督教.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 基督教\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 基督教史（套装共2册） | 胡斯托・冈萨雷斯 | [下载](https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866) |\n"
  },
  {
    "path": "md/基金.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 基金\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 指数基金投资攻略 | 翁量 | [下载](https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866) |\n| 共同基金常识（10周年纪念版） | 约翰・博格 | [下载](https://url89.ctfile.com/f/31084289-1375500526-edcefa?p=8866) |\n| 坚守 | 约翰・博格 | [下载](https://url89.ctfile.com/f/31084289-1375511698-19f58e?p=8866) |\n| 指数定投实现财务自由 | 姬建东 | [下载](https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866) |\n| 小散逆袭：手把手教你做量化定投 | 万磊 | [下载](https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866) |\n| 定投十年财务自由 | 银行螺丝钉 | [下载](https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866) |\n| 对冲基金怪杰（典藏版） | 杰克・施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866) |\n| 私募的进化 | 格上研究中心 | [下载](https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866) |\n| 指数基金投资指南 | 银行螺丝钉 | [下载](https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866) |\n| 对冲基金到底是什么？ | 黄徽 | [下载](https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866) |\n"
  },
  {
    "path": "md/复杂性.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 复杂性\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 为什么需要生物学思维 | 塞缪尔・阿贝斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866) |\n"
  },
  {
    "path": "md/复盘.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 复盘\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 复盘+（第3版） | 邱昭良 | [下载](https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866) |\n| 复盘：对过去的事情做思维演练 | 陈中 | [下载](https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866) |\n"
  },
  {
    "path": "md/外交.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 外交\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大外交 | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866) |\n| 权力的教训 | 弗朗索瓦・奥朗德 | [下载](https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866) |\n| 罗盘与风向标 | 雷蒙德・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357028383-8bed41?p=8866) |\n| 峰会：影响20世纪的六场元首会谈 | 戴维・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866) |\n"
  },
  {
    "path": "md/外国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 外国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鲁滨逊漂流记（果麦经典） | 丹尼尔・笛福 | [下载](https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866) |\n| 法定幸福 | 诺曼・马内阿 | [下载](https://url89.ctfile.com/f/31084289-1357032517-74cfb2?p=8866) |\n| 摆渡人3：无境之爱 | 克莱儿・麦克福尔 | [下载](https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866) |\n| The Calculating Stars | Mary Robinette Kowal | [下载](https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866) |\n| 劳伦斯禁书三部曲（全新修订版） | D.H.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357031536-958b1b?p=8866) |\n| 人鼠之间（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357031245-271805?p=8866) |\n| 布鲁克林的荒唐事（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357031161-0663b4?p=8866) |\n| 文学、通俗文化和社会 | 利奥・洛文塔尔 | [下载](https://url89.ctfile.com/f/31084289-1357030576-bd1f90?p=8866) |\n| 川端康成至美典藏全集 | 川端康成 | [下载](https://url89.ctfile.com/f/31084289-1357030369-6372c2?p=8866) |\n| 时间的礼物 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357029586-943dca?p=8866) |\n| 蝗灾之日 | 纳撒尼尔・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029325-063152?p=8866) |\n| 坎特伯雷故事（译文名著典藏） | 杰弗里・乔叟 | [下载](https://url89.ctfile.com/f/31084289-1357026763-3a2c91?p=8866) |\n| 少年Pi的奇幻漂流（绘图珍藏本） | 扬・马特尔 | [下载](https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866) |\n| 种玫瑰的男人 | 奥杜・阿娃・奥拉夫斯多蒂 | [下载](https://url89.ctfile.com/f/31084289-1357025083-feb78a?p=8866) |\n| 屠格涅夫文集（全6册） | 屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1357025002-6ad075?p=8866) |\n| 阿瑟·黑利系列（套装共6册） | 阿瑟・黑利 | [下载](https://url89.ctfile.com/f/31084289-1357024852-a25776?p=8866) |\n| 伯纳黛特，你要去哪 | 玛利亚・森普尔 | [下载](https://url89.ctfile.com/f/31084289-1357024531-bf243b?p=8866) |\n| 熊镇 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357024174-567c22?p=8866) |\n| 故园风雨后 | 伊夫林・沃 | [下载](https://url89.ctfile.com/f/31084289-1357024093-fba3b7?p=8866) |\n| 北回归线 | 亨利・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023901-5575f9?p=8866) |\n| 独抒己见 | 弗拉基米尔・纳博科夫 | [下载](https://url89.ctfile.com/f/31084289-1357023283-fe22ec?p=8866) |\n| 大雪将至 | 罗伯特・泽塔勒 | [下载](https://url89.ctfile.com/f/31084289-1357022254-844fb9?p=8866) |\n| 衣橱里的女孩 | 弗朗丝・盖兰 | [下载](https://url89.ctfile.com/f/31084289-1357021819-929df9?p=8866) |\n| 神枪手迪克 | 库尔特・冯内古特 | [下载](https://url89.ctfile.com/f/31084289-1357021288-92f5e6?p=8866) |\n| 解离的真实 | 卡洛斯・卡斯塔尼达 | [下载](https://url89.ctfile.com/f/31084289-1357019611-2b333c?p=8866) |\n| 都灵埃及博物馆 | 西尔维娅・埃诺迪  | [下载](https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866) |\n| 迷宫中的将军 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357016203-716374?p=8866) |\n| 波吉亚家族 | 马里奥・普佐 | [下载](https://url89.ctfile.com/f/31084289-1357016059-1a1324?p=8866) |\n| 摆渡人2：重返荒原 | 克莱儿・麦克福尔 | [下载](https://url89.ctfile.com/f/31084289-1357015192-9058db?p=8866) |\n| One Day | David Nicholls | [下载](https://url89.ctfile.com/f/31084289-1357015183-e28af6?p=8866) |\n| 到大地尽头 | 大卫・格罗斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357015066-bcbe3d?p=8866) |\n| 午夜之子 | 萨曼・鲁西迪 | [下载](https://url89.ctfile.com/f/31084289-1357014967-759eef?p=8866) |\n| 柏林孤谍 | 约瑟夫・卡农 | [下载](https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866) |\n| 复明症漫记 | 若泽・萨拉马戈 | [下载](https://url89.ctfile.com/f/31084289-1357014748-8511f3?p=8866) |\n| 珠穆朗玛之魔（套装共3册） | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357014637-ae4341?p=8866) |\n| 时间停止的那一天 | 蕾秋・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357014655-debad3?p=8866) |\n| 走出非洲 | 凯伦・布里克森 | [下载](https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866) |\n| 莫里哀先生传 | 米哈伊尔・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357013956-e85b77?p=8866) |\n| 逃亡 | 米哈伊尔・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357013950-1259d9?p=8866) |\n| 君士坦丁堡最后之恋 | 米洛拉德・帕维奇 | [下载](https://url89.ctfile.com/f/31084289-1357013839-6df24f?p=8866) |\n| 1984 | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357013032-d786be?p=8866) |\n| 无欲的悲歌 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357013011-411202?p=8866) |\n| 痛苦的中国人 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357012993-90c384?p=8866) |\n| 杨周翰作品集（全6卷） | 杨周翰 | [下载](https://url89.ctfile.com/f/31084289-1357012693-67e2e6?p=8866) |\n| 切尔诺贝利的悲鸣 | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866) |\n| 摘星星的男孩 | 约翰・威廉姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866) |\n| 荆棘鸟（修订版） | 考琳·麦卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866) |\n| 冬日笔记 | 保罗·奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866) |\n"
  },
  {
    "path": "md/外国文学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 外国文学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 好兵帅克历险记（名著名译丛书） | 雅・哈谢克 | [下载](https://url89.ctfile.com/f/31084289-1357035016-e0b80e?p=8866) |\n| 一个女人一生中的二十四小时（企鹅经典） | 斯台芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357033507-fe6b8e?p=8866) |\n| 流氓的归来 | 诺曼・马内阿 | [下载](https://url89.ctfile.com/f/31084289-1357032382-2de8ce?p=8866) |\n| 一样的海 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023175-088266?p=8866) |\n"
  },
  {
    "path": "md/外文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 外文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 英国《金融时报》原文阅读精选集（四） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866) |\n"
  },
  {
    "path": "md/外汇.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 外汇\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 外汇交易：高手训练营 | 埃德・蓬西 | [下载](https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866) |\n| 外汇交易的10堂必修课 | 贾里德・马丁内斯 | [下载](https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866) |\n"
  },
  {
    "path": "md/大势.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大势\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大势研判：经济、政策与资本市场 | 任泽平 | [下载](https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866) |\n"
  },
  {
    "path": "md/大学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知识社会中的大学 | 杰勒德・德兰迪 | [下载](https://url89.ctfile.com/f/31084289-1357004371-45c9cb?p=8866) |\n| 大学的精神 | 蒲实/陈赛 | [下载](https://url89.ctfile.com/f/31084289-1357026901-285fb4?p=8866) |\n"
  },
  {
    "path": "md/大师.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大师\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 民国清流那些大师们（全四册） | 汪兆骞 | [下载](https://url89.ctfile.com/f/31084289-1357010944-bdb64a?p=8866) |\n"
  },
  {
    "path": "md/大数据.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大数据\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 数据如何误导了我们 | 桑内・布劳 | [下载](https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866) |\n| 魔鬼统计学 | 伊恩・艾瑞斯 | [下载](https://url89.ctfile.com/f/31084289-1375511344-1b7066?p=8866) |\n| 错觉：AI如何通过数据挖掘误导我们 | 加里・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866) |\n| 数据资本时代 | Viktor Mayer-Schnberger | [下载](https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866) |\n| 用户画像 | 赵宏田 | [下载](https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866) |\n| 小数据之美 | 陈辉 | [下载](https://url89.ctfile.com/f/31084289-1356982447-1e6d76?p=8866) |\n| 爆发 | 艾伯特-拉斯洛・巴拉巴西 | [下载](https://url89.ctfile.com/f/31084289-1357027993-9ab187?p=8866) |\n| 数字中国 | 江青 | [下载](https://url89.ctfile.com/f/31084289-1357026172-41fe7f?p=8866) |\n| 四维人类 | 劳伦斯・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866) |\n| 数文明 | 涂子沛 | [下载](https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866) |\n| 决战大数据（升级版） | 车品觉 | [下载](https://url89.ctfile.com/f/31084289-1357017913-52f044?p=8866) |\n| 智慧政府 | 徐继华/冯启娜/陈贞汝 | [下载](https://url89.ctfile.com/f/31084289-1357013230-588ffe?p=8866) |\n| 大数据时代 | 维克托・迈尔・舍恩伯格  | [下载](https://url89.ctfile.com/f/31084289-1357010281-c20367?p=8866) |\n"
  },
  {
    "path": "md/大汉.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大汉\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大汉帝国（套装共2册） | 萧然 | [下载](https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866) |\n| 不忍细看的大汉史 | 墨竹 | [下载](https://url89.ctfile.com/f/31084289-1357008358-9b1891?p=8866) |\n"
  },
  {
    "path": "md/大清.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大清\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大清棋局：明亡清兴卷 | 刘澍 | [下载](https://url89.ctfile.com/f/31084289-1357020847-19ba79?p=8866) |\n| 大清风云（全8册） | 鹿鼎公子 | [下载](https://url89.ctfile.com/f/31084289-1357016614-3ffe45?p=8866) |\n| 大清相国 | 王跃文 | [下载](https://url89.ctfile.com/f/31084289-1357006573-950976?p=8866) |\n"
  },
  {
    "path": "md/大脑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大脑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大脑的情绪生活 | 理查德・戴维森/莎朗・伯格利 | [下载](https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866) |\n| 大脑的故事 | 大卫・伊格曼 | [下载](https://url89.ctfile.com/f/31084289-1357033396-0dc284?p=8866) |\n| 脑与意识 | 斯坦尼斯拉斯・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866) |\n| 让大脑自由 | 约翰・梅迪纳 | [下载](https://url89.ctfile.com/f/31084289-1357015795-94cb6e?p=8866) |\n| 脑的阅读：破解人类阅读之谜 | 斯坦尼斯拉斯・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866) |\n| 大脑开发指南（全3册） | 丹・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357008388-ce451a?p=8866) |\n"
  },
  {
    "path": "md/大脑科学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大脑科学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 解放你的大脑 | 伊德里斯・阿贝尔坎 | [下载](https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866) |\n"
  },
  {
    "path": "md/大自然.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大自然\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 自然万物科普百科（套装共2册） | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866) |\n"
  },
  {
    "path": "md/大航海.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 大航海\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 哥伦布、大航海时代与地理大发现 | 约翰・S.C.阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866) |\n| 无敌舰队 | 加勒特・马丁利 | [下载](https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866) |\n"
  },
  {
    "path": "md/天文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 天文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 国家地理终极观星指南 | 霍华德・施耐德  | [下载](https://url89.ctfile.com/f/31084289-1375496701-44ca96?p=8866) |\n| 到火星去 | 莎拉・斯图尔特・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375499260-e8e937?p=8866) |\n| 4000年中国天文史 | 让・马克・博奈・比多 | [下载](https://url89.ctfile.com/f/31084289-1357000792-a0a2d6?p=8866) |\n| 牛津通识课 | 凯瑟琳・玛丽・布伦德尔等 | [下载](https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866) |\n| 如果，哥白尼错了 | 凯莱布・沙夫 | [下载](https://url89.ctfile.com/f/31084289-1356991624-eb9c92?p=8866) |\n| 一个天文学家的夜空漫游指南 | 郑春顺 | [下载](https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866) |\n| 是我想多了吗？ | 新科学家杂志/邱涛涛 | [下载](https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866) |\n| 太阳系简史 | 约翰・钱伯斯/杰奎琳・米顿 | [下载](https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866) |\n| 月亮全书 | 比尔・莱瑟巴罗 | [下载](https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866) |\n| 追捕祝融星 | 托马斯・利文森 | [下载](https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866) |\n| 140亿年宇宙演化全史 | 尼尔・德格拉斯・泰森/唐纳德・戈德史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866) |\n| 第一推动丛书·弦理论之争系列（新版套装共3册） | 布莱恩・格林 | [下载](https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866) |\n| 第一推动丛书·物理系列（套装共9册） | 布莱恩・格林等 | [下载](https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866) |\n| 星空故事 | 苏珊娜・希斯洛普 | [下载](https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866) |\n| 极简天文学 | 科林・斯图尔特 | [下载](https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866) |\n| 宇宙从何而来 | 傅渥成 | [下载](https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866) |\n| 星空的琴弦 | 汪洁 | [下载](https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866) |\n| 重新认识资本主义三部曲 | 娜奥米・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866) |\n| 行星全书 | 尼尔马拉・纳塔瑞杰 | [下载](https://url89.ctfile.com/f/31084289-1357014421-80096e?p=8866) |\n| Astrophysics for People in a Hurry | Neil deGrasse Tyson | [下载](https://url89.ctfile.com/f/31084289-1357014013-01ce24?p=8866) |\n| 通俗天文学（全彩四色珍藏版） | 西蒙・纽康 | [下载](https://url89.ctfile.com/f/31084289-1357010887-fc3eff?p=8866) |\n| 极简宇宙史 | 克里斯托弗・加尔法德 | [下载](https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866) |\n| 给忙碌者的天体物理学 | 尼尔・德格拉斯・泰森 | [下载](https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866) |\n"
  },
  {
    "path": "md/太平天国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 太平天国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 太平杂说 | 潘旭澜 | [下载](https://url89.ctfile.com/f/31084289-1357033300-e4d871?p=8866) |\n| 天国之痒 | 李洁非 | [下载](https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866) |\n| 天国之秋 | 裴士锋 | [下载](https://url89.ctfile.com/f/31084289-1357015171-03bda3?p=8866) |\n| 失稳的帝国 | 邢超 | [下载](https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866) |\n| 1856：纠结的大清、天国与列强 | 陶短房 | [下载](https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866) |\n| 极乐诱惑：太平天国的兴亡 | 赫连勃勃大王 | [下载](https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866) |\n"
  },
  {
    "path": "md/太平洋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 太平洋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 诸神的黄昏 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866) |\n| 太平洋战争 | 赫克特·C. 拜沃特 | [下载](https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866) |\n"
  },
  {
    "path": "md/太空.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 太空\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 太空居民 | 克里斯托弗・万杰克 | [下载](https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866) |\n| 我在太空的一年 | 斯科特 · 凯利等 | [下载](https://url89.ctfile.com/f/31084289-1357050355-16803e?p=8866) |\n| 人类为什么要探索太空 | 克里斯・英庇 | [下载](https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866) |\n| 揭秘太空 | 张天蓉 | [下载](https://url89.ctfile.com/f/31084289-1357043209-6575f3?p=8866) |\n| 太空全书 | 詹姆斯・特赖菲尔 | [下载](https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866) |\n"
  },
  {
    "path": "md/奇幻.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 奇幻\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 紫与黑：K.J.帕克短篇小说集 | K.J.帕克 | [下载](https://url89.ctfile.com/f/31084289-1375498744-f6d482?p=8866) |\n| 世界奇幻地图 | 爱德华・布鲁克-海钦 | [下载](https://url89.ctfile.com/f/31084289-1375501741-13c2f5?p=8866) |\n| 第一律法三部曲 | 乔・阿克罗比 | [下载](https://url89.ctfile.com/f/31084289-1375504495-3b4c30?p=8866) |\n| 都市异闻录 | 烟萝萤 | [下载](https://url89.ctfile.com/f/31084289-1375510576-c3a618?p=8866) |\n| 长日尽处 | 斯蒂芬妮・加伯 | [下载](https://url89.ctfile.com/f/31084289-1375512178-3ce912?p=8866) |\n| 烟与镜 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1375512340-683bae?p=8866) |\n| 古王国传奇五部曲 | 加思・尼克斯 | [下载](https://url89.ctfile.com/f/31084289-1375513600-9434c9?p=8866) |\n| 订书匠 | 布里奇特・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1356999211-bda260?p=8866) |\n| 刚多林的陷落（插图本） | J. R. R. 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1356995080-a6b324?p=8866) |\n| 唐骨 | 天涯野草 | [下载](https://url89.ctfile.com/f/31084289-1356991843-ed92a9?p=8866) |\n| 人行世界 | 七马 | [下载](https://url89.ctfile.com/f/31084289-1356990592-949566?p=8866) |\n| 一月物语 | 平野启一郎 | [下载](https://url89.ctfile.com/f/31084289-1356989392-a006fe?p=8866) |\n| 有顶天家族 | 森见登美彦 | [下载](https://url89.ctfile.com/f/31084289-1356988357-5975f0?p=8866) |\n| 二代目归来 | 森见登美彦 | [下载](https://url89.ctfile.com/f/31084289-1356988351-2d0fbe?p=8866) |\n| 邪恶力量：超自然生物图鉴 | 提姆・瓦格纳 | [下载](https://url89.ctfile.com/f/31084289-1356985678-c429a7?p=8866) |\n| 野兽国 | 戴夫・艾格斯 | [下载](https://url89.ctfile.com/f/31084289-1356985486-dcca8d?p=8866) |\n| 破战者 | 布兰登・桑德森 | [下载](https://url89.ctfile.com/f/31084289-1356985150-3bb1ea?p=8866) |\n| 谭恩美作品集（套装共3本） | 谭恩美 | [下载](https://url89.ctfile.com/f/31084289-1356985123-02ba5b?p=8866) |\n| 沙漏做招牌的疗养院 | 布鲁诺・舒尔茨 | [下载](https://url89.ctfile.com/f/31084289-1356984817-29e172?p=8866) |\n| 坟场之书 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1356984631-c99749?p=8866) |\n| 血与火：坦格利安王朝史 | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1356983806-ec2271?p=8866) |\n| 萨拉戈萨手稿 | 扬・波托茨基 | [下载](https://url89.ctfile.com/f/31084289-1356982513-606bac?p=8866) |\n| 血之遗产 | 理查德˙A.纳克 | [下载](https://url89.ctfile.com/f/31084289-1357054489-624f55?p=8866) |\n| 战略级天使 | 白伯欢 | [下载](https://url89.ctfile.com/f/31084289-1357052299-3d2050?p=8866) |\n| 隐页书城三部曲 | 凯・迈尔 | [下载](https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866) |\n| 奇想博物志 | 涩泽龙彦 | [下载](https://url89.ctfile.com/f/31084289-1357051621-c26076?p=8866) |\n| 怪奇物语·噩梦 | 宁航一 | [下载](https://url89.ctfile.com/f/31084289-1357051531-fb4a6f?p=8866) |\n| 亚瑟王之死（果麦经典） | 托马斯・马洛礼 | [下载](https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866) |\n| 冰风谷三部曲 | R.A.萨尔瓦多 | [下载](https://url89.ctfile.com/f/31084289-1357050406-705d67?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说3） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357051225-10a03f?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说1） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357050733-ce5a62?p=8866) |\n| 黑暗物质三部曲 | 菲利普・普尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说2） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357050352-c86d54?p=8866) |\n| 胡林的子女（插图本） | J.R.R. 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357044868-5b0ca5?p=8866) |\n| 空中城 | 夏芒 | [下载](https://url89.ctfile.com/f/31084289-1357043191-5eb35a?p=8866) |\n| 格列佛游记（作家榜经典文库） | 乔纳森・斯威夫特 | [下载](https://url89.ctfile.com/f/31084289-1357042867-c3483f?p=8866) |\n| 太阳王与海妖 | 冯达·N.麦金泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357041379-6263bc?p=8866) |\n| 夜袭动物园 | 比尔・布龙 | [下载](https://url89.ctfile.com/f/31084289-1357039288-50ece6?p=8866) |\n| 子不语（果麦经典） | 袁枚 | [下载](https://url89.ctfile.com/f/31084289-1357036864-3b3707?p=8866) |\n| 皇帝魂 | 布兰登・桑德森 | [下载](https://url89.ctfile.com/f/31084289-1357036789-63a21f?p=8866) |\n| 亡者归来 | 詹森・莫特 | [下载](https://url89.ctfile.com/f/31084289-1357035871-b3b323?p=8866) |\n| The Lost Hero | Rick Riordan | [下载](https://url89.ctfile.com/f/31084289-1357034704-83b347?p=8866) |\n| The Son of Neptune | Riordan, Rick | [下载](https://url89.ctfile.com/f/31084289-1357034701-12ce38?p=8866) |\n| The Blood of Olympus | Rick Riordan | [下载](https://url89.ctfile.com/f/31084289-1357034686-547a10?p=8866) |\n| 封神演义（果麦经典） | 许仲琳 | [下载](https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866) |\n| 绿里 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866) |\n| 乌有乡 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357033015-db0e92?p=8866) |\n| Season of Storms | Sapkowski/Andrzej | [下载](链接未找到) |\n| 诺贝尔文学奖得主石黑一雄作品集（套装共8册） | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357032526-985657?p=8866) |\n| 九州缥缈录 | 江南 | [下载](https://url89.ctfile.com/f/31084289-1357032490-b7d958?p=8866) |\n| 七侯笔录 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357032064-f516e5?p=8866) |\n| 怪物比利·迪恩的真实故事 | 大卫・阿尔蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357031716-c957b8?p=8866) |\n| 英伦魔法拾遗 | 苏珊娜・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357029736-2034c2?p=8866) |\n| 三十六骑 | 念远怀人 | [下载](https://url89.ctfile.com/f/31084289-1357028368-c78c0c?p=8866) |\n| 地疤 | 柴纳・米耶维 | [下载](https://url89.ctfile.com/f/31084289-1357027942-9566c1?p=8866) |\n| 高能预警 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357027366-bb5633?p=8866) |\n| 未亡日 | 藤萍 | [下载](https://url89.ctfile.com/f/31084289-1357027129-0db3f5?p=8866) |\n| 少年Pi的奇幻漂流（插图珍藏版） | 扬・马特尔 | [下载](https://url89.ctfile.com/f/31084289-1357024228-8bc84a?p=8866) |\n| 荆棘与白骨的王国（全4册） | 格里格・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1357023694-8bd945?p=8866) |\n| 贞观幽明谭 | 燕垒生 | [下载](https://url89.ctfile.com/f/31084289-1357023625-5e1243?p=8866) |\n| 黑暗精灵三部曲 | 萨尔瓦多 | [下载](https://url89.ctfile.com/f/31084289-1357022644-fd884f?p=8866) |\n| 北欧众神 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357022500-26f71b?p=8866) |\n| 星尘 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357022449-2e132d?p=8866) |\n| 狐狸男孩 | 米拉・巴尔托克 | [下载](https://url89.ctfile.com/f/31084289-1357021681-5ea59b?p=8866) |\n| 死灵之书 | 洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1357021267-6d09de?p=8866) |\n| 迦梨之歌 | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357021000-5d08a4?p=8866) |\n| 无根之木 | 娜奥米・诺维克 | [下载](https://url89.ctfile.com/f/31084289-1357018459-bda9be?p=8866) |\n| 紫川（全五册） | 老猪 | [下载](https://url89.ctfile.com/f/31084289-1357017499-3d0e79?p=8866) |\n| 精灵血脉01：血脉 | 萨尔瓦多 | [下载](https://url89.ctfile.com/f/31084289-1357017235-f0c794?p=8866) |\n| 精灵血脉02：无星之夜 | 萨尔瓦多 | [下载](https://url89.ctfile.com/f/31084289-1357017223-2c3fc2?p=8866) |\n| 精灵血脉03：暗军突袭 | 萨尔瓦多  | [下载](https://url89.ctfile.com/f/31084289-1357017217-b9f9f5?p=8866) |\n| 精灵血脉04：破晓之路 | 萨尔瓦多 | [下载](https://url89.ctfile.com/f/31084289-1357017214-545592?p=8866) |\n| 妖猫传（全4册） | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357015699-96e7ca?p=8866) |\n| 精灵宝钻 | 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357015567-02c2c7?p=8866) |\n| 海上牧云记 | 今何在 | [下载](https://url89.ctfile.com/f/31084289-1357015468-1af3e8?p=8866) |\n| 碟形世界：魔法的颜色 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357015024-5ce406?p=8866) |\n| 碟形世界：异光 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357015021-76665f?p=8866) |\n| 碟形世界：平等权利 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357015015-402a9f?p=8866) |\n| 碟形世界：死神学徒 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357015012-4369ec?p=8866) |\n| 碟形世界：大法 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357015006-a1b497?p=8866) |\n| 碟形世界：金字塔 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357014994-1dde5b?p=8866) |\n| 碟形世界：卫兵！卫兵！ | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357015009-cfd897?p=8866) |\n| 知更鸟女孩 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357014685-b41a25?p=8866) |\n| 知更鸟女孩2：沉默之歌 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357014682-90a977?p=8866) |\n| 沙娜拉之剑（全3册） | 特里・布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357014520-838f52?p=8866) |\n| 碟形世界：猫和少年魔笛手 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357014460-bde9de?p=8866) |\n| 四海鲸骑（套装共2册） | 马伯庸/驰骋 | [下载](https://url89.ctfile.com/f/31084289-1357014385-34f7fa?p=8866) |\n| 魔法活船1：魔法之船 | 罗宾・霍布 | [下载](https://url89.ctfile.com/f/31084289-1357011976-488bf7?p=8866) |\n| 魔法活船2：疯狂之船 | 罗宾・霍布 | [下载](https://url89.ctfile.com/f/31084289-1357011961-e632a9?p=8866) |\n| 魔法活船3：命运之船 | 罗宾・霍布 | [下载](https://url89.ctfile.com/f/31084289-1357011949-ace384?p=8866) |\n| 贝伦与露西恩（插图本） | 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357011979-e75e80?p=8866) |\n| 冰龙 | 乔治・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357011706-1a3d77?p=8866) |\n| 觉醒日（套装共4册） | 唐缺 | [下载](https://url89.ctfile.com/f/31084289-1357010131-879962?p=8866) |\n| 金沙古卷（套装全4册） | 鱼离泉 | [下载](https://url89.ctfile.com/f/31084289-1357009879-c71aec?p=8866) |\n| 努门诺尔与中洲之未完的传说 | J.R.R.托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357009759-306ebf?p=8866) |\n| 安珀志系列（1-10册） | 罗杰・泽拉兹尼 | [下载](https://url89.ctfile.com/f/31084289-1357009735-823f6f?p=8866) |\n| 神奇动物在哪里 | J.K.罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357009636-41157c?p=8866) |\n| 悟空传（完美纪念版） | 今何在 | [下载](https://url89.ctfile.com/f/31084289-1357009351-e1b571?p=8866) |\n| 狼的恩赐 | 安妮・赖斯 | [下载](https://url89.ctfile.com/f/31084289-1357008847-6c1eed?p=8866) |\n| 美国众神（十周年作者修订版） | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357008802-e10699?p=8866) |\n| 怪屋女孩 | 兰萨姆・里格斯 | [下载](https://url89.ctfile.com/f/31084289-1357008331-4ae033?p=8866) |\n| 怪屋女孩2：空城 | 兰萨姆・里格斯 | [下载](https://url89.ctfile.com/f/31084289-1357008328-d243c1?p=8866) |\n| 光明王系列（套装共2册） | 罗杰・泽拉兹尼 | [下载](https://url89.ctfile.com/f/31084289-1357008265-d3532c?p=8866) |\n| 阴阳师典藏合集（共5册） | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357007383-629588?p=8866) |\n| 龙族（共5册） | 江南 | [下载](https://url89.ctfile.com/f/31084289-1357007161-bed205?p=8866) |\n| 天赋者 | 林洛 | [下载](https://url89.ctfile.com/f/31084289-1357007005-788784?p=8866) |\n| 唐朝诡事录2：长安鬼迹 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866) |\n| 沙门空海之大唐鬼宴·卷之一·入唐 | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357006813-c02669?p=8866) |\n| 沙门空海之大唐鬼宴·卷之二·咒俑 | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357006810-5335bf?p=8866) |\n| 沙门空海之大唐鬼宴·卷之三·胡术 | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357006801-6964e4?p=8866) |\n| 沙门空海之大唐鬼宴·卷之四·不空 | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357006795-b95cc7?p=8866) |\n| 天行健（套装全7册） | 燕垒生 | [下载](https://url89.ctfile.com/f/31084289-1357006582-7f3c57?p=8866) |\n| 地海传奇六部曲 | 厄休拉・勒古恩 | [下载](https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866) |\n| 时光之轮全集 | 罗伯特·乔丹 | [下载](https://url89.ctfile.com/f/31084289-1357006192-45f890?p=8866) |\n| 冰与火之歌1-5卷（全15册） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357005802-26b297?p=8866) |\n| 殷商舰队玛雅征服史 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005349-29bb67?p=8866) |\n"
  },
  {
    "path": "md/奥地利.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 奥地利\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 骂观众 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357039432-b8a3ae?p=8866) |\n| 缓慢的归乡 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357038769-f672c1?p=8866) |\n| 左撇子女人 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357038766-406e59?p=8866) |\n| 马尔特手记（译文经典） | 莱内・马利亚・里尔克 | [下载](https://url89.ctfile.com/f/31084289-1357038694-91674f?p=8866) |\n| 以上帝和恺撒之名 | 理查德・巴塞特 | [下载](https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866) |\n| 一个女人一生中的二十四小时（企鹅经典） | 斯台芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357033507-fe6b8e?p=8866) |\n| 形同陌路的时刻 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357013440-fec756?p=8866) |\n"
  },
  {
    "path": "md/女性.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 女性\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 女孩们的地下战争 | 蕾切尔・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1375491190-40f929?p=8866) |\n| 浮木 | 杨本芬 | [下载](https://url89.ctfile.com/f/31084289-1375493731-a2dea1?p=8866) |\n| 妈妈的战争 | Momself | [下载](https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866) |\n| 单身偏见 | 克莱尔・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1375493863-2752fc?p=8866) |\n| 从零开始的女性主义 | 上野千鹤子/田房永子 | [下载](https://url89.ctfile.com/f/31084289-1375498135-bec29a?p=8866) |\n| 身体由我 | 希拉・德利兹/路易莎・施托默尔 | [下载](https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866) |\n| 厌女：日本的女性嫌恶 | 上野千鹤子 | [下载](https://url89.ctfile.com/f/31084289-1375498933-3437c3?p=8866) |\n| 我是主播 | 国谷裕子 | [下载](https://url89.ctfile.com/f/31084289-1375499404-105834?p=8866) |\n| 蒙马特遗书 | 邱妙津 | [下载](https://url89.ctfile.com/f/31084289-1375500163-f3a93e?p=8866) |\n| 李银河谈亲密关系 | 李银河 | [下载](https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866) |\n| 基层女性 | 王慧玲 | [下载](https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866) |\n| 喀耳刻 | 马德琳・米勒 | [下载](https://url89.ctfile.com/f/31084289-1375506415-595930?p=8866) |\n| 东京贫困女子 | 中村淳彦 | [下载](https://url89.ctfile.com/f/31084289-1375507093-5284bf?p=8866) |\n| 那些特别善于表达自己观点的女人们 | 米歇尔・迪安 | [下载](https://url89.ctfile.com/f/31084289-1375509370-466dcd?p=8866) |\n| 拥抱可能 | 伊迪丝・伊娃・埃格尔 | [下载](https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866) |\n| 琉璃棺 | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1375509976-f774f3?p=8866) |\n| 女性的时刻 | 梅琳达・盖茨 | [下载](https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866) |\n| 我的朋友阿波罗 | 西格丽德・努涅斯 | [下载](https://url89.ctfile.com/f/31084289-1375510783-f66375?p=8866) |\n| 请照顾好我妈妈 | 申京淑 | [下载](https://url89.ctfile.com/f/31084289-1375511275-55c4a4?p=8866) |\n| 成为波伏瓦 | 凯特・柯克帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1375511278-68fad7?p=8866) |\n| 我们的人生大事 | 杰西・格林格拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357004353-bc6c28?p=8866) |\n| 碎片 | 埃莱娜・费兰特 | [下载](https://url89.ctfile.com/f/31084289-1357003567-532213?p=8866) |\n| 气场哪里来 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357003540-37d1e7?p=8866) |\n| 她们 | 阎连科 | [下载](https://url89.ctfile.com/f/31084289-1357003504-32b574?p=8866) |\n| 密码女王 | 贾森・法戈内 | [下载](https://url89.ctfile.com/f/31084289-1357003165-a1a26e?p=8866) |\n| 美食，祈祷，恋爱 | 伊丽莎白・吉尔伯特 | [下载](https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866) |\n| 成为主角 | 陈岚 | [下载](https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866) |\n| 妻子们的思秋期 | 斋藤茂男 | [下载](https://url89.ctfile.com/f/31084289-1357001602-8bf926?p=8866) |\n| 女孩之城 | 伊丽莎白・吉尔伯特 | [下载](https://url89.ctfile.com/f/31084289-1357001593-7bed8f?p=8866) |\n| 凌乱的床 | 弗朗索瓦丝・萨冈 | [下载](https://url89.ctfile.com/f/31084289-1357001293-92ab13?p=8866) |\n| 结伴养老 | 安妮・奥斯特比 | [下载](https://url89.ctfile.com/f/31084289-1357000309-a1275e?p=8866) |\n| 她和她的秘密 | 迈克尔・罗伯森 | [下载](https://url89.ctfile.com/f/31084289-1357000177-c83701?p=8866) |\n| 花园中的处子 | A.S.拜厄特 | [下载](https://url89.ctfile.com/f/31084289-1356996616-1be3ff?p=8866) |\n| 他的秘密 | 莉安・莫里亚蒂 | [下载](https://url89.ctfile.com/f/31084289-1356996595-40f888?p=8866) |\n| 因为性别 | 吉莉恩・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1356994912-c2c6df?p=8866) |\n| 勇敢而非完美 | 拉什玛・萨贾尼 | [下载](https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866) |\n| 人生由我 | 梅耶・马斯克 | [下载](https://url89.ctfile.com/f/31084289-1356994786-43b607?p=8866) |\n| 好女孩 | 布莉・贝内特 | [下载](https://url89.ctfile.com/f/31084289-1356994696-b834b3?p=8866) |\n| 一个心碎的伊朗女人 | 龚娜姿・哈宣沙达・邦德 | [下载](https://url89.ctfile.com/f/31084289-1356994564-faf248?p=8866) |\n| 大小谎言 | 莉安・莫里亚蒂 | [下载](https://url89.ctfile.com/f/31084289-1356992374-c85ca5?p=8866) |\n| 女性与权力 | 玛丽・比尔德 | [下载](https://url89.ctfile.com/f/31084289-1356991975-4c57b0?p=8866) |\n| 女性进化论 | 侯虹斌 | [下载](https://url89.ctfile.com/f/31084289-1356991723-c926e0?p=8866) |\n| 再见了，伊藤君 | 柚木麻子 | [下载](https://url89.ctfile.com/f/31084289-1356991435-181d4c?p=8866) |\n| 青梅竹马 | 樋口一叶 | [下载](https://url89.ctfile.com/f/31084289-1356990031-2346b0?p=8866) |\n| 我不想将就过一生 | 吴静 | [下载](https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866) |\n| 当你又忙又美，何惧患得患失 | 梁爽 | [下载](https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866) |\n| 灯塔守望者的女儿 | 珍•E.潘德兹沃尔 | [下载](https://url89.ctfile.com/f/31084289-1356986095-8be8e5?p=8866) |\n| 失去名字的女孩 | 玛莎・霍尔・凯莉 | [下载](https://url89.ctfile.com/f/31084289-1356984901-789579?p=8866) |\n| 摄影师的妻子 | 苏珊・乔伊森 | [下载](https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866) |\n| 坡道上的家 | 角田光代 | [下载](https://url89.ctfile.com/f/31084289-1356982486-16b5cf?p=8866) |\n| 主妇、舞者与牧师 | 马蜂窝出品 | [下载](https://url89.ctfile.com/f/31084289-1357053694-6f133f?p=8866) |\n| 美之地图 | 米哈埃拉・诺洛茨 | [下载](https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866) |\n| 芭比：一个娃娃风靡世界的秘密 | 罗宾・格博 | [下载](https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866) |\n| 看不见的世界 | 莉兹・摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357051006-6c5df6?p=8866) |\n| 北上广女子图鉴 | 王小圈 | [下载](https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866) |\n| 辫子 | 莱蒂西娅・科隆巴尼 | [下载](https://url89.ctfile.com/f/31084289-1357047979-c242df?p=8866) |\n| 大风向野 | 练明乔 | [下载](https://url89.ctfile.com/f/31084289-1357047823-81f4e6?p=8866) |\n| 趁早（十周年畅销升级版） | 王潇 | [下载](https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866) |\n| 危险闺密 | 克里斯蒂娜・曼根 | [下载](https://url89.ctfile.com/f/31084289-1357045930-f473a9?p=8866) |\n| 一间自己的房间（作家榜经典文库） | 维吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357044304-7ba850?p=8866) |\n| 爱丽尔（果麦经典） | 西尔维娅・普拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866) |\n| 黑暗时代的她们 | 杰奎琳・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866) |\n| 人生效率手册：重塑升级版 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866) |\n| 女生呵护指南 | 六层楼 | [下载](https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866) |\n| 岛上的女儿们 | 珍妮・梅拉米德 | [下载](https://url89.ctfile.com/f/31084289-1357040929-da7f44?p=8866) |\n| 82年生的金智英 | 赵南柱 | [下载](https://url89.ctfile.com/f/31084289-1357039924-8e05df?p=8866) |\n| 勇气 | 萨莉・克劳切克 | [下载](https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866) |\n| 十个女人 | 马塞拉・塞拉诺 | [下载](https://url89.ctfile.com/f/31084289-1357037614-efe484?p=8866) |\n| 圣母病 | 侯虹斌 | [下载](https://url89.ctfile.com/f/31084289-1357036471-8907eb?p=8866) |\n| 李银河说爱情 | 李银河 | [下载](https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866) |\n| 巴黎美人 | 珍妮・达玛斯/劳伦・巴斯蒂德 | [下载](https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866) |\n| 走的人多了，就有了路 | 尼可拉斯・克里斯多夫/雪莉・邓恩 | [下载](https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866) |\n| 她说：菠萝解密乳腺癌 | 李治中 | [下载](https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866) |\n| 武士的女儿 | 贾尼斯・宝莫伦斯・二村 | [下载](https://url89.ctfile.com/f/31084289-1357034830-947585?p=8866) |\n| Goblin Market | Rossetti, Christina; Rackham, Arthur; | [下载](https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866) |\n| 希特勒的试毒者 | 罗塞拉・波斯托里诺 | [下载](https://url89.ctfile.com/f/31084289-1357033912-76a74d?p=8866) |\n| 一个陌生女人的来信（读客经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866) |\n| 北京女子图鉴 | 王欣 | [下载](https://url89.ctfile.com/f/31084289-1357032742-fb8407?p=8866) |\n| The Calculating Stars | Mary Robinette Kowal | [下载](https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866) |\n| 妈阁是座城 | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357031431-3b1b40?p=8866) |\n| 阁楼上的疯女人 | 桑德拉・吉尔伯特/苏珊・古芭 | [下载](https://url89.ctfile.com/f/31084289-1357030792-df1d6e?p=8866) |\n| 小野兽 | 艾明雅 | [下载](https://url89.ctfile.com/f/31084289-1357030312-d9a911?p=8866) |\n| 女人不可以穷 | 正经婶儿 | [下载](https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866) |\n| 你有多强大，就有多温柔 | 王珣 | [下载](https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866) |\n| 对岸的她 | 角田光代 | [下载](https://url89.ctfile.com/f/31084289-1357029859-6cc541?p=8866) |\n| 伊万卡·特朗普 | 伊万卡・特朗普 | [下载](https://url89.ctfile.com/f/31084289-1357029229-904284?p=8866) |\n| 灿烂千阳 | 卡勒德・胡赛尼 | [下载](https://url89.ctfile.com/f/31084289-1357029058-318c2d?p=8866) |\n| 我要快乐，不必正常 | 珍妮特・温特森 | [下载](https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866) |\n| 女孩老板 | 索菲亚・阿莫鲁索 | [下载](https://url89.ctfile.com/f/31084289-1357028119-27d33d?p=8866) |\n| 第二性（合卷本） | 西蒙娜・德・波伏瓦 | [下载](https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866) |\n| 艾莉诺好极了 | 盖尔・霍尼曼 | [下载](https://url89.ctfile.com/f/31084289-1357027849-94039f?p=8866) |\n| 我是个妈妈，我需要铂金包 | 温妮斯蒂・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866) |\n| 强大，漂亮的新定义 | 凯特·T·帕克 | [下载](https://url89.ctfile.com/f/31084289-1357026319-23d0f4?p=8866) |\n| 远方有个女儿国 | 白桦 | [下载](https://url89.ctfile.com/f/31084289-1357025560-f8eca4?p=8866) |\n| 人生真相 | 彼得・斯莱文 | [下载](https://url89.ctfile.com/f/31084289-1357025128-9ada14?p=8866) |\n| 做自己人生的CEO | 崔璀 | [下载](https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866) |\n| 走出荒野 | 谢丽尔・斯特雷德 | [下载](https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866) |\n| 他们眼望上苍 | 佐拉・尼尔・赫斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357023859-28feb0?p=8866) |\n| 美女都是狠角色 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357023664-8fe48b?p=8866) |\n| 芈月传 | 蒋胜男 | [下载](https://url89.ctfile.com/f/31084289-1357022305-2cc99f?p=8866) |\n| 长翅膀的女孩 | 苏・蒙克・基德 | [下载](https://url89.ctfile.com/f/31084289-1357022125-11fbcf?p=8866) |\n| 艺伎回忆录 | 阿瑟・高顿 | [下载](https://url89.ctfile.com/f/31084289-1357021840-da9540?p=8866) |\n| 权力巅峰的女人 | 蒋胜男 | [下载](https://url89.ctfile.com/f/31084289-1357021414-31bfd5?p=8866) |\n| 失踪的孩子 | 埃莱娜・费兰特 | [下载](https://url89.ctfile.com/f/31084289-1357020586-b3e8f7?p=8866) |\n| 饥饿的女儿 | 虹影 | [下载](https://url89.ctfile.com/f/31084289-1357020580-f4dea0?p=8866) |\n| 太年轻 | 加・泽文 | [下载](https://url89.ctfile.com/f/31084289-1357020439-7a8bf2?p=8866) |\n| 被嫌弃的松子的一生 | 山田宗树 | [下载](https://url89.ctfile.com/f/31084289-1357020382-853cf6?p=8866) |\n| 我的脖子让我很不爽 | 诺拉・艾芙隆 | [下载](https://url89.ctfile.com/f/31084289-1357019875-949ab1?p=8866) |\n| 蕾蒂西娅，或人类的终结 | 伊凡・雅布隆卡 | [下载](https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866) |\n| 玛丽·安妮 | 达芙妮・杜穆里埃 | [下载](https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866) |\n| 使女的故事 | 玛格丽特・阿特伍德  | [下载](https://url89.ctfile.com/f/31084289-1357018939-e7603d?p=8866) |\n| 女孩们 | 艾玛・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357017808-88e836?p=8866) |\n| 你要像喜欢甜一样喜欢苦 | 斯蒂芬妮・丹勒 | [下载](https://url89.ctfile.com/f/31084289-1357016551-c6b1e8?p=8866) |\n| 离开的，留下的 | 埃莱娜・费兰特 | [下载](https://url89.ctfile.com/f/31084289-1357015894-a19ce7?p=8866) |\n| 吉田医生哈佛求学记 | 吉田穗波 | [下载](https://url89.ctfile.com/f/31084289-1357015216-90f21b?p=8866) |\n| 上流法则 | 埃默・托尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357014616-694625?p=8866) |\n| 我不允许自己难过太久 | 凯茜・苏丹 | [下载](https://url89.ctfile.com/f/31084289-1357014112-37b6b5?p=8866) |\n| 纸之月 | 角田光代 | [下载](https://url89.ctfile.com/f/31084289-1357013224-06be48?p=8866) |\n| 醒来的女性（上下册） | 玛丽莲・弗伦奇 | [下载](https://url89.ctfile.com/f/31084289-1357012375-894943?p=8866) |\n| 她的国 | 寇研 | [下载](https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866) |\n| 桃之夭夭 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1357011418-b385c2?p=8866) |\n| 新名字的故事 | 埃莱娜・费兰特 | [下载](https://url89.ctfile.com/f/31084289-1357008784-b8943f?p=8866) |\n| 极花 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357008142-d8ae4a?p=8866) |\n| 先谋生，再谋爱 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866) |\n| 我的孤单，我的自我 | 丽贝卡・特雷斯特 | [下载](https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866) |\n"
  },
  {
    "path": "md/女权.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 女权\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一个世纪的抗争：美国女权运动史 | 埃莉诺・弗莱克斯纳 | [下载](https://url89.ctfile.com/f/31084289-1375510030-25e3e0?p=8866) |\n| 亲爱的安吉维拉 | 奇玛曼达・恩戈兹・阿迪契 | [下载](https://url89.ctfile.com/f/31084289-1356990373-e61286?p=8866) |\n"
  },
  {
    "path": "md/女权主义.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 女权主义\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 在路上：我生活的故事 | 格洛丽亚・斯泰纳姆 | [下载](https://url89.ctfile.com/f/31084289-1357035034-83902d?p=8866) |\n"
  },
  {
    "path": "md/女生.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 女生\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 少女，请回答 | 张晓晗 | [下载](https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866) |\n| 我很好啊，你怎么样 | 莎拉・安徒生 | [下载](https://url89.ctfile.com/f/31084289-1357017538-a3c7eb?p=8866) |\n"
  },
  {
    "path": "md/妖怪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 妖怪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 入夜识 | FL-ZC小花/何敬尧 | [下载](https://url89.ctfile.com/f/31084289-1375498510-74f5f2?p=8866) |\n| 中国妖怪大全 | 孙见坤 | [下载](https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866) |\n| 怪谈：日本动漫中的传统妖怪 | 周英 | [下载](https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866) |\n"
  },
  {
    "path": "md/威士忌.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 威士忌\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 威士忌原来是这么回事儿 | 米凯勒・吉多 | [下载](https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866) |\n"
  },
  {
    "path": "md/威尼斯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 威尼斯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 威尼斯：晨昏岛屿的集市 | 彼得・阿克罗伊德 | [下载](https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866) |\n| 威尼斯是一条鱼 | 提齐安诺・斯卡帕 | [下载](https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866) |\n| 纸上威尼斯 | 亚历山德罗・马尔佐・马尼奥 | [下载](https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866) |\n"
  },
  {
    "path": "md/婚姻.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 婚姻\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们为何结婚，又为何不忠 | 海伦・费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1375500571-d4970f?p=8866) |\n| 单身社会 | 伊利亚金・奇斯列夫 | [下载](https://url89.ctfile.com/f/31084289-1375511056-3aa444?p=8866) |\n| 完美婚姻 | 米歇尔・里奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866) |\n| 只想和你好好生活 | 武志红等 | [下载](https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866) |\n| 婚姻中的陌生人 | 埃米尔・库斯图里卡 | [下载](https://url89.ctfile.com/f/31084289-1357027054-9b8a7c?p=8866) |\n| 婚姻心理学 | 霍妮 | [下载](https://url89.ctfile.com/f/31084289-1357026814-a0dd95?p=8866) |\n| 婚姻的意义 | 提摩太・凯勒 | [下载](https://url89.ctfile.com/f/31084289-1357014898-c319af?p=8866) |\n| 分心也有好婚姻 | 爱德华・哈洛韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866) |\n"
  },
  {
    "path": "md/婚恋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 婚恋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 在亲密关系中成长 | 卡洛琳・戴奇/丽萨・罗伯邦 | [下载](https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866) |\n"
  },
  {
    "path": "md/婴儿.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 婴儿\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 郑玉巧育儿经·婴儿卷 | 郑玉巧 | [下载](https://url89.ctfile.com/f/31084289-1357006084-2be15d?p=8866) |\n| 郑玉巧育儿经·胎儿卷 | 郑玉巧 | [下载](https://url89.ctfile.com/f/31084289-1357006081-99bed7?p=8866) |\n"
  },
  {
    "path": "md/孔子.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 孔子\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 孔子 | 和辻哲郎 | [下载](https://url89.ctfile.com/f/31084289-1375509535-569088?p=8866) |\n| 孔子的故事（全彩美绘本） | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1356985696-3603c8?p=8866) |\n| 孔子的故事 | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1356985597-1b96e0?p=8866) |\n| 孔子大历史 | 李硕 | [下载](https://url89.ctfile.com/f/31084289-1357030702-f11cbd?p=8866) |\n"
  },
  {
    "path": "md/孤独感.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 孤独感\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我所有的朋友都死了（套装共2册） | 艾弗里・蒙森 | [下载](https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866) |\n"
  },
  {
    "path": "md/学习.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 学习\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 逢考必过 | 布里特・本尼特 | [下载](https://url89.ctfile.com/f/31084289-1375491946-02547b?p=8866) |\n| 像高手一样行动 | 丹尼尔・科伊尔 | [下载](https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866) |\n| 这就是微学习 | 罗宾・德费利斯 | [下载](https://url89.ctfile.com/f/31084289-1375500091-56a0ca?p=8866) |\n| 丽声指南针英语名著分级读物高中版第三级（套装共6册） | Joanna Davidson等 | [下载](https://url89.ctfile.com/f/31084289-1375506067-2ec3d5?p=8866) |\n| 学习的方法 | 圣地亚哥·拉蒙-卡哈尔 | [下载](https://url89.ctfile.com/f/31084289-1375507387-b58026?p=8866) |\n| 九宫格写作法 | 山口拓朗 | [下载](https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866) |\n| 卡片笔记写作法 | 申克・阿伦斯 | [下载](https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866) |\n| 图灵程序设计丛书：Java进阶高手（套装共8册） | 沃伯顿等 | [下载](https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866) |\n| 图灵前端核心知识进阶系列（套装全10册） | 韦鲁等 | [下载](https://url89.ctfile.com/f/31084289-1375510897-922ded?p=8866) |\n| 通往未来之路 | 赵昂/任国荣 | [下载](https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866) |\n| 费曼学习法 | 尹红心/李伟 | [下载](https://url89.ctfile.com/f/31084289-1375512211-79ec46?p=8866) |\n| 笔记思考术 | 黄忠毅 | [下载](https://url89.ctfile.com/f/31084289-1375512244-216e47?p=8866) |\n| 知识炼金术 | 邱昭良/王谋 | [下载](https://url89.ctfile.com/f/31084289-1375512442-a712f3?p=8866) |\n| 聪明人的才华战略 | 莱昂纳多・洛斯佩纳托 | [下载](https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866) |\n| 高效写作的秘密 | 杰拉尔德・格拉夫 | [下载](https://url89.ctfile.com/f/31084289-1357001641-466852?p=8866) |\n| 最好的学区房是你家的书房 | 佐藤亮子 | [下载](https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866) |\n| 给大壮的信 | 苗炜 | [下载](https://url89.ctfile.com/f/31084289-1356996169-ca0701?p=8866) |\n| 如何写出一篇好文章 | 山口拓朗 | [下载](https://url89.ctfile.com/f/31084289-1356995383-8fa7c9?p=8866) |\n| 蔡骏24堂写作课 | 蔡骏 | [下载](https://url89.ctfile.com/f/31084289-1356995332-e2f2c1?p=8866) |\n| 颠覆式学习 | 周林文 | [下载](https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866) |\n| 如何高效写作 | 芝本秀德 | [下载](https://url89.ctfile.com/f/31084289-1356995110-b7a712?p=8866) |\n| 好好思考 | 成甲 | [下载](https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866) |\n| 思维导图学与用 | 思学团队 | [下载](https://url89.ctfile.com/f/31084289-1356992206-56a5d5?p=8866) |\n| 如何高效记忆（原书第2版） | 肯尼思・希格比 | [下载](https://url89.ctfile.com/f/31084289-1356991930-4a8ea6?p=8866) |\n| 钱歌川英语学习大全（套装共5册） | 钱歌川 | [下载](https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866) |\n| 超级快速阅读 | 克里斯蒂安・格吕宁 | [下载](https://url89.ctfile.com/f/31084289-1356987370-2cefa8?p=8866) |\n| 思维导图完整手册 | 东尼・博赞 | [下载](https://url89.ctfile.com/f/31084289-1356987073-f54ce6?p=8866) |\n| 微精通 | 罗伯特・特威格尔 | [下载](https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866) |\n| 提高记忆的100种方法 | 王小军 | [下载](https://url89.ctfile.com/f/31084289-1356985825-3dd88d?p=8866) |\n| 如何讨论 | 史蒂芬·D. 布鲁克菲尔德/史蒂芬・普莱斯基尔 | [下载](https://url89.ctfile.com/f/31084289-1356984676-66809c?p=8866) |\n| 如何阅读 | 艾比・马克斯・比尔 | [下载](https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866) |\n| 学习力：如何成为一个有价值的知识变现者 | Angie | [下载](https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866) |\n| 重新定义学习 | 杨明高 | [下载](https://url89.ctfile.com/f/31084289-1357053160-525c7e?p=8866) |\n| 学习天性 | 小沼势矢 | [下载](https://url89.ctfile.com/f/31084289-1357051951-468fab?p=8866) |\n| 哈佛大学经典课程分享（套装9册） | 哈佛大学 | [下载](https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866) |\n| 终身学习：10个你必须掌握的未来生存法则 | 丹・苏利文/凯瑟琳・野村 | [下载](https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866) |\n| 看完就用的思维导图 | 刘艳 | [下载](https://url89.ctfile.com/f/31084289-1357051396-5d6b11?p=8866) |\n| 复盘+（第3版） | 邱昭良 | [下载](https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866) |\n| 墨菲定律（青春版） | 书鱼 | [下载](https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866) |\n| 零基础入门学习Python | 小甲鱼 | [下载](https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866) |\n| 读懂一本书 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866) |\n| 为未知而教，为未来而学 | 戴维・珀金斯 | [下载](https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866) |\n| 英国《金融时报》原文阅读精选集（八） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357043593-cd4e90?p=8866) |\n| 如何成为面向未来的学习者（原书第7版） | 卡罗尔・卡特等 | [下载](https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866) |\n| 如何高效学语言 | 亚历克斯・罗林斯 | [下载](https://url89.ctfile.com/f/31084289-1357043503-1bf41f?p=8866) |\n| 英国《金融时报》原文阅读精选集（六） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357043296-42eb15?p=8866) |\n| 英国《金融时报》原文阅读精选集（七） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357043164-770743?p=8866) |\n| 英国《金融时报》原文阅读精选集（三） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357043062-c23c04?p=8866) |\n| 英国《金融时报》原文阅读精选集（四） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866) |\n| 英国《金融时报》原文阅读精选集（五） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042861-1cb1cb?p=8866) |\n| 英国《金融时报》原文阅读精选集（二） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042696-3e0f87?p=8866) |\n| 被解释的美 | 金雯 | [下载](https://url89.ctfile.com/f/31084289-1357041943-2f0dec?p=8866) |\n| 研究生完全求生手冊 | 彭明輝 | [下载](https://url89.ctfile.com/f/31084289-1357039534-579efd?p=8866) |\n| 练习的心态 | 托马斯 M. 斯特纳 | [下载](https://url89.ctfile.com/f/31084289-1357038139-a13fd2?p=8866) |\n| 如何高效学习 | 斯科特・扬 | [下载](https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866) |\n| 学会写作 | 粥左罗 | [下载](https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866) |\n| 所谓学习好，就是方法好 | 坪田信贵 | [下载](https://url89.ctfile.com/f/31084289-1357036189-bba070?p=8866) |\n| 高效的方法 | 泰勒・本-沙哈尔/安格斯・里奇韦 | [下载](https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866) |\n| 学习之道 | 芭芭拉・奥克利 | [下载](https://url89.ctfile.com/f/31084289-1357033018-b16bf2?p=8866) |\n| 学习之道（第2版） | 乔希・维茨金 | [下载](https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866) |\n| 怎样学习文言文 | 张中行著 | [下载](https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866) |\n| 学习力：颠覆职场学习的高效方法 | 王世民/缪志聪 | [下载](https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866) |\n| 如何用Kindle高效学习 | 直树桑 | [下载](https://url89.ctfile.com/f/31084289-1357032121-9975ae?p=8866) |\n| 10秒沟通 | 荒木真理子 | [下载](https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866) |\n| 能力陷阱 | 埃米尼亚・伊贝拉 | [下载](https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866) |\n| 高分智囊团 | 郑书豪等 | [下载](https://url89.ctfile.com/f/31084289-1357030951-f6b083?p=8866) |\n| 每天最重要的2小时 | 乔西・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866) |\n| 如何管好自己（第五版） | 约翰・康特 | [下载](https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866) |\n| 刻意改变 | 玛丽・简・瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357028248-dd3101?p=8866) |\n| 如何学习：用更短的时间达到更佳效果和更好成绩 | 亚当・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866) |\n| 终身学习 | 黄征宇 | [下载](https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866) |\n| 英语写作手册：风格的要素 | 威廉・斯特伦克 | [下载](https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866) |\n| 越读者 | 郝明义 | [下载](https://url89.ctfile.com/f/31084289-1357023550-9e1081?p=8866) |\n| 深度思考：不断逼近问题的本质 | 莫琳・希凯 | [下载](https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866) |\n| 认知天性 | 彼得・布朗/亨利・勒迪格三世 | [下载](https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866) |\n| 终身幼儿园 | 米切尔・雷斯尼克 | [下载](https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866) |\n| 完全写作指南 | 劳拉・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866) |\n| 如何成为有效学习的高手 | 卡尔・纽波特 | [下载](https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866) |\n| 知识大迁移 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357019845-51d7de?p=8866) |\n| 这样读书就够了 | 赵周 | [下载](https://url89.ctfile.com/f/31084289-1357019695-1defad?p=8866) |\n| 深度学习：彻底解决你的知识焦虑 | 今井睦美 | [下载](https://url89.ctfile.com/f/31084289-1357019398-eb3c14?p=8866) |\n| 如何成为一个学习忍者 | 格雷厄姆・奥尔科特 | [下载](https://url89.ctfile.com/f/31084289-1357018495-810956?p=8866) |\n| 如何有效阅读一本书 | 奥野宣之 | [下载](https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866) |\n| 极致阅读手册 | 高荣成 | [下载](https://url89.ctfile.com/f/31084289-1357017784-d6d43c?p=8866) |\n| 有效学习 | 乌尔里希・伯泽尔 | [下载](https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866) |\n| 1368个单词就够了 | 王乐平 | [下载](https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866) |\n| 持续学习和行动让人生逆袭（套装9册） | 廖珺等 | [下载](https://url89.ctfile.com/f/31084289-1357015714-57fbb1?p=8866) |\n| 翻译的技巧 | 钱歌川 | [下载](https://url89.ctfile.com/f/31084289-1357015609-4aebb7?p=8866) |\n| 刻意练习：如何从新手到大师 | 安德斯・艾利克森 | [下载](https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866) |\n| 脑洞大开的微积分 | 刘祺 | [下载](https://url89.ctfile.com/f/31084289-1357013872-96990e?p=8866) |\n| 一本小小的红色写作书 | 布兰登・罗伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357012708-71ba79?p=8866) |\n| 魔鬼数学 | 乔丹・艾伦伯格 | [下载](https://url89.ctfile.com/f/31084289-1357012669-8145da?p=8866) |\n| 成功就靠这点破英语 | 孙铁麟 | [下载](https://url89.ctfile.com/f/31084289-1357011910-c8a840?p=8866) |\n| 跟各国人都聊的来 | 本尼・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866) |\n| 如何阅读一本书 | 莫提默・艾德勒 / 查尔斯・范多伦  | [下载](https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866) |\n| 培养最棒的男孩 | 赵子墨 | [下载](https://url89.ctfile.com/f/31084289-1357007704-26fa9e?p=8866) |\n| 培养最棒的女孩 | 赵子墨 | [下载](https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866) |\n| 我们要自学 | 张玳 | [下载](https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866) |\n| 复盘：对过去的事情做思维演练 | 陈中 | [下载](https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866) |\n| 外语是怎样学会的 | 王初明 | [下载](https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866) |\n| 神奇的眼脑直映快读法 | 胡雅茹 | [下载](https://url89.ctfile.com/f/31084289-1357004983-8ff776?p=8866) |\n"
  },
  {
    "path": "md/学习方法.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 学习方法\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 深度思考：让所有事情都能正确入手 | 凯茜・拉舍 | [下载](https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866) |\n| 学习的升级 | 约翰・库奇/贾森・汤 | [下载](https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866) |\n"
  },
  {
    "path": "md/学术.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 学术\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 学习的方法 | 圣地亚哥·拉蒙-卡哈尔 | [下载](https://url89.ctfile.com/f/31084289-1375507387-b58026?p=8866) |\n| 世界音乐汇 | 西蒙・布劳顿 | [下载](https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866) |\n| 研究生完全求生手冊 | 彭明輝 | [下载](https://url89.ctfile.com/f/31084289-1357039534-579efd?p=8866) |\n| 词学通论（词系列） | 吴梅 | [下载](https://url89.ctfile.com/f/31084289-1357033588-ce609f?p=8866) |\n"
  },
  {
    "path": "md/孩子.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 孩子\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 遇见孩子，遇见更好的自己 | 赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑 | [下载](https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866) |\n"
  },
  {
    "path": "md/宇宙.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宇宙\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 关于火星的一切 | 李德范 | [下载](https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866) |\n| 人人都该懂的地外生命 | 刘易斯・达特奈尔 | [下载](https://url89.ctfile.com/f/31084289-1375492573-a93ad2?p=8866) |\n| 宇宙的奥秘 | 托马斯・德・帕多瓦 | [下载](https://url89.ctfile.com/f/31084289-1375497319-411984?p=8866) |\n| 太空居民 | 克里斯托弗・万杰克 | [下载](https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866) |\n| 半小时漫画宇宙大爆炸 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866) |\n| 如果宇宙可以伸缩 | 凯莱布・沙夫 | [下载](https://url89.ctfile.com/f/31084289-1375508368-cf05f3?p=8866) |\n| 爱因斯坦的怪物 | 克里斯・伊姆佩 | [下载](https://url89.ctfile.com/f/31084289-1375508134-74bc4c?p=8866) |\n| 宇宙的起源 | 约翰・巴罗 | [下载](https://url89.ctfile.com/f/31084289-1375508191-ec962a?p=8866) |\n| 宇宙的结构 | 斯蒂芬・亚历山大 | [下载](https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866) |\n| 终极观星指南 | 鲍勃・金 | [下载](https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866) |\n| 我们身处的宇宙究竟有多古怪？ | 伊拉・马克・爱格多尔 | [下载](https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866) |\n| 宇宙的最后三分钟 | 保罗・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866) |\n| BBC夜空探索系列（套装全8册） | BBC仰望夜空杂志 | [下载](https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866) |\n| 图解宇宙的尺度 | 金伯莉・阿坎德 | [下载](https://url89.ctfile.com/f/31084289-1375512424-f9a069?p=8866) |\n| 爱因斯坦的未完成交响曲 | 玛西亚・芭楚莎 | [下载](https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866) |\n| 多云的宇宙 | 小谷太郎 | [下载](https://url89.ctfile.com/f/31084289-1356987340-afdf8f?p=8866) |\n| 未解的宇宙 | 汪诘 | [下载](https://url89.ctfile.com/f/31084289-1356985645-e44e5a?p=8866) |\n| 大图景 | 肖恩・卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866) |\n| 140亿年宇宙演化全史 | 尼尔・德格拉斯・泰森/唐纳德・戈德史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866) |\n| 美丽之问 | 弗兰克・维尔切克 | [下载](https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866) |\n| 万物起源 | 格雷厄姆・劳顿等 | [下载](https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866) |\n| 星空故事 | 苏珊娜・希斯洛普 | [下载](https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866) |\n| 极简天文学 | 科林・斯图尔特 | [下载](https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866) |\n| 宇宙从一粒尘埃开始 | 布莱恩・考克斯/杰夫・福修 | [下载](https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866) |\n| 叩响天堂之门 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866) |\n| 弯曲的旅行 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357022818-41a87e?p=8866) |\n| 第一推动丛书·宇宙系列（套装共6册） | 史蒂芬・霍金等 | [下载](https://url89.ctfile.com/f/31084289-1357022812-304b75?p=8866) |\n| 太空全书 | 詹姆斯・特赖菲尔 | [下载](https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866) |\n| 宇宙：从起源到未来 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357010935-644bd6?p=8866) |\n| 穿越平行宇宙 | 迈克斯・泰格马克 | [下载](https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866) |\n| 极简宇宙史 | 克里斯托弗・加尔法德 | [下载](https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866) |\n| 宇宙简史：起源与归宿 | 斯蒂芬・霍金 | [下载](https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866) |\n| 群星都是你们的世界 | 乔恩・威利斯 | [下载](https://url89.ctfile.com/f/31084289-1357006396-8de5aa?p=8866) |\n| 给忙碌者的天体物理学 | 尼尔・德格拉斯・泰森 | [下载](https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866) |\n| 万物简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866) |\n"
  },
  {
    "path": "md/安全.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 安全\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 思维与陷阱 | 史蒂夫・卡斯纳 | [下载](https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866) |\n| 无处可藏 | 格伦・格林沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866) |\n| Web安全之深度学习实战 | 刘焱 | [下载](https://url89.ctfile.com/f/31084289-1357027117-20aa4a?p=8866) |\n"
  },
  {
    "path": "md/安利.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 安利\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 丰盛人生：安利创始人理查・狄维士自传 | 理查・狄维士 | [下载](https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866) |\n"
  },
  {
    "path": "md/宋代.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宋代\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 宋代中国的改革 | 刘子健 | [下载](https://url89.ctfile.com/f/31084289-1375495447-1ca964?p=8866) |\n| 大宋之变，1063-1086 | 赵冬梅 | [下载](https://url89.ctfile.com/f/31084289-1356999199-15db8f?p=8866) |\n"
  },
  {
    "path": "md/宋史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宋史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 王安石全集：临川先生文集 | 王水照主编 | [下载](https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866) |\n| 宋论（全本全注全译） | 王夫之 | [下载](https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866) |\n| 洗冤集录注评 | 宋慈 | [下载](https://url89.ctfile.com/f/31084289-1357053118-be8da5?p=8866) |\n| 宋徽宗 | 伊沛霞 | [下载](https://url89.ctfile.com/f/31084289-1357024273-50f3fb?p=8866) |\n| 儒家统治的时代：宋的转型 | 迪特・库恩 | [下载](https://url89.ctfile.com/f/31084289-1357009474-529aaf?p=8866) |\n| 弱宋：造极之世 | 陈胜利 | [下载](https://url89.ctfile.com/f/31084289-1357008796-38df46?p=8866) |\n| 如果这是宋史（套装共10册） | 高天流云 | [下载](https://url89.ctfile.com/f/31084289-1357006702-cf600b?p=8866) |\n| 大宋帝国三百年（共5册） | 金纲 | [下载](https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866) |\n"
  },
  {
    "path": "md/宋朝.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宋朝\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 文治帝国 | 艾公子 | [下载](https://url89.ctfile.com/f/31084289-1375498795-f4db48?p=8866) |\n| 宋人轶事汇编 | 周勋初/葛渭君/周子来/王华宝 | [下载](https://url89.ctfile.com/f/31084289-1357034179-1d496f?p=8866) |\n| 风雅宋：看得见的大宋文明 | 吴钩 | [下载](https://url89.ctfile.com/f/31084289-1357028143-e3cd42?p=8866) |\n| 东京梦华录 | 孟元老 | [下载](https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866) |\n| 大宋帝国三百年（共5册） | 金纲 | [下载](https://url89.ctfile.com/f/31084289-1357005874-cb40e0?p=8866) |\n| 重新发现宋朝 | 吴钩 | [下载](https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866) |\n| 原来你是这样的宋朝 | 吴钩 | [下载](https://url89.ctfile.com/f/31084289-1357005328-0cee06?p=8866) |\n"
  },
  {
    "path": "md/宋词.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宋词\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 半小时漫画宋词2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866) |\n| 半小时漫画宋词 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866) |\n| 李清照诗词全集（作家榜经典文集） | 李清照 | [下载](https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866) |\n| 柳永词集（词系列） | 柳永 | [下载](https://url89.ctfile.com/f/31084289-1357033708-dc7a4b?p=8866) |\n| 姜夔词集（词系列） | 姜夔 | [下载](https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866) |\n| 陆游词集（词系列） | 陆游 | [下载](https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866) |\n| 宋词三百首（作家榜经典文库） | 上彊村民 | [下载](https://url89.ctfile.com/f/31084289-1357027120-8ec566?p=8866) |\n"
  },
  {
    "path": "md/宗教.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宗教\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 百年南开日本研究文库（共18册） | 吴廷璆等 | [下载](https://url89.ctfile.com/f/31084289-1375509472-9832f9?p=8866) |\n| 阿含经校注（全九册） | 恒强法师 | [下载](https://url89.ctfile.com/f/31084289-1375509343-bdaff3?p=8866) |\n| 将成为国王的教宗 | 大卫・科泽 | [下载](https://url89.ctfile.com/f/31084289-1375511473-61ec1e?p=8866) |\n| 神好多的日本 | 山口谣司 | [下载](https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866) |\n| 金枝（全两册） | 詹姆斯・乔治・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1375513420-73750d?p=8866) |\n| 神圣的存在 | 米尔恰・伊利亚德 | [下载](https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866) |\n| 炼金术之梦 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866) |\n| 天国之门 | 赵林 | [下载](https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866) |\n| 基督教思想史（套装全3卷） | 胡斯都·L.冈察雷斯 | [下载](https://url89.ctfile.com/f/31084289-1356985126-1a8242?p=8866) |\n| 基督教史（套装共2册） | 胡斯托・冈萨雷斯 | [下载](https://url89.ctfile.com/f/31084289-1356985099-d8a953?p=8866) |\n| 坛经（全本全注全译） | 尚荣 | [下载](https://url89.ctfile.com/f/31084289-1356984853-c65957?p=8866) |\n| 中国佛教通史（套装十五卷） | 赖永海 | [下载](https://url89.ctfile.com/f/31084289-1356984736-570b95?p=8866) |\n| 新教伦理与资本主义精神 | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866) |\n| 无神论（牛津通识读本） | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1357053109-aa86de?p=8866) |\n| 佛陀相佑 | 侯旭东 | [下载](https://url89.ctfile.com/f/31084289-1357050952-03df2b?p=8866) |\n| 酒鬼与圣徒 | 劳伦斯・奥斯本 | [下载](https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866) |\n| 犍陀罗文明史 | 孙英刚 | [下载](https://url89.ctfile.com/f/31084289-1357045543-bc6145?p=8866) |\n| 每个行业都离不开心理学（套装共5册） | 王梓等 | [下载](https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866) |\n| 黑格尔早期神学著作 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044037-106386?p=8866) |\n| 太平经（全本全注全译） | 杨寄林译注 | [下载](https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866) |\n| 绑架风云 | 大卫・I.科策 | [下载](https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866) |\n| 信徒的国度 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866) |\n| 圣经的故事（果麦经典） | 亨德里克・威廉・房龙 | [下载](https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866) |\n| 一神论的影子 | 赵汀阳/阿兰・乐比雄 | [下载](https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866) |\n| 卢丹的恶魔 | 阿道司・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357031701-de423d?p=8866) |\n| 藏传佛教极简史 | 德昆 | [下载](https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866) |\n| 印度佛教史 | 平川彰 | [下载](https://url89.ctfile.com/f/31084289-1357030012-a8e706?p=8866) |\n| 佛陀传 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357029292-270b2e?p=8866) |\n| 禅心直指 | 澄海 | [下载](https://url89.ctfile.com/f/31084289-1357027864-99937c?p=8866) |\n| 慕尼黑的清真寺 | 伊恩・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866) |\n| 知中9·禅的入门 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866) |\n| 杜威选集（5卷本） | 刘放桐等 | [下载](https://url89.ctfile.com/f/31084289-1357024567-96b960?p=8866) |\n| 楞严经 | 赖永海 | [下载](https://url89.ctfile.com/f/31084289-1357022248-843010?p=8866) |\n| 耶路撒冷告白 | 利皮卡・佩拉汉 | [下载](https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866) |\n| 认知三部曲 | 理查德・尼斯贝特 | [下载](https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866) |\n| 中西方哲学史（套装共2册） | 冯友兰等 | [下载](https://url89.ctfile.com/f/31084289-1357021030-097825?p=8866) |\n| 中信国学大典：哲学宗教（上册） | 周锡䪖等 | [下载](https://url89.ctfile.com/f/31084289-1357019221-2ec92b?p=8866) |\n| 写给无神论者 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016830-fff7c8?p=8866) |\n| 耶路撒冷三千年 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866) |\n| 晨钟暮鼓 | 张克群 | [下载](https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866) |\n| 大家小书译馆系列（套装10本） | 尼采等 | [下载](https://url89.ctfile.com/f/31084289-1357013554-def23e?p=8866) |\n| 金枝 | 詹姆斯・乔治・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1357010026-3fff55?p=8866) |\n| 千面英雄 | 约瑟夫・坎贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866) |\n| 失乐园（中英插图珍藏本） | 约翰・弥尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357008913-ba5a39?p=8866) |\n| 西藏生死书 | 索甲仁波切 | [下载](https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866) |\n| 慧灯之光（全8册） | 慈诚罗珠 | [下载](https://url89.ctfile.com/f/31084289-1357006576-5bbcbf?p=8866) |\n"
  },
  {
    "path": "md/官场.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 官场\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 通天人物 | 李佩甫 | [下载](https://url89.ctfile.com/f/31084289-1357023817-c140d9?p=8866) |\n| 参谋助手论 | 王怀志/郭政 | [下载](https://url89.ctfile.com/f/31084289-1357015459-a2ef41?p=8866) |\n| 我在大清官场30年 | 黄云凯 | [下载](https://url89.ctfile.com/f/31084289-1357011568-9f64c1?p=8866) |\n| 幕僚 | 黄晓阳 | [下载](https://url89.ctfile.com/f/31084289-1357008985-7da4cb?p=8866) |\n| 大哥：流血的商战1-3 | 庹政 | [下载](https://url89.ctfile.com/f/31084289-1357008979-6d092b?p=8866) |\n| 二号首长 | 黄晓阳 | [下载](https://url89.ctfile.com/f/31084289-1357008580-78b9e7?p=8866) |\n| 阳谋为上 | 夏昕 | [下载](https://url89.ctfile.com/f/31084289-1357007908-6e6069?p=8866) |\n| 掌舵三部曲（掌舵＋掌舵2+舵手） | 龙在宇 | [下载](https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866) |\n| 侯卫东官场笔记（1-8册+巴国侯氏） | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1357006186-fed3db?p=8866) |\n"
  },
  {
    "path": "md/定位.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 定位\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新定位 | 杰克・特劳特/史蒂夫・里夫金 | [下载](https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866) |\n| 21世纪的定位 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357037806-5737e3?p=8866) |\n| 人生定位：特劳特教你营销自己 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866) |\n| 重新定位（珍藏版） | 杰克・特劳特/史蒂夫・里夫金 | [下载](https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866) |\n| 定位 | 杰克・特劳特/阿尔・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866) |\n| 什么是战略 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866) |\n| 22条商规 | 艾・里斯 / 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866) |\n"
  },
  {
    "path": "md/实用.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 实用\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 手机摄影轻松学 | 李华春 | [下载](https://url89.ctfile.com/f/31084289-1356985684-e8624f?p=8866) |\n| 神奇的手账整理魔法 | MUKI | [下载](https://url89.ctfile.com/f/31084289-1357033114-327d0f?p=8866) |\n| 石头剪刀布博弈心理学 | 木瓜制造 | [下载](https://url89.ctfile.com/f/31084289-1357007338-0946f5?p=8866) |\n| 摆谱：身份的潜规则 | 余不讳 | [下载](https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866) |\n"
  },
  {
    "path": "md/实验.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 实验\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 改变历史的100个实验（套装共2册） | 亚当・哈特-戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375502659-93c7ba?p=8866) |\n"
  },
  {
    "path": "md/审计.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 审计\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 让数字说话：审计，就这么简单 | 孙含晖等 | [下载](https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866) |\n"
  },
  {
    "path": "md/宪政.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宪政\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 辩论：美国制宪会议记录 | 詹姆斯・麦迪逊 | [下载](https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866) |\n"
  },
  {
    "path": "md/宪法.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宪法\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 宪法学讲义（第三版） | 林来梵 | [下载](https://url89.ctfile.com/f/31084289-1356990535-066ef2?p=8866) |\n| 艰难的一跃 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866) |\n"
  },
  {
    "path": "md/宫斗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 宫斗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 延禧攻略 | 周末 | [下载](https://url89.ctfile.com/f/31084289-1357028005-0b5b91?p=8866) |\n| 离凰（套装共3册） | 猗兰霓裳 | [下载](https://url89.ctfile.com/f/31084289-1357017595-0449e5?p=8866) |\n"
  },
  {
    "path": "md/家庭.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 家庭\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 半熟家庭 | 金义 | [下载](https://url89.ctfile.com/f/31084289-1375511065-6c9ffd?p=8866) |\n| 原生家庭生存指南 | 奥利弗・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357051150-577b7b?p=8866) |\n| 走出剧情 | 李雪 | [下载](https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866) |\n| 平衡的智慧 | 帕特・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357030681-682c4a?p=8866) |\n| 这不是你的错 | 马克・沃林恩 | [下载](https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866) |\n| 河合隼雄代表作 | 河合隼雄 | [下载](https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866) |\n| 超越原生家庭（原书第4版） | 罗纳德・理查森 | [下载](https://url89.ctfile.com/f/31084289-1357023712-fa74ce?p=8866) |\n| 爸爸军团 | 布鲁斯・费勒 | [下载](https://url89.ctfile.com/f/31084289-1357017754-627360?p=8866) |\n| 养育男孩（典藏版） | 史蒂夫・比达尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866) |\n| 第一次当奶爸 | 马克・伍兹 | [下载](https://url89.ctfile.com/f/31084289-1357007575-ad564d?p=8866) |\n| 小别离 | 鲁引弓 | [下载](https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866) |\n"
  },
  {
    "path": "md/家庭教育.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 家庭教育\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 不吼不叫，妈妈这样做，孩子一定喜欢（套装三册） | 韩笑/李力 | [下载](https://url89.ctfile.com/f/31084289-1357034617-802318?p=8866) |\n"
  },
  {
    "path": "md/家训.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 家训\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知行合一王阳明3：王阳明家训 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866) |\n"
  },
  {
    "path": "md/对谈录.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 对谈录\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 选择生命 | 池田大作/阿诺德・约瑟夫・汤因比 | [下载](https://url89.ctfile.com/f/31084289-1357054378-95bb9a?p=8866) |\n"
  },
  {
    "path": "md/小时.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 小时\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 盘上之夜 | 宫内悠介 | [下载](https://url89.ctfile.com/f/31084289-1375499317-6f647b?p=8866) |\n| 鬼灭之刃（第三部：卷16-卷23） | 吾峠呼世晴 | [下载](https://url89.ctfile.com/f/31084289-1356995521-6d41fc?p=8866) |\n| 屠格涅夫文集（全7册） | 伊万谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说4） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866) |\n| 三口棺材 | 约翰・迪克森・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357031353-c23149?p=8866) |\n| 星尘 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357022449-2e132d?p=8866) |\n| 斜阳（太宰治作品精选集） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866) |\n"
  },
  {
    "path": "md/小米.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 小米\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一往无前 | 范海涛 | [下载](https://url89.ctfile.com/f/31084289-1356996919-e0b330?p=8866) |\n| 小米逻辑 | 吴正炜 | [下载](https://url89.ctfile.com/f/31084289-1357018564-06c2df?p=8866) |\n| 小米生态链战地笔记 | 小米生态链谷仓学院 | [下载](https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866) |\n"
  },
  {
    "path": "md/小说文学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 小说文学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 天浴 | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357011631-d26689?p=8866) |\n| 一弦琴 | 宫尾登美子 | [下载](https://url89.ctfile.com/f/31084289-1357011628-8b7d59?p=8866) |\n| 天上再见 | 皮耶尔・勒迈特 | [下载](https://url89.ctfile.com/f/31084289-1357010554-368938?p=8866) |\n"
  },
  {
    "path": "md/少儿.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 少儿\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 哆啦A梦珍藏版（第一部：卷1-卷6） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866) |\n| 绿野仙踪全集（全14册） | 莱曼・弗兰克・鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357031788-1a3b36?p=8866) |\n| 碟形世界（套装共6册） | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357018381-23efd5?p=8866) |\n| 我的第一本趣味数理化书（套装共三册） | 韩垒/田梅 | [下载](https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866) |\n| 罗尔德·达尔作品典藏（共13册） | 罗尔德・达尔 | [下载](https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866) |\n| 贾徳哲学启蒙少儿书系（套装6册） | 乔斯坦・贾德 | [下载](https://url89.ctfile.com/f/31084289-1357009585-93bc28?p=8866) |\n| 小王子 | 安托万・德・圣埃克苏佩里  | [下载](https://url89.ctfile.com/f/31084289-1357007098-6d08d6?p=8866) |\n| 查理日记（套装1-9册） | 西西弗斯 | [下载](https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866) |\n"
  },
  {
    "path": "md/尼采.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 尼采\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 瓦格纳事件 | 弗雷德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1357028971-e22892?p=8866) |\n| 教育家叔本华 | 韦启昌 | [下载](https://url89.ctfile.com/f/31084289-1357009453-72d4ea?p=8866) |\n"
  },
  {
    "path": "md/崇祯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 崇祯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 最后一个汉人皇帝：崇祯大败局 | 晏青 | [下载](https://url89.ctfile.com/f/31084289-1357006183-848fe4?p=8866) |\n"
  },
  {
    "path": "md/工业.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 工业\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 工业与帝国：英国的现代化历程 | 埃里克・霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866) |\n"
  },
  {
    "path": "md/工作.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 工作\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 工作的意义 | 詹姆斯・苏兹曼 | [下载](https://url89.ctfile.com/f/31084289-1375497598-753d90?p=8866) |\n| 100个工作基本 | 松浦弥太郎/野尻哲也 | [下载](https://url89.ctfile.com/f/31084289-1375512118-2798e5?p=8866) |\n| 高效清单工作法 | 达蒙・扎哈里亚德斯 | [下载](https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866) |\n| 卓越工作 | 莫滕·T·汉森 | [下载](https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866) |\n| 极简思考 | 迈克・费廖洛 | [下载](https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866) |\n| 番茄工作法 | 弗朗西斯科・西里洛 | [下载](https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866) |\n| 冲突管理 | 大卫・里德尔 | [下载](https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866) |\n| 麦肯锡图表工作法 | 齐藤显一/竹内里子 | [下载](https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866) |\n| 阿米巴经营 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357034248-76ecaf?p=8866) |\n| 高维度思考法：职场问题解决篇 | 细谷功 | [下载](https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866) |\n| 12个工作的基本 | 大久保幸夫 | [下载](https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866) |\n| 使命必达：百分之百实现目标的行为科学管理法 | 石田淳 | [下载](https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866) |\n| 如何管好自己（第五版） | 约翰・康特 | [下载](https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866) |\n| 零秒工作 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866) |\n| 如何有效整理信息 | 奥野宣之 | [下载](https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866) |\n| 丰田一页纸极简思考法 | 浅田卓 | [下载](https://url89.ctfile.com/f/31084289-1357020367-535edd?p=8866) |\n| 秘书工作手记 | 像玉的石头  | [下载](https://url89.ctfile.com/f/31084289-1357017100-e77e05?p=8866) |\n| 工作颂歌 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016866-d1189f?p=8866) |\n| 工作是最好的修行 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866) |\n| OKR工作法 | 克里斯蒂娜・沃特克 | [下载](https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866) |\n| 极简工作Ⅰ | 约根・库尔兹 | [下载](https://url89.ctfile.com/f/31084289-1357015267-2b86bb?p=8866) |\n| 请给我结果 | 姜汝祥 | [下载](https://url89.ctfile.com/f/31084289-1357015060-25a31d?p=8866) |\n| 深度工作 | 卡尔・纽波特 | [下载](https://url89.ctfile.com/f/31084289-1357012528-0a8a94?p=8866) |\n| 工作DNA | 郝明义 | [下载](https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866) |\n| 管理的实践（珍藏版） | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357007080-44a05a?p=8866) |\n| 番茄工作法图解 | 诺特伯格 | [下载](https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866) |\n"
  },
  {
    "path": "md/工具.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 工具\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 思维导图攻略 | 王健文 | [下载](https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866) |\n| 图形思考与表达的20堂课 | 久恒启一 | [下载](https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866) |\n| 写作力 | 高语罕 | [下载](https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866) |\n| 看完就用的思维导图 | 刘艳 | [下载](https://url89.ctfile.com/f/31084289-1357051396-5d6b11?p=8866) |\n| 单读（01-10） | 许知远/肖海生 | [下载](https://url89.ctfile.com/f/31084289-1357027654-e73901?p=8866) |\n| 单读（11-15） | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1357027657-d9573b?p=8866) |\n| 童书写作指南 | 玛丽・科尔 | [下载](https://url89.ctfile.com/f/31084289-1357026970-0605e8?p=8866) |\n| 记忆魔法师 | 袁文魁 | [下载](https://url89.ctfile.com/f/31084289-1357022029-89926d?p=8866) |\n| 提升你的沟通技能（第四版） | 艾伦・巴克 | [下载](https://url89.ctfile.com/f/31084289-1357020118-157ff6?p=8866) |\n| 简化 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866) |\n"
  },
  {
    "path": "md/巴尔干.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 巴尔干\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 黑羊与灰鹰（套装共3册） | 丽贝卡・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866) |\n"
  },
  {
    "path": "md/巴菲特.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 巴菲特\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 巴菲特和查理·芒格内部讲话 | 丹尼尔・佩科/科里・雷恩 | [下载](https://url89.ctfile.com/f/31084289-1356999487-966255?p=8866) |\n| 奥马哈之雾（珍藏版） | 任俊杰/朱晓芸 | [下载](https://url89.ctfile.com/f/31084289-1356998941-39104e?p=8866) |\n| 巴菲特的第一桶金 | 格伦・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866) |\n| 亲历巴菲特股东大会 | 杰夫・马修斯 | [下载](https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866) |\n| 穿过迷雾 | 任俊杰 | [下载](https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866) |\n| 集中投资 | 艾伦・卡尔普・波尼洛等 | [下载](https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866) |\n| 沃伦·巴菲特如是说 | 珍妮特・洛 | [下载](https://url89.ctfile.com/f/31084289-1357038517-e8a9af?p=8866) |\n| 巴菲特致股东的信：投资原则篇 | 杰里米・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357027714-2bcfdf?p=8866) |\n| 巴菲特致股东的信（原书第4版） | 沃伦・巴菲特 | [下载](https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866) |\n| 滚雪球：巴菲特和他的财富人生（套装共2册） | 艾丽斯・施罗德 | [下载](https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866) |\n| 巴菲特之道（原书第3版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357017424-7fb305?p=8866) |\n| 跳着踢踏舞去上班 | 卡萝尔・卢米斯 | [下载](https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866) |\n| 巴菲特幕后智囊：查理·芒格传 | 珍妮特・洛尔 | [下载](https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866) |\n| 奥马哈之雾 | 任俊杰/朱晓芸 | [下载](https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866) |\n| 巴菲特致股东的信（精华篇） | L·J·瑞德豪斯 | [下载](https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866) |\n"
  },
  {
    "path": "md/巴西.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 巴西\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 去他的巴西 | 胡续冬 | [下载](https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866) |\n| 无边的土地 | 若热・亚马多 | [下载](https://url89.ctfile.com/f/31084289-1357022407-bb2b7c?p=8866) |\n| 味似丁香、色如肉桂的加布里埃拉 | 若热・亚马多 | [下载](https://url89.ctfile.com/f/31084289-1357016035-85d4b9?p=8866) |\n"
  },
  {
    "path": "md/巴黎.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 巴黎\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一个人的巴黎 | 乔乔・莫伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357050619-04e97f?p=8866) |\n| 巴黎美人 | 珍妮・达玛斯/劳伦・巴斯蒂德 | [下载](https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866) |\n| 美国人在巴黎 | 大卫・麦卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357015738-b4c6cb?p=8866) |\n"
  },
  {
    "path": "md/巴黎和会.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 巴黎和会\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 缔造和平：1919巴黎和会及其开启的战后世界 | 玛格丽特・麦克米伦 | [下载](https://url89.ctfile.com/f/31084289-1357022908-4d74ac?p=8866) |\n"
  },
  {
    "path": "md/市场.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 市场\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 多卖三倍 | 弗兰克 | [下载](https://url89.ctfile.com/f/31084289-1375491256-088984?p=8866) |\n| Z世代营销 | 杰夫・弗若姆/安吉・瑞德 | [下载](https://url89.ctfile.com/f/31084289-1375513471-fe46fd?p=8866) |\n| 极致零售 | 杜凤林 | [下载](https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866) |\n| 瘾：让人上瘾的产品、广告与创意背后的秘密 | 吴文芳 | [下载](https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866) |\n| 意志力销售法 | 杨朝福 | [下载](https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866) |\n| 营销革命4.0 | 菲利普・科特勒等 | [下载](https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866) |\n| 金龙鱼背后的粮油帝国 | 余盛 | [下载](https://url89.ctfile.com/f/31084289-1357039426-863024?p=8866) |\n| 别输在不懂营销上 | 戈非 | [下载](https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866) |\n| 解密日本零售业（套装共4册） | 增田明子等 | [下载](https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866) |\n| 销售进阶指南（套装共5册） | 埃尔默・惠勒 | [下载](https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866) |\n| 行为设计学：打造峰值体验 | 奇普・希思/丹・希思 | [下载](https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866) |\n| 全栈市场人 | Lydia | [下载](https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866) |\n| 餐巾纸系列套装（套装共2本） | 丹・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1357016506-d2e8ae?p=8866) |\n| 科学的广告+我的广告生涯 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866) |\n| 写作，打造个人IP，成就企业品牌 | 陈志红 | [下载](https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866) |\n"
  },
  {
    "path": "md/希特勒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 希特勒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 1924：改变希特勒命运的一年 | 彼得・罗斯・兰奇 | [下载](https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866) |\n| 希特勒的兴亡 | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1357019068-850edb?p=8866) |\n| 希特勒传：跃升年代 | 福尔克尔・乌尔里希 | [下载](https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866) |\n| 希特勒传：从乞丐到元首 | 约翰・托兰 | [下载](https://url89.ctfile.com/f/31084289-1357007692-87feb5?p=8866) |\n| 从俾斯麦到希特勒 | 塞巴斯蒂安·哈夫纳 | [下载](https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866) |\n| 解读希特勒 | 塞巴斯蒂安·哈夫纳 | [下载](https://url89.ctfile.com/f/31084289-1357005259-4bd285?p=8866) |\n"
  },
  {
    "path": "md/希腊.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 希腊\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 希腊思想与文化 | 吴晓群 | [下载](https://url89.ctfile.com/f/31084289-1375491883-e507e4?p=8866) |\n| 希腊三百年 | 罗德里克・比顿 | [下载](https://url89.ctfile.com/f/31084289-1375498024-c93e11?p=8866) |\n| 了不起的古希腊 | 王冬妮 | [下载](https://url89.ctfile.com/f/31084289-1375511563-62e19d?p=8866) |\n| 出发去希腊 | 弗朗索瓦・阿赫托戈 | [下载](https://url89.ctfile.com/f/31084289-1375512691-8dea22?p=8866) |\n| 希腊史：从梭伦时代到公元前403年 | 乔治・格罗特 | [下载](https://url89.ctfile.com/f/31084289-1375513582-255bbf?p=8866) |\n| 希腊史纲（套装共5册） | 狄奥多罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356990118-568fff?p=8866) |\n| 苏格拉底之死（译文经典） | 柏拉图 | [下载](https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866) |\n| 希腊对德意志的暴政 | 伊莉莎・玛丽安・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866) |\n| 古希腊罗马奴隶制 | 威斯特曼 | [下载](https://url89.ctfile.com/f/31084289-1357017136-eb5c79?p=8866) |\n| 希腊神话故事 | 古斯塔夫・施瓦布 | [下载](https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866) |\n"
  },
  {
    "path": "md/帝国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 帝国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 第三帝国史 | 郑寅达/陈旸 | [下载](https://url89.ctfile.com/f/31084289-1356999508-e210d5?p=8866) |\n| 蒙古帝国 | 易强 | [下载](https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866) |\n| 全球帝国史 | 约翰・达尔文 | [下载](https://url89.ctfile.com/f/31084289-1357021489-1ca820?p=8866) |\n| 银河帝国：帝国三部曲 | 艾萨克・阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357009324-3d749b?p=8866) |\n| 从这里读懂第三帝国（套装共8册） | 齐格蒙・鲍曼等 | [下载](https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866) |\n| 帝国的分裂：美国独立战争的起源 | 郑非 | [下载](https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866) |\n| 第一个世界帝国及其西征系列（共三册） | 布赖恩・莱弗里/汤姆・霍兰 | [下载](https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866) |\n"
  },
  {
    "path": "md/常识.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 常识\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 投资的常识 | 布拉德福德・康纳尔等 | [下载](https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866) |\n| 中国文学常识 | 郑振铎 | [下载](https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866) |\n| 中国文物常识 | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1357023637-a8bb06?p=8866) |\n| 中国建筑常识 | 林徽因 | [下载](https://url89.ctfile.com/f/31084289-1357023643-a76ebd?p=8866) |\n| 给大忙人看的历史常识 | 章学城 | [下载](https://url89.ctfile.com/f/31084289-1357006027-0210e9?p=8866) |\n"
  },
  {
    "path": "md/年代.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 年代\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 革命的年代：1789～1848 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006939-6e9bba?p=8866) |\n| 帝国的年代：1875～1914 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006933-16acdc?p=8866) |\n| 极端的年代：1914～1991 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006918-d93fd3?p=8866) |\n"
  },
  {
    "path": "md/并购.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 并购\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 并购估值：构建和衡量非上市公司价值（原书第3版） | 克里斯・梅林 | [下载](https://url89.ctfile.com/f/31084289-1357000339-2527cd?p=8866) |\n"
  },
  {
    "path": "md/幸福.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 幸福\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 学会幸福 | 陈赛 | [下载](https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866) |\n| 他们最幸福 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866) |\n"
  },
  {
    "path": "md/幽默.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 幽默\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 幽默书房丛书（套装共8册） | J.K.杰罗姆等 | [下载](https://url89.ctfile.com/f/31084289-1356986989-a243cd?p=8866) |\n| 可怕的中年 | 贾森・黑兹利 | [下载](https://url89.ctfile.com/f/31084289-1357052275-fe05f1?p=8866) |\n| 企鹅都市生存指南（套装全9册） | 贾森・黑兹利/乔尔・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866) |\n| 超纲冷知识 | 吉姆・查普曼 | [下载](https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866) |\n| 开市大吉（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866) |\n| 柏拉图和鸭嘴兽一起去酒吧 | 托马斯・卡斯卡特/丹尼尔・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357036201-7f26c9?p=8866) |\n| 寻找无双 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035061-224a42?p=8866) |\n| 绝对笑喷之弃业医生日志 | 亚当・凯 | [下载](https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866) |\n| 第二十二条军规（纪念版） | 约瑟夫・海勒 | [下载](https://url89.ctfile.com/f/31084289-1357011919-31c86e?p=8866) |\n"
  },
  {
    "path": "md/广告.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 广告\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 故事经济学 | 罗伯特・麦基/哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866) |\n| 广告争夺战 | 肯・奥莱塔 | [下载](https://url89.ctfile.com/f/31084289-1375509673-5b5abf?p=8866) |\n| 秒赞：文案女王20年创作技巧与心法 | 林桂枝 | [下载](https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866) |\n| 文案功夫 | 乐剑峰 | [下载](https://url89.ctfile.com/f/31084289-1357004422-027126?p=8866) |\n| 微文案 | 朱冰 | [下载](https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866) |\n| 科学的广告 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866) |\n| 华与华百万大奖赛案例集 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866) |\n| 奥格威谈广告 | 杨名皓 | [下载](https://url89.ctfile.com/f/31084289-1357037881-a442a5?p=8866) |\n| 广告文案 | 乐剑峰 | [下载](https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866) |\n| 如何把产品打造成有生命的品牌 | 叶明桂 | [下载](https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866) |\n| 好文案一句话就够了 | 川上徹也 | [下载](https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866) |\n| 抢占心智 | 江南春 | [下载](https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866) |\n| 计算广告 | 刘鹏/王超 | [下载](https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866) |\n| 尖叫感 | 马楠 | [下载](https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866) |\n| 一个广告人的自白 | 大卫・奥格威 | [下载](https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866) |\n| 文案圣经 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866) |\n"
  },
  {
    "path": "md/庄子.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 庄子\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 庄子说什么 | 韩鹏杰 | [下载](https://url89.ctfile.com/f/31084289-1375510207-fca323?p=8866) |\n| 庄子现代版（最新修订版） | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357053886-547f3d?p=8866) |\n"
  },
  {
    "path": "md/建筑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 建筑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 雕刻大地 | 林璎 | [下载](https://url89.ctfile.com/f/31084289-1375499059-e0fff6?p=8866) |\n| 清华建筑小史全系套装（套装共6册） | 孙大章等 | [下载](https://url89.ctfile.com/f/31084289-1375500016-12c10e?p=8866) |\n| 珞珈筑记 | 刘文祥 | [下载](https://url89.ctfile.com/f/31084289-1375499812-bde5c1?p=8866) |\n| 中国建筑与历史文化精选（套装共5本） | 汪荣祖等 | [下载](https://url89.ctfile.com/f/31084289-1375508866-2978f9?p=8866) |\n| 古寺巡礼 | 和辻哲郎 | [下载](https://url89.ctfile.com/f/31084289-1375509676-6befb2?p=8866) |\n| 世界建筑漫游指南（套装共6册） | 陈文捷等 | [下载](https://url89.ctfile.com/f/31084289-1375511977-1ed179?p=8866) |\n| 你的建筑有多重？ | 迪耶・萨迪奇 | [下载](https://url89.ctfile.com/f/31084289-1357003549-268c81?p=8866) |\n| 不只中国木建筑 | 赵广超 | [下载](https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866) |\n| 结构是什么 | 詹姆斯・爱德华・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866) |\n| 欢迎来到你的世界 | 莎拉・威廉姆斯・戈德哈根 | [下载](https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866) |\n| 北京的城墙与城门 | 喜仁龙 | [下载](https://url89.ctfile.com/f/31084289-1357044700-c36d74?p=8866) |\n| 建筑改变日本 | 伊东丰雄 | [下载](https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866) |\n| 邬达克 | 卢卡・彭切里尼/尤利娅・切伊迪 | [下载](https://url89.ctfile.com/f/31084289-1357031332-01319b?p=8866) |\n| 知日14：家宅 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025449-ebed98?p=8866) |\n| 八面来风 | 张克群 | [下载](https://url89.ctfile.com/f/31084289-1357014949-70bd3c?p=8866) |\n| 晨钟暮鼓 | 张克群 | [下载](https://url89.ctfile.com/f/31084289-1357014913-1d2392?p=8866) |\n| 红墙黄瓦 | 张克群 | [下载](https://url89.ctfile.com/f/31084289-1357014904-b28aee?p=8866) |\n| 反建筑 | 伊东丰雄 | [下载](https://url89.ctfile.com/f/31084289-1357014718-1944d8?p=8866) |\n| 西方建筑小史 | 陈杰 | [下载](https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866) |\n| 上海秘境 | TimeOut 上海 | [下载](https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866) |\n"
  },
  {
    "path": "md/开发.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 开发\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| JavaScript权威指南（第6版） | David Flanagan | [下载](https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866) |\n"
  },
  {
    "path": "md/当代.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 当代\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 赤川次郎作品系列（套装共五册） | 赤川次郎 | [下载](https://url89.ctfile.com/f/31084289-1357048447-5436f5?p=8866) |\n| 天下倾歌（共2册） | 青林之初 | [下载](https://url89.ctfile.com/f/31084289-1357045369-5592ba?p=8866) |\n| 大雪无痕（修订典藏版） | 陆天明 | [下载](https://url89.ctfile.com/f/31084289-1357042507-28ce63?p=8866) |\n| 茅盾文学奖传世经典15部装（共33册） | 李国文等 | [下载](https://url89.ctfile.com/f/31084289-1357041607-c640ec?p=8866) |\n| 武志红经典作品合集（套装共4册） | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866) |\n| 被偷走的人生 | 三七 | [下载](https://url89.ctfile.com/f/31084289-1357035772-784a6d?p=8866) |\n| 外国著名作家的必读短篇小说集（套装8本） | 契诃夫等 | [下载](https://url89.ctfile.com/f/31084289-1357035313-d1c72e?p=8866) |\n| 村上春树长篇代表作品集（套装共10册） | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357034989-a89d3c?p=8866) |\n| 篇篇十万+：朋友圈的戎马江湖（套装共11册） | 咪蒙/张小娴等 | [下载](https://url89.ctfile.com/f/31084289-1357034755-6f1025?p=8866) |\n| 文学百年经典（套装三册） | 李朝全 | [下载](https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866) |\n| 归乡 | 尤凤伟 | [下载](https://url89.ctfile.com/f/31084289-1357034413-483475?p=8866) |\n| 卡尔维诺精选作品集（套装23册） | 伊塔洛・卡尔维诺 | [下载](https://url89.ctfile.com/f/31084289-1357034284-3a66b1?p=8866) |\n| 王朔文集（典藏版） | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866) |\n| 速求共眠 | 阎连科 | [下载](https://url89.ctfile.com/f/31084289-1357033828-cbebcf?p=8866) |\n| 严歌苓小说精选（10册套装） | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357033429-3c24c1?p=8866) |\n| 严歌苓长篇精品（套装共3册） | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357031872-89a7fd?p=8866) |\n| 妈阁是座城 | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357031431-3b1b40?p=8866) |\n| 石黑一雄中英双语作品集（套装共8册） | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357031413-441a7b?p=8866) |\n| 伊恩·麦克尤恩作品集（套装共15册） | 伊恩・麦克尤恩 | [下载](https://url89.ctfile.com/f/31084289-1357030873-4d30db?p=8866) |\n| 陈希我疼痛小说三部曲 | 陈希我 | [下载](https://url89.ctfile.com/f/31084289-1357030783-193739?p=8866) |\n| 鸟藏 | 老王子 | [下载](https://url89.ctfile.com/f/31084289-1357030411-768a7d?p=8866) |\n| 民国大师精选典藏系列套装33册 | 林徽因等 | [下载](https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866) |\n| 李劼人文学作品合集（套装九册） | 李劼人 | [下载](https://url89.ctfile.com/f/31084289-1357028308-3a0522?p=8866) |\n| 街道江湖 | 王占黑 | [下载](https://url89.ctfile.com/f/31084289-1357028230-cbb04c?p=8866) |\n| 郎骑竹马来 | 半夏 | [下载](链接未找到) |\n| 匿名 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1357027516-22199b?p=8866) |\n| 阿耐精选作品集（套装共5册） | 阿耐 | [下载](https://url89.ctfile.com/f/31084289-1357026907-4e8ab6?p=8866) |\n| 薛忆沩作品（共6册） | 薛忆沩 | [下载](https://url89.ctfile.com/f/31084289-1357024573-1a5905?p=8866) |\n| 天黑得很慢 | 周大新 | [下载](https://url89.ctfile.com/f/31084289-1357022179-0f5935?p=8866) |\n| 迷失的军刺 | 火狼 | [下载](https://url89.ctfile.com/f/31084289-1357019152-9eb6d7?p=8866) |\n| 说部之乱 | 朱岳 | [下载](https://url89.ctfile.com/f/31084289-1357017805-d00a95?p=8866) |\n| 甲马 | 默音 | [下载](https://url89.ctfile.com/f/31084289-1357016590-59b466?p=8866) |\n| 芳华 | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357015696-61e77a?p=8866) |\n| 谷崎润一郎精选集（套装共11册） | 谷崎润一郎 | [下载](https://url89.ctfile.com/f/31084289-1357014514-989557?p=8866) |\n| 慈悲 | 路内 | [下载](https://url89.ctfile.com/f/31084289-1357013974-4df8cd?p=8866) |\n| 平原上的摩西 | 双雪涛 | [下载](https://url89.ctfile.com/f/31084289-1357013002-6e48be?p=8866) |\n| 猫城七日 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357012729-5d6efa?p=8866) |\n| 天浴 | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357011631-d26689?p=8866) |\n| 丙申故事集 | 弋舟 | [下载](https://url89.ctfile.com/f/31084289-1357011514-e0566b?p=8866) |\n| 桃之夭夭 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1357011418-b385c2?p=8866) |\n| 苏菲的世界（贾德名作系列三部曲） | 乔斯坦・贾德 | [下载](https://url89.ctfile.com/f/31084289-1357011355-c8762d?p=8866) |\n| 米奇·阿尔博姆作品系列套装（套装共5册） | 米奇・阿尔博姆 | [下载](https://url89.ctfile.com/f/31084289-1357011112-201397?p=8866) |\n| 夏威夷史诗(共2册） | 詹姆斯・米切纳 | [下载](https://url89.ctfile.com/f/31084289-1357010758-140387?p=8866) |\n| 饥饿游戏（套装共3册） | 苏珊・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1357010443-27b9b4?p=8866) |\n| 妹头 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1357010377-d27ee2?p=8866) |\n| 丹·布朗作品系列（套装共6册） | 丹・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357010287-e7276e?p=8866) |\n| 出梁庄记 | 梁鸿 | [下载](https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866) |\n| 等等灵魂 | 李佩甫 | [下载](https://url89.ctfile.com/f/31084289-1357008343-34970f?p=8866) |\n| 毛姆作品系列套装（套装共13本） | 威廉・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357007653-8459d0?p=8866) |\n| 浮躁 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357005049-2a2f9d?p=8866) |\n| 秦腔 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357005046-8b111a?p=8866) |\n| 废都 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357004731-02bb60?p=8866) |\n"
  },
  {
    "path": "md/彭德怀.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 彭德怀\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 彭德怀自传 | 彭德怀 | [下载](https://url89.ctfile.com/f/31084289-1357007605-b1c4f9?p=8866) |\n| 彭大将军 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357006510-d1a671?p=8866) |\n"
  },
  {
    "path": "md/影响.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 影响\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 细节：如何轻松影响他人 | 罗伯特・西奥迪尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866) |\n"
  },
  {
    "path": "md/影视.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 影视\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 邪恶力量：超自然生物图鉴 | 提姆・瓦格纳 | [下载](https://url89.ctfile.com/f/31084289-1356985678-c429a7?p=8866) |\n| 李碧华经典小说集 | 李碧华 | [下载](https://url89.ctfile.com/f/31084289-1357024717-9cc7da?p=8866) |\n"
  },
  {
    "path": "md/影评.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 影评\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 光影里的梦幻与真实 | 郑实 | [下载](https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866) |\n| 如何聊电影 | 安・霍纳迪 | [下载](https://url89.ctfile.com/f/31084289-1357029709-5cea62?p=8866) |\n"
  },
  {
    "path": "md/微软.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 微软\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 刷新：重新发现商业与未来 | 萨提亚・纳德拉 | [下载](https://url89.ctfile.com/f/31084289-1357017295-014e5b?p=8866) |\n"
  },
  {
    "path": "md/德国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 德国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 纳粹集中营史（全2册） | 尼古劳斯・瓦克斯曼 | [下载](https://url89.ctfile.com/f/31084289-1375491625-c415d8?p=8866) |\n| 慕尼黑 | 罗伯特・哈里斯 | [下载](https://url89.ctfile.com/f/31084289-1375493383-9583c5?p=8866) |\n| 别人的动物园 | 扬・莫恩浩特 | [下载](https://url89.ctfile.com/f/31084289-1375497574-d5742d?p=8866) |\n| 不中用的狗（短经典精选） | 海因里希・伯尔 | [下载](https://url89.ctfile.com/f/31084289-1375499308-749147?p=8866) |\n| 100个物品中的德国历史 | 赫尔曼・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1375500205-230f28?p=8866) |\n| 大战：1914～1918年的世界（全2册） | 赫尔弗里德・明克勒 | [下载](https://url89.ctfile.com/f/31084289-1375500367-921478?p=8866) |\n| 帝国的崛起 | 约翰・马里奥特/格兰特・罗伯逊 | [下载](https://url89.ctfile.com/f/31084289-1375508947-f67a76?p=8866) |\n| 我的五个德国 | 弗里茨・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866) |\n| 德国人 | 埃米尔・路德维希 | [下载](https://url89.ctfile.com/f/31084289-1375511845-4ad275?p=8866) |\n| 铁幕欧洲之新生 | 卡尔・施勒格尔 | [下载](https://url89.ctfile.com/f/31084289-1375512076-49e394?p=8866) |\n| 德国的细节 | 叶克飞 | [下载](https://url89.ctfile.com/f/31084289-1357000312-ad2cbf?p=8866) |\n| 德国文化漫游 | 鲁成文 | [下载](https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866) |\n| 咖喱香肠的诞生 | 乌韦・提姆 | [下载](https://url89.ctfile.com/f/31084289-1357000282-bf0d55?p=8866) |\n| 审判希特勒 | 大卫・金 | [下载](https://url89.ctfile.com/f/31084289-1356998536-d8c07b?p=8866) |\n| 耶路撒冷之前的艾希曼 | 贝蒂娜・施汤内特 | [下载](https://url89.ctfile.com/f/31084289-1356997453-459c45?p=8866) |\n| 希特勒与20世纪德国 | 汉斯・莫姆森 | [下载](https://url89.ctfile.com/f/31084289-1356997363-fc796f?p=8866) |\n| 民主德国的秘密读者 | 齐格弗里德・洛卡蒂斯/英格里德・宗塔格 | [下载](https://url89.ctfile.com/f/31084289-1356996481-32da34?p=8866) |\n| 三十年战争史：1618-1648 | 塞缪尔・罗森・加德纳 | [下载](https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866) |\n| 德国：一个国家的记忆 | 尼尔・麦格雷戈 | [下载](https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866) |\n| 朗读者 | 本哈德・施林克 | [下载](https://url89.ctfile.com/f/31084289-1356991900-b47bed?p=8866) |\n| 第三帝国的兴亡（增订版） | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1356990853-50ab4e?p=8866) |\n| 当权的第三帝国 | 理查德·J. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1356989863-6ab962?p=8866) |\n| 第三帝国的到来 | 理查德·J. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1356988966-06bb14?p=8866) |\n| 掘墓人 | 吕迪格・巴特/豪克・弗里德里希 | [下载](https://url89.ctfile.com/f/31084289-1356985024-aa55e8?p=8866) |\n| 西方通史：世界大战的时代（全三册） | 海因里希・奥古斯特・温克勒 | [下载](https://url89.ctfile.com/f/31084289-1356984727-88831b?p=8866) |\n| 日耳曼尼亚 | 西蒙・温德尔 | [下载](https://url89.ctfile.com/f/31084289-1356984622-8c00f4?p=8866) |\n| 强迫症的历史 | 克劳斯·P.费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866) |\n| 黑格尔 | 马丁・海德格尔 | [下载](https://url89.ctfile.com/f/31084289-1357052539-7f6be3?p=8866) |\n| 黑塞文集（全10卷） | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357051813-4fbe8f?p=8866) |\n| 第一次世界大战（贝克知识丛书） | 弗尔克・贝克汉恩 | [下载](https://url89.ctfile.com/f/31084289-1357051600-703fba?p=8866) |\n| 二十世纪德国史（贝克知识丛书） | 安德烈亚斯・维尔申 | [下载](https://url89.ctfile.com/f/31084289-1357051465-79abc2?p=8866) |\n| 独异性社会 | 安德雷亚斯・莱克维茨 | [下载](https://url89.ctfile.com/f/31084289-1357050682-32415f?p=8866) |\n| 德意志公敌 | 杰弗里・赫夫 | [下载](https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866) |\n| 蜜蜂之死 | 汉妮・明策尔 | [下载](https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866) |\n| 彗星年代 | 丹尼尔・舍恩普夫卢格 | [下载](https://url89.ctfile.com/f/31084289-1357047445-ebb29b?p=8866) |\n| 批评家之死 | 马丁・瓦尔泽 | [下载](https://url89.ctfile.com/f/31084289-1357045375-92d933?p=8866) |\n| 哲学史讲演录（4卷） | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866) |\n| 历史与记忆中的第三帝国 | 理查德・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357044445-0e7ec0?p=8866) |\n| 致后代 | 贝托尔特・布莱希特 | [下载](https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866) |\n| 柏林，亚历山大广场（译文经典） | 阿尔弗雷德・德布林 | [下载](https://url89.ctfile.com/f/31084289-1357043308-cc3071?p=8866) |\n| 时代的精神状况（译文经典） | 卡尔・雅斯贝斯 | [下载](https://url89.ctfile.com/f/31084289-1357042081-4c4aec?p=8866) |\n| 步兵攻击（经典纪念版） | 埃尔温・隆美尔 | [下载](https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866) |\n| 德国通史（全六卷） | 邢来顺/吴友达 | [下载](https://url89.ctfile.com/f/31084289-1357041019-a506b4?p=8866) |\n| 我们与祖先交谈的夜晚 | 萨沙・斯坦尼西奇 | [下载](https://url89.ctfile.com/f/31084289-1357040701-145d11?p=8866) |\n| 自由的文化 | 克里斯蒂安・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357039615-5e2ce0?p=8866) |\n| 香水（译文经典） | 帕特里克・聚斯金德 | [下载](https://url89.ctfile.com/f/31084289-1357038457-f07ef8?p=8866) |\n| 恋爱中的男人 | 马丁・瓦尔泽 | [下载](https://url89.ctfile.com/f/31084289-1357037671-0d7dcf?p=8866) |\n| 德意志文化（1945～2000年） | 赫尔曼・格拉瑟 | [下载](https://url89.ctfile.com/f/31084289-1357034806-c7aa48?p=8866) |\n| 帝国骑士（第4卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034869-02fb2e?p=8866) |\n| 帝国骑士（第1卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034683-b57459?p=8866) |\n| 希腊对德意志的暴政 | 伊莉莎・玛丽安・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1357034551-2359cf?p=8866) |\n| 帝国骑士（第2卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034584-79638e?p=8866) |\n| 帝国骑士（第3卷） | 汪冰 | [下载](https://url89.ctfile.com/f/31084289-1357034488-dc6b39?p=8866) |\n| 我是谁？如果有我，有几个我？ | 理查德・大卫・普列斯特 | [下载](https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866) |\n| 小人物，怎么办？（企鹅经典） | 汉斯・法拉达 | [下载](https://url89.ctfile.com/f/31084289-1357033552-fc5367?p=8866) |\n| 魔山（企鹅经典） | 托马斯・曼 | [下载](https://url89.ctfile.com/f/31084289-1357033270-e62351?p=8866) |\n| 德皇威廉二世回忆录 | 威廉二世 | [下载](https://url89.ctfile.com/f/31084289-1357031962-108659?p=8866) |\n| 背对世界 | 埃尔克・海登莱希 | [下载](https://url89.ctfile.com/f/31084289-1357031692-85e059?p=8866) |\n| 德国总参谋部 | 斯宾塞・威尔金森 | [下载](https://url89.ctfile.com/f/31084289-1357031410-c1b165?p=8866) |\n| 柏林：一座城市的肖像 | 罗里・麦克林 | [下载](https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866) |\n| 爱与死的年代 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357031077-d1a6b0?p=8866) |\n| 伙伴进行曲 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357031065-ab7513?p=8866) |\n| 西线无战事 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357030507-dc3c15?p=8866) |\n| 里斯本之夜 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357030501-6ecfa7?p=8866) |\n| 黑色方尖碑 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357030498-51ee22?p=8866) |\n| 德国极简史 | 詹姆斯・霍斯 | [下载](https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866) |\n| 思维的艺术 | 延斯・森特根 | [下载](https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866) |\n| 作家和出版人 | 西格弗里德・温塞德  | [下载](https://url89.ctfile.com/f/31084289-1357029769-5eb081?p=8866) |\n| 德国历史中的文化诱惑 | 沃尔夫・勒佩尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866) |\n| 权力意志与永恒轮回（译文经典） | 弗里德里希·威廉·尼采 | [下载](https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866) |\n| 希特勒的影子帝国 | 皮耶尔保罗・巴维里 | [下载](https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866) |\n| 死于威尼斯（译文经典） | 托马斯・曼 | [下载](https://url89.ctfile.com/f/31084289-1357026790-ec3dad?p=8866) |\n| 纳粹德国 | 克劳斯・P.费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357025611-2bfc85?p=8866) |\n| 1924：改变希特勒命运的一年 | 彼得・罗斯・兰奇 | [下载](https://url89.ctfile.com/f/31084289-1357025131-e55825?p=8866) |\n| 丈量世界 | 丹尼尔・凯曼 | [下载](https://url89.ctfile.com/f/31084289-1357025011-988ba8?p=8866) |\n| 少年维特的烦恼（读客经典） | 约翰・沃尔夫冈・冯・歌德 | [下载](https://url89.ctfile.com/f/31084289-1357024237-1edddb?p=8866) |\n| 剑桥德国史 | 玛丽・富布卢克 | [下载](https://url89.ctfile.com/f/31084289-1357022479-9288ae?p=8866) |\n| 德国人的战争 | 尼古拉斯・斯塔加特 | [下载](https://url89.ctfile.com/f/31084289-1357021777-949d64?p=8866) |\n| 默克尔传：德国总理安格拉·默克尔和她的权力世界 | 斯蒂凡・柯内琉斯 | [下载](https://url89.ctfile.com/f/31084289-1357020523-ee7487?p=8866) |\n| 奥斯坦德1936 | 福尔克尔・魏德曼 | [下载](https://url89.ctfile.com/f/31084289-1357020391-a49d11?p=8866) |\n| 沉重的皇冠 | 克里斯托弗・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357019224-58ff24?p=8866) |\n| 金与铁：俾斯麦、布莱希罗德与德意志帝国的建立 | 弗里茨・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1357019062-89d9da?p=8866) |\n| 不情愿的大师 | 斯蒂芬・葛霖 | [下载](https://url89.ctfile.com/f/31084289-1357017631-5dd734?p=8866) |\n| 来自静默时刻的讯息 | 亚历山大・克鲁格/格哈德・里希特 | [下载](https://url89.ctfile.com/f/31084289-1357015834-7f7b45?p=8866) |\n| 黑暗时刻：希特勒、大屠杀与纳粹文化（上下册） | 单世联 | [下载](https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866) |\n| 应许之地 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357012585-de8060?p=8866) |\n| 远去的胜利 | 威廉・理查德森/西摩・弗雷德林  | [下载](https://url89.ctfile.com/f/31084289-1357012009-d22d8f?p=8866) |\n| 《存在与时间》释义 | 张汝伦 | [下载](https://url89.ctfile.com/f/31084289-1357011925-622b16?p=8866) |\n| 德意志之魂 | 特亚・多恩/里夏德・瓦格纳 | [下载](https://url89.ctfile.com/f/31084289-1357011616-7a3f09?p=8866) |\n| 德国的浩劫 | 弗里德里希・迈内克 | [下载](https://url89.ctfile.com/f/31084289-1357011484-6c4d96?p=8866) |\n| 席勒文集（全6册） | 席勒 | [下载](https://url89.ctfile.com/f/31084289-1357011478-c63c69?p=8866) |\n| 十个人的德意志 | 孙世龙 | [下载](https://url89.ctfile.com/f/31084289-1357009267-7bdd51?p=8866) |\n| 步兵进攻 | 埃尔温・隆美尔 | [下载](https://url89.ctfile.com/f/31084289-1357009204-3a2b9f?p=8866) |\n| 荒原狼 | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357009234-487551?p=8866) |\n| 强迫症的历史：德国人的犹太恐惧症与大屠杀 | 克劳斯・费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866) |\n| 德国简史 | 孟钟捷 | [下载](https://url89.ctfile.com/f/31084289-1357008727-d625c6?p=8866) |\n| 希特勒传：跃升年代 | 福尔克尔・乌尔里希 | [下载](https://url89.ctfile.com/f/31084289-1357007821-cb61c8?p=8866) |\n| 德国通史 | 丁建弘  | [下载](https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866) |\n| 纳粹德国的腐败与反腐 | 弗兰克・巴约尔 | [下载](https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866) |\n| 从俾斯麦到希特勒 | 塞巴斯蒂安·哈夫纳 | [下载](https://url89.ctfile.com/f/31084289-1357006426-3100a6?p=8866) |\n| 山的那一边 | 李德・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357005724-3268f1?p=8866) |\n"
  },
  {
    "path": "md/德鲁克.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 德鲁克\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 21世纪的管理挑战（珍藏版） | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357035478-d1cadf?p=8866) |\n| 21世纪的管理挑战 | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866) |\n| 德鲁克的最后忠告 | 伊丽莎白・哈斯・埃德莎姆 | [下载](https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866) |\n"
  },
  {
    "path": "md/心学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 心学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知行合一王阳明2：四句话读懂阳明心学 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357021702-5a67f2?p=8866) |\n| 知行合一王阳明3：王阳明家训 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357021687-3139fa?p=8866) |\n| 传习录 | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1357021690-8bf874?p=8866) |\n| 真正全集：王阳明全集 | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866) |\n| 知行合一王阳明 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357005664-c03f93?p=8866) |\n"
  },
  {
    "path": "md/心智.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 心智\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 硬功夫：助你精进的八大硬核技能 | 崔诚靓 | [下载](https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866) |\n| 改变提问，改变人生（原书第3版） | 梅若李・亚当斯  | [下载](https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866) |\n"
  },
  {
    "path": "md/心灵.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 心灵\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 心、脑与科学（二十世纪西方哲学经典） | 约翰・塞尔 | [下载](https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866) |\n| 你要如何衡量你的人生 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866) |\n| 一日一善（套装全4册） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866) |\n| 与自己和解 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866) |\n| 幸福来自绝对的信任 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357036834-77bd7f?p=8866) |\n| 从受欢迎到被需要 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866) |\n| 无量之网 | 格里格．布莱登 | [下载](https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866) |\n| 世界尽头的咖啡馆 | 约翰・史崔勒基 | [下载](https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866) |\n| 和繁重的工作一起修行 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357029163-8fb11a?p=8866) |\n| 箭术与禅心 | 奥根・赫立格尔 | [下载](https://url89.ctfile.com/f/31084289-1357028221-f5198d?p=8866) |\n| 如果世事总能得偿所愿 | 余儒海 | [下载](https://url89.ctfile.com/f/31084289-1357027333-fd42c9?p=8866) |\n| 跃升 | 威廉・麦独孤 | [下载](https://url89.ctfile.com/f/31084289-1357027246-69f74b?p=8866) |\n| 灵心小史 | 小德兰 | [下载](https://url89.ctfile.com/f/31084289-1357025500-9364d3?p=8866) |\n| 用安静改变世界 | 拉塞尔・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357023886-49af84?p=8866) |\n| 超意识 | 菲尔图 | [下载](https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866) |\n| 发现你的天赋 | 肯・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357020910-0f5b1c?p=8866) |\n| 卸下心头重担 | 阿鲁老和尚 | [下载](https://url89.ctfile.com/f/31084289-1357020496-159444?p=8866) |\n| 奇迹课程 | 海伦・舒曼 | [下载](https://url89.ctfile.com/f/31084289-1357019197-f582a7?p=8866) |\n| 亲密关系：通往灵魂的桥梁 | 克里斯多福・孟 | [下载](https://url89.ctfile.com/f/31084289-1357017046-fa06c7?p=8866) |\n| 岛上来信 | 胡子 | [下载](https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866) |\n| 讲出一个精彩故事 | 麦成辉 | [下载](https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866) |\n| 爱是一切的答案 | 芭芭拉・安吉丽思 | [下载](https://url89.ctfile.com/f/31084289-1357013560-d25c4d?p=8866) |\n| 长大后的世界 | 罗曼・阿拉姆 | [下载](https://url89.ctfile.com/f/31084289-1357012951-aa9637?p=8866) |\n| 太傻天书 | 太傻 | [下载](https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866) |\n| 当下的力量（珍藏版） | 埃克哈特・托利 | [下载](https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866) |\n| 被讨厌的勇气 | 岸见一郎/古贺史健 | [下载](https://url89.ctfile.com/f/31084289-1357010347-03ea7c?p=8866) |\n| 一个人的朝圣 | 蕾秋・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357009921-87bfcb?p=8866) |\n| 生命的重建 | 露易丝·海 | [下载](https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866) |\n| 我所有的朋友都死了（套装共2册） | 艾弗里・蒙森 | [下载](https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866) |\n"
  },
  {
    "path": "md/心理.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 心理\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们为何无聊 | 詹姆斯・丹克特等 | [下载](https://url89.ctfile.com/f/31084289-1375490977-1e5ce8?p=8866) |\n| 认知工具 | 塞西莉亚・海耶斯 | [下载](https://url89.ctfile.com/f/31084289-1375491715-7dc597?p=8866) |\n| 动机与人格 | 亚伯拉罕・马斯洛 | [下载](https://url89.ctfile.com/f/31084289-1375495429-a9bbbc?p=8866) |\n| 0次与10000次 | 吉塔・雅各布 | [下载](https://url89.ctfile.com/f/31084289-1375497181-c8dc00?p=8866) |\n| 疲劳自救手册 | 玛丽・伯吉斯/特鲁迪・查尔德 | [下载](https://url89.ctfile.com/f/31084289-1375497475-e986a2?p=8866) |\n| 沙发上的心理学 | 菲利帕・佩里 | [下载](https://url89.ctfile.com/f/31084289-1375497946-e0bf91?p=8866) |\n| 新乌合之众 | 迈赫迪・穆萨伊德 | [下载](https://url89.ctfile.com/f/31084289-1375497907-396975?p=8866) |\n| 十种人性 | 德克斯特・迪亚斯 | [下载](https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866) |\n| 译文心理分析作品集（套装共12册） | 西格蒙德・弗洛伊德等 | [下载](https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866) |\n| 贪婪的多巴胺 | 丹尼尔・利伯曼等 | [下载](https://url89.ctfile.com/f/31084289-1375498459-018013?p=8866) |\n| 这真的是你的错吗 | 加藤谛三 | [下载](https://url89.ctfile.com/f/31084289-1375499227-3864f2?p=8866) |\n| 反内卷 | 黄徽 | [下载](https://url89.ctfile.com/f/31084289-1375499245-6c8e89?p=8866) |\n| 费尔德曼发展心理学 | 罗伯特·S.费尔德曼 | [下载](https://url89.ctfile.com/f/31084289-1375499536-3655fb?p=8866) |\n| 活出最乐观的自己 | 马丁・塞利格曼 | [下载](https://url89.ctfile.com/f/31084289-1375499620-1feacf?p=8866) |\n| 新人类心理丛书（共6册） | 达里安・利德等 | [下载](https://url89.ctfile.com/f/31084289-1375499710-78a426?p=8866) |\n| 一旦能放声嘲笑自己，你就自由了 | 梅丽莎・达尔 | [下载](https://url89.ctfile.com/f/31084289-1375499704-86a34e?p=8866) |\n| 问题不大 | 杨子星 | [下载](https://url89.ctfile.com/f/31084289-1375500136-6043d2?p=8866) |\n| 马尔科姆·格拉德威尔系列（套装共6册） | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866) |\n| 鹿鸣心理·心理咨询师系列精选（套装14册） | 沙格曼・卡亚金等 | [下载](https://url89.ctfile.com/f/31084289-1375500541-cb7910?p=8866) |\n| 宁静的力量 | 瑞安・霍利迪 | [下载](https://url89.ctfile.com/f/31084289-1375500661-e3cdce?p=8866) |\n| 鹿鸣心理·心理自助读物精选（套装17册） | 南茜・戴维森等 | [下载](https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866) |\n| 心理自助CBT书系（套装共七册） | 萨万・辛格等 | [下载](https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866) |\n| 也许你该找个人聊聊 | 洛莉・戈特利布 | [下载](https://url89.ctfile.com/f/31084289-1375508959-595ed0?p=8866) |\n| 马登谈成功（套装共5册） | 奥里森・马登 | [下载](https://url89.ctfile.com/f/31084289-1375508968-7f8963?p=8866) |\n| 终极心理测试 | 迈克・布里翁 | [下载](https://url89.ctfile.com/f/31084289-1375509244-f90270?p=8866) |\n| 我是谁：心理学实证研究社会思维 | 戴维・迈尔斯/琼・特韦奇 | [下载](https://url89.ctfile.com/f/31084289-1375509499-e67aab?p=8866) |\n| 改变或免疫 | 戴维・迈尔斯/琼・特韦奇 | [下载](https://url89.ctfile.com/f/31084289-1375509568-e95089?p=8866) |\n| 无知 | 迈克・詹姆斯・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1375509577-8fec76?p=8866) |\n| 读脑术 | 拉塞尔·A.波德拉克 | [下载](https://url89.ctfile.com/f/31084289-1375509688-9d9191?p=8866) |\n| 拥抱可能 | 伊迪丝・伊娃・埃格尔 | [下载](https://url89.ctfile.com/f/31084289-1375509838-933c2d?p=8866) |\n| 从玫瑰到枪炮 | 戴维・迈尔斯/琼・特韦奇 | [下载](https://url89.ctfile.com/f/31084289-1375509892-7e4601?p=8866) |\n| 无所畏惧：颠覆你内心的脆弱 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1375510027-601beb?p=8866) |\n| 海龟先生的心理疗愈 | 塞尔日・马基 | [下载](https://url89.ctfile.com/f/31084289-1375510162-32cc06?p=8866) |\n| 大卫·艾尔曼实用催眠 | 大卫・艾尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375510171-7757c8?p=8866) |\n| 被绑架的心灵 | 戴维・凯斯勒 | [下载](https://url89.ctfile.com/f/31084289-1375510372-1db3f6?p=8866) |\n| 蛤蟆先生去看心理医生 | 罗伯特・戴博德 | [下载](https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866) |\n| 一切皆契约 | 聂辉华 | [下载](https://url89.ctfile.com/f/31084289-1375510423-f1d70c?p=8866) |\n| 天生疯狂 | 中野信子 | [下载](https://url89.ctfile.com/f/31084289-1375510432-073af1?p=8866) |\n| 偏见 | 珍妮弗・埃伯哈特 | [下载](https://url89.ctfile.com/f/31084289-1375510933-ef0322?p=8866) |\n| 负面情绪，正面解决 | 利斯・范・萨斯特伦 | [下载](https://url89.ctfile.com/f/31084289-1375510939-6c58a7?p=8866) |\n| 冲突的演化 | 杰弗里・贝蒂 | [下载](https://url89.ctfile.com/f/31084289-1375512607-ff38db?p=8866) |\n| 通俗心理学百科合集（套装共18册） | 约翰・华生等 | [下载](https://url89.ctfile.com/f/31084289-1375513492-f070e3?p=8866) |\n| 释梦人生 | 荣伟玲 | [下载](https://url89.ctfile.com/f/31084289-1375513567-30276c?p=8866) |\n| 掌控沟通 | 贾斯汀・李 | [下载](https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866) |\n| 超级心智 | 诺曼·E·罗森塔尔 | [下载](https://url89.ctfile.com/f/31084289-1375513693-5e6741?p=8866) |\n| 我们内心的冲突（果麦经典） | 卡伦・霍妮 | [下载](https://url89.ctfile.com/f/31084289-1357004464-e0bf3e?p=8866) |\n| 和另一个自己谈谈心 | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357004392-11723b?p=8866) |\n| 自我边界 | 乔治・戴德 | [下载](https://url89.ctfile.com/f/31084289-1357004260-42ce47?p=8866) |\n| 奇葩心理学 | 冈田尊司 | [下载](https://url89.ctfile.com/f/31084289-1357004146-e96884?p=8866) |\n| 犯罪心理档案（共4册） | 刚雪印 | [下载](https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866) |\n| 快行动，慢思考 | 迪安・德尔・塞斯托 | [下载](https://url89.ctfile.com/f/31084289-1357002415-60e276?p=8866) |\n| 你的第一本抑郁自救指南 | 所长任有病 | [下载](https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866) |\n| 梦的解析（果麦经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357002187-512d6c?p=8866) |\n| 动机心理学 | 罗曼・格尔佩林 | [下载](https://url89.ctfile.com/f/31084289-1357002016-a8251f?p=8866) |\n| 冷静表达的艺术 | 罗纳德·T·派特佛恩 | [下载](https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866) |\n| 焦虑你好 | 安珀・雷 | [下载](https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866) |\n| 拖延症患者自救手册 | 加兰・库尔森 | [下载](https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866) |\n| 走出人格陷阱 | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357000846-80193c?p=8866) |\n| 犯罪心理套装（共四册） | 许大鹏等 | [下载](https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866) |\n| 犯罪心理分析 | 张蔚 | [下载](https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866) |\n| 归属感 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1356999826-9a1d49?p=8866) |\n| 爱是什么 | 芭芭拉・弗雷德里克森 | [下载](https://url89.ctfile.com/f/31084289-1356999475-3aed0e?p=8866) |\n| 陌生人效应 | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1356998548-5194e2?p=8866) |\n| 英雄与母亲 | C.G. 荣格 | [下载](https://url89.ctfile.com/f/31084289-1356996685-df9910?p=8866) |\n| 内心的重建 | 维尼老师 | [下载](https://url89.ctfile.com/f/31084289-1356996175-2a2c01?p=8866) |\n| 伊雍：自性现象学研究 | C. G. 荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995866-2fee9e?p=8866) |\n| 东方的智慧 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995506-16f19d?p=8866) |\n| 学会幸福 | 陈赛 | [下载](https://url89.ctfile.com/f/31084289-1356995257-9a5bef?p=8866) |\n| 差异优势 | 约翰·C. 马克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866) |\n| 情商大师（息怒篇） | 伯纳德・金 | [下载](https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866) |\n| 煤气灯效应 | 罗宾・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866) |\n| 被拒绝的勇气 | 岸见一郎 | [下载](https://url89.ctfile.com/f/31084289-1356993493-64723f?p=8866) |\n| 心智与阅读 | 丹尼尔·T.威林厄姆 | [下载](https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866) |\n| 抗逆力 | 邹建章 | [下载](https://url89.ctfile.com/f/31084289-1356992029-95a7a3?p=8866) |\n| 别让性格害了你 | 邢群麟 | [下载](https://url89.ctfile.com/f/31084289-1356991894-bc5bb0?p=8866) |\n| 别让情绪毁了你的努力 | 剑圣喵大师 | [下载](https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866) |\n| 女性进化论 | 侯虹斌 | [下载](https://url89.ctfile.com/f/31084289-1356991723-c926e0?p=8866) |\n| 性格拼图 | 西尔维亚・洛肯 | [下载](https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866) |\n| 内向心理学 | 西尔维亚・洛肯 | [下载](https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866) |\n| 内向高敏者 | 西尔维亚・洛肯 | [下载](https://url89.ctfile.com/f/31084289-1356991516-921fc6?p=8866) |\n| 你的情商，决定你的人生高度 | 心屋仁之助 | [下载](https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866) |\n| 你为什么不道歉 | 哈丽特・勒纳 | [下载](https://url89.ctfile.com/f/31084289-1356990589-e95cbc?p=8866) |\n| 人性的优点 | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1356990421-adb4e8?p=8866) |\n| 我不想将就过一生 | 吴静 | [下载](https://url89.ctfile.com/f/31084289-1356989158-1364ca?p=8866) |\n| 思维的囚徒 | 亚历克斯・佩塔克斯/伊莱恩・丹顿 | [下载](https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866) |\n| 突破天性 | 布赖恩・利特尔 | [下载](https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866) |\n| 天生非此 | 奥利弗・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866) |\n| 一本正经又怪诞的行为心理学 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356985639-1775da?p=8866) |\n| 玩的就是规则 | 伊恩・伯格斯特 | [下载](https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866) |\n| 幸福：追求比得到更快乐 | 丹尼尔・内特尔 | [下载](https://url89.ctfile.com/f/31084289-1356985219-b0ee40?p=8866) |\n| 如何正确吵架 | 朱迪斯・莱特/鲍勃・莱特 | [下载](https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866) |\n| 如何成为一个抗压的人 | 道格・亨施 | [下载](https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866) |\n| 人，做得到任何事 | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1356984625-a03251?p=8866) |\n| 认同自己 | 斯蒂芬妮・斯塔尔 | [下载](https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866) |\n| 窥探疯子的内心世界（套装共6册） | 弗兰克・比弗・布拉迪等 | [下载](https://url89.ctfile.com/f/31084289-1356983659-dec0ab?p=8866) |\n| 心火：社会动机与我们的生活 | 陈为人 | [下载](https://url89.ctfile.com/f/31084289-1356983368-12b915?p=8866) |\n| 新情商 | 丹尼尔・戈尔曼 | [下载](https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866) |\n| 重口味心理学2 | 姚尧 | [下载](https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866) |\n| 重口味心理学3 | 姚尧 | [下载](https://url89.ctfile.com/f/31084289-1356982462-176d92?p=8866) |\n| 为何爱会伤人（珍藏版） | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866) |\n| 性格的陷阱 | 杰弗里·E.杨等 | [下载](https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866) |\n| 心理学与表达力影响力 | 洪琳 | [下载](https://url89.ctfile.com/f/31084289-1357054306-56f527?p=8866) |\n| 与内心的冲突和解 | 加藤谛三 | [下载](https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866) |\n| 有意识的社交 | 肯・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866) |\n| 掌控分寸 | 珍妮・米勒/维多利亚・兰伯特 | [下载](https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866) |\n| 寻找爽点 | 大卫・林登 | [下载](https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866) |\n| 心理学统治世界（全三册） | 古斯塔夫・勒庞 | [下载](https://url89.ctfile.com/f/31084289-1357052998-895117?p=8866) |\n| 学会快乐 | 马修・理查德 | [下载](https://url89.ctfile.com/f/31084289-1357052965-df8220?p=8866) |\n| 认知·情感·意志 | 詹姆斯・马克・鲍德温 | [下载](https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866) |\n| 制胜谈判 | 游梓翔 | [下载](https://url89.ctfile.com/f/31084289-1357052629-f068d8?p=8866) |\n| 用得上的心理学 | 王明姬/姚兵 | [下载](https://url89.ctfile.com/f/31084289-1357052671-91e779?p=8866) |\n| 幽微的人性 | 李玫瑾 | [下载](https://url89.ctfile.com/f/31084289-1357052320-cff183?p=8866) |\n| 你的误区 | 韦恩・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357051744-d5fffa?p=8866) |\n| 可能性法则 | 梅尔・施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357051441-e9bca0?p=8866) |\n| 总能做出正确决定的幸运法则 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866) |\n| 克服低自尊（第二版） | 梅勒妮・芬内尔 | [下载](https://url89.ctfile.com/f/31084289-1357051270-abaeb1?p=8866) |\n| 原生家庭生存指南 | 奥利弗・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357051150-577b7b?p=8866) |\n| 吾心可鉴 | 彭凯平 | [下载](https://url89.ctfile.com/f/31084289-1357051123-b5e48b?p=8866) |\n| 巴拉巴西成功定律 | 拉斯洛・巴拉巴西 | [下载](https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866) |\n| 共情的力量 | 亚瑟・乔拉米卡利/凯瑟琳・柯茜 | [下载](https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866) |\n| 反本能2 | 刘船洋 | [下载](https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866) |\n| 奇特的传染 | 李・丹尼尔・克拉韦茨 | [下载](https://url89.ctfile.com/f/31084289-1357049605-d91e82?p=8866) |\n| 好的焦虑 | 斯科特・施托塞尔 | [下载](https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866) |\n| 摆脱共情 | 保罗・布卢姆 | [下载](https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866) |\n| 世界上最神奇的24堂课 | 查尔斯・哈奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357049467-55033a?p=8866) |\n| 第一印象心理学 | 周一南 | [下载](https://url89.ctfile.com/f/31084289-1357049380-6bfe58?p=8866) |\n| 社会心理学（第8版） | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866) |\n| 墨菲定律（青春版） | 书鱼 | [下载](https://url89.ctfile.com/f/31084289-1357049149-e13406?p=8866) |\n| 缺爱 | 罗伯特・纳伯格 | [下载](https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866) |\n| 关系黑洞 | 周慕姿 | [下载](https://url89.ctfile.com/f/31084289-1357047640-dc0f46?p=8866) |\n| 麻辣心理学 | 金圣荣 | [下载](https://url89.ctfile.com/f/31084289-1357047523-bb5dc8?p=8866) |\n| 过程决定成败 | 乔尔・布罗克纳 | [下载](https://url89.ctfile.com/f/31084289-1357046644-6b9c12?p=8866) |\n| FBI微情绪心理学（若水集） | 金圣荣 | [下载](https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866) |\n| 反套路 | 大卫・迪萨沃 | [下载](https://url89.ctfile.com/f/31084289-1357046386-816bad?p=8866) |\n| 边缘型人格障碍 | 兰迪・克雷格 | [下载](https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866) |\n| 人生十二法则 | 乔丹・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866) |\n| 走出剧情 | 李雪 | [下载](https://url89.ctfile.com/f/31084289-1357045255-d56e0b?p=8866) |\n| 儿童教育心理学 | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866) |\n| 驾驭情绪的力量 | 珍妮弗・泰兹 | [下载](https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866) |\n| 每个行业都离不开心理学（套装共5册） | 王梓等 | [下载](https://url89.ctfile.com/f/31084289-1357044490-79b36e?p=8866) |\n| 看人心理学 | 赵育宁 | [下载](https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866) |\n| 与自己和解 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866) |\n| 人性中的善良天使（见识丛书） | 斯蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866) |\n| 不同的音调 | 约翰・唐文/凯伦・祖克 | [下载](https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866) |\n| 本能：为什么我们管不住自己？ | 特里・伯纳姆/杰伊・费伦 | [下载](https://url89.ctfile.com/f/31084289-1357041325-3a6922?p=8866) |\n| 完美关系的秘密 | 杨冰阳 | [下载](https://url89.ctfile.com/f/31084289-1357041142-df8089?p=8866) |\n| 自信的力量 | 夏尔・佩潘 | [下载](https://url89.ctfile.com/f/31084289-1357040455-c1bdea?p=8866) |\n| 焦虑型人格自救手册 | 安娜・威廉姆森等 | [下载](https://url89.ctfile.com/f/31084289-1357040062-b694e0?p=8866) |\n| 自卑与超越（果麦经典） | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357039837-b00dc9?p=8866) |\n| 匿名区 | 匿名用户 | [下载](https://url89.ctfile.com/f/31084289-1357038982-74f6e2?p=8866) |\n| 儿童分析的故事 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866) |\n| 嫉羡与感恩 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037092-5891ea?p=8866) |\n| 人人都该懂的心理学 | G. 尼尔・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357035829-d36c8b?p=8866) |\n| 超效自控 | 魏冰冰 | [下载](https://url89.ctfile.com/f/31084289-1357035580-026207?p=8866) |\n| 焦虑心理学 | 董心洁 | [下载](https://url89.ctfile.com/f/31084289-1357035310-d689df?p=8866) |\n| 人人都能梦的解析 | 高铭 | [下载](https://url89.ctfile.com/f/31084289-1357035280-e7c7d0?p=8866) |\n| 异类心理学 | 小川仁志 | [下载](https://url89.ctfile.com/f/31084289-1357035106-50ba06?p=8866) |\n| 西方心理学名著译丛（套装共十四册） | 赫尔曼・艾宾浩斯等 | [下载](https://url89.ctfile.com/f/31084289-1357035172-bd4fe6?p=8866) |\n| 焦虑星球笔记 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357035019-621de5?p=8866) |\n| 你的眼界，决定你的全世界 | 西武 | [下载](https://url89.ctfile.com/f/31084289-1357034995-9b80ed?p=8866) |\n| 自卑与超越 | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357034974-0a7e53?p=8866) |\n| 献给阿尔吉侬的花束（理想国） | 丹尼尔・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866) |\n| 学会吃饭 | 珍・克里斯特勒/艾莉莎・鲍曼 | [下载](https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866) |\n| 钱意识 | 沈诱冰 | [下载](https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866) |\n| 掌控关系 | 格雷琴・鲁宾 | [下载](https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866) |\n| 大潜能 | 肖恩・埃科尔 | [下载](https://url89.ctfile.com/f/31084289-1357034437-0178db?p=8866) |\n| 心理学与生活 | 理查德・格里格/菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866) |\n| 失误：为什么我们总爱犯错？ | 凯瑟琳・舒尔茨 | [下载](https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866) |\n| 登天的感觉 | 岳晓东 | [下载](https://url89.ctfile.com/f/31084289-1357033522-deb968?p=8866) |\n| 爱自己的人自带光芒 | 雅基・马森 | [下载](https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866) |\n| 情感吸血鬼 | 克里斯蒂娜・诺尔斯特鲁普 | [下载](https://url89.ctfile.com/f/31084289-1357032970-8fa260?p=8866) |\n| 世界尽头的咖啡馆 | 约翰・史崔勒基 | [下载](https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866) |\n| 如何提升性格优势 | 安妮・博格尔 | [下载](https://url89.ctfile.com/f/31084289-1357032571-eaa275?p=8866) |\n| 公主走进黑森林 | 吕旭亚 | [下载](https://url89.ctfile.com/f/31084289-1357032340-822a73?p=8866) |\n| 优秀的人都是提问高手 | 樱井弘 | [下载](https://url89.ctfile.com/f/31084289-1357032184-64c791?p=8866) |\n| 心理营养 | 林文采/伍娜 | [下载](https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866) |\n| 克莱因文集（套装共4册） | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866) |\n| 九型人格·珍藏版 | 海伦・帕尔默 | [下载](https://url89.ctfile.com/f/31084289-1357031533-f58968?p=8866) |\n| 盲点：为什么我们易被偏见左右 | 约瑟夫・哈利南 | [下载](https://url89.ctfile.com/f/31084289-1357031374-2ecc9a?p=8866) |\n| 只想和你好好生活 | 武志红等 | [下载](https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866) |\n| 墨菲定律（精装纪念版） | 张文成 | [下载](https://url89.ctfile.com/f/31084289-1357031155-58fe32?p=8866) |\n| 逆商：我们该如何应对坏事件 | 保罗・史托兹 | [下载](https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866) |\n| 认知尺度 | 魏坤琳 | [下载](https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866) |\n| 焦虑心理学：别让美好的生活被焦虑毁了 | 陈东城 | [下载](https://url89.ctfile.com/f/31084289-1357030768-ce633e?p=8866) |\n| 心理界限 | 杨嘉玲 | [下载](https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866) |\n| 心理学经典必读系列（套装共5册） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357030660-b577f2?p=8866) |\n| 道德浪女 | 朵思.伊斯頓 | [下载](https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866) |\n| 乌合之众（作家榜经典文库） | 古斯塔夫・勒庞 | [下载](https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866) |\n| 河合隼雄心理学经典 | 河合隼雄等 | [下载](https://url89.ctfile.com/f/31084289-1357030357-1b42df?p=8866) |\n| 自信表达 | 兰迪・帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357030198-77c629?p=8866) |\n| 深度影响：如何自然地赢得他人的心 | 凯伦・梁 | [下载](https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866) |\n| 书写的疗愈力量（原书第3版） | 詹姆斯・彭尼贝克 | [下载](https://url89.ctfile.com/f/31084289-1357029613-545650?p=8866) |\n| 当时忍住就好了（插图典藏版） | 肯・林德纳 | [下载](https://url89.ctfile.com/f/31084289-1357029577-e20eb2?p=8866) |\n| 如何建立好人缘 | 谢湘萍 | [下载](https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866) |\n| 幸福的勇气 | 岸见一郎/古贺史健 | [下载](https://url89.ctfile.com/f/31084289-1357029367-9f1f8a?p=8866) |\n| 高情商沟通术 | 胡慎之 | [下载](https://url89.ctfile.com/f/31084289-1357029124-a2a12a?p=8866) |\n| 亲密关系心理学 | 大卫・斯杜普/简・斯杜普 | [下载](https://url89.ctfile.com/f/31084289-1357029010-4d0922?p=8866) |\n| 我要快乐，不必正常 | 珍妮特・温特森 | [下载](https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866) |\n| 情绪 | 莉莎・费德曼・巴瑞特 | [下载](https://url89.ctfile.com/f/31084289-1357028908-566a52?p=8866) |\n| 为什么我们总是在逃避 | 约瑟夫・布尔戈 | [下载](https://url89.ctfile.com/f/31084289-1357028359-3ffd8c?p=8866) |\n| 焦虑急救 | 贝芙・艾斯贝特 | [下载](https://url89.ctfile.com/f/31084289-1357028233-5b176f?p=8866) |\n| 情绪是什么 | 乔瓦尼・弗契多 | [下载](https://url89.ctfile.com/f/31084289-1357028149-1fa93a?p=8866) |\n| 改变心理学 | 杰弗里・科特勒 | [下载](https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866) |\n| 不再害羞 | 菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357027789-fbee3f?p=8866) |\n| 阿德勒积极心理学（套装共4册） | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357027780-02be68?p=8866) |\n| 合作的复杂性 | 罗伯特・阿克塞尔罗德 | [下载](https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866) |\n| 人性的弱点（作家榜经典文库） | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866) |\n| 正能量 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357027312-ce75d5?p=8866) |\n| 秘密如何改变了我们的生活 | 朗达・拜恩 | [下载](https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866) |\n| 这不是你的错 | 马克・沃林恩 | [下载](https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866) |\n| 内在成长 | 塔玛・琼斯基 | [下载](https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866) |\n| 怪诞脑科学 | 盖瑞・马库斯 | [下载](https://url89.ctfile.com/f/31084289-1357026820-32a86b?p=8866) |\n| 婚姻心理学 | 霍妮 | [下载](https://url89.ctfile.com/f/31084289-1357026814-a0dd95?p=8866) |\n| 认知迭代 | 卡罗琳・威廉姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866) |\n| 理性之谜 | 雨果・梅西耶 | [下载](https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866) |\n| 极简思维 | S.J. Scott/Barrie Davenport | [下载](https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866) |\n| 未发现的自我 | 卡尔・古斯塔夫・荣格 | [下载](https://url89.ctfile.com/f/31084289-1357025497-5a5313?p=8866) |\n| 大势将至，未来已来 | 王鹏 | [下载](https://url89.ctfile.com/f/31084289-1357025284-f820b9?p=8866) |\n| 思辨与立场 | 理查德・保罗/琳达・埃尔 | [下载](https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866) |\n| 认知升级 | 理查德・尼斯贝特 | [下载](https://url89.ctfile.com/f/31084289-1357025041-559d0c?p=8866) |\n| 劫持 | 玛丽•K. 斯温格尔 | [下载](https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866) |\n| 我们的信任 | 布鲁斯・施奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357024999-0143fe?p=8866) |\n| 性学三论（果麦经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357024942-0c5d1b?p=8866) |\n| 催眠二十八讲 | 威廉姆・韦斯利・库克 | [下载](https://url89.ctfile.com/f/31084289-1357024915-d17460?p=8866) |\n| 不执着，叫看破 不完美，是生活 | 莫妮卡・拉米雷斯・巴斯科 | [下载](https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866) |\n| 意识光谱 | 肯・威尔伯 | [下载](https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866) |\n| 情商（全六册） | 丹尼尔・戈尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357024453-d6e5b5?p=8866) |\n| 原生家庭 | 苏珊・福沃德/克雷格・巴克 | [下载](https://url89.ctfile.com/f/31084289-1357024315-e9494b?p=8866) |\n| 活下去的理由 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866) |\n| 看人的艺术 | 山姆・高斯林 | [下载](https://url89.ctfile.com/f/31084289-1357024294-65b337?p=8866) |\n| Never Split the Difference | Chris Voss/Tahl Raz | [下载](https://url89.ctfile.com/f/31084289-1357024258-60d859?p=8866) |\n| 隐藏的人格 | 黄国胜 | [下载](https://url89.ctfile.com/f/31084289-1357024195-e4abf0?p=8866) |\n| 直觉泵和其他思考工具 |  丹尼尔・丹尼特 | [下载](https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866) |\n| 高效的秘密 | 查尔斯・都希格 | [下载](https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866) |\n| 态度改变与社会影响 | 菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357023853-1d340e?p=8866) |\n| 超意识 | 菲尔图 | [下载](https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866) |\n| 错不在我 | 卡罗尔・塔夫里斯/艾略特・阿伦森  | [下载](https://url89.ctfile.com/f/31084289-1357023679-7893fe?p=8866) |\n| 身体不说谎 | 爱丽丝・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866) |\n| 身体从未忘记 | 巴塞尔・范德考克 | [下载](https://url89.ctfile.com/f/31084289-1357023610-57fe2f?p=8866) |\n| 与原生家庭和解 | 爱丽丝・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866) |\n| 行为设计学：零成本改变 | 奇普・希思/丹・希思 | [下载](https://url89.ctfile.com/f/31084289-1357023532-18abb2?p=8866) |\n| 深度思维 | 叶修 | [下载](https://url89.ctfile.com/f/31084289-1357023460-34d28e?p=8866) |\n| 认知天性 | 彼得・布朗/亨利・勒迪格三世 | [下载](https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866) |\n| 神经的逻辑 | 埃利泽・斯滕伯格 | [下载](https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866) |\n| 内在革命：一本关于成长的书 | 芭芭拉・安吉丽思 | [下载](https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866) |\n| 恶的科学 | 西蒙・巴伦-科恩 | [下载](https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866) |\n| 注意力曲线 | 露西・乔・帕拉迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357022548-72319e?p=8866) |\n| 真实的幸福 | 马丁・塞利格曼 | [下载](https://url89.ctfile.com/f/31084289-1357022284-740f82?p=8866) |\n| 幸福的最小行动 | 刘轩 | [下载](https://url89.ctfile.com/f/31084289-1357022134-f272bd?p=8866) |\n| 人生总会有办法 : 用逆向思维解决难题 | 戴维・尼文 | [下载](https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866) |\n| 让人生停止灰暗的艺术 | 苏珊・福沃德  | [下载](https://url89.ctfile.com/f/31084289-1357021906-c19745?p=8866) |\n| 如果你再勇敢一点 | 波莉・莫兰 | [下载](https://url89.ctfile.com/f/31084289-1357021660-aab07e?p=8866) |\n| Daring Greatly | Brene Brown | [下载](https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866) |\n| 走神的艺术与科学 | 迈克尔・C.科尔巴里斯 | [下载](https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866) |\n| 默读 | Priest | [下载](https://url89.ctfile.com/f/31084289-1357021312-2cf0a1?p=8866) |\n| 性心理学 | 哈夫洛克・霭理士 | [下载](https://url89.ctfile.com/f/31084289-1357021249-41baed?p=8866) |\n| 情感勒索 | 苏珊・福沃德 | [下载](https://url89.ctfile.com/f/31084289-1357021204-0a1bfc?p=8866) |\n| 脆弱的力量 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357021078-290a71?p=8866) |\n| 情绪勒索 | 朱迪斯·P·西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357021009-58665a?p=8866) |\n| 雄性衰落 | 菲利普・津巴多/尼基塔・库隆布 | [下载](https://url89.ctfile.com/f/31084289-1357020970-224943?p=8866) |\n| 比赛中的行为经济学 | 托拜厄斯・莫斯科维茨 | [下载](https://url89.ctfile.com/f/31084289-1357020904-4868bc?p=8866) |\n| Thinking, Fast and Slow | Daniel Kahneman | [下载](https://url89.ctfile.com/f/31084289-1357020733-b4e6fa?p=8866) |\n| 人性的弱点：如何赢得友谊并影响他人 | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1357020529-00fe95?p=8866) |\n| 找到意想不到的自己 | 丛扬洋 | [下载](https://url89.ctfile.com/f/31084289-1357020430-d63e63?p=8866) |\n| 冷暴力 | 玛丽・弗朗斯・伊里戈扬 | [下载](https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866) |\n| 内向者沟通圣经 | 珍妮弗・康维勒 | [下载](https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866) |\n| 隐形人格 | 海伦・麦格拉斯/哈泽尔・爱德华兹 | [下载](https://url89.ctfile.com/f/31084289-1357020031-123343?p=8866) |\n| 20世纪最伟大的心理学实验 | 伦・斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1357019893-bcc56f?p=8866) |\n| 生命中最简单又最困难的事 | 大卫・福斯特・华莱士 | [下载](https://url89.ctfile.com/f/31084289-1357019881-0c36b8?p=8866) |\n| 不存在的人 | 阿尼尔・阿南塔斯瓦米 | [下载](https://url89.ctfile.com/f/31084289-1357019830-4d406a?p=8866) |\n| 洞察：精确观察和有效沟通的艺术 | 艾米・赫曼 | [下载](https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866) |\n| 欲罢不能：刷屏时代如何摆脱行为上瘾 | 亚当・阿尔特 | [下载](https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866) |\n| 诊疗椅上的谎言 | 欧文・亚隆 | [下载](https://url89.ctfile.com/f/31084289-1357019815-2a3900?p=8866) |\n| 杠杆说服力 | 凯文・霍根 | [下载](https://url89.ctfile.com/f/31084289-1357019623-c2c1a7?p=8866) |\n| 如何活出生命的意义 | 杰西・贝林 | [下载](https://url89.ctfile.com/f/31084289-1357019359-395102?p=8866) |\n| 感谢那些让你不开心的事儿 | 索尼娅・瑞克蒂 | [下载](https://url89.ctfile.com/f/31084289-1357019236-6bd523?p=8866) |\n| 奇迹课程 | 海伦・舒曼 | [下载](https://url89.ctfile.com/f/31084289-1357019197-f582a7?p=8866) |\n| 披着羊皮的狼 | 乔治.K.西蒙 | [下载](https://url89.ctfile.com/f/31084289-1357018948-a7cfe4?p=8866) |\n| 压榨式提问 | 布莱恩・格雷泽/查尔斯・菲什曼 | [下载](https://url89.ctfile.com/f/31084289-1357018912-d6e59c?p=8866) |\n| 异类的天赋 | 凯文・达顿 | [下载](https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866) |\n| Furiously Happy | Jenny Lawson | [下载](https://url89.ctfile.com/f/31084289-1357018477-7d1e06?p=8866) |\n| 知识的错觉 | 史蒂文・斯洛曼/菲利普・费恩巴赫 | [下载](https://url89.ctfile.com/f/31084289-1357018315-259ab2?p=8866) |\n| 重塑幸福：如何活成你想要的模样 | 马克・曼森 | [下载](https://url89.ctfile.com/f/31084289-1357018303-5054fe?p=8866) |\n| 心理韧性的力量 | 道格・亨施 | [下载](https://url89.ctfile.com/f/31084289-1357018291-0b8a09?p=8866) |\n| 心流 | 米哈里・契克森米哈赖 | [下载](https://url89.ctfile.com/f/31084289-1357018141-dde7a1?p=8866) |\n| 发现心流 | 米哈里・契克森米哈赖 | [下载](https://url89.ctfile.com/f/31084289-1357018129-01fd31?p=8866) |\n| 说服：像讲故事一样讲道理 | 尼克・克里 | [下载](https://url89.ctfile.com/f/31084289-1357017778-78f09d?p=8866) |\n| 大脑使用指南 | 赵思家 | [下载](https://url89.ctfile.com/f/31084289-1357017454-809589?p=8866) |\n| 再也不怕跟人打交道 | 莉尔・朗兹 | [下载](https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866) |\n| 自卑与超越（经典完整译本） | 阿弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357017193-116343?p=8866) |\n| 反本能 | 卫蓝 | [下载](https://url89.ctfile.com/f/31084289-1357017163-f4def7?p=8866) |\n| 好人为什么会作恶 | 托马斯・布拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357016959-db3d20?p=8866) |\n| 学会提问（第十版） | 尼尔・布朗/斯图尔特・基利 | [下载](https://url89.ctfile.com/f/31084289-1357016674-f06b5d?p=8866) |\n| 道金斯科学经典系列（套装共三册） | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357016665-7167df?p=8866) |\n| 读心神探：FBI心理侧写术 | 约翰・道格拉斯/马克・奥尔谢克 | [下载](https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866) |\n| 设计心理学（全四册） | 唐纳德・A・诺曼 | [下载](https://url89.ctfile.com/f/31084289-1357016626-0875e7?p=8866) |\n| 你就要很独特 | 西蒙・布莱克本 | [下载](https://url89.ctfile.com/f/31084289-1357016554-bec7cf?p=8866) |\n| 逆转 | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1357016524-460c47?p=8866) |\n| 行为心理学 | 约翰・华生 | [下载](https://url89.ctfile.com/f/31084289-1357016383-2e302b?p=8866) |\n| 迷恋：如何制造持久的吸引力 | 莎莉・霍格斯黑德 | [下载](https://url89.ctfile.com/f/31084289-1357016335-64929d?p=8866) |\n| 内向者优势 | Marti Olsen Laney | [下载](https://url89.ctfile.com/f/31084289-1357016314-c5509f?p=8866) |\n| 为什么我们会上瘾 | 迈克尔・库赫 | [下载](https://url89.ctfile.com/f/31084289-1357016179-c81d0e?p=8866) |\n| 迈尔斯直觉心理学 | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357016014-26ab45?p=8866) |\n| 另一种选择 | 谢丽尔・桑德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357016002-2ef252?p=8866) |\n| 不成熟的父母 | 琳赛・吉布森 | [下载](https://url89.ctfile.com/f/31084289-1357015978-19b735?p=8866) |\n| 可爱的诅咒 | 雅基・马森 | [下载](https://url89.ctfile.com/f/31084289-1357015768-fe4a62?p=8866) |\n| 理性的非理性 | 郑毓煌/苏丹 | [下载](https://url89.ctfile.com/f/31084289-1357015717-410de3?p=8866) |\n| 世界哲学史 | 汉斯・约阿西姆・施杜里希 | [下载](https://url89.ctfile.com/f/31084289-1357015684-127350?p=8866) |\n| 反焦虑思维 | 罗尔・克肖/ 比尔・韦德 | [下载](https://url89.ctfile.com/f/31084289-1357015648-08a46e?p=8866) |\n| 读自己心理阅读书系（第1辑） | 卡伦・霍妮等 | [下载](https://url89.ctfile.com/f/31084289-1357015639-644be4?p=8866) |\n| 你唯一的缺点就是太完美了 | 马丁・安东尼/理查德・斯文森 | [下载](https://url89.ctfile.com/f/31084289-1357015636-84f772?p=8866) |\n| 决策与理性 | 基思・斯坦诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1357015546-5d6351?p=8866) |\n| 绝非天赋 | 斯科特・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357015531-e896f7?p=8866) |\n| 看不见的影响力 | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357015537-02d9e0?p=8866) |\n| 连接感 | 卡洛琳・戴奇 | [下载](https://url89.ctfile.com/f/31084289-1357015516-ce0614?p=8866) |\n| 细节：如何轻松影响他人 | 罗伯特・西奥迪尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866) |\n| 看不见的大猩猩 | 克里斯托弗・查布利斯等 | [下载](https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866) |\n| 内在的重生 | 吉杜・克里希那穆提  | [下载](https://url89.ctfile.com/f/31084289-1357015477-39ea6d?p=8866) |\n| 社交天性 | 马修・利伯曼 | [下载](https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866) |\n| 怪诞关系学 | 亚当・加林斯基/马利斯・施韦泽 | [下载](https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866) |\n| 我们为什么被霸凌？ | 陈岚 | [下载](https://url89.ctfile.com/f/31084289-1357015261-36ff57?p=8866) |\n| 坚毅 | 安杰拉・达克沃思 | [下载](https://url89.ctfile.com/f/31084289-1357015231-e2dc65?p=8866) |\n| 内心平静，才能快速行动 | 碧姬・德吕蒂 | [下载](https://url89.ctfile.com/f/31084289-1357015150-d48231?p=8866) |\n| 红书 | 荣格 | [下载](https://url89.ctfile.com/f/31084289-1357015039-8a6091?p=8866) |\n| 改变带来医治 | 亨利・克劳德 | [下载](https://url89.ctfile.com/f/31084289-1357014841-214fcc?p=8866) |\n| 改变心理学的40项研究（第7版） | 罗杰・R・霍克博士 | [下载](https://url89.ctfile.com/f/31084289-1357014838-650722?p=8866) |\n| 跟乐嘉学性格色彩 | 乐嘉 | [下载](https://url89.ctfile.com/f/31084289-1357014859-334205?p=8866) |\n| 社会动物 | 戴维・布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357014367-2e013a?p=8866) |\n| 强势谈判心理学 | 朱建国 | [下载](https://url89.ctfile.com/f/31084289-1357014361-f635fc?p=8866) |\n| 拆掉思维里的墙 | 古典 | [下载](https://url89.ctfile.com/f/31084289-1357014028-901478?p=8866) |\n| 重塑自我：如何成为一个很幸福的人 | 尼尔・帕斯理查 | [下载](https://url89.ctfile.com/f/31084289-1357013746-1a8179?p=8866) |\n| Stealing Fire | Steven Kotler / Jamie Wheal  | [下载](https://url89.ctfile.com/f/31084289-1357013662-bcb2e6?p=8866) |\n| 不完美，才美 | 海蓝博士 | [下载](https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866) |\n| 不完美，才美II | 海蓝博士  | [下载](https://url89.ctfile.com/f/31084289-1357013653-c8d28d?p=8866) |\n| 爱到绝处便逢生 | 卢悦 | [下载](https://url89.ctfile.com/f/31084289-1357013566-43e5ee?p=8866) |\n| 爱是一切的答案 | 芭芭拉・安吉丽思 | [下载](https://url89.ctfile.com/f/31084289-1357013560-d25c4d?p=8866) |\n| 非暴力沟通 | 马歇尔・卢森堡 | [下载](https://url89.ctfile.com/f/31084289-1357013548-f663a8?p=8866) |\n| 迈尔斯社会心理学套装（第8版共4册） | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357013611-f376ca?p=8866) |\n| 绝非偶然 | 埃利奥特・阿伦森 | [下载](https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866) |\n| 自信力：成为最好的自己 | 罗布・杨 | [下载](https://url89.ctfile.com/f/31084289-1357012822-5aa98f?p=8866) |\n| 先发影响力 | 罗伯特・西奥迪尼 | [下载](https://url89.ctfile.com/f/31084289-1357012780-a20378?p=8866) |\n| 野兽绅士 | 巫家民 | [下载](https://url89.ctfile.com/f/31084289-1357012660-d06b04?p=8866) |\n| 弗兰克尔自传：活出生命的意义 | 维克多・弗兰克尔 | [下载](https://url89.ctfile.com/f/31084289-1357012507-1ce2f9?p=8866) |\n| 如何学习 | 本尼迪克特・凯里  | [下载](https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866) |\n| 不抱怨的世界套装（共2册） | 威尔・鲍温 | [下载](https://url89.ctfile.com/f/31084289-1357011442-839945?p=8866) |\n| 荣格自传：回忆・梦・思考 | 卡尔・古斯塔夫・荣格 | [下载](https://url89.ctfile.com/f/31084289-1357011127-2e5b54?p=8866) |\n| 如果没有今天，明天会不会有昨天？ | 伊夫・博萨尔特 | [下载](https://url89.ctfile.com/f/31084289-1357010665-9c2c9a?p=8866) |\n| 道德动物 | 罗伯特・赖特 | [下载](https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866) |\n| 习惯的力量（图文精编版） | 查尔斯・都希格 | [下载](https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866) |\n| 当下的力量（珍藏版） | 埃克哈特・托利 | [下载](https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866) |\n| 小心，无良是一种病 | 玛莎・斯托特 | [下载](https://url89.ctfile.com/f/31084289-1357010494-d80680?p=8866) |\n| 共情力 | 亚瑟・乔拉米卡利 | [下载](https://url89.ctfile.com/f/31084289-1357010311-5eb039?p=8866) |\n| 弗洛伊德经典作品集 | 弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357010278-e9d59e?p=8866) |\n| 爱的艺术 | 艾里希・弗洛姆 | [下载](https://url89.ctfile.com/f/31084289-1357010122-1f898c?p=8866) |\n| 白板 | 史蒂芬・平克  | [下载](https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866) |\n| 思想本质 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866) |\n| 语言本能 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866) |\n| 心智探奇 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866) |\n| 超越智商 | 基思・斯坦诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866) |\n| 潜意识：控制你行为的秘密 | 列纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357009711-44b0d1?p=8866) |\n| 象与骑象人：幸福的假设 | 乔纳森・海特 | [下载](https://url89.ctfile.com/f/31084289-1357009654-67ea14?p=8866) |\n| 男人来自火星，女人来自金星（套装共4册） | 约翰・格雷 | [下载](https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866) |\n| 不诚实的诚实真相 | 丹・艾瑞里 | [下载](https://url89.ctfile.com/f/31084289-1357009519-879ad6?p=8866) |\n| 害羞心理学 | 菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357009510-378800?p=8866) |\n| 分心也有好婚姻 | 爱德华・哈洛韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866) |\n| 梦的解析 | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357009282-2232c8?p=8866) |\n| 谁动了我的奶酪 | 斯宾塞・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357009150-f75f96?p=8866) |\n| 明智行动的艺术 | 罗尔夫・多贝里 | [下载](https://url89.ctfile.com/f/31084289-1357009012-b48f59?p=8866) |\n| 冥想5分钟，等于熟睡一小时 | 里克・汉森/理查德・蒙迪思 | [下载](https://url89.ctfile.com/f/31084289-1357008994-681a13?p=8866) |\n| 魔鬼搭讪学 | 魔鬼咨询师 | [下载](https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866) |\n| 魔鬼约会学 | 魔鬼咨询师 | [下载](https://url89.ctfile.com/f/31084289-1357008952-8a6737?p=8866) |\n| 朗达・拜恩作品集（全五册） | 朗达・拜恩 | [下载](https://url89.ctfile.com/f/31084289-1357008868-6c5f07?p=8866) |\n| 格拉德威尔经典系列（套装共5册） | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1357008817-5267fc?p=8866) |\n| 当尼采哭泣 | 欧文・亚隆 | [下载](https://url89.ctfile.com/f/31084289-1357008346-a7d90b?p=8866) |\n| 天生变态狂 | 詹姆斯・法隆 | [下载](https://url89.ctfile.com/f/31084289-1357008187-852b5b?p=8866) |\n| 疯狂成瘾者 | 马克・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357008163-e5e6c5?p=8866) |\n| 别和她说话 | 遇瑾 | [下载](https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866) |\n| 张德芬身心灵四部曲（套装共4册） | 张德芬 | [下载](https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866) |\n| 塞利格曼幸福五部曲 | 马丁・塞利格曼 | [下载](https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866) |\n| 24重人格（十周年纪念版） | 卡梅伦・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357007740-d16ede?p=8866) |\n| 像疯子一样思考，像天才一样行动 | 凯文・达顿/安迪・麦克纳布 | [下载](https://url89.ctfile.com/f/31084289-1357007617-83ecfb?p=8866) |\n| 冷读术（白金珍藏版） | 石真语 | [下载](https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866) |\n| 巨婴国 | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866) |\n| 双脑记：认知神经科学之父加扎尼加自传 | 迈克尔・加扎尼加 | [下载](https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866) |\n| 影响力 | 罗伯特・西奥迪尼 | [下载](https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866) |\n| 石头剪刀布博弈心理学 | 木瓜制造 | [下载](https://url89.ctfile.com/f/31084289-1357007338-0946f5?p=8866) |\n| 猎鲨游戏之十重人格女孩 | 王健霖 | [下载](https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866) |\n| 心理罪（套装共5册） | 雷米 | [下载](https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866) |\n| 乌合之众：大众心理研究（修订版） | 古斯塔夫·勒庞  | [下载](https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866) |\n| 钓愚：操纵与欺骗的经济学 | 乔治·阿克洛夫/罗伯特·席勒 | [下载](https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866) |\n| TED竞争心理学 | 玛格丽特·赫夫南 | [下载](https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866) |\n| 社会性动物 | Elliot Aronson | [下载](https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866) |\n| 生命的重建 | 露易丝·海 | [下载](https://url89.ctfile.com/f/31084289-1357006651-f91ce6?p=8866) |\n| 完整的成长：儿童生命的自我创造 | 孙瑞雪 | [下载](https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866) |\n| 爱和自由：孙瑞雪幼儿教育演讲录 | 孙瑞雪 | [下载](https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866) |\n| 反脆弱：从不确定性中获益 | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866) |\n"
  },
  {
    "path": "md/心理学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 心理学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西方心理学大师经典译丛（套装共11册） | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1375497529-0e8c3b?p=8866) |\n| 人人都该懂的脑科学 | 阿马尔・阿尔查拉比等 | [下载](https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866) |\n| 克尔凯郭尔文集10册大全集 | 索伦・克尔凯郭尔 | [下载](https://url89.ctfile.com/f/31084289-1375502005-543a3e?p=8866) |\n| 警惕你身边的隐形攻击者 | 斯科特・韦茨勒 | [下载](https://url89.ctfile.com/f/31084289-1375511743-14d32a?p=8866) |\n| 星际漫游 | 安东尼诺・费罗/卢卡・尼科里 | [下载](https://url89.ctfile.com/f/31084289-1375512055-d87567?p=8866) |\n| 了解人类行为的50个心理学实验 | 迈克尔・布里特 | [下载](https://url89.ctfile.com/f/31084289-1375512133-fafea6?p=8866) |\n| 追寻记忆的痕迹 | 埃里克・坎德尔 | [下载](https://url89.ctfile.com/f/31084289-1375513372-90244d?p=8866) |\n| 心理学和炼金术 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356997351-cfc659?p=8866) |\n| 哲学树 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356996457-a27c1e?p=8866) |\n| 移情心理学 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995587-b19864?p=8866) |\n| 炼金术之梦 | C.G.荣格 | [下载](https://url89.ctfile.com/f/31084289-1356995434-33f660?p=8866) |\n| 重口味心理学：我们内心的小怪兽 | 姚尧 | [下载](https://url89.ctfile.com/f/31084289-1356982495-f2c164?p=8866) |\n| 心理学与情商 | 张小宁 | [下载](https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866) |\n| 间谍心理战 | 金圣荣 | [下载](https://url89.ctfile.com/f/31084289-1357051054-2aab9d?p=8866) |\n| 发展心理学套装（第10版） | 戴安娜・帕帕拉 | [下载](https://url89.ctfile.com/f/31084289-1357050526-22b5f0?p=8866) |\n| 错觉心理学 | 博・洛托 | [下载](https://url89.ctfile.com/f/31084289-1357046674-506c48?p=8866) |\n| 挫折复原力 | 丹尼斯・穆蓝纳 | [下载](https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866) |\n| 简捷启发式：有限理性让我们更聪明 | 格尔德・吉仁泽等 | [下载](https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866) |\n| 刻意观察 | 朱建国 | [下载](https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866) |\n| 积极计算 | 拉斐尔·A.卡里罗等 | [下载](https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866) |\n| 助推（实践版） | 戴维・哈尔彭 | [下载](https://url89.ctfile.com/f/31084289-1357043941-cd894d?p=8866) |\n| 你也是蘑菇吗 | 安定医院郝医生 | [下载](https://url89.ctfile.com/f/31084289-1357043701-0683a6?p=8866) |\n| 潜意识与决策 | 克里斯・佩利 | [下载](https://url89.ctfile.com/f/31084289-1357043596-28e35d?p=8866) |\n| 自我与本我（译文经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866) |\n| 爱、罪疚与修复 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037749-b31208?p=8866) |\n| 儿童精神分析 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037638-0eb9b3?p=8866) |\n| 弥散的心智 | 里卡多・曼佐蒂 | [下载](https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866) |\n| 圣母病 | 侯虹斌 | [下载](https://url89.ctfile.com/f/31084289-1357036471-8907eb?p=8866) |\n| Everything Is F*cked | Mark Manson | [下载](https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866) |\n| 掌控谈话 | 克里斯・沃斯 | [下载](https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866) |\n| 不分心 | 亚历克斯・索勇－金・庞 | [下载](https://url89.ctfile.com/f/31084289-1357033558-d65235?p=8866) |\n| 天才在左，疯子在右 | 高铭 | [下载](https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866) |\n| 超强掌控 | 乔・纳瓦罗 | [下载](https://url89.ctfile.com/f/31084289-1357033123-432c00?p=8866) |\n| 在群中 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357033090-248e22?p=8866) |\n| 心智 | 约翰・布罗克曼  | [下载](https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866) |\n| 解放你的大脑 | 伊德里斯・阿贝尔坎 | [下载](https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866) |\n| 消极情绪的力量 | 托德・卡什丹 | [下载](https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866) |\n| 想象思维 | 帕甘・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866) |\n| 领袖：一项心理史学研究 | 查尔斯・B．斯特罗齐尔/丹尼尔・奥弗 | [下载](https://url89.ctfile.com/f/31084289-1357022950-84a87d?p=8866) |\n| 夜脑：在睡眠中自动学习的秘密 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866) |\n| 看见成长的自己 | 卡罗尔・徳韦克 | [下载](https://url89.ctfile.com/f/31084289-1357014046-66564e?p=8866) |\n| 清醒思考的艺术 | 罗尔夫・多贝里 | [下载](https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866) |\n| 棉花糖实验 | 沃尔特・米歇尔 | [下载](https://url89.ctfile.com/f/31084289-1357009000-8191ee?p=8866) |\n| P.E.T.父母效能训练 | 托马斯・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866) |\n| 沟通的艺术 | 罗纳德・阿德勒/拉塞尔・普罗克特  | [下载](https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866) |\n| 魔力四射：如何打动、亲近和影响他人 | 帕特里克・金 | [下载](https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866) |\n| 稀缺：我们是如何陷入贫穷与忙碌的 | 塞德希尔・穆来纳森 / 埃尔德・沙菲尔  | [下载](https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866) |\n| 摆谱：身份的潜规则 | 余不讳 | [下载](https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866) |\n| 思考，快与慢 | 丹尼尔・卡尼曼 | [下载](https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866) |\n| 跟任何人都聊得来 | 迈克・贝克特尔 | [下载](https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866) |\n| 一眼看懂小孩子 | 王勇 | [下载](https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866) |\n| 非理性繁荣（第二版） | 罗伯特·希勒 | [下载](https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866) |\n| 厚黑学大全集 | 李宗吾 | [下载](https://url89.ctfile.com/f/31084289-1357005253-80c12a?p=8866) |\n"
  },
  {
    "path": "md/志怪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 志怪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 说魂儿（修订版） | 栾保群 | [下载](https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866) |\n| 唐朝诡事录3：大结局 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357022287-27301b?p=8866) |\n"
  },
  {
    "path": "md/快递.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 快递\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 无处不在 | 中国邮政快递报社 | [下载](https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866) |\n| 中国快递桐庐帮 | 孙侃 | [下载](https://url89.ctfile.com/f/31084289-1357011220-4eeecf?p=8866) |\n"
  },
  {
    "path": "md/思想.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 思想\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西方现代思想家精品译丛（18卷） | 哈耶克等 | [下载](https://url89.ctfile.com/f/31084289-1375498924-4e23e7?p=8866) |\n| 思想家和思想导读丛书精选（套装共5册） | 雷克斯・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866) |\n| 解剖无聊 | 马克・金维尔 | [下载](https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866) |\n| 论自由（果麦经典） | 约翰・穆勒 | [下载](https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866) |\n| 历史的用途与滥用 | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866) |\n| 魔术师时代 | 沃尔夫拉姆・艾伦伯格 | [下载](https://url89.ctfile.com/f/31084289-1357003984-f36531?p=8866) |\n| 哲思与海 | 戴维・法雷尔・克雷尔 | [下载](https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866) |\n| 没有思想的世界 | 富兰克林・福尔 | [下载](https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866) |\n| 制造儒家 | 詹启华 | [下载](https://url89.ctfile.com/f/31084289-1356992017-ecbdd9?p=8866) |\n| 伟大的思想（中英双语版·全48册） | 马可・波罗等 | [下载](https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866) |\n| 魏晋玄学史（第二版） | 余敦康 | [下载](https://url89.ctfile.com/f/31084289-1357053457-236d4c?p=8866) |\n| 批判理论（牛津通识读本） | 斯蒂芬・埃里克・布朗纳 | [下载](https://url89.ctfile.com/f/31084289-1357053451-652219?p=8866) |\n| 论语今读（增订版） | 李泽厚 | [下载](https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866) |\n| 哲学是怎样炼成的 | 蒂莫西・威廉森 | [下载](https://url89.ctfile.com/f/31084289-1357049896-5522e8?p=8866) |\n| 论人类的认识（校勘全译本） | 约翰・洛克 | [下载](https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866) |\n| 哲学的迷途 | 莫提默・艾德勒 | [下载](https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866) |\n| 超越哈佛 | 马克·H.麦考梅克 | [下载](https://url89.ctfile.com/f/31084289-1357046038-9c7a11?p=8866) |\n| 20世纪思想史：从弗洛伊德到互联网 | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1357045150-6d60c2?p=8866) |\n| 叛逆的思想家 | 皮耶尔乔治・奥迪弗雷迪 | [下载](https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866) |\n| 文化与人生 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866) |\n| 西方政治思想的社会史：自由与财产 | 艾伦・梅克辛斯・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866) |\n| 人人都该懂的启蒙运动 | 吉隆・・奥哈拉 | [下载](https://url89.ctfile.com/f/31084289-1357035586-f7765e?p=8866) |\n| 壶里春秋 | 朱维铮 | [下载](https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第六辑） | 乔治・艾略特等 | [下载](https://url89.ctfile.com/f/31084289-1357032781-ada2e7?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第三辑） | 爱德华・吉本等 | [下载](https://url89.ctfile.com/f/31084289-1357032616-894226?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第一辑） | 亨利・戴维・梭罗等 | [下载](https://url89.ctfile.com/f/31084289-1357032496-a4b82d?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第二辑） | 米歇尔・德・蒙田等 | [下载](https://url89.ctfile.com/f/31084289-1357032466-45f355?p=8866) |\n| 哲学的故事 | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357030186-7ef3cf?p=8866) |\n| 论自由（理想国新版） | 约翰・穆勒 | [下载](https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866) |\n| 资本论（套装共3册） | 中共中央马克思恩格斯列宁斯大林著作编译局 | [下载](https://url89.ctfile.com/f/31084289-1357029451-0ebaad?p=8866) |\n| 当下的启蒙 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357027996-39914b?p=8866) |\n| 小宣言 | 马格努斯・林奎斯特 | [下载](https://url89.ctfile.com/f/31084289-1357027162-16e6c5?p=8866) |\n| 世界哲学简史 | 罗伯特·C·所罗门等 | [下载](https://url89.ctfile.com/f/31084289-1357026994-8f39ae?p=8866) |\n| 《人权宣言》在晚清中国的旅行 | 程梦婧 | [下载](https://url89.ctfile.com/f/31084289-1357019650-a84eeb?p=8866) |\n| 思想史：从火到弗洛伊德（全二册） | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1357019596-c4b02d?p=8866) |\n| 思想的力量 | 布鲁克・诺埃尔・穆尔/肯尼思・布鲁德 | [下载](https://url89.ctfile.com/f/31084289-1357019563-28ba63?p=8866) |\n| 存在主义咖啡馆 | 莎拉・贝克韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357019089-4e2eda?p=8866) |\n| 西方政治传统：近代自由主义之发展 | 弗雷德里克・沃特金斯 | [下载](https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866) |\n| 正义：一场思辨之旅 | 迈可・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357012036-0c58f8?p=8866) |\n| 论政治（上卷） | 阿兰・瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866) |\n| 论政治（下卷） | 阿兰・瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866) |\n| 思想本质 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866) |\n| 从西天到中土 | 西天中土项目组 | [下载](https://url89.ctfile.com/f/31084289-1357009537-0eef2e?p=8866) |\n| 顾准文集 | 顾准 | [下载](https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866) |\n| 阿Q生命中的六个瞬间 | 汪晖 | [下载](https://url89.ctfile.com/f/31084289-1357008061-a92e4b?p=8866) |\n| 理想丰满 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866) |\n| 法国知识分子史 | 吕一民/朱晓罕 | [下载](https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866) |\n"
  },
  {
    "path": "md/思想史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 思想史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 概念与范畴 | 以赛亚・伯林爵士 | [下载](https://url89.ctfile.com/f/31084289-1356989650-26d77f?p=8866) |\n| 观念的力量 | 以赛亚・伯林爵士 | [下载](https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866) |\n| 神文时代 | 孙英刚 | [下载](https://url89.ctfile.com/f/31084289-1356985255-8c1141?p=8866) |\n| 呻吟语（全本全注全译） | 吕坤 | [下载](https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866) |\n| 天才为何成群地来 | 王汎森 | [下载](https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866) |\n| 爱默生和中国 | 钱满素 | [下载](https://url89.ctfile.com/f/31084289-1357048462-5cb91a?p=8866) |\n| 五十年来的中国哲学 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044184-1eb4a5?p=8866) |\n| 结构主义 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357037434-aff26f?p=8866) |\n| 西方政治思想的社会史：公民到领主 | 艾伦・梅克辛斯・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866) |\n| 打开：周濂的100堂西方哲学课 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866) |\n| 隐公元年 | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357030429-4057fa?p=8866) |\n"
  },
  {
    "path": "md/思维.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 思维\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 认知工具 | 塞西莉亚・海耶斯 | [下载](https://url89.ctfile.com/f/31084289-1375491715-7dc597?p=8866) |\n| 拆掉思维里的墙（白金升级版） | 古典 | [下载](https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866) |\n| 人生不必太用力 | 埃克哈特・托利 | [下载](https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866) |\n| 鹿智者的法则 | 丹・米尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866) |\n| 批判性思维与说服性写作 | 路易丝・卡茨 | [下载](https://url89.ctfile.com/f/31084289-1375501387-c9409e?p=8866) |\n| 大脑的一天·鹈鹕丛书 | 苏珊・格林菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1375501504-478cce?p=8866) |\n| 九宫格写作法 | 山口拓朗 | [下载](https://url89.ctfile.com/f/31084289-1375508920-0056c2?p=8866) |\n| 我是谁：心理学实证研究社会思维 | 戴维・迈尔斯/琼・特韦奇 | [下载](https://url89.ctfile.com/f/31084289-1375509499-e67aab?p=8866) |\n| 深度影响 | 崔璀 | [下载](https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866) |\n| 五维思考法 | 爱德华・伯格/迈克尔・斯塔伯德 | [下载](https://url89.ctfile.com/f/31084289-1375510294-3b55d2?p=8866) |\n| 给职场人的5堂逻辑思考课 | 深泽真太郎 | [下载](https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866) |\n| 创新者的世界 | 许奔 | [下载](https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866) |\n| 大产品思维 | 王雷 | [下载](https://url89.ctfile.com/f/31084289-1375510744-427a69?p=8866) |\n| 放空 | 曼诺诗・左莫若迪 | [下载](https://url89.ctfile.com/f/31084289-1375511116-f9cceb?p=8866) |\n| 交谈的要素 | N.J.恩菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1375511476-4db402?p=8866) |\n| 鞋狗（青少版） | 菲尔・奈特 | [下载](https://url89.ctfile.com/f/31084289-1375511956-44780a?p=8866) |\n| 逆商2 | 保罗·G.史托兹 | [下载](https://url89.ctfile.com/f/31084289-1375511989-b7bf29?p=8866) |\n| 有钱人和你想的不一样 | 哈维・艾克 | [下载](https://url89.ctfile.com/f/31084289-1375512172-8e2586?p=8866) |\n| 费曼学习法 | 尹红心/李伟 | [下载](https://url89.ctfile.com/f/31084289-1375512211-79ec46?p=8866) |\n| 远见：一本故事丰富的决策行为指南 | 史蒂文・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866) |\n| 智慧大脑 | 艾克纳恩・戈德堡 | [下载](https://url89.ctfile.com/f/31084289-1375513534-db2475?p=8866) |\n| 简明哲学逻辑思维读本（套装共5册） | 威廉姆・韦斯利・库克等 | [下载](https://url89.ctfile.com/f/31084289-1375513669-9bcbcb?p=8866) |\n| 责任病毒 | 罗杰・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866) |\n| 日常生活中的发明原理 | 高木芳德 | [下载](https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866) |\n| 如果人类是整个宇宙的大脑 | 丹・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357003759-1d9daf?p=8866) |\n| 慢思考 | 特奥・康普诺利 | [下载](https://url89.ctfile.com/f/31084289-1357003558-4cb404?p=8866) |\n| 穿透：像社会学家一样思考 | 严飞 | [下载](https://url89.ctfile.com/f/31084289-1357002463-b7f860?p=8866) |\n| 结构化写作 | 李忠秋 | [下载](https://url89.ctfile.com/f/31084289-1357001017-74cf23?p=8866) |\n| 波斯公主选驸马 | 帕维尔・莫托 | [下载](https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866) |\n| 记忆宫殿 | 石伟华 | [下载](https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866) |\n| 闭环思维 | 智俊启 | [下载](https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866) |\n| 2轴思维 | 木部智之 | [下载](https://url89.ctfile.com/f/31084289-1356999532-427444?p=8866) |\n| 别想那只大象 | 乔治・莱考夫 | [下载](https://url89.ctfile.com/f/31084289-1356999469-0222ec?p=8866) |\n| 大器晚成 | 里奇・卡尔加德 | [下载](https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866) |\n| 人人都该懂的批判性思维 | 莎伦・M. 凯 | [下载](https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866) |\n| 人人都该懂的互联网思维 | 伯纳多・A. 胡伯曼 | [下载](https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866) |\n| 超级个体 | 徐大维 | [下载](https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866) |\n| 图形思考 | 樱田润 | [下载](https://url89.ctfile.com/f/31084289-1356997600-d2665d?p=8866) |\n| 认知红利 | 谢春霖 | [下载](https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866) |\n| 如何不切实际地解决实际问题 | 兰道尔・门罗 | [下载](https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866) |\n| 高效迭代 | 冯起升 | [下载](https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866) |\n| 颠覆式学习 | 周林文 | [下载](https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866) |\n| 超级大脑的七个习惯 | 菅原道仁 | [下载](https://url89.ctfile.com/f/31084289-1356995182-38b399?p=8866) |\n| 如何讲好一个故事 | 默里・诺塞尔 | [下载](https://url89.ctfile.com/f/31084289-1356995053-9ef98f?p=8866) |\n| 你以为你以为的就是你以为的吗？ | 朱利安・巴吉尼/杰里米・斯唐鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866) |\n| 你以为你以为的就是你以为的吗？2 | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866) |\n| 好好思考 | 成甲 | [下载](https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866) |\n| 如何形成清晰的观点 | 查尔斯·S.皮尔士 | [下载](https://url89.ctfile.com/f/31084289-1356994546-caefb5?p=8866) |\n| 如何启动黄金圈思维 | 西蒙・斯涅克/戴维・米德/彼得・多克尔 | [下载](https://url89.ctfile.com/f/31084289-1356992221-a4d256?p=8866) |\n| 反直觉 | 理查德・肖顿 | [下载](https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866) |\n| 直面不确定性 | 大辉 | [下载](https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866) |\n| 幽默感 | 李新 | [下载](https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866) |\n| 允许被说服 | 艾尔・比坦帕里 | [下载](https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866) |\n| 知中11·宇宙之道，就在围棋 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866) |\n| 学会决断（原书第2版） | 苏・哈德菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1356990277-5e830c?p=8866) |\n| 跨界竞争 | 王小圈 | [下载](https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866) |\n| 思维魔方 | 陈波 | [下载](https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866) |\n| 思维导图攻略 | 王健文 | [下载](https://url89.ctfile.com/f/31084289-1356989971-4deec9?p=8866) |\n| 为什么精英这样用脑不会累 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866) |\n| 征服 | 邝大卫 | [下载](https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866) |\n| 思维的本质 | 约翰・杜威 | [下载](https://url89.ctfile.com/f/31084289-1356987280-13909c?p=8866) |\n| 思维：关于决策、问题解决与预测的新科学 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1356987145-752493?p=8866) |\n| 思维的方式 | 阿尔弗雷德・诺思・怀特海 | [下载](https://url89.ctfile.com/f/31084289-1356987088-319fee?p=8866) |\n| 思维导图完整手册 | 东尼・博赞 | [下载](https://url89.ctfile.com/f/31084289-1356987073-f54ce6?p=8866) |\n| 是谁出的题这么难，到处都是正确答案 | 邱天 | [下载](https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866) |\n| 水平思考法 | 保罗・斯隆 | [下载](https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866) |\n| 非对称风险 | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866) |\n| 智慧与魔咒 | 塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1356986932-78c3c8?p=8866) |\n| 思考的艺术（原书第11版） | 文森特・赖安・拉吉罗 | [下载](https://url89.ctfile.com/f/31084289-1356986845-3183cd?p=8866) |\n| 突破天性 | 布赖恩・利特尔 | [下载](https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866) |\n| 图形思考与表达的20堂课 | 久恒启一 | [下载](https://url89.ctfile.com/f/31084289-1356986260-447d1a?p=8866) |\n| 水平思考 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1356985939-5f27b0?p=8866) |\n| 为什么精英都是动机控 | 池田贵将 | [下载](https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866) |\n| 实用性思考的艺术 | 小理查德・威尔 | [下载](https://url89.ctfile.com/f/31084289-1356985549-b0053e?p=8866) |\n| 当我们阅读时，我们看到了什么 | 彼得・门德尔桑德 | [下载](https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866) |\n| 魏斯曼的演讲大师课2：答的艺术 | 杰瑞・魏斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356985396-3ff85c?p=8866) |\n| 魏斯曼的演讲大师课1：说的艺术 | 杰瑞・魏斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356985207-998a83?p=8866) |\n| 能力清单 | 吉恩・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866) |\n| 高效能人士的七个习惯（30周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866) |\n| 人生新算法 | 矢野和男 | [下载](https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866) |\n| 如何用数据解决实际问题 | 柏木吉基 | [下载](https://url89.ctfile.com/f/31084289-1356984538-3d33ff?p=8866) |\n| 商务思维工具箱系列（套装共3册） | HRInstitute | [下载](https://url89.ctfile.com/f/31084289-1356984514-700431?p=8866) |\n| 新情商 | 丹尼尔・戈尔曼 | [下载](https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866) |\n| 人类思维的自然史 | 迈克尔・托马塞洛 | [下载](https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866) |\n| 政治动物 | 里克・申克曼 | [下载](https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866) |\n| 真相与错觉 | 塔莎・欧里希 | [下载](https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866) |\n| 寻找爽点 | 大卫・林登 | [下载](https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866) |\n| 心理学统治世界（全三册） | 古斯塔夫・勒庞 | [下载](https://url89.ctfile.com/f/31084289-1357052998-895117?p=8866) |\n| 学会提问（原书第11版） | 尼尔・布朗/斯图尔特・基利 | [下载](https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866) |\n| 认知·情感·意志 | 詹姆斯・马克・鲍德温 | [下载](https://url89.ctfile.com/f/31084289-1357052713-4eb6b1?p=8866) |\n| 深奥的简洁 | 约翰・格里宾 | [下载](https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866) |\n| 重构 | 村西边老王 | [下载](https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866) |\n| 逻辑学原来很有趣 | 齐露露 | [下载](https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866) |\n| 全脑演讲 | 大卫祁 | [下载](https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866) |\n| 专家之死 | 托马斯・尼科尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357052356-47c0eb?p=8866) |\n| 知识管理如何改变商业模式 | 卡拉・欧戴尔/辛迪・休伯特 | [下载](https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866) |\n| 清醒思考的策略 | 罗尔夫・多贝里 | [下载](https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866) |\n| 能力迁移 | 乔治・安德斯 | [下载](https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866) |\n| 精简社交 | 莫拉格・巴雷特 | [下载](https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866) |\n| 跨界学习 | 王烁 | [下载](https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866) |\n| 逻辑学入门很简单 | 兰晓华 | [下载](https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866) |\n| 迷人的逻辑题 | 亚历克斯・贝洛斯 | [下载](https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866) |\n| 麦肯锡入职培训第一课 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866) |\n| 巴拉巴西成功定律 | 拉斯洛・巴拉巴西 | [下载](https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866) |\n| 麦肯锡笔记思考法 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866) |\n| 关键提问 | 詹姆斯·E.瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866) |\n| 俞军产品方法论 | 俞军 | [下载](https://url89.ctfile.com/f/31084289-1357049995-1f9b97?p=8866) |\n| 格局逆袭 | 宗宁 | [下载](https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866) |\n| 弹性 | 列纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866) |\n| 1分钟沟通课 | 鱼住理英 | [下载](https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866) |\n| 摆脱共情 | 保罗・布卢姆 | [下载](https://url89.ctfile.com/f/31084289-1357049560-e1804e?p=8866) |\n| 故事力思维 | 安东尼・塔斯加尔 | [下载](https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866) |\n| 底层逻辑 | 张羽 | [下载](https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866) |\n| 领导就是让人追随 | 约翰・科特/霍尔格・拉斯格博 | [下载](https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866) |\n| 风险认知 | 格尔德・吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866) |\n| 思维与陷阱 | 史蒂夫・卡斯纳 | [下载](https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866) |\n| 模型思维 | 斯科特・佩奇 | [下载](https://url89.ctfile.com/f/31084289-1357048045-63863d?p=8866) |\n| 深度说服 | 梁秋阳 | [下载](https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866) |\n| 挫折复原力 | 丹尼斯・穆蓝纳 | [下载](https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866) |\n| 反套路 | 大卫・迪萨沃 | [下载](https://url89.ctfile.com/f/31084289-1357046386-816bad?p=8866) |\n| 被左右的独立思维 | 塔利・沙罗特 | [下载](https://url89.ctfile.com/f/31084289-1357046173-76b5ed?p=8866) |\n| 动物思维 | 查尔斯・福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866) |\n| 简捷启发式：有限理性让我们更聪明 | 格尔德・吉仁泽等 | [下载](https://url89.ctfile.com/f/31084289-1357046098-6c6c47?p=8866) |\n| 闪电式扩张 | 里德 · 霍夫曼/叶嘉新 | [下载](https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866) |\n| 战略几何学 | 罗伯特・凯德尔 | [下载](https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866) |\n| 叛逆天才 | 弗朗西斯卡・吉诺 | [下载](https://url89.ctfile.com/f/31084289-1357045060-87bbeb?p=8866) |\n| 为未知而教，为未来而学 | 戴维・珀金斯 | [下载](https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866) |\n| 茶馆（作家榜经典文库） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866) |\n| 对赌：信息不足时如何做出高明决策 | 安妮・杜克 | [下载](https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866) |\n| 智识的冒险 | 潘启雯 | [下载](https://url89.ctfile.com/f/31084289-1357043764-78293a?p=8866) |\n| 智慧书（作家榜经典文库） | 巴尔塔萨尔・格拉西安 | [下载](https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866) |\n| 生而不凡 | 维申・拉克雅礼 | [下载](https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866) |\n| 像开创者一样思考 | 保罗・斯隆 | [下载](https://url89.ctfile.com/f/31084289-1357043272-e47526?p=8866) |\n| 麦肯锡图表工作法 | 齐藤显一/竹内里子 | [下载](https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866) |\n| 发现你的创造力类型 | 梅塔・瓦格纳 | [下载](https://url89.ctfile.com/f/31084289-1357042207-67323e?p=8866) |\n| 反惯性思维 | 任白 | [下载](https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866) |\n| 聪明人极简图表工作法 | 高桥政史 | [下载](https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866) |\n| 不要输在思维方法上 | 夏欣 | [下载](https://url89.ctfile.com/f/31084289-1357040785-53d198?p=8866) |\n| 12堂趣味逻辑课 | 阿里・阿莫萨维 | [下载](https://url89.ctfile.com/f/31084289-1357040821-2fd4bd?p=8866) |\n| 金字塔原理2 | 芭芭拉・明托 | [下载](https://url89.ctfile.com/f/31084289-1357040257-8090ee?p=8866) |\n| 反常识 | 邓肯·J. 瓦茨等 | [下载](https://url89.ctfile.com/f/31084289-1357038859-8c613f?p=8866) |\n| 实用主义和语用论 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866) |\n| 理性动物 | 道格拉斯・肯里克 | [下载](https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866) |\n| 如何高效学习 | 斯科特・扬 | [下载](https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866) |\n| 如何结交比你更优秀的人 | 康妮 | [下载](https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866) |\n| 11堂极简系统思维课 | 史蒂文・舒斯特 | [下载](https://url89.ctfile.com/f/31084289-1357037311-961ac9?p=8866) |\n| 失败课 | 周磊 | [下载](https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866) |\n| 技巧：如何用一年时间获得十年的经验 | 郝培强 | [下载](https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866) |\n| 生涯线 | 戴维・范鲁伊 | [下载](https://url89.ctfile.com/f/31084289-1357035568-93b2da?p=8866) |\n| 为什么 | 朱迪亚・珀尓/达纳・麦肯齐 | [下载](https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866) |\n| 论大战略 | 约翰・刘易斯・加迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866) |\n| 灰度决策 | 小约瑟夫・巴达拉克 | [下载](https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866) |\n| 极速写作 | 剑飞 | [下载](https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866) |\n| 掌控关系 | 格雷琴・鲁宾 | [下载](https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866) |\n| 大潜能 | 肖恩・埃科尔 | [下载](https://url89.ctfile.com/f/31084289-1357034437-0178db?p=8866) |\n| 深度思考：让所有事情都能正确入手 | 凯茜・拉舍 | [下载](https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866) |\n| 改变提问，改变人生（原书第3版） | 梅若李・亚当斯  | [下载](https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866) |\n| 失误：为什么我们总爱犯错？ | 凯瑟琳・舒尔茨 | [下载](https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866) |\n| 转变：应对复杂新世界的思维方式 | 弗雷德蒙德・马利克 | [下载](https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866) |\n| 如何创建天才团队 | 里奇・卡尔加德/迈克尔・马隆 | [下载](https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866) |\n| 为什么需要生物学思维 | 塞缪尔・阿贝斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866) |\n| 盲从与叛逆 | 米歇尔・巴德利 | [下载](https://url89.ctfile.com/f/31084289-1357033585-069b7d?p=8866) |\n| 学习的升级 | 约翰・库奇/贾森・汤 | [下载](https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866) |\n| 脑与意识 | 斯坦尼斯拉斯・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866) |\n| 飞奔的物种 | 大卫・伊格曼/安东尼・布兰德 | [下载](https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866) |\n| 学习之道 | 芭芭拉・奥克利 | [下载](https://url89.ctfile.com/f/31084289-1357033018-b16bf2?p=8866) |\n| 学习之道（第2版） | 乔希・维茨金 | [下载](https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866) |\n| 高维度思考法 | 细谷功 | [下载](https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866) |\n| 高维度思考法：职场问题解决篇 | 细谷功 | [下载](https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866) |\n| 低风险创业 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357032529-9d5940?p=8866) |\n| 精进2：解锁万物的心智进化法 | 采铜 | [下载](https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866) |\n| 自下而上 | 马特・里德利  | [下载](https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866) |\n| 盲点：为什么我们易被偏见左右 | 约瑟夫・哈利南 | [下载](https://url89.ctfile.com/f/31084289-1357031374-2ecc9a?p=8866) |\n| 升维：让你人生出众的另类通道 | 褚明宇 | [下载](https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866) |\n| 心智 | 约翰・布罗克曼  | [下载](https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866) |\n| 解放你的大脑 | 伊德里斯・阿贝尔坎 | [下载](https://url89.ctfile.com/f/31084289-1357031038-fa34eb?p=8866) |\n| 逆商：我们该如何应对坏事件 | 保罗・史托兹 | [下载](https://url89.ctfile.com/f/31084289-1357030930-e4a251?p=8866) |\n| 认知尺度 | 魏坤琳 | [下载](https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866) |\n| 第五项修炼·心灵篇 | 彼得・圣吉 | [下载](https://url89.ctfile.com/f/31084289-1357030789-52e5c2?p=8866) |\n| 表象与本质 | 侯世达/桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866) |\n| 消极情绪的力量 | 托德・卡什丹 | [下载](https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866) |\n| 写给所有人的编程思维 | 吉姆・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866) |\n| 事实 | 汉斯・罗斯林/欧拉・罗斯林 | [下载](https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866) |\n| 乌合之众（作家榜经典文库） | 古斯塔夫・勒庞 | [下载](https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866) |\n| 逻辑思维与诡辩 | 张晓芒 | [下载](https://url89.ctfile.com/f/31084289-1357030423-4cac61?p=8866) |\n| 高阶运营 | 龙共火火 | [下载](https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866) |\n| 学会创新 | 罗德・贾金斯 | [下载](https://url89.ctfile.com/f/31084289-1357030234-48a5cc?p=8866) |\n| 思维的艺术 | 延斯・森特根 | [下载](https://url89.ctfile.com/f/31084289-1357030174-a6bf68?p=8866) |\n| 你有你的计划，世界另有计划 | 万维钢 | [下载](https://url89.ctfile.com/f/31084289-1357029721-72fca7?p=8866) |\n| 人人都该懂的哲学 | 彼得・卡夫 | [下载](https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866) |\n| You are a Badass | Jen Sincero | [下载](https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866) |\n| 逻辑十九讲（美国新思想运动之父的逻辑学入门读物） | 威廉・沃克・阿特金森 | [下载](https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866) |\n| 脑洞大作战（套装三册） | 玛特・富尼耶等 | [下载](https://url89.ctfile.com/f/31084289-1357028755-fd2efe?p=8866) |\n| 世界精英的带人术 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357027900-f1558d?p=8866) |\n| 如何学习：用更短的时间达到更佳效果和更好成绩 | 亚当・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357027342-639593?p=8866) |\n| 认知突围：做复杂时代的明白人 | 蔡垒磊 | [下载](https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866) |\n| 高手：精英的见识和我们的时代 | 万维钢 | [下载](https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866) |\n| 深度思考：如何有效利用注意力做出理性决策 | 川上浩司 | [下载](https://url89.ctfile.com/f/31084289-1357027192-709fbf?p=8866) |\n| 如果我们错了呢？ | 查克・克洛斯特曼 | [下载](https://url89.ctfile.com/f/31084289-1357027147-aafe1f?p=8866) |\n| 能力变现 | 林宣 | [下载](https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866) |\n| 简单统计学 | 加里・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866) |\n| 认知迭代 | 卡罗琳・威廉姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866) |\n| 理性之谜 | 雨果・梅西耶 | [下载](https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866) |\n| 极简思维 | S.J. Scott/Barrie Davenport | [下载](https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866) |\n| 思辨与立场 | 理查德・保罗/琳达・埃尔 | [下载](https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866) |\n| 认知升级 | 理查德・尼斯贝特 | [下载](https://url89.ctfile.com/f/31084289-1357025041-559d0c?p=8866) |\n| 脑力升级手册 | 杰夫・布朗等 | [下载](https://url89.ctfile.com/f/31084289-1357024762-dccfd0?p=8866) |\n| 直觉泵和其他思考工具 |  丹尼尔・丹尼特 | [下载](https://url89.ctfile.com/f/31084289-1357024096-ff741c?p=8866) |\n| 游戏改变世界 | 简・麦戈尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1357023787-eebab9?p=8866) |\n| 超意识 | 菲尔图 | [下载](https://url89.ctfile.com/f/31084289-1357023697-71bafc?p=8866) |\n| 错不在我 | 卡罗尔・塔夫里斯/艾略特・阿伦森  | [下载](https://url89.ctfile.com/f/31084289-1357023679-7893fe?p=8866) |\n| 与原生家庭和解 | 爱丽丝・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866) |\n| 个体赋能 | YouCore | [下载](https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866) |\n| 新零售进化论 | 陈欢/陈澄波 | [下载](https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866) |\n| 深度思维 | 叶修 | [下载](https://url89.ctfile.com/f/31084289-1357023460-34d28e?p=8866) |\n| 深度思考：不断逼近问题的本质 | 莫琳・希凯 | [下载](https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866) |\n| 简单的逻辑学 | 麦克伦尼 | [下载](https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866) |\n| 认知天性 | 彼得・布朗/亨利・勒迪格三世 | [下载](https://url89.ctfile.com/f/31084289-1357023382-19f523?p=8866) |\n| 想象思维 | 帕甘・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1357023304-9cd91f?p=8866) |\n| 认同感 | 吉姆・西诺雷利 | [下载](https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866) |\n| 神经的逻辑 | 埃利泽・斯滕伯格 | [下载](https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866) |\n| 态度 | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357023064-924c58?p=8866) |\n| 内在革命：一本关于成长的书 | 芭芭拉・安吉丽思 | [下载](https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866) |\n| 好奇心：保持对未知世界永不停息的热情 | 伊恩・莱斯利 | [下载](https://url89.ctfile.com/f/31084289-1357022995-3678fc?p=8866) |\n| 深阅读 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866) |\n| 终有一天你会懂 | 琢磨先生 | [下载](https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866) |\n| 我们为什么总是看错人 | 王烁 | [下载](https://url89.ctfile.com/f/31084289-1357022611-49a550?p=8866) |\n| 战略：从思维到行动 | 刘学 | [下载](https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866) |\n| 万万没想到：用理工科思维理解世界 | 万维钢 | [下载](https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866) |\n| 人生总会有办法 : 用逆向思维解决难题 | 戴维・尼文 | [下载](https://url89.ctfile.com/f/31084289-1357021951-17393f?p=8866) |\n| 延展：释放有限资源的无限潜能 | 斯科特・索南沙因 | [下载](https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866) |\n| 零秒思考：像麦肯锡精英一样思考 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357021822-d42b59?p=8866) |\n| 今日简史 | 尤瓦尔・赫拉利 | [下载](https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866) |\n| 六顶思考帽：如何简单而高效的思考 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866) |\n| 时机管理：完美时机的隐秘模式 | 丹尼尔・平克 | [下载](https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866) |\n| 游戏改变人生 | 简・麦戈尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866) |\n| 算法之美：指导工作与生活的算法 | 布莱恩・克里斯汀/汤姆・格里菲思 | [下载](https://url89.ctfile.com/f/31084289-1357021150-6920ac?p=8866) |\n| X的奇幻之旅 | 史蒂夫・斯托加茨 | [下载](https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866) |\n| 如何记忆 | 罗恩・弗莱 | [下载](https://url89.ctfile.com/f/31084289-1357020949-e41027?p=8866) |\n| 认知心理学（原书第5版） | 凯瑟琳・加洛蒂 | [下载](https://url89.ctfile.com/f/31084289-1357020787-06bc90?p=8866) |\n| Thinking, Fast and Slow | Daniel Kahneman | [下载](https://url89.ctfile.com/f/31084289-1357020733-b4e6fa?p=8866) |\n| 深度案例思考法 | 井上达彦 | [下载](https://url89.ctfile.com/f/31084289-1357020535-71effc?p=8866) |\n| 深度模仿 | 井上达彦 | [下载](https://url89.ctfile.com/f/31084289-1357020490-8e6c68?p=8866) |\n| 有序：关于心智效率的认知科学 | 丹尼尔・列维汀 | [下载](https://url89.ctfile.com/f/31084289-1357020190-284690?p=8866) |\n| 麦肯锡思维 | 洛威茨 | [下载](https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866) |\n| 伟大创意的诞生 | 史蒂文・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357019743-14b1f9?p=8866) |\n| 当机立断 | 出口治明 | [下载](https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866) |\n| 绝佳提问：探询改变商业与生活 | 沃伦・贝格尔 | [下载](https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866) |\n| 成功与运气 | 罗伯特・弗兰克 | [下载](https://url89.ctfile.com/f/31084289-1357019080-7e8875?p=8866) |\n| 压榨式提问 | 布莱恩・格雷泽/查尔斯・菲什曼 | [下载](https://url89.ctfile.com/f/31084289-1357018912-d6e59c?p=8866) |\n| 知识的错觉 | 史蒂文・斯洛曼/菲利普・费恩巴赫 | [下载](https://url89.ctfile.com/f/31084289-1357018315-259ab2?p=8866) |\n| 平台革命：改变世界的商业模式 | 杰奥夫雷 G. 帕克等 | [下载](https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866) |\n| 我不过低配的人生 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357017898-288643?p=8866) |\n| 有效学习 | 乌尔里希・伯泽尔 | [下载](https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866) |\n| 盗火 | 史蒂芬・科特勒/杰米・威尔 | [下载](https://url89.ctfile.com/f/31084289-1357017394-61ea85?p=8866) |\n| 反本能 | 卫蓝 | [下载](https://url89.ctfile.com/f/31084289-1357017163-f4def7?p=8866) |\n| 读书是一辈子的事 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357017013-d5b280?p=8866) |\n| 决断力 | 奇普・希思/丹・希思  | [下载](https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866) |\n| 如何有效提问 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357016725-e622b1?p=8866) |\n| 原则 | 瑞・达利欧 | [下载](https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866) |\n| 学会提问（第十版） | 尼尔・布朗/斯图尔特・基利 | [下载](https://url89.ctfile.com/f/31084289-1357016674-f06b5d?p=8866) |\n| 混乱 | 蒂姆・哈福德  | [下载](https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866) |\n| 逆转 | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1357016524-460c47?p=8866) |\n| 一页纸工作整理术 | 丹・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1357016548-7f5190?p=8866) |\n| 一页纸创意思考术 | 丹・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866) |\n| 迷恋：如何制造持久的吸引力 | 莎莉・霍格斯黑德 | [下载](https://url89.ctfile.com/f/31084289-1357016335-64929d?p=8866) |\n| 故事思维 | 安妮特・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866) |\n| 批判性思维与创造性思维 | 加里・R・卡比 | [下载](https://url89.ctfile.com/f/31084289-1357016056-730262?p=8866) |\n| 逻辑十九讲 | 威廉姆・沃克・阿特金森  | [下载](https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866) |\n| 推理的迷宫 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866) |\n| 决策的智慧 | 大卫・亨德森/查尔斯・胡珀 | [下载](https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866) |\n| 理性的非理性 | 郑毓煌/苏丹 | [下载](https://url89.ctfile.com/f/31084289-1357015717-410de3?p=8866) |\n| 决策与理性 | 基思・斯坦诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1357015546-5d6351?p=8866) |\n| 绝非天赋 | 斯科特・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357015531-e896f7?p=8866) |\n| 囚徒的困境 | 威廉姆・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866) |\n| 看不见的大猩猩 | 克里斯托弗・查布利斯等 | [下载](https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866) |\n| 社交天性 | 马修・利伯曼 | [下载](https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866) |\n| 我们如何正确思维 | 约翰・杜威 | [下载](https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866) |\n| 陌生人溺水 | 拉里莎・麦克法夸尔 | [下载](https://url89.ctfile.com/f/31084289-1357015354-f2471d?p=8866) |\n| 请停止无效努力 | 孙圈圈 | [下载](https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866) |\n| 决策与判断 | 斯科特・普劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866) |\n| 规则颠覆者 | 内田和成 | [下载](https://url89.ctfile.com/f/31084289-1357015054-0bd70a?p=8866) |\n| 第七感 | 乔舒亚・库珀・雷默 | [下载](https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866) |\n| 助推 | 理查德・泰勒/卡斯・桑斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357014280-c17c13?p=8866) |\n| 黑匣子思维：我们如何更理性地犯错 | 马修・萨伊德 | [下载](https://url89.ctfile.com/f/31084289-1357014211-1c5f9b?p=8866) |\n| 如何打造你的独特观点 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357014178-6adf58?p=8866) |\n| 创新自信力 | 戴维・凯利/汤姆・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866) |\n| 打破自我的标签 | 陈虎平 | [下载](https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866) |\n| 暗时间 | 刘未鹏 | [下载](https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866) |\n| Stealing Fire | Steven Kotler / Jamie Wheal  | [下载](https://url89.ctfile.com/f/31084289-1357013662-bcb2e6?p=8866) |\n| 博弈论的诡计 | 王春永 | [下载](https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866) |\n| 博弈论平话 | 王则柯 | [下载](https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866) |\n| 系统之美 | 德内拉・梅多斯 | [下载](https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866) |\n| 跃迁：成为高手的技术 | 古典 | [下载](https://url89.ctfile.com/f/31084289-1357013161-eaef0d?p=8866) |\n| U型理论（全新升级版） | 奥托・夏莫 | [下载](https://url89.ctfile.com/f/31084289-1357013143-40fa8b?p=8866) |\n| 追时间的人 | 阳志平等 | [下载](https://url89.ctfile.com/f/31084289-1357013005-f92fca?p=8866) |\n| 隐性逻辑 | 卡尔・诺顿 | [下载](https://url89.ctfile.com/f/31084289-1357012783-6ffa1c?p=8866) |\n| 先发影响力 | 罗伯特・西奥迪尼 | [下载](https://url89.ctfile.com/f/31084289-1357012780-a20378?p=8866) |\n| 顿悟：捕捉灵感的艺术 | 查尔斯・基弗/马尔科姆・康斯特布尔 | [下载](https://url89.ctfile.com/f/31084289-1357012723-eac5ab?p=8866) |\n| 一本小小的蓝色逻辑书 | 布兰登・罗伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866) |\n| 魔鬼数学 | 乔丹・艾伦伯格 | [下载](https://url89.ctfile.com/f/31084289-1357012669-8145da?p=8866) |\n| 微创新 | 德鲁・博迪/雅各布・戈登堡 | [下载](https://url89.ctfile.com/f/31084289-1357012546-f824cf?p=8866) |\n| 斯坦福商业决策课 | 卡尔・斯佩茨勒等 | [下载](https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866) |\n| 创新者的方法 | 内森・弗尔/杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357012438-b946ae?p=8866) |\n| 创新者的基因 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866) |\n| 天才源自刻意练习 | 杰夫・科尔文 | [下载](https://url89.ctfile.com/f/31084289-1357012300-54ef8d?p=8866) |\n| 粘住 | 奇普・希思/丹・希思 | [下载](https://url89.ctfile.com/f/31084289-1357011994-36d924?p=8866) |\n| 思考的乐趣：Matrix67数学笔记 | 顾森 | [下载](https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866) |\n| 这才是思维 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1357011256-cc5193?p=8866) |\n| 提问的力量 | 弗兰克・赛斯诺 | [下载](https://url89.ctfile.com/f/31084289-1357010539-958825?p=8866) |\n| 习惯的力量（图文精编版） | 查尔斯・都希格 | [下载](https://url89.ctfile.com/f/31084289-1357010533-3627de?p=8866) |\n| 思维力：高效的系统思维 | 王世民 | [下载](https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866) |\n| 创新的本能：类比思维的力量 | 约翰・波拉克 | [下载](https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866) |\n| 黑天鹅：如何应对不可预知的未来（升级版） | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866) |\n| 超越智商 | 基思・斯坦诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866) |\n| 潜意识：控制你行为的秘密 | 列纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357009711-44b0d1?p=8866) |\n| 最重要的事，只有一件 | 加里・凯勒/杰伊・帕帕森 | [下载](https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866) |\n| 清醒思考的艺术 | 罗尔夫・多贝里 | [下载](https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866) |\n| 明智行动的艺术 | 罗尔夫・多贝里 | [下载](https://url89.ctfile.com/f/31084289-1357009012-b48f59?p=8866) |\n| 冥想5分钟，等于熟睡一小时 | 里克・汉森/理查德・蒙迪思 | [下载](https://url89.ctfile.com/f/31084289-1357008994-681a13?p=8866) |\n| 那些古怪又让人忧心的问题 | 兰道尔・门罗 | [下载](https://url89.ctfile.com/f/31084289-1357008988-3e59d8?p=8866) |\n| 经济学的思维方式 | 保罗・海恩/彼得・勃特克等 | [下载](https://url89.ctfile.com/f/31084289-1357008682-5efea1?p=8866) |\n| 精要主义 | 格雷戈・麦吉沃恩  | [下载](https://url89.ctfile.com/f/31084289-1357008661-c552a6?p=8866) |\n| 活学活用博弈论 | 詹姆斯・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866) |\n| 结构思考力 | 李忠秋 | [下载](https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866) |\n| 重来：更为简单有效的商业思维 | 贾森・弗里德/大卫・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866) |\n| 未来简史 | 尤瓦尔・赫拉利 | [下载](https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866) |\n| 冷读术（白金珍藏版） | 石真语 | [下载](https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866) |\n| 金字塔原理 | 芭芭拉・明托 | [下载](https://url89.ctfile.com/f/31084289-1357007536-e10bf4?p=8866) |\n| 稀缺：我们是如何陷入贫穷与忙碌的 | 塞德希尔・穆来纳森 / 埃尔德・沙菲尔  | [下载](https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866) |\n| 麦肯锡工具 | 保罗・弗里嘉 | [下载](https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866) |\n| 我们要自学 | 张玳 | [下载](https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866) |\n| 摆谱：身份的潜规则 | 余不讳 | [下载](https://url89.ctfile.com/f/31084289-1357007296-2c1c04?p=8866) |\n| 精益创业实战（第2版） | Ash Maurya | [下载](https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866) |\n| 创新者的窘境 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866) |\n| 思考，快与慢 | 丹尼尔・卡尼曼 | [下载](https://url89.ctfile.com/f/31084289-1357007230-ded764?p=8866) |\n| 清单革命 | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866) |\n| 解决问题最简单的方法 | 达伦・布里奇/戴维・路易斯  | [下载](https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866) |\n| 神逻辑：不讲道理的人怎么总有理 | 阿里·阿莫萨维 | [下载](https://url89.ctfile.com/f/31084289-1357007029-6c71ef?p=8866) |\n| 精进：如何成为一个很厉害的人 | 采铜 | [下载](https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866) |\n| 风险与好的决策 | 格尔德·吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866) |\n| 硅谷禁书 | 查尔斯・哈尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866) |\n| 批判性思维（原书第10版） | 布鲁克·诺埃尔·摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866) |\n| 批判性思维工具（原书第3版） | 理查德·保罗 | [下载](https://url89.ctfile.com/f/31084289-1357006525-573ffd?p=8866) |\n| 平台战略 | 陈威如/余卓轩  | [下载](https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866) |\n| 沃顿商学院最受欢迎的思维课 | 亚当・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866) |\n| 行在宽处 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866) |\n| 罗辑思维合集（套装共5册） | 罗振宇 | [下载](https://url89.ctfile.com/f/31084289-1357006180-058c85?p=8866) |\n| 互联网思维：商业颠覆与重构 | 陈光锋 | [下载](https://url89.ctfile.com/f/31084289-1357006165-16344a?p=8866) |\n| 高效能人士的七个习惯（20周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866) |\n| 增长的极限 | 德内拉・梅多斯 | [下载](https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866) |\n| 游戏化思维 | 凯文・韦巴赫/丹・亨特 | [下载](https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866) |\n| 超级记忆力训练法 | 刘志华 | [下载](https://url89.ctfile.com/f/31084289-1357005052-7a59fb?p=8866) |\n"
  },
  {
    "path": "md/思考.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 思考\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们被偷走的注意力 | 斯特凡・范德斯蒂格谢尔 | [下载](https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866) |\n| 五维思考法 | 爱德华・伯格/迈克尔・斯塔伯德 | [下载](https://url89.ctfile.com/f/31084289-1375510294-3b55d2?p=8866) |\n| 像火箭科学家一样思考 | 奥赞・瓦罗尔 | [下载](https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866) |\n| 深度思考：透过表面看本质的六步思考法 | 萧亮 | [下载](https://url89.ctfile.com/f/31084289-1357004149-6c477b?p=8866) |\n| 喧哗的大多数 | 艾伦・雅各布斯 | [下载](https://url89.ctfile.com/f/31084289-1356995443-5d0afe?p=8866) |\n| 好文案会说话 | 梅田悟司 | [下载](https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866) |\n| 做出明智判断的10个方法 | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866) |\n| 网络战争 | 查尔斯・亚瑟 | [下载](https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866) |\n| 思考的艺术（原书第11版） | 文森特・赖安・拉吉罗 | [下载](https://url89.ctfile.com/f/31084289-1356986845-3183cd?p=8866) |\n| 视觉笔记术 | 卢慈伟 | [下载](https://url89.ctfile.com/f/31084289-1356985774-afd8b0?p=8866) |\n| 思考的技术 | 大前研一 | [下载](https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866) |\n| 实用性思考的艺术 | 小理查德・威尔 | [下载](https://url89.ctfile.com/f/31084289-1356985549-b0053e?p=8866) |\n| 小逻辑：让选择变简单的方法 | 欧文・瑟维斯/罗里・加拉格尔 | [下载](https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866) |\n| 如何系统思考 | 邱昭良 | [下载](https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866) |\n| 清醒思考的策略 | 罗尔夫・多贝里 | [下载](https://url89.ctfile.com/f/31084289-1357052209-3d93c0?p=8866) |\n| 内向思考 | 迈克尔・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866) |\n| 麦肯锡教我的思考武器 | 安宅和人 | [下载](https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866) |\n| 深度思考：让所有事情都能正确入手 | 凯茜・拉舍 | [下载](https://url89.ctfile.com/f/31084289-1357034422-0e0ad6?p=8866) |\n| 如何有效阅读 | 藤原和博 | [下载](https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866) |\n| 深度思考：不断逼近问题的本质 | 莫琳・希凯 | [下载](https://url89.ctfile.com/f/31084289-1357023454-9f603f?p=8866) |\n| 麻省理工深度思考法 | 平井孝志 | [下载](https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866) |\n| 六顶思考帽：如何简单而高效的思考 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866) |\n| 自信思考 | 泉忠司著 | [下载](https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866) |\n| 像间谍一样思考 | 卡尔森 | [下载](https://url89.ctfile.com/f/31084289-1357020934-24a0ae?p=8866) |\n| 饥饿的灵魂 | 查尔斯・汉迪 | [下载](https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866) |\n| 人性的弱点 | 戴尔・卡耐基  | [下载](https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866) |\n| 你永远都无法叫醒一个装睡的人 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866) |\n"
  },
  {
    "path": "md/急救.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 急救\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 急救，比医生快一步 | 贾大成 | [下载](https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866) |\n| 救护车到来前，你能做什么？ | 贾大成 | [下载](https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866) |\n"
  },
  {
    "path": "md/性学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 性学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 性文化简史 | 李书崇 | [下载](https://url89.ctfile.com/f/31084289-1357032655-45f763?p=8866) |\n| 色情 | 乔治・巴塔耶 | [下载](链接未找到) |\n| 我在现场 | 黄盈盈 | [下载](https://url89.ctfile.com/f/31084289-1357030039-700572?p=8866) |\n| 亚当夏娃在拂晓 | 克里斯托弗・莱恩/卡西尔达・杰萨 | [下载](https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866) |\n"
  },
  {
    "path": "md/性格.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 性格\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 瞧！不一样的我 | 小盐真司 | [下载](https://url89.ctfile.com/f/31084289-1357003723-564f84?p=8866) |\n| 性格拼图 | 西尔维亚・洛肯 | [下载](https://url89.ctfile.com/f/31084289-1356991783-0dcd50?p=8866) |\n| 突破天性 | 布赖恩・利特尔 | [下载](https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866) |\n| 性格的陷阱 | 杰弗里·E.杨等 | [下载](https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866) |\n| 如何提升性格优势 | 安妮・博格尔 | [下载](https://url89.ctfile.com/f/31084289-1357032571-eaa275?p=8866) |\n| 别相信他的脸 | 亚历山大・托多罗夫 | [下载](https://url89.ctfile.com/f/31084289-1357027891-8dcd80?p=8866) |\n| 跟乐嘉学性格色彩 | 乐嘉 | [下载](https://url89.ctfile.com/f/31084289-1357014859-334205?p=8866) |\n"
  },
  {
    "path": "md/怪谈.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 怪谈\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 全怪谈（全三册） | 田中贡太郎 | [下载](https://url89.ctfile.com/f/31084289-1357032217-dba52f?p=8866) |\n| 巷说异闻录 | 檀信介 | [下载](https://url89.ctfile.com/f/31084289-1357027255-1358b6?p=8866) |\n"
  },
  {
    "path": "md/恋爱.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 恋爱\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们为何结婚，又为何不忠 | 海伦・费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1375500571-d4970f?p=8866) |\n"
  },
  {
    "path": "md/恐怖.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 恐怖\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 世事无常 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1356990259-cfe89f?p=8866) |\n| 怪奇物语·噩梦 | 宁航一 | [下载](https://url89.ctfile.com/f/31084289-1357051531-fb4a6f?p=8866) |\n| 活人禁忌 | 九锋 | [下载](https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866) |\n| 地狱书单 | 格雷迪・亨德里克斯 | [下载](https://url89.ctfile.com/f/31084289-1357036225-7848b6?p=8866) |\n| 欢迎来到黑泉镇 | 托马斯・奥尔德・赫维尔特 | [下载](https://url89.ctfile.com/f/31084289-1357034671-16eada?p=8866) |\n| 闪灵 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866) |\n| 黑暗的另一半 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033198-ad91a2?p=8866) |\n| 邪屋 | 雪莉・杰克逊 | [下载](https://url89.ctfile.com/f/31084289-1357032721-17527f?p=8866) |\n| 希区柯克悬念故事集（典藏版） | 阿尔弗莱德・希区柯克 | [下载](https://url89.ctfile.com/f/31084289-1357032016-4bcd4f?p=8866) |\n| 克苏鲁神话 | H.P.洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1357026331-155838?p=8866) |\n| 克苏鲁神话Ⅱ | H.P.洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1357026322-83eb5a?p=8866) |\n| 克苏鲁神话Ⅲ | H.P.洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1357026316-cb833b?p=8866) |\n| 悬念大师希区柯克经典故事集 | 希区柯克 | [下载](https://url89.ctfile.com/f/31084289-1357023775-bfa687?p=8866) |\n| 守夜 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357022944-f7c29a?p=8866) |\n| 死灵之书 | 洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1357021267-6d09de?p=8866) |\n| 鬼马星悬疑小说莫兰系列（套装7册全） | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357019647-16c6fb?p=8866) |\n| 召唤：沃伦夫妇的惊凶职业实录 | 杰拉德・布利特尔 | [下载](https://url89.ctfile.com/f/31084289-1357018570-279333?p=8866) |\n| 桐花中路私立协济医院怪谈 | 南琅 | [下载](https://url89.ctfile.com/f/31084289-1357010827-a4a422?p=8866) |\n| 诡案罪（1-8册全） | 岳勇 | [下载](https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866) |\n| 死亡性插图 | 凿壁小妖 | [下载](https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866) |\n| 异域密码大全集（套装共四册） | 羊行屮 | [下载](https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866) |\n"
  },
  {
    "path": "md/悬爱.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 悬爱\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知更鸟女孩5：遗失的羽毛 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866) |\n"
  },
  {
    "path": "md/悬疑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 悬疑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 耳语之人 | 约翰・迪克森・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1375493566-c34524?p=8866) |\n| 反骗案中案·完结版（全5册） | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1375495066-b34054?p=8866) |\n| 回到种子里去 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1375495486-3c8ab0?p=8866) |\n| 人间我来过 | 那多 | [下载](https://url89.ctfile.com/f/31084289-1375495513-a7fbae?p=8866) |\n| 那多经典作品合集（12册合集） | 那多 | [下载](https://url89.ctfile.com/f/31084289-1375498663-8c7a04?p=8866) |\n| 天涯双探4：双城血案 | 七名 | [下载](https://url89.ctfile.com/f/31084289-1375498834-6b8e51?p=8866) |\n| 黄雀计划 | 鬼庖丁 | [下载](https://url89.ctfile.com/f/31084289-1375498957-155512?p=8866) |\n| 静默的铁证 | 米烛光 | [下载](https://url89.ctfile.com/f/31084289-1375499452-818cac?p=8866) |\n| 恶寒 | 伊冈瞬 | [下载](https://url89.ctfile.com/f/31084289-1375499659-21ca24?p=8866) |\n| 全员嫌疑人 | 大山诚一郎 | [下载](https://url89.ctfile.com/f/31084289-1375499701-1e03fc?p=8866) |\n| 气球人 | 陈浩基 | [下载](https://url89.ctfile.com/f/31084289-1375501195-ba2e60?p=8866) |\n| 会错意的冬日 | 似鸟鸡 | [下载](https://url89.ctfile.com/f/31084289-1375501648-3e29c5?p=8866) |\n| 消失的女孩 | 克里斯蒂安・怀特 | [下载](https://url89.ctfile.com/f/31084289-1375501726-060129?p=8866) |\n| 猫头鹰谋杀案（全两册） | 安东尼・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1375502944-116268?p=8866) |\n| 密室小丑 | 时晨 | [下载](https://url89.ctfile.com/f/31084289-1375503307-04dbfb?p=8866) |\n| 傲慢与善良 | 辻村深月 | [下载](https://url89.ctfile.com/f/31084289-1375504243-e0863b?p=8866) |\n| 玩偶 | 法医秦明 | [下载](https://url89.ctfile.com/f/31084289-1375506412-556a2b?p=8866) |\n| 如首无作祟之物 | 三津田信三 | [下载](https://url89.ctfile.com/f/31084289-1375508980-843c48?p=8866) |\n| 如水魑沉没之物 | 三津田信三 | [下载](https://url89.ctfile.com/f/31084289-1375509070-c0bdeb?p=8866) |\n| 逆时侦查组 | 张小猫 | [下载](https://url89.ctfile.com/f/31084289-1375509094-55dc76?p=8866) |\n| 罪头条 | 朱首末 | [下载](https://url89.ctfile.com/f/31084289-1375509643-1ce27b?p=8866) |\n| 无形之刃 | 陈研一 | [下载](https://url89.ctfile.com/f/31084289-1375509706-840d1a?p=8866) |\n| 悬疑小说《失联》系列（全4册） |  发威 | [下载](https://url89.ctfile.com/f/31084289-1375509769-12102c?p=8866) |\n| 完美嫌疑人 | 陈研一 | [下载](https://url89.ctfile.com/f/31084289-1375509868-3a24d8?p=8866) |\n| 字母表谜案 | 大山诚一郎 | [下载](https://url89.ctfile.com/f/31084289-1375510117-6dfc14?p=8866) |\n| 消失者 | 多纳托・卡瑞西 | [下载](https://url89.ctfile.com/f/31084289-1375510153-b0429d?p=8866) |\n| 寒栗 | 索伦・斯外斯特普 | [下载](https://url89.ctfile.com/f/31084289-1375510246-3b3fae?p=8866) |\n| 关键词是谋杀 | 安东尼・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1375510258-1956b1?p=8866) |\n| 甜蜜之家 | 殳俏 | [下载](https://url89.ctfile.com/f/31084289-1375511095-b66fd2?p=8866) |\n| 伊芙琳的七次死亡 | 斯图尔特・特顿 | [下载](https://url89.ctfile.com/f/31084289-1375511320-d34f47?p=8866) |\n| 猎头游戏 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1375511377-5d4220?p=8866) |\n| 间谍故事 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375511551-012997?p=8866) |\n| 天机十二宫（套装2册） | 王超 | [下载](https://url89.ctfile.com/f/31084289-1375513327-58c5bc?p=8866) |\n| 人偶的复活 | 绫辻行人 | [下载](https://url89.ctfile.com/f/31084289-1375513450-23c7d7?p=8866) |\n| 怪医笔记 | 狼医生 | [下载](https://url89.ctfile.com/f/31084289-1357004455-54cb6f?p=8866) |\n| 静默的墓碑 | 珍・哈珀 | [下载](https://url89.ctfile.com/f/31084289-1357004347-6c482d?p=8866) |\n| 侦探AI | 早坂吝 | [下载](https://url89.ctfile.com/f/31084289-1357003939-b7b6bf?p=8866) |\n| 沉默的病人 | 亚历克斯・麦克利兹 | [下载](https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866) |\n| 旋涡（全2册） | 伊藤润二 | [下载](https://url89.ctfile.com/f/31084289-1357003753-389516?p=8866) |\n| 犯罪心理档案（共4册） | 刚雪印 | [下载](https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866) |\n| 大明神探于谦 | 史刚 | [下载](https://url89.ctfile.com/f/31084289-1357002157-6dd901?p=8866) |\n| 木马湖 | 宋老邪 | [下载](https://url89.ctfile.com/f/31084289-1357002121-ac27cf?p=8866) |\n| 螺丝在拧紧（果麦经典） | 亨利・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357001599-4b85e9?p=8866) |\n| 魔眼之匣谜案 | 今村昌弘 | [下载](https://url89.ctfile.com/f/31084289-1357000648-79dc5c?p=8866) |\n| 侯大利刑侦笔记4 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1357000630-a6cc40?p=8866) |\n| 静默之地 | 约翰・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357000417-20afbf?p=8866) |\n| 她和她的秘密 | 迈克尔・罗伯森 | [下载](https://url89.ctfile.com/f/31084289-1357000177-c83701?p=8866) |\n| 解梦大师 | 羽笙烟 | [下载](https://url89.ctfile.com/f/31084289-1356999379-8d67f1?p=8866) |\n| 逝者之书 | 法医秦明 | [下载](https://url89.ctfile.com/f/31084289-1356998971-364375?p=8866) |\n| 嫌疑人 | 迈克尔・罗伯森 | [下载](https://url89.ctfile.com/f/31084289-1356998800-9f56b7?p=8866) |\n| 羊行屮“灯下黑”系列（套装3册） | 羊行屮 | [下载](https://url89.ctfile.com/f/31084289-1356996958-e7e565?p=8866) |\n| 他的秘密 | 莉安・莫里亚蒂 | [下载](https://url89.ctfile.com/f/31084289-1356996595-40f888?p=8866) |\n| 遗忘者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1356996394-3987f5?p=8866) |\n| 赤色博物馆 | 大山誠一郎 | [下载](https://url89.ctfile.com/f/31084289-1356996154-b859bc?p=8866) |\n| 指定目击者 | 午晔 | [下载](https://url89.ctfile.com/f/31084289-1356995380-99ff61?p=8866) |\n| 两种真相 | 迈克尔・康奈利 | [下载](https://url89.ctfile.com/f/31084289-1356995215-ab07fb?p=8866) |\n| 燃烧 | 陈育新 | [下载](https://url89.ctfile.com/f/31084289-1356995209-108b48?p=8866) |\n| 第十一次真相 | 赤蝶飞飞 | [下载](https://url89.ctfile.com/f/31084289-1356995176-68895f?p=8866) |\n| 黑色睡莲 | 米歇尔・普西 | [下载](https://url89.ctfile.com/f/31084289-1356994783-a62041?p=8866) |\n| 多米诺杀阵 | 成刚 | [下载](https://url89.ctfile.com/f/31084289-1356991825-14cf14?p=8866) |\n| 终南山密码2 | 巫童 | [下载](https://url89.ctfile.com/f/31084289-1356991645-ce6b62?p=8866) |\n| 十二镜面 | 张墨爱吃鱼 | [下载](https://url89.ctfile.com/f/31084289-1356991510-88f05b?p=8866) |\n| 一路去死 |  那多 | [下载](https://url89.ctfile.com/f/31084289-1356990874-c2daf4?p=8866) |\n| 上岭阉牛 | 凡一平 | [下载](https://url89.ctfile.com/f/31084289-1356990295-1506c8?p=8866) |\n| 狂探 | 吕铮 | [下载](https://url89.ctfile.com/f/31084289-1356990040-8f94c3?p=8866) |\n| 侯大利刑侦笔记3 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866) |\n| 夜鸟 | 莫峻 | [下载](https://url89.ctfile.com/f/31084289-1356987193-6b8f16?p=8866) |\n| 问米 | 葛亮 | [下载](https://url89.ctfile.com/f/31084289-1356986296-19e7f3?p=8866) |\n| 米泽穗信精选集：算计 | 米泽穗信 | [下载](https://url89.ctfile.com/f/31084289-1356986158-4aacbd?p=8866) |\n| 弹弓神警2 | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866) |\n| 无辜之血 | P. D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1356985633-85ca83?p=8866) |\n| 天坑宝藏 | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866) |\n| 烧烤怪谈 | 蔡必贵 | [下载](https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866) |\n| 侯大利刑侦笔记2 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1356983785-47efcf?p=8866) |\n| 异闻录：九重图阵 | 王文杰 | [下载](https://url89.ctfile.com/f/31084289-1356983362-f00f8f?p=8866) |\n| 侯大利刑侦笔记 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1356983302-881145?p=8866) |\n| 你希望我成为的一切 | 明迪・梅西亚 | [下载](https://url89.ctfile.com/f/31084289-1356983146-2e7f2a?p=8866) |\n| 农场 | 汤姆・罗伯・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1356983131-cc0363?p=8866) |\n| 名侦探的咒缚 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1356982474-92a205?p=8866) |\n| 镇墓兽（全四册） | 蔡骏 | [下载](https://url89.ctfile.com/f/31084289-1357053601-c5f0f4?p=8866) |\n| 名侦探的救赎 | 顾溪亭 | [下载](https://url89.ctfile.com/f/31084289-1357053478-fd88a8?p=8866) |\n| 海明威与骗子工厂 | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357053163-da42f2?p=8866) |\n| 糖与香料 | 萨菲娜・德福奇 | [下载](https://url89.ctfile.com/f/31084289-1357053121-74a2f5?p=8866) |\n| 刀锋上的救赎（增补版） | 指纹 | [下载](https://url89.ctfile.com/f/31084289-1357053079-0512e3?p=8866) |\n| 幽冥 | 小泉八云  | [下载](https://url89.ctfile.com/f/31084289-1357052983-ce2296?p=8866) |\n| 罪全书系列（共6册） | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357052944-2dd9a4?p=8866) |\n| 怒 | 吉田修一 | [下载](https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866) |\n| 纸女孩 | 纪尧姆・米索 | [下载](https://url89.ctfile.com/f/31084289-1357052527-94115f?p=8866) |\n| 对我说谎 | 萨宾・达兰特 | [下载](https://url89.ctfile.com/f/31084289-1357052365-c25084?p=8866) |\n| 侦畸者 | 叶遁 | [下载](https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866) |\n| 低智商犯罪 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357052332-986b2c?p=8866) |\n| 终局者 | 项维 | [下载](https://url89.ctfile.com/f/31084289-1357052302-fcaeb5?p=8866) |\n| 崔老道捉妖：夜闯董妃坟 | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1357052266-3a15a0?p=8866) |\n| 崔老道传奇：三探无底洞 | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1357052254-df0e70?p=8866) |\n| 猎凶记（套装全三册） | 岳勇 | [下载](https://url89.ctfile.com/f/31084289-1357051765-86815f?p=8866) |\n| 月光森林 | 葵田谷 | [下载](https://url89.ctfile.com/f/31084289-1357051471-3cd00f?p=8866) |\n| 美国式谋杀 | 迈克尔・道格拉斯卡林/罗素・普尔 | [下载](https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866) |\n| 漫长的遗忘 | 丹妮尔・蒂埃里 | [下载](https://url89.ctfile.com/f/31084289-1357051135-aff273?p=8866) |\n| 圣天秤星 | 彼得・汉密尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357050919-7cecbb?p=8866) |\n| 金色麦田 | 葵田谷 | [下载](https://url89.ctfile.com/f/31084289-1357050865-0365c7?p=8866) |\n| 碎裂 | 迈克尔・罗伯森 | [下载](https://url89.ctfile.com/f/31084289-1357050394-9ddc9d?p=8866) |\n| 世界推理名家代表作（20全册） | 埃勒里・奎因等 | [下载](https://url89.ctfile.com/f/31084289-1357050307-cc8646?p=8866) |\n| 蝙蝠 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866) |\n| 蟑螂 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866) |\n| 我四十分钟后到家 | 周路明 | [下载](https://url89.ctfile.com/f/31084289-1357049539-8bf2ec?p=8866) |\n| 守夜者2 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357049434-76024d?p=8866) |\n| 魔术江湖2 | 唐四方 | [下载](https://url89.ctfile.com/f/31084289-1357049356-1b7e9b?p=8866) |\n| 守夜者3 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866) |\n| 大魔术师 | 张海帆 | [下载](https://url89.ctfile.com/f/31084289-1357047799-4641cf?p=8866) |\n| 罪案迷城 | 张瑞兴 | [下载](https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866) |\n| 弹弓神警 | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1357046815-9f9c8d?p=8866) |\n| 罪念 | 刚雪印 | [下载](https://url89.ctfile.com/f/31084289-1357045978-23a050?p=8866) |\n| 暖气 | 慢三 | [下载](https://url89.ctfile.com/f/31084289-1357045399-da4010?p=8866) |\n| 富士山禁恋 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357045333-d81815?p=8866) |\n| 怒海妖船 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357045072-9ea87c?p=8866) |\n| 追凶者之萨满疑云 | 管彦杰 | [下载](https://url89.ctfile.com/f/31084289-1357044991-6977b9?p=8866) |\n| 重案追击：悬疑小说精选（套装共12册） | 王文杰等 | [下载](https://url89.ctfile.com/f/31084289-1357044961-601f8e?p=8866) |\n| 活人禁忌 | 九锋 | [下载](https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866) |\n| 天涯双探3：古画寻踪 | 七名 | [下载](https://url89.ctfile.com/f/31084289-1357044214-07f96d?p=8866) |\n| 风之影四部曲 | 卡洛斯・鲁依兹・萨丰 | [下载](https://url89.ctfile.com/f/31084289-1357043113-dd5324?p=8866) |\n| 清明上河图密码（全6册） | 冶文彪 | [下载](https://url89.ctfile.com/f/31084289-1357042804-929cc7?p=8866) |\n| 美国男孩 | 安德鲁・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866) |\n| 网内人 | 陈浩基 | [下载](https://url89.ctfile.com/f/31084289-1357041643-1a89eb?p=8866) |\n| 白日梦 | 老谭 | [下载](https://url89.ctfile.com/f/31084289-1357041352-f3d652?p=8866) |\n| 顶级悬案 | 约翰・道格拉斯/马克・奥尔谢克 | [下载](https://url89.ctfile.com/f/31084289-1357040371-b4acad?p=8866) |\n| 单日人，双日人 | 菲莉西亚・叶 | [下载](https://url89.ctfile.com/f/31084289-1357039492-8a2857?p=8866) |\n| 哈利的十五次人生 | 克莱尔・诺丝 | [下载](https://url89.ctfile.com/f/31084289-1357039090-c3abbc?p=8866) |\n| 游泳课 | 克莱尔・富勒 | [下载](https://url89.ctfile.com/f/31084289-1357038988-b719e8?p=8866) |\n| 第五个死者的告白 | P.D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357038526-c24d0a?p=8866) |\n| 无人生还（精装纪念版） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357038145-3e58ee?p=8866) |\n| 第五个目标 | 白雾 | [下载](https://url89.ctfile.com/f/31084289-1357037845-992b8d?p=8866) |\n| 赤龙 | 苗棣 | [下载](https://url89.ctfile.com/f/31084289-1357037698-7168f4?p=8866) |\n| 本店招牌菜 | 斯坦利・艾林 | [下载](https://url89.ctfile.com/f/31084289-1357037236-89887b?p=8866) |\n| 迷雾中的小镇 | 珍・哈珀 | [下载](https://url89.ctfile.com/f/31084289-1357037104-1302c6?p=8866) |\n| Cell | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357036906-9fb3a8?p=8866) |\n| 复仇者 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866) |\n| 看不见的客人 | 塔娜・法兰奇 | [下载](https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866) |\n| 成化十四年 | 梦溪石 | [下载](https://url89.ctfile.com/f/31084289-1357035892-788349?p=8866) |\n| 脑髓地狱 | 梦野久作 | [下载](https://url89.ctfile.com/f/31084289-1357035817-f5b16f?p=8866) |\n| 谋杀之心 | P. D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357035811-984899?p=8866) |\n| 大仲马俱乐部 | 阿图罗・佩雷斯-雷维特 | [下载](https://url89.ctfile.com/f/31084289-1357035409-35f8e0?p=8866) |\n| 悲探 | 田烨然 | [下载](https://url89.ctfile.com/f/31084289-1357035343-e3cad6?p=8866) |\n| 我与谎言为邻 | 米娅 | [下载](https://url89.ctfile.com/f/31084289-1357035154-f86a21?p=8866) |\n| 法醫·屍體·解剖室（套装共3册） | 道格拉斯．萊爾 | [下载](https://url89.ctfile.com/f/31084289-1357034428-aee5f1?p=8866) |\n| 终南山密码 | 巫童 | [下载](https://url89.ctfile.com/f/31084289-1357033876-257d0b?p=8866) |\n| 焦渴 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866) |\n| 三国谍影（全四册） | 何慕 | [下载](https://url89.ctfile.com/f/31084289-1357033657-64c701?p=8866) |\n| 洛阳危机 | 李纲 | [下载](https://url89.ctfile.com/f/31084289-1357033414-30313e?p=8866) |\n| 绿里 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866) |\n| 闪灵 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866) |\n| 混凝土里的金发女郎 | 迈克尔・康奈利 | [下载](https://url89.ctfile.com/f/31084289-1357033120-c171d5?p=8866) |\n| 肖申克的救赎（纪念珍藏版） | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033099-81dc57?p=8866) |\n| 睡美人（全二册） | 斯蒂芬・金/欧文・金 | [下载](链接未找到) |\n| 邪屋 | 雪莉・杰克逊 | [下载](https://url89.ctfile.com/f/31084289-1357032721-17527f?p=8866) |\n| 花雨枪 | 夏生 | [下载](https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866) |\n| 大唐悬疑录：最后的狄仁杰（全五册） | 唐隐 | [下载](https://url89.ctfile.com/f/31084289-1357032550-262194?p=8866) |\n| 喜鹊谋杀案 | 安东尼・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357032361-2287af?p=8866) |\n| 黑信封 | 诺曼・马内阿 | [下载](链接未找到) |\n| 死钥匙 | D.M.普利 | [下载](https://url89.ctfile.com/f/31084289-1357032289-b14405?p=8866) |\n| 魔术江湖 | 唐四方 | [下载](https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866) |\n| 希区柯克悬念故事集（典藏版） | 阿尔弗莱德・希区柯克 | [下载](https://url89.ctfile.com/f/31084289-1357032016-4bcd4f?p=8866) |\n| 世界经典悬念小说大合集（套装共36册） | 柯南・道尔/希区柯克等 | [下载](https://url89.ctfile.com/f/31084289-1357032007-e4a320?p=8866) |\n| 谁杀了她 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031938-22aa7e?p=8866) |\n| 人类之子 | P.D.詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357031398-7de6ed?p=8866) |\n| 从前我死去的家 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031191-54f037?p=8866) |\n| 黎明之街 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031164-4316c5?p=8866) |\n| 杀局 | 肯尼思・菲林 | [下载](https://url89.ctfile.com/f/31084289-1357031116-8ca6cb?p=8866) |\n| 夏日尽处 | 荷曼・柯赫 | [下载](https://url89.ctfile.com/f/31084289-1357030960-3f8658?p=8866) |\n| 钟塔杀人事件 | 青稞 | [下载](https://url89.ctfile.com/f/31084289-1357030741-bf8a14?p=8866) |\n| 长夜将至 | 夏阳 | [下载](https://url89.ctfile.com/f/31084289-1357030720-355e2e?p=8866) |\n| 隐僧 | 马鸣谦 | [下载](https://url89.ctfile.com/f/31084289-1357029931-767c9c?p=8866) |\n| 诗人 | 迈克尔・康奈利 | [下载](https://url89.ctfile.com/f/31084289-1357029874-6d65f7?p=8866) |\n| 破绽 | 刘天壮 | [下载](https://url89.ctfile.com/f/31084289-1357029829-454eb2?p=8866) |\n| 生吞 | 郑执 | [下载](https://url89.ctfile.com/f/31084289-1357029547-23ac4c?p=8866) |\n| 十九年间谋杀小叙 | 那多 | [下载](https://url89.ctfile.com/f/31084289-1357029544-25e397?p=8866) |\n| 球形的荒野 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357029529-9062a6?p=8866) |\n| 无声尖叫 | 安杰拉・马森斯 | [下载](https://url89.ctfile.com/f/31084289-1357029400-e9abf7?p=8866) |\n| 谋杀狄更斯 | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357029187-e28d8c?p=8866) |\n| 我嫁给了一个死人 | 康奈尔・伍尔里奇 | [下载](https://url89.ctfile.com/f/31084289-1357028947-dc320b?p=8866) |\n| 黑暗诱惑 | 劳瑞斯・安妮・怀特 | [下载](https://url89.ctfile.com/f/31084289-1357028851-01a788?p=8866) |\n| 只有他知道一切 | 利兹・纽金特 | [下载](https://url89.ctfile.com/f/31084289-1357027873-fe0d3b?p=8866) |\n| 案发现场 | 夏立楠 | [下载](https://url89.ctfile.com/f/31084289-1357027852-c861dc?p=8866) |\n| 关上门以后 | B.A.帕里斯 | [下载](https://url89.ctfile.com/f/31084289-1357027528-6941ca?p=8866) |\n| 致命绑架 | T.R.蕾根 | [下载](https://url89.ctfile.com/f/31084289-1357027393-6fd896?p=8866) |\n| 十宗罪3 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357027291-d26495?p=8866) |\n| 黑城 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357027018-59ae1b?p=8866) |\n| 大侦探波洛探案全集 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357026937-aadc2c?p=8866) |\n| 天涯双探2：暴雪荒村 | 七名 | [下载](https://url89.ctfile.com/f/31084289-1357026853-dd49e0?p=8866) |\n| 亲爱的妹妹 | 罗莎蒙德・勒普顿 | [下载](https://url89.ctfile.com/f/31084289-1357026841-1d5453?p=8866) |\n| 蚕 | J·K·罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357026697-b1a344?p=8866) |\n| 控梦东京 | 汤介生 | [下载](https://url89.ctfile.com/f/31084289-1357026226-d799c7?p=8866) |\n| 真相推理师：凶宅 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357025707-e82630?p=8866) |\n| 匠擎第一卷：闻香 | 邪灵一把刀 | [下载](https://url89.ctfile.com/f/31084289-1357025590-9aa211?p=8866) |\n| 小心，沙漠有人 | 沃尔夫冈・赫伦多夫 | [下载](https://url89.ctfile.com/f/31084289-1357025356-e71578?p=8866) |\n| 昨日重现 | 张寒寺 | [下载](https://url89.ctfile.com/f/31084289-1357025080-f26716?p=8866) |\n| 必须牺牲卡米尔 | 皮耶尔・勒迈特 | [下载](https://url89.ctfile.com/f/31084289-1357025026-1615ad?p=8866) |\n| 宋慈洗冤录：一天明月 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357024972-ddecbb?p=8866) |\n| 宋慈洗冤录：满怀冰雪 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357024981-db0d77?p=8866) |\n| 天涯双探：青衣奇盗 | 七名 | [下载](https://url89.ctfile.com/f/31084289-1357024957-78b9a0?p=8866) |\n| 阁楼里的女孩 | 弗吉尼亚・安德鲁斯 | [下载](https://url89.ctfile.com/f/31084289-1357024612-a7d190?p=8866) |\n| 无证之罪 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357024528-07ae8b?p=8866) |\n| 真相推理师：破镜 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357024255-988eff?p=8866) |\n| 刺局（全六册） | 圆太极 | [下载](https://url89.ctfile.com/f/31084289-1357024114-fe0171?p=8866) |\n| 大象无形 | 泽帆 | [下载](https://url89.ctfile.com/f/31084289-1357023754-5c70fc?p=8866) |\n| 海面之下 | 克莱尔・道格拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357023733-847d94?p=8866) |\n| 克里斯汀 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357023559-14c275?p=8866) |\n| 红色 | 徐兵 | [下载](https://url89.ctfile.com/f/31084289-1357023499-da43d2?p=8866) |\n| 钓鱼城 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357023424-cc84f3?p=8866) |\n| 记忆迷踪 | 启山 | [下载](https://url89.ctfile.com/f/31084289-1357023262-aad346?p=8866) |\n| 护士学院杀人事件 | P.D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357023211-d473df?p=8866) |\n| 守夜 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357022944-f7c29a?p=8866) |\n| 真相推理师：嬗变 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357022878-0c6f47?p=8866) |\n| 真相推理师：幸存 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357022872-4eb748?p=8866) |\n| 她不是我妈妈 | 米歇尔・普西 | [下载](https://url89.ctfile.com/f/31084289-1357022791-6f413a?p=8866) |\n| 天使安魂三部曲 | 安德鲁・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357022779-c4d931?p=8866) |\n| 越狱者 | 迈克尔・罗伯森 | [下载](https://url89.ctfile.com/f/31084289-1357022788-46d327?p=8866) |\n| 危险的妻子 | 卡洛琳・艾瑞克森 | [下载](https://url89.ctfile.com/f/31084289-1357022428-864380?p=8866) |\n| 十宗罪2 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357022272-fa2c80?p=8866) |\n| 江户川乱步严选作品集（全13册） | 江户川乱步 | [下载](https://url89.ctfile.com/f/31084289-1357022008-610644?p=8866) |\n| 夜行 | 藤萍 | [下载](https://url89.ctfile.com/f/31084289-1357021792-b895c1?p=8866) |\n| 此刻不要回头 | 达芙妮・杜穆里埃 | [下载](https://url89.ctfile.com/f/31084289-1357021612-7599fd?p=8866) |\n| 使徒：迷失者的续命游戏 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357021576-539d1a?p=8866) |\n| 夜行：黄雀 | 藤萍 | [下载](https://url89.ctfile.com/f/31084289-1357021309-12556b?p=8866) |\n| 兰亭序杀局3：长安乱 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357021201-81e2a3?p=8866) |\n| 沙海：荒沙诡影 | 南派三叔 | [下载](https://url89.ctfile.com/f/31084289-1357020958-faed28?p=8866) |\n| 肯·福莱特悬疑经典第三辑（全5册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357020748-afeb18?p=8866) |\n| 按需知密 | 卡伦・克利夫兰 | [下载](https://url89.ctfile.com/f/31084289-1357020700-1334e6?p=8866) |\n| 冰岛人 |  大卫・W・斯托克斯 | [下载](https://url89.ctfile.com/f/31084289-1357020688-c01e06?p=8866) |\n| 午夜琴声 | 米克尔・圣地亚哥 | [下载](https://url89.ctfile.com/f/31084289-1357020685-c8c4cf?p=8866) |\n| 嗜血法医（1-4季全集） | 杰夫・林赛 | [下载](https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866) |\n| 追踪师：隐身术 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357019731-80213a?p=8866) |\n| 火神 | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1357019512-f9a3d9?p=8866) |\n| 她一生的秘密 | 凯特・莫顿 | [下载](https://url89.ctfile.com/f/31084289-1357019461-955552?p=8866) |\n| 窗里的女人 | A.J.费恩  | [下载](https://url89.ctfile.com/f/31084289-1357019425-42859a?p=8866) |\n| 火车上的女孩 | 宝拉・霍金斯 | [下载](https://url89.ctfile.com/f/31084289-1357019158-dd2452?p=8866) |\n| 冷案重启 | 樊落 | [下载](https://url89.ctfile.com/f/31084289-1357018711-c54542?p=8866) |\n| 冷案重启2逝者之证 | 樊落 | [下载](https://url89.ctfile.com/f/31084289-1357018708-977e8b?p=8866) |\n| 知更鸟 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357018600-b9d116?p=8866) |\n| 召唤：沃伦夫妇的惊凶职业实录 | 杰拉德・布利特尔 | [下载](https://url89.ctfile.com/f/31084289-1357018570-279333?p=8866) |\n| 松本清张推理悬疑典藏版合集（套装共7册） | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357018183-4e0feb?p=8866) |\n| 肯·福莱特悬疑经典第二辑（全5册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357018117-10f5b0?p=8866) |\n| 识骨女法医 | 肯德拉・艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357017739-a00298?p=8866) |\n| 大唐悬疑录2：璇玑图密码 | 唐隐 | [下载](https://url89.ctfile.com/f/31084289-1357017577-a5db59?p=8866) |\n| 大唐悬疑录3：长恨歌密码 | 唐隐 | [下载](https://url89.ctfile.com/f/31084289-1357017571-2b8e05?p=8866) |\n| 大唐悬疑录4：大明宫密码 | 唐隐 | [下载](https://url89.ctfile.com/f/31084289-1357017565-8c3d16?p=8866) |\n| 必须找到阿历克斯 | 皮耶尔・勒迈特 | [下载](https://url89.ctfile.com/f/31084289-1357017547-046ce1?p=8866) |\n| 北洋夜行记 | 金醉 | [下载](https://url89.ctfile.com/f/31084289-1357017403-e378a6?p=8866) |\n| 白金数据 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357017106-48640e?p=8866) |\n| 假面山庄 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357017007-44c053?p=8866) |\n| 大漠苍狼全集 | 南派三叔 | [下载](https://url89.ctfile.com/f/31084289-1357016647-7f7bd1?p=8866) |\n| 长夜难明 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357016476-b7c91b?p=8866) |\n| 半妖司藤 | 尾鱼 | [下载](https://url89.ctfile.com/f/31084289-1357016350-8e1316?p=8866) |\n| 一个神秘事件调查员的秘密笔记（套装6册） | 湘西鬼王 | [下载](https://url89.ctfile.com/f/31084289-1357016068-93c839?p=8866) |\n| 公寓 | 格雷 | [下载](https://url89.ctfile.com/f/31084289-1357015885-639546?p=8866) |\n| 兰亭序杀局1：玄甲卫 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357015480-7833f1?p=8866) |\n| 兰亭序杀局2：天刑劫 | 王觉仁 | [下载](https://url89.ctfile.com/f/31084289-1357015471-7c9244?p=8866) |\n| 拼布娃娃 | 丹尼尔・科尔 | [下载](https://url89.ctfile.com/f/31084289-1357015456-f0ae77?p=8866) |\n| 朝圣者 | 泰瑞・海耶斯 | [下载](https://url89.ctfile.com/f/31084289-1357015393-6c6f8d?p=8866) |\n| 轩辕诀（全四册） | 茶弦 | [下载](https://url89.ctfile.com/f/31084289-1357015144-667e1c?p=8866) |\n| 十宗罪前传 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357014943-24df7d?p=8866) |\n| 暗杀大师：寻找伦勃朗 | 丹尼尔・席尔瓦 | [下载](https://url89.ctfile.com/f/31084289-1357014790-61ef46?p=8866) |\n| 封锁 | 小白 | [下载](https://url89.ctfile.com/f/31084289-1357014763-d4c655?p=8866) |\n| 知更鸟女孩 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357014685-b41a25?p=8866) |\n| 知更鸟女孩2：沉默之歌 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357014682-90a977?p=8866) |\n| 隐形解体的传说 | 暗布烧 | [下载](https://url89.ctfile.com/f/31084289-1357014667-09665e?p=8866) |\n| 宛如昨日 | 蔡骏 | [下载](https://url89.ctfile.com/f/31084289-1357014523-22941d?p=8866) |\n| 双峰：神秘史 | 马克・弗罗斯特 | [下载](https://url89.ctfile.com/f/31084289-1357014412-cd4665?p=8866) |\n| 半身侦探2 | 暗布烧 | [下载](https://url89.ctfile.com/f/31084289-1357014328-08fde8?p=8866) |\n| 半身侦探3 | 暗布烧 | [下载](https://url89.ctfile.com/f/31084289-1357014313-615c25?p=8866) |\n| 明镜之书 | 尤金・欧・切洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357013845-ee2042?p=8866) |\n| 十宗罪5 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357013539-bb0b0c?p=8866) |\n| 别相信任何人 | S.J.沃森 | [下载](https://url89.ctfile.com/f/31084289-1357013503-50bdc4?p=8866) |\n| 白夜追凶 | 指纹 | [下载](https://url89.ctfile.com/f/31084289-1357012603-73ece6?p=8866) |\n| 螺旋之谜 | 圣地亚哥・帕哈雷斯 | [下载](https://url89.ctfile.com/f/31084289-1357012579-c32ac7?p=8866) |\n| 我们掩埋的人生 | 艾伦・艾丝肯斯 | [下载](https://url89.ctfile.com/f/31084289-1357012543-04bf40?p=8866) |\n| 灭顶之灾 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012426-b28838?p=8866) |\n| 镜子里的陌生人 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012408-160c95?p=8866) |\n| 告诉我你的梦 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012423-329754?p=8866) |\n| 祸起萧墙 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012396-eaa984?p=8866) |\n| 偷窥者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357012312-787a2f?p=8866) |\n| 警察 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357012075-898a34?p=8866) |\n| 暗处 | 吉莉安・弗琳 | [下载](https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866) |\n| 十三狱 | 宁三意 | [下载](https://url89.ctfile.com/f/31084289-1357011406-15280c?p=8866) |\n| 桐花中路私立协济医院怪谈 | 南琅 | [下载](https://url89.ctfile.com/f/31084289-1357010827-a4a422?p=8866) |\n| 案藏玄机（全三册） | 费克申 | [下载](https://url89.ctfile.com/f/31084289-1357010836-3b043a?p=8866) |\n| 幽灵 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357010515-8f34ca?p=8866) |\n| 欧美必读悬疑小说（勒普顿三部曲） | 罗莎蒙德・勒普顿 | [下载](https://url89.ctfile.com/f/31084289-1357010395-ddb236?p=8866) |\n| 完美圈套 | 莎拉・平博拉夫 | [下载](https://url89.ctfile.com/f/31084289-1357010317-e7c3c5?p=8866) |\n| 金沙古卷（套装全4册） | 鱼离泉 | [下载](https://url89.ctfile.com/f/31084289-1357009879-c71aec?p=8866) |\n| 直到那一天 | 米歇尔・普西 | [下载](https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866) |\n| 七根凶简 | 尾鱼 | [下载](https://url89.ctfile.com/f/31084289-1357009606-e25f36?p=8866) |\n| 妹妹的坟墓 | 罗伯特・杜格尼 | [下载](https://url89.ctfile.com/f/31084289-1357009549-e0506b?p=8866) |\n| 斗宴 | 周浩晖 | [下载](https://url89.ctfile.com/f/31084289-1357009405-ada596?p=8866) |\n| S.（简体中文典藏复刻版） | 艾布拉姆斯/道格・道斯特  | [下载](https://url89.ctfile.com/f/31084289-1357009492-298aa7?p=8866) |\n| 龙文身的女孩 | 斯蒂格・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357009378-d34fd6?p=8866) |\n| 玩火的女孩 | 斯蒂格・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357009372-a23441?p=8866) |\n| 直捣蜂窝的女孩 | 斯蒂格・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357009360-520652?p=8866) |\n| 交子 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357009318-386aa1?p=8866) |\n| 守夜者：罪案终结者的觉醒 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357009135-83443d?p=8866) |\n| 上帝的间谍 | 胡安・高美 | [下载](https://url89.ctfile.com/f/31084289-1357009054-f7ad79?p=8866) |\n| 与上帝的契约 | 胡安・高美 | [下载](https://url89.ctfile.com/f/31084289-1357009048-abcb1c?p=8866) |\n| 龙砚：绝命追踪83天 | 澹台镜 | [下载](https://url89.ctfile.com/f/31084289-1357008679-d6db08?p=8866) |\n| 幻夜行 | 谷神冥 | [下载](https://url89.ctfile.com/f/31084289-1357008475-bfb778?p=8866) |\n| 怪屋女孩 | 兰萨姆・里格斯 | [下载](https://url89.ctfile.com/f/31084289-1357008331-4ae033?p=8866) |\n| 怪屋女孩2：空城 | 兰萨姆・里格斯 | [下载](https://url89.ctfile.com/f/31084289-1357008328-d243c1?p=8866) |\n| 重生 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357008217-788327?p=8866) |\n| 迷雾中的小径 | 珍・哈珀 | [下载](https://url89.ctfile.com/f/31084289-1357008196-9443bb?p=8866) |\n| 被囚禁的女孩 | 香农・柯克 | [下载](https://url89.ctfile.com/f/31084289-1357008124-8a508a?p=8866) |\n| 别和她说话 | 遇瑾 | [下载](https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866) |\n| 暗黑神探 | 何马 | [下载](https://url89.ctfile.com/f/31084289-1357007983-3adaee?p=8866) |\n| 风暴岛 | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357007962-abffe2?p=8866) |\n| 银行家的情人 | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357007959-2bd28b?p=8866) |\n| 风的预谋 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007965-39fae5?p=8866) |\n| 迷宫蛛 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007929-055c31?p=8866) |\n| 朱雀堂 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866) |\n| 雪人 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866) |\n| 眼镜蛇事件 | 理查德・普莱斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357007788-93da89?p=8866) |\n| 长江的密咒 | 古官 | [下载](https://url89.ctfile.com/f/31084289-1357007782-6d755c?p=8866) |\n| 长安十二时辰（上下册） | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357007776-effb94?p=8866) |\n| 十宗罪4 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866) |\n| 虫图腾（套装共5册） | 闫志洋 | [下载](https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866) |\n| 诡案罪（1-8册全） | 岳勇 | [下载](https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866) |\n| 猎豹（全二册） | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866) |\n| 活肝 | 徐然 | [下载](https://url89.ctfile.com/f/31084289-1357007356-185e81?p=8866) |\n| 木锡镇 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007266-6d2760?p=8866) |\n| 黑背鱼之谜 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866) |\n| 猎鲨游戏之十重人格女孩 | 王健霖 | [下载](https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866) |\n| 三十九级台阶 | 约翰・巴肯 | [下载](https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866) |\n| 雾中回忆 | 凯特・莫顿 | [下载](https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866) |\n| 心理罪（套装共5册） | 雷米 | [下载](https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866) |\n| 空中杀人现场 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357007131-989aa8?p=8866) |\n| 我当道士那些年 | 仐三 | [下载](https://url89.ctfile.com/f/31084289-1357006999-908522?p=8866) |\n| 消失的爱人 | 吉莉安・弗琳 | [下载](https://url89.ctfile.com/f/31084289-1357006969-e58bb7?p=8866) |\n| 鲁班的诅咒（珍藏版大全集） | 圆太极 | [下载](https://url89.ctfile.com/f/31084289-1357006924-c1b431?p=8866) |\n| 黑暗领域 | 薇儿·麦克德米德 | [下载](https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866) |\n| 暗杀1905大合集（共3册） | 巫童 | [下载](https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866) |\n| 一个背叛日本的日本人 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357006684-51a287?p=8866) |\n| 大唐悬疑录：兰亭序密码 | 唐隐 | [下载](https://url89.ctfile.com/f/31084289-1357006669-bfc526?p=8866) |\n| 民调局异闻录1：苗乡巫祖 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006627-77614f?p=8866) |\n| 民调局异闻录2：清河鬼戏 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006624-d57c2b?p=8866) |\n| 民调局异闻录3：血海鬼船 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006621-9caf12?p=8866) |\n| 民调局异闻录4：亡魂列车 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006618-334515?p=8866) |\n| 民调局异闻录5：赌城妖灵 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006615-c3e5c9?p=8866) |\n| 民调局异闻录6：无边冥界 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006612-8ac654?p=8866) |\n| 溥仪藏宝录 | 景旭枫 | [下载](https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866) |\n| 溥仪藏宝录2：最后的复辟挣扎 | 景旭枫 | [下载](https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866) |\n| 尸案调查科系列（全5册） | 九滴水 | [下载](https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866) |\n| 国家阴谋5：火焰王子 | 丹尼尔・席尔瓦 | [下载](https://url89.ctfile.com/f/31084289-1357006324-542463?p=8866) |\n| 麻雀 | 海飞 | [下载](https://url89.ctfile.com/f/31084289-1357006330-3fd9d3?p=8866) |\n| 湖畔 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006276-021007?p=8866) |\n| 梦幻花 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006285-d59ca9?p=8866) |\n| 太阳黑子 | 须一瓜 | [下载](https://url89.ctfile.com/f/31084289-1357006282-cd6c39?p=8866) |\n| 十宗罪 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866) |\n| 狄仁杰探案合集 | 安娜芳芳 | [下载](https://url89.ctfile.com/f/31084289-1357006201-8b8292?p=8866) |\n| 紫禁城魔咒（套装全三册） | 简千艾 | [下载](https://url89.ctfile.com/f/31084289-1357006153-a21e3d?p=8866) |\n| 死亡性插图 | 凿壁小妖 | [下载](https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866) |\n| 幻夜 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006108-1a3150?p=8866) |\n| 杀人之门 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006096-17ed58?p=8866) |\n| X密码 | 何马 | [下载](https://url89.ctfile.com/f/31084289-1357006093-af6566?p=8866) |\n| 遗族 | 缪热 | [下载](https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866) |\n| 异域密码大全集（套装共四册） | 羊行屮 | [下载](https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866) |\n| 国家阴谋：复仇天使四部曲 | 丹尼尔・席尔瓦 | [下载](https://url89.ctfile.com/f/31084289-1357006003-518eb4?p=8866) |\n| 假面饭店 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005967-2f931b?p=8866) |\n| 女法医之尸体加工厂 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866) |\n| 女法医之活体贩卖者 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866) |\n| 藏地密码（珍藏版大全集） | 何马 | [下载](https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866) |\n| 白夜行 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005571-dd15d9?p=8866) |\n| 嫌疑人X的献身 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005562-da1f3c?p=8866) |\n| 恶意 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005559-8e2a02?p=8866) |\n| 放学后 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005553-facaec?p=8866) |\n| 盗墓笔记（插图版） | 南派三叔 | [下载](https://url89.ctfile.com/f/31084289-1357005646-e7641b?p=8866) |\n| 7本书带你走进间谍圈（全七册） | 弗·福赛斯 | [下载](https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866) |\n| 和氏璧 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866) |\n| 明宫奇案 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866) |\n| 斧声烛影 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866) |\n| 三国机密（全两册） | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005370-675bdc?p=8866) |\n| 大汉公主 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005241-e78c9b?p=8866) |\n| 案藏杀机：清代四大奇案卷宗 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005223-8942a8?p=8866) |\n| 敦煌：碧海青天 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005196-b63054?p=8866) |\n| 孔雀胆 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866) |\n| 大唐游侠 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866) |\n| 战襄阳 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005190-4212a2?p=8866) |\n| 鱼玄机 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866) |\n| 柳如是：柳色独秀 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005166-82c235?p=8866) |\n| 连环罪：心里有诡系列（上下册） | 墨绿青苔 | [下载](https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866) |\n| 古董局中局（全四册） | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005145-bf3740?p=8866) |\n| 女法医之骨头收藏家 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866) |\n| 鬼吹灯全集（插图版） | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1357004863-5bc405?p=8866) |\n| 幸存者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866) |\n| 清道夫 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866) |\n| 第十一根手指 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866) |\n| 无声的证词 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866) |\n| 尸语者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866) |\n"
  },
  {
    "path": "md/情商.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 情商\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 心理自助CBT书系（套装共七册） | 萨万・辛格等 | [下载](https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866) |\n| 情绪力 | 萨姆・阿利布兰多 | [下载](https://url89.ctfile.com/f/31084289-1375511164-6145a4?p=8866) |\n| 尬聊终结者 | 庄舒涵 | [下载](https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866) |\n| 情商大师（息怒篇） | 伯纳德・金 | [下载](https://url89.ctfile.com/f/31084289-1356995122-6c3798?p=8866) |\n| 情绪革命 | 约翰・辛德莱尔 | [下载](https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866) |\n| 你的情商，决定你的人生高度 | 心屋仁之助 | [下载](https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866) |\n| 自控力（经典套装三册） | 凯利・麦格尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866) |\n| 全脑演讲 | 大卫祁 | [下载](https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866) |\n| 所谓情商高，就是会说话 | 佐佐木圭一 | [下载](https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866) |\n| 共情的力量 | 亚瑟・乔拉米卡利/凯瑟琳・柯茜 | [下载](https://url89.ctfile.com/f/31084289-1357050907-8e105b?p=8866) |\n| 管理是个技术活 | 芭芭拉・米切尔/科妮莉亚・甘伦 | [下载](https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866) |\n| 高情商领导力 | 丹尼尔・戈尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357047655-a6a7d1?p=8866) |\n| FBI微情绪心理学（若水集） | 金圣荣 | [下载](https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866) |\n| 聪明的人，从来不会输给情绪 | 卫伟楠/Brent | [下载](https://url89.ctfile.com/f/31084289-1357046419-e5175d?p=8866) |\n| 高情商者会谈判 | 冯岳宁 | [下载](https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866) |\n| 别输在不会拒绝上 | 李劲 | [下载](https://url89.ctfile.com/f/31084289-1357039504-02bd56?p=8866) |\n| 从受欢迎到被需要 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866) |\n| 情绪断舍离 | 加勒特・克莱默 | [下载](https://url89.ctfile.com/f/31084289-1357031341-1b6ca6?p=8866) |\n| 情商（全六册） | 丹尼尔・戈尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357024453-d6e5b5?p=8866) |\n| 所谓高情商，就是有趣和知趣 | 李林坪 | [下载](https://url89.ctfile.com/f/31084289-1357019842-a3c50e?p=8866) |\n| 销售就是要玩转情商 | 科林・斯坦利 | [下载](https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866) |\n"
  },
  {
    "path": "md/情感.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 情感\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 无所畏惧：颠覆你内心的脆弱 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1375510027-601beb?p=8866) |\n| 当爱变成了情感操纵 | 佐治·K.西蒙 | [下载](https://url89.ctfile.com/f/31084289-1356995245-aa31a6?p=8866) |\n| 再见了，伊藤君 | 柚木麻子 | [下载](https://url89.ctfile.com/f/31084289-1356991435-181d4c?p=8866) |\n| 匿名区+1 | 匿名用户 | [下载](https://url89.ctfile.com/f/31084289-1356986368-d69b14?p=8866) |\n| 斯德哥尔摩情人 | 陆俊文 | [下载](https://url89.ctfile.com/f/31084289-1356985576-dc8c8a?p=8866) |\n| 巧合制造师 | 约夫・布卢姆 | [下载](https://url89.ctfile.com/f/31084289-1356984553-fa83dc?p=8866) |\n| 为何爱会伤人（珍藏版） | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866) |\n| 当我离开你 | 艾米莉・布勒克尔 | [下载](https://url89.ctfile.com/f/31084289-1357049989-793bfd?p=8866) |\n| 赶路人 | 李小晓 | [下载](https://url89.ctfile.com/f/31084289-1357048240-d3013a?p=8866) |\n| 二次吸引 | “小鹿情感”专家组 | [下载](https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866) |\n| 最好的我 | 尼古拉斯・斯帕克思 | [下载](https://url89.ctfile.com/f/31084289-1357032226-eda2d2?p=8866) |\n| 情感勒索 | 苏珊・福沃德 | [下载](https://url89.ctfile.com/f/31084289-1357021204-0a1bfc?p=8866) |\n| 偶遇 | 陈鲁豫 | [下载](https://url89.ctfile.com/f/31084289-1357017523-714fb8?p=8866) |\n| 爱到绝处便逢生 | 卢悦 | [下载](https://url89.ctfile.com/f/31084289-1357013566-43e5ee?p=8866) |\n| 爱，不释手 | 琳・斯蒂格・斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357010044-9bddf2?p=8866) |\n| 莉莉和章鱼 | 史蒂文・罗利 | [下载](https://url89.ctfile.com/f/31084289-1357009783-3b87ff?p=8866) |\n| 男人来自火星，女人来自金星（套装共4册） | 约翰・格雷 | [下载](https://url89.ctfile.com/f/31084289-1357009642-8a90b2?p=8866) |\n| 外婆的道歉信 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357008808-17d5d1?p=8866) |\n| 告别天堂 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357008511-0969ee?p=8866) |\n| 芙蓉如面柳如眉 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357008502-5170e3?p=8866) |\n| 先谋生，再谋爱 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866) |\n"
  },
  {
    "path": "md/情报.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 情报\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 暗黑之门 | 理查德・阿尔德里奇/罗里・科马克 | [下载](https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866) |\n| 美国情报界 | 杰弗瑞・理查尔森 | [下载](https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866) |\n| 不完美风暴 | 迈克尔・莫雷尔/比尔・哈洛 | [下载](https://url89.ctfile.com/f/31084289-1357020889-6c92fe?p=8866) |\n"
  },
  {
    "path": "md/情绪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 情绪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 心理自助CBT书系（套装共七册） | 萨万・辛格等 | [下载](https://url89.ctfile.com/f/31084289-1375508560-6af14d?p=8866) |\n| 蛤蟆先生去看心理医生 | 罗伯特・戴博德 | [下载](https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866) |\n| 暗理性：如何掌控情绪 | 卫蓝 | [下载](https://url89.ctfile.com/f/31084289-1375511197-369a4f?p=8866) |\n| 你的第一本抑郁自救指南 | 所长任有病 | [下载](https://url89.ctfile.com/f/31084289-1357002313-9ae195?p=8866) |\n| 超越你的大脑 | 玛莎・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357000276-6ec305?p=8866) |\n| 情绪革命 | 约翰・辛德莱尔 | [下载](https://url89.ctfile.com/f/31084289-1356992041-a9d014?p=8866) |\n| 别让情绪毁了你的努力 | 剑圣喵大师 | [下载](https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866) |\n| 自控力：人生自救课 | 博锋 | [下载](https://url89.ctfile.com/f/31084289-1356991816-6657bc?p=8866) |\n| 心理学与情商 | 张小宁 | [下载](https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866) |\n| 自控：如何成为一个冷静智慧的人 | 董小楠 | [下载](https://url89.ctfile.com/f/31084289-1357052524-78de4c?p=8866) |\n| 关系黑洞 | 周慕姿 | [下载](https://url89.ctfile.com/f/31084289-1357047640-dc0f46?p=8866) |\n| FBI微情绪心理学（若水集） | 金圣荣 | [下载](https://url89.ctfile.com/f/31084289-1357046545-5f65cd?p=8866) |\n| 聪明的人，从来不会输给情绪 | 卫伟楠/Brent | [下载](https://url89.ctfile.com/f/31084289-1357046419-e5175d?p=8866) |\n| 大脑的情绪生活 | 理查德・戴维森/莎朗・伯格利 | [下载](https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866) |\n| 驾驭情绪的力量 | 珍妮弗・泰兹 | [下载](https://url89.ctfile.com/f/31084289-1357044859-b247ca?p=8866) |\n| 焦虑型人格自救手册 | 安娜・威廉姆森等 | [下载](https://url89.ctfile.com/f/31084289-1357040062-b694e0?p=8866) |\n| 匿名区 | 匿名用户 | [下载](https://url89.ctfile.com/f/31084289-1357038982-74f6e2?p=8866) |\n| 超效自控 | 魏冰冰 | [下载](https://url89.ctfile.com/f/31084289-1357035580-026207?p=8866) |\n| 拜拜吧，小情绪 | 艾里 | [下载](https://url89.ctfile.com/f/31084289-1357031779-3f1401?p=8866) |\n| 情绪断舍离 | 加勒特・克莱默 | [下载](https://url89.ctfile.com/f/31084289-1357031341-1b6ca6?p=8866) |\n| 消极情绪的力量 | 托德・卡什丹 | [下载](https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866) |\n| 事实 | 汉斯・罗斯林/欧拉・罗斯林 | [下载](https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866) |\n| 制怒心理学 | 罗纳德・波特-埃弗隆 | [下载](https://url89.ctfile.com/f/31084289-1357030054-592833?p=8866) |\n| 情绪 | 莉莎・费德曼・巴瑞特 | [下载](https://url89.ctfile.com/f/31084289-1357028908-566a52?p=8866) |\n| 情绪是什么 | 乔瓦尼・弗契多 | [下载](https://url89.ctfile.com/f/31084289-1357028149-1fa93a?p=8866) |\n| 别相信他的脸 | 亚历山大・托多罗夫 | [下载](https://url89.ctfile.com/f/31084289-1357027891-8dcd80?p=8866) |\n| 内在成长 | 塔玛・琼斯基 | [下载](https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866) |\n| 活下去的理由 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866) |\n| 别让直性子毁了你 | 冠诚 | [下载](https://url89.ctfile.com/f/31084289-1357024201-97cdf0?p=8866) |\n| 麦肯锡精英系列（共五册） | 高杉尚孝等 | [下载](https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866) |\n| 内心平静，才能快速行动 | 碧姬・德吕蒂 | [下载](https://url89.ctfile.com/f/31084289-1357015150-d48231?p=8866) |\n"
  },
  {
    "path": "md/情色.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 情色\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 芬妮·希尔 | 约翰・克利兰 | [下载](https://url89.ctfile.com/f/31084289-1357024696-f27937?p=8866) |\n| 罗马爱经（企鹅经典） | 奥维德 | [下载](https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866) |\n| 好色的哈姆雷特 | 小白 | [下载](https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866) |\n"
  },
  {
    "path": "md/惊悚.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 惊悚\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 约翰的预言 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357053016-dca2af?p=8866) |\n| 活人禁忌 | 九锋 | [下载](https://url89.ctfile.com/f/31084289-1357044412-d06979?p=8866) |\n| 粉笔人 | C.J.图德 | [下载](https://url89.ctfile.com/f/31084289-1357042825-f56dbd?p=8866) |\n| 欢迎来到黑泉镇 | 托马斯・奥尔德・赫维尔特 | [下载](https://url89.ctfile.com/f/31084289-1357034671-16eada?p=8866) |\n| 环界（套装共4册） | 铃木光司 | [下载](https://url89.ctfile.com/f/31084289-1357033525-63923d?p=8866) |\n| 丽赛的故事 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033405-037d31?p=8866) |\n| 捕梦网 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033348-e0226f?p=8866) |\n| 闪灵 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033204-0392f3?p=8866) |\n| 宠物公墓 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357029295-453cf7?p=8866) |\n| 荆棘与白骨的王国（全4册） | 格里格・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1357023694-8bd945?p=8866) |\n| 全球悬疑大师典藏合集（全19册） | 斯蒂芬・金等 | [下载](https://url89.ctfile.com/f/31084289-1357019833-298e5f?p=8866) |\n| 魔鬼在你身后（套装全3册） | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357017280-4eab29?p=8866) |\n| 阿修罗系列惊悚小说三部曲 | 吉莉安・弗琳 | [下载](https://url89.ctfile.com/f/31084289-1357013029-d113e7?p=8866) |\n| 河神·鬼水怪谈 | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1357010197-a492df?p=8866) |\n| 它（全2册） | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357008799-057004?p=8866) |\n| 猎鲨游戏之十重人格女孩 | 王健霖 | [下载](https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866) |\n| 溥仪藏宝录 | 景旭枫 | [下载](https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866) |\n| 溥仪藏宝录2：最后的复辟挣扎 | 景旭枫 | [下载](https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866) |\n| 遗族 | 缪热 | [下载](https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866) |\n"
  },
  {
    "path": "md/想读.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 想读\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 领导力思维 | 珍妮弗・加维・伯格/基斯・约翰斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866) |\n"
  },
  {
    "path": "md/想象力.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 想象力\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 和毕加索一起淋浴 | 克里斯蒂安・斯塔迪尔等 | [下载](https://url89.ctfile.com/f/31084289-1357043851-e244ae?p=8866) |\n"
  },
  {
    "path": "md/意大利.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 意大利\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鞋带 | 多梅尼科・斯塔尔诺内 | [下载](https://url89.ctfile.com/f/31084289-1357002025-658d6b?p=8866) |\n| 古罗马的日常生活 | 阿尔贝托・安杰拉 | [下载](https://url89.ctfile.com/f/31084289-1357051585-f2031e?p=8866) |\n| 魔法外套 | 迪诺・布扎蒂 | [下载](https://url89.ctfile.com/f/31084289-1357051177-97588d?p=8866) |\n| 疯狂的奥兰多 | 卢多维科・阿里奥斯托 | [下载](https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866) |\n| 被弃养的女孩 | 多娜泰拉・迪皮耶特兰托尼奥 | [下载](https://url89.ctfile.com/f/31084289-1357046107-0c342f?p=8866) |\n| 罗马故事 | 阿尔贝托・莫拉维亚 | [下载](https://url89.ctfile.com/f/31084289-1357045699-a7a41a?p=8866) |\n| 纸上威尼斯 | 亚历山德罗・马尔佐・马尼奥 | [下载](https://url89.ctfile.com/f/31084289-1357044865-394d1a?p=8866) |\n| 覆舟的愉悦 | 朱塞培・翁加雷蒂 | [下载](https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866) |\n| 当你老去 | 伊塔洛・斯韦沃 | [下载](https://url89.ctfile.com/f/31084289-1357043218-37b8f5?p=8866) |\n| 如何看懂艺术2 | 翁昕 | [下载](https://url89.ctfile.com/f/31084289-1357042954-894e44?p=8866) |\n| 100：小小说百篇 | 乔治・曼加内利 | [下载](https://url89.ctfile.com/f/31084289-1357036240-367630?p=8866) |\n| 美第奇家族的兴衰 | 克里斯托弗・希伯特 | [下载](https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866) |\n| 八山 | 保罗・科涅蒂 | [下载](https://url89.ctfile.com/f/31084289-1357032958-286774?p=8866) |\n| 周期表 | 普里莫・莱维 | [下载](https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866) |\n| 皮 | 库尔齐奥・马拉巴特 | [下载](https://url89.ctfile.com/f/31084289-1357031356-2f3f74?p=8866) |\n| 鞑靼人沙漠 | 迪诺・布扎蒂 | [下载](https://url89.ctfile.com/f/31084289-1357030852-8f4137?p=8866) |\n| Mrs Rosie and the Priest | Giovanni Boccaccio | [下载](https://url89.ctfile.com/f/31084289-1357029754-27a45a?p=8866) |\n| 埃科谈文学 | 翁贝托・埃科 | [下载](https://url89.ctfile.com/f/31084289-1357029565-dea3c1?p=8866) |\n| 邪恶之路 | 格拉齐娅・黛莱达 | [下载](https://url89.ctfile.com/f/31084289-1357026976-20eadc?p=8866) |\n| 十日谈（译文名著典藏） | 卜伽丘 | [下载](https://url89.ctfile.com/f/31084289-1357026835-513c66?p=8866) |\n| 剑桥意大利史 | 克里斯托弗・达根 | [下载](https://url89.ctfile.com/f/31084289-1357022665-152e48?p=8866) |\n| 都灵萨包达美术馆 | 弗朗西斯卡・萨尔瓦多里 | [下载](https://url89.ctfile.com/f/31084289-1357022152-0c3bb2?p=8866) |\n| 佛罗伦萨圣母百花大教堂博物馆 | 蒂莫西・弗登 | [下载](https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866) |\n| 那不勒斯国家考古博物馆 | 迪雷塔・哥伦布 | [下载](https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866) |\n| 罗马博尔盖塞美术馆 | 弗朗切斯卡・卡丝特丽雅・马尔凯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866) |\n| 米兰波尔迪·佩佐利博物馆 | 玛利亚·特蕾莎·巴尔博尼·布雷萨等 | [下载](https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866) |\n| 那不勒斯卡波迪蒙特博物馆 | 马蒂亚・盖塔 | [下载](https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866) |\n| 教宗与墨索里尼 | 大卫·I.科泽 | [下载](https://url89.ctfile.com/f/31084289-1357021342-351ce2?p=8866) |\n| 米兰斯福尔扎古堡博物馆 | 马蒂诺・阿斯托尔菲 | [下载](https://url89.ctfile.com/f/31084289-1357019149-58301b?p=8866) |\n| 威尼斯学院美术馆 | 露琪亚・伊姆佩鲁索 | [下载](https://url89.ctfile.com/f/31084289-1357019119-338773?p=8866) |\n| 热那亚新街博物馆 | 皮耶罗・波卡尔多等  | [下载](https://url89.ctfile.com/f/31084289-1357018768-b9b484?p=8866) |\n| 马德里普拉多博物馆 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357018684-d7b281?p=8866) |\n| 庞贝三日 | 阿尔贝托・安杰拉 | [下载](https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866) |\n| 十日谈（译文名著精选） | 卜伽丘 | [下载](https://url89.ctfile.com/f/31084289-1357007794-cbc429?p=8866) |\n"
  },
  {
    "path": "md/感人.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 感人\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一定有人在祈祷着 | 山田宗树 | [下载](https://url89.ctfile.com/f/31084289-1356983299-f98eb2?p=8866) |\n| 巴别塔之犬 | 卡罗琳・帕克丝特 | [下载](https://url89.ctfile.com/f/31084289-1357032178-12fb03?p=8866) |\n| 活出人生最好的可能 | 毕啸南 | [下载](https://url89.ctfile.com/f/31084289-1357021909-536ba4?p=8866) |\n"
  },
  {
    "path": "md/慈禧.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 慈禧\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 女人当国：慈禧太后与晚清五十年 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357007521-bc28b1?p=8866) |\n| 宫女谈往录 | 金易 | [下载](https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866) |\n| 慈禧全传 | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357005607-224bd0?p=8866) |\n"
  },
  {
    "path": "md/戏剧.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 戏剧\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 即兴戏剧 | 苏广辉 | [下载](https://url89.ctfile.com/f/31084289-1357003891-a41242?p=8866) |\n| 迪伦马特戏剧集（全2册） | 弗里德里希・迪伦马特 | [下载](https://url89.ctfile.com/f/31084289-1356995305-1b9e72?p=8866) |\n| 戏剧（牛津通识读本） | 马文・卡尔森 | [下载](https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866) |\n| 世界少年文学经典文库·国外经典篇（全套47册） | 雨果等 | [下载](https://url89.ctfile.com/f/31084289-1357041877-25ba88?p=8866) |\n| 捕鼠器（译文经典） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866) |\n| 威尼斯商人（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357036159-3537ae?p=8866) |\n| 仲夏夜之梦（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866) |\n| 李尔王（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035631-63e1ab?p=8866) |\n| 哈姆莱特（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035400-4bace1?p=8866) |\n| 皆大欢喜（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866) |\n| 樱桃园（名著名译丛书） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357035322-e80b3f?p=8866) |\n| 奥瑟罗（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866) |\n| 暴风雨（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035214-ce0c10?p=8866) |\n| 第十二夜（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035130-63ad7b?p=8866) |\n| 麦克白（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035055-a52df3?p=8866) |\n| 老妇还乡（名著名译丛书） | 迪伦马特 | [下载](https://url89.ctfile.com/f/31084289-1357035007-9dda46?p=8866) |\n| 正义者 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866) |\n| 莎士比亚喜剧悲剧全集（套装共6册） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866) |\n| 莎士比亚喜剧全集 | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357009066-01e1b6?p=8866) |\n| 莎士比亚悲剧全集 | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357009063-7f3a81?p=8866) |\n| 莎士比亚四大悲剧（译文名著精选） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357007458-01f132?p=8866) |\n| 莎乐美（译文经典） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357006588-7b673f?p=8866) |\n| 邯郸记 | 汤显祖 | [下载](https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866) |\n"
  },
  {
    "path": "md/戏曲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 戏曲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 明清戏曲序跋纂笺（12册） | 郭英德/李志远 | [下载](https://url89.ctfile.com/f/31084289-1375499515-e7ed9c?p=8866) |\n"
  },
  {
    "path": "md/成功.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 成功\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 没时间休息的休息法 | 荻野淳也 | [下载](https://url89.ctfile.com/f/31084289-1375510219-79ad9b?p=8866) |\n| 断舍离（全3册） | 山下英子 | [下载](https://url89.ctfile.com/f/31084289-1375510945-54d643?p=8866) |\n| 少有人走的路（1-8全套） | 斯科特・派克 | [下载](https://url89.ctfile.com/f/31084289-1357000219-cda644?p=8866) |\n| 差异优势 | 约翰·C. 马克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1356995239-2c39d8?p=8866) |\n| 你不是失败，只是差一点成功 | 萨拉・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866) |\n| 受益一生的六本书（套装六册） | 鬼谷子等 | [下载](https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866) |\n| 技巧：如何用一年时间获得十年的经验 | 郝培强 | [下载](https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866) |\n| 女人不可以穷 | 正经婶儿 | [下载](https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866) |\n| 绝对自控 | 瑞安・霍利迪 | [下载](https://url89.ctfile.com/f/31084289-1357020094-358288?p=8866) |\n| 成功，动机与目标 | 海蒂・格兰特・霍尔沃森 | [下载](https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866) |\n| 在绝望中寻找希望 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357011991-2f6e6c?p=8866) |\n| 刻意学习 | Scalers | [下载](https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866) |\n| 魔力法则：用一年时间积累一生财富（套装共3册） | 拿破仑・希尔 | [下载](https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866) |\n| 雷军：创业没有时间表 | 胡以贵 | [下载](https://url89.ctfile.com/f/31084289-1357007011-f52277?p=8866) |\n| 硅谷禁书 | 查尔斯・哈尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357006570-1645fb?p=8866) |\n| 成功的真谛 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866) |\n| 埃隆·马斯克传：用特斯拉撬动世界 | 邱恒明 | [下载](https://url89.ctfile.com/f/31084289-1357005745-0f69ba?p=8866) |\n| 小米内幕 | 吴帝聪 | [下载](https://url89.ctfile.com/f/31084289-1357005142-cc776c?p=8866) |\n"
  },
  {
    "path": "md/成功学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 成功学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 马登谈成功（套装共5册） | 奥里森・马登 | [下载](https://url89.ctfile.com/f/31084289-1375508968-7f8963?p=8866) |\n"
  },
  {
    "path": "md/成吉思汗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 成吉思汗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 成吉思汗：意志征服世界 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006336-1679bb?p=8866) |\n"
  },
  {
    "path": "md/成长.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 成长\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 妈妈的战争 | Momself | [下载](https://url89.ctfile.com/f/31084289-1375493854-27b055?p=8866) |\n| 破圈：如何突破认知局限并实现终身成长 | 顾及 | [下载](https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866) |\n| 自洽：在不确定的日子里向内看 | 史欣悦 | [下载](https://url89.ctfile.com/f/31084289-1375498615-e56c1d?p=8866) |\n| 宇宙的孩子 | 迈克尔・乔莱特 | [下载](https://url89.ctfile.com/f/31084289-1375498705-4c11d3?p=8866) |\n| 人生不必太用力 | 埃克哈特・托利 | [下载](https://url89.ctfile.com/f/31084289-1375500094-713b9c?p=8866) |\n| 错失恐惧 | 帕特里克·J.麦金尼斯 | [下载](https://url89.ctfile.com/f/31084289-1375500760-480526?p=8866) |\n| 自律修炼手册 | 史蒂夫・帕弗利纳 | [下载](https://url89.ctfile.com/f/31084289-1375500763-ae1e4a?p=8866) |\n| 心智突围 | Windy Liu | [下载](https://url89.ctfile.com/f/31084289-1375500784-b71caf?p=8866) |\n| 大江健三郎人生成长系列（套装共4册） | 大江健三郎 | [下载](https://url89.ctfile.com/f/31084289-1375500874-a07323?p=8866) |\n| 鹿鸣心理·心理自助读物精选（套装17册） | 南茜・戴维森等 | [下载](https://url89.ctfile.com/f/31084289-1375501189-cd4331?p=8866) |\n| 谢谢，但今天不行 | 科尔杜拉・努斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1375501042-6f62d9?p=8866) |\n| 基层女性 | 王慧玲 | [下载](https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866) |\n| 通往未来之路 | 赵昂/任国荣 | [下载](https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866) |\n| 非线性成长 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866) |\n| 不可能的堡垒 | 詹森・雷库拉克 | [下载](https://url89.ctfile.com/f/31084289-1375511824-5bbdd3?p=8866) |\n| 成为黑马 | 托德・罗斯/奥吉・奥加斯 | [下载](https://url89.ctfile.com/f/31084289-1375512115-a73ff5?p=8866) |\n| 冲突的演化 | 杰弗里・贝蒂 | [下载](https://url89.ctfile.com/f/31084289-1375512607-ff38db?p=8866) |\n| 精进有道 | 孙陶然 | [下载](https://url89.ctfile.com/f/31084289-1375512904-0b5469?p=8866) |\n| 姥爷，我们天上见 | 蒋雯丽 | [下载](https://url89.ctfile.com/f/31084289-1375513441-514038?p=8866) |\n| 顽童小番茄 | 简媜 | [下载](https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866) |\n| 灿若黎明 | 艾米・哈蒙 | [下载](https://url89.ctfile.com/f/31084289-1357004398-f7de17?p=8866) |\n| 和另一个自己谈谈心 | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357004392-11723b?p=8866) |\n| 如何戒掉坏习惯 | 古川武士 | [下载](https://url89.ctfile.com/f/31084289-1357004143-d981e9?p=8866) |\n| 成为主角 | 陈岚 | [下载](https://url89.ctfile.com/f/31084289-1357002289-ab16f6?p=8866) |\n| 冷静表达的艺术 | 罗纳德·T·派特佛恩 | [下载](https://url89.ctfile.com/f/31084289-1357001467-84e2fd?p=8866) |\n| 孤独的150个信念 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866) |\n| 大器晚成 | 里奇・卡尔加德 | [下载](https://url89.ctfile.com/f/31084289-1356999184-a90590?p=8866) |\n| 杏仁 | 孙元平 | [下载](https://url89.ctfile.com/f/31084289-1356997795-ec9e5f?p=8866) |\n| 内在动机 | 爱德华・L. 德西 | [下载](https://url89.ctfile.com/f/31084289-1356997342-de547e?p=8866) |\n| 认知红利 | 谢春霖 | [下载](https://url89.ctfile.com/f/31084289-1356997102-b6dbb3?p=8866) |\n| 高效迭代 | 冯起升 | [下载](https://url89.ctfile.com/f/31084289-1356995497-4765d7?p=8866) |\n| 我们今天怎样做父亲 | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1356995407-79bcac?p=8866) |\n| 持续行动 | Scalers | [下载](https://url89.ctfile.com/f/31084289-1356995179-bf6496?p=8866) |\n| 成为极少数 | 李栩然 | [下载](https://url89.ctfile.com/f/31084289-1356995131-73e16b?p=8866) |\n| 勇敢而非完美 | 拉什玛・萨贾尼 | [下载](https://url89.ctfile.com/f/31084289-1356994831-e9defd?p=8866) |\n| 好好思考 | 成甲 | [下载](https://url89.ctfile.com/f/31084289-1356994684-558465?p=8866) |\n| 一个心碎的伊朗女人 | 龚娜姿・哈宣沙达・邦德 | [下载](https://url89.ctfile.com/f/31084289-1356994564-faf248?p=8866) |\n| 深度改变 | 泽阳 | [下载](https://url89.ctfile.com/f/31084289-1356994561-5fcd0c?p=8866) |\n| 别让情绪毁了你的努力 | 剑圣喵大师 | [下载](https://url89.ctfile.com/f/31084289-1356991840-ecda2e?p=8866) |\n| 内向心理学 | 西尔维亚・洛肯 | [下载](https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866) |\n| 只管去做 | 邹小强 | [下载](https://url89.ctfile.com/f/31084289-1356991549-e07ddd?p=8866) |\n| 恰到好处的挫折 | 格雷格• S •里德 | [下载](https://url89.ctfile.com/f/31084289-1356991267-795ad9?p=8866) |\n| 人生没有后悔药 | 约翰・伊佐 | [下载](https://url89.ctfile.com/f/31084289-1356990643-2981f8?p=8866) |\n| 你没有退路，才有出路 | 李尚龙 | [下载](https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866) |\n| 她的骑士男孩 | 金・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1356989767-a100a8?p=8866) |\n| 一年顶十年 | 剽悍一只猫 | [下载](https://url89.ctfile.com/f/31084289-1356989455-699466?p=8866) |\n| 思维的囚徒 | 亚历克斯・佩塔克斯/伊莱恩・丹顿 | [下载](https://url89.ctfile.com/f/31084289-1356987547-41d349?p=8866) |\n| 为什么精英都有超强专注力 | 西多昌规 | [下载](https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866) |\n| 我要做人生的甲方 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866) |\n| 是谁出的题这么难，到处都是正确答案 | 邱天 | [下载](https://url89.ctfile.com/f/31084289-1356987013-cc5ea3?p=8866) |\n| 突破天性 | 布赖恩・利特尔 | [下载](https://url89.ctfile.com/f/31084289-1356986710-c837a3?p=8866) |\n| 苏菲的哲学课 | 多米尼克・贾尼科 | [下载](https://url89.ctfile.com/f/31084289-1356985762-968eb9?p=8866) |\n| 高效能人士的七个习惯（30周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866) |\n| 如何成为一个抗压的人 | 道格・亨施 | [下载](https://url89.ctfile.com/f/31084289-1356984826-6eb697?p=8866) |\n| 人生护城河 | 张辉 | [下载](https://url89.ctfile.com/f/31084289-1356983704-127285?p=8866) |\n| 认同自己 | 斯蒂芬妮・斯塔尔 | [下载](https://url89.ctfile.com/f/31084289-1356983692-ea0a66?p=8866) |\n| 小逻辑：让选择变简单的方法 | 欧文・瑟维斯/罗里・加拉格尔 | [下载](https://url89.ctfile.com/f/31084289-1356983647-bf0dc2?p=8866) |\n| 猫的桌子 | 迈克尔・翁达杰 | [下载](https://url89.ctfile.com/f/31084289-1356982483-fa4e5d?p=8866) |\n| 性格的陷阱 | 杰弗里·E.杨等 | [下载](https://url89.ctfile.com/f/31084289-1357054375-0ed54d?p=8866) |\n| 与内心的冲突和解 | 加藤谛三 | [下载](https://url89.ctfile.com/f/31084289-1357054300-31e884?p=8866) |\n| 一日之计 | 本杰明・斯帕/迈克尔・赞德 | [下载](https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866) |\n| 学习力：如何成为一个有价值的知识变现者 | Angie | [下载](https://url89.ctfile.com/f/31084289-1357053667-b10f87?p=8866) |\n| 中国女孩 | 王苇柯 | [下载](https://url89.ctfile.com/f/31084289-1357053208-116309?p=8866) |\n| 在时光中盛开的女子 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866) |\n| 用得上的心理学 | 王明姬/姚兵 | [下载](https://url89.ctfile.com/f/31084289-1357052671-91e779?p=8866) |\n| 个体突围 | 艾玛・加侬 | [下载](https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866) |\n| 你的自律，给你自由 | 小椰子 | [下载](https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866) |\n| 精简社交 | 莫拉格・巴雷特 | [下载](https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866) |\n| 你不是记性差，只是没找对方法 | 池田义博 | [下载](https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866) |\n| 终身学习：10个你必须掌握的未来生存法则 | 丹・苏利文/凯瑟琳・野村 | [下载](https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866) |\n| 跨界学习 | 王烁 | [下载](https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866) |\n| 终身成长行动指南 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866) |\n| 沟通也要懂套路 | 姜朝川 | [下载](https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866) |\n| 你不是失败，只是差一点成功 | 萨拉・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357050535-b942bb?p=8866) |\n| 格局逆袭 | 宗宁 | [下载](https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866) |\n| 反本能2 | 刘船洋 | [下载](https://url89.ctfile.com/f/31084289-1357049755-cda696?p=8866) |\n| 黑暗物质三部曲 | 菲利普・普尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357049587-d219ce?p=8866) |\n| 格局逆袭2 | 宗宁 | [下载](https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866) |\n| 别做那只迷途的候鸟 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866) |\n| 你要如何衡量你的人生 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357049302-65e015?p=8866) |\n| 底层逻辑 | 张羽 | [下载](https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866) |\n| 缺爱 | 罗伯特・纳伯格 | [下载](https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866) |\n| 领导就是让人追随 | 约翰・科特/霍尔格・拉斯格博 | [下载](https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866) |\n| 蝲蛄吟唱的地方 | 迪莉娅・欧文斯 | [下载](https://url89.ctfile.com/f/31084289-1357046752-6d776b?p=8866) |\n| 趁早（十周年畅销升级版） | 王潇 | [下载](https://url89.ctfile.com/f/31084289-1357046464-3a2b79?p=8866) |\n| 挫折复原力 | 丹尼斯・穆蓝纳 | [下载](https://url89.ctfile.com/f/31084289-1357046407-7f7a4f?p=8866) |\n| 保持饥渴 | Thinkers50 | [下载](https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866) |\n| 年轻人，你就是想太多 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1357045006-2bc59b?p=8866) |\n| 积极思考 | 约翰尼・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357044913-7a0138?p=8866) |\n| 小孩 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357044604-4d3683?p=8866) |\n| 焦虑又怎样 | 弗兰齐丝卡・赛柏特 | [下载](https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866) |\n| 如何成为面向未来的学习者（原书第7版） | 卡罗尔・卡特等 | [下载](https://url89.ctfile.com/f/31084289-1357043548-614b75?p=8866) |\n| 生而不凡 | 维申・拉克雅礼 | [下载](https://url89.ctfile.com/f/31084289-1357043404-761dc2?p=8866) |\n| 人生效率手册：重塑升级版 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357043224-44cf30?p=8866) |\n| 虎妈战歌 | 蔡美儿 | [下载](https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866) |\n| 超级记忆 | 卢龙斌 | [下载](https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866) |\n| 董卿：做一个有才情的女子 | 乔瑞玲 | [下载](https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866) |\n| 自卑与超越（果麦经典） | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357039837-b00dc9?p=8866) |\n| 深度连接 | 杰西・沃伦・特维罗 | [下载](https://url89.ctfile.com/f/31084289-1357039315-f3117a?p=8866) |\n| Unfu*k Yourself | Gary John Bishop | [下载](https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866) |\n| 最初之前 | 张皓宸 | [下载](https://url89.ctfile.com/f/31084289-1357036237-0122de?p=8866) |\n| 在亲密关系中成长 | 卡洛琳・戴奇/丽萨・罗伯邦 | [下载](https://url89.ctfile.com/f/31084289-1357035235-00c39b?p=8866) |\n| 掌控习惯 | 詹姆斯・克利尔 | [下载](https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866) |\n| 掌控关系 | 格雷琴・鲁宾 | [下载](https://url89.ctfile.com/f/31084289-1357034470-18ed37?p=8866) |\n| 高效能人士的七个习惯（25周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357034338-0f9f3b?p=8866) |\n| 改变提问，改变人生（原书第3版） | 梅若李・亚当斯  | [下载](https://url89.ctfile.com/f/31084289-1357033930-b4b547?p=8866) |\n| 失误：为什么我们总爱犯错？ | 凯瑟琳・舒尔茨 | [下载](https://url89.ctfile.com/f/31084289-1357033825-5942c9?p=8866) |\n| 登天的感觉 | 岳晓东 | [下载](https://url89.ctfile.com/f/31084289-1357033522-deb968?p=8866) |\n| 爱自己的人自带光芒 | 雅基・马森 | [下载](https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866) |\n| 高维度思考法 | 细谷功 | [下载](https://url89.ctfile.com/f/31084289-1357032991-3d1e1e?p=8866) |\n| 世界尽头的咖啡馆 | 约翰・史崔勒基 | [下载](https://url89.ctfile.com/f/31084289-1357032964-b4dd0c?p=8866) |\n| 沉住气，吃硬饭 | 王路 | [下载](https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866) |\n| 布隆夫曼脱单历险记 | 丹尼尔・华莱士 | [下载](https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866) |\n| 时间的答案 | 卢思浩 | [下载](https://url89.ctfile.com/f/31084289-1357032070-1c4c86?p=8866) |\n| 二十几岁，没有十年 | 孙晴悦 | [下载](https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866) |\n| 只想和你好好生活 | 武志红等 | [下载](https://url89.ctfile.com/f/31084289-1357031320-8f1dde?p=8866) |\n| 颠覆式成长 | 惠特尼・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357030954-97be6f?p=8866) |\n| 追恐龙的男孩 | 贾科莫・马扎里奥 | [下载](https://url89.ctfile.com/f/31084289-1357030879-d30fd6?p=8866) |\n| 心理界限 | 杨嘉玲 | [下载](https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866) |\n| 消极情绪的力量 | 托德・卡什丹 | [下载](https://url89.ctfile.com/f/31084289-1357030717-93912e?p=8866) |\n| 穷人穷口袋，富人富脑袋 | 曾驿翔 | [下载](https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866) |\n| 少女，请回答 | 张晓晗 | [下载](https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866) |\n| 幸福断舍离 | 格雷琴・鲁宾 | [下载](https://url89.ctfile.com/f/31084289-1357030489-949958?p=8866) |\n| 每一个认真生活的人，都值得被认真对待 | 马叛/傅首尔/小岩井等 | [下载](https://url89.ctfile.com/f/31084289-1357030477-a9eb3c?p=8866) |\n| 女人不可以穷 | 正经婶儿 | [下载](https://url89.ctfile.com/f/31084289-1357030306-d5af84?p=8866) |\n| 寻找更明亮的天空 | 古尔瓦力・帕萨雷/娜德纳・古力 | [下载](https://url89.ctfile.com/f/31084289-1357030261-83d050?p=8866) |\n| 深度影响：如何自然地赢得他人的心 | 凯伦・梁 | [下载](https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866) |\n| 正面管教 | 简・尼尔森 | [下载](https://url89.ctfile.com/f/31084289-1357029700-2aae5a?p=8866) |\n| 深度成长：颠覆思维模式，重新定义成功 | 科里・夏纳罕 | [下载](https://url89.ctfile.com/f/31084289-1357029661-3b9e65?p=8866) |\n| 幸福的勇气 | 岸见一郎/古贺史健 | [下载](https://url89.ctfile.com/f/31084289-1357029367-9f1f8a?p=8866) |\n| 我是个年轻人，我心情不太好 | 阿澜・卢 | [下载](https://url89.ctfile.com/f/31084289-1357029265-8b0217?p=8866) |\n| 再忙也要用心生活 | 凯莉・威廉斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866) |\n| 女少年 | 秋微 | [下载](https://url89.ctfile.com/f/31084289-1357028980-691d01?p=8866) |\n| 青青陌上桑 | 陆观澜 | [下载](https://url89.ctfile.com/f/31084289-1357027747-d1669b?p=8866) |\n| 认知突围：做复杂时代的明白人 | 蔡垒磊 | [下载](https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866) |\n| 高手：精英的见识和我们的时代 | 万维钢 | [下载](https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866) |\n| 跃升 | 威廉・麦独孤 | [下载](https://url89.ctfile.com/f/31084289-1357027246-69f74b?p=8866) |\n| 秘密如何改变了我们的生活 | 朗达・拜恩 | [下载](https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866) |\n| 逆境成长：坚韧人格养成手册 | 小乔治·S.埃弗利等 | [下载](https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866) |\n| 终身学习 | 黄征宇 | [下载](https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866) |\n| 原生家庭 | 苏珊・福沃德/克雷格・巴克 | [下载](https://url89.ctfile.com/f/31084289-1357024315-e9494b?p=8866) |\n| 木匠手记 | 尼娜・麦克劳林 | [下载](https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866) |\n| 如何想到又做到 | 肖恩・扬 | [下载](https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866) |\n| 超越原生家庭（原书第4版） | 罗纳德・理查森 | [下载](https://url89.ctfile.com/f/31084289-1357023712-fa74ce?p=8866) |\n| 美女都是狠角色 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357023664-8fe48b?p=8866) |\n| 身体不说谎 | 爱丽丝・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866) |\n| 个体赋能 | YouCore | [下载](https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866) |\n| 永远不要找别人要安全感 | 韩梅梅 | [下载](https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866) |\n| 态度 | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357023064-924c58?p=8866) |\n| 自媒体写作 | 余老诗 | [下载](https://url89.ctfile.com/f/31084289-1357023055-a42878?p=8866) |\n| 内在革命：一本关于成长的书 | 芭芭拉・安吉丽思 | [下载](https://url89.ctfile.com/f/31084289-1357023016-07fa82?p=8866) |\n| 深阅读 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866) |\n| 美好人生运营指南 | 一稼 | [下载](https://url89.ctfile.com/f/31084289-1357022893-a74f2b?p=8866) |\n| 终有一天你会懂 | 琢磨先生 | [下载](https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866) |\n| 直到孤独尽头 | 贝内迪克特・韦尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357022347-89429b?p=8866) |\n| 真实的幸福 | 马丁・塞利格曼 | [下载](https://url89.ctfile.com/f/31084289-1357022284-740f82?p=8866) |\n| 无处停歇 | 杰米・阿滕贝格 | [下载](https://url89.ctfile.com/f/31084289-1357022275-8a9145?p=8866) |\n| 成功的要素 | 西蒙・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357022251-1bcbdc?p=8866) |\n| 特别的女生萨哈拉 | 爱斯米・科德尔 | [下载](https://url89.ctfile.com/f/31084289-1357022122-a16d36?p=8866) |\n| 让人生停止灰暗的艺术 | 苏珊・福沃德  | [下载](https://url89.ctfile.com/f/31084289-1357021906-c19745?p=8866) |\n| 如果你再勇敢一点 | 波莉・莫兰 | [下载](https://url89.ctfile.com/f/31084289-1357021660-aab07e?p=8866) |\n| Daring Greatly | Brene Brown | [下载](https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866) |\n| 游戏改变人生 | 简・麦戈尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1357021291-308aa7?p=8866) |\n| 自信思考 | 泉忠司著 | [下载](https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866) |\n| 我和厄尔以及将死的女孩 | 杰西・安德鲁斯 | [下载](https://url89.ctfile.com/f/31084289-1357021093-451af6?p=8866) |\n| 发现你的天赋 | 肯・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357020910-0f5b1c?p=8866) |\n| 泰普勒极简人生法则系列（套装共6册） | 理查德・泰普勒 | [下载](https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866) |\n| 找到意想不到的自己 | 丛扬洋 | [下载](https://url89.ctfile.com/f/31084289-1357020430-d63e63?p=8866) |\n| 奇风岁月 | 罗伯特・麦卡蒙 | [下载](https://url89.ctfile.com/f/31084289-1357020187-d7c04c?p=8866) |\n| 内向者沟通圣经 | 珍妮弗・康维勒 | [下载](https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866) |\n| 生命中最简单又最困难的事 | 大卫・福斯特・华莱士 | [下载](https://url89.ctfile.com/f/31084289-1357019881-0c36b8?p=8866) |\n| 职得：成为自己故事里的英雄 | 高琳 | [下载](https://url89.ctfile.com/f/31084289-1357019758-aa07ed?p=8866) |\n| 这样读书就够了 | 赵周 | [下载](https://url89.ctfile.com/f/31084289-1357019695-1defad?p=8866) |\n| 异类的天赋 | 凯文・达顿 | [下载](https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866) |\n| 知识变现 | 萧秋水/剽悍一只猫 | [下载](https://url89.ctfile.com/f/31084289-1357018279-eb39b7?p=8866) |\n| 我不过低配的人生 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357017898-288643?p=8866) |\n| 小学问 | 黄执中/周玄毅等 | [下载](https://url89.ctfile.com/f/31084289-1357017124-975340?p=8866) |\n| 奇迹男孩 | 帕拉西奥 | [下载](https://url89.ctfile.com/f/31084289-1357017115-40f395?p=8866) |\n| 亲密关系：通往灵魂的桥梁 | 克里斯多福・孟 | [下载](https://url89.ctfile.com/f/31084289-1357017046-fa06c7?p=8866) |\n| 工作是最好的修行 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866) |\n| 你骨子里是个牛人 |  珍・新赛罗 | [下载](https://url89.ctfile.com/f/31084289-1357016563-63ad1c?p=8866) |\n| 岛上来信 | 胡子 | [下载](https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866) |\n| 内向者优势 | Marti Olsen Laney | [下载](https://url89.ctfile.com/f/31084289-1357016314-c5509f?p=8866) |\n| 可爱的诅咒 | 雅基・马森 | [下载](https://url89.ctfile.com/f/31084289-1357015768-fe4a62?p=8866) |\n| 内在的重生 | 吉杜・克里希那穆提  | [下载](https://url89.ctfile.com/f/31084289-1357015477-39ea6d?p=8866) |\n| 人性的枷锁 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357015369-cdc221?p=8866) |\n| 所以，一切都是童年的错吗？ | KnowYourself主创们 | [下载](https://url89.ctfile.com/f/31084289-1357015294-aa1568?p=8866) |\n| 坚毅 | 安杰拉・达克沃思 | [下载](https://url89.ctfile.com/f/31084289-1357015231-e2dc65?p=8866) |\n| 请停止无效努力 | 孙圈圈 | [下载](https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866) |\n| 讲出一个精彩故事 | 麦成辉 | [下载](https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866) |\n| 好好工作，好好生活 | 克里斯汀・卡特 | [下载](https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866) |\n| 改变带来医治 | 亨利・克劳德 | [下载](https://url89.ctfile.com/f/31084289-1357014841-214fcc?p=8866) |\n| 颠覆者：周鸿祎自传 | 周鸿祎/范海涛 | [下载](https://url89.ctfile.com/f/31084289-1357014796-d33909?p=8866) |\n| 父母的觉醒 | 沙法丽・萨巴瑞 | [下载](https://url89.ctfile.com/f/31084289-1357014697-afca27?p=8866) |\n| 世上没有怀才不遇这件事 | 温言 | [下载](https://url89.ctfile.com/f/31084289-1357014346-461bcf?p=8866) |\n| 你要么出众，要么出局 | 李尚龙 | [下载](https://url89.ctfile.com/f/31084289-1357014193-3f0667?p=8866) |\n| 看见成长的自己 | 卡罗尔・徳韦克 | [下载](https://url89.ctfile.com/f/31084289-1357014046-66564e?p=8866) |\n| 从现在出发 | 陈春花 | [下载](https://url89.ctfile.com/f/31084289-1357013962-86c669?p=8866) |\n| 打破自我的标签 | 陈虎平 | [下载](https://url89.ctfile.com/f/31084289-1357013926-9dee6a?p=8866) |\n| 我在哈佛的最后一堂课 | 艾瑞克・赛诺威 | [下载](https://url89.ctfile.com/f/31084289-1357013758-39c4d5?p=8866) |\n| 重塑自我：如何成为一个很幸福的人 | 尼尔・帕斯理查 | [下载](https://url89.ctfile.com/f/31084289-1357013746-1a8179?p=8866) |\n| 不完美，才美 | 海蓝博士 | [下载](https://url89.ctfile.com/f/31084289-1357013635-67ccc2?p=8866) |\n| 长大后的世界 | 罗曼・阿拉姆 | [下载](https://url89.ctfile.com/f/31084289-1357012951-aa9637?p=8866) |\n| 穿过森林的男孩 | 加思・斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357012372-292745?p=8866) |\n| 天才源自刻意练习 | 杰夫・科尔文 | [下载](https://url89.ctfile.com/f/31084289-1357012300-54ef8d?p=8866) |\n| 谁说你不能坚持 | 程龙 | [下载](https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866) |\n| 等你呼唤我的名字 | 阿尔伯特・埃斯皮诺萨 | [下载](https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866) |\n| 你自以为的极限，只是别人的起点 | 特立独行的猫 | [下载](https://url89.ctfile.com/f/31084289-1357011988-1c9150?p=8866) |\n| 圣地亚哥朝圣之路 | 王赛男 | [下载](https://url89.ctfile.com/f/31084289-1357011304-11a0bb?p=8866) |\n| 太傻天书 | 太傻 | [下载](https://url89.ctfile.com/f/31084289-1357011262-0ba511?p=8866) |\n| 人生不设限（中英双语版） | 力克・胡哲 | [下载](https://url89.ctfile.com/f/31084289-1357011046-c03076?p=8866) |\n| 一个人的好天气 | 青山七惠 | [下载](https://url89.ctfile.com/f/31084289-1357010605-21733e?p=8866) |\n| 当下的力量（珍藏版） | 埃克哈特・托利 | [下载](https://url89.ctfile.com/f/31084289-1357010506-c672ed?p=8866) |\n| 被讨厌的勇气 | 岸见一郎/古贺史健 | [下载](https://url89.ctfile.com/f/31084289-1357010347-03ea7c?p=8866) |\n| 共情力 | 亚瑟・乔拉米卡利 | [下载](https://url89.ctfile.com/f/31084289-1357010311-5eb039?p=8866) |\n| 你的生命有什么可能 | 古典 | [下载](https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866) |\n| 当你的才华还撑不起你的梦想时 | 特立独行的猫 | [下载](https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866) |\n| 他们最幸福 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866) |\n| 一粒红尘 | 独木舟 | [下载](https://url89.ctfile.com/f/31084289-1357009345-5d9d0b?p=8866) |\n| 优秀的绵羊 | 威廉・德雷谢维奇 | [下载](https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866) |\n| 罗振宇：罗辑思维成长三部曲 | 罗振宇 | [下载](https://url89.ctfile.com/f/31084289-1357008769-f7cf2e?p=8866) |\n| 布鲁克林有棵树 | 贝蒂・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357008640-fcdadb?p=8866) |\n| 遇见孩子，遇见更好的自己 | 赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑 | [下载](https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866) |\n| 张德芬身心灵四部曲（套装共4册） | 张德芬 | [下载](https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866) |\n| 龙应台“人生三书”（套装共3册） | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866) |\n| 我还年轻，我还可以重新出发 | 唐骏 | [下载](https://url89.ctfile.com/f/31084289-1357007626-fa59dc?p=8866) |\n| 像疯子一样思考，像天才一样行动 | 凯文・达顿/安迪・麦克纳布 | [下载](https://url89.ctfile.com/f/31084289-1357007617-83ecfb?p=8866) |\n| 巨婴国 | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357007491-e061da?p=8866) |\n| 人性的弱点 | 戴尔・卡耐基  | [下载](https://url89.ctfile.com/f/31084289-1357007431-339822?p=8866) |\n| 阿甘正传 | 温斯顿・葛詹姆 | [下载](https://url89.ctfile.com/f/31084289-1357007395-34fe2b?p=8866) |\n| 地产狂人许家印 | 魏昕 | [下载](https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866) |\n| 独自上场 | 李娜 | [下载](https://url89.ctfile.com/f/31084289-1357006876-a6906b?p=8866) |\n| 精进：如何成为一个很厉害的人 | 采铜 | [下载](https://url89.ctfile.com/f/31084289-1357006822-7512bf?p=8866) |\n| 万达哲学：王健林首次自述经营之道 | 王健林 | [下载](https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866) |\n| 小别离 | 鲁引弓 | [下载](https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866) |\n| 完整的成长：儿童生命的自我创造 | 孙瑞雪 | [下载](https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866) |\n| 爱和自由：孙瑞雪幼儿教育演讲录 | 孙瑞雪 | [下载](https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866) |\n| 努力，才配有未来 | 小川叔 | [下载](https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866) |\n| 杜拉拉升职记（套装共4册） | 李可 | [下载](https://url89.ctfile.com/f/31084289-1357006420-6369ee?p=8866) |\n| 高效能人士的七个习惯（20周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866) |\n| 不要让未来的你，讨厌现在的自己 | 特立独行的猫 | [下载](https://url89.ctfile.com/f/31084289-1357005937-7d4be8?p=8866) |\n| 成功的真谛 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866) |\n| 谁的青春不迷茫 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866) |\n| 摆渡人 | 克莱儿・麦克福尔 | [下载](https://url89.ctfile.com/f/31084289-1357005709-7eb74c?p=8866) |\n| 最好的我们 | 八月长安 | [下载](https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866) |\n| 愿你慢慢长大 | 刘瑜/周国平 | [下载](https://url89.ctfile.com/f/31084289-1357005649-79868f?p=8866) |\n| 谁都不敢欺负你 | 力克・胡哲 | [下载](https://url89.ctfile.com/f/31084289-1357005631-9ebae5?p=8866) |\n| 将来的你，一定会感谢现在拼命的自己 | 汤木 | [下载](https://url89.ctfile.com/f/31084289-1357005268-67c5d3?p=8866) |\n"
  },
  {
    "path": "md/战争.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 战争\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 诸神的黄昏 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1375493773-f00c8d?p=8866) |\n| 反战之战 | 乌娜·A. 海瑟薇 | [下载](https://url89.ctfile.com/f/31084289-1375495162-eff7e1?p=8866) |\n| 冬与狮 | 兰晓龙 | [下载](https://url89.ctfile.com/f/31084289-1375498414-f46279?p=8866) |\n| 凡尔登战役 | 阿利斯泰尔・霍恩 | [下载](https://url89.ctfile.com/f/31084289-1375499467-2c45b1?p=8866) |\n| 现代兵器大百科（套装共12册） | 《深度军事》编委会 | [下载](https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866) |\n| 战争艺术史（全4卷） | 汉斯・德尔布吕克 | [下载](https://url89.ctfile.com/f/31084289-1375502593-9217ce?p=8866) |\n| 王树增战争系列（全5册） | 王树增 | [下载](https://url89.ctfile.com/f/31084289-1375506748-bc1f58?p=8866) |\n| 西线无战事（果麦经典） | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1375509091-e5d1af?p=8866) |\n| 滔天洪水 | 亚当・图兹 | [下载](https://url89.ctfile.com/f/31084289-1375509949-81dc59?p=8866) |\n| 冷战的终结：1985-1991 | 罗伯特・瑟维斯 | [下载](https://url89.ctfile.com/f/31084289-1375510135-274388?p=8866) |\n| 纸上谈兵 | 张明扬 | [下载](https://url89.ctfile.com/f/31084289-1375510378-ad2b78?p=8866) |\n| 法国大革命与革命心理学 | 古斯塔夫・勒庞 | [下载](https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866) |\n| 高清一战全史（套装全3册） | 特霍兰・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1375511767-d6f291?p=8866) |\n| 空王冠 | 丹・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1375511281-8b102c?p=8866) |\n| 间谍与叛徒 | 本・麦金泰尔 | [下载](https://url89.ctfile.com/f/31084289-1375512889-07541d?p=8866) |\n| 楚汉双雄 | 渤海小吏 | [下载](https://url89.ctfile.com/f/31084289-1375513039-61f341?p=8866) |\n| 英雄山：穿插 | 徐贵祥 | [下载](https://url89.ctfile.com/f/31084289-1375513300-ed86c6?p=8866) |\n| 大汗之怒 | 周思成 | [下载](https://url89.ctfile.com/f/31084289-1357004506-1bb50d?p=8866) |\n| 最后的抵抗 | 宿巍 | [下载](https://url89.ctfile.com/f/31084289-1357004233-6220df?p=8866) |\n| 21世纪战争论 | 克里斯托弗・科克尔 | [下载](https://url89.ctfile.com/f/31084289-1357002808-69f5f4?p=8866) |\n| 战争的本质 | A.C.葛瑞林 | [下载](https://url89.ctfile.com/f/31084289-1356991576-b3f8d5?p=8866) |\n| 战争事典（041-050） | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1356988228-f7e4d4?p=8866) |\n| 空军飞行员（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866) |\n| 摄影师的妻子 | 苏珊・乔伊森 | [下载](https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866) |\n| 战争论（全三册） | 克劳塞维茨 | [下载](https://url89.ctfile.com/f/31084289-1356984328-243144?p=8866) |\n| 战争哀歌 | 保宁 | [下载](https://url89.ctfile.com/f/31084289-1357052341-f29a44?p=8866) |\n| 中法海战 | 陈悦 | [下载](https://url89.ctfile.com/f/31084289-1357052590-a0f649?p=8866) |\n| 最残酷的夏天：美国人眼中的越南战争 | 菲利普・卡普托 | [下载](https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866) |\n| 1683维也纳之战 | 安德鲁・惠克罗夫特 | [下载](https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866) |\n| 战火家园 | 卡米拉・夏姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357042651-db3e89?p=8866) |\n| 步兵攻击（经典纪念版） | 埃尔温・隆美尔 | [下载](https://url89.ctfile.com/f/31084289-1357041610-38e520?p=8866) |\n| 中国抗日战争史（四卷套装） | 张宪文/左用章 | [下载](https://url89.ctfile.com/f/31084289-1357041505-c2f94f?p=8866) |\n| 第二次世界大战完整历史实录（套装共38册） | 马夫 | [下载](https://url89.ctfile.com/f/31084289-1357039195-88150e?p=8866) |\n| 全球使命 | 亨利・H・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866) |\n| 俄国与拿破仑的决战 | 多米尼克・利芬 | [下载](https://url89.ctfile.com/f/31084289-1357035100-bd987c?p=8866) |\n| 牵风记 | 徐怀中 | [下载](https://url89.ctfile.com/f/31084289-1357034086-23a522?p=8866) |\n| 一口气读完的大国战史系列 | 郭强 | [下载](https://url89.ctfile.com/f/31084289-1357033447-bee645?p=8866) |\n| 战争史（修订珍藏版） | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357032058-c37ac2?p=8866) |\n| 战争史 | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357031785-d59ca4?p=8866) |\n| 西线无战事 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357030507-dc3c15?p=8866) |\n| 玻利维亚日记 | 切・格瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866) |\n| 二战风云：史上最大规模战争的伤痛（全3册） | 杨少丹 | [下载](https://url89.ctfile.com/f/31084289-1357030342-bcd1f4?p=8866) |\n| 太平洋战争系列 | 青梅煮酒 | [下载](https://url89.ctfile.com/f/31084289-1357030114-dcb6d8?p=8866) |\n| 致命的倔强 | 邢超 | [下载](https://url89.ctfile.com/f/31084289-1357029979-766e1f?p=8866) |\n| 太平洋战争 | 赫克特·C. 拜沃特 | [下载](https://url89.ctfile.com/f/31084289-1357029463-fa425d?p=8866) |\n| 永别了，武器（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357029100-d7f57e?p=8866) |\n| 从丹药到枪炮 | 欧阳泰 | [下载](https://url89.ctfile.com/f/31084289-1357027879-d28b9e?p=8866) |\n| 最寒冷的冬天Ⅲ：血战长津湖 | 何楚舞/凤鸣/陆宏宇  | [下载](https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866) |\n| 最寒冷的冬天：美国人眼中的朝鲜战争 | 大卫・哈伯斯塔姆 | [下载](https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866) |\n| 最寒冷的冬天Ⅳ：日本人眼中的朝鲜战争 | 儿岛襄 | [下载](链接未找到) |\n| 冷山 | 查尔斯・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1357025053-beeeae?p=8866) |\n| 战争的面目 | 约翰・基根 | [下载](https://url89.ctfile.com/f/31084289-1357024723-accbf3?p=8866) |\n| 赫尔曼·沃克作品集（共9册） | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357024753-9ab4e4?p=8866) |\n| 美国创世记：埃利斯建国史系列（套装共4册） | 约瑟夫·J.埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866) |\n| 帝国的凛冬 | 冬雪心境 | [下载](https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866) |\n| 我从战场归来 | 唐师曾 | [下载](https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866) |\n| 战争事典特辑 | 李湖光/王子午/宋毅  | [下载](https://url89.ctfile.com/f/31084289-1357023829-119ac1?p=8866) |\n| 战争事典（001-040） | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357024885-e1f1b0?p=8866) |\n| 克里米亚战争 | 奥兰多・费吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357023688-1a0b47?p=8866) |\n| 这里的黎明静悄悄…… | 鲍・瓦西里耶夫 | [下载](https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866) |\n| 百年战争简史 | 德斯蒙德・苏厄德 | [下载](https://url89.ctfile.com/f/31084289-1357021624-22bc6c?p=8866) |\n| 战争风云（全2册） | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357020166-6166b7?p=8866) |\n| 战争与回忆（全2册） | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357020172-35770b?p=8866) |\n| 历史上的南京之战（套装共2册） | 王洪光  | [下载](https://url89.ctfile.com/f/31084289-1357019944-5497a4?p=8866) |\n| 中国的内战 | 胡素珊 | [下载](https://url89.ctfile.com/f/31084289-1357019377-b3f66d?p=8866) |\n| 巨人的对决：日德兰海战中的主力舰 | 张宇翔 | [下载](https://url89.ctfile.com/f/31084289-1357019386-bcedf2?p=8866) |\n| 无敌舰队 | 加勒特・马丁利 | [下载](https://url89.ctfile.com/f/31084289-1357017118-e4fd0b?p=8866) |\n| 血性军人：百年中国战争亲历纪（共13册） | 全国政协文史和学习委员会 | [下载](https://url89.ctfile.com/f/31084289-1357016209-02a30e?p=8866) |\n| 滇西抗战三部曲 | 余戈 | [下载](https://url89.ctfile.com/f/31084289-1357015765-b0be9b?p=8866) |\n| 丧钟为谁而鸣 | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357012468-207f9d?p=8866) |\n| 重新派遣 | 菲尔・克莱 | [下载](https://url89.ctfile.com/f/31084289-1357012450-4c35c5?p=8866) |\n| 战争简史（套装共2册） | 诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1357012003-13f38f?p=8866) |\n| 欧洲的陨落 | 马克思・加罗 | [下载](https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866) |\n| 敦刻尔克 | 沃尔特・劳德 | [下载](https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866) |\n| 美国人眼中最真实的越南战争 | 卡尔・马兰提斯 | [下载](https://url89.ctfile.com/f/31084289-1357010791-35d8b5?p=8866) |\n| 帝国强军：中国八大古战精锐 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357009003-8e67e4?p=8866) |\n| 1943黄金大争战 | 岩波 | [下载](https://url89.ctfile.com/f/31084289-1357008448-f2a49c?p=8866) |\n| 越南密战：1950-1954中国援越战争纪实 | 钱江 | [下载](https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866) |\n| 八月炮火 | 巴巴拉・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357008058-01e07d?p=8866) |\n| 兵贩子（抗战三部曲） | 林家品 | [下载](https://url89.ctfile.com/f/31084289-1357008028-fba137?p=8866) |\n| 雪峰山决战（抗战三部曲） | 林家品 | [下载](https://url89.ctfile.com/f/31084289-1357008007-bd9450?p=8866) |\n| 二战史诗三部曲 | 科尼利厄斯・瑞恩 | [下载](https://url89.ctfile.com/f/31084289-1357007986-660270?p=8866) |\n| 艰难一日：海豹六队击毙本・拉登行动亲历 | 马克・欧文/凯文・莫勒 | [下载](https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866) |\n| 帝国的分裂：美国独立战争的起源 | 郑非 | [下载](https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866) |\n| 血战太平洋（HBO官方完整版） | 休·安布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357006936-4aa76e?p=8866) |\n| 罪孽的报应 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1357006879-213cc7?p=8866) |\n| 天行健（套装全7册） | 燕垒生 | [下载](https://url89.ctfile.com/f/31084289-1357006582-7f3c57?p=8866) |\n| 青铜时代：五百年的大局观（套装共5册） | 潇水 | [下载](https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866) |\n| 骑兵军（译文经典） | 伊萨克・巴别尔 | [下载](https://url89.ctfile.com/f/31084289-1357006369-d34b18?p=8866) |\n| 狗日的战争 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357006264-a3a0da?p=8866) |\n| 狗日的战争2 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866) |\n| 虎部队：国民党抗日王牌七十四军 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866) |\n| 另一只眼看鸦片战争 | 瞿巍 | [下载](https://url89.ctfile.com/f/31084289-1357005928-95ec0a?p=8866) |\n| 第一次世界大战回忆录（全五卷） | 温斯顿・丘吉尔 | [下载](https://url89.ctfile.com/f/31084289-1357005289-44d87f?p=8866) |\n| 第二次世界大战回忆录（全六卷） | 温斯顿·丘吉尔 | [下载](https://url89.ctfile.com/f/31084289-1357005304-34bee1?p=8866) |\n| 千年乱局：争霸东北亚（套装共二册） | 方俞 | [下载](https://url89.ctfile.com/f/31084289-1357005217-0b648c?p=8866) |\n| 清日战争 | 宗泽亚 | [下载](https://url89.ctfile.com/f/31084289-1357004950-0d79b6?p=8866) |\n| 战争就是这么回事儿（全三册） | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357004974-4965ec?p=8866) |\n| 无路可退的战士 | 杰克·希金斯 | [下载](https://url89.ctfile.com/f/31084289-1357004932-962a95?p=8866) |\n| 德国式英雄 | 杰克·希金斯 | [下载](https://url89.ctfile.com/f/31084289-1357004926-351dc3?p=8866) |\n| 战争从未如此热血：二战美日太平洋大对决（全四册） | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357004887-bcbcb8?p=8866) |\n"
  },
  {
    "path": "md/战国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 战国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 战国的策套装（全五册） | 许葆云 | [下载](https://url89.ctfile.com/f/31084289-1375509265-83b7d0?p=8866) |\n| 春秋那杯茶，战国这碗酒（套装共4册） | 南柯月初 | [下载](https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866) |\n| 称霸（上下册） | 刘勋 | [下载](https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866) |\n| 大争之世：战国 | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357044667-a224f9?p=8866) |\n| 战国史料编年辑证（全二册） | 杨宽 | [下载](https://url89.ctfile.com/f/31084289-1357025077-d7a712?p=8866) |\n| 贾志刚说春秋×说战国（全十二册） | 贾志刚 | [下载](https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866) |\n| 春秋战国：典藏套装版（全三册） | 高兴宇 | [下载](https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866) |\n| 其实我们一直活在春秋战国（套装共6册） | 龙镇 | [下载](https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866) |\n| 袁腾飞讲先秦·战国纵横 | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357005064-2ad184?p=8866) |\n"
  },
  {
    "path": "md/战略.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 战略\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 偏执乐观 | 李思拓 | [下载](https://url89.ctfile.com/f/31084289-1356991459-5d8f53?p=8866) |\n| 七次转型 | 罗伯特 A. 伯格曼 | [下载](https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866) |\n| 增长五线 | 王赛 | [下载](https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866) |\n| 轻战略：量子时代的敏捷决策 | 许正 | [下载](https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866) |\n| 战略几何学 | 罗伯特・凯德尔 | [下载](https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866) |\n| 智能战略 | 曾鸣 | [下载](https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866) |\n| 突破现实的困境 | 克里斯・布拉德利等 | [下载](https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866) |\n| 品牌22律 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866) |\n| 论大战略 | 约翰・刘易斯・加迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866) |\n| 战略：一部历史 | 劳伦斯・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866) |\n| 赚钱的逻辑 | 钱伯鑫 | [下载](https://url89.ctfile.com/f/31084289-1357027744-0af2ee?p=8866) |\n| 战略：从思维到行动 | 刘学 | [下载](https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866) |\n| 好战略，坏战略 | 理查德・鲁梅尔特 | [下载](https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866) |\n| 商战 | 杰克・特劳特 / 阿尔・里斯  | [下载](https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866) |\n| 什么是战略 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866) |\n"
  },
  {
    "path": "md/戛纳.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 戛纳\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我与戛纳 | 蒂耶里・福茂 | [下载](https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866) |\n| 光影里的梦幻与真实 | 郑实 | [下载](https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866) |\n"
  },
  {
    "path": "md/户外.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 户外\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 终极求生 | 贝尔・格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375510861-cb888f?p=8866) |\n| 征服亚马孙 | 埃德・斯塔福德 | [下载](https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866) |\n| 在西伯利亚森林中 | 西尔万・泰松 | [下载](https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866) |\n| 孤身绝壁 | 亚历克斯・汉诺尔德/大卫・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357011652-90caa3?p=8866) |\n| 背包十年 | 小鹏 | [下载](https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866) |\n| 进入空气稀薄地带 | 乔恩・克拉考尔 | [下载](https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866) |\n| 荒野求生：面对冰封的海洋 | 贝尔・格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866) |\n"
  },
  {
    "path": "md/房地产.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 房地产\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 地产是部金融史 | 黄立坚 | [下载](https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866) |\n| 房地产与中国经济 | 盛松成等 | [下载](https://url89.ctfile.com/f/31084289-1375512808-94f8bf?p=8866) |\n| 买房法典 | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1356990313-a6a495?p=8866) |\n| 全球房地产 | 夏磊/任泽平  | [下载](https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866) |\n| 房地产与城市发展 | 陈杰/陆铭/黄益平/潘英丽 | [下载](https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866) |\n"
  },
  {
    "path": "md/房龙.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 房龙\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 圣经的故事（果麦经典） | 亨德里克・威廉・房龙 | [下载](https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866) |\n"
  },
  {
    "path": "md/手绘.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 手绘\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 神奇的手账整理魔法 | MUKI | [下载](https://url89.ctfile.com/f/31084289-1357033114-327d0f?p=8866) |\n| 生而为猫挺好的 | 猫小姐 | [下载](https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866) |\n"
  },
  {
    "path": "md/扑克.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 扑克\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 对赌：信息不足时如何做出高明决策 | 安妮・杜克 | [下载](https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866) |\n"
  },
  {
    "path": "md/批判.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 批判\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 批判性思维（原书第10版） | 布鲁克·诺埃尔·摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866) |\n| 批判性思维工具（原书第3版） | 理查德·保罗 | [下载](https://url89.ctfile.com/f/31084289-1357006525-573ffd?p=8866) |\n"
  },
  {
    "path": "md/技巧.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 技巧\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 拖延症患者自救手册 | 加兰・库尔森 | [下载](https://url89.ctfile.com/f/31084289-1357001101-fa92ba?p=8866) |\n| 幽默感 | 李新 | [下载](https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866) |\n| 如何阅读 | 艾比・马克斯・比尔 | [下载](https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866) |\n| 麦肯锡精英高效阅读法 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866) |\n| 非虚构写作指南 | 李梓新 | [下载](https://url89.ctfile.com/f/31084289-1357046785-ed2ee0?p=8866) |\n| 学会写作 | 粥左罗 | [下载](https://url89.ctfile.com/f/31084289-1357037431-c84db9?p=8866) |\n| 技巧：如何用一年时间获得十年的经验 | 郝培强 | [下载](https://url89.ctfile.com/f/31084289-1357035781-256299?p=8866) |\n| 10秒沟通 | 荒木真理子 | [下载](https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866) |\n| 丰田一页纸极简思考法 | 浅田卓 | [下载](https://url89.ctfile.com/f/31084289-1357020367-535edd?p=8866) |\n"
  },
  {
    "path": "md/技术.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 技术\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 超人诞生 | 稻见昌彦 | [下载](https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866) |\n| 科技之巅3 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866) |\n| 5G+：5G如何改变社会 | 李正茂 | [下载](https://url89.ctfile.com/f/31084289-1357037314-20cf94?p=8866) |\n| 在股市大崩溃前抛出的人（典藏版） | 伯纳德・巴鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866) |\n| 技术简史 | 德伯拉·L·斯帕 | [下载](https://url89.ctfile.com/f/31084289-1357032319-7433f4?p=8866) |\n| 技术分析（原书第5版） | 马丁J. 普林格 | [下载](https://url89.ctfile.com/f/31084289-1357028260-40febb?p=8866) |\n| 迷人的技术 | 凯莉・魏纳史密斯/扎克・魏纳史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866) |\n| The DevOps Handbook |  Gene Kim/Patrick Debois | [下载](https://url89.ctfile.com/f/31084289-1357022182-e48593?p=8866) |\n| Who Can You Trust？ | Rachel Botsman | [下载](https://url89.ctfile.com/f/31084289-1357021600-6613cf?p=8866) |\n| 尽在双11：阿里巴巴技术演进与超越 | 阿里巴巴双11技术团队 | [下载](https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866) |\n| 与机器赛跑 | 埃里克・布林约尔松 | [下载](https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866) |\n| 炒股怎能不懂波段 | 宋建文 | [下载](https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866) |\n"
  },
  {
    "path": "md/技术分析.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 技术分析\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 裸K线交易法 | 许佳聪 | [下载](https://url89.ctfile.com/f/31084289-1357046431-11f0bb?p=8866) |\n| 蜡烛图精解（原书第3版） | 格里高里・莫里斯等 | [下载](https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866) |\n| 史丹•温斯坦称傲牛熊市的秘密（珍藏版） | 史丹·温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866) |\n"
  },
  {
    "path": "md/技能.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 技能\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 超级搜索术 | 朱丹 | [下载](https://url89.ctfile.com/f/31084289-1357004089-122bcf?p=8866) |\n| 微精通 | 罗伯特・特威格尔 | [下载](https://url89.ctfile.com/f/31084289-1356986620-ab3a01?p=8866) |\n| 如何一开口就赢 | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866) |\n| 如何用手机拍一部电影 | 英国Little White Lies编辑部 | [下载](https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866) |\n| 好听：如何练就好声音 | 徐洁 | [下载](https://url89.ctfile.com/f/31084289-1357038898-d0f679?p=8866) |\n"
  },
  {
    "path": "md/抑郁.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 抑郁\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 重塑大脑回路 | 亚历克斯・科布 | [下载](https://url89.ctfile.com/f/31084289-1357052773-076a3d?p=8866) |\n| 活下去的理由 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024312-72c8ed?p=8866) |\n"
  },
  {
    "path": "md/投机.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 投机\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 十年一梦（修订版） | 青泽 | [下载](https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866) |\n| 概率游戏：像操盘手那样做股票 | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866) |\n| 股票作手回忆录 | 杰西・利弗莫尔 | [下载](https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866) |\n| 股票大作手操盘术 | 杰西・利弗莫尔 | [下载](https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866) |\n| 海龟交易法则（珍藏版） | 柯蒂斯・费思 | [下载](https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866) |\n| 专业投机原理（珍藏版） | 维克托・斯波朗迪 | [下载](https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866) |\n| 走出幻觉・走向成熟 | 金融帝国 | [下载](https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866) |\n| 期权波动率与定价：高级交易策略与技巧 | 谢尔登・纳坦恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866) |\n| 大空头 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866) |\n"
  },
  {
    "path": "md/投资.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 投资\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 财富是认知的变现 | 舒泰峰 | [下载](https://url89.ctfile.com/f/31084289-1375490950-03b116?p=8866) |\n| 中高净值人群财富管理的顶层设计（全5册） | 李升等 | [下载](https://url89.ctfile.com/f/31084289-1375491427-50aa01?p=8866) |\n| 价值投资的十项核心原则 | 詹姆斯・蒙蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1375491475-157297?p=8866) |\n| 攻守：可转债投资实用手册 | 饕餮海等 | [下载](https://url89.ctfile.com/f/31084289-1375492006-a0e7e3?p=8866) |\n| 巴菲特之道（原书第3版）（典藏版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1375492738-ab0390?p=8866) |\n| 房价的逻辑 | 徐远 | [下载](https://url89.ctfile.com/f/31084289-1375493002-d88db9?p=8866) |\n| 超级资管 | 乔永远/孔祥 | [下载](https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866) |\n| 行为金融学 | 詹姆斯・蒙蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1375497613-50ebe9?p=8866) |\n| 股票魔法师3 | Mark Minervini | [下载](https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866) |\n| 趋势投资 | 丁圣元 | [下载](https://url89.ctfile.com/f/31084289-1375498825-647703?p=8866) |\n| 行为投资者 | 丹尼尔・克罗斯比 | [下载](https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866) |\n| 股票投资三部曲 | 杰弗里・肯尼迪等 | [下载](https://url89.ctfile.com/f/31084289-1375498966-b96f00?p=8866) |\n| 常识的力量 | 梁宇峰 | [下载](https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866) |\n| 长期主义 | 高德威 | [下载](https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866) |\n| 投资核心资产 | 王德伦等 | [下载](https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866) |\n| 指数基金投资攻略 | 翁量 | [下载](https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866) |\n| 投资理财红宝书 | 龙红亮 | [下载](https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866) |\n| 非凡的成功 | 大卫・史文森 | [下载](https://url89.ctfile.com/f/31084289-1375499398-92a3da?p=8866) |\n| 格雷厄姆精解证券分析 | 杰森・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1375499647-43f62c?p=8866) |\n| 华尔街教父格雷厄姆传 | 本杰明・格雷厄姆 | [下载](https://url89.ctfile.com/f/31084289-1375500121-c5ae86?p=8866) |\n| 半小时漫画经济学4：理财篇 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375500430-536636?p=8866) |\n| 共同基金常识（10周年纪念版） | 约翰・博格 | [下载](https://url89.ctfile.com/f/31084289-1375500526-edcefa?p=8866) |\n| 金钱的属性 | 金胜镐 | [下载](https://url89.ctfile.com/f/31084289-1375500652-0252d7?p=8866) |\n| 通往财富自由之路 | 阿什文・B. 查布拉 | [下载](https://url89.ctfile.com/f/31084289-1375501078-233e0c?p=8866) |\n| 预测：经济、周期与市场泡沫 | 洪灝 | [下载](https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866) |\n| 文明、资本与投资 | 丁昶 | [下载](https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866) |\n| 复利信徒 | 李杰 | [下载](https://url89.ctfile.com/f/31084289-1375509553-ecceff?p=8866) |\n| 趋势的力量 | 李迅雷 | [下载](https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866) |\n| 投资：嘉信理财持续创新之道 | 查尔斯・施瓦布 | [下载](https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866) |\n| 交易的逻辑与艺术 | 陈侃迪 | [下载](https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866) |\n| 祖鲁法则：成长股投资要义 | 吉姆・斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866) |\n| 股票大作手利弗莫尔的交易精髓 | 李路 | [下载](https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866) |\n| 交易的真相 | 极地之鹰 | [下载](https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866) |\n| 巴芒演义 | 唐朝 | [下载](https://url89.ctfile.com/f/31084289-1375510399-e55bd3?p=8866) |\n| 高净值人士投资指南 | 潘添礼 | [下载](https://url89.ctfile.com/f/31084289-1375510582-618a3b?p=8866) |\n| 价值投资经典战例之中国恒大 | 正合奇胜 | [下载](https://url89.ctfile.com/f/31084289-1375510600-59043f?p=8866) |\n| 我们终将变富 | 兰启昌 | [下载](https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866) |\n| 坚守 | 约翰・博格 | [下载](https://url89.ctfile.com/f/31084289-1375511698-19f58e?p=8866) |\n| 风险投资的逻辑与常识 | 莱恩・巴特森/肯・弗里曼 | [下载](https://url89.ctfile.com/f/31084289-1375512811-ca0121?p=8866) |\n| 征服市场的人 | 格里高利・祖克曼 | [下载](https://url89.ctfile.com/f/31084289-1375513291-9c5177?p=8866) |\n| 方舟：数字经济创新史 | 赵小兵 | [下载](https://url89.ctfile.com/f/31084289-1375513465-e21bc9?p=8866) |\n| 经典技术分析（原书第3版）（上） | 小查尔斯·D. 柯克帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866) |\n| 经典技术分析（原书第3版）（下） | 小查尔斯·D. 柯克帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1375513720-6f59ab?p=8866) |\n| 投资者的朋友 | 朱宁 | [下载](https://url89.ctfile.com/f/31084289-1375513738-d81882?p=8866) |\n| 巴菲特内部讲话 | 孙力科 | [下载](https://url89.ctfile.com/f/31084289-1375513780-5bfbe2?p=8866) |\n| 蜡烛图方法（原书第2版） | 斯蒂芬·W. 比加洛 | [下载](https://url89.ctfile.com/f/31084289-1357004659-15d3f7?p=8866) |\n| 投资者的敌人 | 朱宁 | [下载](https://url89.ctfile.com/f/31084289-1357004545-ac76c4?p=8866) |\n| 投资策略实战分析（原书第4版·典藏版） | 詹姆斯・奥肖内西 | [下载](https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866) |\n| 蜡烛图精解（典藏版） | 格里高里・莫里斯/赖安・里奇菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866) |\n| 行为金融与投资心理学（原书第6版） | 约翰 R. 诺夫辛格 | [下载](https://url89.ctfile.com/f/31084289-1357004407-2a20bf?p=8866) |\n| 全球创新投资 | 睦大均 | [下载](https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866) |\n| 格雷厄姆精选集 | 珍妮特・洛 | [下载](https://url89.ctfile.com/f/31084289-1357004341-efe06a?p=8866) |\n| 稳赚：提升理财收益的投资工具 | 李红萍 | [下载](https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866) |\n| 股票投资的24堂必修课（典藏版） | 威廉・欧奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866) |\n| 价值发现 | 张靖东 | [下载](https://url89.ctfile.com/f/31084289-1357004107-ba8cf8?p=8866) |\n| 期货狙击手 | 彼得 ·L. 勃兰特 | [下载](https://url89.ctfile.com/f/31084289-1357004131-eff6fd?p=8866) |\n| 常赢投资系列（套装共5册） | 帕特・多尔西等 | [下载](https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866) |\n| 格雷厄姆经典投资策略 | 珍妮特・洛尔 | [下载](https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866) |\n| 文明、现代化、价值投资与中国 | 李录 | [下载](https://url89.ctfile.com/f/31084289-1357003972-3db08b?p=8866) |\n| 炒掉你的股票分析师（原书第2版） | 哈里・多马什 | [下载](https://url89.ctfile.com/f/31084289-1357003948-063db9?p=8866) |\n| 投资至简 | 静逸投资 | [下载](https://url89.ctfile.com/f/31084289-1357003885-267ca3?p=8866) |\n| 投资交易心理分析（典藏版） | 布雷特 N. 斯蒂恩博格 | [下载](https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866) |\n| 驾驭周期：自上而下的投资逻辑 | 乔治・达格尼诺 | [下载](https://url89.ctfile.com/f/31084289-1357003702-297e59?p=8866) |\n| 世风日上 | 方三文 | [下载](https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866) |\n| 徐远的投资课 | 徐远 | [下载](https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866) |\n| 24堂财富课 | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357002823-f70963?p=8866) |\n| 交易圣经 | 布伦特・奔富 | [下载](https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866) |\n| 理财就是理生活：6个受益一生的财富思维 | 水湄物语 | [下载](https://url89.ctfile.com/f/31084289-1357001803-f962c9?p=8866) |\n| 财富管理的行为金融 | 迈克尔·M.庞皮恩 | [下载](https://url89.ctfile.com/f/31084289-1357001725-bf1b89?p=8866) |\n| 财富自由新思维 | 洪榕 | [下载](https://url89.ctfile.com/f/31084289-1357000711-ebbf11?p=8866) |\n| 估值：难点、解决方案及相关案例（原书第3版） | 阿斯瓦斯・达莫达兰 | [下载](https://url89.ctfile.com/f/31084289-1357000969-822392?p=8866) |\n| 财富思维 | 李若问 | [下载](https://url89.ctfile.com/f/31084289-1357000345-3f82f4?p=8866) |\n| 并购估值：构建和衡量非上市公司价值（原书第3版） | 克里斯・梅林 | [下载](https://url89.ctfile.com/f/31084289-1357000339-2527cd?p=8866) |\n| 价值 | 张磊 | [下载](https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866) |\n| 巴菲特和查理·芒格内部讲话 | 丹尼尔・佩科/科里・雷恩 | [下载](https://url89.ctfile.com/f/31084289-1356999487-966255?p=8866) |\n| 漫画投资学一看就懂 | 武敬敏 | [下载](https://url89.ctfile.com/f/31084289-1356999472-902044?p=8866) |\n| 奥马哈之雾（珍藏版） | 任俊杰/朱晓芸 | [下载](https://url89.ctfile.com/f/31084289-1356998941-39104e?p=8866) |\n| 认识投资（原书第10版） | 滋维・博迪/亚历克斯・凯恩/艾伦 J. 马库斯 | [下载](https://url89.ctfile.com/f/31084289-1356995317-3a8c8c?p=8866) |\n| 投资21戒 | 本・斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866) |\n| 指数定投实现财务自由 | 姬建东 | [下载](https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866) |\n| 不可撼动的财务自由 | 托尼・罗宾斯/彼得・默劳克 | [下载](https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866) |\n| ETF全球投资指南 | 王延巍 | [下载](https://url89.ctfile.com/f/31084289-1356994768-9ce779?p=8866) |\n| 巴比伦富翁新解 | 乔治・克拉森 | [下载](https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866) |\n| 财报背后的投资机会 | 蒋豹 | [下载](https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866) |\n| 大钱细思 | 乔尔・蒂林哈斯特 | [下载](https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866) |\n| 指数基金投资从入门到精通 | 老罗 | [下载](https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866) |\n| 投资的怪圈 | 贾森・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866) |\n| 家庭财富保卫攻略 | 王昊 | [下载](https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866) |\n| 直面不确定性 | 大辉 | [下载](https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866) |\n| 保险自选手册 | 许春波 | [下载](https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866) |\n| 长期投资 | 弗朗西斯科・加西亚・帕拉梅斯 | [下载](https://url89.ctfile.com/f/31084289-1356991150-020ce0?p=8866) |\n| 买房法典 | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1356990313-a6a495?p=8866) |\n| 买房可以很简单 | 子安 | [下载](https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866) |\n| 超额收益2 | 刘哲 | [下载](https://url89.ctfile.com/f/31084289-1356989473-64fb2e?p=8866) |\n| 一个投机者的告白（实战版） | 安纳金 | [下载](https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866) |\n| 证券分析（原书第6版） | 本杰明・格雷厄姆/戴维・多德 | [下载](https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866) |\n| 投资的常识 | 布拉德福德・康纳尔等 | [下载](https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866) |\n| 适应性市场 | 罗闻全 | [下载](https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866) |\n| 让财报说话 | 郑永强 | [下载](https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866) |\n| 水库论坛欧神作品（共2册） | 欧成效 | [下载](https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866) |\n| 无常的博弈 | 陆一 | [下载](https://url89.ctfile.com/f/31084289-1356985033-817187?p=8866) |\n| 让时间陪你慢慢变富 | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1356984862-b62e79?p=8866) |\n| 苏世民：我的经验与教训 | 苏世民 | [下载](https://url89.ctfile.com/f/31084289-1356983317-a811f8?p=8866) |\n| 富可敌国（经典版） | 塞巴斯蒂安・马拉比 | [下载](https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866) |\n| 对冲 | 阿莉森・施拉格 | [下载](https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866) |\n| 精明投资者的满分课 | 孙旭东等 | [下载](https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866) |\n| 股市趋势技术分析圣经 | 理查德·W·夏巴克 | [下载](https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866) |\n| 解读华尔街（原书第5版） | 杰弗里 B 利特尔 | [下载](https://url89.ctfile.com/f/31084289-1357051507-55c3ee?p=8866) |\n| 交易之路 | 陈凯 | [下载](https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866) |\n| 投资心理学（原书第5版） | 约翰 R. 诺夫辛格 | [下载](https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866) |\n| 日本蜡烛图技术新解 | 史蒂夫・尼森 | [下载](https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866) |\n| 富人的逻辑 | 雷纳・齐特尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866) |\n| 期权、期货及其他衍生产品（原书第9版） | 约翰・赫尔 | [下载](https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866) |\n| 有效资产管理（典藏版） | 威廉・伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866) |\n| 看得懂的金融投资课 | 向松祚 | [下载](https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866) |\n| 投资思想史（珍藏版） | 马克・鲁宾斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357050625-389c43?p=8866) |\n| 金融怪杰：华尔街的顶级交易员 | 杰克D. 施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866) |\n| 百万富翁快车道 | MJ·德马科 | [下载](https://url89.ctfile.com/f/31084289-1357050346-fb40ee?p=8866) |\n| 资本的眼睛 | 吴卫军 | [下载](https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866) |\n| 走进我的交易室 | 亚历山大・艾尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866) |\n| 巴菲特的护城河（新版） | 帕特・多尔西 | [下载](https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866) |\n| 驾驭交易（原书第2版） | 约翰・卡特 | [下载](https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866) |\n| 金股博弈（第4版） | 弈樊 | [下载](https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866) |\n| 大熊市启示录（原书第4版） | 拉塞尔・纳皮尔 | [下载](https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866) |\n| 可转债投资魔法书（第2版） | 安道全 | [下载](https://url89.ctfile.com/f/31084289-1357049134-412875?p=8866) |\n| 逆向投资策略 | 大卫・德雷曼 | [下载](https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866) |\n| 副业赚钱 | Angie | [下载](https://url89.ctfile.com/f/31084289-1357048438-cb560b?p=8866) |\n| 交易冠军 | 马丁・舒华兹 | [下载](https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866) |\n| 一个农民的亿万传奇 | 傅海棠 | [下载](https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866) |\n| 金融市场与金融机构（原书第7版） | 弗雷德里克 S. 米什金/斯坦利 G. 埃金斯 | [下载](https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866) |\n| 十年一梦（修订版） | 青泽 | [下载](https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866) |\n| 艾略特波浪理论：研判股市底部与顶部的有效工具 | 拉尔夫·N·艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866) |\n| 期权：就这么简单 | 韩冬 | [下载](https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866) |\n| 逃不开的经济周期（珍藏版） | 拉斯・特维德 | [下载](https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866) |\n| 逃不开的经济周期2 | 拉斯・特维德 | [下载](https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866) |\n| 金融交易圣经 | 约翰・派珀 | [下载](https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866) |\n| 金融交易圣经Ⅱ | 约翰・派珀 | [下载](https://url89.ctfile.com/f/31084289-1357046155-96b7bf?p=8866) |\n| 股权战争（全新升级版） | 苏龙飞 | [下载](https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866) |\n| 新金融怪杰 | 杰克・施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866) |\n| 在股市遇见凯恩斯 | 约翰 F. 瓦辛科 | [下载](https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866) |\n| 高频交易（原书第2版） | 艾琳・奥尔德里奇 | [下载](https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866) |\n| 巴菲特的第一桶金 | 格伦・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866) |\n| 亲历巴菲特股东大会 | 杰夫・马修斯 | [下载](https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866) |\n| 我如何从股市赚了200万（珍藏版） | 尼古拉斯・达瓦斯 | [下载](https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866) |\n| 一本书读懂黄金白银投资理财 | 李若问 | [下载](https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866) |\n| 股票投资入门与实战技巧 | 王坤 | [下载](https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866) |\n| 对赌：信息不足时如何做出高明决策 | 安妮・杜克 | [下载](https://url89.ctfile.com/f/31084289-1357043983-9ffaef?p=8866) |\n| 小散逆袭：手把手教你做量化定投 | 万磊 | [下载](https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866) |\n| 看盘方法与技巧一本通 | 老牛 | [下载](https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866) |\n| 概率游戏：像操盘手那样做股票（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866) |\n| 超额收益融合战法 | 约翰・帕利卡 | [下载](https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866) |\n| 白矮星：交易员的心理与交易体系 | 赛博格 | [下载](https://url89.ctfile.com/f/31084289-1357043554-fc98f2?p=8866) |\n| 概率游戏：像操盘手那样做股票 | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866) |\n| 富爸爸系列全集（套装共32册） | 罗伯特・清崎 | [下载](https://url89.ctfile.com/f/31084289-1357043707-53aa09?p=8866) |\n| 巴菲特与索罗斯的投资习惯（纪念版） | 马克・泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866) |\n| 黑马波段操盘术（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866) |\n| 说谎者的扑克牌 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866) |\n| 独立，从财富开始 | 水湄物语 | [下载](https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866) |\n| 说谎者的扑克牌（纪念版） | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866) |\n| 振荡指标MACD（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866) |\n| 超额收益 | 刘哲 | [下载](https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866) |\n| 穿过迷雾 | 任俊杰 | [下载](https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866) |\n| 在苍茫中传灯 | 姚斌 | [下载](https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866) |\n| 以交易为生Ⅱ | 亚历山大・埃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866) |\n| 高频交易员 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866) |\n| 市场真相 | 杰克D.施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866) |\n| 大破局 | 叶檀 | [下载](https://url89.ctfile.com/f/31084289-1357042051-f213e9?p=8866) |\n| 漫步华尔街（原书第11版） | 伯顿G.马尔基尔 | [下载](https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866) |\n| 解密硅谷 | 米歇尔 E. 梅西纳等 | [下载](https://url89.ctfile.com/f/31084289-1357041922-49f6ab?p=8866) |\n| 定投十年财务自由 | 银行螺丝钉 | [下载](https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866) |\n| 雪球投资 | 林起 | [下载](https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866) |\n| 低风险，高回报 | 皮姆・万・弗利特 | [下载](https://url89.ctfile.com/f/31084289-1357041322-fd0d46?p=8866) |\n| 巴菲特高收益投资策略 | 吉瓦・拉玛斯瓦米 | [下载](https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866) |\n| 债券投资实战 | 龙红亮 | [下载](https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866) |\n| 12年20倍 | 唐彬 | [下载](https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866) |\n| 蜡烛图精解（原书第3版） | 格里高里・莫里斯等 | [下载](https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866) |\n| 巴菲特的投资组合（珍藏版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866) |\n| 股票作手回忆录 | 杰西・利弗莫尔 | [下载](https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866) |\n| 索罗斯传（白金珍藏版） | 罗伯特・斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866) |\n| 量价分析 | 安娜・库林 | [下载](https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866) |\n| 股票基本面分析清单 | 迈克尔・希恩 | [下载](https://url89.ctfile.com/f/31084289-1357039261-a095a3?p=8866) |\n| 背离技术分析 | 江南小隐 | [下载](https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866) |\n| 集中投资 | 艾伦・卡尔普・波尼洛等 | [下载](https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866) |\n| 投资最重要的事 | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866) |\n| 投资最重要的事（全新升级版） | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866) |\n| 沃伦·巴菲特如是说 | 珍妮特・洛 | [下载](https://url89.ctfile.com/f/31084289-1357038517-e8a9af?p=8866) |\n| 查理·芒格的智慧（原书第2版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357038406-87e81f?p=8866) |\n| 猎杀黑马 | 王宁 | [下载](https://url89.ctfile.com/f/31084289-1357038283-074510?p=8866) |\n| 过顶擒龙 | 王宁 | [下载](https://url89.ctfile.com/f/31084289-1357038112-a98e13?p=8866) |\n| 涛动周期录 | 周金涛 | [下载](https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866) |\n| 暴力K线擒大牛 | 王宁 | [下载](https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866) |\n| 积极型资产配置指南 | 马丁 J. 普林格 | [下载](https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866) |\n| 彼得·林奇教你理财（典藏版） | 彼得・林奇/约翰・罗瑟查尔德 | [下载](https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866) |\n| 金融怪杰：华尔街的顶级交易员（典藏版） | 杰克 D. 施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866) |\n| 彼得·林奇的成功投资（典藏版） | 彼得・林奇/约翰・罗瑟查尔德 | [下载](https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866) |\n| 对冲基金怪杰（典藏版） | 杰克・施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866) |\n| 在股市大崩溃前抛出的人（典藏版） | 伯纳德・巴鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866) |\n| 笑傲股市（原书第4版·典藏版） | 威廉・欧奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357036117-c98548?p=8866) |\n| 跨市场交易策略（典藏版） | 约翰 J. 墨菲 | [下载](https://url89.ctfile.com/f/31084289-1357035916-7ada89?p=8866) |\n| 战胜华尔街（典藏版） | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866) |\n| 日本蜡烛图技术新解（典藏版） | 史蒂夫・尼森 | [下载](https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866) |\n| 向格雷厄姆学思考，向巴菲特学投资 | 劳伦斯・坎宁安 | [下载](https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866) |\n| 一本书看透股权架构 | 李利威 | [下载](https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866) |\n| 客户的游艇在哪里（典藏版） | 小弗雷德・施韦德 | [下载](https://url89.ctfile.com/f/31084289-1357035148-7cc8c3?p=8866) |\n| 巴菲特阴谋 | 余治国 | [下载](https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866) |\n| 全球证券投资经典译丛（共16卷） | 拉尔夫・艾略特等 | [下载](https://url89.ctfile.com/f/31084289-1357034941-5999f0?p=8866) |\n| 赢得输家的游戏（原书第6版） | 查尔斯・埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866) |\n| 理财就是理生活 | 艾玛・沈 | [下载](https://url89.ctfile.com/f/31084289-1357034665-bb12ef?p=8866) |\n| 财务诡计 | 霍华德·M.施利特等 | [下载](https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866) |\n| 活用理财金三角 | 方士维 | [下载](https://url89.ctfile.com/f/31084289-1357033393-0eaf41?p=8866) |\n| 坚定不移 | 保罗・沃尔克 | [下载](https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866) |\n| 慢慢变富 | 张居营 | [下载](https://url89.ctfile.com/f/31084289-1357033147-38eae6?p=8866) |\n| 超越金融（纪念版） | 乔治・索罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866) |\n| 一本书看透IPO | 沈春晖 | [下载](https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866) |\n| 一本书读懂生活中的金融常识 | 陈思进 | [下载](https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866) |\n| 精准投资 | 管清友 | [下载](https://url89.ctfile.com/f/31084289-1357032097-a4efc4?p=8866) |\n| 韭菜的自我修养（增订版） | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866) |\n| 戴维斯王朝 | 约翰・罗斯柴尔德 | [下载](https://url89.ctfile.com/f/31084289-1357031242-bfcf62?p=8866) |\n| 战胜一切市场的人 | 爱德华・索普 | [下载](https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866) |\n| 美林传奇 | 小温斯洛普 H.史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866) |\n| 好好赚钱 | 简七 | [下载](https://url89.ctfile.com/f/31084289-1357030909-335fc1?p=8866) |\n| 穷人穷口袋，富人富脑袋 | 曾驿翔 | [下载](https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866) |\n| 经济增长的迷雾 | 威廉・伊斯特利 | [下载](https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866) |\n| 故事与估值 | 阿斯沃斯・达摩达兰 | [下载](https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866) |\n| 企业生命周期 | 伊查克・爱迪思 | [下载](https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866) |\n| 炒股的智慧（第四版） | 陈江挺 | [下载](https://url89.ctfile.com/f/31084289-1357029619-c30e77?p=8866) |\n| 债务危机 | 瑞・达利欧 | [下载](https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866) |\n| 价值投资的秘密 | Joel Greenblatt | [下载](https://url89.ctfile.com/f/31084289-1357028044-74e8a0?p=8866) |\n| 财务自由之路Ⅱ | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357027984-a043c5?p=8866) |\n| 赌金者：长期资本管理公司的升腾与陨落 | 罗杰・洛温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357027954-43ce5e?p=8866) |\n| 查理·芒格的投资思想 | 戴维・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866) |\n| 财务自由之路Ⅲ | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866) |\n| 涛动周期论 | 周金涛 | [下载](https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866) |\n| 巴菲特致股东的信：投资原则篇 | 杰里米・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357027714-2bcfdf?p=8866) |\n| 周期 | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866) |\n| 趋势戒律 | 柯弗 | [下载](https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866) |\n| 富人思维 | 贾森・卡拉卡尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357026856-69d73b?p=8866) |\n| 最后的财富帝国 | 彼得・查普曼 | [下载](https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866) |\n| Money Master the Game | Tony Robbins | [下载](https://url89.ctfile.com/f/31084289-1357026346-d7e225?p=8866) |\n| 小乌龟投资智慧 | 伍治坚 | [下载](https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866) |\n| 小乌龟投资智慧2 | 伍治坚 | [下载](https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866) |\n| 巴菲特之道（学习篇） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866) |\n| 股票魔法师2 | 马克・米勒维尼 | [下载](https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866) |\n| 趋势交易 | 安德烈亚斯 F. 克列诺 | [下载](https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866) |\n| 时间的玫瑰（全新升级版） | 但斌 | [下载](https://url89.ctfile.com/f/31084289-1357022164-b67987?p=8866) |\n| 韭菜的自我修养 | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1357022098-fc2d5f?p=8866) |\n| 私募的进化 | 格上研究中心 | [下载](https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866) |\n| 股票大作手回忆录 | 埃德文・拉斐尔 | [下载](https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866) |\n| 股票大作手操盘术 | 杰西・利弗莫尔 | [下载](https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866) |\n| 股民的眼泪 | 张华桥 | [下载](https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866) |\n| 最富足的投资 | 吉姆・罗杰斯 | [下载](https://url89.ctfile.com/f/31084289-1357020763-38a84b?p=8866) |\n| 亿万：围剿华尔街大白鲨 | 茜拉・科尔哈特卡 | [下载](https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866) |\n| 一个投资家的20年（第2版） | 杨天南 | [下载](https://url89.ctfile.com/f/31084289-1357020628-097a89?p=8866) |\n| 华尔街之狼：金融之王卡尔·伊坎传 | 马克・史蒂文斯 | [下载](https://url89.ctfile.com/f/31084289-1357020559-859f48?p=8866) |\n| 巴菲特的估值逻辑 | 林安霁 | [下载](https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866) |\n| 击败庄家 | 爱德华・索普 | [下载](https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866) |\n| 金融投资400年 | 查尔斯・马凯 | [下载](https://url89.ctfile.com/f/31084289-1357020064-c7c756?p=8866) |\n| 影子银行内幕：下一个次贷危机的源头（修订版） | 张化桥 | [下载](https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866) |\n| 资本的规则 | 张巍 | [下载](https://url89.ctfile.com/f/31084289-1357019746-4daf20?p=8866) |\n| 估值 | 埃斯瓦斯・达莫达兰 | [下载](https://url89.ctfile.com/f/31084289-1357019614-245776?p=8866) |\n| King of Capital | David Carey/John E. Morris  | [下载](https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866) |\n| 股市趋势技术分析（原书第10版） | 罗伯特 D. 爱德华兹等 | [下载](https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866) |\n| 并购估值 | 克里斯 M. 梅林/弗兰克 C. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357019248-0fcfaa?p=8866) |\n| 解密交易人的圣杯 &#8211; 卡玛利拉方程 | 何塞・曼纽尔・莫雷拉・巴蒂斯塔 | [下载](https://url89.ctfile.com/f/31084289-1357018888-a3598c?p=8866) |\n| 巴菲特致股东的信（原书第4版） | 沃伦・巴菲特 | [下载](https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866) |\n| 财务自由之路 | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357018366-414491?p=8866) |\n| 指数基金投资指南 | 银行螺丝钉 | [下载](https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866) |\n| 3G资本帝国 | 克里斯蒂娜・柯利娅 | [下载](https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866) |\n| 查理·芒格的原则 | 特兰・格里芬 | [下载](https://url89.ctfile.com/f/31084289-1357017835-758d98?p=8866) |\n| Momentum Masters | Mark Minervini | [下载](https://url89.ctfile.com/f/31084289-1357017724-0cf662?p=8866) |\n| 超级强势股：如何投资小盘价值成长股（珍藏版） | 肯尼斯・费雪 | [下载](https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866) |\n| 手把手教你读财报 | 唐朝 | [下载](https://url89.ctfile.com/f/31084289-1357017625-c61710?p=8866) |\n| 手把手教你读财报2 | 唐朝 | [下载](https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866) |\n| 穷查理宝典：查理·芒格智慧箴言录 | 查理・芒格 | [下载](https://url89.ctfile.com/f/31084289-1357017781-abd324?p=8866) |\n| 可转债投资魔法书 | 安道全 | [下载](https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866) |\n| 您厉害，您赚得多 | 方三文 | [下载](https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866) |\n| 巴菲特之道（原书第3版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357017424-7fb305?p=8866) |\n| 炒股的智慧 | 陈江挺 | [下载](https://url89.ctfile.com/f/31084289-1357017415-1f1d36?p=8866) |\n| 邓普顿教你逆向投资 | 劳伦・邓普顿/斯科特・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1357017418-95c7db?p=8866) |\n| 冲刺白马股 | 启明 | [下载](https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866) |\n| 30年后，你拿什么养活自己？2 | 高得诚 | [下载](https://url89.ctfile.com/f/31084289-1357017409-fba58b?p=8866) |\n| Principles | Ray Dalio | [下载](https://url89.ctfile.com/f/31084289-1357017202-d00a86?p=8866) |\n| 投资中不简单的事 | 邱国鹭等 | [下载](https://url89.ctfile.com/f/31084289-1357017031-9bb190?p=8866) |\n| 投资中最简单的事 | 邱国鹭 | [下载](https://url89.ctfile.com/f/31084289-1357017019-676d89?p=8866) |\n| 原则 | 瑞・达利欧 | [下载](https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866) |\n| 赌神数学家 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866) |\n| 跳着踢踏舞去上班 | 卡萝尔・卢米斯 | [下载](https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866) |\n| 聪明的投资者 | 本杰明・格雷厄姆 | [下载](https://url89.ctfile.com/f/31084289-1357016575-efb66d?p=8866) |\n| 股票魔法师 | 马克・米勒维尼 | [下载](https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866) |\n| 彼得林奇投资经典全集（共3册） | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866) |\n| 金钱永不眠：资本世界的暗流涌动和金融逻辑 | 香帅无花 | [下载](https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866) |\n| 期货市场技术分析 | 约翰・墨菲 | [下载](https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866) |\n| 巴菲特幕后智囊：查理·芒格传 | 珍妮特・洛尔 | [下载](https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866) |\n| 工作前5年，决定你一生的财富 | 三公子 | [下载](https://url89.ctfile.com/f/31084289-1357014817-68b046?p=8866) |\n| 对赌（2017全新修订版） | 陈楫宝 | [下载](https://url89.ctfile.com/f/31084289-1357014739-d21b56?p=8866) |\n| 行为投资学手册 | 詹姆斯・蒙蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1357014502-344441?p=8866) |\n| 不落俗套的成功 | 大卫・斯文森 | [下载](https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866) |\n| 雪球系列（套装共6册） | 唐朝等 | [下载](https://url89.ctfile.com/f/31084289-1357013536-91355d?p=8866) |\n| 量化投资策略 | 理查德・托托里罗 | [下载](https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866) |\n| A股赚钱必修课 | 洪榕 | [下载](https://url89.ctfile.com/f/31084289-1357012393-e3ca99?p=8866) |\n| 战上海：决胜股市未来三十年 | 洪榕 | [下载](https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866) |\n| 解读量化投资 | 忻海 | [下载](https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866) |\n| 打开量化投资的黑箱（原书第2版） | 里什・纳兰 | [下载](https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866) |\n| 巴菲特传（纪念版） | 罗杰・洛温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866) |\n| 投资哲学：保守主义的智慧之灯 | 刘军宁 | [下载](https://url89.ctfile.com/f/31084289-1357012027-429b8e?p=8866) |\n| 期货大作手风云录 | 刘强 | [下载](https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866) |\n| 外汇交易：高手训练营 | 埃德・蓬西 | [下载](https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866) |\n| 投资：一部历史 | 诺顿・雷默/杰西・唐宁  | [下载](https://url89.ctfile.com/f/31084289-1357011655-2f93f9?p=8866) |\n| 海龟交易法则（珍藏版） | 柯蒂斯・费思 | [下载](https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866) |\n| 贼巢 | 詹姆斯・斯图尔特 | [下载](https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866) |\n| 学会估值，轻松投资 | 阿斯沃斯・达摩达兰 | [下载](https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866) |\n| 小花的投资魔法书 | 小花小花 | [下载](https://url89.ctfile.com/f/31084289-1357010716-f4a679?p=8866) |\n| 小狗钱钱的爸爸教你实现财务自由 | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357010704-c5de17?p=8866) |\n| 菜场经济学 | 财上海 | [下载](https://url89.ctfile.com/f/31084289-1357010680-4deff8?p=8866) |\n| 金融炼金术 | 乔治・索罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866) |\n| 投资异类 | 王利杰 | [下载](https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866) |\n| 宽客人生：从物理学家到数量金融大师的传奇 | 伊曼纽尔・德曼 | [下载](https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866) |\n| 华尔街幽灵 | 阿瑟・辛普森 | [下载](https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866) |\n| 随机漫步的傻瓜 | 戴纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866) |\n| 套利的常识 | 章文 | [下载](https://url89.ctfile.com/f/31084289-1357009060-a4097b?p=8866) |\n| 华尔街潜规则 | 乔舒亚・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866) |\n| 非富不可：曹仁超给年轻人的投资忠告 | 曹仁超 | [下载](https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866) |\n| 奥马哈之雾 | 任俊杰/朱晓芸 | [下载](https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866) |\n| 金牌投资人 | 龙在宇 | [下载](https://url89.ctfile.com/f/31084289-1357007572-2aa1dc?p=8866) |\n| 操盘手Ⅰ：自由救赎 | 花荣 | [下载](https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866) |\n| 我最需要的理财常识书 | 王华 | [下载](https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866) |\n| 走出幻觉・走向成熟 | 金融帝国 | [下载](https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866) |\n| 一个投资家的20年 | 杨天南 | [下载](https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866) |\n| 大牛市・股殇系列（全两册） | 诸葛就是不亮 | [下载](https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866) |\n| 百箭穿杨 | 小小辛巴 | [下载](https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866) |\n| 非赚不可 | 袁园 | [下载](https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866) |\n| 炒股怎能不懂波段 | 宋建文 | [下载](https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866) |\n| 期权波动率与定价：高级交易策略与技巧 | 谢尔登・纳坦恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866) |\n| 小狗钱钱（套装全2册） | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866) |\n| 麦克米伦谈期权 | 劳伦斯G.麦克米伦 | [下载](https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866) |\n| 对冲基金奇才 | 杰克·施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866) |\n| 股市长线法宝（原书第5版） | 杰里米J. 西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866) |\n| 富爸爸穷爸爸 | 罗伯特.T.清崎 | [下载](https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866) |\n| 解读私募股权基金 | 周炜 | [下载](https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866) |\n| 巴菲特致股东的信（精华篇） | L·J·瑞德豪斯 | [下载](https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866) |\n| 街头智慧 | 吉姆・罗杰斯 | [下载](https://url89.ctfile.com/f/31084289-1357007074-d9d1d7?p=8866) |\n| 从20万到30亿：特朗普自传 | 唐纳德・特朗普 | [下载](https://url89.ctfile.com/f/31084289-1357007062-db94c3?p=8866) |\n| 摩根财团 | 罗恩·彻诺 | [下载](https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866) |\n| 梦想与浮沉：A股十年上市博弈（2004～2014） | 王骥跃/班妮 | [下载](https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866) |\n| 史丹•温斯坦称傲牛熊市的秘密（珍藏版） | 史丹·温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866) |\n| 世界是部金融史（全新修订典藏版） | 陈雨露/杨栋  | [下载](https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866) |\n| 地产江湖 | 肖宾 | [下载](https://url89.ctfile.com/f/31084289-1357006465-0c5bcc?p=8866) |\n| 股市真规则（第二版） | 帕特・多尔西 | [下载](https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866) |\n| 对冲基金到底是什么？ | 黄徽 | [下载](https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866) |\n| 自由选择（珍藏版） | 米尔顿・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1357005688-284601?p=8866) |\n| 祖鲁法则 | 吉姆·斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866) |\n| 安东尼·波顿的成功投资 | 安东尼·波顿 | [下载](https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866) |\n| 短线交易秘诀（原书第2版） | 拉里·威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866) |\n| 门口的野蛮人 | 布赖恩・伯勒 | [下载](https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866) |\n| 雪球「岛」系列・投资入门套装（共七册） | 雪球用户 | [下载](https://url89.ctfile.com/f/31084289-1357005484-765294?p=8866) |\n| 约翰·聂夫的成功投资（珍藏版） | 约翰・聂夫 | [下载](https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866) |\n| 以交易为生（珍藏版） | 亚历山大・埃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866) |\n| 通向财务自由之路（原书第2版·珍藏版） | 范・撒普 | [下载](https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866) |\n| 非理性繁荣（第二版） | 罗伯特·希勒 | [下载](https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866) |\n| 资本的雪球 | 吕波 | [下载](https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866) |\n| 怎样选择成长股 | 菲利普·A·费舍 | [下载](https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866) |\n| 笑傲股市（原书第四版） | 威廉・欧奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866) |\n| 彼得·林奇教你理财 | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866) |\n| 风生水起：水皮股市创富录 | 水皮 | [下载](https://url89.ctfile.com/f/31084289-1357004770-b214ba?p=8866) |\n| 那些滚雪球的人 | 王星 | [下载](https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866) |\n"
  },
  {
    "path": "md/抖音.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 抖音\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 从零开始玩转抖音 | 黑马唐 | [下载](https://url89.ctfile.com/f/31084289-1357051885-f479db?p=8866) |\n| 新引爆点：抖音运营从0到1实战指南 | 头条易 | [下载](https://url89.ctfile.com/f/31084289-1357034614-ada148?p=8866) |\n"
  },
  {
    "path": "md/抗战.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 抗战\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 叛逆者 | 畀愚 | [下载](https://url89.ctfile.com/f/31084289-1375510285-84f4ea?p=8866) |\n| 红色 | 徐兵 | [下载](https://url89.ctfile.com/f/31084289-1357023499-da43d2?p=8866) |\n| 抗战时代生活史 | 陈存仁 | [下载](https://url89.ctfile.com/f/31084289-1357015798-1b99aa?p=8866) |\n| 我的河山：抗日正面战场全纪实（套装共3册） | 陈钦  | [下载](https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866) |\n| 我的抗战Ⅰ | 《我的抗战》节目组 | [下载](https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866) |\n| 我的抗战Ⅱ | 《我的抗战》节目组 | [下载](https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866) |\n| 驼峰航线 | 刘小童 | [下载](https://url89.ctfile.com/f/31084289-1357006864-e878d2?p=8866) |\n| 狗日的战争2 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357006252-0e8944?p=8866) |\n| 虎部队：国民党抗日王牌七十四军 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005970-002055?p=8866) |\n| 抗日战争的细节大全集（共4册） | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866) |\n| 一寸河山一寸血（套装全五册） | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005226-7cf478?p=8866) |\n"
  },
  {
    "path": "md/抗日战争.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 抗日战争\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 狗日的战争3 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357006240-b0ff09?p=8866) |\n| 抗日战争的细节大全集（共4册） | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357005844-93e974?p=8866) |\n"
  },
  {
    "path": "md/护肤.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 护肤\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 张文鹤护肤指南 | 张文鹤 | [下载](https://url89.ctfile.com/f/31084289-1375508950-cd7130?p=8866) |\n| 神奇的肌肤能量书Ⅱ | 金柏莉・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1357039144-9df9ca?p=8866) |\n"
  },
  {
    "path": "md/拉丁美洲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 拉丁美洲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 拉丁美洲被切开的血管 | 爱德华多・加莱亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357024495-ad2eac?p=8866) |\n"
  },
  {
    "path": "md/拉伸.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 拉伸\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 拉伸：适合全家人的健身与运动 | 杨克新 | [下载](https://url89.ctfile.com/f/31084289-1357051009-b7847b?p=8866) |\n| 拉伸运动系统训练（全彩图解第2版） | 阿诺德·G.尼尔森/尤卡・科科宁 | [下载](https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866) |\n"
  },
  {
    "path": "md/拉美.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 拉美\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 银、剑、石：拉丁美洲的三重烙印 | 玛丽・阿拉纳 | [下载](https://url89.ctfile.com/f/31084289-1357003672-fa8a61?p=8866) |\n| 佩恩先生 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1356985156-46b0f6?p=8866) |\n| 布宜诺斯艾利斯传 | 詹姆斯・加德纳 | [下载](https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866) |\n| 花与恶心 | 卡洛斯・德鲁蒙德・德・安德拉德 | [下载](https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866) |\n| 十个女人 | 马塞拉・塞拉诺 | [下载](https://url89.ctfile.com/f/31084289-1357037614-efe484?p=8866) |\n| 掉队的拉美 | 塞巴斯蒂安・爱德华兹 | [下载](https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866) |\n| 没有人给他写信的上校 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357034659-dfacc3?p=8866) |\n| 安第斯山脉的生与死 | 金・麦夸里 | [下载](https://url89.ctfile.com/f/31084289-1357032457-1c064e?p=8866) |\n| 印加帝国的末日 | 金・麦夸里 | [下载](https://url89.ctfile.com/f/31084289-1357032436-e2b271?p=8866) |\n| 风景画家的片段人生 | 塞萨尔・艾拉 | [下载](https://url89.ctfile.com/f/31084289-1357032295-900cb5?p=8866) |\n| 黑羊 | 奥古斯托・蒙特罗索 | [下载](https://url89.ctfile.com/f/31084289-1357028038-89760c?p=8866) |\n| 斗牛士之名 | 路易斯・塞普尔维达 | [下载](https://url89.ctfile.com/f/31084289-1357027405-82e241?p=8866) |\n| 天谴 | 塞尔希奥・拉米雷斯 | [下载](https://url89.ctfile.com/f/31084289-1357024861-a5cc92?p=8866) |\n| 族长的秋天 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357022356-073aeb?p=8866) |\n| 克罗诺皮奥与法玛的故事 | 胡利奥・科塔萨尔 | [下载](https://url89.ctfile.com/f/31084289-1357017775-747156?p=8866) |\n"
  },
  {
    "path": "md/拍摄.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 拍摄\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 如何用手机拍一部电影 | 英国Little White Lies编辑部 | [下载](https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866) |\n"
  },
  {
    "path": "md/拜占庭.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 拜占庭\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 拜占庭的失落之城 | 斯蒂文・朗西曼 | [下载](https://url89.ctfile.com/f/31084289-1375491781-3f42cf?p=8866) |\n| 幽灵帝国拜占庭 | 理查德・菲德勒 | [下载](https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866) |\n| 拜占庭一千年 | 狄奥尼修斯・史塔克普洛斯 | [下载](https://url89.ctfile.com/f/31084289-1356982519-94e7e1?p=8866) |\n| 伊斯坦布尔三城记 | 贝塔妮・休斯 | [下载](https://url89.ctfile.com/f/31084289-1357046263-508e02?p=8866) |\n| 拜占庭帝国史 | A.A.瓦西列夫 | [下载](https://url89.ctfile.com/f/31084289-1357044142-7b9e97?p=8866) |\n| 拜占庭帝国大战略 | 爱德华·N.勒特韦克 | [下载](https://url89.ctfile.com/f/31084289-1357024978-af4d02?p=8866) |\n"
  },
  {
    "path": "md/拿破仑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 拿破仑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 帝国浮沉：关于拿破仑一世的私人回忆（全2册） | 克劳德・梅尼瓦尔 | [下载](https://url89.ctfile.com/f/31084289-1375498120-b235b7?p=8866) |\n| 拿破仑大帝（全2册） | 安德鲁・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357053979-14e623?p=8866) |\n| 滑铁卢：决定欧洲命运的四天 | 蒂姆・克莱顿 | [下载](https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866) |\n| 君主论（拿破仑批注版） | 马基雅维利 | [下载](https://url89.ctfile.com/f/31084289-1357049287-a0aa34?p=8866) |\n| 回忆拿破仑 | 布里昂 | [下载](https://url89.ctfile.com/f/31084289-1357032748-b88b28?p=8866) |\n| 拿破仑三世与法兰西第二帝国 | 皮埃尔・德・拉诺 | [下载](https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866) |\n| 拿破仑传（果麦经典） | 埃米尔・路德维希 | [下载](https://url89.ctfile.com/f/31084289-1357029262-51cdbd?p=8866) |\n| 滑铁卢：四天、三支大军和三场战役的历史 | 伯纳德・康沃尔 | [下载](https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866) |\n"
  },
  {
    "path": "md/挪威.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 挪威\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 雪晶的重量 | 索瓦尔德・斯蒂恩 | [下载](https://url89.ctfile.com/f/31084289-1375513150-bd79a9?p=8866) |\n| 我的奋斗5：雨必将落下 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1375513363-ea608c?p=8866) |\n| 我的奋斗4：在黑暗中舞蹈 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1375513585-9dcc19?p=8866) |\n| 蝙蝠 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866) |\n| 蟑螂 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866) |\n| 外出偷马 | 佩尔・帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866) |\n| 我的奋斗3：童年岛屿 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1357040794-82ba8e?p=8866) |\n| 安静 | 艾林・卡格 | [下载](https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866) |\n| 我的奋斗2：恋爱中的男人 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1357038484-c5673e?p=8866) |\n| 复仇者 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866) |\n| 焦渴 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866) |\n| 五芒星 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357032607-6ae82c?p=8866) |\n| 雪人 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866) |\n"
  },
  {
    "path": "md/探索.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 探索\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 未解之谜（套装共2册） | 克雷格·P·鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357029346-23a41e?p=8866) |\n| 外星人已潜伏地球5000年 | 吉姆・马尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357007305-7428fc?p=8866) |\n"
  },
  {
    "path": "md/探险.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 探险\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 征服亚马孙 | 埃德・斯塔福德 | [下载](https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866) |\n| 我的探险生涯Ⅰ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866) |\n| 我的探险生涯Ⅱ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866) |\n| 世界最险恶之旅Ⅰ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866) |\n| 世界最险恶之旅Ⅱ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866) |\n| 熬：极地求生700天 | 阿尔弗雷德・兰辛 | [下载](https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866) |\n| 虫图腾（套装共5册） | 闫志洋 | [下载](https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866) |\n| 查理日记（套装1-9册） | 西西弗斯 | [下载](https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866) |\n| 荒野求生少年生存小说系列（全6册） | 贝尔·格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866) |\n| 藏地密码（珍藏版大全集） | 何马 | [下载](https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866) |\n"
  },
  {
    "path": "md/探险，艺术.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 探险，艺术\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 征服亚马孙 | 埃德・斯塔福德 | [下载](https://url89.ctfile.com/f/31084289-1356994708-87bfed?p=8866) |\n| 我的探险生涯Ⅰ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866) |\n| 我的探险生涯Ⅱ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866) |\n| 世界最险恶之旅Ⅰ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866) |\n| 世界最险恶之旅Ⅱ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866) |\n| 熬：极地求生700天 | 阿尔弗雷德・兰辛 | [下载](https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866) |\n| 虫图腾（套装共5册） | 闫志洋 | [下载](https://url89.ctfile.com/f/31084289-1357007608-18e65f?p=8866) |\n| 查理日记（套装1-9册） | 西西弗斯 | [下载](https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866) |\n| 荒野求生少年生存小说系列（全6册） | 贝尔·格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866) |\n| 藏地密码（珍藏版大全集） | 何马 | [下载](https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866) |\n"
  },
  {
    "path": "md/推理.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 推理\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 海神的后裔 | 宫部美雪 | [下载](https://url89.ctfile.com/f/31084289-1375492165-c1f419?p=8866) |\n| 女郎她死了 | 约翰・迪克森・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1375497154-47f407?p=8866) |\n| 无颜的肖像 | 连城三纪彦 | [下载](https://url89.ctfile.com/f/31084289-1375498012-7fc0cd?p=8866) |\n| 土楼杀人事件 | 青稞 | [下载](https://url89.ctfile.com/f/31084289-1375498258-e31108?p=8866) |\n| 白兔 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1375498687-16a448?p=8866) |\n| 陈舜臣作品精选集（套装共20册） | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1375498732-db7b9b?p=8866) |\n| 天涯双探4：双城血案 | 七名 | [下载](https://url89.ctfile.com/f/31084289-1375498834-6b8e51?p=8866) |\n| 非常疑犯 | 红眸 | [下载](https://url89.ctfile.com/f/31084289-1375499008-3c6677?p=8866) |\n| 静默的铁证 | 米烛光 | [下载](https://url89.ctfile.com/f/31084289-1375499452-818cac?p=8866) |\n| 时空旅行者的沙漏 | 方丈贵惠 | [下载](https://url89.ctfile.com/f/31084289-1375499554-129728?p=8866) |\n| 煞风景的早间首班车 | 青崎有吾 | [下载](https://url89.ctfile.com/f/31084289-1375499617-790bb3?p=8866) |\n| 盲剑楼奇谭 | 岛田庄司 | [下载](https://url89.ctfile.com/f/31084289-1375499656-2b28df?p=8866) |\n| 恶寒 | 伊冈瞬 | [下载](https://url89.ctfile.com/f/31084289-1375499659-21ca24?p=8866) |\n| 全员嫌疑人 | 大山诚一郎 | [下载](https://url89.ctfile.com/f/31084289-1375499701-1e03fc?p=8866) |\n| 不可以 | 道尾秀介 | [下载](https://url89.ctfile.com/f/31084289-1375500319-6799a6?p=8866) |\n| 三色猫探案（全套10册） | 赤川次郎 | [下载](https://url89.ctfile.com/f/31084289-1375500352-72f750?p=8866) |\n| 虚像的丑角 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1375500529-4ea3f3?p=8866) |\n| 写字楼的奇想日志 | 孙沁文 | [下载](https://url89.ctfile.com/f/31084289-1375501069-363de9?p=8866) |\n| 气球人 | 陈浩基 | [下载](https://url89.ctfile.com/f/31084289-1375501195-ba2e60?p=8866) |\n| 复写 | 法条遥 | [下载](https://url89.ctfile.com/f/31084289-1375501207-ebe079?p=8866) |\n| 小丑的追魂曲 | 绫辻行人 | [下载](https://url89.ctfile.com/f/31084289-1375501465-eaca96?p=8866) |\n| 死亡邮递 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1375501528-5ac549?p=8866) |\n| 谋杀喜剧之13人 | 芦边拓 | [下载](https://url89.ctfile.com/f/31084289-1375501906-b0c258?p=8866) |\n| 推理要在早餐时 | 友井羊 | [下载](https://url89.ctfile.com/f/31084289-1375501912-6bbbde?p=8866) |\n| 螺旋之底 | 深木章子 | [下载](https://url89.ctfile.com/f/31084289-1375502071-0974f8?p=8866) |\n| 罪之声 | 盐田武士 | [下载](https://url89.ctfile.com/f/31084289-1375502290-65943e?p=8866) |\n| 癌症消失的陷阱 | 岩木一麻 | [下载](https://url89.ctfile.com/f/31084289-1375502299-90d8e4?p=8866) |\n| 强蚁 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1375502317-8ffcba?p=8866) |\n| 猫头鹰谋杀案（全两册） | 安东尼・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1375502944-116268?p=8866) |\n| 黑夜的空白 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1375502995-e5753e?p=8866) |\n| 谷中复古相机店的日常之谜 | 柊彩夏花 | [下载](https://url89.ctfile.com/f/31084289-1375503274-be09aa?p=8866) |\n| 密室小丑 | 时晨 | [下载](https://url89.ctfile.com/f/31084289-1375503307-04dbfb?p=8866) |\n| 放学后的小巷 | 钟声礼 | [下载](https://url89.ctfile.com/f/31084289-1375503742-9d1027?p=8866) |\n| 水之焰 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1375503907-fa1c8f?p=8866) |\n| 反骗案中案2 | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1375504207-c1fb9f?p=8866) |\n| 无人机侦探 | 早坂吝 | [下载](https://url89.ctfile.com/f/31084289-1375504249-86b3ea?p=8866) |\n| 魔女的诅咒 | 绫辻行人 | [下载](https://url89.ctfile.com/f/31084289-1375504387-1f8756?p=8866) |\n| 火神被杀 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1375504948-b4d124?p=8866) |\n| 希望之罪 | 雫井脩介 | [下载](https://url89.ctfile.com/f/31084289-1375504969-317fa1?p=8866) |\n| 玩偶 | 法医秦明 | [下载](https://url89.ctfile.com/f/31084289-1375506412-556a2b?p=8866) |\n| 高智商犯罪（全4册） | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1375506754-0e6d8a?p=8866) |\n| 黑死馆杀人事件 | 小栗虫太郎 | [下载](https://url89.ctfile.com/f/31084289-1375507480-82ae1d?p=8866) |\n| Blue | 叶真中显 | [下载](https://url89.ctfile.com/f/31084289-1375507555-b894c0?p=8866) |\n| 星降山庄杀人事件 | 仓知淳 | [下载](https://url89.ctfile.com/f/31084289-1375507576-8cc946?p=8866) |\n| 三体秘密 | 田加刚 | [下载](https://url89.ctfile.com/f/31084289-1375508785-577194?p=8866) |\n| 如首无作祟之物 | 三津田信三 | [下载](https://url89.ctfile.com/f/31084289-1375508980-843c48?p=8866) |\n| 如水魑沉没之物 | 三津田信三 | [下载](https://url89.ctfile.com/f/31084289-1375509070-c0bdeb?p=8866) |\n| 逆时侦查组 | 张小猫 | [下载](https://url89.ctfile.com/f/31084289-1375509094-55dc76?p=8866) |\n| 逆时侦查组2 | 张小猫 | [下载](https://url89.ctfile.com/f/31084289-1375509217-382771?p=8866) |\n| 宫部美雪精选系列套装（全套9册） | 宫部美雪 | [下载](https://url89.ctfile.com/f/31084289-1375509352-b0b5f1?p=8866) |\n| 罪头条 | 朱首末 | [下载](https://url89.ctfile.com/f/31084289-1375509643-1ce27b?p=8866) |\n| 无形之刃 | 陈研一 | [下载](https://url89.ctfile.com/f/31084289-1375509706-840d1a?p=8866) |\n| 宫部美雪经典大全集（共18册） | 宫部美雪 | [下载](https://url89.ctfile.com/f/31084289-1375509736-12be99?p=8866) |\n| 完美嫌疑人 | 陈研一 | [下载](https://url89.ctfile.com/f/31084289-1375509868-3a24d8?p=8866) |\n| 魔鬼藏身处 | 克雷格・拉塞尔 | [下载](https://url89.ctfile.com/f/31084289-1375509964-8500bb?p=8866) |\n| 字母表谜案 | 大山诚一郎 | [下载](https://url89.ctfile.com/f/31084289-1375510117-6dfc14?p=8866) |\n| 消失者 | 多纳托・卡瑞西 | [下载](https://url89.ctfile.com/f/31084289-1375510153-b0429d?p=8866) |\n| 无名之町 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1375510159-ff40a6?p=8866) |\n| 寒栗 | 索伦・斯外斯特普 | [下载](https://url89.ctfile.com/f/31084289-1375510246-3b3fae?p=8866) |\n| 关键词是谋杀 | 安东尼・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1375510258-1956b1?p=8866) |\n| 大英图书馆·侦探小说黄金时代经典作品集（第二辑） | 约翰・布德 | [下载](https://url89.ctfile.com/f/31084289-1375510402-6201e7?p=8866) |\n| 蒸汽歌剧 | 芦边拓 | [下载](https://url89.ctfile.com/f/31084289-1375510417-29d3f7?p=8866) |\n| 推理要在本格前 | 谷崎润一郎等 | [下载](https://url89.ctfile.com/f/31084289-1375510438-80e787?p=8866) |\n| 衣更月一族 | 深木章子 | [下载](https://url89.ctfile.com/f/31084289-1375510519-3f9e01?p=8866) |\n| 敲响密室之门2 | 青崎有吾 | [下载](https://url89.ctfile.com/f/31084289-1375510768-eb84c6?p=8866) |\n| 反骗案中案 | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1375510774-bc0b04?p=8866) |\n| 午夜零点的灰姑娘 | 相泽沙呼 | [下载](https://url89.ctfile.com/f/31084289-1375510792-999876?p=8866) |\n| 致命雕刻 | 杰夫里・迪弗 | [下载](https://url89.ctfile.com/f/31084289-1375511026-be629f?p=8866) |\n| 心灵侦探城塚翡翠 | 相泽沙呼 | [下载](https://url89.ctfile.com/f/31084289-1375511047-957c7f?p=8866) |\n| 愚者之毒 | 宇佐美真琴 | [下载](https://url89.ctfile.com/f/31084289-1375511068-71edff?p=8866) |\n| 如幽女怨怼之物 | 三津田信三 | [下载](https://url89.ctfile.com/f/31084289-1375511302-9c1208?p=8866) |\n| 伊芙琳的七次死亡 | 斯图尔特・特顿 | [下载](https://url89.ctfile.com/f/31084289-1375511320-d34f47?p=8866) |\n| 如碆灵供祭之物 | 三津田信三 | [下载](https://url89.ctfile.com/f/31084289-1375511338-6a8951?p=8866) |\n| 猎头游戏 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1375511377-5d4220?p=8866) |\n| 三重旋涡 | 江户川乱步 | [下载](https://url89.ctfile.com/f/31084289-1375511446-fdf67e?p=8866) |\n| 关于那个人的备忘录 | 小林泰三 | [下载](https://url89.ctfile.com/f/31084289-1375511449-1dfbff?p=8866) |\n| 镜之孤城 | 辻村深月 | [下载](https://url89.ctfile.com/f/31084289-1375511485-ef75a1?p=8866) |\n| 女妖 | 江户川乱步 | [下载](https://url89.ctfile.com/f/31084289-1375511527-ab2e43?p=8866) |\n| 空屋 | 横山秀夫 | [下载](https://url89.ctfile.com/f/31084289-1375511623-b2e18c?p=8866) |\n| 遗忘，刑警 | 陈浩基 | [下载](https://url89.ctfile.com/f/31084289-1375512259-6eaee7?p=8866) |\n| 逐星记 | 陆烨华 | [下载](https://url89.ctfile.com/f/31084289-1375512577-62230a?p=8866) |\n| 神的标价 | 一色小百合 | [下载](https://url89.ctfile.com/f/31084289-1375512676-87b6b4?p=8866) |\n| 春日之书 | 陆烨华 | [下载](https://url89.ctfile.com/f/31084289-1375512724-475bdb?p=8866) |\n| 冰菓套装（共6册） | 米泽穗信 | [下载](https://url89.ctfile.com/f/31084289-1375512742-f3bb77?p=8866) |\n| 平面犬 | 乙一 | [下载](https://url89.ctfile.com/f/31084289-1375512745-b4d92b?p=8866) |\n| 巫女馆的密室 | 爱川晶 | [下载](https://url89.ctfile.com/f/31084289-1375513387-40fbae?p=8866) |\n| 侯大利刑侦笔记5 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1375513426-83f70a?p=8866) |\n| 人偶的复活 | 绫辻行人 | [下载](https://url89.ctfile.com/f/31084289-1375513450-23c7d7?p=8866) |\n| 大唐探案录之长安风云 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1375513666-cf19af?p=8866) |\n| 寂寞的频率 | 乙一 | [下载](https://url89.ctfile.com/f/31084289-1357004548-3945b2?p=8866) |\n| 失踪假日 | 乙一 | [下载](https://url89.ctfile.com/f/31084289-1357004509-22c040?p=8866) |\n| 玻璃鸟不会归来 | 市川忧人 | [下载](https://url89.ctfile.com/f/31084289-1357004404-3c2e54?p=8866) |\n| 扮演者游戏 | 赵婧怡 | [下载](https://url89.ctfile.com/f/31084289-1357004344-a3de5d?p=8866) |\n| 鸟居密室 | 岛田庄司 | [下载](https://url89.ctfile.com/f/31084289-1357004335-73a458?p=8866) |\n| 怜悯恶魔 | 西泽保彦 | [下载](https://url89.ctfile.com/f/31084289-1357004092-e10bc0?p=8866) |\n| 剖开您是我的荣幸 | 皆川博子 | [下载](https://url89.ctfile.com/f/31084289-1357004008-11b886?p=8866) |\n| 孔雀的遗书 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357003945-01ea8c?p=8866) |\n| 侦探AI | 早坂吝 | [下载](https://url89.ctfile.com/f/31084289-1357003939-b7b6bf?p=8866) |\n| 沉默的病人 | 亚历克斯・麦克利兹 | [下载](https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866) |\n| 非人类 | 绫辻行人 | [下载](https://url89.ctfile.com/f/31084289-1357003831-776229?p=8866) |\n| 鼠之夜 | 连城三纪彦 | [下载](https://url89.ctfile.com/f/31084289-1357003696-86cce0?p=8866) |\n| 南宋秘卷之青玉案 | 姜木水 | [下载](https://url89.ctfile.com/f/31084289-1357002406-681de0?p=8866) |\n| 大明神探于谦 | 史刚 | [下载](https://url89.ctfile.com/f/31084289-1357002157-6dd901?p=8866) |\n| 绝叫 | 叶真中显 | [下载](https://url89.ctfile.com/f/31084289-1357001932-e4433b?p=8866) |\n| 魔眼之匣谜案 | 今村昌弘 | [下载](https://url89.ctfile.com/f/31084289-1357000648-79dc5c?p=8866) |\n| 侯大利刑侦笔记4 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1357000630-a6cc40?p=8866) |\n| 最后之子 | 约翰・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357000255-aea9fc?p=8866) |\n| 长长的回廊 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357000189-60889e?p=8866) |\n| 黑暗中飘香的谎言 | 下村敦史 | [下载](https://url89.ctfile.com/f/31084289-1356999790-e9183c?p=8866) |\n| 嫌疑人 | 迈克尔・罗伯森 | [下载](https://url89.ctfile.com/f/31084289-1356998800-9f56b7?p=8866) |\n| 鬼畜之家 | 深木章子 | [下载](https://url89.ctfile.com/f/31084289-1356998785-2de043?p=8866) |\n| 暗幕下的格尔尼卡 | 原田舞叶 | [下载](https://url89.ctfile.com/f/31084289-1356998782-596e15?p=8866) |\n| 剪刀男 | 殊能将之 | [下载](https://url89.ctfile.com/f/31084289-1356997609-6b8114?p=8866) |\n| 超杀人事件 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1356996496-c3ca08?p=8866) |\n| 遗忘者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1356996394-3987f5?p=8866) |\n| 赤色博物馆 | 大山誠一郎 | [下载](https://url89.ctfile.com/f/31084289-1356996154-b859bc?p=8866) |\n| 迪伦马特侦探小说集 | 弗里德里希・迪伦马特 | [下载](https://url89.ctfile.com/f/31084289-1356995539-76948f?p=8866) |\n| 指定目击者 | 午晔 | [下载](https://url89.ctfile.com/f/31084289-1356995380-99ff61?p=8866) |\n| 扫鼠岭 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1356995350-a6adfe?p=8866) |\n| 双子星 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1356995347-83f9c3?p=8866) |\n| 挑战 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1356995278-8ef9dc?p=8866) |\n| 雪国之劫 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1356995221-651633?p=8866) |\n| 两种真相 | 迈克尔・康奈利 | [下载](https://url89.ctfile.com/f/31084289-1356995215-ab07fb?p=8866) |\n| 消失的13级台阶 | 高野和明 | [下载](https://url89.ctfile.com/f/31084289-1356994549-aa6507?p=8866) |\n| 虚拟街头漂流记（午夜文库） | 宠物先生 | [下载](https://url89.ctfile.com/f/31084289-1356991864-e5778d?p=8866) |\n| 多米诺杀阵 | 成刚 | [下载](https://url89.ctfile.com/f/31084289-1356991825-14cf14?p=8866) |\n| 哈佛经济学家推理系列（套装共4册） | 马歇尔・杰文斯 | [下载](https://url89.ctfile.com/f/31084289-1356991537-2fc1c4?p=8866) |\n| 十二镜面 | 张墨爱吃鱼 | [下载](https://url89.ctfile.com/f/31084289-1356991510-88f05b?p=8866) |\n| 冤罪代码 | 纪遊 | [下载](https://url89.ctfile.com/f/31084289-1356991234-3be92d?p=8866) |\n| 生尸之死 | 山口雅也 | [下载](https://url89.ctfile.com/f/31084289-1356991123-dafe12?p=8866) |\n| 云雷岛事件 | 孙国栋 | [下载](https://url89.ctfile.com/f/31084289-1356990916-d09f48?p=8866) |\n| 杀死玛丽苏 | 乙一等 | [下载](https://url89.ctfile.com/f/31084289-1356990913-f79fa7?p=8866) |\n| 一路去死 |  那多 | [下载](https://url89.ctfile.com/f/31084289-1356990874-c2daf4?p=8866) |\n| 溯洄 | 青稞 | [下载](https://url89.ctfile.com/f/31084289-1356990220-e56d20?p=8866) |\n| 不知东方既白 | 橘子宸 | [下载](链接未找到) |\n| 重返犯罪现场（共4册） | 宇尘 | [下载](https://url89.ctfile.com/f/31084289-1356990115-eecd7e?p=8866) |\n| 狂探 | 吕铮 | [下载](https://url89.ctfile.com/f/31084289-1356990040-8f94c3?p=8866) |\n| 东京二十三区女子 | 长江俊和 | [下载](https://url89.ctfile.com/f/31084289-1356989896-b88cb7?p=8866) |\n| 圣母 | 秋吉理香子 | [下载](https://url89.ctfile.com/f/31084289-1356989614-07b2c1?p=8866) |\n| 诡计博物馆 | 大山诚一郎 | [下载](https://url89.ctfile.com/f/31084289-1356989326-bab22e?p=8866) |\n| 三色屋事件 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1356988849-edee5d?p=8866) |\n| 侯大利刑侦笔记3 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866) |\n| 绝对不在场证明 | 大山诚一郎 | [下载](https://url89.ctfile.com/f/31084289-1356988114-a2c7ca?p=8866) |\n| 夜鸟 | 莫峻 | [下载](https://url89.ctfile.com/f/31084289-1356987193-6b8f16?p=8866) |\n| 米泽穗信精选集：算计 | 米泽穗信 | [下载](https://url89.ctfile.com/f/31084289-1356986158-4aacbd?p=8866) |\n| 米泽穗信精选集：满愿 | 米泽穗信 | [下载](https://url89.ctfile.com/f/31084289-1356986137-ecb5b5?p=8866) |\n| 米泽穗信精选集：羔羊的盛宴 | 米泽穗信 | [下载](https://url89.ctfile.com/f/31084289-1356986128-26095e?p=8866) |\n| 弹弓神警2 | 常书欣 | [下载](https://url89.ctfile.com/f/31084289-1356985777-010553?p=8866) |\n| 无辜之血 | P. D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1356985633-85ca83?p=8866) |\n| 推理计划 | 宁城荒 | [下载](https://url89.ctfile.com/f/31084289-1356985519-f13a9a?p=8866) |\n| 山骇谷深 | 卢卡・德安多里亚 | [下载](https://url89.ctfile.com/f/31084289-1356985366-80b6a0?p=8866) |\n| 赤朽叶家的传说 | 樱庭一树 | [下载](https://url89.ctfile.com/f/31084289-1356985144-a74cbc?p=8866) |\n| 生死局 | 江海潮生 | [下载](https://url89.ctfile.com/f/31084289-1356985048-e4e04b?p=8866) |\n| 午夜文库推理新秀精选集（共9本） | 午晔等 | [下载](https://url89.ctfile.com/f/31084289-1356984982-7b6286?p=8866) |\n| 沉默的巡游 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1356984856-83f1ce?p=8866) |\n| 八百万种死法 | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1356984805-e43574?p=8866) |\n| 形迹可疑的人 | 卡雷尔・恰佩克 | [下载](https://url89.ctfile.com/f/31084289-1356984733-d9cb55?p=8866) |\n| 侯大利刑侦笔记2 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1356983785-47efcf?p=8866) |\n| 侯大利刑侦笔记 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1356983302-881145?p=8866) |\n| 名侦探的咒缚 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1356982474-92a205?p=8866) |\n| 抱住我崩溃的大脑 | 知念实希人 | [下载](https://url89.ctfile.com/f/31084289-1356982423-526c97?p=8866) |\n| 镇墓兽（全四册） | 蔡骏 | [下载](https://url89.ctfile.com/f/31084289-1357053601-c5f0f4?p=8866) |\n| 侠盗鲁平 | 孙了红 | [下载](https://url89.ctfile.com/f/31084289-1357053058-8938cc?p=8866) |\n| 隐者 | 丰土 | [下载](https://url89.ctfile.com/f/31084289-1357052977-6462cd?p=8866) |\n| 夜行实录 | 徐浪 | [下载](https://url89.ctfile.com/f/31084289-1357052968-eec90d?p=8866) |\n| 怒 | 吉田修一 | [下载](https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866) |\n| 侦畸者 | 叶遁 | [下载](https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866) |\n| 终局者 | 项维 | [下载](https://url89.ctfile.com/f/31084289-1357052302-fcaeb5?p=8866) |\n| 人类的天敌 | 森村诚一 | [下载](https://url89.ctfile.com/f/31084289-1357051489-9cc595?p=8866) |\n| 月光森林 | 葵田谷 | [下载](https://url89.ctfile.com/f/31084289-1357051471-3cd00f?p=8866) |\n| 卡洛琳字体 | 安德鲁・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357051411-1c693d?p=8866) |\n| 美国式谋杀 | 迈克尔・道格拉斯卡林/罗素・普尔 | [下载](https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866) |\n| 克莱因壶 | 冈岛二人 | [下载](https://url89.ctfile.com/f/31084289-1357051378-057ad5?p=8866) |\n| 再见了，忍老师 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357051357-3827fc?p=8866) |\n| 悠悠馆密案 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357051351-11da76?p=8866) |\n| 11字谜案 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357051162-6633d9?p=8866) |\n| 漫长的遗忘 | 丹妮尔・蒂埃里 | [下载](https://url89.ctfile.com/f/31084289-1357051135-aff273?p=8866) |\n| 金色麦田 | 葵田谷 | [下载](https://url89.ctfile.com/f/31084289-1357050865-0365c7?p=8866) |\n| 碎裂 | 迈克尔・罗伯森 | [下载](https://url89.ctfile.com/f/31084289-1357050394-9ddc9d?p=8866) |\n| 达希尔•哈米特系列（共8册） | 达希尔・哈米特 | [下载](https://url89.ctfile.com/f/31084289-1357050382-1b6108?p=8866) |\n| 世界推理名家代表作（20全册） | 埃勒里・奎因等 | [下载](https://url89.ctfile.com/f/31084289-1357050307-cc8646?p=8866) |\n| 伊坂幸太郎小说严选合集（共10册） | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357050103-908ba1?p=8866) |\n| 蝙蝠 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357049578-59d876?p=8866) |\n| 蟑螂 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357049572-5c1d57?p=8866) |\n| 我四十分钟后到家 | 周路明 | [下载](https://url89.ctfile.com/f/31084289-1357049539-8bf2ec?p=8866) |\n| 守夜者2 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357049434-76024d?p=8866) |\n| 守夜者3 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866) |\n| 证明 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357049077-15c7a0?p=8866) |\n| 福尔摩斯先生 | 米奇・库林 | [下载](https://url89.ctfile.com/f/31084289-1357047973-333dca?p=8866) |\n| 白猿客栈 | 猎衣扬 | [下载](https://url89.ctfile.com/f/31084289-1357047937-74e8c8?p=8866) |\n| 破碎海岸 | 彼得・坦普 | [下载](https://url89.ctfile.com/f/31084289-1357047442-f42c38?p=8866) |\n| 罪案迷城 | 张瑞兴 | [下载](https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866) |\n| 只是丢了手机而已套装 | 志驾晃 | [下载](https://url89.ctfile.com/f/31084289-1357047160-8526d3?p=8866) |\n| 魔力的胎动 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357046440-06c86c?p=8866) |\n| 盗影 | 时晨 | [下载](https://url89.ctfile.com/f/31084289-1357046365-a83ffb?p=8866) |\n| 暗夜捕手之昨日花黄 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357046287-940fea?p=8866) |\n| 八卦侦探 | 姜木水 | [下载](https://url89.ctfile.com/f/31084289-1357046179-deec2b?p=8866) |\n| 罪念 | 刚雪印 | [下载](https://url89.ctfile.com/f/31084289-1357045978-23a050?p=8866) |\n| 死亡螺旋 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357045873-48acba?p=8866) |\n| 卖马的女人 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357045738-eb7bec?p=8866) |\n| 暖气 | 慢三 | [下载](https://url89.ctfile.com/f/31084289-1357045399-da4010?p=8866) |\n| 苍白的轨迹 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357045366-e34a54?p=8866) |\n| 富士山禁恋 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357045333-d81815?p=8866) |\n| 书楼吊堂：破晓 | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357045054-873c0f?p=8866) |\n| 追凶者之萨满疑云 | 管彦杰 | [下载](https://url89.ctfile.com/f/31084289-1357044991-6977b9?p=8866) |\n| 重案追击：悬疑小说精选（套装共12册） | 王文杰等 | [下载](https://url89.ctfile.com/f/31084289-1357044961-601f8e?p=8866) |\n| 扭曲的铰链 | 约翰・迪克森・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357044817-1cd796?p=8866) |\n| 平行世界爱情故事 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357044787-6056de?p=8866) |\n| 神谕之死 | P. D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357044010-bd23c2?p=8866) |\n| 十宗罪6 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866) |\n| 西泽保彦最畅销精品全集 | 西泽保彦 | [下载](https://url89.ctfile.com/f/31084289-1357043284-0ab83a?p=8866) |\n| 祈祷落幕时 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357042909-9546a3?p=8866) |\n| 清明上河图密码（全6册） | 冶文彪 | [下载](https://url89.ctfile.com/f/31084289-1357042804-929cc7?p=8866) |\n| 尸人庄谜案 | 今村昌弘 | [下载](https://url89.ctfile.com/f/31084289-1357042729-6ea1e3?p=8866) |\n| 假面之夜 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357042564-7a4ca0?p=8866) |\n| 相亲中毒 | 秋吉理香子 | [下载](https://url89.ctfile.com/f/31084289-1357042180-6fbb64?p=8866) |\n| 神探夏洛克全集 | 阿瑟・柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357042177-604f9a?p=8866) |\n| 美国男孩 | 安德鲁・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866) |\n| 点燃黑夜 | 莉比・菲舍尔・赫尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357042045-704d0b?p=8866) |\n| 网内人 | 陈浩基 | [下载](https://url89.ctfile.com/f/31084289-1357041643-1a89eb?p=8866) |\n| 白日梦 | 老谭 | [下载](https://url89.ctfile.com/f/31084289-1357041352-f3d652?p=8866) |\n| 八声甘州 | 远宁 | [下载](https://url89.ctfile.com/f/31084289-1357040875-db0b23?p=8866) |\n| 死之枝 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357040422-d105a3?p=8866) |\n| 丝之屋 | 安东尼・赫洛维滋 | [下载](https://url89.ctfile.com/f/31084289-1357040410-cac2ae?p=8866) |\n| 樱树抽芽时，想你 | 歌野晶午 | [下载](https://url89.ctfile.com/f/31084289-1357039834-8987e3?p=8866) |\n| A Study in Scarlet |  柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357039156-324606?p=8866) |\n| 白城恶魔 | 埃里克・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357038736-2b449e?p=8866) |\n| 第五个死者的告白 | P.D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357038526-c24d0a?p=8866) |\n| 无人生还（精装纪念版） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357038145-3e58ee?p=8866) |\n| 尼罗河上的惨案（精装纪念版） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357037980-5f4597?p=8866) |\n| 福尔摩斯探案全集（图注本套装共9册） | 阿瑟・柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357038379-15f688?p=8866) |\n| 赤龙 | 苗棣 | [下载](https://url89.ctfile.com/f/31084289-1357037698-7168f4?p=8866) |\n| 预知梦 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357037377-89cb13?p=8866) |\n| 本店招牌菜 | 斯坦利・艾林 | [下载](https://url89.ctfile.com/f/31084289-1357037236-89887b?p=8866) |\n| 屋顶上的小丑 | 岛田庄司 | [下载](https://url89.ctfile.com/f/31084289-1357037200-3cd4c7?p=8866) |\n| 东方快车谋杀案（精装纪念版） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357037125-3935f9?p=8866) |\n| 迷雾中的小镇 | 珍・哈珀 | [下载](https://url89.ctfile.com/f/31084289-1357037104-1302c6?p=8866) |\n| 捕鼠器（译文经典） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866) |\n| 疑点 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357037020-ad38da?p=8866) |\n| 复仇者 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357036813-207002?p=8866) |\n| 阿加莎·克里斯蒂侦探小说大全集（全85册） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357036642-5cddab?p=8866) |\n| 哈里·戈贝尔事件的真相（全两册） | 若埃尔・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357036234-8b66ce?p=8866) |\n| 看不见的客人 | 塔娜・法兰奇 | [下载](https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866) |\n| 脑髓地狱 | 梦野久作 | [下载](https://url89.ctfile.com/f/31084289-1357035817-f5b16f?p=8866) |\n| 检察方的罪人 | 雫井脩介 | [下载](https://url89.ctfile.com/f/31084289-1357035802-ad1c0c?p=8866) |\n| 铁血神探马修·斯卡德（套装共9册） | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1357035304-6bebca?p=8866) |\n| A Study in Charlotte | Brittany Cavallaro | [下载](https://url89.ctfile.com/f/31084289-1357034407-f87a5d?p=8866) |\n| 时生 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357034350-429229?p=8866) |\n| 代号D机关Ⅲ | 柳广司 | [下载](https://url89.ctfile.com/f/31084289-1357034080-736199?p=8866) |\n| 冻结的香气 | 小川洋子 | [下载](https://url89.ctfile.com/f/31084289-1357033984-e723c0?p=8866) |\n| 代号D机关Ⅰ | 柳广司 | [下载](https://url89.ctfile.com/f/31084289-1357033729-239911?p=8866) |\n| 代号D机关Ⅱ | 柳广司 | [下载](https://url89.ctfile.com/f/31084289-1357033720-1dd32f?p=8866) |\n| 焦渴 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866) |\n| 京极夏彦百鬼夜行中短篇集（套装5册） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357033678-0e267f?p=8866) |\n| 杀戮之病 | 我孙子武丸 | [下载](https://url89.ctfile.com/f/31084289-1357033498-4e9a1b?p=8866) |\n| 洛阳危机 | 李纲 | [下载](https://url89.ctfile.com/f/31084289-1357033414-30313e?p=8866) |\n| 混凝土里的金发女郎 | 迈克尔・康奈利 | [下载](https://url89.ctfile.com/f/31084289-1357033120-c171d5?p=8866) |\n| 间谍先生（共8册） | 弗・福赛斯 | [下载](https://url89.ctfile.com/f/31084289-1357032862-eae9d1?p=8866) |\n| 绫辻行人馆系列全集 | 绫辻行人 | [下载](https://url89.ctfile.com/f/31084289-1357032769-071504?p=8866) |\n| 绝唱 | 凑佳苗 | [下载](https://url89.ctfile.com/f/31084289-1357032727-caf552?p=8866) |\n| 五芒星 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357032607-6ae82c?p=8866) |\n| 杀人游戏 | 雷钧 | [下载](https://url89.ctfile.com/f/31084289-1357032598-27b98c?p=8866) |\n| 大唐悬疑录：最后的狄仁杰（全五册） | 唐隐 | [下载](https://url89.ctfile.com/f/31084289-1357032550-262194?p=8866) |\n| 天使之耳 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357032541-4cba9e?p=8866) |\n| 侦探伽利略 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357032502-ead0f3?p=8866) |\n| 灯塔血案 | P. D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357032475-a3eb97?p=8866) |\n| 魔鬼与福尔摩斯 | 戴维・格兰 | [下载](https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866) |\n| 大唐狄公案·第一辑 | 高罗佩 | [下载](https://url89.ctfile.com/f/31084289-1357032463-0f330d?p=8866) |\n| 书楼吊堂：炎昼 | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357032415-142610?p=8866) |\n| 喜鹊谋杀案 | 安东尼・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357032361-2287af?p=8866) |\n| 死钥匙 | D.M.普利 | [下载](https://url89.ctfile.com/f/31084289-1357032289-b14405?p=8866) |\n| 不如去死 | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357032223-6c538c?p=8866) |\n| 死了七次的男人 | 西泽保彦 | [下载](https://url89.ctfile.com/f/31084289-1357032112-988a49?p=8866) |\n| 萨拉·沃特斯系列作品集（全六册） | 萨拉・沃特斯 | [下载](https://url89.ctfile.com/f/31084289-1357032067-c756ca?p=8866) |\n| 谁杀了她 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031938-22aa7e?p=8866) |\n| 犹大之窗 | 约翰・迪克森・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357031797-9545ab?p=8866) |\n| 交错的场景 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357031620-109a71?p=8866) |\n| 三口棺材 | 约翰・迪克森・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357031353-c23149?p=8866) |\n| 东野圭吾天王套装 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031326-663108?p=8866) |\n| 杀局 | 肯尼思・菲林 | [下载](https://url89.ctfile.com/f/31084289-1357031116-8ca6cb?p=8866) |\n| 变身 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031089-829f49?p=8866) |\n| 浪花少年侦探团 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031080-d27fac?p=8866) |\n| 百鬼夜行长篇系列（套装16册） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357031041-c75418?p=8866) |\n| 钟塔杀人事件 | 青稞 | [下载](https://url89.ctfile.com/f/31084289-1357030741-bf8a14?p=8866) |\n| 日月星杀人事件 | 青稞 | [下载](https://url89.ctfile.com/f/31084289-1357030738-1f8869?p=8866) |\n| 长夜将至 | 夏阳 | [下载](https://url89.ctfile.com/f/31084289-1357030720-355e2e?p=8866) |\n| 危险的维纳斯 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357030672-c187e8?p=8866) |\n| 推理竞技场 | 深水黎一郎 | [下载](https://url89.ctfile.com/f/31084289-1357030567-efc470?p=8866) |\n| 向日葵不开的夏天（红壳纪念版） | 道尾秀介 | [下载](链接未找到) |\n| 周浩晖推理悬疑经典集（共10册） | 周浩晖 | [下载](https://url89.ctfile.com/f/31084289-1357029988-d27fcd?p=8866) |\n| 太空无人生还 | 阿元 | [下载](https://url89.ctfile.com/f/31084289-1357029913-632991?p=8866) |\n| 诗人 | 迈克尔・康奈利 | [下载](https://url89.ctfile.com/f/31084289-1357029874-6d65f7?p=8866) |\n| 生吞 | 郑执 | [下载](https://url89.ctfile.com/f/31084289-1357029547-23ac4c?p=8866) |\n| 十九年间谋杀小叙 | 那多 | [下载](https://url89.ctfile.com/f/31084289-1357029544-25e397?p=8866) |\n| 球形的荒野 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357029529-9062a6?p=8866) |\n| 心理游戏 | 安杰拉・马森斯 | [下载](https://url89.ctfile.com/f/31084289-1357029403-ab7f36?p=8866) |\n| 无声尖叫 | 安杰拉・马森斯 | [下载](https://url89.ctfile.com/f/31084289-1357029400-e9abf7?p=8866) |\n| 向密室开枪！ | 东川笃哉 | [下载](https://url89.ctfile.com/f/31084289-1357029394-26d4f2?p=8866) |\n| 虚拟街头漂流记 | 宠物先生 | [下载](https://url89.ctfile.com/f/31084289-1357029238-720b55?p=8866) |\n| 谋杀狄更斯 | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357029187-e28d8c?p=8866) |\n| 加贺探案集（共9册） | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357029184-50d15e?p=8866) |\n| 马普尔小姐探案全集 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357029085-8c4c31?p=8866) |\n| 赎罪奏鸣曲 | 中山七里 | [下载](https://url89.ctfile.com/f/31084289-1357028365-66e45a?p=8866) |\n| 今夜不宜犯罪 | 东川笃哉 | [下载](https://url89.ctfile.com/f/31084289-1357028236-43dcce?p=8866) |\n| 追忆夜想曲 | 中山七里 | [下载](https://url89.ctfile.com/f/31084289-1357028197-8f8502?p=8866) |\n| 小城 | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1357027888-99ea06?p=8866) |\n| 楠木向北 | 凉风薄暮 | [下载](链接未找到) |\n| 惊险的浪漫（午夜文库） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357027543-dfcd65?p=8866) |\n| 日本推理天才伊坂幸太郎全集（全12册） | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357027336-f08d5f?p=8866) |\n| 震度0 | 横山秀夫 | [下载](https://url89.ctfile.com/f/31084289-1357027309-2564ec?p=8866) |\n| 时间杀手 | 米歇尔・普西 | [下载](https://url89.ctfile.com/f/31084289-1357027198-47a047?p=8866) |\n| 东野圭吾新作品精选（共6册） | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357027165-eb8c72?p=8866) |\n| 白昼的死角 | 高木彬光 | [下载](https://url89.ctfile.com/f/31084289-1357027045-a2019a?p=8866) |\n| 蚕 | J·K·罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357026697-b1a344?p=8866) |\n| 刺青杀人事件 | 高木彬光 | [下载](https://url89.ctfile.com/f/31084289-1357026220-e0766b?p=8866) |\n| 真相推理师：凶宅 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357025707-e82630?p=8866) |\n| 失踪的专列 | 阿瑟・柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357025635-a941cd?p=8866) |\n| 全能侦探社 | 道格拉斯・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357025050-f8a066?p=8866) |\n| 为了N | 湊佳苗 | [下载](https://url89.ctfile.com/f/31084289-1357024993-36a444?p=8866) |\n| 天涯双探：青衣奇盗 | 七名 | [下载](https://url89.ctfile.com/f/31084289-1357024957-78b9a0?p=8866) |\n| 元年春之祭 | 陆秋槎 | [下载](https://url89.ctfile.com/f/31084289-1357024927-e99ef1?p=8866) |\n| 雅贼典藏版（全11册） | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1357024837-b9a078?p=8866) |\n| 雷蒙德·钱德勒典藏版全集（全十册） | 雷蒙德・钱德勒  | [下载](https://url89.ctfile.com/f/31084289-1357024834-5c9783?p=8866) |\n| 天谴者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357024783-34b504?p=8866) |\n| 神的另一面 | 藤崎翔 | [下载](https://url89.ctfile.com/f/31084289-1357024615-a81939?p=8866) |\n| 无证之罪 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357024528-07ae8b?p=8866) |\n| 坏小孩 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357024525-8d6f19?p=8866) |\n| 禁断的魔术 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357024465-346e81?p=8866) |\n| 虚无的十字架 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357024300-5cdaa2?p=8866) |\n| 真相推理师：破镜 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357024255-988eff?p=8866) |\n| 诡盗团 | 吉羽 | [下载](https://url89.ctfile.com/f/31084289-1357024246-0edc4b?p=8866) |\n| 约瑟芬.铁伊推理全集（全8册） | 约瑟芬・铁伊 | [下载](https://url89.ctfile.com/f/31084289-1357024078-c9031a?p=8866) |\n| 大象无形 | 泽帆 | [下载](https://url89.ctfile.com/f/31084289-1357023754-5c70fc?p=8866) |\n| 死神的精确度 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357023739-650de8?p=8866) |\n| 金田一探案大全集（共25册） | 横沟正史 | [下载](https://url89.ctfile.com/f/31084289-1357023727-881c73?p=8866) |\n| 今夜宜有彩虹 | 陆烨华 | [下载](https://url89.ctfile.com/f/31084289-1357023622-606a63?p=8866) |\n| 摩登时代 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357023526-8ac21c?p=8866) |\n| 杀手界 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357023523-3a015b?p=8866) |\n| 杀手界·疾风号 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357023520-8af1d8?p=8866) |\n| 魍魉之匣（下） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357023529-cad261?p=8866) |\n| 狂骨之梦 | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357023490-090e03?p=8866) |\n| 钓鱼城 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357023424-cc84f3?p=8866) |\n| 学生街的日子 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357023397-a5f3e3?p=8866) |\n| 酷酷的代课老师 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357023289-305c8c?p=8866) |\n| 护士学院杀人事件 | P.D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357023211-d473df?p=8866) |\n| 彷徨之刃 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357023106-33508a?p=8866) |\n| D之复合 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357022929-d9add1?p=8866) |\n| 真相推理师：嬗变 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357022878-0c6f47?p=8866) |\n| 真相推理师：幸存 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357022872-4eb748?p=8866) |\n| 真相推理师：复仇 | 呼延云 | [下载](https://url89.ctfile.com/f/31084289-1357022863-2fb899?p=8866) |\n| 越狱者 | 迈克尔・罗伯森 | [下载](https://url89.ctfile.com/f/31084289-1357022788-46d327?p=8866) |\n| 蝴蝶杀人事件 | 横沟正史 | [下载](https://url89.ctfile.com/f/31084289-1357022365-1a99b4?p=8866) |\n| 湖底的祭典 | 泡坂妻夫 | [下载](https://url89.ctfile.com/f/31084289-1357022302-409ae5?p=8866) |\n| 凛冬之棺 | 孙沁文 | [下载](https://url89.ctfile.com/f/31084289-1357022158-9403ee?p=8866) |\n| 江户川乱步严选作品集（全13册） | 江户川乱步 | [下载](https://url89.ctfile.com/f/31084289-1357022008-610644?p=8866) |\n| 密室收藏家 | 大山诚一郎 | [下载](https://url89.ctfile.com/f/31084289-1357021669-5cce3b?p=8866) |\n| 余生皆假期 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357021336-d3fbb3?p=8866) |\n| 夜光的阶梯 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357021294-fc9a03?p=8866) |\n| 圣殿春秋（全3册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357021252-8a62ce?p=8866) |\n| 大唐狄公案（全6册） | 高罗佩 | [下载](https://url89.ctfile.com/f/31084289-1357021207-007f0b?p=8866) |\n| 战地厨师 | 深绿野分 | [下载](https://url89.ctfile.com/f/31084289-1357021114-f0cdb2?p=8866) |\n| 阿加莎的毒药 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357020940-286d4a?p=8866) |\n| 嗜血法医（1-4季全集） | 杰夫・林赛 | [下载](https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866) |\n| 一份不适合女人的工作 | P.D.詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357020511-d3986e?p=8866) |\n| 那个你深爱着的人 | 保罗・皮尔金顿 | [下载](https://url89.ctfile.com/f/31084289-1357020088-c8e9c2?p=8866) |\n| 那个你惧怕着的人 | 保罗・皮尔金顿 | [下载](https://url89.ctfile.com/f/31084289-1357020085-fe0da2?p=8866) |\n| 折断的龙骨（全二册） | 米泽穗信 | [下载](https://url89.ctfile.com/f/31084289-1357019983-fc8335?p=8866) |\n| 络新妇之理（上） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357019932-dd22aa?p=8866) |\n| 络新妇之理（下） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357019929-e2f670?p=8866) |\n| 涂佛之宴·宴之支度（上） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357019902-04eb64?p=8866) |\n| 涂佛之宴·宴之支度（下） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357019890-9e0348?p=8866) |\n| 阴摩罗鬼之瑕（上） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357019866-1e1095?p=8866) |\n| 阴摩罗鬼之瑕（下） | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357019860-b7033f?p=8866) |\n| 追踪师：隐身术 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357019731-80213a?p=8866) |\n| 鬼马星悬疑小说莫兰系列（套装7册全） | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357019647-16c6fb?p=8866) |\n| 蜘蛛网中的女孩 | 大卫・拉格朗兹 | [下载](https://url89.ctfile.com/f/31084289-1357019479-292338?p=8866) |\n| 福尔摩斯症候群 | J·M·埃尔  | [下载](https://url89.ctfile.com/f/31084289-1357019356-6bedd1?p=8866) |\n| 时间的习俗 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357019323-98e502?p=8866) |\n| 怪人们 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357019233-641f28?p=8866) |\n| 救赎者 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357018720-01f3cc?p=8866) |\n| 冷案重启 | 樊落 | [下载](https://url89.ctfile.com/f/31084289-1357018711-c54542?p=8866) |\n| 冷案重启2逝者之证 | 樊落 | [下载](https://url89.ctfile.com/f/31084289-1357018708-977e8b?p=8866) |\n| 知更鸟 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357018600-b9d116?p=8866) |\n| 水之肌 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357018423-432d1e?p=8866) |\n| 肯·福莱特悬疑经典第一辑（全5册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357018018-545227?p=8866) |\n| 假面前夜 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357017712-970ca1?p=8866) |\n| 必须找到阿历克斯 | 皮耶尔・勒迈特 | [下载](https://url89.ctfile.com/f/31084289-1357017547-046ce1?p=8866) |\n| 死亡刻痕 | 维罗尼卡・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357017325-298780?p=8866) |\n| 月族（套装共5册） | 玛丽莎・梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357017343-651870?p=8866) |\n| 魔鬼在你身后（套装全3册） | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357017280-4eab29?p=8866) |\n| 长夜难明 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357016476-b7c91b?p=8866) |\n| 魔王 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357016320-3b0994?p=8866) |\n| 第十年的情人节 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357016230-8da852?p=8866) |\n| 福尔摩斯探案全集（套装共11册） | 柯南道尔 | [下载](https://url89.ctfile.com/f/31084289-1357016500-12fb8c?p=8866) |\n| 雨中杀手 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357015939-11a9cf?p=8866) |\n| 推理的迷宫 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866) |\n| 新参者 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357015855-473c6d?p=8866) |\n| 红手指 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357015780-379ab6?p=8866) |\n| 阿加莎·克里斯蒂作品集（套装共45册） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357015663-b5afa0?p=8866) |\n| 朝圣者 | 泰瑞・海耶斯 | [下载](https://url89.ctfile.com/f/31084289-1357015393-6c6f8d?p=8866) |\n| 轩辕诀（全四册） | 茶弦 | [下载](https://url89.ctfile.com/f/31084289-1357015144-667e1c?p=8866) |\n| 华生手稿 | 邦妮・麦克伯德 | [下载](https://url89.ctfile.com/f/31084289-1357014928-2d50ce?p=8866) |\n| 隐形解体的传说 | 暗布烧 | [下载](https://url89.ctfile.com/f/31084289-1357014667-09665e?p=8866) |\n| 宛如昨日 | 蔡骏 | [下载](https://url89.ctfile.com/f/31084289-1357014523-22941d?p=8866) |\n| 第13个小时 | 理查德・道许 | [下载](https://url89.ctfile.com/f/31084289-1357014388-3c060e?p=8866) |\n| 半身侦探1 | 暗布烧 | [下载](https://url89.ctfile.com/f/31084289-1357014331-ef0561?p=8866) |\n| 半身侦探2 | 暗布烧 | [下载](https://url89.ctfile.com/f/31084289-1357014328-08fde8?p=8866) |\n| 半身侦探3 | 暗布烧 | [下载](https://url89.ctfile.com/f/31084289-1357014313-615c25?p=8866) |\n| 明镜之书 | 尤金・欧・切洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357013845-ee2042?p=8866) |\n| 不然你搬去火星啊 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357013533-a53224?p=8866) |\n| 十万分之一的偶然 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357013299-44dfa6?p=8866) |\n| 阿修罗系列惊悚小说三部曲 | 吉莉安・弗琳 | [下载](https://url89.ctfile.com/f/31084289-1357013029-d113e7?p=8866) |\n| 金色梦乡 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357012957-3f2267?p=8866) |\n| 白夜追凶 | 指纹 | [下载](https://url89.ctfile.com/f/31084289-1357012603-73ece6?p=8866) |\n| 阴兽 | 江户川乱步 | [下载](https://url89.ctfile.com/f/31084289-1357012552-3f9341?p=8866) |\n| “低俗”小说（上下合集） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012453-e22da3?p=8866) |\n| 再见，宝贝 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012444-03cebe?p=8866) |\n| 敲响密室之门 | 青崎有吾 | [下载](https://url89.ctfile.com/f/31084289-1357012435-b175ce?p=8866) |\n| 巷说百物语全集 | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357012405-8c937b?p=8866) |\n| 偷窥者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357012312-787a2f?p=8866) |\n| 同级生 | 东野圭吾  | [下载](https://url89.ctfile.com/f/31084289-1357012306-44b632?p=8866) |\n| 裸面 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012078-b2add2?p=8866) |\n| 警察 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357012075-898a34?p=8866) |\n| 谋杀的简约之道 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012057-9e177a?p=8866) |\n| 重播 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012063-099570?p=8866) |\n| 爱伦·坡暗黑故事全集（下册） | 埃德加・爱伦・坡 | [下载](https://url89.ctfile.com/f/31084289-1357011853-51ba43?p=8866) |\n| 我的前妻们 | 约翰・狄克森・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357011805-a14723?p=8866) |\n| 暗处 | 吉莉安・弗琳 | [下载](https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866) |\n| 从西藏来的男人 | 克莱德・克拉森  | [下载](https://url89.ctfile.com/f/31084289-1357011673-fcf3b0?p=8866) |\n| 伽利略的苦恼 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357011520-5531b4?p=8866) |\n| 幽灵 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357010515-8f34ca?p=8866) |\n| 欧美必读悬疑小说（勒普顿三部曲） | 罗莎蒙德・勒普顿 | [下载](https://url89.ctfile.com/f/31084289-1357010395-ddb236?p=8866) |\n| 丹·布朗作品系列（套装共6册） | 丹・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357010287-e7276e?p=8866) |\n| 姑获鸟之夏 | 京极夏彦 | [下载](https://url89.ctfile.com/f/31084289-1357010116-0a482e?p=8866) |\n| 化学家（套装共2册） | 斯蒂芬妮・梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357009945-e38c49?p=8866) |\n| 所罗门的伪证第Ⅰ部：事件 | 宫部美雪 | [下载](https://url89.ctfile.com/f/31084289-1357009765-693b15?p=8866) |\n| 所罗门的伪证第Ⅱ部：决意 | 宫部美雪 | [下载](https://url89.ctfile.com/f/31084289-1357009756-f4d897?p=8866) |\n| 所罗门的伪证第Ⅲ部：法庭 | 宫部美雪 | [下载](https://url89.ctfile.com/f/31084289-1357009753-c7e339?p=8866) |\n| 阳光劫匪 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357009639-f97e32?p=8866) |\n| 勒卡雷谍影经典全新系列（套装14册） | 约翰・勒卡雷 | [下载](https://url89.ctfile.com/f/31084289-1357009576-b1a690?p=8866) |\n| 妹妹的坟墓 | 罗伯特・杜格尼 | [下载](https://url89.ctfile.com/f/31084289-1357009549-e0506b?p=8866) |\n| S.（简体中文典藏复刻版） | 艾布拉姆斯/道格・道斯特  | [下载](https://url89.ctfile.com/f/31084289-1357009492-298aa7?p=8866) |\n| 龙文身的女孩 | 斯蒂格・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357009378-d34fd6?p=8866) |\n| 玩火的女孩 | 斯蒂格・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357009372-a23441?p=8866) |\n| 直捣蜂窝的女孩 | 斯蒂格・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357009360-520652?p=8866) |\n| 交子 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357009318-386aa1?p=8866) |\n| 分身 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357009306-fdbc98?p=8866) |\n| 沉睡的人鱼之家 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357009276-32bd6f?p=8866) |\n| 圣女的救济 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357009246-ac03c0?p=8866) |\n| 北方夕鹤2/3杀人事件 | 岛田庄司 | [下载](https://url89.ctfile.com/f/31084289-1357009219-6761df?p=8866) |\n| 64：史上最凶恶绑架撕票事件 | 橫山秀夫 | [下载](https://url89.ctfile.com/f/31084289-1357009165-cfa92a?p=8866) |\n| 守夜者：罪案终结者的觉醒 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357009135-83443d?p=8866) |\n| 告白 | 湊佳苗 | [下载](https://url89.ctfile.com/f/31084289-1357008991-3ea23a?p=8866) |\n| 日本推理四大奇书 | 梦野久作等 | [下载](https://url89.ctfile.com/f/31084289-1357008919-1568da?p=8866) |\n| 拉普拉斯的魔女 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357008739-784eec?p=8866) |\n| 幻夜行 | 谷神冥 | [下载](https://url89.ctfile.com/f/31084289-1357008475-bfb778?p=8866) |\n| 谋杀金字塔 | 克里斯提昂・贾克 | [下载](https://url89.ctfile.com/f/31084289-1357008451-7b089f?p=8866) |\n| 沙漠法则 | 克里斯提昂・贾克 | [下载](https://url89.ctfile.com/f/31084289-1357008442-61c5a4?p=8866) |\n| 首相的正义 | 克里斯提昂・贾克 | [下载](https://url89.ctfile.com/f/31084289-1357008430-839940?p=8866) |\n| 被囚禁的女孩 | 香农・柯克 | [下载](https://url89.ctfile.com/f/31084289-1357008124-8a508a?p=8866) |\n| 别和她说话 | 遇瑾 | [下载](https://url89.ctfile.com/f/31084289-1357008118-0cca6d?p=8866) |\n| 暗黑神探 | 何马 | [下载](https://url89.ctfile.com/f/31084289-1357007983-3adaee?p=8866) |\n| 风的预谋 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007965-39fae5?p=8866) |\n| 迷宫蛛 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007929-055c31?p=8866) |\n| 只差一个谎言 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357007875-bd2f74?p=8866) |\n| 朱雀堂 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866) |\n| 雪人 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357007809-fce10f?p=8866) |\n| 隐花平原 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357007806-281da0?p=8866) |\n| 眼镜蛇事件 | 理查德・普莱斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357007788-93da89?p=8866) |\n| 长江的密咒 | 古官 | [下载](https://url89.ctfile.com/f/31084289-1357007782-6d755c?p=8866) |\n| 十宗罪4 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866) |\n| 诡案罪（1-8册全） | 岳勇 | [下载](https://url89.ctfile.com/f/31084289-1357007494-b160b7?p=8866) |\n| 猎豹（全二册） | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357007455-baa0ea?p=8866) |\n| 活肝 | 徐然 | [下载](https://url89.ctfile.com/f/31084289-1357007356-185e81?p=8866) |\n| 雾越邸杀人事件 | 绫辻行人 | [下载](https://url89.ctfile.com/f/31084289-1357007302-ec6f04?p=8866) |\n| 白马山庄杀人事件 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357007287-8a5713?p=8866) |\n| 木锡镇 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007266-6d2760?p=8866) |\n| 黑背鱼之谜 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866) |\n| 女法医手记系列套装（全四册） | 刘真 | [下载](https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866) |\n| 三十九级台阶 | 约翰・巴肯 | [下载](https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866) |\n| 心理罪（套装共5册） | 雷米 | [下载](https://url89.ctfile.com/f/31084289-1357007164-36a950?p=8866) |\n| 空中杀人现场 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357007131-989aa8?p=8866) |\n| 鲁班的诅咒（珍藏版大全集） | 圆太极 | [下载](https://url89.ctfile.com/f/31084289-1357006924-c1b431?p=8866) |\n| 虚像小丑 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006909-257fe7?p=8866) |\n| 推理要在放学后 | 东川笃哉 | [下载](https://url89.ctfile.com/f/31084289-1357006870-6477fb?p=8866) |\n| 黑暗领域 | 薇儿·麦克德米德 | [下载](https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866) |\n| 大唐悬疑录：兰亭序密码 | 唐隐 | [下载](https://url89.ctfile.com/f/31084289-1357006669-bfc526?p=8866) |\n| 溥仪藏宝录 | 景旭枫 | [下载](https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866) |\n| 溥仪藏宝录2：最后的复辟挣扎 | 景旭枫 | [下载](https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866) |\n| 尸案调查科系列（全5册） | 九滴水 | [下载](https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866) |\n| 湖畔 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006276-021007?p=8866) |\n| 梦幻花 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006285-d59ca9?p=8866) |\n| 十宗罪 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866) |\n| 狄仁杰探案合集 | 安娜芳芳 | [下载](https://url89.ctfile.com/f/31084289-1357006201-8b8292?p=8866) |\n| 死亡性插图 | 凿壁小妖 | [下载](https://url89.ctfile.com/f/31084289-1357006120-6c9c72?p=8866) |\n| 幻夜 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006108-1a3150?p=8866) |\n| 杀人之门 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357006096-17ed58?p=8866) |\n| 动物园 | 乙一 | [下载](https://url89.ctfile.com/f/31084289-1357006057-80fc77?p=8866) |\n| 禁忌之地 | 紫金陈 | [下载](https://url89.ctfile.com/f/31084289-1357006054-1c8c3e?p=8866) |\n| 遗族 | 缪热 | [下载](https://url89.ctfile.com/f/31084289-1357006033-81efe9?p=8866) |\n| 假面饭店 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005967-2f931b?p=8866) |\n| 马耳他之鹰 | 达希尔・哈米特 | [下载](https://url89.ctfile.com/f/31084289-1357005853-265d2c?p=8866) |\n| 女法医之尸体加工厂 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866) |\n| 女法医之活体贩卖者 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866) |\n| 白夜行 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005571-dd15d9?p=8866) |\n| 解忧杂货店 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005565-a0e16c?p=8866) |\n| 嫌疑人X的献身 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005562-da1f3c?p=8866) |\n| 恶意 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005559-8e2a02?p=8866) |\n| 放学后 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357005553-facaec?p=8866) |\n| 7本书带你走进间谍圈（全七册） | 弗·福赛斯 | [下载](https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866) |\n| 青花瓷 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005427-7605c0?p=8866) |\n| 和氏璧 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005421-210492?p=8866) |\n| 明宫奇案 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005415-863a2f?p=8866) |\n| 斧声烛影 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005409-c4a918?p=8866) |\n| 福尔摩斯探案全集（插图新注新译本） | 亚瑟·柯南·道尔 | [下载](https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866) |\n| 风起陇西 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866) |\n| 案藏杀机：清代四大奇案卷宗 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005223-8942a8?p=8866) |\n| 孔雀胆 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005208-99e82f?p=8866) |\n| 大唐游侠 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005193-815513?p=8866) |\n| 战襄阳 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005190-4212a2?p=8866) |\n| 鱼玄机 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005169-ff80cb?p=8866) |\n| 柳如是：柳色独秀 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005166-82c235?p=8866) |\n| 连环罪：心里有诡系列（上下册） | 墨绿青苔 | [下载](https://url89.ctfile.com/f/31084289-1357005148-571b05?p=8866) |\n| 古董局中局（全四册） | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005145-bf3740?p=8866) |\n| 女法医之骨头收藏家 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866) |\n| 幸存者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866) |\n| 清道夫 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866) |\n| 第十一根手指 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866) |\n| 无声的证词 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866) |\n| 尸语者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866) |\n| 福尔摩斯探案集（经典译林） | 柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357004821-0d75f5?p=8866) |\n"
  },
  {
    "path": "md/提升.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 提升\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 如何达成目标 | 海蒂・格兰特・霍尔沃森 | [下载](https://url89.ctfile.com/f/31084289-1356994909-cbcb48?p=8866) |\n"
  },
  {
    "path": "md/搞笑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 搞笑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 你说的那个朋友是不是你自己 | 山羊卡罗 | [下载](https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866) |\n| 爆笑校园（套装共12册） | 朱斌 | [下载](https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子4 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866) |\n"
  },
  {
    "path": "md/摄影.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 摄影\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 摄影家是怎样炼成的-进阶版（套装全5册） | 孙晓岭 | [下载](https://url89.ctfile.com/f/31084289-1375504063-e299df?p=8866) |\n| 摄影家是怎样炼成的（套装全8册） | 陈丹丹等 | [下载](https://url89.ctfile.com/f/31084289-1375506595-5c52dc?p=8866) |\n| 布光是门大学问 | 克里斯汀・霍夫 | [下载](https://url89.ctfile.com/f/31084289-1375511296-8d6ccf?p=8866) |\n| 高品质摄影全流程解析（套装全9册） | 斯科特・凯尔比 | [下载](https://url89.ctfile.com/f/31084289-1375513114-e51622?p=8866) |\n| 寻美：摄影中的东方美学 | 青简 | [下载](https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866) |\n| 美术馆漫步：法国、伦敦、西班牙（全三册） | 崔瓊化等 | [下载](https://url89.ctfile.com/f/31084289-1356986452-33c37f?p=8866) |\n| 手机摄影轻松学 | 李华春 | [下载](https://url89.ctfile.com/f/31084289-1356985684-e8624f?p=8866) |\n| 时光博物馆 | 人民日报社新媒体中心 | [下载](https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866) |\n| 京华遗韵 | 李弘 | [下载](https://url89.ctfile.com/f/31084289-1356985276-dce30e?p=8866) |\n| 美之地图 | 米哈埃拉・诺洛茨 | [下载](https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866) |\n| 东京风格 | 都筑响一 | [下载](https://url89.ctfile.com/f/31084289-1357047016-279986?p=8866) |\n| 丰子恺：写给大家的简明艺术启蒙（套装共5册） | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357045609-c32fd3?p=8866) |\n| 如何看懂艺术 | 翁昕 | [下载](https://url89.ctfile.com/f/31084289-1357043074-fa6d7a?p=8866) |\n| 强大，漂亮的新定义 | 凯特·T·帕克 | [下载](https://url89.ctfile.com/f/31084289-1357026319-23d0f4?p=8866) |\n| 知日16：写真 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025425-cad07f?p=8866) |\n| 理解一张照片 | 约翰・伯格 | [下载](https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866) |\n| 我从战场归来 | 唐师曾 | [下载](https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866) |\n| 论摄影（插图珍藏本） |  苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866) |\n| 写真的思考 | 饭泽耕太郎 | [下载](https://url89.ctfile.com/f/31084289-1357005058-c4eaa8?p=8866) |\n"
  },
  {
    "path": "md/摇滚.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 摇滚\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鲍勃·迪伦：诗人之歌 | 让-多米尼克·布里埃 | [下载](https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866) |\n"
  },
  {
    "path": "md/操作系统.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 操作系统\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鸟哥的Linux私房菜：基础学习篇（第三版） | 鸟哥 | [下载](https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866) |\n"
  },
  {
    "path": "md/收纳.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 收纳\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 怦然心动的人生整理魔法2 | 近藤麻理惠 | [下载](https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866) |\n"
  },
  {
    "path": "md/收藏.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 收藏\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 马未都说收藏·家具篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866) |\n| 马未都说收藏·杂项篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866) |\n| 马未都说收藏·陶瓷篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039768-92e788?p=8866) |\n| 马未都说收藏·玉器篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039759-8e7733?p=8866) |\n"
  },
  {
    "path": "md/改革.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 改革\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 增长危机 | 丹比萨・莫约 | [下载](https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866) |\n| 改革者 | 深圳创新发展研究院 | [下载](https://url89.ctfile.com/f/31084289-1357032715-7f3498?p=8866) |\n| 小岗村40年 | 贾鸿彬 | [下载](https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866) |\n| 中国改革三部曲 | 吴敬琏 | [下载](https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866) |\n| 日本维新六十年 | 樱雪丸 | [下载](https://url89.ctfile.com/f/31084289-1357026166-909097?p=8866) |\n| 两面之词：关于革命问题的通信 | 雷吉斯・德布雷/赵汀阳 | [下载](https://url89.ctfile.com/f/31084289-1357020256-b9bfc5?p=8866) |\n"
  },
  {
    "path": "md/政治.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 政治\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 现代政治的正当性基础 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1375491484-c06fa6?p=8866) |\n| 伏特加政治 | 马克・劳伦斯・施拉德 | [下载](https://url89.ctfile.com/f/31084289-1375495120-2dd6c4?p=8866) |\n| 权力 | 德博拉・格林菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1375498009-cbe216?p=8866) |\n| 刘擎西方现代思想讲义 | 刘擎 | [下载](https://url89.ctfile.com/f/31084289-1375498162-6d669a?p=8866) |\n| 身份政治 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1375499002-9f16d0?p=8866) |\n| 中国的选择 | 马凯硕 | [下载](https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866) |\n| 精英的傲慢 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1375500601-accc90?p=8866) |\n| 破茧 | 施展 | [下载](https://url89.ctfile.com/f/31084289-1375500925-acb6ff?p=8866) |\n| 国际政治精品文库精选套装（套装11册） | 塞缪尔・亨廷顿等 | [下载](https://url89.ctfile.com/f/31084289-1375509124-80f0aa?p=8866) |\n| 弹劾 | 戴维・E.凯卫格 | [下载](https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866) |\n| 乐观而不绝望 | 诺姆・乔姆斯基 | [下载](https://url89.ctfile.com/f/31084289-1375510429-5ca9fe?p=8866) |\n| 六论自发性 | 詹姆斯·C. 斯科特 | [下载](https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866) |\n| 承认：一部欧洲观念史 | 阿克塞尔・霍耐特 | [下载](https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866) |\n| 成为公民 | 皮埃尔・罗桑瓦龙 | [下载](https://url89.ctfile.com/f/31084289-1375511836-25cf44?p=8866) |\n| 秩序与历史（套装全五卷） | 埃里克・沃格林 | [下载](https://url89.ctfile.com/f/31084289-1375513159-e66ba2?p=8866) |\n| 为什么是中国 | 金一南 | [下载](https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866) |\n| 地缘政治三部曲 | 罗伯特·D.卡普兰等 | [下载](https://url89.ctfile.com/f/31084289-1375513753-cc4d25?p=8866) |\n| 美国不平等的起源 | 伊莎贝尔・威尔克森 | [下载](https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866) |\n| 欧盟的危机 | 尤尔根・哈贝马斯 | [下载](https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866) |\n| 经济情操论 | 艾玛・罗斯柴尔德 | [下载](https://url89.ctfile.com/f/31084289-1357002307-c67bdb?p=8866) |\n| 君主论（果麦经典） | 尼科洛・马基雅维利 | [下载](https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866) |\n| 政治哲学 | 乔纳森・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356999835-300928?p=8866) |\n| 右派国家（新版） | 约翰・米克尔思韦特/阿德里安・伍尔德里奇 | [下载](https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866) |\n| 大国霸权 | 宫崎正胜 | [下载](https://url89.ctfile.com/f/31084289-1356998980-2a7570?p=8866) |\n| 誓言：白宫与最高法院 | 杰弗里・图宾 | [下载](https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866) |\n| 美国国会（牛津通识读本） | 唐纳德・A.里奇 | [下载](https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866) |\n| 资本主义的未来 | 保罗・科利尔 | [下载](https://url89.ctfile.com/f/31084289-1356997324-2dab97?p=8866) |\n| 国家的视角 | 詹姆斯·C.斯科特 | [下载](https://url89.ctfile.com/f/31084289-1356996523-b7c691?p=8866) |\n| 杰斐逊总统 | 约翰・托里・莫尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356995755-fbb18e?p=8866) |\n| 美国真相 | 約瑟夫・斯蒂格利茨 | [下载](https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866) |\n| 巨兽：工厂与现代世界的形成 | 乔舒亚・B.弗里曼 | [下载](https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866) |\n| 暴力与反暴力 | 谭旋 | [下载](https://url89.ctfile.com/f/31084289-1356994615-7c3ab4?p=8866) |\n| 当代中国学术思想史（套装共19卷） | 成一农等 | [下载](https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866) |\n| 国会政体 | 伍德罗・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866) |\n| 中国治理 | 罗家德 | [下载](https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866) |\n| 中国的当下与未来 | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866) |\n| 中国政治思想史（套装共3册） | 刘泽华 | [下载](https://url89.ctfile.com/f/31084289-1356990079-c8034c?p=8866) |\n| 香港社会三部曲 | 刘兆佳 | [下载](https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866) |\n| 观念的力量 | 以赛亚・伯林爵士 | [下载](https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866) |\n| 学术与政治（理想国新版） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356988129-ec950b?p=8866) |\n| 李光耀观天下 | 李光耀 | [下载](https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866) |\n| 政论 昌言（全本全注全译） | 孙启治译注 | [下载](https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866) |\n| 世界不是平的 | 简世勋 | [下载](https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866) |\n| 人民共和国 | 文扬 | [下载](https://url89.ctfile.com/f/31084289-1356985249-14c66e?p=8866) |\n| 腐败（牛津通识读本） | 莱斯利・霍姆斯 | [下载](https://url89.ctfile.com/f/31084289-1356984613-d3354c?p=8866) |\n| 腐败：人性与文化 | 克里斯・肖尔/迪特尔・哈勒 | [下载](https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866) |\n| 政治动物 | 里克・申克曼 | [下载](https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866) |\n| 士大夫政治演生史稿 | 阎步克 | [下载](https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866) |\n| 亚洲的决裂 | 汤姆斯·F. 密勒 | [下载](https://url89.ctfile.com/f/31084289-1357053046-3ebf6e?p=8866) |\n| 美国政党与选举（牛津通识读本） | 桑迪・梅塞尔 | [下载](https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866) |\n| 群氓的狂欢 | 塞奇・莫斯科维奇 | [下载](https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866) |\n| 何故为敌 | 卡罗琳・艾姆克 | [下载](https://url89.ctfile.com/f/31084289-1357051798-658124?p=8866) |\n| 化蝶：一个滇南小镇的政治史 | 刘永刚 | [下载](https://url89.ctfile.com/f/31084289-1357051804-1856d3?p=8866) |\n| 理论的危机 | 斯科特・汉密尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866) |\n| 2020：用数据看懂中国发展 | 谢伏瞻等 | [下载](https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866) |\n| 经济与社会（全二卷） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866) |\n| 大外交 | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357050721-f645ff?p=8866) |\n| 领袖们（全译修订版） | 理查德・尼克松 | [下载](https://url89.ctfile.com/f/31084289-1357050649-9ef52e?p=8866) |\n| 财富与权力 | 诺姆・乔姆斯基 | [下载](https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866) |\n| 独霸中东 | 雅科夫・卡茨/阿米尔・鲍博特 | [下载](https://url89.ctfile.com/f/31084289-1357050151-4db365?p=8866) |\n| 隐秘战争 | 阿里・拉伊迪 | [下载](https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866) |\n| 辩护的政治 | 陈肖生 | [下载](https://url89.ctfile.com/f/31084289-1357049620-9477eb?p=8866) |\n| 君主论（拿破仑批注版） | 马基雅维利 | [下载](https://url89.ctfile.com/f/31084289-1357049287-a0aa34?p=8866) |\n| 华文全球史（套装15册） | 哈罗德坦珀利等 | [下载](https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866) |\n| 春秋大义 | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866) |\n| 我们的自信 | 陈曙光 | [下载](https://url89.ctfile.com/f/31084289-1357046188-7efacb?p=8866) |\n| 党员、党权与党争 | 王奇生 | [下载](https://url89.ctfile.com/f/31084289-1357046092-d01aaf?p=8866) |\n| 政治学通识 | 包刚升 | [下载](https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866) |\n| 石油战争 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866) |\n| 看懂世界格局的第一本书：中国周边 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866) |\n| 马基雅维利语录 | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357045288-8aa412?p=8866) |\n| 中国精神读本 | 王蒙/王绍光 | [下载](https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866) |\n| 命运攸关的抉择 | 伊恩・克肖 | [下载](https://url89.ctfile.com/f/31084289-1357044322-9c26d4?p=8866) |\n| 美国国家安全局 | 克劳德・德莱斯 | [下载](https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866) |\n| 皇宫日落（全2册） | 姜建强 | [下载](https://url89.ctfile.com/f/31084289-1357043920-9d3751?p=8866) |\n| 大汉帝国在巴蜀 | 饶胜文 | [下载](https://url89.ctfile.com/f/31084289-1357043389-b870f2?p=8866) |\n| 贸易的冲突 | 道格拉斯・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866) |\n| 论自愿为奴（译文经典） | 艾蒂安・德・拉・波埃西 | [下载](https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866) |\n| 贝希摩斯 | 托马斯・霍布斯 | [下载](https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866) |\n| 注定一战 | 格雷厄姆・艾利森 | [下载](https://url89.ctfile.com/f/31084289-1357038835-4cd365?p=8866) |\n| 新马克思主义导引 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357038226-094d97?p=8866) |\n| 愚政进行曲 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866) |\n| 大浪潮 | 斯蒂芬・拉德勒 | [下载](https://url89.ctfile.com/f/31084289-1357037386-86cf50?p=8866) |\n| 民粹主义大爆炸 | 约翰・朱迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866) |\n| 西方政治思想的社会史：公民到领主 | 艾伦・梅克辛斯・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357036174-90b917?p=8866) |\n| 权力的教训 | 弗朗索瓦・奥朗德 | [下载](https://url89.ctfile.com/f/31084289-1357036171-59b7c7?p=8866) |\n| 西方政治思想的社会史：自由与财产 | 艾伦・梅克辛斯・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866) |\n| 50人的二十年 | 樊纲/易纲等 | [下载](https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866) |\n| 大趋势 | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866) |\n| 九月的十三天 | 劳伦斯・莱特 | [下载](https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866) |\n| 为什么不平等至关重要 | 托马斯・斯坎伦 | [下载](https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866) |\n| 地理与世界霸权 | 詹姆斯・费尔格里夫 | [下载](https://url89.ctfile.com/f/31084289-1357033891-582012?p=8866) |\n| 杀戮与文化 | 维克托・戴维斯・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357033738-53bee1?p=8866) |\n| 不平等社会 | 沃尔特・沙伊德尔 | [下载](https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866) |\n| 无处可藏 | 格伦・格林沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866) |\n| 战略：一部历史 | 劳伦斯・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1357033267-7e62a1?p=8866) |\n| 巨变：当代政治与经济的起源 | 卡尔・波兰尼 | [下载](https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866) |\n| 暴政 | 提摩希・史奈德 | [下载](https://url89.ctfile.com/f/31084289-1357033231-d43b3e?p=8866) |\n| 冷战 | 约翰・刘易斯・加迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357033192-93fbd9?p=8866) |\n| 总统班底 | 卡尔・伯恩斯坦/鲍勃・伍德沃德 | [下载](https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866) |\n| 动物农场（果麦经典） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357032811-2781ba?p=8866) |\n| 国民党高层的派系政治（修订本） | 金以林 | [下载](https://url89.ctfile.com/f/31084289-1357032760-5999d0?p=8866) |\n| 暴力：思无所限 | 理查德·J.伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866) |\n| 论小丑 | 诺曼・马内阿 | [下载](https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866) |\n| 沙特公司 | 埃伦·R.沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866) |\n| 首届国会 | 弗格斯·M.博德韦奇 | [下载](https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866) |\n| 阿登纳回忆录（套装共4册） | 康拉德・阿登纳 | [下载](https://url89.ctfile.com/f/31084289-1357030675-2fceb9?p=8866) |\n| 不敢懈怠 | 纳尔逊・曼德拉 | [下载](https://url89.ctfile.com/f/31084289-1357030420-f5f7d5?p=8866) |\n| 谁统治美国？公司富豪的胜利 | 威廉・多姆霍夫 | [下载](https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866) |\n| 温柔的正义 | 琳达・赫什曼 | [下载](https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866) |\n| 社会理论的核心问题 | 安东尼・吉登斯 | [下载](https://url89.ctfile.com/f/31084289-1357029886-fe1bf2?p=8866) |\n| 华夏传统政治文明书系（全四册） | 马平安 | [下载](https://url89.ctfile.com/f/31084289-1357029841-addcd2?p=8866) |\n| 天降之任：学术与政治 | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357029682-d3a753?p=8866) |\n| 论自由（理想国新版） | 约翰・穆勒 | [下载](https://url89.ctfile.com/f/31084289-1357029379-4f63ca?p=8866) |\n| 塞缪尔·亨廷顿经典著作集（套装4册） | 塞缪尔・亨廷顿 | [下载](https://url89.ctfile.com/f/31084289-1357029049-0daa60?p=8866) |\n| 卡尔霍恩文集（上、下） | 约翰·C.卡尔霍恩 | [下载](https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866) |\n| 罗盘与风向标 | 雷蒙德・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357028383-8bed41?p=8866) |\n| 孤独的帝国 | 波波・洛 | [下载](https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866) |\n| 抽签与民主、共和 | 王绍光 | [下载](https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866) |\n| 常识（译文经典） | 托马斯・潘恩 | [下载](https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866) |\n| 历史学的境界 | 高华 | [下载](https://url89.ctfile.com/f/31084289-1357026784-a08561?p=8866) |\n| 寡头 | 戴维・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866) |\n| 一件T恤的全球经济之旅（原书第2版） | 皮厄特拉・里佛利 | [下载](https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866) |\n| 叶礼庭作品集（套装共3册） | 叶礼庭 | [下载](https://url89.ctfile.com/f/31084289-1357026292-6b6467?p=8866) |\n| 美国秩序的根基 | 拉塞尔・柯克 | [下载](https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866) |\n| 我的对面是你 | 傅莹 | [下载](https://url89.ctfile.com/f/31084289-1357024765-1f9c07?p=8866) |\n| 美国式幸福 | 亚瑟·C.布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866) |\n| 椰壳碗外的人生 | 本尼迪克特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866) |\n| 论美国的民主（套装共4册） | 亚力克西·德·托克维尔 | [下载](https://url89.ctfile.com/f/31084289-1357024132-df8a85?p=8866) |\n| 金钱暗流 | 简・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866) |\n| How Democracies Die | Levitsky Steven | [下载](https://url89.ctfile.com/f/31084289-1357023883-93d110?p=8866) |\n| 飞跃5000年 | 克里昂・斯考森 | [下载](https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866) |\n| The Coddling of the American Mind | Greg Lukianoff/Jonathan Haidt | [下载](https://url89.ctfile.com/f/31084289-1357022932-efa525?p=8866) |\n| 解放战争（套装共6册） | 刘统等 | [下载](https://url89.ctfile.com/f/31084289-1357023031-818c84?p=8866) |\n| 峰会：影响20世纪的六场元首会谈 | 戴维・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357022941-f4a9ce?p=8866) |\n| 无政府、国家和乌托邦 | 罗伯特・诺齐克 | [下载](https://url89.ctfile.com/f/31084289-1357022605-61758e?p=8866) |\n| 宪法学说（修订译本） | 卡尔・施米特 | [下载](https://url89.ctfile.com/f/31084289-1357022602-de44b4?p=8866) |\n| The Fifth Risk | Michael Lewis | [下载](https://url89.ctfile.com/f/31084289-1357022572-e36b2f?p=8866) |\n| 发现民众 | 林红 | [下载](https://url89.ctfile.com/f/31084289-1357021852-b5cbe5?p=8866) |\n| 资本主义简史 | 于尔根・科卡 | [下载](https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866) |\n| 档案：一部个人史 | 蒂莫西・加顿艾什 | [下载](https://url89.ctfile.com/f/31084289-1357021324-19fecc?p=8866) |\n| Our Kids | Robert D. Putnam | [下载](https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866) |\n| 战争、枪炮与选票 | 保罗・科利尔 | [下载](https://url89.ctfile.com/f/31084289-1357021162-f86e9b?p=8866) |\n| 国家构建 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357021159-d86f25?p=8866) |\n| 告别霸权! | 蒙・赖克/理查德・内德・勒博  | [下载](https://url89.ctfile.com/f/31084289-1357020550-3cfb43?p=8866) |\n| 美国独行：西方世界的末日 | 马克・斯坦恩 | [下载](https://url89.ctfile.com/f/31084289-1357020337-7905c5?p=8866) |\n| 两面之词：关于革命问题的通信 | 雷吉斯・德布雷/赵汀阳 | [下载](https://url89.ctfile.com/f/31084289-1357020256-b9bfc5?p=8866) |\n| 帝国之弧 | 乔良 | [下载](https://url89.ctfile.com/f/31084289-1357020010-32ddc9?p=8866) |\n| 困顿与突围 | 田文林 | [下载](https://url89.ctfile.com/f/31084289-1357019911-f7637f?p=8866) |\n| 大萧条与罗斯福新政 | 埃里克・劳赫威 | [下载](https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866) |\n| 用地图看懂世界格局 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357019215-fc1753?p=8866) |\n| 国家的兴衰 | 曼瑟・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1357019092-d58e9a?p=8866) |\n| 事实改变之后 | 托尼・朱特 | [下载](https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866) |\n| 天下的当代性 | 赵汀阳 | [下载](https://url89.ctfile.com/f/31084289-1357017931-313da6?p=8866) |\n| 中国历代政治得失 | 钱穆 | [下载](https://url89.ctfile.com/f/31084289-1357017871-5874f6?p=8866) |\n| 国王的两个身体 | 恩斯特・康托洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357017457-ab4c59?p=8866) |\n| 世界秩序 | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357017367-b1f56a?p=8866) |\n| 与中国打交道 | 亨利・鲍尔森 | [下载](https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866) |\n| 大国雄心 | 马丁・雅克 | [下载](https://url89.ctfile.com/f/31084289-1357016716-d4f605?p=8866) |\n| 联邦论：美国宪法评述 | 亚历山大・汉密尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866) |\n| 西方政治传统：近代自由主义之发展 | 弗雷德里克・沃特金斯 | [下载](https://url89.ctfile.com/f/31084289-1357015483-ff498b?p=8866) |\n| 动物庄园 | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357013113-3cbe8f?p=8866) |\n| 权力与繁荣 | 曼瑟・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1357012258-603067?p=8866) |\n| 南非的启示 | 秦晖 | [下载](https://url89.ctfile.com/f/31084289-1357012105-8052a4?p=8866) |\n| 地缘大战略 | 丁力 | [下载](https://url89.ctfile.com/f/31084289-1357011718-dad903?p=8866) |\n| 通往大国之路：中国的知识重建和文明复兴 | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1357011517-f964c0?p=8866) |\n| 我们的后人类未来 |  弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866) |\n| 论政治（上卷） | 阿兰・瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866) |\n| 论政治（下卷） | 阿兰・瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866) |\n| 普京政治 | 李鸿谷  | [下载](https://url89.ctfile.com/f/31084289-1357009723-3b1f21?p=8866) |\n| 上帝与黄金 | 沃尔特・拉塞尔・米德 | [下载](https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866) |\n| 国事机密档（全10册） | 凤凰周刊 | [下载](https://url89.ctfile.com/f/31084289-1357009705-558073?p=8866) |\n| 没有宽恕就没有未来 | 德斯蒙德・图图 | [下载](https://url89.ctfile.com/f/31084289-1357009630-f0745a?p=8866) |\n| 政治秩序的起源 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866) |\n| 政治秩序与政治衰败 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866) |\n| 历史的终结与最后的人 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866) |\n| 菲洛梅娜 | 马丁・西克史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357009285-3f7aa9?p=8866) |\n| 国家兴衰 | 鲁奇尔・夏尔马 | [下载](https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866) |\n| 开放社会及其敌人（全二卷） | 卡尔・波普尔爵士 | [下载](https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866) |\n| 辩论：美国制宪会议记录 | 詹姆斯・麦迪逊 | [下载](https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866) |\n| 罗伯特议事规则 | 袁天鹏 | [下载](https://url89.ctfile.com/f/31084289-1357008811-e8cf3b?p=8866) |\n| 论中国 | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866) |\n| 旧制度与大革命 | 托克维尔 | [下载](https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866) |\n| 大法官说了算 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866) |\n| 大国的兴衰（套装共2册） | 保罗・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866) |\n| 坐天下：张宏杰解读中国帝王 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357008220-b13b7f?p=8866) |\n| 公正：该如何做是好 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357008139-f61de9?p=8866) |\n| 易中天“帝国与共和”三部曲 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866) |\n| 不可思议的年代 | 乔舒亚・库珀・雷默  | [下载](https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866) |\n| C形包围：内忧外患下的中国突围 | 戴旭 | [下载](https://url89.ctfile.com/f/31084289-1357007992-9f9eb2?p=8866) |\n| 民主新论（套装2册） | 乔万尼・萨托利 | [下载](https://url89.ctfile.com/f/31084289-1357007968-d5ef21?p=8866) |\n| 人民的名义 | 周梅森 | [下载](https://url89.ctfile.com/f/31084289-1357007896-f02fcd?p=8866) |\n| 三十年河东：权力市场经济的困境 | 杨继绳 | [下载](https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866) |\n| 苏联的最后一天 | 康纳・奥克莱利 | [下载](https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866) |\n| 白宫岁月：基辛格回忆录（套装共4册） | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866) |\n| 硬球：政治是这样玩的 | 克里斯·马修斯 | [下载](https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866) |\n| 郑永年看中国系列（共8本） | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1357006609-d621da?p=8866) |\n| 人以什么理由来记忆 | 徐贲 | [下载](https://url89.ctfile.com/f/31084289-1357006453-f30ed5?p=8866) |\n| 一个大国的崛起与崩溃 | 沈志华 | [下载](https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866) |\n| 我的应许之地 | 阿里・沙维特 | [下载](https://url89.ctfile.com/f/31084289-1357005856-05ea8e?p=8866) |\n| 独裁者手册 | 布鲁斯・布鲁诺・德・梅斯奎塔等 | [下载](https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866) |\n| 集体行动的逻辑 | 曼瑟・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866) |\n"
  },
  {
    "path": "md/政治学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 政治学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 无情的革命 | 乔伊斯・阿普尔比 | [下载](https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866) |\n| 亚洲的去魔化 | 于尔根・奥斯特哈默 | [下载](https://url89.ctfile.com/f/31084289-1357034494-31fe47?p=8866) |\n| 精神政治学 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357033087-6bd310?p=8866) |\n| 分裂的西方（译文经典） | 尤尔根・哈贝马斯 | [下载](https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866) |\n"
  },
  {
    "path": "md/政论.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 政论\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 政论 昌言（全本全注全译） | 孙启治译注 | [下载](https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866) |\n"
  },
  {
    "path": "md/故乡.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 故乡\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 天边一星子 | 邓安庆 | [下载](https://url89.ctfile.com/f/31084289-1357024252-c13ed1?p=8866) |\n| 夜长梦多 | 赵兰振 | [下载](https://url89.ctfile.com/f/31084289-1357022518-85acd6?p=8866) |\n"
  },
  {
    "path": "md/故事.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 故事\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 汤汤奇幻童年故事本（套装6册） | 汤汤 | [下载](https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866) |\n| 叙事经济学 | 罗伯特・希勒 | [下载](https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866) |\n| 怎样写故事 | 莉萨・克龙 | [下载](https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866) |\n| 我的大脑失控了 | 银教授/温酒/英国报姐等 | [下载](https://url89.ctfile.com/f/31084289-1357032685-82f30e?p=8866) |\n| 你坏 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357022809-a0e444?p=8866) |\n| 故事思维 | 安妮特・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866) |\n| 讲出一个精彩故事 | 麦成辉 | [下载](https://url89.ctfile.com/f/31084289-1357015117-2867de?p=8866) |\n| 这样写出好故事 | 詹姆斯・斯科特・贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357011034-28e8b6?p=8866) |\n| 罗尔德·达尔作品典藏（共13册） | 罗尔德・达尔 | [下载](https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866) |\n"
  },
  {
    "path": "md/故宫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 故宫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 故宫六百年 | 祝勇 | [下载](https://url89.ctfile.com/f/31084289-1357001329-12e528?p=8866) |\n| 大故宫六百年风云史 | 阎崇年 | [下载](https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866) |\n| 给孩子的清宫兽谱 | 小海/夏雪 | [下载](https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866) |\n| 给孩子的清宫海错图 | 夏雪著 | [下载](https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866) |\n| 我在故宫看大门 | 维一 | [下载](https://url89.ctfile.com/f/31084289-1357044289-c2afc7?p=8866) |\n| 故宫物语 | 野岛刚 | [下载](https://url89.ctfile.com/f/31084289-1357019347-0c448f?p=8866) |\n| 我在故宫修文物 | 萧寒/绿妖 | [下载](https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866) |\n| 两个故宫的离合 | 野岛刚  | [下载](https://url89.ctfile.com/f/31084289-1357006156-d22a19?p=8866) |\n"
  },
  {
    "path": "md/效率.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 效率\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 抓重点 | 赵启 | [下载](https://url89.ctfile.com/f/31084289-1357004644-1ddabe?p=8866) |\n| 高效清单工作法 | 达蒙・扎哈里亚德斯 | [下载](https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866) |\n| 极简时间 | 洛塔尔・赛韦特 | [下载](https://url89.ctfile.com/f/31084289-1357000291-c277a4?p=8866) |\n| 给大忙人的高效阅读课 | 李源 | [下载](https://url89.ctfile.com/f/31084289-1356995281-68ab8d?p=8866) |\n| 保持饥渴 | Thinkers50 | [下载](https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866) |\n| 高效忍者 | 格雷厄姆・阿尔科特 | [下载](https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866) |\n| 番茄工作法 | 弗朗西斯科・西里洛 | [下载](https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866) |\n| 高效的方法 | 泰勒・本-沙哈尔/安格斯・里奇韦 | [下载](https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866) |\n| 极速写作 | 剑飞 | [下载](https://url89.ctfile.com/f/31084289-1357034674-856435?p=8866) |\n| 大脑减压的子弹笔记术 | 电脑玩物站长 | [下载](https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866) |\n| 时间看得见 | 王潇 | [下载](https://url89.ctfile.com/f/31084289-1357033381-62fcdf?p=8866) |\n| 极度效率 | 阿米特・奥菲尔 | [下载](https://url89.ctfile.com/f/31084289-1357028083-8ae1ff?p=8866) |\n| 高效PDCA工作术 | 富田和成 | [下载](https://url89.ctfile.com/f/31084289-1357021882-8ccafc?p=8866) |\n| 别让无效努力毁了你 | 克里斯・贝利 | [下载](https://url89.ctfile.com/f/31084289-1357014442-332e82?p=8866) |\n"
  },
  {
    "path": "md/教学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 教学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 脑力升级手册 | 杰夫・布朗等 | [下载](https://url89.ctfile.com/f/31084289-1357024762-dccfd0?p=8866) |\n| 湛庐文化心视界分心系列（套装共4册） | 爱德华・哈洛韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357012798-3a30e1?p=8866) |\n"
  },
  {
    "path": "md/教材.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 教材\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西方经济学说史教程 | 晏智杰编 | [下载](https://url89.ctfile.com/f/31084289-1357043584-8bd3af?p=8866) |\n| 心理学与生活 | 理查德・格里格/菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866) |\n"
  },
  {
    "path": "md/教父.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 教父\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 教父三部曲（典藏版套装） | 马里奥・普佐 | [下载](https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866) |\n"
  },
  {
    "path": "md/教练.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 教练\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 释放潜能：7个改变个人、团队和组织的教练技巧 | 迈克尔・K.辛普森 | [下载](https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866) |\n"
  },
  {
    "path": "md/教育.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 教育\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 上岸：一个海淀妈妈的重点学校闯关记 | 安柏 | [下载](https://url89.ctfile.com/f/31084289-1375493359-744141?p=8866) |\n| 孩子的品格 | 彭凯平/闫伟 | [下载](https://url89.ctfile.com/f/31084289-1375493764-ff4380?p=8866) |\n| 这就是微学习 | 罗宾・德费利斯 | [下载](https://url89.ctfile.com/f/31084289-1375500091-56a0ca?p=8866) |\n| 崔玉涛自然养育法 | 崔玉涛 | [下载](https://url89.ctfile.com/f/31084289-1375501618-4b43b7?p=8866) |\n| 语文阅读推荐丛书·小学部分·全27册 | 格林兄弟等 | [下载](https://url89.ctfile.com/f/31084289-1375509292-20cf9c?p=8866) |\n| 妈妈的悔过书 | 李柳南 | [下载](https://url89.ctfile.com/f/31084289-1375510222-3ee66f?p=8866) |\n| 睡前育儿法 | 李永爱 | [下载](https://url89.ctfile.com/f/31084289-1375510288-757ee6?p=8866) |\n| 图灵程序设计丛书：Java进阶高手（套装共8册） | 沃伯顿等 | [下载](https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866) |\n| 通往未来之路 | 赵昂/任国荣 | [下载](https://url89.ctfile.com/f/31084289-1375510864-94cef3?p=8866) |\n| 半熟家庭 | 金义 | [下载](https://url89.ctfile.com/f/31084289-1375511065-6c9ffd?p=8866) |\n| 让孩子像哲学家一样会思考 | 张玮/沈文婕 | [下载](https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866) |\n| 教育的常识 | 尹建莉 | [下载](https://url89.ctfile.com/f/31084289-1375511668-05c413?p=8866) |\n| 自然界的印象（作家榜经典文库） | 儒勒・列那尔 | [下载](https://url89.ctfile.com/f/31084289-1375511644-242e91?p=8866) |\n| 小舍得 | 鲁引弓 | [下载](https://url89.ctfile.com/f/31084289-1375512214-5dda71?p=8866) |\n| 顽童小番茄 | 简媜 | [下载](https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866) |\n| 最好的学区房是你家的书房 | 佐藤亮子 | [下载](https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866) |\n| 真希望我父母读过这本书 | 菲利帕・佩里 | [下载](https://url89.ctfile.com/f/31084289-1357000732-ac2b7d?p=8866) |\n| 准备 | 黛安娜・塔文纳 | [下载](https://url89.ctfile.com/f/31084289-1356998926-07fdc2?p=8866) |\n| 给大壮的信 | 苗炜 | [下载](https://url89.ctfile.com/f/31084289-1356996169-ca0701?p=8866) |\n| 我们今天怎样做父亲 | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1356995407-79bcac?p=8866) |\n| 蔡骏24堂写作课 | 蔡骏 | [下载](https://url89.ctfile.com/f/31084289-1356995332-e2f2c1?p=8866) |\n| 养育女孩（成长版） | 史蒂夫・比达尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356994843-6e6be3?p=8866) |\n| 陪孩子终身成长 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1356991630-eba848?p=8866) |\n| 学好数学并不难（套装共2册） | 孙亮朝 | [下载](https://url89.ctfile.com/f/31084289-1356990406-b55265?p=8866) |\n| 天生非此 | 奥利弗・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866) |\n| 写作力 | 高语罕 | [下载](https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866) |\n| 发展心理学套装（第10版） | 戴安娜・帕帕拉 | [下载](https://url89.ctfile.com/f/31084289-1357050526-22b5f0?p=8866) |\n| 大夏教育文存（全11卷） | 杜成宪 | [下载](https://url89.ctfile.com/f/31084289-1357049830-9cf21a?p=8866) |\n| 父母的语言 | 达娜・萨斯金德等 | [下载](https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866) |\n| 儿童教育心理学 | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357045033-cc66da?p=8866) |\n| 反溺爱 | 罗恩・利伯 | [下载](https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866) |\n| 虎妈战歌 | 蔡美儿 | [下载](https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866) |\n| 21招，让孩子独立 | 叶壮 | [下载](https://url89.ctfile.com/f/31084289-1357040317-3e999a?p=8866) |\n| 园丁与木匠 | 艾莉森・高普尼克 | [下载](https://url89.ctfile.com/f/31084289-1357039465-e654bf?p=8866) |\n| 统整的力量 | 陈怡倩 | [下载](https://url89.ctfile.com/f/31084289-1357038664-3ab357?p=8866) |\n| 不管教的勇气 | 岸见一郎 | [下载](https://url89.ctfile.com/f/31084289-1357035196-6f1a79?p=8866) |\n| 芬兰教育全球第一的秘密（珍藏版） | 陈之华 | [下载](https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866) |\n| 学习的升级 | 约翰・库奇/贾森・汤 | [下载](https://url89.ctfile.com/f/31084289-1357033576-80ad13?p=8866) |\n| 丰子恺漫画古诗文 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866) |\n| 心理营养 | 林文采/伍娜 | [下载](https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866) |\n| 父与子全集（作家榜经典文库） | 埃・奥・卜劳恩 | [下载](https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866) |\n| 高分智囊团 | 郑书豪等 | [下载](https://url89.ctfile.com/f/31084289-1357030951-f6b083?p=8866) |\n| 写给所有人的编程思维 | 吉姆・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866) |\n| 写作课 | 叶开 | [下载](https://url89.ctfile.com/f/31084289-1357030036-d3ec1e?p=8866) |\n| 正面管教 | 简・尼尔森 | [下载](https://url89.ctfile.com/f/31084289-1357029700-2aae5a?p=8866) |\n| 写给父母的未来之书 | 童行学院教研团队 | [下载](https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866) |\n| 大学的精神 | 蒲实/陈赛 | [下载](https://url89.ctfile.com/f/31084289-1357026901-285fb4?p=8866) |\n| 一流的教养 | 杰瑞米・克拉克/乔若莎・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357025281-72dc34?p=8866) |\n| 河合隼雄代表作 | 河合隼雄 | [下载](https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866) |\n| 终身幼儿园 | 米切尔・雷斯尼克 | [下载](https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866) |\n| 希利尔儿童世界地理 | 希利尔/休伊  | [下载](https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866) |\n| 爱的教育 | 艾德蒙多・德・亚米契斯 | [下载](https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866) |\n| 特别的女生萨哈拉 | 爱斯米・科德尔 | [下载](https://url89.ctfile.com/f/31084289-1357022122-a16d36?p=8866) |\n| 哈佛通识教育红皮书 | 哈佛委员会 | [下载](https://url89.ctfile.com/f/31084289-1357020907-daf2ca?p=8866) |\n| 孩子是脚，教育是鞋 | 李跃儿 | [下载](https://url89.ctfile.com/f/31084289-1357020505-1ae1af?p=8866) |\n| 0～12岁，给孩子一个好性格 | 葛安妮/葛碧建 | [下载](https://url89.ctfile.com/f/31084289-1357018738-0a0c03?p=8866) |\n| 爸爸军团 | 布鲁斯・费勒 | [下载](https://url89.ctfile.com/f/31084289-1357017754-627360?p=8866) |\n| 让学校重生 | 肯・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357017646-ec3f15?p=8866) |\n| 魔鬼老大，天使老二 | 诸葛越 | [下载](https://url89.ctfile.com/f/31084289-1357017640-9ed028?p=8866) |\n| 我们为什么被霸凌？ | 陈岚 | [下载](https://url89.ctfile.com/f/31084289-1357015261-36ff57?p=8866) |\n| 父母的觉醒 | 沙法丽・萨巴瑞 | [下载](https://url89.ctfile.com/f/31084289-1357014697-afca27?p=8866) |\n| 真正的蒙氏教育在家庭精选（套装共三册） | 白玛琳/骆思洁 | [下载](https://url89.ctfile.com/f/31084289-1357014703-24621f?p=8866) |\n| 游戏力 | 劳伦斯・科恩 | [下载](https://url89.ctfile.com/f/31084289-1357014142-23eb93?p=8866) |\n| Between Parent and Child | Haim G Ginott | [下载](https://url89.ctfile.com/f/31084289-1357013977-185e23?p=8866) |\n| 度量：一首献给数学的情歌 | 保罗・洛克哈特 | [下载](https://url89.ctfile.com/f/31084289-1357013179-ed1db5?p=8866) |\n| 湛庐文化心视界分心系列（套装共4册） | 爱德华・哈洛韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357012798-3a30e1?p=8866) |\n| 吾国教育病理 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866) |\n| 我的第一本趣味数理化书（套装共三册） | 韩垒/田梅 | [下载](https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866) |\n| 养育男孩（典藏版） | 史蒂夫・比达尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866) |\n| 爱智书系(套装共7册) | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357011070-3f1f08?p=8866) |\n| 贾徳哲学启蒙少儿书系（套装6册） | 乔斯坦・贾德 | [下载](https://url89.ctfile.com/f/31084289-1357009585-93bc28?p=8866) |\n| 优秀的绵羊 | 威廉・德雷谢维奇 | [下载](https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866) |\n| 遇见孩子，遇见更好的自己 | 赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑 | [下载](https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866) |\n| P.E.T.父母效能训练 | 托马斯・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866) |\n| 培养最棒的男孩 | 赵子墨 | [下载](https://url89.ctfile.com/f/31084289-1357007704-26fa9e?p=8866) |\n| 培养最棒的女孩 | 赵子墨 | [下载](https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866) |\n| 小狗钱钱（套装全2册） | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866) |\n| 查理日记（套装1-9册） | 西西弗斯 | [下载](https://url89.ctfile.com/f/31084289-1357007023-b4f492?p=8866) |\n| 小别离 | 鲁引弓 | [下载](https://url89.ctfile.com/f/31084289-1357006771-57fb6e?p=8866) |\n| 一眼看懂小孩子 | 王勇 | [下载](https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866) |\n| 完整的成长：儿童生命的自我创造 | 孙瑞雪 | [下载](https://url89.ctfile.com/f/31084289-1357006645-39d480?p=8866) |\n| 爱和自由：孙瑞雪幼儿教育演讲录 | 孙瑞雪 | [下载](https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866) |\n| 谁拿走了孩子的幸福 | 李跃儿 | [下载](https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866) |\n| 郑玉巧育儿经·幼儿卷 | 郑玉巧 | [下载](https://url89.ctfile.com/f/31084289-1357006141-816059?p=8866) |\n| 西尔斯育儿经 | 西尔斯夫妇 | [下载](https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866) |\n| 定本育儿百科 | 松田道雄 | [下载](https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866) |\n| 愿你慢慢长大 | 刘瑜/周国平 | [下载](https://url89.ctfile.com/f/31084289-1357005649-79868f?p=8866) |\n| 像梁启超那样做父亲 | 俞祖华 | [下载](https://url89.ctfile.com/f/31084289-1357005115-40ae6c?p=8866) |\n"
  },
  {
    "path": "md/散文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 散文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 灰烬的光辉：保罗策兰诗选 | 保罗・策兰 | [下载](https://url89.ctfile.com/f/31084289-1375493716-834b61?p=8866) |\n| 新冠时代的我们 | 保罗・乔尔达诺 | [下载](https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866) |\n| 一切境 | 庆山 | [下载](https://url89.ctfile.com/f/31084289-1375498237-63e633?p=8866) |\n| 故宫里的中国 | 祝勇 | [下载](https://url89.ctfile.com/f/31084289-1375498681-511b6c?p=8866) |\n| 百万个明天 | 秦萤亮 | [下载](https://url89.ctfile.com/f/31084289-1375498915-531f5e?p=8866) |\n| 寂静的巴黎 | 申赋渔 | [下载](https://url89.ctfile.com/f/31084289-1375499392-a3a61b?p=8866) |\n| 人间清醒 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1375501171-da5945?p=8866) |\n| 民国诗人徐志摩作品典藏全集 | 徐志摩 | [下载](https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866) |\n| 只是眷恋这人间烟火（全新修订版） | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375508929-c650ea?p=8866) |\n| 蔡澜生活美学系列（套装共9册） | 蔡澜 | [下载](https://url89.ctfile.com/f/31084289-1375509004-95a6e4?p=8866) |\n| 我喜欢生命根底里的宁静 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866) |\n| 郭论：第二季（共3册） | 郭德纲 | [下载](https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866) |\n| 中国古典散文精选注译（套装共8册） | 傅璇琮 | [下载](https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866) |\n| 人生因孤独而丰盛 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375509907-f0c5ef?p=8866) |\n| 汉魏六朝文选 | 刘文忠 | [下载](https://url89.ctfile.com/f/31084289-1375510924-186bf2?p=8866) |\n| 度光阴的人 | 苏辛 | [下载](https://url89.ctfile.com/f/31084289-1375511038-a9bf9b?p=8866) |\n| 书鱼知小 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1375511173-ce7dc0?p=8866) |\n| 白沙：来自外部世界的经历 | 杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1375511329-9cfa6d?p=8866) |\n| 人生处处是修行 | 鬼脚七 | [下载](https://url89.ctfile.com/f/31084289-1375511509-cd8ae1?p=8866) |\n| 我爱天下一切狗 | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1375511947-976f66?p=8866) |\n| 肥肉（增订版） | 朱赢椿等 | [下载](https://url89.ctfile.com/f/31084289-1375512190-f52a7f?p=8866) |\n| 游荡集 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866) |\n| 和狗狗的十二次哲学漫步 | 安东尼・麦高恩 | [下载](https://url89.ctfile.com/f/31084289-1375512505-d10692?p=8866) |\n| 雨夜短文 | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1375513132-48b671?p=8866) |\n| 民国作家朱自清作品典藏全集（套装共十六册） | 朱自清 | [下载](https://url89.ctfile.com/f/31084289-1375513285-ea02d5?p=8866) |\n| 郭论：第一季（共3册） | 郭德纲 | [下载](https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866) |\n| 书读完了 | 金克木 | [下载](https://url89.ctfile.com/f/31084289-1375513549-f99712?p=8866) |\n| 我的原野盛宴 | 张炜 | [下载](https://url89.ctfile.com/f/31084289-1375513663-a26536?p=8866) |\n| 张先生说 | 张五毛 | [下载](https://url89.ctfile.com/f/31084289-1357004569-4fbbb6?p=8866) |\n| 此刻的温柔 | 陶立夏 | [下载](https://url89.ctfile.com/f/31084289-1357004431-6e97cd?p=8866) |\n| 沈从文精选散文系列（全6册） | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866) |\n| 汪曾祺散文全编（全6卷） | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866) |\n| 秋灯琐忆（果麦经典） | 蒋坦 | [下载](https://url89.ctfile.com/f/31084289-1357003561-7f6be6?p=8866) |\n| 露水的世 | 文泉子/小林一茶 | [下载](https://url89.ctfile.com/f/31084289-1357003459-74a562?p=8866) |\n| 此生未完成（增订新版） | 于娟 | [下载](https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866) |\n| 浮生 | 刘汀 | [下载](https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866) |\n| 歌以言志 | 周毅/舒明 | [下载](https://url89.ctfile.com/f/31084289-1357002397-3d9575?p=8866) |\n| 祝你快乐勇敢 | 果麦 | [下载](https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866) |\n| 废墟曾经辉煌 | 张翎 | [下载](https://url89.ctfile.com/f/31084289-1356997651-35de85?p=8866) |\n| 浮生六记丛书 | 沈复/陈裴之 | [下载](https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866) |\n| 春风十里不如你 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866) |\n| 张洁文集（九卷本） | 张洁 | [下载](https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866) |\n| 冯骥才记述文化五十年（全四册） | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1356994882-c8931c?p=8866) |\n| 善哉善哉，就你话多 | 明安 | [下载](https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866) |\n| 你好，我是接体员 | 大师兄 | [下载](https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866) |\n| 假作真时 | 黄昱宁 | [下载](https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866) |\n| 八千里路云和月 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866) |\n| 下一次将是烈火 | 詹姆斯・鲍德温 | [下载](https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866) |\n| 从大吉岭到克什米尔 | 闻中 | [下载](https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866) |\n| 历史的面孔 | 曾纪鑫 | [下载](https://url89.ctfile.com/f/31084289-1356988498-04aa6e?p=8866) |\n| 唐朝的驿站 | 夏坚勇 | [下载](https://url89.ctfile.com/f/31084289-1356988093-4ba392?p=8866) |\n| 苏东坡的山药粥 | 徐佳 | [下载](https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866) |\n| 冬牧场 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1356986113-258fce?p=8866) |\n| 评说历史系列丛书（套装共7册） | 夏坚勇等 | [下载](https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866) |\n| 我的美的世界 | 森茉莉 | [下载](https://url89.ctfile.com/f/31084289-1356985480-47ad93?p=8866) |\n| 我的寻根记 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1356985477-568b84?p=8866) |\n| 李娟阿勒泰系列（共4册） | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866) |\n| 身外之海 | 李唐 | [下载](https://url89.ctfile.com/f/31084289-1356983404-123992?p=8866) |\n| 一切特立独行的人都意味着强大 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357053730-614dee?p=8866) |\n| 长皱了的小孩 | 严明 | [下载](https://url89.ctfile.com/f/31084289-1357052575-e2c228?p=8866) |\n| 有人必须死 | 李非 | [下载](https://url89.ctfile.com/f/31084289-1357051657-e02af4?p=8866) |\n| 大家小书大全套 | 朱自清等 | [下载](https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866) |\n| 焚书（全本全注全译） | 张建业 | [下载](https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866) |\n| 山之四季（果麦经典） | 高村光太郎 | [下载](https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866) |\n| 只有一个人生 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866) |\n| 杰夫·戴尔作品套装（共5册） | 杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357044583-471d7c?p=8866) |\n| 大地上的事情 | 苇岸 | [下载](https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866) |\n| 美国深南之旅 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866) |\n| 拔蒲歌 | 沈书枝 | [下载](https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866) |\n| 津轻 | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357038310-49be36?p=8866) |\n| 搭子 | 张忌 | [下载](https://url89.ctfile.com/f/31084289-1357037710-a0a7d8?p=8866) |\n| 瓦尔登湖（译文经典） | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866) |\n| 你的善良必须有点锋利 | 拉尔夫・沃尔多・爱默生 | [下载](https://url89.ctfile.com/f/31084289-1357035928-db8b0b?p=8866) |\n| 反与正·婚礼集·夏 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866) |\n| 雨天炎天 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866) |\n| 韩寒的杂文们（套装共4册） | 韩寒 | [下载](https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866) |\n| 美食家 | 陆文夫 | [下载](https://url89.ctfile.com/f/31084289-1357033072-217156?p=8866) |\n| 我喜欢人生快活的样子 | 蔡澜 | [下载](https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866) |\n| 蠹鱼文丛系列（套装10册） | 陈子善/叶瑜荪/李辉等  | [下载](https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866) |\n| 沉住气，吃硬饭 | 王路 | [下载](https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866) |\n| 情绪认知 | 尹惟楚 | [下载](https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866) |\n| 小于一 | 约瑟夫・布罗茨基 | [下载](https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866) |\n| 玩儿 | 于谦 | [下载](https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866) |\n| 昨日书 | 马世芳 | [下载](https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866) |\n| 此生是我吗 | 刘苇 | [下载](https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866) |\n| 爱你就像爱生命 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866) |\n| 清欢三卷（唯美珍藏版） | 林清玄 | [下载](https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866) |\n| 寥寥中年事 | 秋色连波 | [下载](https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866) |\n| 从一个蛋开始 | 徐则臣 | [下载](https://url89.ctfile.com/f/31084289-1357031023-96e5b6?p=8866) |\n| 纸短情长，民国大师们的最美情书（全6册套装） | 朱生豪/鲁迅/闻一多等 | [下载](https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866) |\n| 绿皮火车（精装增补图文版） | 周云蓬 | [下载](https://url89.ctfile.com/f/31084289-1357030276-97ed20?p=8866) |\n| 天真的幽默家 | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866) |\n| 一个人的村庄 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1357030066-8b5d8b?p=8866) |\n| 万古云霄 | 陈之藩 | [下载](https://url89.ctfile.com/f/31084289-1357030048-2b15f8?p=8866) |\n| 鲤·与书私奔 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866) |\n| 鲤·文艺青年 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029814-7a5327?p=8866) |\n| 书贩笑忘录 | 陈晓维 | [下载](https://url89.ctfile.com/f/31084289-1357029508-bfbc07?p=8866) |\n| 足球往事 | 爱德华多・加莱亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357029478-ccc720?p=8866) |\n| 林清玄经典作品合集（套装共十二册） | 林清玄 | [下载](https://url89.ctfile.com/f/31084289-1357029175-3e7510?p=8866) |\n| 普通读者 | 西闪 | [下载](https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866) |\n| 我与父辈 | 阎连科 | [下载](https://url89.ctfile.com/f/31084289-1357028956-93737c?p=8866) |\n| 林中水滴 | 米・普里什文 | [下载](https://url89.ctfile.com/f/31084289-1357028419-0eee62?p=8866) |\n| 古文辞类纂（全2册） | 姚鼐 | [下载](https://url89.ctfile.com/f/31084289-1357028095-524f25?p=8866) |\n| 枕草子（作家榜经典文库） | 清少纳言 | [下载](https://url89.ctfile.com/f/31084289-1357027870-72fe86?p=8866) |\n| 水滴的音乐 | 阿尔多斯・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357027666-cf6538?p=8866) |\n| 荒谬的墙 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866) |\n| 击壤歌 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1357027555-f77b84?p=8866) |\n| 暖梦 | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1357027507-c137e1?p=8866) |\n| 草叶集 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027444-42197e?p=8866) |\n| 青鸟故事集 | 李敬泽 | [下载](链接未找到) |\n| 自在独行 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357026964-7741e7?p=8866) |\n| 自立 | 拉尔夫・瓦尔多・爱默生 | [下载](https://url89.ctfile.com/f/31084289-1357026919-bdb3e9?p=8866) |\n| 虚土 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1357025698-a4bd7e?p=8866) |\n| 行走，一堂哲学课 | 弗里德里克・格鲁 | [下载](https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866) |\n| 幸福，一次哲学之旅 | 弗雷德里克・勒诺瓦 | [下载](https://url89.ctfile.com/f/31084289-1357025566-82e0dc?p=8866) |\n| 走出荒野 | 谢丽尔・斯特雷德 | [下载](https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866) |\n| 我讲个笑话，你可别哭啊 | 囧叔 | [下载](https://url89.ctfile.com/f/31084289-1357024642-ca56cb?p=8866) |\n| 在另一个宇宙的1003天 | 张春 | [下载](https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866) |\n| 无人爱我 | D.H.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866) |\n| 牛棚杂忆 | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866) |\n| 慢煮生活 | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1357023556-6ec377?p=8866) |\n| 不过，一场生活 | 阿Sam | [下载](https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866) |\n| 天长地久：给美君的信 | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866) |\n| 无所畏 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866) |\n| 林达作品集（套装共10册） | 林达 | [下载](https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866) |\n| 背影 | 朱自清 | [下载](https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866) |\n| 有如候鸟 | 周晓枫 | [下载](https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866) |\n| 一瓢纽约 | 张北海 | [下载](https://url89.ctfile.com/f/31084289-1357021135-c37724?p=8866) |\n| 有时 | 徐瑾 | [下载](https://url89.ctfile.com/f/31084289-1357020499-b76fe6?p=8866) |\n| 水云（果麦经典） | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866) |\n| 东瀛文人·印象中国（套装共5册） | 芥川龙之介等 | [下载](https://url89.ctfile.com/f/31084289-1357019443-64d478?p=8866) |\n| 人间卧底 | 马良 | [下载](https://url89.ctfile.com/f/31084289-1357019188-c5a941?p=8866) |\n| 商市街（果麦经典） | 萧红 | [下载](https://url89.ctfile.com/f/31084289-1357019179-fa4281?p=8866) |\n| 人是一根会思考的芦苇 | 帕斯卡 | [下载](https://url89.ctfile.com/f/31084289-1357018051-3c51aa?p=8866) |\n| 你是人间四月天 | 林徽因 | [下载](https://url89.ctfile.com/f/31084289-1357017307-901fb8?p=8866) |\n| 无聊的魅力 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866) |\n| 拥抱逝水年华 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016731-8427f1?p=8866) |\n| 知道分子 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357014475-8625ba?p=8866) |\n| 居山而行 | 雲姑 | [下载](https://url89.ctfile.com/f/31084289-1357013512-eda5a3?p=8866) |\n| 人生最美是清欢 | 林清玄 | [下载](https://url89.ctfile.com/f/31084289-1357012576-33020b?p=8866) |\n| 愿你与这世界温暖相拥 | 毕淑敏 | [下载](https://url89.ctfile.com/f/31084289-1357012573-78aa7b?p=8866) |\n| 深山夏牧场 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357012348-5be301?p=8866) |\n| 前山夏牧场 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357012354-ef6a56?p=8866) |\n| 春牧场 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357012315-5f2f15?p=8866) |\n| 撒哈拉的故事 | 三毛 | [下载](https://url89.ctfile.com/f/31084289-1357011679-8f3c6e?p=8866) |\n| 夏日走过山间（果麦经典） | 约翰・缪尔 | [下载](https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866) |\n| 史铁生插图版经典作品选（全5册） | 史铁生 | [下载](https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866) |\n| 雅舍遗珠 | 梁实秋 | [下载](https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866) |\n| 人间世 | 二月河 | [下载](https://url89.ctfile.com/f/31084289-1357010728-b43c36?p=8866) |\n| 阿司匹林博物馆 | 赵越 | [下载](https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866) |\n| 菊次郎与佐纪 | 北野武 | [下载](https://url89.ctfile.com/f/31084289-1357009915-10ba80?p=8866) |\n| 民国趣读系列（共5册） | 编辑组 | [下载](https://url89.ctfile.com/f/31084289-1357009972-90b3b7?p=8866) |\n| 像我这样的一个读者 | 西西 | [下载](https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866) |\n| 奥威尔作品集（套装共9册） | 奥威尔等 | [下载](https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866) |\n| 活着本来单纯：丰子恺散文漫画精品集 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866) |\n| 浮生六记 | 沈复 | [下载](https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866) |\n| 上午咖啡下午茶 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866) |\n| 当呼吸化为空气 | 保罗・卡拉尼什 | [下载](https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866) |\n| 舍不得读完的书 | 聂震宁 | [下载](https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866) |\n| 千年一叹 | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866) |\n| 皮囊 | 蔡崇达 | [下载](https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866) |\n| 大清的角落 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866) |\n| 目送（插图版） | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866) |\n| 1933：聆听民国 | 林语堂等 | [下载](https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866) |\n| 我是爬行者小江 | 江一燕 | [下载](https://url89.ctfile.com/f/31084289-1357006828-cf34d0?p=8866) |\n| 瓦尔登湖（经典译林） | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866) |\n| 打回原形 | 朱新建 | [下载](https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866) |\n| 我的阿勒泰 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357005583-4653e8?p=8866) |\n"
  },
  {
    "path": "md/敦煌.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 敦煌\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 此生只为守敦煌 | 叶文玲 | [下载](https://url89.ctfile.com/f/31084289-1357004449-d3ed62?p=8866) |\n| 我心归处是敦煌 | 樊锦诗口述/顾春芳撰写 | [下载](https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866) |\n| 敦煌：众人受到召唤 | 生活月刊 | [下载](https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866) |\n| 敦煌本纪 | 叶舟 | [下载](https://url89.ctfile.com/f/31084289-1357033609-6e7d3e?p=8866) |\n| 图说敦煌二五四窟 | 陈海涛/陈琦 | [下载](https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866) |\n"
  },
  {
    "path": "md/数字化.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 数字化\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 从1到N：企业数字化生存指南 | 尤尔根・梅菲特/沙莎 | [下载](https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866) |\n"
  },
  {
    "path": "md/数学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 数学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 欢乐数学 | 本・奥尔林 | [下载](https://url89.ctfile.com/f/31084289-1375509988-85b379?p=8866) |\n| 悠扬的素数 | 马库斯・杜・索托伊 | [下载](https://url89.ctfile.com/f/31084289-1375510315-8d1e4a?p=8866) |\n| 烧掉数学书 | 杰森・威尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1375510984-d5459b?p=8866) |\n| 逻辑的力量 | 郑乐隽 | [下载](https://url89.ctfile.com/f/31084289-1357000540-cc1401?p=8866) |\n| 学好数学并不难（套装共2册） | 孙亮朝 | [下载](https://url89.ctfile.com/f/31084289-1356990406-b55265?p=8866) |\n| 数学本来很简单 | 赛・太蒙尼 | [下载](https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866) |\n| 数学不简单 | 吴悦辰 | [下载](https://url89.ctfile.com/f/31084289-1356985834-983ed5?p=8866) |\n| 数字起源 | 凯莱布・埃弗里特 | [下载](https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866) |\n| 无穷小 | 阿米尔・亚历山大 | [下载](https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866) |\n| 迷人的逻辑题 | 亚历克斯・贝洛斯 | [下载](https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866) |\n| 几何原本（果麦经典） | 欧几里得 | [下载](https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866) |\n| 从一到无穷大（果麦版） | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866) |\n| 极简算法史 | 吕克・德・布拉班迪尔 | [下载](https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866) |\n| 极简数学 | 克里斯・韦林 | [下载](https://url89.ctfile.com/f/31084289-1357036807-4542b9?p=8866) |\n| 第一推动丛书·综合系列（套装共7册） | 梅拉妮・米歇尔等 | [下载](https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866) |\n| 迷茫的旅行商 | William J. Cook | [下载](https://url89.ctfile.com/f/31084289-1357035454-7affdc?p=8866) |\n| 10堂极简概率课 | 佩尔西・戴康尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866) |\n| 三个逻辑学家去酒吧 | 霍格尔・丹贝克 | [下载](https://url89.ctfile.com/f/31084289-1357032730-cc30a1?p=8866) |\n| 从一到无穷大（完整精修珍藏译本） | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866) |\n| 神奇的数字零 | 查尔斯・塞弗 | [下载](链接未找到) |\n| 码书：编码与解码的战争 | 西蒙・辛格 | [下载](https://url89.ctfile.com/f/31084289-1357027210-1192ec?p=8866) |\n| 统计学关我什么事 | 小岛宽之 | [下载](https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866) |\n| 黎曼猜想漫谈 | 卢昌海 | [下载](https://url89.ctfile.com/f/31084289-1357022899-88af93?p=8866) |\n| The Princeton Companion to Mathematics | Gowers, Timothy | [下载](https://url89.ctfile.com/f/31084289-1357021243-933c06?p=8866) |\n| 数学简史 | 蔡天新 | [下载](https://url89.ctfile.com/f/31084289-1357021195-ee63f5?p=8866) |\n| 数学现场：另类世界史 | 王雁斌 | [下载](https://url89.ctfile.com/f/31084289-1357019836-4f4794?p=8866) |\n| 赌神数学家 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866) |\n| 费马大定理：一个困惑了世间智者358年的谜 | 西蒙・辛格 | [下载](https://url89.ctfile.com/f/31084289-1357014706-602d01?p=8866) |\n| 脑洞大开的微积分 | 刘祺 | [下载](https://url89.ctfile.com/f/31084289-1357013872-96990e?p=8866) |\n| 度量：一首献给数学的情歌 | 保罗・洛克哈特 | [下载](https://url89.ctfile.com/f/31084289-1357013179-ed1db5?p=8866) |\n| 爱与数学 | 爱德华・弗伦克尔 | [下载](https://url89.ctfile.com/f/31084289-1357012663-712e79?p=8866) |\n| 思考的乐趣：Matrix67数学笔记 | 顾森 | [下载](https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866) |\n| 数学沉思录 | Mario Livio | [下载](https://url89.ctfile.com/f/31084289-1357010926-6eb53d?p=8866) |\n| 几何原本（全译插图本） | 欧几里得 | [下载](https://url89.ctfile.com/f/31084289-1357010761-329742?p=8866) |\n| 数学女孩 | 结城浩 | [下载](https://url89.ctfile.com/f/31084289-1357010338-f745a3?p=8866) |\n| 数学女孩2：费马大定理 | 结城浩 | [下载](https://url89.ctfile.com/f/31084289-1357010332-f2891c?p=8866) |\n| 数理化通俗演义 | 梁衡 | [下载](https://url89.ctfile.com/f/31084289-1357008178-f506c2?p=8866) |\n| 欧几里得之窗 | 列纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357006591-0ff2c9?p=8866) |\n| 数学那些事儿 | William Dunham | [下载](https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866) |\n"
  },
  {
    "path": "md/数据.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 数据\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 数据资本时代 | Viktor Mayer-Schnberger | [下载](https://url89.ctfile.com/f/31084289-1356991183-16c2c7?p=8866) |\n| 数据呈现之美 | 凌祯 | [下载](https://url89.ctfile.com/f/31084289-1356988333-c13fbe?p=8866) |\n| 诚实的信号 | 阿莱克斯・彭特兰 | [下载](https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866) |\n| 如何用数据解决实际问题 | 柏木吉基 | [下载](https://url89.ctfile.com/f/31084289-1356984538-3d33ff?p=8866) |\n| 量化自我 | 吉娜・聂夫/唐恩・娜芙斯 | [下载](https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866) |\n| 高阶运营 | 龙共火火 | [下载](https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866) |\n| 数据的真相 | 约翰・H. 约翰逊/迈克・格鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866) |\n| 算法霸权 | 凯西・奥尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866) |\n| 利用Python进行数据分析 | Wes McKinney | [下载](https://url89.ctfile.com/f/31084289-1357017943-1de00a?p=8866) |\n| 智能数据 | 比约恩・布劳卿等 | [下载](https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866) |\n| 用数据讲故事 | Cole Nussbaumer Knaflic | [下载](https://url89.ctfile.com/f/31084289-1357016071-ab97a7?p=8866) |\n| 信号与噪声 | 纳特・西尔弗 | [下载](https://url89.ctfile.com/f/31084289-1357012051-590465?p=8866) |\n"
  },
  {
    "path": "md/数据分析.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 数据分析\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 最简单的图形与最复杂的信息 | 黄慧敏 | [下载](https://url89.ctfile.com/f/31084289-1375512553-185e6e?p=8866) |\n| Python金融大数据分析 | 伊夫・希尔皮斯科 | [下载](https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866) |\n| 对比Excel，轻松学习Python数据分析 | 张俊红 | [下载](https://url89.ctfile.com/f/31084289-1357033042-7b00f3?p=8866) |\n| 首席增长官 | 张溪梦 | [下载](https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866) |\n| 人人都是数据分析师 | 刘红阁/王淑娟/温融冰  | [下载](https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866) |\n| 成为数据分析师 | 托马斯・达文波特 | [下载](https://url89.ctfile.com/f/31084289-1357018255-12f5c6?p=8866) |\n"
  },
  {
    "path": "md/数据可视化.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 数据可视化\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人人都是数据分析师 | 刘红阁/王淑娟/温融冰  | [下载](https://url89.ctfile.com/f/31084289-1357023040-6ede2b?p=8866) |\n"
  },
  {
    "path": "md/数据库.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 数据库\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| Redis实战 | Josiah L. Carlson | [下载](https://url89.ctfile.com/f/31084289-1357021837-2f3bb0?p=8866) |\n| MongoDB实战 | Kyle Banker | [下载](https://url89.ctfile.com/f/31084289-1357021072-264d70?p=8866) |\n"
  },
  {
    "path": "md/数理.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 数理\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我的第一本趣味数理化书（套装共三册） | 韩垒/田梅 | [下载](https://url89.ctfile.com/f/31084289-1357012114-af7401?p=8866) |\n"
  },
  {
    "path": "md/整理.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 整理\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 怦然心动的人生整理魔法2 | 近藤麻理惠 | [下载](https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866) |\n| 10分钟扫除术 | 贝基・拉平竺 | [下载](https://url89.ctfile.com/f/31084289-1357036390-b0f5e3?p=8866) |\n"
  },
  {
    "path": "md/文化.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文化\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 圈外编辑 | 都筑响一 | [下载](https://url89.ctfile.com/f/31084289-1375493812-a4c0be?p=8866) |\n| 日本色气 | 九鬼周造/阿部次郎 | [下载](https://url89.ctfile.com/f/31084289-1375497631-758154?p=8866) |\n| 中国茶文化（彩图修订本） | 王玲 | [下载](https://url89.ctfile.com/f/31084289-1375497658-a4bba9?p=8866) |\n| 日本侘寂 | 大西克礼 | [下载](https://url89.ctfile.com/f/31084289-1375497877-b3524b?p=8866) |\n| 京都漫步 | 骆仪 | [下载](https://url89.ctfile.com/f/31084289-1375498195-a77d50?p=8866) |\n| 神奈川冲浪外 | 南希・K. 斯托克 | [下载](https://url89.ctfile.com/f/31084289-1375498489-286596?p=8866) |\n| 日本美学三部曲 | 大西克礼 | [下载](https://url89.ctfile.com/f/31084289-1375499377-dc0d28?p=8866) |\n| 凤凰：神鸟传奇 | 约瑟夫・尼格 | [下载](https://url89.ctfile.com/f/31084289-1375499722-63b477?p=8866) |\n| 日本社会变迁研究套书（全4卷） | 中国日本史学会东北师范大学东亚研究院 | [下载](https://url89.ctfile.com/f/31084289-1375501510-03fea8?p=8866) |\n| 黑色雅典娜：古典文明的亚非之根（套装全3卷共5册） | 马丁・贝尔纳 | [下载](https://url89.ctfile.com/f/31084289-1375507660-f759ed?p=8866) |\n| 川菜 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866) |\n| 鱼米之乡 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866) |\n| 知道咖啡系列（套装共3册） | 斯图尔德・李・艾伦 | [下载](https://url89.ctfile.com/f/31084289-1375508371-3eb8b9?p=8866) |\n| 文明：文化、野心，以及人与自然的伟大博弈 | 菲利普・费尔南多-阿梅斯托 | [下载](https://url89.ctfile.com/f/31084289-1375508923-b0e527?p=8866) |\n| 随园食单（全本全注全译） | 陈伟明 | [下载](https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866) |\n| 茶经 续茶经（全本全注全译） | 杜斌 | [下载](https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866) |\n| 发现阴阳道 | 山下克明 | [下载](https://url89.ctfile.com/f/31084289-1375509379-3c5bbd?p=8866) |\n| 夜间的战斗 | 卡洛・金茨堡 | [下载](https://url89.ctfile.com/f/31084289-1375509478-1024cd?p=8866) |\n| 新文化运动史料丛编 | 孙郁 | [下载](https://url89.ctfile.com/f/31084289-1375510201-42c727?p=8866) |\n| 重新发现日本：60处日本最美古建筑之旅 | 矶达雄/宫泽洋 | [下载](https://url89.ctfile.com/f/31084289-1375510525-107c20?p=8866) |\n| 100个成语中的古代生活史 | 许晖 | [下载](https://url89.ctfile.com/f/31084289-1375511620-06c35b?p=8866) |\n| 神好多的日本 | 山口谣司 | [下载](https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866) |\n| 大师经典：王力先生的古代文化通识课 | 王力 | [下载](https://url89.ctfile.com/f/31084289-1375512367-d2614c?p=8866) |\n| 法老的宝藏 | 约翰・高德特 | [下载](https://url89.ctfile.com/f/31084289-1375512496-f7d5bd?p=8866) |\n| 中华雅文化经典系列（套装共8册） | 陈敬等 | [下载](https://url89.ctfile.com/f/31084289-1375513279-73b746?p=8866) |\n| 少时读书 | 废名 | [下载](https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866) |\n| 野味读书 | 孙犁 | [下载](https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866) |\n| 台湾小吃全书 | 焦桐 | [下载](https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866) |\n| 重寻巨浪 | 神山典士 | [下载](https://url89.ctfile.com/f/31084289-1375513675-542c4a?p=8866) |\n| 不哀之歌 | 曹利群 | [下载](https://url89.ctfile.com/f/31084289-1375513687-619e62?p=8866) |\n| 皮笑肉也笑 | 典婆婆 | [下载](https://url89.ctfile.com/f/31084289-1357004533-f9dbd4?p=8866) |\n| 这是真的，我在一本书里读到过 | 巴斯卡尔・博尼法斯 | [下载](https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866) |\n| 社会设计 | 笕裕介 | [下载](https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866) |\n| 自在京都 | 库索 | [下载](https://url89.ctfile.com/f/31084289-1357003879-27a2e4?p=8866) |\n| 历史的温度5 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866) |\n| 回归故里 | 迪迪埃・埃里蓬 | [下载](https://url89.ctfile.com/f/31084289-1357002355-543671?p=8866) |\n| 文化失忆 | 克莱夫・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357002394-6a02b6?p=8866) |\n| 绝对欲望，绝对奇异 | 马克弟 | [下载](https://url89.ctfile.com/f/31084289-1357002109-90cc9f?p=8866) |\n| 饱食穷民 | 斋藤茂男 | [下载](https://url89.ctfile.com/f/31084289-1357001761-d44b46?p=8866) |\n| 单读：十周年特辑 | 尼古拉斯・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866) |\n| 颜色的故事 | 加文・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866) |\n| 人类善恶小史 | 策妄・阿拉布坦 | [下载](https://url89.ctfile.com/f/31084289-1357000900-ed1aca?p=8866) |\n| 娱乐何为 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357000798-72f1c7?p=8866) |\n| 德国的细节 | 叶克飞 | [下载](https://url89.ctfile.com/f/31084289-1357000312-ad2cbf?p=8866) |\n| 德国文化漫游 | 鲁成文 | [下载](https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866) |\n| 作家海明威的生活剪贴簿 | 迈克尔・卡塔基斯 | [下载](https://url89.ctfile.com/f/31084289-1357000297-a3eb2e?p=8866) |\n| 挥云而去：十张画里看中国 | 韩涧明 | [下载](https://url89.ctfile.com/f/31084289-1356999820-7f8c31?p=8866) |\n| 牛津艺术史系列（第一辑） | 罗宾・奥斯本等 | [下载](https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866) |\n| 残酷剧场 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1356997615-258e96?p=8866) |\n| 酉阳杂俎注评 | 段成式 | [下载](https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866) |\n| 历史的镜子（全新修订版） | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866) |\n| 大故宫六百年风云史 | 阎崇年 | [下载](https://url89.ctfile.com/f/31084289-1356995089-1adaaf?p=8866) |\n| 中国人史纲 | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866) |\n| 天国之门 | 赵林 | [下载](https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866) |\n| 床的人类史 | 布莱恩・费根/纳迪亚・杜兰尼 | [下载](https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866) |\n| 安身立命 | 许纪霖 | [下载](https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866) |\n| 分身：新日本论 | 李永晶 | [下载](https://url89.ctfile.com/f/31084289-1356993670-c0a10d?p=8866) |\n| 东言西语 | 郑子宁 | [下载](https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866) |\n| 冈仓天心东方美学三书 | 冈仓天心 | [下载](https://url89.ctfile.com/f/31084289-1356991678-e1d2d9?p=8866) |\n| 菊花王朝 | 胡炜权 | [下载](https://url89.ctfile.com/f/31084289-1356991672-1fcdce?p=8866) |\n| 全民疯狂的欧洲 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866) |\n| 不只中国木建筑 | 赵广超 | [下载](https://url89.ctfile.com/f/31084289-1356991561-a03462?p=8866) |\n| 人文精神的伟大冒险 | 菲利普·E.毕肖普 | [下载](https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866) |\n| 知中11·宇宙之道，就在围棋 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1356991027-860a40?p=8866) |\n| 中华文明史（全四卷） | 袁行霈 | [下载](https://url89.ctfile.com/f/31084289-1356990850-67d30d?p=8866) |\n| 知日47：源氏物语，一本满足！ | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1356990349-816027?p=8866) |\n| 业余者说 | 王人博 | [下载](https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866) |\n| 知日53：好吃不过拉面 | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1356990262-052cee?p=8866) |\n| 溯洄 | 青稞 | [下载](https://url89.ctfile.com/f/31084289-1356990220-e56d20?p=8866) |\n| 颂·雅·风 | 徐迅 | [下载](https://url89.ctfile.com/f/31084289-1356989755-ec3df0?p=8866) |\n| 企鹅、凤梨与穿山甲 | 克莱尔・科克-斯塔基 | [下载](https://url89.ctfile.com/f/31084289-1356989284-df491a?p=8866) |\n| 知日42：枯山水 | 茶乌龙主编 | [下载](https://url89.ctfile.com/f/31084289-1356988927-f3482b?p=8866) |\n| 两个李白 | 王充闾 | [下载](https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866) |\n| 美国人与中国人 | 许烺光 | [下载](https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866) |\n| 世界音乐汇 | 西蒙・布劳顿 | [下载](https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866) |\n| 文学法兰西 | 普利西拉・帕克赫斯特・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866) |\n| 扪虱谈鬼录（修订版） | 栾保群 | [下载](https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866) |\n| 苏东坡的山药粥 | 徐佳 | [下载](https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866) |\n| 周礼（全本全注全译） | 徐正英/常佩雨 | [下载](https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866) |\n| 香港味道1 | 欧阳应霁 | [下载](https://url89.ctfile.com/f/31084289-1356985993-0ff83e?p=8866) |\n| 香港味道2 | 欧阳应霁 | [下载](https://url89.ctfile.com/f/31084289-1356986050-b290ba?p=8866) |\n| 企鹅经典：小黑书（第四辑） | 弗吉尼亚・伍尔夫等 | [下载](https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866) |\n| 政论 昌言（全本全注全译） | 孙启治译注 | [下载](https://url89.ctfile.com/f/31084289-1356985561-7ebb95?p=8866) |\n| 音调未定的传统（增订本） | 朱维铮 | [下载](https://url89.ctfile.com/f/31084289-1356985084-f06396?p=8866) |\n| 留白：秋水堂文化随笔 | 田晓菲 | [下载](https://url89.ctfile.com/f/31084289-1356984928-62a884?p=8866) |\n| 上海摩登（修订版） | 李欧梵 | [下载](https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866) |\n| 浮世恒河 | 乔治・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1356984796-c657b3?p=8866) |\n| 呻吟语（全本全注全译） | 吕坤 | [下载](https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866) |\n| 时间之书 | 余世存 | [下载](https://url89.ctfile.com/f/31084289-1356983830-3559ad?p=8866) |\n| 杀母的文化 | 孙隆基 | [下载](https://url89.ctfile.com/f/31084289-1356983671-269fff?p=8866) |\n| 日本风俗小物 | 中川政七商店 | [下载](https://url89.ctfile.com/f/31084289-1356983593-3192f5?p=8866) |\n| 让木乃伊跳舞（新版） | 托马斯・霍文 | [下载](https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866) |\n| 原宿牛仔 | W. 大卫・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357053643-0a120a?p=8866) |\n| 日本人的画像 | 李长声 | [下载](https://url89.ctfile.com/f/31084289-1357053013-a69c08?p=8866) |\n| 漫威大战DC | 里德・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866) |\n| 景观社会 | 居伊・德波 | [下载](https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866) |\n| 印尼Etc | 伊丽莎白・皮萨尼 | [下载](https://url89.ctfile.com/f/31084289-1357050922-272408?p=8866) |\n| 电影冷知识 | 许立衡/张凯淯 | [下载](https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866) |\n| 文化的江山·第一辑（全4册） | 刘刚/李冬君 | [下载](https://url89.ctfile.com/f/31084289-1357049323-341278?p=8866) |\n| 西域余闻 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866) |\n| 耶路撒冷三千年（全新增订版） | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866) |\n| 北京的隐秘角落 | 陆波 | [下载](https://url89.ctfile.com/f/31084289-1357048726-87b790?p=8866) |\n| 黄金家族的最后一个王爷 | 朱文楚 | [下载](https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866) |\n| 装腔指南 | 托马斯· W. 霍奇金森 | [下载](https://url89.ctfile.com/f/31084289-1357048573-ba74e7?p=8866) |\n| 知日48：世上只有一个京都！ | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1357047793-e18e51?p=8866) |\n| 春秋穀梁传（全本全注全译） | 徐正英/邹皓 | [下载](https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866) |\n| 春秋大义 | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866) |\n| 文艺复兴人 | 罗伯特・戴维斯/贝丝・琳达史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866) |\n| 东京风格 | 都筑响一 | [下载](https://url89.ctfile.com/f/31084289-1357047016-279986?p=8866) |\n| 媚骨之书 | 蒋蓝 | [下载](https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866) |\n| 超纲冷知识 | 吉姆・查普曼 | [下载](https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866) |\n| 论文化 | 特里・伊格尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357046062-20408c?p=8866) |\n| 占卜师的预言 | 蒂齐亚诺・泰尔扎尼 | [下载](https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866) |\n| 中国常识全集（套装共10册） | 吴晗等 | [下载](https://url89.ctfile.com/f/31084289-1357045489-a1fa67?p=8866) |\n| 历史的温度4 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357045351-89ebbd?p=8866) |\n| 说吧，叙利亚 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866) |\n| 千年悖论 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357045231-d7d6f7?p=8866) |\n| 南腔北调：在语言中重新发现中国 | 郑子宁 | [下载](https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866) |\n| 经典里的中国（套装共十册） | 杨照 | [下载](https://url89.ctfile.com/f/31084289-1357045012-cdddc3?p=8866) |\n| 古希腊人 | 伊迪丝・霍尔 | [下载](https://url89.ctfile.com/f/31084289-1357044940-d53685?p=8866) |\n| 兵者不祥 | 刘鹤 | [下载](https://url89.ctfile.com/f/31084289-1357044943-7922f1?p=8866) |\n| 节日之书 | 余世存/老树 | [下载](https://url89.ctfile.com/f/31084289-1357044508-103e4d?p=8866) |\n| 全民发呆的澳洲 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866) |\n| 我们最幸福 | 芭芭拉・德米克 | [下载](https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866) |\n| 建筑改变日本 | 伊东丰雄 | [下载](https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866) |\n| 近代唯心论简释 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866) |\n| 胡适四十自述（作家榜经典文库） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866) |\n| 大英图书馆书籍史话 | 大卫・皮尔森 | [下载](https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866) |\n| 国学治要（套装共三册） | 张文治 | [下载](https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866) |\n| 光棍危机 | 瓦莱丽・M. 赫德森等 | [下载](https://url89.ctfile.com/f/31084289-1357042783-f1c3cb?p=8866) |\n| 法式诱惑 | 伊莱恩・西奥利诺 | [下载](https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866) |\n| 撒马尔罕 | 阿敏・马卢夫 | [下载](https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866) |\n| 失忆的爱丽丝 | 莉安・莫利亚提 | [下载](https://url89.ctfile.com/f/31084289-1357042543-545e28?p=8866) |\n| 命运（修订典藏版） | 陆天明 | [下载](https://url89.ctfile.com/f/31084289-1357042417-58fafd?p=8866) |\n| 澄衷蒙学堂字课图说（全8册） | 刘树屏 | [下载](https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866) |\n| 八股新论 | 金克木 | [下载](https://url89.ctfile.com/f/31084289-1357040908-f77a1a?p=8866) |\n| 马未都说收藏·家具篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866) |\n| 马未都说收藏·杂项篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866) |\n| 马未都说收藏·陶瓷篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039768-92e788?p=8866) |\n| 马未都说收藏·玉器篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039759-8e7733?p=8866) |\n| 西方的没落（译林人文精选） | 奥斯瓦尔德・斯宾格勒 | [下载](https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866) |\n| 我们为什么会说脏话？ | 埃玛・伯恩 | [下载](https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866) |\n| 西方文明史：延续不断的遗产（第五版） | 马克・凯什岚斯基等 | [下载](https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866) |\n| 絕望者之歌 | 杰德・凡斯 | [下载](https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866) |\n| 亚当的肚脐 | 迈克尔・西姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866) |\n| 南京传 | 叶兆言 | [下载](https://url89.ctfile.com/f/31084289-1357038607-9ea609?p=8866) |\n| 星条旗下的茶叶蛋 | 方柏林 | [下载](https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866) |\n| 消费社会 | 让・鲍德里亚 | [下载](https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866) |\n| 都嘟合集（套装共2册） | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357037935-733bef?p=8866) |\n| 征途美国 | 黄征宇 | [下载](https://url89.ctfile.com/f/31084289-1357035796-7503bb?p=8866) |\n| 文字的力量 | 马丁・普克纳 | [下载](https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866) |\n| 李开周说宋史套装（全3册） | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866) |\n| 傅雷家书（经典版） | 傅雷 | [下载](https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866) |\n| 敦煌：众人受到召唤 | 生活月刊 | [下载](https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866) |\n| 圆圈之书 | 曼纽尔・利马 | [下载](https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866) |\n| 地下巴黎 | 洛朗・多伊奇 | [下载](https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866) |\n| 撒马尔罕的金桃 | 薛爱华 | [下载](https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866) |\n| 米开朗琪罗与教皇的天花板 | 罗斯・金 | [下载](https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866) |\n| 说中国 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033327-50f6c2?p=8866) |\n| 万古江河 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033321-96e82c?p=8866) |\n| 中国文化的精神 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1357033318-326bb4?p=8866) |\n| 圣经的故事（果麦经典） | 亨德里克・威廉・房龙 | [下载](https://url89.ctfile.com/f/31084289-1357033282-468dd2?p=8866) |\n| 茶的国度 | 戎新宇 | [下载](https://url89.ctfile.com/f/31084289-1357033186-d7f53e?p=8866) |\n| 壶里春秋 | 朱维铮 | [下载](https://url89.ctfile.com/f/31084289-1357032883-51a85b?p=8866) |\n| 性文化简史 | 李书崇 | [下载](https://url89.ctfile.com/f/31084289-1357032655-45f763?p=8866) |\n| 中国哲学简史 | 冯友兰 | [下载](https://url89.ctfile.com/f/31084289-1357032604-eeccd0?p=8866) |\n| 中日之间：误解与错位 | 李长声/贾葭 | [下载](https://url89.ctfile.com/f/31084289-1357032559-447387?p=8866) |\n| 日本的细节 | 蒋丰 | [下载](https://url89.ctfile.com/f/31084289-1357032355-8598e5?p=8866) |\n| 文具盒里的时空漫游 | 詹姆斯・沃德 | [下载](https://url89.ctfile.com/f/31084289-1357032310-afb48d?p=8866) |\n| 通识：学问的门类 | 茂木健一郎 | [下载](https://url89.ctfile.com/f/31084289-1357032028-db8b7e?p=8866) |\n| 你所不知道的日本名词故事 | 新井一二三 | [下载](https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866) |\n| 初见卢浮宫 | 中野京子 | [下载](https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866) |\n| 十六个汉字里的日本 | 姜建强 | [下载](https://url89.ctfile.com/f/31084289-1357031203-be379f?p=8866) |\n| 风味人间 | 陈晓卿 | [下载](https://url89.ctfile.com/f/31084289-1357030402-372ed3?p=8866) |\n| 中国人的历史：诸神的踪迹 | 申赋渔 | [下载](https://url89.ctfile.com/f/31084289-1357030189-1c18f5?p=8866) |\n| 一阅千年 | 马克・科尔兰斯基 | [下载](https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866) |\n| 菊与刀（精装插图版） | 伊恩・布鲁马/鲁思・本尼迪克特 | [下载](https://url89.ctfile.com/f/31084289-1357030060-8634c8?p=8866) |\n| 与古为徒和娟娟发屋 | 白谦慎 | [下载](https://url89.ctfile.com/f/31084289-1357030021-8772c8?p=8866) |\n| 字里中国 | 张素凤 | [下载](https://url89.ctfile.com/f/31084289-1357029691-7b218d?p=8866) |\n| 深思与省悟 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866) |\n| 人情、面子与权力的再生产（修订版） | 翟学伟 | [下载](https://url89.ctfile.com/f/31084289-1357029310-bc9143?p=8866) |\n| 理想的境界：历史真实中的山水画 | 王平 | [下载](https://url89.ctfile.com/f/31084289-1357029052-8dfc3b?p=8866) |\n| 那时的先生 | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357028962-13aa23?p=8866) |\n| 德国历史中的文化诱惑 | 沃尔夫・勒佩尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357028272-a929ff?p=8866) |\n| 改变心理学 | 杰弗里・科特勒 | [下载](https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866) |\n| 海盗奇谭 | 盛文强 | [下载](https://url89.ctfile.com/f/31084289-1357028122-374cfe?p=8866) |\n| 哈布斯堡王朝：翱翔欧洲700年的双头鹰 | 卫克安 | [下载](https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866) |\n| 禅心直指 | 澄海 | [下载](https://url89.ctfile.com/f/31084289-1357027864-99937c?p=8866) |\n| 竞争的艺术 | 塞巴斯蒂安・斯密 | [下载](https://url89.ctfile.com/f/31084289-1357027540-ee0502?p=8866) |\n| 大观茶论 | 日月洲 | [下载](https://url89.ctfile.com/f/31084289-1357027285-051ff1?p=8866) |\n| 东京百年史：从江户到昭和 | 爱德华・赛登施蒂克 | [下载](https://url89.ctfile.com/f/31084289-1357027168-a2ebb9?p=8866) |\n| 四朝高僧传（全5册） | 慧皎/道宣/赞宁/如惺 | [下载](https://url89.ctfile.com/f/31084289-1357027009-b8f825?p=8866) |\n| 星空帝国 | 徐刚/王燕平 | [下载](https://url89.ctfile.com/f/31084289-1357027096-381168?p=8866) |\n| 枪的合众国 | 帕梅拉・哈格 | [下载](https://url89.ctfile.com/f/31084289-1357026259-12b415?p=8866) |\n| 国宴与家宴 | 王宣一 | [下载](https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866) |\n| 街角的老北京 | 卢文龙 | [下载](https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866) |\n| 知日28：和制汉语 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025533-3bbc70?p=8866) |\n| 知日05：猫 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025503-b1233d?p=8866) |\n| 知日11：犬 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025488-384b95?p=8866) |\n| 知日20：燃 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025470-5edfce?p=8866) |\n| 知日09：森女 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025473-7a5674?p=8866) |\n| 知日12：断舍离 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025443-003ec0?p=8866) |\n| 知日13：暴走 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025458-0c2c9e?p=8866) |\n| 知日14：家宅 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025449-ebed98?p=8866) |\n| 知日06：铁道 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025431-1b9519?p=8866) |\n| 知日16：写真 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025425-cad07f?p=8866) |\n| 知日22：向日本人学礼仪 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025404-566e2f?p=8866) |\n| 知日25：手帐最高 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025383-82a719?p=8866) |\n| 知日08：妖怪 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025377-a89ac1?p=8866) |\n| 知日18：设计力 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025413-980d01?p=8866) |\n| 衣的现象学 | 鹫田清一 | [下载](https://url89.ctfile.com/f/31084289-1357025359-4d71c5?p=8866) |\n| 知日31：我们在喫茶店见吧 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025347-18317c?p=8866) |\n| 知日29：偶像 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025353-47b33b?p=8866) |\n| 知日30：怪谈 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025323-55c821?p=8866) |\n| 知日26：机甲 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025326-ff55a1?p=8866) |\n| 知中1·山水 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025278-3cb446?p=8866) |\n| 知中4·民谣啊民谣 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025260-f23d1e?p=8866) |\n| 知中5·竹林七贤 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866) |\n| 知中6·一本读懂！山海经 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025233-398c4e?p=8866) |\n| 知中7·幸会！苏东坡 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025227-c9d928?p=8866) |\n| 知中8·了不起的宋版书 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025230-9eef33?p=8866) |\n| 知中10·以侠之名 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025200-8de2ab?p=8866) |\n| 知中12·洋人 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025209-e89b77?p=8866) |\n| 知中14·中国茶的基本 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866) |\n| 知中15·再认识丰子恺 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025182-3c8f73?p=8866) |\n| 知中16·西南联大的遗产 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025173-9a4b72?p=8866) |\n| 知日17：了不起的推理 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025146-e84104?p=8866) |\n| 进击的智人 | 河森堡 | [下载](https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866) |\n| 隐藏的意识 | 约翰・巴奇 | [下载](https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866) |\n| 退步集续编 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866) |\n| 最后的儒家 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357024789-5acc1e?p=8866) |\n| 遇见日本 | 徐静波 | [下载](https://url89.ctfile.com/f/31084289-1357024732-43de40?p=8866) |\n| 中央帝国的哲学密码 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357024501-236820?p=8866) |\n| 图说敦煌二五四窟 | 陈海涛/陈琦 | [下载](https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866) |\n| 贾想（套装共2册） | 贾樟柯 | [下载](https://url89.ctfile.com/f/31084289-1357024177-5dc26f?p=8866) |\n| 奈飞文化手册 | 帕蒂・麦考德 | [下载](https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866) |\n| 东西之道 | 汉斯・格奥尔格・梅勒 | [下载](https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866) |\n| 如何想到又做到 | 肖恩・扬 | [下载](https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866) |\n| 如何做出正确决定 | 乔纳・莱勒 | [下载](https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866) |\n| 于丹：重温最美古诗词 | 于丹 | [下载](https://url89.ctfile.com/f/31084289-1357023889-0d327d?p=8866) |\n| 匠人 | 申赋渔 | [下载](https://url89.ctfile.com/f/31084289-1357023748-9674dd?p=8866) |\n| 美术馆里聊怪咖 | 山田五郎/古山淳子 | [下载](https://url89.ctfile.com/f/31084289-1357023745-138eaa?p=8866) |\n| 鸡征服世界 | 安德鲁・劳勒 | [下载](https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866) |\n| 山河小岁月 | 李舒 | [下载](https://url89.ctfile.com/f/31084289-1357023418-3eafb8?p=8866) |\n| 阿尔比恩的种子 | 大卫・哈克特・费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866) |\n| 朝话 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866) |\n| 忽然七日 | 劳伦・奥利弗 | [下载](https://url89.ctfile.com/f/31084289-1357023253-db0f49?p=8866) |\n| 街头巷尾 | 领读文化 | [下载](https://url89.ctfile.com/f/31084289-1357023154-daa1de?p=8866) |\n| Jerusalem | Simon Sebag Montefiore | [下载](https://url89.ctfile.com/f/31084289-1357023058-302eaa?p=8866) |\n| 中国通史 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357023052-2bf0e8?p=8866) |\n| 音乐的极境 | 爱德华·W.萨义德 | [下载](https://url89.ctfile.com/f/31084289-1357022965-9d1e5c?p=8866) |\n| 我的浏阳兄弟 | 索文 | [下载](https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866) |\n| 掌故（第一集） | 徐俊 | [下载](https://url89.ctfile.com/f/31084289-1357022830-3ddcad?p=8866) |\n| 品人录 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866) |\n| 读城记 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022617-f7baf2?p=8866) |\n| 中国的男人和女人 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022629-7a5047?p=8866) |\n| 闲话中国人 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022614-e2ccf9?p=8866) |\n| 格调（修订第3版） | 保罗・福塞尔 | [下载](https://url89.ctfile.com/f/31084289-1357022470-f9a015?p=8866) |\n| 知日10：日本禅 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357022464-0f5288?p=8866) |\n| 知日19：料理之魂 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357022488-fcb817?p=8866) |\n| 易中天品读中国（套装共6册） | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866) |\n| 哲学起步 | 邓晓芒 | [下载](https://url89.ctfile.com/f/31084289-1357022341-909e43?p=8866) |\n| 资本之都 | 拉纳・达斯古普塔 | [下载](https://url89.ctfile.com/f/31084289-1357022344-3edb5b?p=8866) |\n| 铁道之旅 | 沃尔夫冈・希弗尔布施 | [下载](https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866) |\n| 列奥纳多·达·芬奇传 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866) |\n| 娱乐至死 | 尼尔・波兹曼 | [下载](https://url89.ctfile.com/f/31084289-1357021261-711d62?p=8866) |\n| 私想鲁迅 | 刘春杰 | [下载](https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866) |\n| 茶席窥美 | 静清和 | [下载](https://url89.ctfile.com/f/31084289-1357021102-dfafb9?p=8866) |\n| 卑微的套套 | 安妮・科利尔 | [下载](https://url89.ctfile.com/f/31084289-1357021051-972816?p=8866) |\n| 中国国民性演变历程 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357020961-2b4f8d?p=8866) |\n| 黑麋鹿如是说 ：生命与自然之诗 | 尼古拉斯・黑麋鹿等 | [下载](https://url89.ctfile.com/f/31084289-1357020922-d80161?p=8866) |\n| 日本第一 | 傅高义 | [下载](https://url89.ctfile.com/f/31084289-1357020649-5d71fa?p=8866) |\n| Illuminations | 瓦尔特・本雅明 | [下载](https://url89.ctfile.com/f/31084289-1357020604-dce4aa?p=8866) |\n| 迷信与暴力 | 亨利・查尔斯・李 | [下载](https://url89.ctfile.com/f/31084289-1357020472-3eaa48?p=8866) |\n| 发现玛雅 | 约翰・劳埃德・斯蒂芬斯 | [下载](https://url89.ctfile.com/f/31084289-1357020442-bd32ca?p=8866) |\n| 日本之镜：日本文化中的英雄与恶人 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1357020247-59edee?p=8866) |\n| 知觉之门 | 阿道斯・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357019935-31f55b?p=8866) |\n| 印度，漂浮的次大陆 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357019764-97b4b8?p=8866) |\n| 博物馆窜行记 | 顺手牵猴 | [下载](https://url89.ctfile.com/f/31084289-1357019548-8a4e08?p=8866) |\n| 至味在人间 | 陈晓卿 | [下载](https://url89.ctfile.com/f/31084289-1357019104-e77006?p=8866) |\n| 阿姆斯特丹梵高博物馆 | 保拉・拉佩里 | [下载](https://url89.ctfile.com/f/31084289-1357018915-b0ed02?p=8866) |\n| 藏在地理中的历史学（共3册） | 林肯・佩恩等 | [下载](https://url89.ctfile.com/f/31084289-1357018519-e91091?p=8866) |\n| 乌鸦之城：伦敦，伦敦塔与乌鸦的故事 | 博里亚・萨克斯 | [下载](https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866) |\n| 纸年轮：民国以来百年中国私人读本 | 张冠生 | [下载](https://url89.ctfile.com/f/31084289-1357017922-775184?p=8866) |\n| 以客户为中心 | 黄卫伟 | [下载](https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866) |\n| 历史的温度2 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357017880-5bd0da?p=8866) |\n| 文明之光（全三册） | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357017397-aefe13?p=8866) |\n| 人类智慧小史 | 特雷弗・科诺 | [下载](https://url89.ctfile.com/f/31084289-1357017340-a7f51c?p=8866) |\n| 那些难忘的声音 | 张稼峰 | [下载](https://url89.ctfile.com/f/31084289-1357017289-27536c?p=8866) |\n| 中国缺什么，日本缺什么 | 近藤大介 | [下载](https://url89.ctfile.com/f/31084289-1357017190-d077f5?p=8866) |\n| 从黎明到衰落（上下册） | 雅克・巴尔赞 | [下载](https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866) |\n| 现代艺术150年 | 威尔・贡培兹 | [下载](https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866) |\n| 耶路撒冷三千年 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1357016083-7612e2?p=8866) |\n| 论摄影（插图珍藏本） |  苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866) |\n| 蛊惑世界的力量：可卡因传奇 | 多米尼克・斯特里特费尔德 | [下载](https://url89.ctfile.com/f/31084289-1357015042-67c9a9?p=8866) |\n| 历史的温度 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357014925-4b543e?p=8866) |\n| 读书指南（国学经典精校版） | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1357014856-7dd474?p=8866) |\n| 一把盐下饭菜 | 左壮 | [下载](https://url89.ctfile.com/f/31084289-1357014430-7b97d6?p=8866) |\n| 吃的美德：餐桌上的哲学思考 | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1357013992-1e7670?p=8866) |\n| 你所不知道的日本（套装共3册） | 黄亚南 | [下载](https://url89.ctfile.com/f/31084289-1357013320-488041?p=8866) |\n| 中国式管理行为 | 曾仕强 | [下载](https://url89.ctfile.com/f/31084289-1357012855-72e7bc?p=8866) |\n| 如何学习 | 本尼迪克特・凯里  | [下载](https://url89.ctfile.com/f/31084289-1357012294-0deb01?p=8866) |\n| 菊与刀（增订版） | 鲁思・本尼迪克特 | [下载](https://url89.ctfile.com/f/31084289-1357012096-e918e2?p=8866) |\n| 东京梦华录 | 孟元老 | [下载](https://url89.ctfile.com/f/31084289-1357011613-80ac12?p=8866) |\n| 这就是台湾，这才是台湾 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011721-b791c3?p=8866) |\n| 中国文化简史（套装共4册） | 王立 | [下载](https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866) |\n| 私人生活的变革 | 阎云翔 | [下载](https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866) |\n| 西藏，改变一生的旅行 | 尼玛达娃 | [下载](https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866) |\n| 迈克尔·波伦“饮食觉醒”系列（套装共3册） | 迈克尔・波伦 | [下载](https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866) |\n| 草原帝国（全译插图本） | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866) |\n| 非洲常识 | 吕夏乔 | [下载](https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866) |\n| 中国人的精神 | 辜鸿铭 | [下载](https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866) |\n| 浮生取义 | 吴飞 | [下载](https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866) |\n| 趣味生活简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866) |\n| 千面英雄 | 约瑟夫・坎贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866) |\n| 丰子恺漫画精品集（修订版） | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866) |\n| 中华传统文化大百科套装50册 | 刘心莲等 | [下载](https://url89.ctfile.com/f/31084289-1357008472-a35cc3?p=8866) |\n| 改变美国的时刻 | 刘戈 | [下载](https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866) |\n| 哥伦布大交换 | 艾尔弗雷德・克罗斯比 | [下载](https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866) |\n| 故宫的风花雪月 | 祝勇 | [下载](https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866) |\n| 好色的哈姆雷特 | 小白 | [下载](https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866) |\n| 我在故宫修文物 | 萧寒/绿妖 | [下载](https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866) |\n| 被劫持的私生活 | 肉唐僧 | [下载](https://url89.ctfile.com/f/31084289-1357008037-46dd88?p=8866) |\n| 北大授课：中华文化四十七讲 | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1357007980-4d8887?p=8866) |\n| 上瘾五百年 | 戴维・考特莱特 | [下载](https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866) |\n| 意大利黑手党的历史 | 约翰・迪基 | [下载](https://url89.ctfile.com/f/31084289-1357007902-b4007c?p=8866) |\n| 血酬定律：中国历史中的生存游戏 | 吴思 | [下载](https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866) |\n| 性学观止（上下册） | 贺兰特・凯查杜里安 | [下载](https://url89.ctfile.com/f/31084289-1357007677-8999d8?p=8866) |\n| 性学五章 | 江晓原 | [下载](https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866) |\n| 舍不得读完的书 | 聂震宁 | [下载](https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866) |\n| 怪谈：日本动漫中的传统妖怪 | 周英 | [下载](https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866) |\n| 活在汉朝不容易 | 侯虹斌 | [下载](https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866) |\n| 南渡北归（增订版）套装 | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357007308-0d3989?p=8866) |\n| 教科书里没有的历史细节 | 王国华 | [下载](https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866) |\n| 犹太人的故事：寻找失落的字符 | 西门·沙马  | [下载](https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866) |\n| 米，面，鱼 | 马特・古尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357006654-03c347?p=8866) |\n| 日本人与中国人 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357006471-f2b909?p=8866) |\n| 儒学、数术与政治 | 陈侃理 | [下载](https://url89.ctfile.com/f/31084289-1357006072-66be1f?p=8866) |\n| 吕思勉讲中国历史 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357005865-39afd4?p=8866) |\n| 历史的空白处 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866) |\n| 重新发现宋朝 | 吴钩 | [下载](https://url89.ctfile.com/f/31084289-1357005790-d2804d?p=8866) |\n| 一年之痒 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866) |\n| 你一定爱读的极简欧洲史 | 约翰・赫斯特 | [下载](https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866) |\n| 时间的残渣 | 冯峰 | [下载](https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866) |\n"
  },
  {
    "path": "md/文化史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文化史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人文通史 | 詹尼特・勒博・本顿/罗伯特・笛亚尼 | [下载](https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866) |\n| 香料漂流记 | 加里・保罗・纳卜汉 | [下载](https://url89.ctfile.com/f/31084289-1357044238-605eec?p=8866) |\n| 欧亚皇家狩猎史 | 托马斯・爱尔森 | [下载](https://url89.ctfile.com/f/31084289-1357033663-88cf9f?p=8866) |\n| 我们太缺一门叫生命的学问 | 薛仁明 | [下载](https://url89.ctfile.com/f/31084289-1357029520-f3bc05?p=8866) |\n"
  },
  {
    "path": "md/文化大革命.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文化大革命\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| “四人帮”兴亡（增订版） | 叶永烈 | [下载](https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866) |\n"
  },
  {
    "path": "md/文史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 不正经的卢浮宫 | 西塞尔・巴隆等 | [下载](https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866) |\n| 帝国崛起病 | 黄钟 | [下载](https://url89.ctfile.com/f/31084289-1357007281-5bec5c?p=8866) |\n"
  },
  {
    "path": "md/文学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 磨坊信札（作家榜经典文库） | 阿尔封斯・都德 | [下载](https://url89.ctfile.com/f/31084289-1375491025-903fa5?p=8866) |\n| 百年百部红色经典系列：第一辑（套装共20册） | 周梅森等 | [下载](https://url89.ctfile.com/f/31084289-1375491169-00db51?p=8866) |\n| 哈代作品集 | 托马斯・哈代 | [下载](https://url89.ctfile.com/f/31084289-1375491061-7ee4c9?p=8866) |\n| 单读29：当代剧作选 | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1375491283-25cf73?p=8866) |\n| 名利场（作家榜经典文库） | 萨克雷 | [下载](https://url89.ctfile.com/f/31084289-1375491325-e911e2?p=8866) |\n| 长岛小记 | 郭红 | [下载](https://url89.ctfile.com/f/31084289-1375491448-bef079?p=8866) |\n| 不定的荣耀 | 胡安・萨雷斯 | [下载](https://url89.ctfile.com/f/31084289-1375491469-ed6e5a?p=8866) |\n| 别的声音，别的房间 | 杜鲁门・卡波特 | [下载](https://url89.ctfile.com/f/31084289-1375491487-56594b?p=8866) |\n| 单读28：明亮的时刻-女导演特辑 | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1375491529-ab13d9?p=8866) |\n| 水经注套装全五册（全本全注全译） | 郦道元 | [下载](https://url89.ctfile.com/f/31084289-1375491544-98a70b?p=8866) |\n| 一把刀，千个字 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1375491508-43620c?p=8866) |\n| 身着狮皮 | 迈克尔・翁达杰 | [下载](https://url89.ctfile.com/f/31084289-1375491568-737c21?p=8866) |\n| 伍尔夫经典作品集 | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1375491682-d32ac0?p=8866) |\n| 我和我的命 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1375491784-b14e76?p=8866) |\n| 感知•理知•自我认知 | 陈嘉映 | [下载](https://url89.ctfile.com/f/31084289-1375491952-add17f?p=8866) |\n| 鹿川有许多粪 | 李沧东 | [下载](https://url89.ctfile.com/f/31084289-1375492009-7adb9f?p=8866) |\n| 吃动物 | 乔纳森・萨福兰・弗尔 | [下载](https://url89.ctfile.com/f/31084289-1375492030-8fffdb?p=8866) |\n| 不对称 | 莉萨・哈利迪 | [下载](https://url89.ctfile.com/f/31084289-1375492102-378845?p=8866) |\n| 我爱这哭不出来的浪漫 | 严明 | [下载](https://url89.ctfile.com/f/31084289-1375492279-da9a63?p=8866) |\n| 三联文史新论（套装21册） | 王家范等 | [下载](https://url89.ctfile.com/f/31084289-1375492912-36485b?p=8866) |\n| 毓老师说系列（共十八册） | 爱新觉罗・毓鋆讲述 | [下载](https://url89.ctfile.com/f/31084289-1375492564-bdeea5?p=8866) |\n| 纪念碑 | 王小鹰 | [下载](https://url89.ctfile.com/f/31084289-1375492576-fe1eda?p=8866) |\n| 诗来见我 | 李修文 | [下载](https://url89.ctfile.com/f/31084289-1375492600-2ff9d4?p=8866) |\n| 借山而居（珍藏版） | 张二冬 | [下载](https://url89.ctfile.com/f/31084289-1375492669-bdbbd4?p=8866) |\n| 故事便利店 | 骆以军 | [下载](https://url89.ctfile.com/f/31084289-1375492792-7294cd?p=8866) |\n| 文明的边界 | 滕肖澜 | [下载](https://url89.ctfile.com/f/31084289-1375493026-02c981?p=8866) |\n| 躺平 | 贝恩德・布伦纳 | [下载](https://url89.ctfile.com/f/31084289-1375493068-3a03e2?p=8866) |\n| 她来自马里乌波尔 | 娜塔莎・沃丁 | [下载](https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866) |\n| 糜骨之壤 | 奥尔加・托卡尔丘克 | [下载](https://url89.ctfile.com/f/31084289-1375493194-10dea4?p=8866) |\n| 狐狸在夜晚来临 | 塞斯・诺特博姆 | [下载](https://url89.ctfile.com/f/31084289-1375493197-9582ef?p=8866) |\n| 太多值得思考的事物 | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1375493218-ba0ce5?p=8866) |\n| 破晓时分 | 朱西甯 | [下载](https://url89.ctfile.com/f/31084289-1375493230-5de6c8?p=8866) |\n| 声誉 | 唐诺 | [下载](https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866) |\n| 卡夫卡中短篇德文直译全集（套装共6册） | 弗朗茨・卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1375493329-993645?p=8866) |\n| 昨夜 | 詹姆斯・索特 | [下载](https://url89.ctfile.com/f/31084289-1375493422-c08ce3?p=8866) |\n| 里约折叠 | 米沙・格兰尼 | [下载](https://url89.ctfile.com/f/31084289-1375493452-eb3a63?p=8866) |\n| 攀登尼采 | 约翰・卡格 | [下载](https://url89.ctfile.com/f/31084289-1375493479-e7baa8?p=8866) |\n| 李佩甫作品全集（共16册） | 李佩甫 | [下载](https://url89.ctfile.com/f/31084289-1375493590-629a68?p=8866) |\n| 灰烬的光辉：保罗策兰诗选 | 保罗・策兰 | [下载](https://url89.ctfile.com/f/31084289-1375493716-834b61?p=8866) |\n| 浮木 | 杨本芬 | [下载](https://url89.ctfile.com/f/31084289-1375493731-a2dea1?p=8866) |\n| 罗塞塔夫人 | 罗尔德・达尔 | [下载](https://url89.ctfile.com/f/31084289-1375493737-177581?p=8866) |\n| 奇妙的盘算社团 | 高井浩章 | [下载](https://url89.ctfile.com/f/31084289-1375493755-6d2ec3?p=8866) |\n| 天吾手记 | 双雪涛 | [下载](https://url89.ctfile.com/f/31084289-1375493800-6736c7?p=8866) |\n| 我的心迟到了：佩索阿情诗 | 费尔南多・佩索阿 | [下载](https://url89.ctfile.com/f/31084289-1375493809-0d4478?p=8866) |\n| 上校的大衣 | 罗尔德・达尔 | [下载](https://url89.ctfile.com/f/31084289-1375493869-0cd243?p=8866) |\n| 我将宇宙随身携带：佩索阿诗集 | 费尔南多・佩索阿 | [下载](https://url89.ctfile.com/f/31084289-1375493875-8ebc30?p=8866) |\n| 美好时代的背后 | 凯瑟琳・布 | [下载](https://url89.ctfile.com/f/31084289-1375495399-0e9e0c?p=8866) |\n| 新冠时代的我们 | 保罗・乔尔达诺 | [下载](https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866) |\n| 莎士比亚的自由 | 斯蒂芬・格林布拉特 | [下载](https://url89.ctfile.com/f/31084289-1375496479-715b72?p=8866) |\n| 里程碑文库（第三辑） | 唐克扬等 | [下载](https://url89.ctfile.com/f/31084289-1375496881-d79a75?p=8866) |\n| 荒原狼 | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1375497058-c79f7c?p=8866) |\n| 文学的读法 | 特里・伊格尔顿 | [下载](https://url89.ctfile.com/f/31084289-1375497127-2181e6?p=8866) |\n| 译文经典·第一辑（套装共20册） | 福楼拜等 | [下载](https://url89.ctfile.com/f/31084289-1375497409-47086f?p=8866) |\n| 人生必读之书：文景古典·名译插图本 | 埃斯库罗斯等 | [下载](https://url89.ctfile.com/f/31084289-1375497523-e093d0?p=8866) |\n| 三联苏俄文学经典译著（套装15册） | 高尔基等 | [下载](https://url89.ctfile.com/f/31084289-1375497571-7a9471?p=8866) |\n| 文城 | 余华 | [下载](https://url89.ctfile.com/f/31084289-1375497568-d87c4f?p=8866) |\n| 读水浒 | 押沙龙 | [下载](https://url89.ctfile.com/f/31084289-1375497586-5c95ce?p=8866) |\n| 唱吧！未安葬的魂灵 | 杰丝米妮・瓦德 | [下载](https://url89.ctfile.com/f/31084289-1375497583-c26717?p=8866) |\n| 找不到工作的一年 | 吉田修一 | [下载](https://url89.ctfile.com/f/31084289-1375497619-b0a991?p=8866) |\n| 世界名著名家经典译本·译文40（套装共40册） | 奥威尔等 | [下载](https://url89.ctfile.com/f/31084289-1375497904-e167f7?p=8866) |\n| 苏童作品精选集（套装共13册） | 苏童 | [下载](https://url89.ctfile.com/f/31084289-1375497748-a7ae4a?p=8866) |\n| 麦本三步的喜爱之物 | 住野夜 | [下载](https://url89.ctfile.com/f/31084289-1375497886-afc031?p=8866) |\n| 中译经典文库•世界文学名著精选50册 | 中国对外翻译出版公司 | [下载](https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866) |\n| 译文心理分析作品集（套装共12册） | 西格蒙德・弗洛伊德等 | [下载](https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866) |\n| 韦伯作品集（套装9册） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1375498366-dfd378?p=8866) |\n| 宋元笔记小说大观（全35册） | 王应麟等 | [下载](https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866) |\n| 以鸟兽之名 | 孙频 | [下载](https://url89.ctfile.com/f/31084289-1375498450-91d7f2?p=8866) |\n| 电视人 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1375498462-448cc5?p=8866) |\n| 毕飞宇经典套装（共19册） | 毕飞宇 | [下载](https://url89.ctfile.com/f/31084289-1375498528-823d87?p=8866) |\n| 杜利特医生的历险故事（套装共12册） | 休・洛夫廷 | [下载](https://url89.ctfile.com/f/31084289-1375498603-bd23d3?p=8866) |\n| 史前一万年（套装共6册） | 琼・奥尔 | [下载](https://url89.ctfile.com/f/31084289-1375498657-c6133a?p=8866) |\n| 东大教授世界文学讲义系列（套装全5册） | 沼野充义 | [下载](https://url89.ctfile.com/f/31084289-1375498672-8a6511?p=8866) |\n| 去中国的小船 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1375498675-d23546?p=8866) |\n| 小说六讲 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1375498696-3bd541?p=8866) |\n| 宇宙的孩子 | 迈克尔・乔莱特 | [下载](https://url89.ctfile.com/f/31084289-1375498705-4c11d3?p=8866) |\n| 芥川龙之介妄想者手记 | 芥川龙之介 | [下载](https://url89.ctfile.com/f/31084289-1375498792-06a460?p=8866) |\n| 一日三秋 | 刘震云 | [下载](https://url89.ctfile.com/f/31084289-1375498819-4d3d6b?p=8866) |\n| 隐谷路 | 罗伯特・科尔克 | [下载](https://url89.ctfile.com/f/31084289-1375498873-def7c6?p=8866) |\n| 遇到百分之百的女孩 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1375498864-6cca63?p=8866) |\n| 莫罗博士岛（作家榜经典文库） | 赫伯特・乔治・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375498885-f259b0?p=8866) |\n| 劳马作品集（套装共4册） | 劳马 | [下载](https://url89.ctfile.com/f/31084289-1375498891-72407b?p=8866) |\n| 罗马尼亚三部曲 | 赫塔・米勒 | [下载](https://url89.ctfile.com/f/31084289-1375498903-726c74?p=8866) |\n| 普希金经典文选小集 | 普希金 | [下载](https://url89.ctfile.com/f/31084289-1375498909-3f9a1a?p=8866) |\n| 长眠不醒（作家榜经典文库） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1375498939-95f078?p=8866) |\n| 神曲（全三册） | 但丁・阿利格耶里 | [下载](https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866) |\n| 华丽人生 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1375498960-0cf371?p=8866) |\n| 石天金山 | 米兰迪・里沃 | [下载](https://url89.ctfile.com/f/31084289-1375498972-06d8ec?p=8866) |\n| 金银岛（作家榜经典文库） | 罗伯特・路易斯・史蒂文森 | [下载](https://url89.ctfile.com/f/31084289-1375498984-f45284?p=8866) |\n| 要把读书当回事 | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1375499101-3b0d57?p=8866) |\n| 张医生与王医生 | 伊险峰/杨樱 | [下载](https://url89.ctfile.com/f/31084289-1375499125-925a06?p=8866) |\n| 父亲的眼泪（短经典精选） | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1375499179-428891?p=8866) |\n| 哲人石珍藏版第一辑（套装6册） | 约翰・巴里等 | [下载](https://url89.ctfile.com/f/31084289-1375499248-e688f8?p=8866) |\n| 阴翳礼赞（作家榜经典文库） | 谷崎润一郎 | [下载](https://url89.ctfile.com/f/31084289-1375499281-c94bb8?p=8866) |\n| 陀思妥耶夫斯基文集套装（全八册） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375499341-f43d73?p=8866) |\n| 谎言守护人 | 埃马努埃尔・伯格曼 | [下载](https://url89.ctfile.com/f/31084289-1375499326-19c32c?p=8866) |\n| 怀疑者年鉴 | 伊桑・卡宁 | [下载](https://url89.ctfile.com/f/31084289-1375499344-721099?p=8866) |\n| 寂静的巴黎 | 申赋渔 | [下载](https://url89.ctfile.com/f/31084289-1375499392-a3a61b?p=8866) |\n| 绞河镇的最后一夜 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1375499416-98145b?p=8866) |\n| 牙买加旅馆 | 达芙妮・杜穆里埃 | [下载](https://url89.ctfile.com/f/31084289-1375499431-9c1104?p=8866) |\n| 人间词话：叶嘉莹讲评本 | 叶嘉莹 | [下载](https://url89.ctfile.com/f/31084289-1375499446-d9ea31?p=8866) |\n| 奇山飘香（短经典精选） | 罗伯特・奥伦・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1375499500-13bb69?p=8866) |\n| 冷漠的人 | 阿尔贝托・莫拉维亚 | [下载](https://url89.ctfile.com/f/31084289-1375499545-626d92?p=8866) |\n| 四先生（短经典精选） | 贡萨洛・曼努埃尔・塔瓦雷斯 | [下载](https://url89.ctfile.com/f/31084289-1375499566-0f75c8?p=8866) |\n| 啼笑因缘 | 张恨水 | [下载](https://url89.ctfile.com/f/31084289-1375499575-45e4fc?p=8866) |\n| 活出最乐观的自己 | 马丁・塞利格曼 | [下载](https://url89.ctfile.com/f/31084289-1375499620-1feacf?p=8866) |\n| 人的局限性 | 塞缪尔・约翰生 | [下载](https://url89.ctfile.com/f/31084289-1375499611-c45040?p=8866) |\n| 房间里的阿尔及尔女人（短经典精选） | 阿西娅・吉巴尔 | [下载](https://url89.ctfile.com/f/31084289-1375499626-02d858?p=8866) |\n| 耶稣之死（库切文集） | J.M. 库切 | [下载](https://url89.ctfile.com/f/31084289-1375499638-c627d8?p=8866) |\n| 群星灿烂的年代 | 伊・伊・巴纳耶夫 | [下载](https://url89.ctfile.com/f/31084289-1375499674-569481?p=8866) |\n| 变色龙（作家榜经典文库） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1375499692-2e4742?p=8866) |\n| 未来艺术丛书（全7册） | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1375499785-9d1eba?p=8866) |\n| 波拉尼奥的肖像 | 莫妮卡・马里斯坦 | [下载](https://url89.ctfile.com/f/31084289-1375499713-7eebf4?p=8866) |\n| 王阳明图传（全新注释本） | 冯梦龙 | [下载](https://url89.ctfile.com/f/31084289-1375499725-989ddd?p=8866) |\n| 动物小说大王沈石溪·品藏书系（升级版）（套装36册） | 沈石溪 | [下载](https://url89.ctfile.com/f/31084289-1375499866-7f7659?p=8866) |\n| 熔炉 | 孔枝泳 | [下载](https://url89.ctfile.com/f/31084289-1375500031-1ac20c?p=8866) |\n| 爱的饥渴 | 三岛由纪夫 | [下载](https://url89.ctfile.com/f/31084289-1375500154-231e6b?p=8866) |\n| 蒙马特遗书 | 邱妙津 | [下载](https://url89.ctfile.com/f/31084289-1375500163-f3a93e?p=8866) |\n| 我从哪里来 | 萨沙・斯坦尼西奇 | [下载](https://url89.ctfile.com/f/31084289-1375500220-b2442f?p=8866) |\n| 译文传记作品系列（套装共15册） | 斯特凡・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1375500337-e1be2a?p=8866) |\n| 侦图机 | 萨曼塔・施维伯林 | [下载](https://url89.ctfile.com/f/31084289-1375500316-5cb7e5?p=8866) |\n| 美丽的约定（作家榜经典文库） | 阿兰・傅尼埃 | [下载](https://url89.ctfile.com/f/31084289-1375500358-f4641f?p=8866) |\n| 醉玲珑（全三册） | 十四夜 | [下载](https://url89.ctfile.com/f/31084289-1375500328-54bba2?p=8866) |\n| 新手死神五部曲 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1375500334-03aa1b?p=8866) |\n| 汪曾祺纪念文集水墨珍藏版套装全六册 | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1375500346-c90acd?p=8866) |\n| 日本短诗套装（共5册） | 松尾芭蕉等 | [下载](https://url89.ctfile.com/f/31084289-1375500349-0632a1?p=8866) |\n| 吹牛大王历险记（作家榜经典文库） | 埃・拉斯伯 | [下载](https://url89.ctfile.com/f/31084289-1375500382-8e5f6b?p=8866) |\n| 沉默的经典诗歌译丛1（套装共4册） | 戴维・赫伯特・劳伦斯等 | [下载](https://url89.ctfile.com/f/31084289-1375500385-56b9bc?p=8866) |\n| 沉默的经典诗歌译丛2（套装共4册） | 露易丝・格丽克等 | [下载](https://url89.ctfile.com/f/31084289-1375500388-f84a0c?p=8866) |\n| 喜剧 | 陈彦 | [下载](https://url89.ctfile.com/f/31084289-1375500394-78b974?p=8866) |\n| 逃生路线 | 石黑直美 | [下载](https://url89.ctfile.com/f/31084289-1375500397-35f789?p=8866) |\n| 回归家庭 | 沙尼・奥加德 | [下载](https://url89.ctfile.com/f/31084289-1375500403-34b60f?p=8866) |\n| 单向街（作家榜经典文库） | 瓦尔特・本雅明 | [下载](https://url89.ctfile.com/f/31084289-1375500412-ae61d4?p=8866) |\n| 博雅文丛（全11册） | 蔡彦峰等 | [下载](https://url89.ctfile.com/f/31084289-1375500472-bc6cfa?p=8866) |\n| 桤木王 | 米歇尔・图尼埃 | [下载](https://url89.ctfile.com/f/31084289-1375500547-eeac56?p=8866) |\n| 失业白领的职场漂流 | 芭芭拉・艾伦瑞克 | [下载](https://url89.ctfile.com/f/31084289-1375500553-5edab3?p=8866) |\n| 隐身人（作家榜经典文库） | 赫伯特・乔治・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375500565-7bdbb5?p=8866) |\n| 中古中国知识·信仰·制度研究书系（全11册） | 仇鹿鸣等 | [下载](https://url89.ctfile.com/f/31084289-1375501066-c19ce4?p=8866) |\n| 七座空屋 | 萨曼塔・施维伯林 | [下载](https://url89.ctfile.com/f/31084289-1375500610-8edd47?p=8866) |\n| 海蒂（果麦经典） | 约翰娜・斯比丽 | [下载](https://url89.ctfile.com/f/31084289-1375500616-d44508?p=8866) |\n| 蒙曼精选套装（共9册） | 蒙曼 | [下载](https://url89.ctfile.com/f/31084289-1375500643-e84655?p=8866) |\n| 单读26：全球真实故事集 | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1375500649-4348f2?p=8866) |\n| 迷路员 | 沈大成 | [下载](https://url89.ctfile.com/f/31084289-1375500664-558ad3?p=8866) |\n| 名人传（作家榜经典文库） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1375500694-85d5d9?p=8866) |\n| 梁庄十年 | 梁鸿 | [下载](https://url89.ctfile.com/f/31084289-1375500706-b2fafd?p=8866) |\n| 鳄鱼手记 | 邱妙津 | [下载](https://url89.ctfile.com/f/31084289-1375500712-a64c03?p=8866) |\n| 一代大师林语堂作品全新修订版（全25册） | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1375500832-ce5662?p=8866) |\n| 翻译大师谈翻译：译家之言套装 | 许渊冲 | [下载](https://url89.ctfile.com/f/31084289-1375500748-930d1b?p=8866) |\n| 余秋雨学术四卷（套装共4册） | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1375500850-128583?p=8866) |\n| 受戒：汪曾祺小说精选（读客经典文库） | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1375500805-5cbab0?p=8866) |\n| 大江健三郎人生成长系列（套装共4册） | 大江健三郎 | [下载](https://url89.ctfile.com/f/31084289-1375500874-a07323?p=8866) |\n| 道林格雷的画像（作家榜经典文库） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1375500937-3c3b07?p=8866) |\n| 汉译世界学术名著丛书（120册精选大合集） | 黑格尔等 | [下载](https://url89.ctfile.com/f/31084289-1375501654-989079?p=8866) |\n| 爱的接力棒 | 濑尾麻衣子 | [下载](https://url89.ctfile.com/f/31084289-1375500955-1f1827?p=8866) |\n| 不安之夜 | 玛丽克・卢卡斯・莱纳菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1375501039-f8d924?p=8866) |\n| 楚辞选（古典文学大字本） | 陆侃如/龚克昌 | [下载](https://url89.ctfile.com/f/31084289-1375501081-311ef3?p=8866) |\n| S.A.阿列克谢耶维奇作品集（套装共五册） | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1375501123-bc5f17?p=8866) |\n| 人间清醒 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1375501171-da5945?p=8866) |\n| 素食者 | 韩江 | [下载](https://url89.ctfile.com/f/31084289-1375501180-b1e098?p=8866) |\n| 达摩流浪者 | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1375501198-87ebe7?p=8866) |\n| 没有人比你更属于这里 | 米兰达・裘丽 | [下载](https://url89.ctfile.com/f/31084289-1375501216-582372?p=8866) |\n| 西藏天空 | 阿来 | [下载](https://url89.ctfile.com/f/31084289-1375501315-32622d?p=8866) |\n| 六神磊磊读金庸 | 六神磊磊 | [下载](https://url89.ctfile.com/f/31084289-1375501339-8defa2?p=8866) |\n| 傲慢与偏见（读客经典文库） | 简・奥斯汀 | [下载](https://url89.ctfile.com/f/31084289-1375501381-675b76?p=8866) |\n| 阿来经典作品集（共36册） | 阿来 | [下载](https://url89.ctfile.com/f/31084289-1375501711-956da5?p=8866) |\n| 日本文学之美（套装共5册） | 紫式部 | [下载](https://url89.ctfile.com/f/31084289-1375501609-456bac?p=8866) |\n| 天堂旅行团 | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1375501435-2b3e87?p=8866) |\n| 行走的柠檬 | 海伦娜・阿特利 | [下载](https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866) |\n| 穿越 | 科马克・麦卡锡 | [下载](https://url89.ctfile.com/f/31084289-1375501474-62c218?p=8866) |\n| 诗经选（古典文学大字本） | 褚斌杰 | [下载](https://url89.ctfile.com/f/31084289-1375501477-e31d54?p=8866) |\n| 尼克·霍恩比作品集（套装共6册） | 尼克・霍恩比 | [下载](https://url89.ctfile.com/f/31084289-1375501483-fd26c5?p=8866) |\n| 克拉多克太太（毛姆文集） | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375501519-463e06?p=8866) |\n| 焦虑的人 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1375501522-67f7bf?p=8866) |\n| 平原上的城市 | 科马克・麦卡锡 | [下载](https://url89.ctfile.com/f/31084289-1375501537-1986a4?p=8866) |\n| 苏轼词选（古典文学大字本） | 刘石 | [下载](https://url89.ctfile.com/f/31084289-1375501546-485495?p=8866) |\n| 清洁女工手册 | 露西亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1375501630-adf775?p=8866) |\n| 海边的房间 | 黄丽群 | [下载](https://url89.ctfile.com/f/31084289-1375501639-43e02e?p=8866) |\n| 辛弃疾词选（古典文学大字本） | 刘扬忠 | [下载](https://url89.ctfile.com/f/31084289-1375501651-12c86d?p=8866) |\n| 半小时漫画《论语》 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501885-a28305?p=8866) |\n| 外研社双语读库：悬疑冒险书系（套装共67本） | 卡罗尔等 | [下载](https://url89.ctfile.com/f/31084289-1375502272-aa3e15?p=8866) |\n| 朱光潜全集 | 朱光潜 | [下载](https://url89.ctfile.com/f/31084289-1375501777-4c22d0?p=8866) |\n| 唐诗三百首（古典文学大字本） | 孙洙 | [下载](https://url89.ctfile.com/f/31084289-1375501939-d54a1c?p=8866) |\n| 历代名家词集精华录（全22册） | 温庭筠 | [下载](https://url89.ctfile.com/f/31084289-1375502101-12a823?p=8866) |\n| 克尔凯郭尔文集10册大全集 | 索伦・克尔凯郭尔 | [下载](https://url89.ctfile.com/f/31084289-1375502005-543a3e?p=8866) |\n| 樊登讲论语：先进 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1375502053-71d6f8?p=8866) |\n| 樊登讲论语：学而 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1375502065-aaa0f3?p=8866) |\n| 毛姆短篇小说全集（读客经典文库） | 毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375502116-5455c0?p=8866) |\n| 元曲三百首（古典文学大字本） | 张燕瑾 | [下载](https://url89.ctfile.com/f/31084289-1375502113-fcbdaa?p=8866) |\n| 三岛由纪夫作品系列（全7册） | 三岛由纪夫 | [下载](https://url89.ctfile.com/f/31084289-1375502164-c23087?p=8866) |\n| 聚斯金德文集（套装共5册） | 帕特里克・聚斯金德 | [下载](https://url89.ctfile.com/f/31084289-1375502188-2f2edc?p=8866) |\n| 天下骏马 | 科马克・麦卡锡 | [下载](https://url89.ctfile.com/f/31084289-1375502305-27ec50?p=8866) |\n| 古文观止（古典文学大字本） | 吴楚材/吴调侯 | [下载](https://url89.ctfile.com/f/31084289-1375502311-70f080?p=8866) |\n| 强蚁 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1375502317-8ffcba?p=8866) |\n| 柳永词选（古典文学大字本） | 柳永 | [下载](https://url89.ctfile.com/f/31084289-1375502314-b5e7e4?p=8866) |\n| 中国古典文学名家选集（全17册） | 王维等 | [下载](https://url89.ctfile.com/f/31084289-1375502398-fe5b0d?p=8866) |\n| 外研社双语读库：西方文学社科经典大套装（套装194本） | 劳伦斯等 | [下载](https://url89.ctfile.com/f/31084289-1375503094-de74e2?p=8866) |\n| 杨照作品集（套装9册） | 杨照 | [下载](https://url89.ctfile.com/f/31084289-1375502629-9ef10e?p=8866) |\n| 千家诗（古典文学大字本） | 谷一然 | [下载](https://url89.ctfile.com/f/31084289-1375503001-f69279?p=8866) |\n| 外研社双语读库·社会文化书系（套装共61本） | 杰罗姆等 | [下载](https://url89.ctfile.com/f/31084289-1375503208-381270?p=8866) |\n| 陈彦经典代表作品合集 | 陈彦 | [下载](https://url89.ctfile.com/f/31084289-1375503118-785d73?p=8866) |\n| 狐狸侦探系列（3册） | 弗朗齐斯卡・比尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375503268-1bec63?p=8866) |\n| 宋词三百首（古典文学大字本） | 武玉成/顾丛龙 | [下载](https://url89.ctfile.com/f/31084289-1375503301-c03e33?p=8866) |\n| 疯癫亚当三部曲 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1375503436-886cdc?p=8866) |\n| 中华学人丛书（第二辑）（套种共十六册） | 李伯杰等 | [下载](https://url89.ctfile.com/f/31084289-1375503694-ac5276?p=8866) |\n| 柳田国男文集（套装共十册） | 柳田国男 | [下载](https://url89.ctfile.com/f/31084289-1375503697-8daafb?p=8866) |\n| 草婴译列夫·托尔斯泰中短篇小说全集 | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1375503823-cc7f6a?p=8866) |\n| 李白诗选（古典文学大字本） | 熊礼汇 | [下载](https://url89.ctfile.com/f/31084289-1375503748-0bb90d?p=8866) |\n| 王阳明（全三册） | 许葆云 | [下载](https://url89.ctfile.com/f/31084289-1375503904-76511f?p=8866) |\n| 未被摧毁的生活 | 李伟长 | [下载](https://url89.ctfile.com/f/31084289-1375503928-467c01?p=8866) |\n| 李清照词选（古典文学大字本） | 陈祖美 | [下载](https://url89.ctfile.com/f/31084289-1375503934-42bda0?p=8866) |\n| 诺贝尔文学奖得主莫言文集（套装共26册） | 莫言 | [下载](https://url89.ctfile.com/f/31084289-1375504021-e0068c?p=8866) |\n| 狮子之家的点心日 | 小川糸 | [下载](https://url89.ctfile.com/f/31084289-1375504180-50d4c6?p=8866) |\n| 成年人的谎言生活 | 埃莱娜・费兰特 | [下载](https://url89.ctfile.com/f/31084289-1375504189-ca8d83?p=8866) |\n| 白居易诗选（古典文学大字本） | 孙明君 | [下载](https://url89.ctfile.com/f/31084289-1375504276-543fa0?p=8866) |\n| 恩古吉·瓦·提安哥文集（全7册） | 恩古吉・瓦・提安哥 | [下载](https://url89.ctfile.com/f/31084289-1375504327-8ea788?p=8866) |\n| 外文大家小藏本（全17册） | 弗吉尼亚・吴尔夫等 | [下载](https://url89.ctfile.com/f/31084289-1375504330-6dce17?p=8866) |\n| 时空摆渡人 | 克莱儿・麦克福尔 | [下载](https://url89.ctfile.com/f/31084289-1375504369-0e8e24?p=8866) |\n| 杜甫诗选（古典文学大字本） | 杜甫/谢思炜 | [下载](https://url89.ctfile.com/f/31084289-1375504429-062f6a?p=8866) |\n| 世界名著大师课合集（套装全7册） | 柳鸣九等 | [下载](https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866) |\n| 姜夔词选（古典文学大字本） | 韩经太/王维若 | [下载](https://url89.ctfile.com/f/31084289-1375504993-b34598?p=8866) |\n| 帕慕克别样的色彩系列 | 奥尔罕・帕慕克 | [下载](https://url89.ctfile.com/f/31084289-1375505356-3bb734?p=8866) |\n| 中国文学鉴赏辞典大系（套装共17部22册） | 上海辞书出版社文学鉴赏辞典编纂中心 | [下载](https://url89.ctfile.com/f/31084289-1375506529-6d5879?p=8866) |\n| 英雄、情人、势利鬼、恶人 | 塞巴斯蒂安・福克斯 | [下载](https://url89.ctfile.com/f/31084289-1375505842-7f6488?p=8866) |\n| 文字与图像间的重庆（套装3册） | 杨宇振 | [下载](https://url89.ctfile.com/f/31084289-1375506388-3c8521?p=8866) |\n| 银河铁道之夜（作家榜经典文库） | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1375506277-c17653?p=8866) |\n| 人生答案之书 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375506391-6ca6c8?p=8866) |\n| 金瓶梅的艺术 | 孙述宇 | [下载](https://url89.ctfile.com/f/31084289-1375506652-ddc7ba?p=8866) |\n| 坏蛋与大象（作家榜经典文库） | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1375506616-7f1f34?p=8866) |\n| 木心路遥年谱套装（全2册） | 夏春锦/王刚 | [下载](https://url89.ctfile.com/f/31084289-1375506673-e8d422?p=8866) |\n| 在最后一页等我 | 索菲亚・蕾依 | [下载](https://url89.ctfile.com/f/31084289-1375506712-efdf8e?p=8866) |\n| 李商隐诗选（古典文学大字本） | 董乃斌 | [下载](https://url89.ctfile.com/f/31084289-1375506757-ccee5d?p=8866) |\n| 书店日记套装（全2册） | 肖恩・白塞尔 | [下载](https://url89.ctfile.com/f/31084289-1375506799-7d0cc6?p=8866) |\n| 午夜降临前抵达 | 刘子超 | [下载](https://url89.ctfile.com/f/31084289-1375506844-8f9979?p=8866) |\n| 亚当夏娃浮沉录 | 斯蒂芬・格林布拉特 | [下载](https://url89.ctfile.com/f/31084289-1375506922-9eeba1?p=8866) |\n| 契诃夫中短篇小说全集（全8册） | 安东・契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1375507030-e46ffb?p=8866) |\n| 李煜诗词全集（作家榜经典文库） | 李煜 | [下载](https://url89.ctfile.com/f/31084289-1375507048-37f6d0?p=8866) |\n| 重走：在公路、河流和驿道上寻找西南联大 | 杨潇 | [下载](https://url89.ctfile.com/f/31084289-1375507096-34bbb4?p=8866) |\n| 原典书坊合辑（全八册） | 鲁迅等 | [下载](https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866) |\n| 青梅竹马·樋口一叶选集（作家榜经典文库） | 樋口一叶 | [下载](https://url89.ctfile.com/f/31084289-1375507315-77109b?p=8866) |\n| 猫咪事务所（作家榜经典文库） | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1375507474-204cb6?p=8866) |\n| 深夜食堂（第3部：卷13~卷18） | 安倍夜郎 | [下载](https://url89.ctfile.com/f/31084289-1375509205-71e3f3?p=8866) |\n| 民国诗人徐志摩作品典藏全集 | 徐志摩 | [下载](https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866) |\n| 英诗经典名家名译全集（套装共21本） | 莎士比亚等 | [下载](https://url89.ctfile.com/f/31084289-1375508305-0fc203?p=8866) |\n| 约翰·克利斯朵夫（全四册） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1375508653-1087bf?p=8866) |\n| 民国通俗文学大家张恨水小说全集（套装共37册） | 张恨水 | [下载](https://url89.ctfile.com/f/31084289-1375508677-137d11?p=8866) |\n| 神鬼奇兽夜读装（全5册） | 刘星等 | [下载](https://url89.ctfile.com/f/31084289-1375508746-96e162?p=8866) |\n| 文学纪念译丛（套装共五册） | 利季娅・丘可夫斯卡娅 | [下载](https://url89.ctfile.com/f/31084289-1375508689-868443?p=8866) |\n| 康德文集（注释版） | 伊曼努尔・康德 | [下载](https://url89.ctfile.com/f/31084289-1375508737-9992e1?p=8866) |\n| 三岛由纪夫大合集（全10册） | 三岛由纪夫 | [下载](https://url89.ctfile.com/f/31084289-1375508854-9a7e1f?p=8866) |\n| 英国文学史全系（套装共5本） | 李赋宁等 | [下载](https://url89.ctfile.com/f/31084289-1375508770-b38c29?p=8866) |\n| 思想家和思想导读丛书精选（套装共5册） | 雷克斯・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1375508782-fc4147?p=8866) |\n| 语文阅读推荐丛书·初中部分·全49种 | 儒勒・凡尔纳等 | [下载](https://url89.ctfile.com/f/31084289-1375508971-dab70d?p=8866) |\n| 毛姆传：全本 | 赛琳娜・黑斯廷斯 | [下载](https://url89.ctfile.com/f/31084289-1375508869-f773e6?p=8866) |\n| 刘心武妙品红楼梦 | 刘心武 | [下载](https://url89.ctfile.com/f/31084289-1375508878-a5cdd8?p=8866) |\n| 语文阅读推荐丛书·高中部分·全56种 | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1375509052-6ba338?p=8866) |\n| 叶芝：真人与假面 | 理查德・艾尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375508917-dea401?p=8866) |\n| 柴纳·米耶维“新怪谭”奇幻文学系列（套装5册） | 柴纳・米耶维 | [下载](https://url89.ctfile.com/f/31084289-1375508938-52b065?p=8866) |\n| 中国古典文学读本丛书典藏（第二辑全15册） | 王起主等 | [下载](https://url89.ctfile.com/f/31084289-1375508965-0eb459?p=8866) |\n| 狄更斯原版作品大合集（套装共70册） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1375508989-b952cf?p=8866) |\n| 抚顺故事集 | 赵松 | [下载](https://url89.ctfile.com/f/31084289-1375508974-9040b9?p=8866) |\n| 文白对照四书五经全本（精注全译） | 李伯钦 | [下载](https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866) |\n| 文学纪念碑豆瓣高分套装（共十册） | 尼古拉・别尔嘉耶夫等 | [下载](https://url89.ctfile.com/f/31084289-1375509055-03be36?p=8866) |\n| 三岛由纪夫典藏作品九部 | 三岛由纪夫 | [下载](https://url89.ctfile.com/f/31084289-1375509082-f028fe?p=8866) |\n| 莱蒙托夫诗选（外国文学名著丛书） | 莱蒙托夫 | [下载](https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866) |\n| 西线无战事（果麦经典） | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1375509091-e5d1af?p=8866) |\n| 三岛由纪夫禁色作品集（套装共15册） | 三岛由纪夫 | [下载](https://url89.ctfile.com/f/31084289-1375509106-9bcd46?p=8866) |\n| 近代文学批评史（全八卷） | 雷纳・韦勒克 | [下载](https://url89.ctfile.com/f/31084289-1375509199-0aab12?p=8866) |\n| 茨威格中短篇小说选（外国文学名著丛书） | 斯・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1375509109-d38600?p=8866) |\n| 说文解字套装全五册（全本全注全译） | 许慎 | [下载](https://url89.ctfile.com/f/31084289-1375509451-f7225a?p=8866) |\n| 语文阅读推荐丛书·小学部分·全27册 | 格林兄弟等 | [下载](https://url89.ctfile.com/f/31084289-1375509292-20cf9c?p=8866) |\n| 草婴译列夫·托尔斯泰·全3种6册 | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1375509229-b42707?p=8866) |\n| 布宁美文精选（全3册） | 伊凡・阿列克谢耶维奇・布宁 | [下载](https://url89.ctfile.com/f/31084289-1375509214-c671f0?p=8866) |\n| 有本事 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1375509241-f5b13a?p=8866) |\n| 冯至译文全集（共四册） | 歌德等 | [下载](https://url89.ctfile.com/f/31084289-1375509274-6808a3?p=8866) |\n| 去年的树（果麦经典） | 新美南吉 | [下载](https://url89.ctfile.com/f/31084289-1375509280-4384dd?p=8866) |\n| 建党百年百篇文学短经典（全5册） | 贺绍俊等 | [下载](https://url89.ctfile.com/f/31084289-1375509304-7fb398?p=8866) |\n| 国学大书院（套装40册） | 孙武等 | [下载](https://url89.ctfile.com/f/31084289-1375509625-852982?p=8866) |\n| 唐才子传（作家榜经典文库 ） | 辛文房 | [下载](https://url89.ctfile.com/f/31084289-1375509463-4e9ff9?p=8866) |\n| 外研社博雅文库大全集（套装共24本） | 费孝通等 | [下载](https://url89.ctfile.com/f/31084289-1375509547-14b151?p=8866) |\n| 我知道光在哪里 | 安东尼・雷・辛顿/劳拉・洛夫・哈丁 | [下载](https://url89.ctfile.com/f/31084289-1375509493-31e3e9?p=8866) |\n| 逝物录 | 尤迪特・沙朗斯基 | [下载](https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866) |\n| 晴日木屐 | 永井荷风 | [下载](https://url89.ctfile.com/f/31084289-1375509502-0e8b9e?p=8866) |\n| 妈妈的复出 | 姜立涵 | [下载](https://url89.ctfile.com/f/31084289-1375509511-655a97?p=8866) |\n| 无知 | 迈克・詹姆斯・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1375509577-8fec76?p=8866) |\n| 茅奖作家短经典（全14册） | 陈忠实等 | [下载](https://url89.ctfile.com/f/31084289-1375509631-093196?p=8866) |\n| 狄更斯文集·逝世150周年纪念版 | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1375509703-27e896?p=8866) |\n| 大城北京 | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1375509667-8e85ae?p=8866) |\n| 新中国70年长篇小说典藏（全38种50册） | 陈忠实等 | [下载](https://url89.ctfile.com/f/31084289-1375509979-a70d0a?p=8866) |\n| 刻小说的人 | 比目鱼 | [下载](https://url89.ctfile.com/f/31084289-1375509745-085174?p=8866) |\n| 我喜欢生命根底里的宁静 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375509757-51e88a?p=8866) |\n| 人文与社会译丛·精选集（套装20册） | 汉娜・阿伦特等 | [下载](https://url89.ctfile.com/f/31084289-1375509832-1b9259?p=8866) |\n| 传习录（全本全注全译） | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1375509775-46c4c9?p=8866) |\n| 对着天空散漫射击 | 李柳杨 | [下载](https://url89.ctfile.com/f/31084289-1375509805-142d19?p=8866) |\n| 布鲁斯特的百万横财 | 乔治・巴尔・麦克奇翁 | [下载](https://url89.ctfile.com/f/31084289-1375509847-3f5a73?p=8866) |\n| 郭论：第二季（共3册） | 郭德纲 | [下载](https://url89.ctfile.com/f/31084289-1375509856-7ba30b?p=8866) |\n| 中国古典散文精选注译（套装共8册） | 傅璇琮 | [下载](https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866) |\n| 人生因孤独而丰盛 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375509907-f0c5ef?p=8866) |\n| 威尔·杜兰特经典系列（套装共4册） | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1375509931-1e8eab?p=8866) |\n| 桶川跟踪狂杀人事件 | 清水洁 | [下载](https://url89.ctfile.com/f/31084289-1375509955-7d12b3?p=8866) |\n| 琉璃棺 | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1375509976-f774f3?p=8866) |\n| 云没有回答 | 是枝裕和 | [下载](https://url89.ctfile.com/f/31084289-1375510006-ca0590?p=8866) |\n| 木心上海往事 | 铁戈 | [下载](https://url89.ctfile.com/f/31084289-1375510105-8d778a?p=8866) |\n| 白夜（果麦经典） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375510144-7fa451?p=8866) |\n| 柳如是别传全三册 | 陈寅恪 | [下载](https://url89.ctfile.com/f/31084289-1375510150-87600a?p=8866) |\n| 被嫌弃的松子的一生（2021版） | 山田宗树 | [下载](https://url89.ctfile.com/f/31084289-1375510186-029168?p=8866) |\n| 漱石日记 | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1375510213-f80a7f?p=8866) |\n| 来自世界的消息 | 波莱特・吉尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375510216-bd22d0?p=8866) |\n| 好结局 | 伍子豪 | [下载](https://url89.ctfile.com/f/31084289-1375510261-53d911?p=8866) |\n| 生死之间 | 汤姆・克兰西 | [下载](https://url89.ctfile.com/f/31084289-1375510270-5965ed?p=8866) |\n| 猫客 | 平出隆 | [下载](https://url89.ctfile.com/f/31084289-1375510357-6f1a60?p=8866) |\n| 武汉女孩阿念日记 | 吴尚哲 | [下载](https://url89.ctfile.com/f/31084289-1375510366-230d26?p=8866) |\n| 藤泽周平作品集（共5册） | 藤泽周平 | [下载](https://url89.ctfile.com/f/31084289-1375510396-639bff?p=8866) |\n| 我的个天 | 戴建业 | [下载](https://url89.ctfile.com/f/31084289-1375510420-ff10a0?p=8866) |\n| 推理要在本格前 | 谷崎润一郎等 | [下载](https://url89.ctfile.com/f/31084289-1375510438-80e787?p=8866) |\n| 华章同人重现经典（套装24册） | 安・兰德等 | [下载](https://url89.ctfile.com/f/31084289-1375510513-78819a?p=8866) |\n| 女性的时刻 | 梅琳达・盖茨 | [下载](https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866) |\n| 午后四点 | 阿梅丽・诺冬 | [下载](https://url89.ctfile.com/f/31084289-1375510534-18488f?p=8866) |\n| 我的编年史 | 苔菲 | [下载](https://url89.ctfile.com/f/31084289-1375510567-c874f7?p=8866) |\n| 给青年诗人的十封信 | 莱内・马利亚・里尔克 | [下载](https://url89.ctfile.com/f/31084289-1375510591-1f0423?p=8866) |\n| 张荫麟作品集（套装共四册） | 张荫麟 | [下载](https://url89.ctfile.com/f/31084289-1375510609-e084e7?p=8866) |\n| 陀思妥耶夫斯基作品集（套装共9册） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375510720-d03973?p=8866) |\n| 围炉夜话（作家榜经典文库） | 王永彬 | [下载](https://url89.ctfile.com/f/31084289-1375510696-9e23ec?p=8866) |\n| 明文选 | 赵伯陶 | [下载](https://url89.ctfile.com/f/31084289-1375510711-3cd429?p=8866) |\n| 凶年 | 大卫・西蒙 | [下载](https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866) |\n| 毛姆文学课：如何阅读与写作（作家榜经典文库） | 毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375510771-e7d7c8?p=8866) |\n| 清文选 | 刘世南/刘松来 | [下载](https://url89.ctfile.com/f/31084289-1375510765-68d5d1?p=8866) |\n| 敲响密室之门2 | 青崎有吾 | [下载](https://url89.ctfile.com/f/31084289-1375510768-eb84c6?p=8866) |\n| 黑豹红狼 | 马龙・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1375510780-2bb087?p=8866) |\n| 借命而生 | 石一枫 | [下载](https://url89.ctfile.com/f/31084289-1375510786-72ad5c?p=8866) |\n| 我的朋友阿波罗 | 西格丽德・努涅斯 | [下载](https://url89.ctfile.com/f/31084289-1375510783-f66375?p=8866) |\n| 四世同堂（读客经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1375510825-94b6a4?p=8866) |\n| 克拉拉与太阳 | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1375510816-45d617?p=8866) |\n| 骗子来到南方 | 阿乙 | [下载](https://url89.ctfile.com/f/31084289-1375510810-153214?p=8866) |\n| 桑切斯的孩子们 | 奥斯卡・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1375510819-58d021?p=8866) |\n| 天地人丛书（全8册） | 周敦颐等 | [下载](https://url89.ctfile.com/f/31084289-1375510834-84e3cb?p=8866) |\n| 小窗幽记（作家榜经典文库） | 陈继儒 | [下载](https://url89.ctfile.com/f/31084289-1375510867-7b596f?p=8866) |\n| 中国古典文学读本丛书典藏全集（共23册） | 薛天纬等 | [下载](https://url89.ctfile.com/f/31084289-1375510990-2cbfc9?p=8866) |\n| 流沙河讲诗经（锁线图文版） | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1375510882-3771c1?p=8866) |\n| 汉语四千年 | 黎锦熙 | [下载](https://url89.ctfile.com/f/31084289-1375510942-d4292c?p=8866) |\n| 东京梦华录（全本全注全译） | 杨春俏 | [下载](https://url89.ctfile.com/f/31084289-1375510912-9a7f13?p=8866) |\n| 处世三大奇书（套装共3册） | 洪应明等 | [下载](https://url89.ctfile.com/f/31084289-1375510918-b3a5ca?p=8866) |\n| 汉魏六朝文选 | 刘文忠 | [下载](https://url89.ctfile.com/f/31084289-1375510924-186bf2?p=8866) |\n| 好兵帅克（精美收藏版） | 雅・哈谢克 | [下载](https://url89.ctfile.com/f/31084289-1375510987-790bec?p=8866) |\n| 四世同堂：足本（全三册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1375510981-38511d?p=8866) |\n| 宋文选 | 丁放等 | [下载](https://url89.ctfile.com/f/31084289-1375510966-7feb6b?p=8866) |\n| 灯塔船 | 西格弗里德・伦茨 | [下载](https://url89.ctfile.com/f/31084289-1375510969-3e51f2?p=8866) |\n| 死亡赋格：保罗·策兰诗精选 | 保罗・策兰 | [下载](https://url89.ctfile.com/f/31084289-1375510972-2fc82c?p=8866) |\n| 溪山琴况 琴声十六法（全本全注全译） | 陈忱译注 | [下载](https://url89.ctfile.com/f/31084289-1375511044-5300d3?p=8866) |\n| 无人知晓的真由子 | 今村夏子 | [下载](https://url89.ctfile.com/f/31084289-1375511020-cf968e?p=8866) |\n| 孤独东京 | 三浦紫苑 | [下载](https://url89.ctfile.com/f/31084289-1375511023-1cdc53?p=8866) |\n| 度光阴的人 | 苏辛 | [下载](https://url89.ctfile.com/f/31084289-1375511038-a9bf9b?p=8866) |\n| 黑磨坊 | 孙浩元 | [下载](https://url89.ctfile.com/f/31084289-1375511041-59df79?p=8866) |\n| 红楼梦魇 | 张爱玲 | [下载](https://url89.ctfile.com/f/31084289-1375511050-520d2a?p=8866) |\n| 企鹅经典小白书（全14册） | 戴维・布朗等 | [下载](https://url89.ctfile.com/f/31084289-1375511128-49e429?p=8866) |\n| 古物记 | 果麦 | [下载](https://url89.ctfile.com/f/31084289-1375511083-8bffd6?p=8866) |\n| 帝范 臣轨 庭训格言（全本全注全译） | 王双怀等 | [下载](https://url89.ctfile.com/f/31084289-1375511086-2c38d2?p=8866) |\n| 亲爱的图书馆 | 苏珊・奥尔琳 | [下载](https://url89.ctfile.com/f/31084289-1375511101-21bf23?p=8866) |\n| 杀死一只知更鸟（图像小说） | 哈珀・李/弗雷德哈珀・李福德姆 | [下载](https://url89.ctfile.com/f/31084289-1375511326-6ffb36?p=8866) |\n| 东京百景 | 又吉直树 | [下载](https://url89.ctfile.com/f/31084289-1375511176-08526d?p=8866) |\n| 汉家天下（1-4册） | 清秋子 | [下载](https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866) |\n| 请照顾好我妈妈 | 申京淑 | [下载](https://url89.ctfile.com/f/31084289-1375511275-55c4a4?p=8866) |\n| 成为波伏瓦 | 凯特・柯克帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1375511278-68fad7?p=8866) |\n| 大真探赵赶鹅 | 赵赶鹅 | [下载](https://url89.ctfile.com/f/31084289-1375511287-36a95e?p=8866) |\n| 绅士肖像：毛姆短篇小说全集4 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375511293-da7703?p=8866) |\n| 重返暗夜 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1375511299-1f11b9?p=8866) |\n| 当你学会独处 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1375511314-f0d8b4?p=8866) |\n| 记忆记忆 | 玛丽亚・斯捷潘诺娃 | [下载](https://url89.ctfile.com/f/31084289-1375511308-7680dd?p=8866) |\n| 历史的用途与滥用 | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1375511311-2780e8?p=8866) |\n| 变形记（作家榜经典文库） | 弗兰茨・卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1375511323-ecb5b9?p=8866) |\n| 维多利亚·希普洛斯套装（共6本） | 维多利亚・希斯洛普 | [下载](https://url89.ctfile.com/f/31084289-1375511380-def7da?p=8866) |\n| 西西弗神话（读客经典文库） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1375511362-ce4957?p=8866) |\n| 匡超人 | 骆以军 | [下载](https://url89.ctfile.com/f/31084289-1375511404-a45907?p=8866) |\n| 年轻人的国文课 | 张一南 | [下载](https://url89.ctfile.com/f/31084289-1375511407-8e7f3d?p=8866) |\n| 猎人笔记（作家榜经典文库） | 伊万・谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1375511440-340449?p=8866) |\n| 永隔一江水 | 邓安庆 | [下载](https://url89.ctfile.com/f/31084289-1375511416-be1bd8?p=8866) |\n| 镜之孤城 | 辻村深月 | [下载](https://url89.ctfile.com/f/31084289-1375511485-ef75a1?p=8866) |\n| 漫步神保町 | 鹿岛茂 | [下载](https://url89.ctfile.com/f/31084289-1375511500-50bc66?p=8866) |\n| 人生处处是修行 | 鬼脚七 | [下载](https://url89.ctfile.com/f/31084289-1375511509-cd8ae1?p=8866) |\n| 山海经（果麦经典） | 刘向/刘歆 | [下载](https://url89.ctfile.com/f/31084289-1375511605-ee4d4c?p=8866) |\n| 英国特工阿申登：毛姆短篇小说全集3 | 威廉・毛姆萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375511611-1db5b8?p=8866) |\n| 神秘大道 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1375511629-3fbd6f?p=8866) |\n| 好嘴杨巴 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1375511635-6f1834?p=8866) |\n| 和日本文豪一起漫游老东京 | 永井荷风 | [下载](https://url89.ctfile.com/f/31084289-1375511725-b74903?p=8866) |\n| 漫长的告别（作家榜经典文库） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1375511782-eaea45?p=8866) |\n| 浮生六记（2020全新编校精美插图典藏本） | 沈复 | [下载](https://url89.ctfile.com/f/31084289-1375511932-7b6bb3?p=8866) |\n| 季羡林全集（套装全套三十卷） | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1375511971-8fd3a8?p=8866) |\n| 从山贼到水寇 | 侯会 | [下载](https://url89.ctfile.com/f/31084289-1375511998-036e05?p=8866) |\n| 饥饿：一部身体的回忆录 | 罗克珊・盖伊 | [下载](https://url89.ctfile.com/f/31084289-1375512007-c856a9?p=8866) |\n| 外国文学名著丛书（第二辑） | 托尔斯泰等 | [下载](https://url89.ctfile.com/f/31084289-1375512160-ee215b?p=8866) |\n| 荒原（果麦经典） | 托・斯・艾略特 | [下载](https://url89.ctfile.com/f/31084289-1375512013-24591d?p=8866) |\n| 电影意志 | 王小鲁 | [下载](https://url89.ctfile.com/f/31084289-1375512109-561eca?p=8866) |\n| 诗人与诗歌 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1375512106-566b82?p=8866) |\n| 一个青年艺术家的画像（果麦经典） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1375512145-efc308?p=8866) |\n| 应向花园安放灵魂 | 达蒙・扬 | [下载](https://url89.ctfile.com/f/31084289-1375512184-8c90b3?p=8866) |\n| 李自成（全10册） | 姚雪垠 | [下载](https://url89.ctfile.com/f/31084289-1375512232-b61f9e?p=8866) |\n| 偷心书店 | 卡塔琳娜・碧瓦德 | [下载](https://url89.ctfile.com/f/31084289-1375512223-e07962?p=8866) |\n| 停靠，一座城 | 李婧 | [下载](https://url89.ctfile.com/f/31084289-1375512250-e4c3ba?p=8866) |\n| 别去读诗 | 斯蒂芬妮・伯特 | [下载](https://url89.ctfile.com/f/31084289-1375512253-297890?p=8866) |\n| 外国文学名著丛书（第一辑） | 斯威夫特等 | [下载](https://url89.ctfile.com/f/31084289-1375512493-553b6b?p=8866) |\n| 游荡集 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866) |\n| 音乐收藏者 | 娜塔莎・所罗门斯 | [下载](https://url89.ctfile.com/f/31084289-1375512265-2cf8be?p=8866) |\n| 诗境浅说 | 俞陛云 | [下载](https://url89.ctfile.com/f/31084289-1375512271-003d58?p=8866) |\n| 咏叹生死 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1375512277-397e33?p=8866) |\n| 狐媚记 | 涩泽龙彦 | [下载](https://url89.ctfile.com/f/31084289-1375512298-9c9af8?p=8866) |\n| 海洋之星 | 约瑟夫・奥康纳 | [下载](https://url89.ctfile.com/f/31084289-1375512376-10a1f9?p=8866) |\n| 女佣的故事 | 斯蒂芬妮・兰德 | [下载](https://url89.ctfile.com/f/31084289-1375512379-69c390?p=8866) |\n| 护士的故事 | 克里斯蒂・沃森 | [下载](https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866) |\n| 红与黑（作家榜经典文库） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1375512541-3dc7db?p=8866) |\n| 孤独小说家（作家榜经典文库） | 郁达夫 | [下载](https://url89.ctfile.com/f/31084289-1375512583-7a6408?p=8866) |\n| 一瓣河川 | 雨楼清歌 | [下载](https://url89.ctfile.com/f/31084289-1375512562-a90f94?p=8866) |\n| 文学的形式与历史 | 小森阳一 | [下载](https://url89.ctfile.com/f/31084289-1375512571-eb5773?p=8866) |\n| 我的天 | 子日山 | [下载](https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866) |\n| 我的丁一之旅 | 史铁生  | [下载](https://url89.ctfile.com/f/31084289-1375512586-6d307a?p=8866) |\n| 星期天早上的远足 | 苗炜 | [下载](https://url89.ctfile.com/f/31084289-1375512592-37f965?p=8866) |\n| 暗夜与黎明（全2册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1375512589-2157f3?p=8866) |\n| 放熊归山 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1375512667-507cc5?p=8866) |\n| 卡波蒂作品集（套装共5册） | 杜鲁门・卡波蒂 | [下载](https://url89.ctfile.com/f/31084289-1375512718-934d53?p=8866) |\n| 菜根谭（作家榜经典文库） | 洪应明 | [下载](https://url89.ctfile.com/f/31084289-1375512730-2183ca?p=8866) |\n| 丰子恺绘画鲁迅小说 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1375512835-de753e?p=8866) |\n| 晚熟的人 | 莫言 | [下载](https://url89.ctfile.com/f/31084289-1375513048-bdef9c?p=8866) |\n| 和你一起读卡佛 | 唐颖 | [下载](https://url89.ctfile.com/f/31084289-1375513054-4656f7?p=8866) |\n| 巴黎评论·女性作家访谈 | 《巴黎评论》编辑部 | [下载](https://url89.ctfile.com/f/31084289-1375513063-257efa?p=8866) |\n| 有关品味 | 彼得・梅尔 | [下载](https://url89.ctfile.com/f/31084289-1375513072-dd4998?p=8866) |\n| 海风电影院 | 吴忠全 | [下载](https://url89.ctfile.com/f/31084289-1375513090-0c3561?p=8866) |\n| 真情 | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1375513105-4d53e4?p=8866) |\n| 煮海时光 | 白睿文 | [下载](https://url89.ctfile.com/f/31084289-1375513129-02d351?p=8866) |\n| 雨夜短文 | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1375513132-48b671?p=8866) |\n| 重来也不会好过现在 | 基兰・塞蒂亚 | [下载](https://url89.ctfile.com/f/31084289-1375513138-ab2d02?p=8866) |\n| 地球上最后的夜晚 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1375513141-f4a8bc?p=8866) |\n| 小约翰 | 弗雷德里克・凡・伊登 | [下载](https://url89.ctfile.com/f/31084289-1375513147-416841?p=8866) |\n| 雨果文集（全12册） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1375513198-97bfd1?p=8866) |\n| 西班牙语文学译丛（套装十册） | 皮格利亚等 | [下载](https://url89.ctfile.com/f/31084289-1375513252-b17d34?p=8866) |\n| 挚友 | 川端康成 | [下载](https://url89.ctfile.com/f/31084289-1375513282-fc82c3?p=8866) |\n| 英雄山：穿插 | 徐贵祥 | [下载](https://url89.ctfile.com/f/31084289-1375513300-ed86c6?p=8866) |\n| 英雄山：伏击 | 徐贵祥 | [下载](https://url89.ctfile.com/f/31084289-1375513306-316b55?p=8866) |\n| 时间之间 | 珍妮特・温特森 | [下载](https://url89.ctfile.com/f/31084289-1375513309-1f761f?p=8866) |\n| 菲利普·罗斯美国三部曲 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1375513318-997eb1?p=8866) |\n| 异乡记 | 苏方 | [下载](https://url89.ctfile.com/f/31084289-1375513339-7c356b?p=8866) |\n| 我们深陷泥潭 | 加・泽文 | [下载](https://url89.ctfile.com/f/31084289-1375513357-b71e8f?p=8866) |\n| 无岸之岛 | 维舟 | [下载](https://url89.ctfile.com/f/31084289-1375513354-8d56d8?p=8866) |\n| 我的奋斗5：雨必将落下 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1375513363-ea608c?p=8866) |\n| 平凹四书 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1375513396-3afcd4?p=8866) |\n| 陈丹燕上海七部曲 | 陈丹燕 | [下载](https://url89.ctfile.com/f/31084289-1375513546-381b04?p=8866) |\n| 金枝（全两册） | 詹姆斯・乔治・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1375513420-73750d?p=8866) |\n| 阿勒颇养蜂人 | 克里丝蒂・莱夫特里 | [下载](https://url89.ctfile.com/f/31084289-1375513432-097de6?p=8866) |\n| 电子脑叶 | 野崎惑 | [下载](https://url89.ctfile.com/f/31084289-1375513429-a35151?p=8866) |\n| 如空气般存在的我 | 中田永一 | [下载](https://url89.ctfile.com/f/31084289-1375513438-f251a2?p=8866) |\n| 姥爷，我们天上见 | 蒋雯丽 | [下载](https://url89.ctfile.com/f/31084289-1375513441-514038?p=8866) |\n| 钱锺书选唐诗 | 钱锺书 | [下载](https://url89.ctfile.com/f/31084289-1375513468-25af5c?p=8866) |\n| 十侠 | 邱华栋 | [下载](https://url89.ctfile.com/f/31084289-1375513444-b5cc64?p=8866) |\n| 郭论：第一季（共3册） | 郭德纲 | [下载](https://url89.ctfile.com/f/31084289-1375513480-d53d23?p=8866) |\n| 正午之魔 | 安德鲁・所罗门 | [下载](https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866) |\n| 常看电影的人们 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1375513504-810102?p=8866) |\n| 我的奋斗4：在黑暗中舞蹈 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1375513585-9dcc19?p=8866) |\n| 突然死亡 | 阿尔瓦罗・恩里克 | [下载](https://url89.ctfile.com/f/31084289-1375513627-aa9aba?p=8866) |\n| 我的原野盛宴 | 张炜 | [下载](https://url89.ctfile.com/f/31084289-1375513663-a26536?p=8866) |\n| 缘缘堂随笔：足本 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1375513684-7de20d?p=8866) |\n| 柏杨曰（套装共3册） | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1375513699-311696?p=8866) |\n| 美顺与长生 | 毛建军 | [下载](https://url89.ctfile.com/f/31084289-1375513723-731852?p=8866) |\n| 女生徒（果麦经典） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1375513747-3ea885?p=8866) |\n| 斑斓志 | 张炜 | [下载](https://url89.ctfile.com/f/31084289-1375513771-700ab7?p=8866) |\n| 牛虻（果麦经典） | 埃塞尔・丽莲・伏尼契 | [下载](https://url89.ctfile.com/f/31084289-1375513789-ea804a?p=8866) |\n| 直到找到你 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357004641-24f42b?p=8866) |\n| 漫步的艺术（果麦经典） | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1357004617-10c91b?p=8866) |\n| 通向往昔之旅 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357004584-516cd0?p=8866) |\n| 诸子的声音 | 史一棋 | [下载](https://url89.ctfile.com/f/31084289-1357004572-5c43ef?p=8866) |\n| 张先生说 | 张五毛 | [下载](https://url89.ctfile.com/f/31084289-1357004569-4fbbb6?p=8866) |\n| 牛天赐传（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357004530-ae8ca6?p=8866) |\n| 茶人三部曲 | 王旭烽 | [下载](https://url89.ctfile.com/f/31084289-1357004542-8e6eba?p=8866) |\n| 艺术家们 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357004527-7eb6bd?p=8866) |\n| 失踪假日 | 乙一 | [下载](https://url89.ctfile.com/f/31084289-1357004509-22c040?p=8866) |\n| 本雅明作品集（套装共六册） | 瓦尔特・本雅明 | [下载](https://url89.ctfile.com/f/31084289-1357004428-bf2da4?p=8866) |\n| 安德鲁不想孤独终老 | 理查德・罗珀 | [下载](https://url89.ctfile.com/f/31084289-1357004413-c89f5c?p=8866) |\n| 灿若黎明 | 艾米・哈蒙 | [下载](https://url89.ctfile.com/f/31084289-1357004398-f7de17?p=8866) |\n| 人性的枷锁（作家榜经典） | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357004386-bd9f54?p=8866) |\n| 张炜中篇八部 | 张炜 | [下载](https://url89.ctfile.com/f/31084289-1357004383-06f415?p=8866) |\n| 百年曾祺：1920-2020 | 梁由之 | [下载](https://url89.ctfile.com/f/31084289-1357004320-812970?p=8866) |\n| 先知：纪伯伦散文诗选（果麦经典） | 纪伯伦 | [下载](https://url89.ctfile.com/f/31084289-1357004314-4501b1?p=8866) |\n| 王阳明年谱长编（全四册） | 束景南 | [下载](https://url89.ctfile.com/f/31084289-1357004326-b1739c?p=8866) |\n| 风声（全新修订版） | 麦家 | [下载](https://url89.ctfile.com/f/31084289-1357004296-d38126?p=8866) |\n| 沙漠 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357004275-783fd7?p=8866) |\n| 受害者 | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1357004227-e12147?p=8866) |\n| 神在人间的时光（修订版） | 陈喜辉 | [下载](https://url89.ctfile.com/f/31084289-1357004272-ae9f00?p=8866) |\n| 弃猫 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357004212-808499?p=8866) |\n| 里程碑文库（第二辑） | 詹姆斯・汉密尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357004257-24dc6d?p=8866) |\n| 送行 | 袁哲生 | [下载](https://url89.ctfile.com/f/31084289-1357004179-a1ebc2?p=8866) |\n| 谈话录 | 王安忆/张新颖 | [下载](https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866) |\n| 我的姐姐住在壁炉上 | 安娜贝尔・皮彻 | [下载](https://url89.ctfile.com/f/31084289-1357004167-6ca4ed?p=8866) |\n| 沈从文精选散文系列（全6册） | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866) |\n| 布莱希特作品集（套装共四册） | 贝托尔特・布莱希特 | [下载](https://url89.ctfile.com/f/31084289-1357004098-26f5ec?p=8866) |\n| 少年维特之烦恼（果麦经典） | 歌德 | [下载](https://url89.ctfile.com/f/31084289-1357004071-6309ee?p=8866) |\n| 枕边书 | 帕梅拉・保罗 | [下载](https://url89.ctfile.com/f/31084289-1357004080-533237?p=8866) |\n| 对着水牛唱歌的女孩 | 肯特・奈尔本 | [下载](https://url89.ctfile.com/f/31084289-1357004050-79200f?p=8866) |\n| 生命之殿 | 但丁・罗塞蒂 | [下载](https://url89.ctfile.com/f/31084289-1357004035-0d555d?p=8866) |\n| 中华经典诗文之美（共13册） | 徐中玉 | [下载](https://url89.ctfile.com/f/31084289-1357004032-266b3e?p=8866) |\n| 一间只属于自己的房间（果麦经典） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357004002-2acb0c?p=8866) |\n| 让我去那花花世界 | 苗炜 | [下载](https://url89.ctfile.com/f/31084289-1357003999-efb1ee?p=8866) |\n| 墓志铭图书馆 | 萨缪尔・法努斯 | [下载](https://url89.ctfile.com/f/31084289-1357003990-425456?p=8866) |\n| 山海百灵 | 王新禧 | [下载](https://url89.ctfile.com/f/31084289-1357004023-a305af?p=8866) |\n| 陌生人音乐 | 莱昂纳德・科恩 | [下载](https://url89.ctfile.com/f/31084289-1357003981-ba89b3?p=8866) |\n| 明清叙事文学中的城市与生活（大家读大家） | 胡晓真 | [下载](https://url89.ctfile.com/f/31084289-1357003978-424fb6?p=8866) |\n| 热爱生命 | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357003963-6c71c9?p=8866) |\n| 如果萨莉没离开 | 丽贝卡・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357003960-ba3f4b?p=8866) |\n| 史铁生文集（纪念版·全5册） | 史铁生 | [下载](https://url89.ctfile.com/f/31084289-1357003975-a3b5c9?p=8866) |\n| 沉默的病人 | 亚历克斯・麦克利兹 | [下载](https://url89.ctfile.com/f/31084289-1357003927-015f58?p=8866) |\n| 里程碑文库（第一辑） | 詹姆斯・汉密尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357003933-43e390?p=8866) |\n| 双城记（果麦经典） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357003906-785783?p=8866) |\n| 浪击而不沉 | 原田舞叶 | [下载](https://url89.ctfile.com/f/31084289-1357003864-ca2f3c?p=8866) |\n| 细读的乐趣（大家读大家） | 孙康宜 | [下载](https://url89.ctfile.com/f/31084289-1357003852-6e5fd0?p=8866) |\n| 流溪 | 林棹 | [下载](https://url89.ctfile.com/f/31084289-1357003843-927dda?p=8866) |\n| 心灵的焦灼（读客经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357003828-b5debe?p=8866) |\n| 名字之歌 | 诺曼・莱布雷希特 | [下载](https://url89.ctfile.com/f/31084289-1357003795-864162?p=8866) |\n| 体验日本艺术和文学之美（套装共8册） | 叶渭渠等 | [下载](https://url89.ctfile.com/f/31084289-1357004164-e0848c?p=8866) |\n| 聊斋汊子（全两册） | 董均伦/江源 | [下载](https://url89.ctfile.com/f/31084289-1357003747-87ed89?p=8866) |\n| 能人 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357003732-389f14?p=8866) |\n| 文本与阐释（大家读大家） | 夏志清 | [下载](https://url89.ctfile.com/f/31084289-1357003720-c4af7e?p=8866) |\n| 汪曾祺散文全编（全6卷） | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866) |\n| 人鼠之间（果麦经典） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357003681-64a126?p=8866) |\n| 文学不死（大家读大家） | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1357003597-028466?p=8866) |\n| 烧纸 | 李沧东 | [下载](https://url89.ctfile.com/f/31084289-1357003585-2b3e75?p=8866) |\n| 光明共和国 | 安德烈斯・巴尔瓦 | [下载](https://url89.ctfile.com/f/31084289-1357003576-2ca280?p=8866) |\n| 七发（大家读大家） | 田晓菲 | [下载](https://url89.ctfile.com/f/31084289-1357003573-58cef2?p=8866) |\n| 重返美丽新世界 | 阿道司・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357003570-70aa54?p=8866) |\n| 碎片 | 埃莱娜・费兰特 | [下载](https://url89.ctfile.com/f/31084289-1357003567-532213?p=8866) |\n| 斯坦因·西域游历丛书（15卷本） | 奥雷尔・斯坦因 | [下载](https://url89.ctfile.com/f/31084289-1357003783-1b5133?p=8866) |\n| 秋灯琐忆（果麦经典） | 蒋坦 | [下载](https://url89.ctfile.com/f/31084289-1357003561-7f6be6?p=8866) |\n| 鸟道：周梦蝶世纪诗选 | 周梦蝶 | [下载](https://url89.ctfile.com/f/31084289-1357003564-b99874?p=8866) |\n| 日之东·月之西：北欧故事集 | 彼得・克利斯登・亚柏容森等 | [下载](https://url89.ctfile.com/f/31084289-1357003552-8f56f9?p=8866) |\n| 项塔兰（套装全三册） | 格里高利・大卫・罗伯兹 | [下载](https://url89.ctfile.com/f/31084289-1357003516-7758a1?p=8866) |\n| 她们 | 阎连科 | [下载](https://url89.ctfile.com/f/31084289-1357003504-32b574?p=8866) |\n| 小手 | 安德烈斯・巴尔瓦 | [下载](https://url89.ctfile.com/f/31084289-1357003498-5cabcf?p=8866) |\n| 诗的引诱（大家读大家） | 宇文所安 | [下载](https://url89.ctfile.com/f/31084289-1357003492-0ca141?p=8866) |\n| 奥斯坦德的梦想家 | 埃里克-埃马纽埃尔・施米特 | [下载](https://url89.ctfile.com/f/31084289-1357003474-2b56d5?p=8866) |\n| 时间机器（作家榜经典文库） | 赫伯特・乔治・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357003399-288485?p=8866) |\n| 露水的世 | 文泉子/小林一茶 | [下载](https://url89.ctfile.com/f/31084289-1357003459-74a562?p=8866) |\n| 梦二画集：春夏秋冬（全四册） | 竹久梦二 | [下载](https://url89.ctfile.com/f/31084289-1357003501-1f3a89?p=8866) |\n| 哥拉·泼泥翁 | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1357003300-429a97?p=8866) |\n| 浮城 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357003294-d41047?p=8866) |\n| 好狗朱迪 | 达米恩・路易斯 | [下载](https://url89.ctfile.com/f/31084289-1357003291-6710c2?p=8866) |\n| 塞巴尔德作品集 | 温弗里德・塞巴尔德 | [下载](https://url89.ctfile.com/f/31084289-1357003279-53f936?p=8866) |\n| 悬崖边的树（大家读大家） | 王德威 | [下载](https://url89.ctfile.com/f/31084289-1357003186-dd0d38?p=8866) |\n| 日食之后 | 萨拉・佩里 | [下载](https://url89.ctfile.com/f/31084289-1357003177-593f47?p=8866) |\n| 灰猎犬号 | C.S.佛瑞斯特 | [下载](https://url89.ctfile.com/f/31084289-1357003174-b32007?p=8866) |\n| 纳尼亚传奇（果麦经典） | C. S. 刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357003126-d6c87d?p=8866) |\n| 逍遥游 | 班宇 | [下载](https://url89.ctfile.com/f/31084289-1357003105-860ab0?p=8866) |\n| 鸳鸯六七四 | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1357003099-a7036d?p=8866) |\n| 城市是件花衣裳（大家读大家） | 张小虹 | [下载](https://url89.ctfile.com/f/31084289-1357003096-533f9d?p=8866) |\n| 看护杀人 | 每日新闻大阪社会部采访组 | [下载](https://url89.ctfile.com/f/31084289-1357003012-070566?p=8866) |\n| 天空下的两万条街道（果麦经典） | 帕特里克・汉密尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357002991-2be3d9?p=8866) |\n| 纳尼亚传奇全集（套装共7册） | C.S.路易斯 | [下载](https://url89.ctfile.com/f/31084289-1357002988-6b8b50?p=8866) |\n| 唐诗三百首（作家榜经典文库） | 蘅塘退士 | [下载](https://url89.ctfile.com/f/31084289-1357002970-071756?p=8866) |\n| 停车暂借问 | 钟晓阳 | [下载](https://url89.ctfile.com/f/31084289-1357002892-c12e94?p=8866) |\n| 古代志怪小说鉴赏辞典 | 上海辞书出版社 | [下载](https://url89.ctfile.com/f/31084289-1357002868-8633d6?p=8866) |\n| 此生未完成（增订新版） | 于娟 | [下载](https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866) |\n| 鲁光文集（全七卷） | 鲁光 | [下载](https://url89.ctfile.com/f/31084289-1357002922-4d0e34?p=8866) |\n| 失落的卫星 | 刘子超 | [下载](https://url89.ctfile.com/f/31084289-1357002802-e743e3?p=8866) |\n| 文章家与先知 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357002784-df3f39?p=8866) |\n| 庸人自扰（理查德·耶茨文集） | 理查德・耶茨 | [下载](https://url89.ctfile.com/f/31084289-1357002778-5d4c54?p=8866) |\n| 雾都孤儿（读客经典） | 尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357002727-32bf78?p=8866) |\n| 民国大师周作人作品大全集（套装七十八册） | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357002694-d93afe?p=8866) |\n| 史诗 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357002601-f15366?p=8866) |\n| 天命（理查德·耶茨文集） | 理查德・耶茨 | [下载](https://url89.ctfile.com/f/31084289-1357002598-5f628b?p=8866) |\n| 非虚构的艺术 | 特雷西・基德尔/理查德・托德 | [下载](https://url89.ctfile.com/f/31084289-1357002583-d3c7fb?p=8866) |\n| 人类群星闪耀时（果麦经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357002574-f02fe9?p=8866) |\n| 浮生 | 刘汀 | [下载](https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866) |\n| 奥斯卡与玫瑰奶奶 | 埃里克-埃马纽埃尔·施米特 | [下载](https://url89.ctfile.com/f/31084289-1357002568-5d28cc?p=8866) |\n| 藏地孤旅（纪念版） | 村郎 | [下载](https://url89.ctfile.com/f/31084289-1357002541-35ef19?p=8866) |\n| 短篇小说家与作品 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357002460-fcb78c?p=8866) |\n| 光天化日 | 埃里克・安布勒 | [下载](https://url89.ctfile.com/f/31084289-1357002457-f1a8f5?p=8866) |\n| 心有猛虎，细嗅蔷薇（果麦经典） | 西格夫里・萨松 | [下载](https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866) |\n| 路内·追随三部曲 | 路内 | [下载](https://url89.ctfile.com/f/31084289-1357002436-983fb0?p=8866) |\n| 看不见的爱 | 埃里克-埃马纽埃尔・施米特 | [下载](https://url89.ctfile.com/f/31084289-1357002421-00aa03?p=8866) |\n| 李娃 | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357002409-e39509?p=8866) |\n| 海边小屋 | 梅・萨藤 | [下载](https://url89.ctfile.com/f/31084289-1357002400-bbe7a7?p=8866) |\n| 玛尔戈王后 | 亚历山大・仲马 | [下载](https://url89.ctfile.com/f/31084289-1357002424-836ef4?p=8866) |\n| 歌以言志 | 周毅/舒明 | [下载](https://url89.ctfile.com/f/31084289-1357002397-3d9575?p=8866) |\n| 顿悟的时刻 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357002361-5fc211?p=8866) |\n| 文化失忆 | 克莱夫・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357002394-6a02b6?p=8866) |\n| 剧作家与戏剧 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357002349-c2d4cd?p=8866) |\n| 冷泉港（理查德·耶茨文集） | 理查德・耶茨 | [下载](https://url89.ctfile.com/f/31084289-1357002343-3176c0?p=8866) |\n| 九月寓言 | 张炜 | [下载](https://url89.ctfile.com/f/31084289-1357002331-a9f1f2?p=8866) |\n| 美食，祈祷，恋爱 | 伊丽莎白・吉尔伯特 | [下载](https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866) |\n| 旅程结束时 | 张其鑫 | [下载](https://url89.ctfile.com/f/31084289-1357002322-049cce?p=8866) |\n| 格非先锋文学精选（全套7册） | 格非 | [下载](https://url89.ctfile.com/f/31084289-1357002298-e16dd6?p=8866) |\n| 小说家与小说 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357002274-876831?p=8866) |\n| 鲁滨逊漂流记（果麦经典） | 丹尼尔・笛福 | [下载](https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866) |\n| 南怀瑾经典合集（共24册） | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357002232-b29b6a?p=8866) |\n| 西方正典 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357002175-1336fb?p=8866) |\n| 脚客 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357002142-08a9b3?p=8866) |\n| 五魁 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357002136-93e7f1?p=8866) |\n| 山本 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357002145-c287a7?p=8866) |\n| 吉尔·德·莱斯案 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866) |\n| 你的夏天还好吗？ | 金爱烂 | [下载](https://url89.ctfile.com/f/31084289-1357002130-affe9b?p=8866) |\n| 诗歌手册：诗歌阅读与创作指南 | 玛丽・奥利弗 | [下载](https://url89.ctfile.com/f/31084289-1357002031-f4b308?p=8866) |\n| 鞋带 | 多梅尼科・斯塔尔诺内 | [下载](https://url89.ctfile.com/f/31084289-1357002025-658d6b?p=8866) |\n| 夜晚的潜水艇 | 陈春成 | [下载](https://url89.ctfile.com/f/31084289-1357001971-6b549b?p=8866) |\n| 坎特伯雷故事（果麦经典） | 杰弗里・乔叟 | [下载](https://url89.ctfile.com/f/31084289-1357001968-e8ada4?p=8866) |\n| 吃醋的人生 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357001887-dba4a1?p=8866) |\n| 孤独的池塘 | 弗朗索瓦丝・萨冈 | [下载](https://url89.ctfile.com/f/31084289-1357001884-f17b91?p=8866) |\n| 误读全书 | 萧萧树 | [下载](https://url89.ctfile.com/f/31084289-1357001878-58c86e?p=8866) |\n| 猎人笔记（果麦经典） | 伊凡・谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1357001815-50efa3?p=8866) |\n| 曼哈顿的中国杂技 | 李尤松 | [下载](https://url89.ctfile.com/f/31084289-1357001836-8e306e?p=8866) |\n| 乐透 | 雪莉・杰克逊 | [下载](https://url89.ctfile.com/f/31084289-1357001788-f28c88?p=8866) |\n| 舞台音乐 | 弗朗索瓦丝・萨冈 | [下载](https://url89.ctfile.com/f/31084289-1357001740-f3e084?p=8866) |\n| 茨威格作品集（套装共9册） | 斯特凡・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357001710-78d962?p=8866) |\n| 马科斯与猫科动物 | 莫瓦西尔・斯克利亚 | [下载](https://url89.ctfile.com/f/31084289-1357001650-610d1d?p=8866) |\n| 外研社双语读库·情感故事书系（套装共66本） | 歌德等 | [下载](https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866) |\n| 岁月的针脚 | 小川糸 | [下载](https://url89.ctfile.com/f/31084289-1357001560-cd381e?p=8866) |\n| 大山里的小诗人 | “是光”的孩子们 | [下载](https://url89.ctfile.com/f/31084289-1357001554-8c8cf0?p=8866) |\n| 神曲（作家榜经典文库） | 但丁・阿利吉耶里 | [下载](https://url89.ctfile.com/f/31084289-1357001539-6e9215?p=8866) |\n| 作家们 | 巴里・吉福德 | [下载](https://url89.ctfile.com/f/31084289-1357001497-2f3153?p=8866) |\n| 古事记（果麦经典） | 安万侣 | [下载](https://url89.ctfile.com/f/31084289-1357001485-8d7c2b?p=8866) |\n| 浪客美食家 | 久住昌之 | [下载](https://url89.ctfile.com/f/31084289-1357001461-2bebba?p=8866) |\n| 花间集评注 | 李冰若 | [下载](https://url89.ctfile.com/f/31084289-1357001446-d19d15?p=8866) |\n| 梁实秋经典作品雅致生活系列（套装共5册） | 梁实秋 | [下载](https://url89.ctfile.com/f/31084289-1357001419-010171?p=8866) |\n| 马克思恩格斯文集1~10卷（套装共10册） | 中共中央马克思恩格斯列宁斯大林著作编译局 | [下载](https://url89.ctfile.com/f/31084289-1357001404-2469af?p=8866) |\n| 李健吾译文集（套装共14册） | 福楼拜等 | [下载](https://url89.ctfile.com/f/31084289-1357001437-81e8a8?p=8866) |\n| 单读23：破碎之家 | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1357001347-5914af?p=8866) |\n| 银汤匙（果麦经典） | 中勘助 | [下载](https://url89.ctfile.com/f/31084289-1357001314-314d93?p=8866) |\n| 单读：十周年特辑 | 尼古拉斯・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866) |\n| 南货店 | 张忌 | [下载](https://url89.ctfile.com/f/31084289-1357001296-9000ca?p=8866) |\n| 凌乱的床 | 弗朗索瓦丝・萨冈 | [下载](https://url89.ctfile.com/f/31084289-1357001293-92ab13?p=8866) |\n| 爱情的逻辑 | 蔡垒磊 | [下载](https://url89.ctfile.com/f/31084289-1357001287-7558eb?p=8866) |\n| 传统应该这样读系列（套装共6册） | 叶嘉莹等 | [下载](https://url89.ctfile.com/f/31084289-1357001284-6eca82?p=8866) |\n| 吉檀迦利（果麦经典） | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357001179-3f0045?p=8866) |\n| 成为我自己：欧文·亚隆回忆录 | 欧文・亚隆 | [下载](https://url89.ctfile.com/f/31084289-1357001128-9e4690?p=8866) |\n| 封神演义（作家榜经典文库） | 许仲琳 | [下载](https://url89.ctfile.com/f/31084289-1357001044-27b101?p=8866) |\n| 拉萨河女神 | 马原 | [下载](https://url89.ctfile.com/f/31084289-1357001026-91a00f?p=8866) |\n| 俄罗斯文学（牛津通识读本） | 卡特里奥娜・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357000954-afc95e?p=8866) |\n| 李洱精选集（全八册） | 李洱 | [下载](https://url89.ctfile.com/f/31084289-1357000927-e9ba0b?p=8866) |\n| 单读20：新新新青年 | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1357000882-338614?p=8866) |\n| 木心全集（典藏套装十六册） | 木心 | [下载](https://url89.ctfile.com/f/31084289-1357000903-881927?p=8866) |\n| 爱的24则运算 | 林婉瑜 | [下载](https://url89.ctfile.com/f/31084289-1357000729-a46ceb?p=8866) |\n| 不属于我们的世纪（修订版） | 马修・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1357000720-d0d47d?p=8866) |\n| 战争与和平（读客经典） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357000699-3c0b68?p=8866) |\n| 叙事的本质 | 罗伯特・斯科尔斯等 | [下载](https://url89.ctfile.com/f/31084289-1357000672-1aa743?p=8866) |\n| 黎明前说我爱你 | 彼得・加尔多什 | [下载](https://url89.ctfile.com/f/31084289-1357000621-4328cb?p=8866) |\n| 快乐贩卖机 | 凯蒂・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866) |\n| 金色俄罗斯系列（第二辑） | 普希金等 | [下载](https://url89.ctfile.com/f/31084289-1357000600-533ea6?p=8866) |\n| 春潮（作家榜经典文库） | 屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1357000564-12b502?p=8866) |\n| 灵魂有香气的女子 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357000549-02c63e?p=8866) |\n| 达摩流浪者（作家榜经典文库） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1357000387-669fb4?p=8866) |\n| 活力 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357000384-b839c3?p=8866) |\n| 100个基本 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1357000378-a3882f?p=8866) |\n| 狗心 | 米・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357000375-39b101?p=8866) |\n| 汉字的思考 | 张克敏 | [下载](https://url89.ctfile.com/f/31084289-1357000396-76b5eb?p=8866) |\n| 觉醒 | 凯特・肖邦 | [下载](https://url89.ctfile.com/f/31084289-1357000351-1aaa04?p=8866) |\n| 不安之书 | 费尔南多・佩索阿 | [下载](https://url89.ctfile.com/f/31084289-1357000333-bab6a5?p=8866) |\n| 复活（读客经典） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357000327-3b980c?p=8866) |\n| 回到故乡的陌生人 | 莫欣・哈米德 | [下载](https://url89.ctfile.com/f/31084289-1357000318-567b63?p=8866) |\n| 火焰 | 莱昂纳德・科恩 | [下载](https://url89.ctfile.com/f/31084289-1357000321-1f47fc?p=8866) |\n| 咖喱香肠的诞生 | 乌韦・提姆 | [下载](https://url89.ctfile.com/f/31084289-1357000282-bf0d55?p=8866) |\n| 柄谷行人文集（套装六册） | 柄谷行人 | [下载](https://url89.ctfile.com/f/31084289-1357000243-dc2d0d?p=8866) |\n| 群雄逐鹿：彩绘三国演义 | 金协中绘/成长著 | [下载](https://url89.ctfile.com/f/31084289-1357000246-278283?p=8866) |\n| 自深深处（果麦经典） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357000213-ef7333?p=8866) |\n| 海鸟的哭泣 | 亚当・尼科尔森 | [下载](https://url89.ctfile.com/f/31084289-1357000207-89a275?p=8866) |\n| 百年中国记忆·文艺大家系列丛书（全十册） | 李苦禅等 | [下载](https://url89.ctfile.com/f/31084289-1357000171-232908?p=8866) |\n| 子夜（果麦经典） | 茅盾 | [下载](https://url89.ctfile.com/f/31084289-1357000102-ac0b0d?p=8866) |\n| 走出非洲（读客经典） | 卡伦・布里克森 | [下载](https://url89.ctfile.com/f/31084289-1356999988-a065d4?p=8866) |\n| 证言 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1356999934-d6daab?p=8866) |\n| 爱的四十条法则 | 艾丽芙・沙法克 | [下载](https://url89.ctfile.com/f/31084289-1356999928-5cb3a0?p=8866) |\n| 快意江湖：彩绘水浒传 | 张琳绘/张睿著 | [下载](https://url89.ctfile.com/f/31084289-1356999922-583382?p=8866) |\n| 罪与罚（作家榜经典文库） | 费奥多尔・米哈伊洛维奇・陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1356999847-be2ddd?p=8866) |\n| 我的焦虑是一束火花 | 阿多尼斯 | [下载](https://url89.ctfile.com/f/31084289-1356999841-6b89b0?p=8866) |\n| 桂花 | 阿多尼斯 | [下载](https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866) |\n| 降魔修心：彩绘西游记 | 林遥 | [下载](https://url89.ctfile.com/f/31084289-1357000642-780a39?p=8866) |\n| 培根随笔全集（作家榜经典文库） | 弗朗西斯・培根 | [下载](https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866) |\n| 余事勿取 | 魏思孝 | [下载](https://url89.ctfile.com/f/31084289-1356999541-42eaff?p=8866) |\n| 契诃夫短篇小说精选（果麦经典） | 安东・巴甫洛维奇・契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1356999523-d0d9cc?p=8866) |\n| 都柏林人（作家榜经典文库） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1356999451-b07ef2?p=8866) |\n| 伟大的孤独 | 克莉丝汀・汉娜 | [下载](https://url89.ctfile.com/f/31084289-1356999223-931baf?p=8866) |\n| 订书匠 | 布里奇特・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1356999211-bda260?p=8866) |\n| 济公传奇（套装9册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1356999598-b81231?p=8866) |\n| 初恋（作家榜经典文库） | 伊凡・谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1356999073-2cb9f3?p=8866) |\n| 知晓我姓名 | 香奈儿・米勒 | [下载](https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866) |\n| 荒凉山庄（插图珍藏版） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1356999151-c700d1?p=8866) |\n| 楚辞（果麦经典） | 屈原等 | [下载](https://url89.ctfile.com/f/31084289-1356999010-1d65d7?p=8866) |\n| 性本恶 | 托马斯・品钦 | [下载](https://url89.ctfile.com/f/31084289-1356998977-2d9306?p=8866) |\n| 秋园 | 杨本芬 | [下载](https://url89.ctfile.com/f/31084289-1356998932-5bad21?p=8866) |\n| 福尔摩斯探案全集（果麦经典） | 阿瑟・柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1356998860-dbddd1?p=8866) |\n| 摩灭之赋 | 四方田犬彦 | [下载](https://url89.ctfile.com/f/31084289-1356998827-81b786?p=8866) |\n| 读书杂志 | 王念孙 | [下载](https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866) |\n| 尘世梦影：彩绘红楼梦 | 孙温/王典弋 | [下载](https://url89.ctfile.com/f/31084289-1356999178-c5dc11?p=8866) |\n| 草枕（果麦经典） | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1356998569-850adf?p=8866) |\n| 第三人 | 格雷厄姆・格林 | [下载](https://url89.ctfile.com/f/31084289-1356998491-6dbde1?p=8866) |\n| 聋哑时代 | 双雪涛 | [下载](https://url89.ctfile.com/f/31084289-1356998479-a545ba?p=8866) |\n| 查拉图斯特拉如是说（果麦经典） | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1356997918-4ecd27?p=8866) |\n| 把地上的事往天上聊 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1356997897-ff709e?p=8866) |\n| 鬼魂的盛宴 | 塞萨尔・艾拉 | [下载](https://url89.ctfile.com/f/31084289-1356997819-57a1d8?p=8866) |\n| 克莱的桥 | 马库斯・苏萨克 | [下载](https://url89.ctfile.com/f/31084289-1356997768-6031fd?p=8866) |\n| 弗雷德蒙德·马利克作品集（全套6册） | 弗雷德蒙德・马利克 | [下载](https://url89.ctfile.com/f/31084289-1356997756-56b1da?p=8866) |\n| 读书与行走 | 陈忠实 | [下载](https://url89.ctfile.com/f/31084289-1356997663-5f95e3?p=8866) |\n| 废墟曾经辉煌 | 张翎 | [下载](https://url89.ctfile.com/f/31084289-1356997651-35de85?p=8866) |\n| 法国文学经典译丛（共6本） | 乔治・桑等 | [下载](https://url89.ctfile.com/f/31084289-1356997660-f91dd1?p=8866) |\n| 白鲸（作家榜经典文库）2020版 | 赫尔曼・麦尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1356997672-b67be3?p=8866) |\n| 沙乡年鉴（经典译林） | 奥尔多・利奥波德 | [下载](https://url89.ctfile.com/f/31084289-1356997633-c1cc0f?p=8866) |\n| 终于 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1356997603-36513e?p=8866) |\n| 浮生六记丛书 | 沈复/陈裴之 | [下载](https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866) |\n| 唐诺“读书四部曲” | 唐诺 | [下载](https://url89.ctfile.com/f/31084289-1356996982-7a2e32?p=8866) |\n| 柏辽兹回忆录 | 埃克托尔・柏辽兹 | [下载](https://url89.ctfile.com/f/31084289-1356996952-cf4c12?p=8866) |\n| 陈忠实文集（全10册） | 陈忠实 | [下载](https://url89.ctfile.com/f/31084289-1356996946-fc37da?p=8866) |\n| 算了 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1356996913-f147a5?p=8866) |\n| 下町火箭4 | 池井户润 | [下载](https://url89.ctfile.com/f/31084289-1356996895-a2928b?p=8866) |\n| 弗吉尼亚·伍尔夫作品集（套装共6册） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356996826-c6f60d?p=8866) |\n| 觉醒（2020年精装版） | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1356996625-acb6fd?p=8866) |\n| 花园中的处子 | A.S.拜厄特 | [下载](https://url89.ctfile.com/f/31084289-1356996616-1be3ff?p=8866) |\n| 红项圈 | 让-克利斯托夫·吕芬 | [下载](https://url89.ctfile.com/f/31084289-1356996508-05afae?p=8866) |\n| 词境浅说 | 俞陛云 | [下载](https://url89.ctfile.com/f/31084289-1356996517-e39145?p=8866) |\n| 春风十里 | 石钟山 | [下载](https://url89.ctfile.com/f/31084289-1356996502-a07470?p=8866) |\n| 十月国度 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1356996484-1dafee?p=8866) |\n| 噩耗 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1356996463-7a111b?p=8866) |\n| 酉阳杂俎注评 | 段成式 | [下载](https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866) |\n| 春风十里不如你 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866) |\n| 耶稣的学生时代（库切文集） | J.M.库切 | [下载](https://url89.ctfile.com/f/31084289-1356995869-614b2b?p=8866) |\n| 幽暗之地（库切文集） | J.M.库切 | [下载](https://url89.ctfile.com/f/31084289-1356995590-9c1e13?p=8866) |\n| 英雄 | 斯蒂芬・弗莱 | [下载](https://url89.ctfile.com/f/31084289-1356995575-9cd60e?p=8866) |\n| 季羡林精选集（套装共8册） | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1356995536-2bdb8c?p=8866) |\n| 纪伯伦大全集名家译著经典套装（全七册） | 纪伯伦 | [下载](https://url89.ctfile.com/f/31084289-1356995524-a19e30?p=8866) |\n| 无愁河的浪荡汉子：朱雀城·八年（全12卷） | 黄永玉 | [下载](https://url89.ctfile.com/f/31084289-1356995611-ef385a?p=8866) |\n| 此时此地（库切文集） | 保罗・奥斯特/J.M.库切 | [下载](https://url89.ctfile.com/f/31084289-1356995512-7d1912?p=8866) |\n| 神话 | 斯蒂芬・弗莱 | [下载](https://url89.ctfile.com/f/31084289-1356995473-1daa2f?p=8866) |\n| 福（库切文集） | J.M.库切 | [下载](https://url89.ctfile.com/f/31084289-1356995452-005b32?p=8866) |\n| 银河系边缘的小失常 | 埃特加・凯雷特 | [下载](https://url89.ctfile.com/f/31084289-1356995446-9b276f?p=8866) |\n| 耶稣的童年（库切文集） | J.M.库切 | [下载](https://url89.ctfile.com/f/31084289-1356995413-aa1656?p=8866) |\n| 草婴译著全集（套装共21册） | 草婴 | [下载](https://url89.ctfile.com/f/31084289-1356995386-861aa3?p=8866) |\n| 列那狐的故事（作家榜经典文库） | 威廉・卡克斯顿 | [下载](https://url89.ctfile.com/f/31084289-1356995368-9b04db?p=8866) |\n| 苏珊·桑塔格文集套装（套装共16册） | 苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1356995377-7fe3c3?p=8866) |\n| 戴老师魔性诗词课 | 戴建业 | [下载](https://url89.ctfile.com/f/31084289-1356995359-399e21?p=8866) |\n| 堂吉诃德（作家榜经典文库） | 塞万提斯 | [下载](https://url89.ctfile.com/f/31084289-1356995341-51019b?p=8866) |\n| 迪伦马特戏剧集（全2册） | 弗里德里希・迪伦马特 | [下载](https://url89.ctfile.com/f/31084289-1356995305-1b9e72?p=8866) |\n| 安徒生童话（果麦经典） | 汉斯・克里斯汀・安徒生 | [下载](https://url89.ctfile.com/f/31084289-1356995311-bfdc72?p=8866) |\n| 施尼茨勒作品集（全3册） | 阿图尔・施尼茨勒 | [下载](https://url89.ctfile.com/f/31084289-1356995290-617c79?p=8866) |\n| 巴黎评论（套装共7册） | 《巴黎评论》编辑部 | [下载](https://url89.ctfile.com/f/31084289-1356995236-9e2014?p=8866) |\n| 巴尔扎克小说集（傅雷译文经典） | 巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1356995194-58db5d?p=8866) |\n| 第十一次真相 | 赤蝶飞飞 | [下载](https://url89.ctfile.com/f/31084289-1356995176-68895f?p=8866) |\n| 番石榴飘香 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1356995158-d063ba?p=8866) |\n| 葡萄牙的高山 | 扬・马特尔 | [下载](https://url89.ctfile.com/f/31084289-1356995155-2caaad?p=8866) |\n| 相约星期二 | 米奇・阿尔博姆 | [下载](https://url89.ctfile.com/f/31084289-1356995149-c4bf6c?p=8866) |\n| 汤姆·索亚历险记（读客经典文库） | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1356995134-d8eeaf?p=8866) |\n| 张洁文集（九卷本） | 张洁 | [下载](https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866) |\n| 国学大师顾随大全集（套装10册） | 顾随 | [下载](https://url89.ctfile.com/f/31084289-1356995206-7fee3d?p=8866) |\n| 大象（短经典） | 斯拉沃米尔・姆罗热克 | [下载](https://url89.ctfile.com/f/31084289-1356995086-94f6de?p=8866) |\n| 雪夜来客 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1356995071-9ecd56?p=8866) |\n| 地心游记（读客经典） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866) |\n| 鲁迅的都市漫游 | 藤井省三 | [下载](https://url89.ctfile.com/f/31084289-1356995002-8ac38e?p=8866) |\n| 祈念守护人 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1356994984-d37bac?p=8866) |\n| 交错的世界 | 詹姆斯・冈恩 | [下载](https://url89.ctfile.com/f/31084289-1356994981-3f09d3?p=8866) |\n| 因为性别 | 吉莉恩・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1356994912-c2c6df?p=8866) |\n| 发明小说的人 | 威廉・埃金顿 | [下载](https://url89.ctfile.com/f/31084289-1356994825-34c441?p=8866) |\n| 比尔·波特全集（共8册） | 比尔・波特 | [下载](https://url89.ctfile.com/f/31084289-1356994852-852931?p=8866) |\n| 血殇 | 理查德・普雷斯顿 | [下载](https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866) |\n| 牧羊少年奇迹之书大全集（12册） | 保罗・柯艾略 | [下载](https://url89.ctfile.com/f/31084289-1356994774-be21cc?p=8866) |\n| 哲学与人：20世纪西方哲学精选（套装共5本） | 卡尔・雅斯贝斯等 | [下载](https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866) |\n| 在别人的句子里 | 陈以侃 | [下载](https://url89.ctfile.com/f/31084289-1356994660-ef8591?p=8866) |\n| 陀思妥耶夫斯基：作家与他的时代 | 玛丽・彼得鲁塞维茨 | [下载](https://url89.ctfile.com/f/31084289-1356994630-9c340a?p=8866) |\n| 廷巴克图 | 约书亚・哈默 | [下载](https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866) |\n| 写在身体上 | 珍妮特・温特森 | [下载](https://url89.ctfile.com/f/31084289-1356994540-f64a45?p=8866) |\n| 保罗·奥斯特作品集（套装共8册） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1356994537-3a23e1?p=8866) |\n| 盲人之歌 | 卡洛斯・富恩特斯 | [下载](https://url89.ctfile.com/f/31084289-1356994528-250ca1?p=8866) |\n| 再见马戏团 | 伊坂幸太郎/曼努埃尔・菲奥 | [下载](https://url89.ctfile.com/f/31084289-1356994525-225149?p=8866) |\n| 穿条纹睡衣的男孩 | 约翰・伯恩 | [下载](https://url89.ctfile.com/f/31084289-1356993655-b05aae?p=8866) |\n| 到婚礼去 | 约翰・伯格 | [下载](https://url89.ctfile.com/f/31084289-1356993640-c1034d?p=8866) |\n| 遗忘通论 | 若泽・爱德华多・阿瓜卢萨 | [下载](https://url89.ctfile.com/f/31084289-1356992440-d7256d?p=8866) |\n| 大小谎言 | 莉安・莫里亚蒂 | [下载](https://url89.ctfile.com/f/31084289-1356992374-c85ca5?p=8866) |\n| 勃朗特姐妹 | 特里・伊格尔顿 | [下载](https://url89.ctfile.com/f/31084289-1356992371-22ab0c?p=8866) |\n| 不要和你妈争辩 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866) |\n| 下町火箭3 | 池井户润 | [下载](https://url89.ctfile.com/f/31084289-1356992200-402e14?p=8866) |\n| 八十天环游地球（读客经典） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1356992194-dd571f?p=8866) |\n| 人生删除事务所 | 本多孝好 | [下载](https://url89.ctfile.com/f/31084289-1356992101-c22289?p=8866) |\n| 我在雨中等你 | 加思・斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356992038-e92926?p=8866) |\n| 史学要籍丛刊 | 左丘明等 | [下载](https://url89.ctfile.com/f/31084289-1356992179-55d354?p=8866) |\n| 你的奥尔加 | 本哈德・施林克 | [下载](https://url89.ctfile.com/f/31084289-1356991903-a21efe?p=8866) |\n| 冰下的人 | 侯磊 | [下载](https://url89.ctfile.com/f/31084289-1356991882-f6f0a0?p=8866) |\n| 八百万种死法（读客版） | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1356991855-3d9ab3?p=8866) |\n| 陆王 | 池井户润 | [下载](https://url89.ctfile.com/f/31084289-1356991852-a7e2da?p=8866) |\n| 冰上斯芬克斯 | 儒尔・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866) |\n| 在路上（博集天卷） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866) |\n| 你好，我是接体员 | 大师兄 | [下载](https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866) |\n| 夏日永别 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1356991768-6563a5?p=8866) |\n| 假作真时 | 黄昱宁 | [下载](https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866) |\n| 尤利西斯（全3册） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1356991588-669fa5?p=8866) |\n| 四大名著（彩皮版） | 曹雪芹等 | [下载](https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866) |\n| 在路上（作家榜经典文库） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1356991585-a3b4c6?p=8866) |\n| 民王 | 池井户润 | [下载](https://url89.ctfile.com/f/31084289-1356991564-4f72db?p=8866) |\n| 十部小说及其作者 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1356991540-89a5e9?p=8866) |\n| 半小时漫画宋词2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866) |\n| 在路上（果麦经典） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1356991528-1cf2cf?p=8866) |\n| 共同体的焚毁 | 希利斯・米勒 | [下载](https://url89.ctfile.com/f/31084289-1356991525-c08881?p=8866) |\n| 伏尔泰传 | 安德烈・莫洛亚 | [下载](https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866) |\n| 冯友兰三松堂全集 | 冯友兰 | [下载](https://url89.ctfile.com/f/31084289-1356991363-e10961?p=8866) |\n| 八千里路云和月 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866) |\n| 光阴似剪 | 达娜・斯皮奥塔 | [下载](https://url89.ctfile.com/f/31084289-1356991126-9b7881?p=8866) |\n| 乔治·西默农作品精华选 | 乔治・西默农 | [下载](https://url89.ctfile.com/f/31084289-1356991147-dca421?p=8866) |\n| 短经典系列（套装共15册） | 路易吉・马莱巴等 | [下载](https://url89.ctfile.com/f/31084289-1356991078-23a4a7?p=8866) |\n| 他们不是虹城人 | 王苏辛 | [下载](https://url89.ctfile.com/f/31084289-1356990964-b8afd7?p=8866) |\n| 五重塔 | 幸田露伴 | [下载](https://url89.ctfile.com/f/31084289-1356991000-d7b7e5?p=8866) |\n| 上帝的孤独者 | 托马斯・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356990946-509c94?p=8866) |\n| 失踪者（读客经典） | 卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1356990928-0ab20b?p=8866) |\n| 杀死玛丽苏 | 乙一等 | [下载](https://url89.ctfile.com/f/31084289-1356990913-f79fa7?p=8866) |\n| 局外人（作家榜经典文库） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1356990895-2603f9?p=8866) |\n| 人行世界 | 七马 | [下载](https://url89.ctfile.com/f/31084289-1356990592-949566?p=8866) |\n| 时间与河流 | 托马斯・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356990580-4bae0c?p=8866) |\n| 亚当的人生歌单 | 格雷姆・辛浦生 | [下载](https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866) |\n| 伟大的思想（中英双语版·全48册） | 马可・波罗等 | [下载](https://url89.ctfile.com/f/31084289-1356990547-0ca514?p=8866) |\n| 万有引力之虹（全译修订本） | 托马斯・品钦 | [下载](https://url89.ctfile.com/f/31084289-1356990430-11e25b?p=8866) |\n| 世界迷宫三部曲 | 玛格丽特・尤瑟纳尔 | [下载](https://url89.ctfile.com/f/31084289-1356990385-be527b?p=8866) |\n| 亲爱的安吉维拉 | 奇玛曼达・恩戈兹・阿迪契 | [下载](https://url89.ctfile.com/f/31084289-1356990373-e61286?p=8866) |\n| 天平之甍 | 井上靖 | [下载](https://url89.ctfile.com/f/31084289-1356990343-181c26?p=8866) |\n| N个国王和他的疆土 | 李浩 | [下载](https://url89.ctfile.com/f/31084289-1356990331-428bda?p=8866) |\n| 不要问我 | 东西 | [下载](https://url89.ctfile.com/f/31084289-1356990325-750d79?p=8866) |\n| 两个人的车站 | 埃・韦・布拉金斯基/埃・亚・梁赞诺夫 | [下载](https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866) |\n| 不回家的诱惑 | 山本文绪 | [下载](https://url89.ctfile.com/f/31084289-1356990292-643c61?p=8866) |\n| 两地书（套装共三册） | 鲁迅/景宋 | [下载](https://url89.ctfile.com/f/31084289-1356990286-f28c56?p=8866) |\n| 不一样的文学史 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866) |\n| 革命之路（理查德·耶茨文集） | 理查德・耶茨 | [下载](https://url89.ctfile.com/f/31084289-1356990163-9fe5c2?p=8866) |\n| 哈扎尔绅士 | 迈克尔・夏邦 | [下载](https://url89.ctfile.com/f/31084289-1356990151-0b2e68?p=8866) |\n| 上帝的茶话会 | 塞萨尔・艾拉 | [下载](https://url89.ctfile.com/f/31084289-1356990148-18dd3b?p=8866) |\n| 下一次将是烈火 | 詹姆斯・鲍德温 | [下载](https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866) |\n| 遇见毕加索 | 让・科克托 | [下载](https://url89.ctfile.com/f/31084289-1356990127-c4de9b?p=8866) |\n| 非正常死亡事件簿 | 上野正彦 | [下载](https://url89.ctfile.com/f/31084289-1356990121-2cc599?p=8866) |\n| 以赛亚·伯林书信集（卷2） | 以赛亚・伯林爵士 | [下载](https://url89.ctfile.com/f/31084289-1356990103-846409?p=8866) |\n| 月光狂想曲 | 迈克尔・夏邦 | [下载](https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866) |\n| 三言二拍插图典藏版（全六册） | 冯梦龙等 | [下载](https://url89.ctfile.com/f/31084289-1356990106-7735f0?p=8866) |\n| 梁漱溟往来书信集 | 梁培宽 | [下载](https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866) |\n| 可怕的孩子 | 让・谷克多 | [下载](https://url89.ctfile.com/f/31084289-1356990043-5f0e5f?p=8866) |\n| 魔桶（短经典） | 伯纳德・马拉默德 | [下载](https://url89.ctfile.com/f/31084289-1356990034-7cb146?p=8866) |\n| 青梅竹马 | 樋口一叶 | [下载](https://url89.ctfile.com/f/31084289-1356990031-2346b0?p=8866) |\n| 唐诗选注 | 葛兆光 | [下载](https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866) |\n| 知日45：这就是三岛由纪夫 | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1356990112-b7b25e?p=8866) |\n| 帝国游戏 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1356989977-a49ce1?p=8866) |\n| 下町火箭2 | 池井户润 | [下载](https://url89.ctfile.com/f/31084289-1356989959-18c2d7?p=8866) |\n| 十三夜 | 樋口一叶 | [下载](https://url89.ctfile.com/f/31084289-1356989941-4ca418?p=8866) |\n| 斯科塔的太阳 | 洛朗・戈代 | [下载](https://url89.ctfile.com/f/31084289-1356989932-49b7ce?p=8866) |\n| 东京二十三区女子 | 长江俊和 | [下载](https://url89.ctfile.com/f/31084289-1356989896-b88cb7?p=8866) |\n| 文字传奇 | 袁筱一 | [下载](https://url89.ctfile.com/f/31084289-1356989881-f84d16?p=8866) |\n| 三十六陂烟水 | 刘荒田 | [下载](https://url89.ctfile.com/f/31084289-1356989779-84dc83?p=8866) |\n| 颂·雅·风 | 徐迅 | [下载](https://url89.ctfile.com/f/31084289-1356989755-ec3df0?p=8866) |\n| 韦力芷兰斋书店寻访三部曲 | 韦力 | [下载](https://url89.ctfile.com/f/31084289-1356990037-71fc2b?p=8866) |\n| 福楼拜小说集（套装共4册） | 居斯塔夫・福楼拜 | [下载](https://url89.ctfile.com/f/31084289-1356989761-e1636e?p=8866) |\n| 等伯：金与墨 | 安部龙太郎 | [下载](https://url89.ctfile.com/f/31084289-1356989644-6d8faf?p=8866) |\n| 拍卖第四十九批 | 托马斯・品钦 | [下载](https://url89.ctfile.com/f/31084289-1356989599-5f3577?p=8866) |\n| 遇见你之前 | 乔乔・莫伊斯 | [下载](https://url89.ctfile.com/f/31084289-1356989596-f44ddf?p=8866) |\n| 野果 | 亨利・大卫・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1356989572-668ed4?p=8866) |\n| 中国往事1905-1949（共四册） | 赵柏田 | [下载](https://url89.ctfile.com/f/31084289-1356989617-e19045?p=8866) |\n| 以赛亚·伯林书信集（卷1） | 以赛亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1356989716-ff3677?p=8866) |\n| 曾国藩家训（全本全注全译） | 檀作文 | [下载](https://url89.ctfile.com/f/31084289-1356989560-a0570d?p=8866) |\n| 魔山（读客经典） | 托马斯・曼 | [下载](https://url89.ctfile.com/f/31084289-1356989524-5ccc77?p=8866) |\n| 假如比尔街可以作证 | 詹姆斯・鲍德温 | [下载](https://url89.ctfile.com/f/31084289-1356989149-9bb539?p=8866) |\n| 全面战争·日式三国（套装共5册） | 吉川英治 | [下载](https://url89.ctfile.com/f/31084289-1356989020-6eb90a?p=8866) |\n| 从大吉岭到克什米尔 | 闻中 | [下载](https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866) |\n| 塞万提斯全集（全八卷） | 米格尔・德・塞万提斯・萨阿维德拉 | [下载](https://url89.ctfile.com/f/31084289-1356988813-dff794?p=8866) |\n| 历史的面孔 | 曾纪鑫 | [下载](https://url89.ctfile.com/f/31084289-1356988498-04aa6e?p=8866) |\n| 大秦帝国·点评本（全11册） | 孙皓晖/谢有顺 | [下载](https://url89.ctfile.com/f/31084289-1356988537-4ac278?p=8866) |\n| 无颜者 | 平野启一郎 | [下载](https://url89.ctfile.com/f/31084289-1356988444-bd6c9b?p=8866) |\n| 风暴眼 | 帕特里克・怀特 | [下载](https://url89.ctfile.com/f/31084289-1356988402-cf5517?p=8866) |\n| 二代目归来 | 森见登美彦 | [下载](https://url89.ctfile.com/f/31084289-1356988351-2d0fbe?p=8866) |\n| 屠格涅夫文集（全7册） | 伊万谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866) |\n| 绝对不在场证明 | 大山诚一郎 | [下载](https://url89.ctfile.com/f/31084289-1356988114-a2c7ca?p=8866) |\n| 日蚀 | 平野启一郎 | [下载](https://url89.ctfile.com/f/31084289-1356988099-05a34a?p=8866) |\n| 唐朝的驿站 | 夏坚勇 | [下载](https://url89.ctfile.com/f/31084289-1356988093-4ba392?p=8866) |\n| 大话西方艺术史 | 意公子 | [下载](https://url89.ctfile.com/f/31084289-1356988072-ecbb42?p=8866) |\n| 啸天说诗（全6册） | 周啸天 | [下载](https://url89.ctfile.com/f/31084289-1356987703-41f27c?p=8866) |\n| 手绘儒生 | 金龠 | [下载](https://url89.ctfile.com/f/31084289-1356987880-6e72c2?p=8866) |\n| 太阳系度假指南 | 奥莉维亚・科斯基/加纳・格鲁赛维克 | [下载](https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866) |\n| 文学法兰西 | 普利西拉・帕克赫斯特・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866) |\n| 小说药丸 | 埃拉・伯绍德/苏珊・埃尔德金 | [下载](https://url89.ctfile.com/f/31084289-1356987217-831e84?p=8866) |\n| 童年兽 | 陆源 | [下载](https://url89.ctfile.com/f/31084289-1356987160-9de6e9?p=8866) |\n| 神圣懒汉的冒险 | 森见登美彦 | [下载](https://url89.ctfile.com/f/31084289-1356987163-633c4d?p=8866) |\n| 余秋雨作品全集（套装共12册） | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1356987538-9bf3bc?p=8866) |\n| 神圣家族 | 梁鸿 | [下载](https://url89.ctfile.com/f/31084289-1356987097-c13163?p=8866) |\n| 太阳与少女 | 森见登美彦 | [下载](https://url89.ctfile.com/f/31084289-1356987055-66c73f?p=8866) |\n| 幽默书房丛书（套装共8册） | J.K.杰罗姆等 | [下载](https://url89.ctfile.com/f/31084289-1356986989-a243cd?p=8866) |\n| 诗圣杜甫 | 吕正惠 | [下载](https://url89.ctfile.com/f/31084289-1356986797-203237?p=8866) |\n| 水妖 | 内森・希尔 | [下载](https://url89.ctfile.com/f/31084289-1356986659-c94878?p=8866) |\n| 爱情就是堆积如山的笔记 | 苏美 | [下载](https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866) |\n| 天使的孩子 | 丹尼尔・斯蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1356986575-694e6f?p=8866) |\n| 文学课 | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1356986485-1c1bd5?p=8866) |\n| 伟大的虚构 | 劳拉・米勒 | [下载](https://url89.ctfile.com/f/31084289-1356986272-57d69c?p=8866) |\n| 晚风如诉 | 肯特・哈鲁夫 | [下载](https://url89.ctfile.com/f/31084289-1356986068-b1f20b?p=8866) |\n| 小文艺口袋文库·知人系列（全7册） | 安妮・海勒等 | [下载](https://url89.ctfile.com/f/31084289-1356985999-ba1691?p=8866) |\n| 周锐幽默三国、西游记、水浒传、红楼梦系列套装4本 | 周锐 | [下载](https://url89.ctfile.com/f/31084289-1356985975-9f41e8?p=8866) |\n| 企鹅经典：小黑书（第五辑） | 蒲松龄等 | [下载](https://url89.ctfile.com/f/31084289-1356985930-aed100?p=8866) |\n| 听你的 | 张皓宸 | [下载](https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866) |\n| 乌蒙山记 | 雷平阳 | [下载](https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866) |\n| 我与戛纳 | 蒂耶里・福茂 | [下载](https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866) |\n| 文学履途 | 纽约时报主编 | [下载](https://url89.ctfile.com/f/31084289-1356985852-f9ca35?p=8866) |\n| 邪恶的肉身 | 伊夫林・沃 | [下载](https://url89.ctfile.com/f/31084289-1356985819-c6fc66?p=8866) |\n| 西方百年学术经典著作（套装共30品38册） | 西格蒙德・弗洛伊德等 | [下载](https://url89.ctfile.com/f/31084289-1356985768-ab1baa?p=8866) |\n| 我们失去的光 | 吉尔・桑托波罗 | [下载](https://url89.ctfile.com/f/31084289-1356985711-f7b9ee?p=8866) |\n| 皮尔士论符号 （二十世纪西方哲学经典） | 查尔斯・皮尔士 | [下载](https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866) |\n| 要塞（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985693-c622f6?p=8866) |\n| 奢侈贫穷 | 森茉莉 | [下载](https://url89.ctfile.com/f/31084289-1356985675-b44dc3?p=8866) |\n| 约翰·伯格作品13册套装 | 约翰・伯格 | [下载](https://url89.ctfile.com/f/31084289-1356985822-e14dbb?p=8866) |\n| 阅微草堂笔记（全本全注全译） | 纪昀 | [下载](https://url89.ctfile.com/f/31084289-1356985663-f34ed2?p=8866) |\n| 夜航（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866) |\n| 企鹅经典：小黑书（第四辑） | 弗吉尼亚・伍尔夫等 | [下载](https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866) |\n| 怦然心动（中英双语典藏版） | 文德琳・范・德拉安南 | [下载](https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866) |\n| 斯德哥尔摩情人 | 陆俊文 | [下载](https://url89.ctfile.com/f/31084289-1356985576-dc8c8a?p=8866) |\n| 我的音乐笔记 | 肖复兴 | [下载](https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866) |\n| 声色野记 | 侯磊 | [下载](https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866) |\n| 神性的温柔 | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866) |\n| 人的大地（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866) |\n| 半小时漫画宋词 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866) |\n| 当我们阅读时，我们看到了什么 | 彼得・门德尔桑德 | [下载](https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866) |\n| 流放的老国王 | 阿尔诺・盖格尔 | [下载](https://url89.ctfile.com/f/31084289-1356985414-66b2dc?p=8866) |\n| 王安石全集：临川先生文集 | 王水照主编 | [下载](https://url89.ctfile.com/f/31084289-1356985420-3192ce?p=8866) |\n| 充闾文集（套装共21册） | 王充闾 | [下载](https://url89.ctfile.com/f/31084289-1356985405-cbee79?p=8866) |\n| 颜氏家训（全本全注全译） | 檀作文 | [下载](https://url89.ctfile.com/f/31084289-1356985381-82364d?p=8866) |\n| 什么是什么 | 戴夫・艾格斯 | [下载](https://url89.ctfile.com/f/31084289-1356985360-030e8e?p=8866) |\n| 智利之夜 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1356985345-9f6534?p=8866) |\n| 小报戏梦 | 罗伯特・奥伦・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1356985342-fd9e50?p=8866) |\n| 唐德刚经典作品集 | 唐德刚 | [下载](https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866) |\n| 后来的事 | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1356985330-0cbe3f?p=8866) |\n| 四月女友 | 川村元气 | [下载](https://url89.ctfile.com/f/31084289-1356985327-88b7a9?p=8866) |\n| 韦启昌译叔本华系列（共6册） | 叔本华/尼采 | [下载](https://url89.ctfile.com/f/31084289-1356985312-e66849?p=8866) |\n| 南方邮航（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985288-11c68c?p=8866) |\n| 护身符 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1356985258-000242?p=8866) |\n| 秋水堂论金瓶梅 | 田晓菲 | [下载](https://url89.ctfile.com/f/31084289-1356985261-d50df1?p=8866) |\n| 生死96小时 | 冯韵娴 | [下载](https://url89.ctfile.com/f/31084289-1356985246-d27bd2?p=8866) |\n| 俗世奇人全本 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1356985231-a9ccfe?p=8866) |\n| 狩猎游戏 | M·A·本内特 | [下载](https://url89.ctfile.com/f/31084289-1356985216-54d753?p=8866) |\n| 蒙田随笔全集（共3册） | 米歇尔・德・蒙田 | [下载](https://url89.ctfile.com/f/31084289-1356985171-fc3c5a?p=8866) |\n| 佩恩先生 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1356985156-46b0f6?p=8866) |\n| 人设 | 李尚龙 | [下载](https://url89.ctfile.com/f/31084289-1356985153-a9d04a?p=8866) |\n| 荒野侦探 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1356985138-fcc4c9?p=8866) |\n| 三岛由纪夫作品（共15册） | 三岛由纪夫 | [下载](https://url89.ctfile.com/f/31084289-1356985132-9232ae?p=8866) |\n| 我余生的第一天 | 维尔吉妮・格里马尔蒂 | [下载](https://url89.ctfile.com/f/31084289-1356985000-fd55f0?p=8866) |\n| 汪曾祺全集（全十二卷） | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1356984991-c81bdf?p=8866) |\n| 徐霞客游记（全本全注全译） | 朱惠荣 | [下载](https://url89.ctfile.com/f/31084289-1356984961-6859f1?p=8866) |\n| 留白：秋水堂文化随笔 | 田晓菲 | [下载](https://url89.ctfile.com/f/31084289-1356984928-62a884?p=8866) |\n| 上海摩登（修订版） | 李欧梵 | [下载](https://url89.ctfile.com/f/31084289-1356984994-72f3c1?p=8866) |\n| 沈从文诗集 | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866) |\n| 生命是孤独的旅程 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866) |\n| 事实：一个小说家的自传 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356984871-7df3e6?p=8866) |\n| 梦蛇 | 冯达·N.麦金泰尔 | [下载](https://url89.ctfile.com/f/31084289-1356984835-beb8f9?p=8866) |\n| 沙漏做招牌的疗养院 | 布鲁诺・舒尔茨 | [下载](https://url89.ctfile.com/f/31084289-1356984817-29e172?p=8866) |\n| 花间集校注（中华国学文库） | 赵崇祚编/杨景龙校注 | [下载](https://url89.ctfile.com/f/31084289-1356984802-9d5c8d?p=8866) |\n| 文选（全本全注全译） | 萧统 | [下载](https://url89.ctfile.com/f/31084289-1356984844-35174d?p=8866) |\n| 地球编年史（套装全七册） | 撒迦利亚・西琴 | [下载](https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866) |\n| 善心女神 | 乔纳森・利特尔 | [下载](https://url89.ctfile.com/f/31084289-1356984781-170459?p=8866) |\n| 摄影师的妻子 | 苏珊・乔伊森 | [下载](https://url89.ctfile.com/f/31084289-1356984775-914173?p=8866) |\n| 昭明文选（套装共五册） | 萧统 | [下载](https://url89.ctfile.com/f/31084289-1356984763-46c527?p=8866) |\n| 无人幸免 | 奥马尔・阿卡德 | [下载](https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866) |\n| 玛格丽特·杜拉斯作品（共16册） | 玛格丽特・杜拉斯 | [下载](https://url89.ctfile.com/f/31084289-1356984718-62127c?p=8866) |\n| 晏子春秋校注（中华国学文库） | 张纯一撰 | [下载](https://url89.ctfile.com/f/31084289-1356984682-aaeed9?p=8866) |\n| 马家辉家行散记（共3册） | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1356984712-10fe3b?p=8866) |\n| 我和这个世界不熟 | 城迟 | [下载](https://url89.ctfile.com/f/31084289-1356984640-5ee8f4?p=8866) |\n| 坟场之书 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1356984631-c99749?p=8866) |\n| 人，做得到任何事 | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1356984625-a03251?p=8866) |\n| 李娟阿勒泰系列（共4册） | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866) |\n| 莎士比亚全集（套装共10本） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1356984475-8c8d8a?p=8866) |\n| 搜神记（全本全注全译） | 马银琴译注 | [下载](https://url89.ctfile.com/f/31084289-1356984313-21a38c?p=8866) |\n| 世界英雄史诗译丛（套装14册） | 荷马等 | [下载](https://url89.ctfile.com/f/31084289-1356984031-b9ecb5?p=8866) |\n| 雾行者 | 路内 | [下载](https://url89.ctfile.com/f/31084289-1356983968-99377d?p=8866) |\n| 战争的一瞬间 | 洛瑞・李 | [下载](https://url89.ctfile.com/f/31084289-1356983962-13cbc9?p=8866) |\n| 吴尔夫文集（全6册） | 艾德琳・弗吉尼亚・伍尔芙 | [下载](https://url89.ctfile.com/f/31084289-1356983956-3901fd?p=8866) |\n| 月球房地产推销员 | 李唐 | [下载](https://url89.ctfile.com/f/31084289-1356983935-c8e067?p=8866) |\n| 杨贵妃 | 井上靖 | [下载](https://url89.ctfile.com/f/31084289-1356983926-a15f34?p=8866) |\n| 夏与西伯利亚 | 倪湛舸 | [下载](https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866) |\n| 我喜欢你，像风走了八千里 | 末那大叔 | [下载](https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866) |\n| 拾遗记（全本全注全译） | 王兴芬 | [下载](https://url89.ctfile.com/f/31084289-1356983911-a2e9a3?p=8866) |\n| 吕碧城著作（上下册） | 会闲/鈡锦/李保民 | [下载](https://url89.ctfile.com/f/31084289-1356984652-1b7978?p=8866) |\n| 热带 | 李唐 | [下载](https://url89.ctfile.com/f/31084289-1356983884-d6578c?p=8866) |\n| 悠悠我心 | 史杰鹏 | [下载](https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866) |\n| 一年灯火要人归 | 陆蓓容 | [下载](https://url89.ctfile.com/f/31084289-1356983866-8a5362?p=8866) |\n| 丹·布朗作品系列新版（套装共7册） | 丹・布朗 | [下载](https://url89.ctfile.com/f/31084289-1356983848-1b6061?p=8866) |\n| 漫游者 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1356983791-958502?p=8866) |\n| 血与火：坦格利安王朝史 | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1356983806-ec2271?p=8866) |\n| 周大新文集（全18册） | 周大新 | [下载](https://url89.ctfile.com/f/31084289-1356983764-c45416?p=8866) |\n| 夏目漱石作品（共15册） | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1356983740-02e528?p=8866) |\n| 路遥作品（新版典藏） | 路遥 | [下载](https://url89.ctfile.com/f/31084289-1356983668-b0b836?p=8866) |\n| 想我苦哈哈的一生 | 詹姆斯・瑟伯 | [下载](https://url89.ctfile.com/f/31084289-1356983644-9228c8?p=8866) |\n| 忏悔录（上下册） | 卢梭 | [下载](https://url89.ctfile.com/f/31084289-1356983575-497968?p=8866) |\n| 中国文字发展史（套装共5册） | 臧克和 | [下载](https://url89.ctfile.com/f/31084289-1356983776-60f56e?p=8866) |\n| 身外之海 | 李唐 | [下载](https://url89.ctfile.com/f/31084289-1356983404-123992?p=8866) |\n| 唐祈诗全编 | 唐祈 | [下载](https://url89.ctfile.com/f/31084289-1356983401-76fd36?p=8866) |\n| 真正的接纳，就是爱上不完美的自己 | 爱丽丝・博伊斯 | [下载](https://url89.ctfile.com/f/31084289-1356983356-42cd5f?p=8866) |\n| 鹈鹕丛书（共6册） | 罗宾・邓巴等 | [下载](https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866) |\n| 劝学篇（全本全注全译） | 张之洞 | [下载](https://url89.ctfile.com/f/31084289-1356983266-6db10e?p=8866) |\n| 写作的诞生 | 多萝西娅・布兰德 | [下载](https://url89.ctfile.com/f/31084289-1356983179-258589?p=8866) |\n| 想我眷村的兄弟们 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1356983164-66ee40?p=8866) |\n| 帕哈萨帕之歌 | 肯特・纳尔本 | [下载](https://url89.ctfile.com/f/31084289-1356983140-a2a003?p=8866) |\n| 睿文馆系列（共十五册） | 贾雷德・戴蒙德等 | [下载](https://url89.ctfile.com/f/31084289-1356983122-3c98aa?p=8866) |\n| 萨拉戈萨手稿 | 扬・波托茨基 | [下载](https://url89.ctfile.com/f/31084289-1356982513-606bac?p=8866) |\n| 梦溪笔谈（全本全注全译） | 沈括 | [下载](https://url89.ctfile.com/f/31084289-1356982498-8c1213?p=8866) |\n| 在路上（读客经典） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1356982507-7418ab?p=8866) |\n| 坡道上的家 | 角田光代 | [下载](https://url89.ctfile.com/f/31084289-1356982486-16b5cf?p=8866) |\n| 猫的桌子 | 迈克尔・翁达杰 | [下载](https://url89.ctfile.com/f/31084289-1356982483-fa4e5d?p=8866) |\n| 去圣伯多禄的路上 | 吴文君 | [下载](https://url89.ctfile.com/f/31084289-1356982468-74bc82?p=8866) |\n| 小文65 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1356982444-87cc64?p=8866) |\n| 闲情偶寄（全本全注全译） | 李渔 | [下载](https://url89.ctfile.com/f/31084289-1356982435-f2b94d?p=8866) |\n| 为何爱会伤人（珍藏版） | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1356982420-ba5b58?p=8866) |\n| 南怀瑾作品（共21册） | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1356982492-7bf040?p=8866) |\n| 对决人生：解读海明威 | 杨照 | [下载](https://url89.ctfile.com/f/31084289-1357054528-4f1dae?p=8866) |\n| 一片树叶的颤动 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357054492-7e8119?p=8866) |\n| 盐之屋 | 哈拉・艾兰 | [下载](https://url89.ctfile.com/f/31084289-1357054483-84cfa5?p=8866) |\n| 中华古典文库典藏（共40册） | 李汝珍等 | [下载](https://url89.ctfile.com/f/31084289-1357054597-4de0db?p=8866) |\n| 奥威尔战时文集 | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866) |\n| 中国四大名著（插图典藏版） | 曹雪芹等 | [下载](https://url89.ctfile.com/f/31084289-1357054390-341814?p=8866) |\n| 怎样写故事 | 莉萨・克龙 | [下载](https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866) |\n| 中产阶级看月亮 | 萧耳 | [下载](https://url89.ctfile.com/f/31084289-1357054210-33aec6?p=8866) |\n| 流沙河讲诗经 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866) |\n| 一切特立独行的人都意味着强大 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357053730-614dee?p=8866) |\n| 迁徙的间隙 | 董劼 | [下载](https://url89.ctfile.com/f/31084289-1357053526-6e3a84?p=8866) |\n| 亲历滇缅公路（套装共4本） | 内维尔・布拉德利等 | [下载](https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866) |\n| 德国文学（牛津通识读本） | 尼古拉斯・博伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866) |\n| 与神对话（全五卷） | 尼尔・唐纳德・沃尔什 | [下载](https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866) |\n| 迷宫中的恋人 | 陈雪 | [下载](https://url89.ctfile.com/f/31084289-1357053472-87b733?p=8866) |\n| 柠檬 | 梶井基次郎 | [下载](https://url89.ctfile.com/f/31084289-1357053202-8991a3?p=8866) |\n| 小岛西岸的来信 | 洛丽・施皮尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357053124-ef774c?p=8866) |\n| 性盲症患者的爱情 | 张天翼 | [下载](https://url89.ctfile.com/f/31084289-1357053070-b8c727?p=8866) |\n| 重逢 | 弗雷德・乌尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866) |\n| 阳台上 | 任晓雯 | [下载](https://url89.ctfile.com/f/31084289-1357053022-ae07ad?p=8866) |\n| 约翰的预言 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357053016-dca2af?p=8866) |\n| 正午5：有人送我西兰花 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052992-b766ed?p=8866) |\n| 写出娱乐的力量 | 貴志祐介 | [下载](https://url89.ctfile.com/f/31084289-1357052950-ffb7f3?p=8866) |\n| 正午6：旧山河，新故事 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866) |\n| 正午7：我们的生活 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052818-d04d83?p=8866) |\n| 正午2：此地不宜久留 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052698-caedb3?p=8866) |\n| 怒 | 吉田修一 | [下载](https://url89.ctfile.com/f/31084289-1357052692-b026d3?p=8866) |\n| 诗人十四个 | 黄晓丹 | [下载](https://url89.ctfile.com/f/31084289-1357052656-80a0a8?p=8866) |\n| 走：Green和张早故事集 | 司屠 | [下载](https://url89.ctfile.com/f/31084289-1357052647-06ffd0?p=8866) |\n| 正午3：到海底去 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052620-5a8fe8?p=8866) |\n| 字里行间读鲁迅 | 黄乔生 | [下载](https://url89.ctfile.com/f/31084289-1357052611-2c45de?p=8866) |\n| 中国网络文学二十年 | 欧阳友权 | [下载](https://url89.ctfile.com/f/31084289-1357052599-e1d803?p=8866) |\n| 证词 | 斯科特・特罗 | [下载](https://url89.ctfile.com/f/31084289-1357052581-58983f?p=8866) |\n| 戴建业作品集（套装共9册） | 戴建业 | [下载](https://url89.ctfile.com/f/31084289-1357052557-227327?p=8866) |\n| 正午4：我的黎明骊歌 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052587-a22353?p=8866) |\n| 火车大巴扎 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357052536-571f79?p=8866) |\n| 最后的儿子 | 吉田修一 | [下载](https://url89.ctfile.com/f/31084289-1357052317-472f57?p=8866) |\n| 我也是鲁迅的遗物：朱安传 | 乔丽华 | [下载](https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866) |\n| 正午1：我穿墙过去 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866) |\n| 理论的幽灵：文学与常识 | 安托万・孔帕尼翁 | [下载](https://url89.ctfile.com/f/31084289-1357052251-1b4968?p=8866) |\n| 天空之蓝 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357052230-fa9975?p=8866) |\n| 去洞庭 | 郑小驴 | [下载](https://url89.ctfile.com/f/31084289-1357052212-1322ef?p=8866) |\n| 静物 | A.S.拜厄特 | [下载](https://url89.ctfile.com/f/31084289-1357052191-7b68a7?p=8866) |\n| 金宇澄作品集 | 金宇澄 | [下载](https://url89.ctfile.com/f/31084289-1357052182-8d46f9?p=8866) |\n| 梁宗岱译集（套装共8册） | 梁宗岱 | [下载](https://url89.ctfile.com/f/31084289-1357051921-b46f2a?p=8866) |\n| 昨日将至 | 朱利安・费罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357051855-91f788?p=8866) |\n| 蒙田全集（套装共4册） | 蒙田 | [下载](https://url89.ctfile.com/f/31084289-1357051849-bb912e?p=8866) |\n| 隐页书城三部曲 | 凯・迈尔 | [下载](https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866) |\n| 我不是来演讲的 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357051756-7d2dc4?p=8866) |\n| 那时上帝是只兔子 | 莎拉・韦曼 | [下载](https://url89.ctfile.com/f/31084289-1357051723-905b0e?p=8866) |\n| 米格尔在智利的地下行动 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357051711-d0d758?p=8866) |\n| 不可能性 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866) |\n| 黑塞文集（全10卷） | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357051813-4fbe8f?p=8866) |\n| 楚辞（国学典藏） | 洪兴祖 补注 | [下载](https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866) |\n| 生姜头，你疯了 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357051588-88d28b?p=8866) |\n| 火光之色 | 皮耶尔・勒迈特 | [下载](https://url89.ctfile.com/f/31084289-1357051579-ec6e6c?p=8866) |\n| 追逐新月的人 | 森绘都 | [下载](https://url89.ctfile.com/f/31084289-1357051576-507427?p=8866) |\n| 等待 | 哈金 | [下载](https://url89.ctfile.com/f/31084289-1357051564-255e15?p=8866) |\n| 红楼梦脂评汇校本 | 吴铭恩 | [下载](https://url89.ctfile.com/f/31084289-1357051549-30467b?p=8866) |\n| 失聪宣判 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357051540-75c665?p=8866) |\n| 林语堂传 | 钱锁桥 | [下载](https://url89.ctfile.com/f/31084289-1357051534-d8c6fd?p=8866) |\n| 流沙刑 | 莫琳・派森・吉莉特 | [下载](https://url89.ctfile.com/f/31084289-1357051519-fb7329?p=8866) |\n| 埃勒里·奎因（30本合集） | 埃勒里・奎因 | [下载](https://url89.ctfile.com/f/31084289-1357051606-c33e83?p=8866) |\n| 走出防空洞 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357051501-efedaf?p=8866) |\n| 吉祥纹莲花楼（套装4册） | 藤萍 | [下载](https://url89.ctfile.com/f/31084289-1357051408-db1302?p=8866) |\n| 低地 | 裘帕・拉希莉 | [下载](https://url89.ctfile.com/f/31084289-1357051336-a76694?p=8866) |\n| 企鹅经典：小黑书（第三辑） | 简・奥斯汀等 | [下载](https://url89.ctfile.com/f/31084289-1357051342-44a7e5?p=8866) |\n| 赖床的男人 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357051324-774754?p=8866) |\n| 暮色将至 | 凯蒂・洛芙 | [下载](https://url89.ctfile.com/f/31084289-1357051303-448c94?p=8866) |\n| 魔法外套 | 迪诺・布扎蒂 | [下载](https://url89.ctfile.com/f/31084289-1357051177-97588d?p=8866) |\n| 11字谜案 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357051162-6633d9?p=8866) |\n| 罗盘 | 马蒂亚斯・埃纳尔 | [下载](https://url89.ctfile.com/f/31084289-1357051156-4846ed?p=8866) |\n| 爱情和其他魔鬼 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357051126-9665e7?p=8866) |\n| 第二十二条军规 | 约瑟夫・海勒 | [下载](https://url89.ctfile.com/f/31084289-1357051087-ca589a?p=8866) |\n| 寂寞芳心小姐（守望者经典） | 纳撒尼尔・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357051063-a08447?p=8866) |\n| 茧 | 青山七恵 | [下载](https://url89.ctfile.com/f/31084289-1357051060-bdf1d0?p=8866) |\n| 景恒街 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357051015-aa2384?p=8866) |\n| 看不见的世界 | 莉兹・摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357051006-6c5df6?p=8866) |\n| 果戈理文集（全7册） | 果戈理 | [下载](https://url89.ctfile.com/f/31084289-1357051000-119a99?p=8866) |\n| 海上大教堂 | 伊德方索・法孔内斯 | [下载](https://url89.ctfile.com/f/31084289-1357050892-c80017?p=8866) |\n| 红字（果麦经典） | 纳撒尼尔・霍桑 | [下载](https://url89.ctfile.com/f/31084289-1357050886-37cf4c?p=8866) |\n| 今天将会不一样 | 玛利亚・森普尔 | [下载](https://url89.ctfile.com/f/31084289-1357050877-93c812?p=8866) |\n| 美国式婚姻 | 塔亚莉・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357050862-f21a03?p=8866) |\n| 食货《金瓶梅》 | 侯会 | [下载](https://url89.ctfile.com/f/31084289-1357050868-bb8823?p=8866) |\n| 亚瑟王之死（果麦经典） | 托马斯・马洛礼 | [下载](https://url89.ctfile.com/f/31084289-1357050838-0f3df6?p=8866) |\n| 日瓦戈医生（名著名译丛书） | 帕斯捷尔纳克 | [下载](https://url89.ctfile.com/f/31084289-1357050841-ba42c6?p=8866) |\n| 不完美人生的解答书（套装8册） | 陈海贤等 | [下载](https://url89.ctfile.com/f/31084289-1357050835-a3af55?p=8866) |\n| 朗读者Ⅱ（全3册） | 董卿 | [下载](https://url89.ctfile.com/f/31084289-1357050823-8e7bc0?p=8866) |\n| 家肴 | 唐颖 | [下载](https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866) |\n| 白驯鹿的九叉犄角 | 张云 | [下载](https://url89.ctfile.com/f/31084289-1357050748-d01060?p=8866) |\n| 曹雪芹大传（共14册） | 曹雪芹等 | [下载](https://url89.ctfile.com/f/31084289-1357050604-976667?p=8866) |\n| 观音在远远的山上 | 伊沙 | [下载](https://url89.ctfile.com/f/31084289-1357050556-84c9cc?p=8866) |\n| 鼠疫（影子经典） | 加缪 | [下载](https://url89.ctfile.com/f/31084289-1357050511-978701?p=8866) |\n| 日瓦戈医生（果麦经典） | 鲍里斯・帕斯捷尔纳克 | [下载](https://url89.ctfile.com/f/31084289-1357050505-1511fe?p=8866) |\n| 村上春树和我 | 杰伊・鲁宾 | [下载](https://url89.ctfile.com/f/31084289-1357050466-f3b436?p=8866) |\n| 回不去的旅人 | 杰西・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357050415-6b055d?p=8866) |\n| 冰风谷三部曲 | R.A.萨尔瓦多 | [下载](https://url89.ctfile.com/f/31084289-1357050406-705d67?p=8866) |\n| 汉字的故事 | 王铁钧 | [下载](https://url89.ctfile.com/f/31084289-1357050379-f02840?p=8866) |\n| 巴别塔 | A.S.拜厄特 | [下载](https://url89.ctfile.com/f/31084289-1357050370-722d26?p=8866) |\n| 美丘 | 石田衣良 | [下载](https://url89.ctfile.com/f/31084289-1357050361-ede86b?p=8866) |\n| 江南三部曲 | 格非 | [下载](https://url89.ctfile.com/f/31084289-1357050136-657c5f?p=8866) |\n| 全怪谈：扶桑鬼话（套装共6册） | 小泉八云等 | [下载](https://url89.ctfile.com/f/31084289-1357050130-bed007?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说4） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866) |\n| 当我离开你 | 艾米莉・布勒克尔 | [下载](https://url89.ctfile.com/f/31084289-1357049989-793bfd?p=8866) |\n| 撒野（木小瓷作品） | 木小瓷 | [下载](https://url89.ctfile.com/f/31084289-1357049983-aec537?p=8866) |\n| 撒野 | 巫哲 | [下载](https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866) |\n| 日瓦戈医生 | 鲍里斯・帕斯捷尔纳克 | [下载](https://url89.ctfile.com/f/31084289-1357049863-602d2e?p=8866) |\n| 哪吒 | 奚淞 | [下载](https://url89.ctfile.com/f/31084289-1357049710-0661df?p=8866) |\n| 大夏教育文存（全11卷） | 杜成宪 | [下载](https://url89.ctfile.com/f/31084289-1357049830-9cf21a?p=8866) |\n| 加西亚·马尔克斯访谈录 | 加西亚・马尔克斯/吉恩・贝尔-维亚达 | [下载](https://url89.ctfile.com/f/31084289-1357049599-516265?p=8866) |\n| E.M.福斯特文集（套装共8册） | E.M.福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357049557-ddb05b?p=8866) |\n| 外出偷马 | 佩尔・帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357049536-671aab?p=8866) |\n| 困惑的三文鱼 | 道格拉斯・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866) |\n| 创水记 | 赛斯・西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866) |\n| 《荒岛》及其他文本 | 吉尔・德勒兹/大卫・拉普雅德 | [下载](https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866) |\n| 导体 | 克洛德・西蒙 | [下载](https://url89.ctfile.com/f/31084289-1357049389-41abeb?p=8866) |\n| 梅格时空大冒险（套装全5册） | 马德琳・英格 | [下载](https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866) |\n| 论语别裁 | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866) |\n| 故事力思维 | 安东尼・塔斯加尔 | [下载](https://url89.ctfile.com/f/31084289-1357049281-f20647?p=8866) |\n| 大家小书大全套 | 朱自清等 | [下载](https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866) |\n| 细说民国大文人系列（增订版） | 民国文林 | [下载](https://url89.ctfile.com/f/31084289-1357049203-a57f9d?p=8866) |\n| 蜜蜂之死 | 汉妮・明策尔 | [下载](https://url89.ctfile.com/f/31084289-1357049110-d71ee3?p=8866) |\n| 少林很忙 | 马修・波利 | [下载](https://url89.ctfile.com/f/31084289-1357049068-7ff5e6?p=8866) |\n| 一九八四（纪念版） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866) |\n| 罗兰·巴尔特文集（套装） | 罗兰・巴尔特 | [下载](https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866) |\n| 哲学的迷途 | 莫提默・艾德勒 | [下载](https://url89.ctfile.com/f/31084289-1357048744-dfb334?p=8866) |\n| 乌金的牙齿 | 万玛才旦 | [下载](https://url89.ctfile.com/f/31084289-1357048714-87e33e?p=8866) |\n| 布拉格练习曲 | 兹旦内克・斯维拉克 | [下载](https://url89.ctfile.com/f/31084289-1357048654-840616?p=8866) |\n| 青青校树 | 兹旦内克・斯维拉克 | [下载](https://url89.ctfile.com/f/31084289-1357048651-3c2d76?p=8866) |\n| 杰克·凯鲁亚克作品集（套装共13册） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1357048672-0f790e?p=8866) |\n| 宋词排行榜 | 王兆鹏/郁玉英/郭红欣 | [下载](https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866) |\n| 唐诗排行榜 | 王兆鹏/邵大为/张静/唐元 | [下载](https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866) |\n| 装腔指南 | 托马斯· W. 霍奇金森 | [下载](https://url89.ctfile.com/f/31084289-1357048573-ba74e7?p=8866) |\n| 冷场 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1357048561-99f922?p=8866) |\n| 菲茨杰拉德作品全集（套装共10册） | 菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357048531-da8069?p=8866) |\n| 书店 | 佩内洛普・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357048501-57d0d1?p=8866) |\n| 蓝花 | 佩内洛普・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357048498-7b3dc7?p=8866) |\n| 赤川次郎作品系列（套装共五册） | 赤川次郎 | [下载](https://url89.ctfile.com/f/31084289-1357048447-5436f5?p=8866) |\n| 非典十年祭 | 何建明 | [下载](https://url89.ctfile.com/f/31084289-1357048432-7a243d?p=8866) |\n| 艾娃·拉文德奇异而美丽的忧伤 | 蕾丝莱・沃顿 | [下载](https://url89.ctfile.com/f/31084289-1357048315-3325ba?p=8866) |\n| 金蔷薇（果麦经典） | 康・帕乌斯托夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357048282-b6e283?p=8866) |\n| 疯狂的奥兰多 | 卢多维科・阿里奥斯托 | [下载](https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866) |\n| 浮世理发馆 | 式亭三马 | [下载](https://url89.ctfile.com/f/31084289-1357048219-f2fc1e?p=8866) |\n| 醉鲨 | 莫腾・安德雷亚斯・斯特罗克奈斯 | [下载](https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866) |\n| 公孙龙子（全本全注全译） | 黄克剑译注 | [下载](https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866) |\n| 卡门（果麦经典） | 普罗斯珀・梅里美 | [下载](https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866) |\n| 酒鬼与圣徒 | 劳伦斯・奥斯本 | [下载](https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866) |\n| 管子（全本全注全译） | 李山/轩新丽译注 | [下载](https://url89.ctfile.com/f/31084289-1357047976-8c4088?p=8866) |\n| 离婚（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866) |\n| 爱啊美啊人生啊 | 石川啄木 | [下载](https://url89.ctfile.com/f/31084289-1357047964-020a7a?p=8866) |\n| 女观众 | 兹旦内克・斯维拉克 | [下载](https://url89.ctfile.com/f/31084289-1357047907-ccdbb7?p=8866) |\n| 错失之爱 | 兹旦内克・斯维拉克 | [下载](https://url89.ctfile.com/f/31084289-1357047901-7edab4?p=8866) |\n| 奥威尔纪实作品全集（套装共3册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866) |\n| 大树小虫 | 池莉 | [下载](https://url89.ctfile.com/f/31084289-1357047805-44bd73?p=8866) |\n| 睡在汽车里的女孩 | 珍妮弗・克莱门特 | [下载](https://url89.ctfile.com/f/31084289-1357047661-1ca554?p=8866) |\n| 孤独梦想家 | 戴维・巴尼特 | [下载](https://url89.ctfile.com/f/31084289-1357047646-c1f65b?p=8866) |\n| 企鹅经典：小彩虹（第一辑） | 尤瓦尔・赫拉利等 | [下载](https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866) |\n| 猎人 | 双雪涛 | [下载](https://url89.ctfile.com/f/31084289-1357047529-50899a?p=8866) |\n| 呼啸山庄（果麦经典） | 爱米丽・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357047481-49fc2b?p=8866) |\n| 恐妻家 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357047436-da2420?p=8866) |\n| 爱欲与哀矜 | 张定浩 | [下载](https://url89.ctfile.com/f/31084289-1357047418-fe398a?p=8866) |\n| 那些忧伤的年轻人 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866) |\n| 钢铁是怎样炼成的（果麦经典） | 尼古拉・奥斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357047319-612f67?p=8866) |\n| 小城畸人 | 舍伍德・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357047148-e62f8e?p=8866) |\n| 从捕鲸船上一路走来 | 孙康宜 | [下载](https://url89.ctfile.com/f/31084289-1357047139-072e6d?p=8866) |\n| 大河深处 | 东来 | [下载](https://url89.ctfile.com/f/31084289-1357047136-68689e?p=8866) |\n| 奥威尔小说全集（套装共6册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357047130-74f0d5?p=8866) |\n| 尔雅（全本全注全译） | 管锡华译注 | [下载](https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866) |\n| 歌德谈话录（果麦经典） | 爱克曼 | [下载](https://url89.ctfile.com/f/31084289-1357047061-9b3ce0?p=8866) |\n| 第84封情书 | 骆淑景 | [下载](https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866) |\n| 巨浪下的小学 | 理查德・劳埃德・帕里 | [下载](https://url89.ctfile.com/f/31084289-1357046986-bb9508?p=8866) |\n| 中非湖区探险记Ⅰ | 理查德・F.伯顿 | [下载](https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866) |\n| 中非湖区探险记Ⅱ | 理查德・F.伯顿 | [下载](https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866) |\n| 强风吹拂 | 三浦紫苑 | [下载](https://url89.ctfile.com/f/31084289-1357046827-b2725e?p=8866) |\n| 第三个警察 | 弗兰・奥布莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357046809-668e12?p=8866) |\n| 返朴 | 北野武 | [下载](https://url89.ctfile.com/f/31084289-1357046800-b689fb?p=8866) |\n| 蝲蛄吟唱的地方 | 迪莉娅・欧文斯 | [下载](https://url89.ctfile.com/f/31084289-1357046752-6d776b?p=8866) |\n| 不识字的人 | 雅歌塔・克里斯多夫 | [下载](https://url89.ctfile.com/f/31084289-1357046671-ef211b?p=8866) |\n| 傅雷谈艺录及其他 | 傅雷 | [下载](https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866) |\n| 我的晃荡的青春 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357046584-e51f3a?p=8866) |\n| 波动 | 北岛 | [下载](https://url89.ctfile.com/f/31084289-1357046539-3edfdf?p=8866) |\n| 东野圭吾年度套装（共56册） | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357046530-4e40c9?p=8866) |\n| 魔力的胎动 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357046440-06c86c?p=8866) |\n| 春秋公羊传（全本全注全译） | 孔子/公羊寿 | [下载](https://url89.ctfile.com/f/31084289-1357046404-436973?p=8866) |\n| 纯真年代（果麦经典） | 伊迪丝・华顿 | [下载](https://url89.ctfile.com/f/31084289-1357046398-388e26?p=8866) |\n| 二次吸引 | “小鹿情感”专家组 | [下载](https://url89.ctfile.com/f/31084289-1357046374-029af9?p=8866) |\n| 智慧七柱Ⅰ | T. E.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866) |\n| 开市大吉（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866) |\n| 非洲民间故事 | 保罗・拉丁 | [下载](https://url89.ctfile.com/f/31084289-1357046212-6c1ced?p=8866) |\n| 草莓人生 | 荻原浩 | [下载](https://url89.ctfile.com/f/31084289-1357046182-614108?p=8866) |\n| 巴黎圣母院（果麦经典） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357046152-a5184c?p=8866) |\n| 被弃养的女孩 | 多娜泰拉・迪皮耶特兰托尼奥 | [下载](https://url89.ctfile.com/f/31084289-1357046107-0c342f?p=8866) |\n| 九功舞系列（套装9册） | 藤萍 | [下载](https://url89.ctfile.com/f/31084289-1357046071-f8bd41?p=8866) |\n| 聊斋志异（全校会注集评） | 蒲松龄 | [下载](https://url89.ctfile.com/f/31084289-1357046074-8abd51?p=8866) |\n| 孤鹰（全2册） | 邵雪城 | [下载](https://url89.ctfile.com/f/31084289-1357046029-a3ef29?p=8866) |\n| 珠峰史诗 | 荣赫鹏 | [下载](https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866) |\n| 金银岛（读客经典） | 罗伯特・路易斯・史蒂文森 | [下载](https://url89.ctfile.com/f/31084289-1357045993-9650b6?p=8866) |\n| 曾国藩家书（全本全注全译） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357045999-309b55?p=8866) |\n| 整个巴黎属于我 | 莱斯利·M.M.布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866) |\n| 胡子有脸 | 西西 | [下载](https://url89.ctfile.com/f/31084289-1357045900-ac03ad?p=8866) |\n| Trust Exercise | Susan Choi | [下载](https://url89.ctfile.com/f/31084289-1357045894-05a1ea?p=8866) |\n| 企鹅的忧郁 | 安德烈・库尔科夫 | [下载](https://url89.ctfile.com/f/31084289-1357045798-191757?p=8866) |\n| 英国环岛之旅 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357045783-b17647?p=8866) |\n| 绝版民国小书馆 | 叶鋆生等 | [下载](https://url89.ctfile.com/f/31084289-1357045771-730497?p=8866) |\n| 卖马的女人 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357045738-eb7bec?p=8866) |\n| 在西伯利亚森林中 | 西尔万・泰松 | [下载](https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866) |\n| 倾城之恋（2019版） | 张爱玲 | [下载](https://url89.ctfile.com/f/31084289-1357045720-2b6e2f?p=8866) |\n| 山海经（全本全注全译） | 方韬译注 | [下载](https://url89.ctfile.com/f/31084289-1357045717-0dadd0?p=8866) |\n| 故都的秋（果麦经典） | 郁达夫 | [下载](https://url89.ctfile.com/f/31084289-1357045714-445e3b?p=8866) |\n| 萝西与苹果酒 | 洛瑞・李 | [下载](https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866) |\n| 灵魂漫长而黑暗的茶点时间 | 道格拉斯・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357045672-dda13f?p=8866) |\n| 神仙传（全本全注全译） | 葛洪 | [下载](https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866) |\n| 只有一个人生 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866) |\n| 中华生活经典系列（第一辑共11册） | 林洪等 | [下载](https://url89.ctfile.com/f/31084289-1357046236-5c0c2e?p=8866) |\n| 鸽羽（厄普代克作品） | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045633-3b7458?p=8866) |\n| 大卫·科波菲尔（果麦经典） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866) |\n| 夜航西飞 | 柏瑞尔・马卡姆 | [下载](https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866) |\n| 圣洁百合（厄普代克作品） | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045435-80896e?p=8866) |\n| 命运与狂怒 | 劳伦・格罗夫 | [下载](https://url89.ctfile.com/f/31084289-1357045408-c43a32?p=8866) |\n| 批评家之死 | 马丁・瓦尔泽 | [下载](https://url89.ctfile.com/f/31084289-1357045375-92d933?p=8866) |\n| 世界文学名著名译典藏（套装共50册） | 亚历山大・仲马 | [下载](https://url89.ctfile.com/f/31084289-1357045579-8eb63c?p=8866) |\n| 古都 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1357045330-d9a79d?p=8866) |\n| 山旅书札 | 伊莎贝拉・博德 | [下载](https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866) |\n| 大师和玛格丽特（果麦经典） | 米・阿・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357045261-32db15?p=8866) |\n| 去海拉尔 | 王咸 | [下载](https://url89.ctfile.com/f/31084289-1357045237-1155f9?p=8866) |\n| 泥土之界 | 希拉莉・乔顿 | [下载](https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866) |\n| 黑白 | 谷崎润一郎 | [下载](https://url89.ctfile.com/f/31084289-1357045204-4b1239?p=8866) |\n| 白牙（果麦经典） | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357045189-be69e1?p=8866) |\n| 兔子富了 | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045186-124685?p=8866) |\n| 前往阿姆河之乡 | 罗伯特・拜伦 | [下载](https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866) |\n| 厨房太平记 | 谷崎润一郎 | [下载](https://url89.ctfile.com/f/31084289-1357045153-e2431a?p=8866) |\n| 丛林之书（果麦经典） | 鲁德亚德・吉卜林 | [下载](https://url89.ctfile.com/f/31084289-1357045132-c19a7a?p=8866) |\n| 兔子歇了 | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045129-8b542b?p=8866) |\n| 中国精神读本 | 王蒙/王绍光 | [下载](https://url89.ctfile.com/f/31084289-1357045120-15504f?p=8866) |\n| 日升之处 | A.W.金莱克 | [下载](https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866) |\n| 怒海妖船 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357045072-9ea87c?p=8866) |\n| 诗经点醒 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866) |\n| 兔子，跑吧 | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045000-71d22e?p=8866) |\n| 老巴塔哥尼亚快车 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866) |\n| 佛兰德镜子 | dome | [下载](https://url89.ctfile.com/f/31084289-1357044964-66fcfd?p=8866) |\n| 张爱玲作品精选（共8册） | 张爱玲 | [下载](https://url89.ctfile.com/f/31084289-1357044931-653d40?p=8866) |\n| 兔子归来 | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357044880-adae9d?p=8866) |\n| 苹果木桌子及其他简记 | 赫尔曼・麦尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357044877-c7b3c9?p=8866) |\n| 怒海救援 | 凯西・谢尔曼等 | [下载](https://url89.ctfile.com/f/31084289-1357044832-8b760f?p=8866) |\n| 长眠不醒（读客版） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357044850-14a642?p=8866) |\n| 人间值得 | 中村恒子/奥田弘美 | [下载](https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866) |\n| 多瑙河之旅 | 克劳迪欧・马格里斯 | [下载](https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866) |\n| 樱风堂书店 | 村山早纪 | [下载](https://url89.ctfile.com/f/31084289-1357044775-82e48b?p=8866) |\n| 傲慢与偏见（果麦经典） | 简・奥斯汀 | [下载](https://url89.ctfile.com/f/31084289-1357044751-279929?p=8866) |\n| 流沙河讲古诗十九首 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357044709-330c0b?p=8866) |\n| 老先生 | 周实 | [下载](https://url89.ctfile.com/f/31084289-1357044673-2e0611?p=8866) |\n| 陶渊明集（作家榜经典文库） | 陶渊明 | [下载](https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866) |\n| 杰夫·戴尔作品套装（共5册） | 杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357044583-471d7c?p=8866) |\n| 纳兰词（作家榜经典文库） | 纳兰性德 | [下载](https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866) |\n| 上海译文TOP30名家名作大套装（套装共30本·2019年版） | 贾雷德・戴蒙德等 | [下载](https://url89.ctfile.com/f/31084289-1357045210-c6ded3?p=8866) |\n| 再见，吾爱（读客经典） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357044367-02fe4c?p=8866) |\n| 音乐大脑 | 塞萨尔・艾拉 | [下载](https://url89.ctfile.com/f/31084289-1357044223-76e5dc?p=8866) |\n| 致后代 | 贝托尔特・布莱希特 | [下载](https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866) |\n| 茶馆（作家榜经典文库） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866) |\n| 张岪与木心 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866) |\n| 周作人译文全集 | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357044202-ce9b41?p=8866) |\n| 双城记（作家榜经典文库） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357044055-3a2105?p=8866) |\n| 你当像鸟飞往你的山 | 塔拉・韦斯特弗 | [下载](https://url89.ctfile.com/f/31084289-1357044016-523ea4?p=8866) |\n| 覆舟的愉悦 | 朱塞培・翁加雷蒂 | [下载](https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866) |\n| 一日一善（套装全4册） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357044004-e0c6bb?p=8866) |\n| 笠翁对韵（作家榜经典文库） | 李渔 | [下载](https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866) |\n| 地球无应答 | 王诺诺 | [下载](https://url89.ctfile.com/f/31084289-1357043929-c25390?p=8866) |\n| 海明威诞辰120周年图文珍藏版文集（全18卷） | 海明威 | [下载](https://url89.ctfile.com/f/31084289-1357044511-3d087b?p=8866) |\n| 花与恶心 | 卡洛斯・德鲁蒙德・德・安德拉德 | [下载](https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866) |\n| 爱丽尔（果麦经典） | 西尔维娅・普拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866) |\n| 大地上的事情 | 苇岸 | [下载](https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866) |\n| 米沃什词典 | 切斯瓦夫・米沃什 | [下载](https://url89.ctfile.com/f/31084289-1357043800-b2c0ba?p=8866) |\n| 我将敢于亲吻你 | 阿方斯娜・斯托尔妮 | [下载](https://url89.ctfile.com/f/31084289-1357043794-7c46f5?p=8866) |\n| 国学大师顾随全集（套装10册） | 顾随 | [下载](https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866) |\n| 给孩子的中国历史故事（作家榜经典文库） | 汤芸畦 | [下载](https://url89.ctfile.com/f/31084289-1357043776-286c7b?p=8866) |\n| 康德《纯粹理性批判》句读 | 邓晓芒 | [下载](https://url89.ctfile.com/f/31084289-1357043740-d2094f?p=8866) |\n| 近代唯心论简释 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357043713-c67b88?p=8866) |\n| 风景中的少年 | 胡戈・冯・霍夫曼斯塔尔 | [下载](https://url89.ctfile.com/f/31084289-1357043686-99ceaf?p=8866) |\n| 夏天、烟火和我的尸体 | 乙一 | [下载](https://url89.ctfile.com/f/31084289-1357043674-f51d72?p=8866) |\n| 李清照诗词全集（作家榜经典文集） | 李清照 | [下载](https://url89.ctfile.com/f/31084289-1357043665-bf40ed?p=8866) |\n| 敌人的名字是宫本武藏 | 木下昌辉 | [下载](https://url89.ctfile.com/f/31084289-1357043602-ae92e2?p=8866) |\n| 中华经典普及文库（精选共15种20册） | 中华书局编辑部 | [下载](https://url89.ctfile.com/f/31084289-1357043722-741e01?p=8866) |\n| 吉本家的猫咪们 | 春野宵子 | [下载](https://url89.ctfile.com/f/31084289-1357043533-a39c3e?p=8866) |\n| 智慧书（作家榜经典文库） | 巴尔塔萨尔・格拉西安 | [下载](https://url89.ctfile.com/f/31084289-1357043470-8e7a30?p=8866) |\n| 从诗经到红楼梦 | 一条课堂 | [下载](https://url89.ctfile.com/f/31084289-1357043464-ad95e4?p=8866) |\n| 听客溪的朝圣 | 安妮・迪拉德 | [下载](https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866) |\n| 海明威作品精选系列（套装共6册） | 欧内斯特・米勒尔・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357043368-29e606?p=8866) |\n| 伦理学知性改进论 | 斯宾诺莎 | [下载](https://url89.ctfile.com/f/31084289-1357043332-be26e7?p=8866) |\n| 柏林，亚历山大广场（译文经典） | 阿尔弗雷德・德布林 | [下载](https://url89.ctfile.com/f/31084289-1357043308-cc3071?p=8866) |\n| 酉阳杂俎（全本全注全译） | 段成式 | [下载](https://url89.ctfile.com/f/31084289-1357043302-be1cec?p=8866) |\n| 胡适19堂文学课（作家榜经典文库） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357043251-5f125a?p=8866) |\n| 激荡的百年史 | 吉田茂 | [下载](https://url89.ctfile.com/f/31084289-1357043236-c78d00?p=8866) |\n| 当你老去 | 伊塔洛・斯韦沃 | [下载](https://url89.ctfile.com/f/31084289-1357043218-37b8f5?p=8866) |\n| 李白传 | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866) |\n| 风之影四部曲 | 卡洛斯・鲁依兹・萨丰 | [下载](https://url89.ctfile.com/f/31084289-1357043113-dd5324?p=8866) |\n| 忍不住的新努力（作家榜经典文库） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357043095-cf02bb?p=8866) |\n| 杨宪益中译作品集（全五卷） | 阿里斯托芬等 | [下载](https://url89.ctfile.com/f/31084289-1357043053-24a2f9?p=8866) |\n| 希尼三十年文选 | 谢默斯・希尼 | [下载](https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866) |\n| 格拉斯医生（译文经典） | 雅尔玛尔・瑟德尔贝里 | [下载](https://url89.ctfile.com/f/31084289-1357042873-c12a32?p=8866) |\n| 聊斋志异（全本全注全译） | 蒲松龄 | [下载](https://url89.ctfile.com/f/31084289-1357042888-47daec?p=8866) |\n| 格列佛游记（作家榜经典文库） | 乔纳森・斯威夫特 | [下载](https://url89.ctfile.com/f/31084289-1357042867-c3483f?p=8866) |\n| 粉笔人 | C.J.图德 | [下载](https://url89.ctfile.com/f/31084289-1357042825-f56dbd?p=8866) |\n| 沉思录（译文经典） | 马可・奥勒留 | [下载](https://url89.ctfile.com/f/31084289-1357042771-7f4bf0?p=8866) |\n| 画梁春尽落香尘 | 刘心武 | [下载](https://url89.ctfile.com/f/31084289-1357042753-f657fc?p=8866) |\n| 快乐王子（译文经典） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357042723-bfc360?p=8866) |\n| 战火家园 | 卡米拉・夏姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357042651-db3e89?p=8866) |\n| 金蔷薇（译文经典） | 帕乌斯托夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357042630-5634d4?p=8866) |\n| 撒马尔罕 | 阿敏・马卢夫 | [下载](https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866) |\n| 极简世界神话 | 马克・丹尼尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866) |\n| 冰冻时光之窗 | 尤里・维尼楚克 | [下载](https://url89.ctfile.com/f/31084289-1357042510-b9497c?p=8866) |\n| 大雪无痕（修订典藏版） | 陆天明 | [下载](https://url89.ctfile.com/f/31084289-1357042507-28ce63?p=8866) |\n| 名人传（译文经典） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1357042477-5d0e3f?p=8866) |\n| 格兰贝的年轻人 | 科林・巴雷特 | [下载](https://url89.ctfile.com/f/31084289-1357042450-f7cc4e?p=8866) |\n| 命运（修订典藏版） | 陆天明 | [下载](https://url89.ctfile.com/f/31084289-1357042417-58fafd?p=8866) |\n| 棉被（译文经典） | 田山花袋 | [下载](https://url89.ctfile.com/f/31084289-1357042351-df86cb?p=8866) |\n| 最后的独角兽 | 彼得・毕格 | [下载](https://url89.ctfile.com/f/31084289-1357042258-61b812?p=8866) |\n| 省委书记（修订典藏版） | 陆天明 | [下载](https://url89.ctfile.com/f/31084289-1357042276-7487a3?p=8866) |\n| 恶魔的交易 | 克劳斯・曼 | [下载](https://url89.ctfile.com/f/31084289-1357042216-d97448?p=8866) |\n| 24个比利 | 丹尼尔・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1357042204-b0cec2?p=8866) |\n| 燃烧的大脑 | 苏珊娜・卡哈兰 | [下载](https://url89.ctfile.com/f/31084289-1357042210-b00ec5?p=8866) |\n| 鸽子隧道 | 约翰・勒卡雷 | [下载](https://url89.ctfile.com/f/31084289-1357041985-d82b4b?p=8866) |\n| 逆流（译文经典） | 于斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357041973-baab99?p=8866) |\n| 瘟疫年纪事（译文经典） | 丹尼尔・笛福 | [下载](https://url89.ctfile.com/f/31084289-1357041763-ddc224?p=8866) |\n| 茅盾文学奖传世经典15部装（共33册） | 李国文等 | [下载](https://url89.ctfile.com/f/31084289-1357041607-c640ec?p=8866) |\n| 我爱迪克 | 克丽丝・克劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357041391-026711?p=8866) |\n| 太阳王与海妖 | 冯达·N.麦金泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357041379-6263bc?p=8866) |\n| 火星一号 | 朱个 | [下载](https://url89.ctfile.com/f/31084289-1357041376-a5c0bb?p=8866) |\n| 奥威尔杂文全集（全2册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866) |\n| 当我在一个仲夏清晨出走 | 洛瑞・李 | [下载](https://url89.ctfile.com/f/31084289-1357041316-13ceb7?p=8866) |\n| 大河恋 | 诺曼・麦克林恩 | [下载](https://url89.ctfile.com/f/31084289-1357041232-aec3d6?p=8866) |\n| 被涂污的鸟 | 耶日・科辛斯基 | [下载](https://url89.ctfile.com/f/31084289-1357041022-bb6b72?p=8866) |\n| 眩晕 | 祁媛 | [下载](https://url89.ctfile.com/f/31084289-1357040989-c5fa85?p=8866) |\n| 心灵、自我与社会（译文经典） | 米德 | [下载](https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866) |\n| 无麂岛之夜 | 池上 | [下载](https://url89.ctfile.com/f/31084289-1357040830-a8c559?p=8866) |\n| 艾略特文集（全5卷） | 托・斯・艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357040791-73a240?p=8866) |\n| 我们与祖先交谈的夜晚 | 萨沙・斯坦尼西奇 | [下载](https://url89.ctfile.com/f/31084289-1357040701-145d11?p=8866) |\n| 南方与北方（名著名译丛书） | 盖斯凯尔夫人 | [下载](https://url89.ctfile.com/f/31084289-1357040674-6dd07a?p=8866) |\n| 城堡（名著名译丛书） | 弗兰茨・卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1357040650-b9b5bf?p=8866) |\n| 最深的水是泪水 | 鲍尔吉・原野 | [下载](https://url89.ctfile.com/f/31084289-1357040617-eb3c15?p=8866) |\n| 沃普萧纪事 | 约翰・契弗 | [下载](https://url89.ctfile.com/f/31084289-1357040563-3844e1?p=8866) |\n| 世界少年文学经典文库·中国经典篇（全套30册） | 吴承恩等 | [下载](https://url89.ctfile.com/f/31084289-1357040800-945097?p=8866) |\n| 野兔 | 塞萨尔・艾拉 | [下载](https://url89.ctfile.com/f/31084289-1357040452-a92efa?p=8866) |\n| 奔跑的查理 | 查理・恩格 | [下载](https://url89.ctfile.com/f/31084289-1357040404-94e03c?p=8866) |\n| 从你的全世界路过（2019全新修订） | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1357040293-137a08?p=8866) |\n| 不锈时光 | 任曙林 | [下载](https://url89.ctfile.com/f/31084289-1357040479-46f77b?p=8866) |\n| 安娜表哥 | 余静如 | [下载](https://url89.ctfile.com/f/31084289-1357040278-6816f4?p=8866) |\n| 常识与通识（纪念版） | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866) |\n| 拔蒲歌 | 沈书枝 | [下载](https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866) |\n| 威尼斯日记 | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357039990-dbfb2f?p=8866) |\n| 梅毅说中华英雄史（全10册） | 梅毅 | [下载](https://url89.ctfile.com/f/31084289-1357040140-0d274d?p=8866) |\n| 一只胳膊的拳击 | 庞羽 | [下载](https://url89.ctfile.com/f/31084289-1357039870-60c650?p=8866) |\n| 沃普萧丑闻 | 约翰・契弗 | [下载](https://url89.ctfile.com/f/31084289-1357039864-fe0768?p=8866) |\n| 企鹅经典：小黑书（第二辑） | 奥斯卡・王尔德等 | [下载](https://url89.ctfile.com/f/31084289-1357039732-4d4163?p=8866) |\n| 老舍经典作品集（套装共10册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357039705-ce0174?p=8866) |\n| 存在主义是一种人道主义（译文经典） | 让-保罗・萨特 | [下载](https://url89.ctfile.com/f/31084289-1357039642-f8eb49?p=8866) |\n| 终止 | 樱木紫乃 | [下载](https://url89.ctfile.com/f/31084289-1357039603-f961ef?p=8866) |\n| 安静 | 艾林・卡格 | [下载](https://url89.ctfile.com/f/31084289-1357039495-22e41f?p=8866) |\n| 小说的八百万种写法 | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1357039474-4b3e24?p=8866) |\n| 空间的诗学（译文经典） | 加斯东・巴什拉 | [下载](https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866) |\n| 同名人 | 裘帕・拉希莉 | [下载](https://url89.ctfile.com/f/31084289-1357039456-5cef3d?p=8866) |\n| 骂观众 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357039432-b8a3ae?p=8866) |\n| 企鹅经典：小黑书（第一辑） | 薄伽丘等 | [下载](https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866) |\n| 海浪（译文经典） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357039228-13707b?p=8866) |\n| 雨必将落下 | 米歇尔・法柏 | [下载](https://url89.ctfile.com/f/31084289-1357039216-164527?p=8866) |\n| 海浪（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357039150-6a4545?p=8866) |\n| 来自遗忘的最深处 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357039075-4c44c6?p=8866) |\n| 为何，以及如何谋划一场火灾 | 杰西・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357039045-ac9204?p=8866) |\n| 罗生门（译文经典） | 芥川龙之介 | [下载](https://url89.ctfile.com/f/31084289-1357039024-fbf276?p=8866) |\n| 这样你就不会迷路 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357039021-60295e?p=8866) |\n| 孤城闭 | 米兰Lady | [下载](https://url89.ctfile.com/f/31084289-1357039006-1aa3c4?p=8866) |\n| 太阳船上的孩子 | 雅丝米娜・米哈伊洛维奇 | [下载](https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866) |\n| 诺贝尔文学奖大师作品集（套装共19册） | Digital Lab | [下载](https://url89.ctfile.com/f/31084289-1357038964-9471dd?p=8866) |\n| 奥兰多（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357038967-31be31?p=8866) |\n| 细雪 | 谷崎润一郎 | [下载](https://url89.ctfile.com/f/31084289-1357038934-2fa053?p=8866) |\n| 第四只手 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357038940-7b7b24?p=8866) |\n| 田园交响曲（译文经典） | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357038904-bcb0b1?p=8866) |\n| 小丑之花 | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357038895-3f3d8d?p=8866) |\n| 地球的新生 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038802-5275a0?p=8866) |\n| 民国典藏小钩沉系列（套装书共7册） | 芥川龙之介等 | [下载](https://url89.ctfile.com/f/31084289-1357038805-48bea2?p=8866) |\n| 缓慢的归乡 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357038769-f672c1?p=8866) |\n| 左撇子女人 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357038766-406e59?p=8866) |\n| 马尔特手记（译文经典） | 莱内・马利亚・里尔克 | [下载](https://url89.ctfile.com/f/31084289-1357038694-91674f?p=8866) |\n| 巨齿鲨 | 斯蒂夫・奥顿 | [下载](https://url89.ctfile.com/f/31084289-1357038691-82187b?p=8866) |\n| 弗勒希（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357038658-5b950b?p=8866) |\n| 残雪经典作品集（24本套装） | 残雪 | [下载](https://url89.ctfile.com/f/31084289-1357038718-2c72e6?p=8866) |\n| 末世之城（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357038598-b6383b?p=8866) |\n| 多余的人（果麦经典） | 莱蒙托夫  | [下载](https://url89.ctfile.com/f/31084289-1357038595-0cf589?p=8866) |\n| 幽暗国度 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866) |\n| 在地图结束的地方（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357038514-a54c28?p=8866) |\n| 人世间（全三册） | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357038496-ed84a7?p=8866) |\n| 印度：受伤的文明 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038451-62394a?p=8866) |\n| 惜别 | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357038448-089ef0?p=8866) |\n| 隔壁的女人 | 向田邦子 | [下载](https://url89.ctfile.com/f/31084289-1357038424-52f601?p=8866) |\n| 地球飞船 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866) |\n| 论小说与小说家（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357038409-cb997a?p=8866) |\n| 为奴十二年（译文经典） | 所罗门・诺瑟普 | [下载](https://url89.ctfile.com/f/31084289-1357038358-15a854?p=8866) |\n| 印度：百万叛变的今天 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866) |\n| 守门员面对罚点球时的焦虑 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357038346-ef6963?p=8866) |\n| 失控的地球 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038337-71ff2e?p=8866) |\n| 津轻 | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357038310-49be36?p=8866) |\n| 世间之路 | V. S. 奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038304-7876a3?p=8866) |\n| 夏日郊外的旅店 | 安娜-卡埃勒・雨昂 | [下载](https://url89.ctfile.com/f/31084289-1357038115-2ded2b?p=8866) |\n| 卡瓦利与克雷的神奇冒险 | 迈克尔・夏邦 | [下载](https://url89.ctfile.com/f/31084289-1357038055-ad70de?p=8866) |\n| 一起连环绑架案的新闻 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357037893-b383ce?p=8866) |\n| 斯通与骑士伙伴 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037887-c76d6d?p=8866) |\n| 密室中的旅行（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357037878-b5f9c7?p=8866) |\n| 我的奋斗1：父亲的葬礼 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1357037839-6b7aa9?p=8866) |\n| 天堂消息 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357037815-c1d2ef?p=8866) |\n| 甜蜜巴士 | 梅雷迪斯・梅 | [下载](https://url89.ctfile.com/f/31084289-1357037812-224f59?p=8866) |\n| 恶人传 | 约翰・班扬 | [下载](https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866) |\n| 阿吽 | 向田邦子 | [下载](https://url89.ctfile.com/f/31084289-1357037725-ba9a2a?p=8866) |\n| 恋爱中的男人 | 马丁・瓦尔泽 | [下载](https://url89.ctfile.com/f/31084289-1357037671-0d7dcf?p=8866) |\n| 弃儿汤姆·琼斯史（全2册） | 亨利・菲尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357037641-305812?p=8866) |\n| 模仿者 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037554-1eae8b?p=8866) |\n| 全民选举 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037491-26ed83?p=8866) |\n| 周作人经典作品合集（套装共9册） | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357037461-7d9d06?p=8866) |\n| 银河界区三部曲 | 弗诺・文奇 | [下载](https://url89.ctfile.com/f/31084289-1357037371-702f6f?p=8866) |\n| 写给大人的睡前故事 | 陈谌 | [下载](https://url89.ctfile.com/f/31084289-1357037335-23997b?p=8866) |\n| 毕司沃斯先生的房子 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037305-c3a875?p=8866) |\n| 伊甸园（译文经典） | 海明威 | [下载](https://url89.ctfile.com/f/31084289-1357037275-21f613?p=8866) |\n| 发条橙（全新译本） | 安东尼・伯吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357037221-aea276?p=8866) |\n| 西方视野里的中国合集（共10册） | 庄士敦等 | [下载](https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866) |\n| 武志红经典作品合集（套装共4册） | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866) |\n| 八部半 | 黄昱宁 | [下载](https://url89.ctfile.com/f/31084289-1357037161-fb1ee6?p=8866) |\n| 柏油娃娃 | 托妮・莫里森 | [下载](https://url89.ctfile.com/f/31084289-1357037164-700704?p=8866) |\n| 故宫怪兽（套装共3册） | 常怡 | [下载](https://url89.ctfile.com/f/31084289-1357037149-71d4a1?p=8866) |\n| 瓦尔登湖（译文经典） | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866) |\n| 子不语（果麦经典） | 袁枚 | [下载](https://url89.ctfile.com/f/31084289-1357036864-3b3707?p=8866) |\n| 奈保尔家书 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866) |\n| 唐宋传奇集（精装典藏版） | 蔡义江 | [下载](https://url89.ctfile.com/f/31084289-1357036696-49672a?p=8866) |\n| 聊天记录 | 萨莉・鲁尼 | [下载](https://url89.ctfile.com/f/31084289-1357036489-b8b57d?p=8866) |\n| 被猜死的人 | 田耳 | [下载](https://url89.ctfile.com/f/31084289-1357036468-e0797b?p=8866) |\n| 安吾人生谈（坂口安吾系列作品） | 坂口安吾 | [下载](https://url89.ctfile.com/f/31084289-1357036459-ecdec0?p=8866) |\n| 不连续杀人事件（坂口安吾系列作品） | 坂口安吾 | [下载](https://url89.ctfile.com/f/31084289-1357036450-e44554?p=8866) |\n| 哈里·戈贝尔事件的真相（全两册） | 若埃尔・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357036234-8b66ce?p=8866) |\n| 100：小小说百篇 | 乔治・曼加内利 | [下载](https://url89.ctfile.com/f/31084289-1357036240-367630?p=8866) |\n| 名著名译丛书（第三辑） | 圣埃克苏佩里等 | [下载](https://url89.ctfile.com/f/31084289-1357036372-54fcf2?p=8866) |\n| T.S.艾略特传 | 林德尔・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866) |\n| 名著名译丛书（第四辑） | 大仲马等 | [下载](https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866) |\n| 地狱书单 | 格雷迪・亨德里克斯 | [下载](https://url89.ctfile.com/f/31084289-1357036225-7848b6?p=8866) |\n| 罪与罚（名著名译丛书） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357035751-0f19fb?p=8866) |\n| 名著名译丛书（第一辑） | 莫泊桑等 | [下载](https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866) |\n| 加缪传 | 赫伯特・R.洛特曼 | [下载](https://url89.ctfile.com/f/31084289-1357035622-40e195?p=8866) |\n| 文字的力量 | 马丁・普克纳 | [下载](https://url89.ctfile.com/f/31084289-1357035619-df68bb?p=8866) |\n| 名著名译丛书（第二辑） | 荷马等 | [下载](https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866) |\n| 泰戈尔诗选（名著名译丛书） | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357035529-81da8d?p=8866) |\n| 黑铁时代 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035502-811759?p=8866) |\n| 鬼作家 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035496-5bc64f?p=8866) |\n| 儒学小史 | 干春松 | [下载](https://url89.ctfile.com/f/31084289-1357035481-1c43d7?p=8866) |\n| 噩梦巷 | 威廉・林赛・格雷沙姆 | [下载](https://url89.ctfile.com/f/31084289-1357035349-f24c2e?p=8866) |\n| 皆大欢喜（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866) |\n| 樱桃园（名著名译丛书） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357035322-e80b3f?p=8866) |\n| 阴间神探（套装6册） | 道门老九 | [下载](https://url89.ctfile.com/f/31084289-1357035340-f48b63?p=8866) |\n| 战时灯火（读客版） | 迈克尔・翁达杰 | [下载](https://url89.ctfile.com/f/31084289-1357035298-2002db?p=8866) |\n| 愤怒的葡萄 | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357035292-fafe32?p=8866) |\n| 被释放的祖克曼 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035274-ec6a81?p=8866) |\n| 契诃夫短篇小说选（名著名译丛书） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357035244-18370e?p=8866) |\n| 布拉格狂欢 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035217-ccde38?p=8866) |\n| 像雪一样温暖 | 王大进 | [下载](https://url89.ctfile.com/f/31084289-1357035193-47ab0e?p=8866) |\n| 死魂灵（名著名译丛书） | 果戈理 | [下载](https://url89.ctfile.com/f/31084289-1357035190-455dfe?p=8866) |\n| 垂死的肉身 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035178-cb8804?p=8866) |\n| 黄金时代 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035160-d37674?p=8866) |\n| 我是开豆腐店的，我只做豆腐 | 小津安二郎 | [下载](https://url89.ctfile.com/f/31084289-1357035157-62d9ec?p=8866) |\n| 卡利古拉 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866) |\n| 米德尔马契（名著名译丛书） | 乔治・艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357035091-250be1?p=8866) |\n| 退场的鬼魂 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035064-53a301?p=8866) |\n| 寻找无双 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035061-224a42?p=8866) |\n| 麦克白（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035055-a52df3?p=8866) |\n| 流亡与独立王国 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357035040-722b2f?p=8866) |\n| 简·爱（名著名译丛书） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357035043-4a5759?p=8866) |\n| 我的阴阳两界 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035031-a60fc1?p=8866) |\n| 解剖课 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035028-a2b7ba?p=8866) |\n| 评论文集 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357035013-9a2b5c?p=8866) |\n| 老妇还乡（名著名译丛书） | 迪伦马特 | [下载](https://url89.ctfile.com/f/31084289-1357035007-9dda46?p=8866) |\n| 昨日的世界 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866) |\n| 南方之星 | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357034878-849ebc?p=8866) |\n| 反抗者 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034860-79f647?p=8866) |\n| 欲望教授 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357034836-976ed6?p=8866) |\n| 白银时代 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357034809-9dfcdb?p=8866) |\n| 台湾《传记文学》珍藏系列（全15册） | 梁实秋/林语堂等 | [下载](https://url89.ctfile.com/f/31084289-1357034824-1edb29?p=8866) |\n| 吉尔·布拉斯（名著名译丛书） | 勒萨日 | [下载](https://url89.ctfile.com/f/31084289-1357034791-747b5e?p=8866) |\n| 乳房 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866) |\n| 夜行记 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357034770-67707c?p=8866) |\n| 鼠疫 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034764-a88dde?p=8866) |\n| 复活（名著名译丛书） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357034776-4f89d2?p=8866) |\n| 第一个人 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034710-aee0ac?p=8866) |\n| The Lost Hero | Rick Riordan | [下载](https://url89.ctfile.com/f/31084289-1357034704-83b347?p=8866) |\n| The Son of Neptune | Riordan, Rick | [下载](https://url89.ctfile.com/f/31084289-1357034701-12ce38?p=8866) |\n| The Blood of Olympus | Rick Riordan | [下载](https://url89.ctfile.com/f/31084289-1357034686-547a10?p=8866) |\n| The Year of the Flood | Margaret Atwood | [下载](https://url89.ctfile.com/f/31084289-1357034677-627783?p=8866) |\n| 没有人给他写信的上校 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357034659-dfacc3?p=8866) |\n| 哈克贝利·费恩历险记（读客经典） | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1357034635-bafac9?p=8866) |\n| 文学巨匠老舍作品珍藏集（套装53册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357034650-848b00?p=8866) |\n| 跳舞女郎 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1357034623-126b75?p=8866) |\n| 疯癫亚当 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1357034611-1bb945?p=8866) |\n| 文学百年经典（套装三册） | 李朝全 | [下载](https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866) |\n| 正义者 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866) |\n| 大师和玛格丽特（名著名译丛书） | 布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357034545-231c0d?p=8866) |\n| 洪水之年 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1357034530-12e063?p=8866) |\n| 既生魄 | 张广天 | [下载](https://url89.ctfile.com/f/31084289-1357034497-a955e3?p=8866) |\n| 西西弗神话 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866) |\n| 都兰趣话（名著名译丛书） | 奥诺雷・德・巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357034479-984c05?p=8866) |\n| 源氏物语（全译彩插绝美版） | 紫式部 | [下载](https://url89.ctfile.com/f/31084289-1357034587-717afe?p=8866) |\n| 强盗新娘 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1357034449-93c7ab?p=8866) |\n| 局外人（果麦经典） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034425-ba996e?p=8866) |\n| A Thousand Years of Good Prayers | Yiyun Li | [下载](https://url89.ctfile.com/f/31084289-1357034410-7818fe?p=8866) |\n| 我是你爸爸 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357034359-948c8d?p=8866) |\n| 道德经说什么 | 韩鹏杰 | [下载](https://url89.ctfile.com/f/31084289-1357034326-c79462?p=8866) |\n| 北上 | 徐则臣 | [下载](https://url89.ctfile.com/f/31084289-1357034275-7ee0c2?p=8866) |\n| 欧·亨利短篇小说选（名著名译丛书） | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1357034254-5ce4c2?p=8866) |\n| 丑牛系列之民国婉约（套装7本） | 江晓英/林杉/臧宪柱/李婍/牧来 | [下载](https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866) |\n| 王朔文集（典藏版） | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357034146-326c52?p=8866) |\n| 应物兄（全2册） | 李洱 | [下载](https://url89.ctfile.com/f/31084289-1357034098-e62c03?p=8866) |\n| 和电风扇一起摇头 | 大岛 | [下载](https://url89.ctfile.com/f/31084289-1357034092-9f46c2?p=8866) |\n| 牵风记 | 徐怀中 | [下载](https://url89.ctfile.com/f/31084289-1357034086-23a522?p=8866) |\n| 致女儿书 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357033981-f30b64?p=8866) |\n| 异乡人 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357033951-f2a1e6?p=8866) |\n| 菲兹杰拉德小说精选（套装共4册） | 弗朗西斯・司各特・菲兹杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357033936-250a7b?p=8866) |\n| 看上去很美 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866) |\n| 一本书就是一个喷嚏 | 杰克・格罗根 | [下载](https://url89.ctfile.com/f/31084289-1357033873-d0d32c?p=8866) |\n| 最后的访谈系列（套装共6册） | 欧内斯特・米勒尔・海明威等 | [下载](https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866) |\n| 速求共眠 | 阎连科 | [下载](https://url89.ctfile.com/f/31084289-1357033828-cbebcf?p=8866) |\n| 经典咏流传诗词曲赋集（套装21册） | 李白/王维等 | [下载](https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866) |\n| 从月亮来的男孩 | 安德鲁・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357033777-207e83?p=8866) |\n| 白鲸（名著名译丛书） | 赫尔曼・梅尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357033726-6ae4d3?p=8866) |\n| 飘（企鹅经典） | 玛格丽特・米切尔 | [下载](https://url89.ctfile.com/f/31084289-1357033714-39755f?p=8866) |\n| 一九八四（企鹅经典） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357033651-3000d6?p=8866) |\n| 姜夔词集（词系列） | 姜夔 | [下载](https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866) |\n| 敦煌本纪 | 叶舟 | [下载](https://url89.ctfile.com/f/31084289-1357033609-6e7d3e?p=8866) |\n| 上尉的女儿（企鹅经典） | 普希金 | [下载](https://url89.ctfile.com/f/31084289-1357033594-5c7f0b?p=8866) |\n| 不分心 | 亚历克斯・索勇－金・庞 | [下载](https://url89.ctfile.com/f/31084289-1357033558-d65235?p=8866) |\n| 小人物，怎么办？（企鹅经典） | 汉斯・法拉达 | [下载](https://url89.ctfile.com/f/31084289-1357033552-fc5367?p=8866) |\n| 恶意之山 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357033504-13c2d3?p=8866) |\n| 写小说最重要的十件事 | 厄休拉・勒古恩 | [下载](https://url89.ctfile.com/f/31084289-1357033486-6785a3?p=8866) |\n| 欧阳修词集（词系列） | 欧阳修 | [下载](https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866) |\n| 封神演义（果麦经典） | 许仲琳 | [下载](https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866) |\n| 孤独是一朵莲花（作家榜经典文库） | 郁达夫 | [下载](https://url89.ctfile.com/f/31084289-1357033468-53acb3?p=8866) |\n| 夜色温柔（企鹅经典） | F.S.菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357033453-716b81?p=8866) |\n| 牛蛙 | 胡迁 | [下载](https://url89.ctfile.com/f/31084289-1357033435-2bd061?p=8866) |\n| 唐宋词格律（词系列） | 龙榆生 | [下载](https://url89.ctfile.com/f/31084289-1357033402-d9e7be?p=8866) |\n| 亚特兰蒂斯之心 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033399-aedb1b?p=8866) |\n| 苏轼词集（词系列） | 苏轼 | [下载](https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866) |\n| 冬将军来的夏天 | 甘耀明 | [下载](https://url89.ctfile.com/f/31084289-1357033342-c27b37?p=8866) |\n| 魔山（企鹅经典） | 托马斯・曼 | [下载](https://url89.ctfile.com/f/31084289-1357033270-e62351?p=8866) |\n| 尸骨袋 | 斯蒂芬・金  | [下载](https://url89.ctfile.com/f/31084289-1357033264-2ab845?p=8866) |\n| 晏殊词集·晏幾道词集（词系列） | 晏殊/晏几道 | [下载](https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866) |\n| 我愿意是急流 | 裴多菲・山陀尔 | [下载](https://url89.ctfile.com/f/31084289-1357033246-a24a75?p=8866) |\n| 猫头鹰在黄昏起飞 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357033234-b6cfcb?p=8866) |\n| 重生：苏珊·桑塔格日记与笔记（1947-1963） | 苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866) |\n| BBC经典文化纪录片配套著作精选合集 | 迈克尔・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357033249-7df812?p=8866) |\n| 契诃夫短篇小说选（企鹅经典） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357033195-5988c1?p=8866) |\n| 香山帮 | 朱宏梅 | [下载](https://url89.ctfile.com/f/31084289-1357033168-09c55f?p=8866) |\n| 熊镇2 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357033165-9e1f41?p=8866) |\n| 博尔赫斯全集第一辑（套装共16册） | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357033171-09f6c3?p=8866) |\n| 短篇小说写作指南 | 美国《作家文摘》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866) |\n| 时间里的痴人 | 珍妮弗・伊根 | [下载](https://url89.ctfile.com/f/31084289-1357033180-e2b5a5?p=8866) |\n| 茵梦湖（企鹅经典） | 施托姆 | [下载](https://url89.ctfile.com/f/31084289-1357033138-01b7da?p=8866) |\n| 博尔赫斯全集第二辑（套装共12册） | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866) |\n| 了不起的盖茨比（企鹅经典） | F.S.菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866) |\n| 美食家 | 陆文夫 | [下载](https://url89.ctfile.com/f/31084289-1357033072-217156?p=8866) |\n| 简单：应对复杂世界的高级思维 | 木鱼/柳白 | [下载](https://url89.ctfile.com/f/31084289-1357033039-6a69db?p=8866) |\n| 周邦彦词集（词系列） | 周邦彦 | [下载](https://url89.ctfile.com/f/31084289-1357033030-271dc5?p=8866) |\n| 战争与和平（名著名译丛书） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866) |\n| 被封印的唐史 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357033009-fa3de9?p=8866) |\n| 贺铸词集（词系列） | 贺铸 | [下载](https://url89.ctfile.com/f/31084289-1357032997-d1ca33?p=8866) |\n| 黑暗昭昭（戈尔丁文集） | 威廉・戈尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357032988-e8826f?p=8866) |\n| 陆游词集（词系列） | 陆游 | [下载](https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866) |\n| IT84 | 张辛欣 | [下载](https://url89.ctfile.com/f/31084289-1357032934-09488a?p=8866) |\n| 教堂尖塔（戈尔丁文集） | 威廉・戈尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357032922-ca9637?p=8866) |\n| 李煜词集（词系列） | 李煜 | [下载](https://url89.ctfile.com/f/31084289-1357032910-cc40de?p=8866) |\n| 看不见的人（企鹅经典） | 拉尔夫・艾里森 | [下载](https://url89.ctfile.com/f/31084289-1357032838-8e346a?p=8866) |\n| 刘以鬯经典三部曲 | 刘以鬯 | [下载](https://url89.ctfile.com/f/31084289-1357032823-8e9769?p=8866) |\n| 独角兽 | 艾丽丝・默多克 | [下载](https://url89.ctfile.com/f/31084289-1357032814-2310b8?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第五辑） | 雅各布・布克哈特等 | [下载](https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866) |\n| 坟墓的闯入者（企鹅经典） | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357032805-2fdf34?p=8866) |\n| 嘿，小家伙 | 温酒 | [下载](https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866) |\n| 黑王子 | 艾丽丝・默多克 | [下载](https://url89.ctfile.com/f/31084289-1357032775-2d8d02?p=8866) |\n| 北京女子图鉴 | 王欣 | [下载](https://url89.ctfile.com/f/31084289-1357032742-fb8407?p=8866) |\n| 十五条狗 | 安德烈・亚历克西斯 | [下载](https://url89.ctfile.com/f/31084289-1357032739-cd5508?p=8866) |\n| 花雨枪 | 夏生 | [下载](https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866) |\n| 人间鲁迅 | 林贤治 | [下载](https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866) |\n| 修道院纪事 | 若泽・萨拉马戈 | [下载](https://url89.ctfile.com/f/31084289-1357032682-f9c457?p=8866) |\n| 无名指 | 李陀 | [下载](https://url89.ctfile.com/f/31084289-1357032643-ea6a01?p=8866) |\n| 当代英雄（企鹅经典） | 米哈伊尔・莱蒙托夫 | [下载](https://url89.ctfile.com/f/31084289-1357032583-5401e7?p=8866) |\n| 大海，大海 | 艾丽丝・默多克 | [下载](https://url89.ctfile.com/f/31084289-1357032586-efa32a?p=8866) |\n| 完美婚姻 | 米歇尔・里奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866) |\n| 伦敦文学小史 | 埃洛伊丝・米勒/萨姆・乔迪森 | [下载](https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866) |\n| 法定幸福 | 诺曼・马内阿 | [下载](https://url89.ctfile.com/f/31084289-1357032517-74cfb2?p=8866) |\n| 诺贝尔文学奖得主石黑一雄作品集（套装共8册） | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357032526-985657?p=8866) |\n| 蠹鱼文丛系列（套装10册） | 陈子善/叶瑜荪/李辉等  | [下载](https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866) |\n| 电厂之夜 | 爱德华多・萨切里 | [下载](https://url89.ctfile.com/f/31084289-1357032484-941c2a?p=8866) |\n| 灯塔血案 | P. D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357032475-a3eb97?p=8866) |\n| 死亡的故事 | 大卫・伊格曼 | [下载](https://url89.ctfile.com/f/31084289-1357032478-145139?p=8866) |\n| 四季，三餐，都随你 | 简猫 | [下载](https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866) |\n| 英国病人（企鹅经典） | 迈克尔・翁达杰 | [下载](https://url89.ctfile.com/f/31084289-1357032424-c5dfca?p=8866) |\n| 编舟记 | 三浦紫苑 | [下载](https://url89.ctfile.com/f/31084289-1357032418-a424c2?p=8866) |\n| 二十首情诗和一支绝望的歌 | 巴勃罗・聂鲁达 | [下载](https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866) |\n| 小于一 | 约瑟夫・布罗茨基 | [下载](https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866) |\n| 布隆夫曼脱单历险记 | 丹尼尔・华莱士 | [下载](https://url89.ctfile.com/f/31084289-1357032337-b2e454?p=8866) |\n| 论小丑 | 诺曼・马内阿 | [下载](https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866) |\n| 爱丽丝旅馆 | 小川洋子 | [下载](https://url89.ctfile.com/f/31084289-1357032292-1db373?p=8866) |\n| 献给艾拉·格雷的歌 | 大卫・阿尔蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866) |\n| 樱桃的滋味 | 阿巴斯・基阿鲁斯达米 | [下载](https://url89.ctfile.com/f/31084289-1357032268-b0e557?p=8866) |\n| 忧郁的热带 | 克洛德·列维-斯特劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866) |\n| 红拂夜奔 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357032253-de9ad1?p=8866) |\n| 都柏林的雨 | 卡尔・盖瑞 | [下载](https://url89.ctfile.com/f/31084289-1357032241-04972e?p=8866) |\n| 跟随周恩来过草地 | 张文宝 | [下载](https://url89.ctfile.com/f/31084289-1357032232-26530e?p=8866) |\n| 造梦师（套装共4册） | 陈佳同 | [下载](https://url89.ctfile.com/f/31084289-1357032256-0c0e76?p=8866) |\n| 棋王（纪念版） | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357032205-bbe80d?p=8866) |\n| 小岗村40年 | 贾鸿彬 | [下载](https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866) |\n| 沉默的大多数 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357032169-8cecf3?p=8866) |\n| 献给艾米丽的一朵玫瑰 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357032145-b37d53?p=8866) |\n| 罗生门（读客经典） | 芥川龙之介 | [下载](https://url89.ctfile.com/f/31084289-1357032109-6ad93e?p=8866) |\n| 闲话闲说（纪念版） | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357032094-c45426?p=8866) |\n| 宋词鉴赏辞典 | 唐圭璋/钟振振 | [下载](https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866) |\n| 唐诗鉴赏辞典 | 周啸天 | [下载](https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866) |\n| 时间的答案 | 卢思浩 | [下载](https://url89.ctfile.com/f/31084289-1357032070-1c4c86?p=8866) |\n| 七侯笔录 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357032064-f516e5?p=8866) |\n| 打字机上的缪斯 | 杰西・波顿 | [下载](https://url89.ctfile.com/f/31084289-1357032046-bcf6eb?p=8866) |\n| 感悟文学大师经典100册套装 | 萧枫 | [下载](https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866) |\n| 愤怒的葡萄（译文名著精选） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357032013-d0d355?p=8866) |\n| 三杯茶 | 葛瑞格・摩顿森/大卫・奥利佛・瑞林 | [下载](https://url89.ctfile.com/f/31084289-1357032001-2bc835?p=8866) |\n| 中国古典文学荟萃（全36册） | 沈复/吴楚材/吴调侯等 | [下载](https://url89.ctfile.com/f/31084289-1357032133-b8e344?p=8866) |\n| 了不起的盖茨比（作家榜经典文库） | 弗・司各特・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357031977-f1c06b?p=8866) |\n| 生如夏花（作家榜经典文库） | 拉宾德拉纳特・泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866) |\n| 此生是我吗 | 刘苇 | [下载](https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866) |\n| 文学大师精品（套装三十册） | 鲁迅/徐志摩/朱自清等  | [下载](https://url89.ctfile.com/f/31084289-1357031935-49b0cf?p=8866) |\n| 17岁，成为星或兽的季节 | 最果夕日 | [下载](https://url89.ctfile.com/f/31084289-1357031896-68686f?p=8866) |\n| 游泳回家 | 德博拉・利维 | [下载](https://url89.ctfile.com/f/31084289-1357031884-0e53c6?p=8866) |\n| 地下：东京地铁沙林毒气事件实录（套装共2册） | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357031869-499ce7?p=8866) |\n| 知更鸟女孩5：遗失的羽毛 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866) |\n| 动物农场（译文经典） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357031764-29356d?p=8866) |\n| 冬日笔记（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357031746-95d746?p=8866) |\n| 素年锦时 | 安妮宝贝 | [下载](https://url89.ctfile.com/f/31084289-1357031728-e066c5?p=8866) |\n| 煎饼坪（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357031713-7bf0a3?p=8866) |\n| 小红马（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](链接未找到) |\n| 银茶匙 | 中勘助 | [下载](https://url89.ctfile.com/f/31084289-1357031662-02c1ac?p=8866) |\n| 绿野仙踪全集（全14册） | 莱曼・弗兰克・鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357031788-1a3b36?p=8866) |\n| 交错的场景 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357031620-109a71?p=8866) |\n| 英格兰，英格兰 | 朱利安・巴恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357031614-a56b26?p=8866) |\n| 凝视太阳 | 朱利安・巴恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357031605-7148b5?p=8866) |\n| 世界经典文学名著四师深度解读推荐版（套装七册） | 威廉・福克纳等 | [下载](https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866) |\n| 一生必读的外国文学经典（套装35册）（经典译林） | 詹姆斯・乔伊斯等 | [下载](https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866) |\n| 烦恼的冬天（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357031449-a7ec38?p=8866) |\n| 罐头厂街（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357031428-357e47?p=8866) |\n| 冒牌人生 | 陈思安 | [下载](https://url89.ctfile.com/f/31084289-1357031416-d3e501?p=8866) |\n| 文学大师老舍精选剧本集（套装21册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031395-dbf371?p=8866) |\n| 文学大师老舍作品全集（套装五十五册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031389-1fea08?p=8866) |\n| 月亮下去了（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357031368-763178?p=8866) |\n| 人，岁月，生活 | 爱伦堡 | [下载](https://url89.ctfile.com/f/31084289-1357031377-705e7b?p=8866) |\n| 皮 | 库尔齐奥・马拉巴特 | [下载](https://url89.ctfile.com/f/31084289-1357031356-2f3f74?p=8866) |\n| 成为妮可 | 艾米・埃利斯・纳特 | [下载](https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866) |\n| 奇来前书 | 杨牧 | [下载](https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866) |\n| 奇来后书 | 杨牧 | [下载](https://url89.ctfile.com/f/31084289-1357031284-18a2ee?p=8866) |\n| 大师与玛格丽特 | 布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357031275-8620c1?p=8866) |\n| 文学大师老舍代表作作品集（套装九册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866) |\n| 人鼠之间（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357031245-271805?p=8866) |\n| 终结的感觉 | 朱利安・巴恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357031236-897f5d?p=8866) |\n| 慢慢学 | 托马斯・品钦 | [下载](https://url89.ctfile.com/f/31084289-1357031233-027c9c?p=8866) |\n| 了不起的盖茨比（果麦经典） | 弗朗西斯・司各特・菲兹杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357031194-680961?p=8866) |\n| 外国文学名著名译化境文库（套装共9册） | 化境文库编委会 | [下载](https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866) |\n| 布鲁克林的荒唐事（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357031161-0663b4?p=8866) |\n| 审判（果麦经典） | 弗兰茨・卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1357031086-d0d0f1?p=8866) |\n| 爱与死的年代 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357031077-d1a6b0?p=8866) |\n| 伙伴进行曲 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357031065-ab7513?p=8866) |\n| 山月记（果麦经典） | 中岛敦 | [下载](https://url89.ctfile.com/f/31084289-1357031062-5d4286?p=8866) |\n| 他从凤凰来：沈从文传 | 金介甫 | [下载](https://url89.ctfile.com/f/31084289-1357030948-655c86?p=8866) |\n| 有人在周围走动 | 胡里奥・科塔萨尔 | [下载](https://url89.ctfile.com/f/31084289-1357030918-9751a8?p=8866) |\n| 被占的宅子 | 胡里奥・科塔萨尔 | [下载](https://url89.ctfile.com/f/31084289-1357030912-f6d256?p=8866) |\n| 鞑靼人沙漠 | 迪诺・布扎蒂 | [下载](https://url89.ctfile.com/f/31084289-1357030852-8f4137?p=8866) |\n| 世界文学名著合辑（套装六十册） | 奥斯丁/勃朗特等 | [下载](https://url89.ctfile.com/f/31084289-1357031182-92bef5?p=8866) |\n| 阁楼上的疯女人 | 桑德拉・吉尔伯特/苏珊・古芭 | [下载](https://url89.ctfile.com/f/31084289-1357030792-df1d6e?p=8866) |\n| 陈希我疼痛小说三部曲 | 陈希我 | [下载](https://url89.ctfile.com/f/31084289-1357030783-193739?p=8866) |\n| 小说稗类 | 张大春 | [下载](https://url89.ctfile.com/f/31084289-1357030765-dedc99?p=8866) |\n| 锦灰堆 美人计 | 萧耳 | [下载](https://url89.ctfile.com/f/31084289-1357030711-cffcd0?p=8866) |\n| 纸短情长，民国大师们的最美情书（全6册套装） | 朱生豪/鲁迅/闻一多等 | [下载](https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866) |\n| 译文豆瓣高分必读经典套装 | Digital Lab | [下载](https://url89.ctfile.com/f/31084289-1357030654-cbc641?p=8866) |\n| 蒋勋说红楼梦（修订版） | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866) |\n| 文学、通俗文化和社会 | 利奥・洛文塔尔 | [下载](https://url89.ctfile.com/f/31084289-1357030576-bd1f90?p=8866) |\n| 重生三部曲 | 派特・巴克 | [下载](https://url89.ctfile.com/f/31084289-1357030570-38049c?p=8866) |\n| 山月记 | 中岛敦 | [下载](https://url89.ctfile.com/f/31084289-1357030540-cf1f19?p=8866) |\n| 不焦虑了 | 安藤俊介 | [下载](https://url89.ctfile.com/f/31084289-1357030516-b637e6?p=8866) |\n| 网与石（套装共2册） | 托马斯・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357030513-f4512b?p=8866) |\n| 黑色方尖碑 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357030498-51ee22?p=8866) |\n| 单独中的洞见 | 张方宇 | [下载](https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866) |\n| 人间词话（作家榜经典文库） | 王国维 | [下载](https://url89.ctfile.com/f/31084289-1357030492-572067?p=8866) |\n| 中国文学大师经典必读（套装100册） | 鲁迅/徐志摩/朱自清等 | [下载](https://url89.ctfile.com/f/31084289-1357030450-b187cd?p=8866) |\n| 鸟藏 | 老王子 | [下载](https://url89.ctfile.com/f/31084289-1357030411-768a7d?p=8866) |\n| 刘震云经典文集 | 刘震云 | [下载](https://url89.ctfile.com/f/31084289-1357030384-476010?p=8866) |\n| Red, White &#038; Royal Blue | Casey McQuiston | [下载](https://url89.ctfile.com/f/31084289-1357030360-475186?p=8866) |\n| 三毛典藏全集（14本套装） | 三毛 | [下载](https://url89.ctfile.com/f/31084289-1357030303-88ee37?p=8866) |\n| 民国大师精选典藏系列套装33册 | 林徽因等 | [下载](https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866) |\n| 寻找更明亮的天空 | 古尔瓦力・帕萨雷/娜德纳・古力 | [下载](https://url89.ctfile.com/f/31084289-1357030261-83d050?p=8866) |\n| 如果能重来，我想做熊孩 | 左手韩 | [下载](https://url89.ctfile.com/f/31084289-1357030297-38302e?p=8866) |\n| 人间失格（果麦经典） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357030258-b58d79?p=8866) |\n| 没有终点的列车 | 劳拉・麦克维 | [下载](https://url89.ctfile.com/f/31084289-1357030246-4da254?p=8866) |\n| 念楼学短 | 锺叔河 | [下载](https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866) |\n| 总统先生 | 米盖尔・安赫尔・阿斯图里亚斯 | [下载](https://url89.ctfile.com/f/31084289-1357030231-1af550?p=8866) |\n| 玉米人 | 米盖尔・安赫尔・阿斯图里亚斯 | [下载](https://url89.ctfile.com/f/31084289-1357030225-70b6ef?p=8866) |\n| 危地马拉传说 | 米盖尔・安赫尔・阿斯图里亚斯 | [下载](https://url89.ctfile.com/f/31084289-1357030228-0809f5?p=8866) |\n| 天真的幽默家 | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866) |\n| 夜空总有最大密度的蓝色 | 最果夕日 | [下载](https://url89.ctfile.com/f/31084289-1357030162-20452d?p=8866) |\n| 说文解字十二讲 | 万献初/刘会龙 | [下载](https://url89.ctfile.com/f/31084289-1357030201-30e984?p=8866) |\n| 时震 | 库尔特・冯内古特 | [下载](https://url89.ctfile.com/f/31084289-1357030117-9f931a?p=8866) |\n| 在新疆 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1357030111-69f33f?p=8866) |\n| 世界文学名著合辑（套装共50册） | 莎士比亚等 | [下载](https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866) |\n| 万物归一 | 君特・格拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357030096-2f337a?p=8866) |\n| 一个人的村庄 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1357030066-8b5d8b?p=8866) |\n| 翁贝托·埃科作品系列套装（共6册） | 翁贝托・埃科 | [下载](https://url89.ctfile.com/f/31084289-1357030105-3621bc?p=8866) |\n| 万古云霄 | 陈之藩 | [下载](https://url89.ctfile.com/f/31084289-1357030048-2b15f8?p=8866) |\n| 一叶秋 | 张大春 | [下载](https://url89.ctfile.com/f/31084289-1357030045-dffd66?p=8866) |\n| 曾国藩家书（果麦经典） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357030027-90dc35?p=8866) |\n| 英国诗歌选集（珍藏版）（套装上下册） | 王佐良等 | [下载](https://url89.ctfile.com/f/31084289-1357030003-5f317b?p=8866) |\n| 世界尽头是北京 | 绿妖 | [下载](https://url89.ctfile.com/f/31084289-1357029982-4d17b1?p=8866) |\n| 一朵桔梗花 | 连城三纪彦 | [下载](https://url89.ctfile.com/f/31084289-1357029967-d5cad4?p=8866) |\n| 天真汉 | 伏尔泰 | [下载](https://url89.ctfile.com/f/31084289-1357029955-6e8063?p=8866) |\n| 秀才的手表 | 袁哲生 | [下载](https://url89.ctfile.com/f/31084289-1357029946-9676a3?p=8866) |\n| 雨 | 黄锦树 | [下载](https://url89.ctfile.com/f/31084289-1357029928-6f83f9?p=8866) |\n| 长崎 | 埃里克・法伊 | [下载](https://url89.ctfile.com/f/31084289-1357029961-dd1cae?p=8866) |\n| 示弱的勇气 | 田口佳史 | [下载](https://url89.ctfile.com/f/31084289-1357029919-38941e?p=8866) |\n| 有趣的事实 | 亚当・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357029871-ef5328?p=8866) |\n| 对岸的她 | 角田光代 | [下载](https://url89.ctfile.com/f/31084289-1357029859-6cc541?p=8866) |\n| 凹凸相对论 | 傅首尔/吴瑟斯 | [下载](https://url89.ctfile.com/f/31084289-1357029856-671c30?p=8866) |\n| 闪闪发光的人生 | 小川糸 | [下载](https://url89.ctfile.com/f/31084289-1357029838-3b3f7e?p=8866) |\n| 万有引力之虹 | 托马斯・品钦 | [下载](https://url89.ctfile.com/f/31084289-1357029823-fa6ccd?p=8866) |\n| 鲤·时间胶囊 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029820-93da62?p=8866) |\n| 鲤·与书私奔 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866) |\n| 鲤·文艺青年 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029814-7a5327?p=8866) |\n| 鲤·旅馆 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029808-80bff1?p=8866) |\n| 鲤·匿名作家 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029811-0cd352?p=8866) |\n| 童年（名著译林） | 马克西姆・高尔基 | [下载](https://url89.ctfile.com/f/31084289-1357029802-95cf59?p=8866) |\n| 简·爱（名著译林） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866) |\n| 老人与海（名著译林） | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357029796-8ad781?p=8866) |\n| 格列佛游记（名著译林） | 乔纳森・斯威夫特 | [下载](https://url89.ctfile.com/f/31084289-1357029787-13d237?p=8866) |\n| 钢铁是怎样炼成的（名著译林） | 尼・奥斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866) |\n| 向着光明 | 太田治子 | [下载](https://url89.ctfile.com/f/31084289-1357029775-bfc8a3?p=8866) |\n| 作家和出版人 | 西格弗里德・温塞德  | [下载](https://url89.ctfile.com/f/31084289-1357029769-5eb081?p=8866) |\n| The Saga of Gunnlaug Serpent-tongue | Anon Anon | [下载](https://url89.ctfile.com/f/31084289-1357029748-cd4b3f?p=8866) |\n| 雅古复仇记 | 欧仁・勒儒瓦 | [下载](https://url89.ctfile.com/f/31084289-1357029712-35b82d?p=8866) |\n| 怎样读经典 | 王宁/彭林/孙钦善 | [下载](https://url89.ctfile.com/f/31084289-1357029706-559436?p=8866) |\n| 咒语 | 库尔特・冯内古特 | [下载](https://url89.ctfile.com/f/31084289-1357029688-251b45?p=8866) |\n| 鲤·写作课 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029592-8f188f?p=8866) |\n| 人生海海 | 麦家 | [下载](https://url89.ctfile.com/f/31084289-1357029568-bb14ec?p=8866) |\n| 埃科谈文学 | 翁贝托・埃科 | [下载](https://url89.ctfile.com/f/31084289-1357029565-dea3c1?p=8866) |\n| 正本清源说红楼 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1357029559-e08768?p=8866) |\n| 脚步，是文化的刻度 | 费孝通 | [下载](https://url89.ctfile.com/f/31084289-1357029556-27c945?p=8866) |\n| 撒旦探戈 | 克拉斯诺霍尔卡伊・拉斯洛 | [下载](https://url89.ctfile.com/f/31084289-1357029538-ece48b?p=8866) |\n| 无人岛生存十六人 | 须川邦彦 | [下载](https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866) |\n| 长长的回家路 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357029496-883d15?p=8866) |\n| 足球往事 | 爱德华多・加莱亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357029478-ccc720?p=8866) |\n| 洋相 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357029469-3e7113?p=8866) |\n| 富兰克林自传（译文名著精选） | 本杰明・富兰克林 | [下载](https://url89.ctfile.com/f/31084289-1357029466-e938e1?p=8866) |\n| 四个春天 | 陆庆屹 | [下载](https://url89.ctfile.com/f/31084289-1357029481-41006d?p=8866) |\n| 新刻绣像批评金瓶梅 | 兰陵笑笑生 | [下载](链接未找到) |\n| 黑箱：日本之耻 | 伊藤诗织 | [下载](https://url89.ctfile.com/f/31084289-1357029460-1e1c60?p=8866) |\n| 寂寞之井 | 拉德克利夫・霍尔 | [下载](https://url89.ctfile.com/f/31084289-1357029445-062f0e?p=8866) |\n| 一个人的文艺复兴 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1357029421-adc6a2?p=8866) |\n| 失乐园（全新林译本） | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1357029388-72e790?p=8866) |\n| 人间失格（作家榜经典文库） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357029385-ae493f?p=8866) |\n| 永恒先生 | 亚伦・锡尔 | [下载](https://url89.ctfile.com/f/31084289-1357029370-2862a0?p=8866) |\n| 深思与省悟 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866) |\n| 南方高速 | 胡里奥・科塔萨尔 | [下载](https://url89.ctfile.com/f/31084289-1357029331-edca3c?p=8866) |\n| 日熄 | 閻連科 | [下载](https://url89.ctfile.com/f/31084289-1357029322-0f8d7b?p=8866) |\n| 愚人船（典藏本） | 塞巴斯蒂安・勃兰特 | [下载](https://url89.ctfile.com/f/31084289-1357029340-24d8b1?p=8866) |\n| 爱德华·巴纳德的堕落：毛姆短篇小说全集1 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357029307-46c4ce?p=8866) |\n| 周国平尼采译著系列 | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1357029268-e62a4a?p=8866) |\n| 爱情、疯狂和死亡的故事 | 奥拉西奥・基罗加 | [下载](https://url89.ctfile.com/f/31084289-1357029241-fe0943?p=8866) |\n| 夏洛克是我的名字 | 霍华德・雅各布森 | [下载](https://url89.ctfile.com/f/31084289-1357029223-e61818?p=8866) |\n| 如何研究中国（增订本） | 曹锦清 | [下载](https://url89.ctfile.com/f/31084289-1357029193-76f098?p=8866) |\n| 钱理群作品精编（共8册） | 钱理群 | [下载](https://url89.ctfile.com/f/31084289-1357029190-be6f44?p=8866) |\n| 红楼梦（果麦经典） | 曹雪芹 | [下载](https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866) |\n| 三国演义（果麦经典） | 罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866) |\n| 西游记（果麦经典） | 吴承恩 | [下载](https://url89.ctfile.com/f/31084289-1357029133-504b14?p=8866) |\n| 水浒传（果麦经典） | 施耐庵 | [下载](https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866) |\n| 纽约三部曲（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029091-7d5ea9?p=8866) |\n| 没有神的所在 ：私房阅读《金瓶梅》 | 侯文咏 | [下载](链接未找到) |\n| 捎话 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1357029082-d44a5a?p=8866) |\n| 黑暗地母的礼物（下） | 残雪 | [下载](https://url89.ctfile.com/f/31084289-1357029073-348075?p=8866) |\n| 群山回唱 | 卡勒德・胡赛尼 | [下载](https://url89.ctfile.com/f/31084289-1357029064-c691c9?p=8866) |\n| 人间失格（修订典藏本） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357029007-403416?p=8866) |\n| 普通读者 | 西闪 | [下载](https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866) |\n| 窃天书 | 逆水行舸 | [下载](https://url89.ctfile.com/f/31084289-1357028977-26b93c?p=8866) |\n| 我知道你们又来这一套 | 罗杰・伊伯特 | [下载](https://url89.ctfile.com/f/31084289-1357028974-b269a9?p=8866) |\n| 我与父辈 | 阎连科 | [下载](https://url89.ctfile.com/f/31084289-1357028956-93737c?p=8866) |\n| 我要快乐，不必正常 | 珍妮特・温特森 | [下载](https://url89.ctfile.com/f/31084289-1357028950-8cc38b?p=8866) |\n| 完美的真空 | 斯坦尼斯拉夫・莱姆 | [下载](https://url89.ctfile.com/f/31084289-1357028944-66d399?p=8866) |\n| 六里庄遗事 | 东东枪 | [下载](https://url89.ctfile.com/f/31084289-1357028917-a4cf2d?p=8866) |\n| 金性尧选唐宋诗新注 | 金性尧 | [下载](https://url89.ctfile.com/f/31084289-1357028893-8fd3a1?p=8866) |\n| 金圣叹批评本西厢记 | 王实甫 | [下载](https://url89.ctfile.com/f/31084289-1357028926-90d03b?p=8866) |\n| 猴子·罗汉池 | 袁哲生 | [下载](https://url89.ctfile.com/f/31084289-1357028848-ed714f?p=8866) |\n| 高尔基自传三部曲（读客经典） | 玛克西姆・高尔基 | [下载](https://url89.ctfile.com/f/31084289-1357028830-4eb235?p=8866) |\n| 人类群星闪耀时（读客经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357028860-2bbd11?p=8866) |\n| 裂 | 孙频 | [下载](https://url89.ctfile.com/f/31084289-1357028737-811323?p=8866) |\n| 疼 | 孙频 | [下载](https://url89.ctfile.com/f/31084289-1357028722-09f04e?p=8866) |\n| 月亮与六便士（读客经典） | 毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357028707-7117d7?p=8866) |\n| 海底两万里（读客经典） | 凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357028590-8917cf?p=8866) |\n| 随风飘舞的塑料布 | 森绘都 | [下载](https://url89.ctfile.com/f/31084289-1357028566-77b8a6?p=8866) |\n| 木星的卫星 | 艾丽丝・门罗 | [下载](https://url89.ctfile.com/f/31084289-1357028542-203e6c?p=8866) |\n| 黑暗地母的礼物（上） | 残雪 | [下载](https://url89.ctfile.com/f/31084289-1357028494-c2546a?p=8866) |\n| 麻衣神探（套装4册） | 御风楼主人 | [下载](https://url89.ctfile.com/f/31084289-1357028446-56fb55?p=8866) |\n| 空响炮 | 王占黑 | [下载](https://url89.ctfile.com/f/31084289-1357028413-0d58b2?p=8866) |\n| 库蒙的食人兽 | 吉姆・科比特 | [下载](https://url89.ctfile.com/f/31084289-1357028389-9bc0c8?p=8866) |\n| 到灯塔去（伍尔夫文集） | 弗吉尼亚・伍尔夫  | [下载](https://url89.ctfile.com/f/31084289-1357028380-bf539a?p=8866) |\n| 苦儿流浪记（果麦经典） | 埃克多・马洛 | [下载](https://url89.ctfile.com/f/31084289-1357028341-fbd188?p=8866) |\n| 老虎的妻子 | 蒂亚・奥布莱特 | [下载](https://url89.ctfile.com/f/31084289-1357028332-33c1fc?p=8866) |\n| 李劼人文学作品合集（套装九册） | 李劼人 | [下载](https://url89.ctfile.com/f/31084289-1357028308-3a0522?p=8866) |\n| 巴黎圣母院（权威全译典藏版） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028281-88645a?p=8866) |\n| 巴黎圣母院（经典译林） | 维克多・雨果 | [下载](链接未找到) |\n| 巴黎圣母院（世界十大文学名著） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866) |\n| 巴黎圣母院（作家榜经典文库） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028299-c59dc2?p=8866) |\n| 罐头厂街 | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357028224-9cdc07?p=8866) |\n| 濹东绮谭 | 永井荷风 | [下载](https://url89.ctfile.com/f/31084289-1357028218-eb6279?p=8866) |\n| 竞艳 | 永井荷风 | [下载](https://url89.ctfile.com/f/31084289-1357028212-1dd394?p=8866) |\n| 地狱之花 | 永井荷风 | [下载](https://url89.ctfile.com/f/31084289-1357028209-66a767?p=8866) |\n| 余生 | 黎紫书 | [下载](https://url89.ctfile.com/f/31084289-1357028194-692d38?p=8866) |\n| 无可无不可的王国 | 汪若 | [下载](https://url89.ctfile.com/f/31084289-1357028152-bb43b9?p=8866) |\n| 孤独及其所创造的（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357028131-874bba?p=8866) |\n| 怪医杜立德（果麦经典） | 休・洛夫廷 | [下载](https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866) |\n| 龟背上的世界 | 约翰・格林 | [下载](https://url89.ctfile.com/f/31084289-1357028080-60ab23?p=8866) |\n| 见字如来 | 张大春 | [下载](https://url89.ctfile.com/f/31084289-1357028047-c7408c?p=8866) |\n| 姜饼人 | 詹姆斯・帕特里克・唐利维 | [下载](https://url89.ctfile.com/f/31084289-1357028035-cacb46?p=8866) |\n| 黑羊 | 奥古斯托・蒙特罗索 | [下载](https://url89.ctfile.com/f/31084289-1357028038-89760c?p=8866) |\n| 花园里的机器人 | 黛博拉・因斯托 | [下载](https://url89.ctfile.com/f/31084289-1357028026-01f454?p=8866) |\n| 巴山夜雨 | 张恨水 | [下载](https://url89.ctfile.com/f/31084289-1357028020-cdc0f8?p=8866) |\n| 大树 | 贝尔纳・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357027990-fdb107?p=8866) |\n| 阿努比斯之门 | 提姆・鲍尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357027972-26c9ea?p=8866) |\n| 浮沉万象记 | 毛晓雯 | [下载](https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866) |\n| 都会中的孤岛 | 坂口安吾 | [下载](https://url89.ctfile.com/f/31084289-1357027945-d6bfc5?p=8866) |\n| 利维尔和我 | 罗伯特・罗素 | [下载](https://url89.ctfile.com/f/31084289-1357027951-0e0d4c?p=8866) |\n| 试论疲倦 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357027906-d5f6a8?p=8866) |\n| 世间的名字都是秘密 | 苏缨 | [下载](https://url89.ctfile.com/f/31084289-1357027894-123174?p=8866) |\n| 去往第九王国 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357027882-f1d960?p=8866) |\n| 凄凉别墅 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357027876-9c32a7?p=8866) |\n| 春时樱，秋时叶 | 德富芦花  | [下载](https://url89.ctfile.com/f/31084289-1357027903-12eb42?p=8866) |\n| 被遗忘的花园 | 凯特・莫顿 | [下载](https://url89.ctfile.com/f/31084289-1357027867-edef3d?p=8866) |\n| 保龄球的意识流 | 陆源 | [下载](https://url89.ctfile.com/f/31084289-1357027822-5f8f1a?p=8866) |\n| 枕草子（作家榜经典文库） | 清少纳言 | [下载](https://url89.ctfile.com/f/31084289-1357027870-72fe86?p=8866) |\n| 尼尔斯骑鹅历险记（作家榜经典文库） | 塞尔玛・拉格洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866) |\n| 海明威精选集（套装共4册） | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027795-430894?p=8866) |\n| 罗兰·巴特文选（全6册） | 罗兰・巴特 | [下载](https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866) |\n| 寻找邓巴 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1357027765-9137a9?p=8866) |\n| 她的小梨窝 | 唧唧的猫 | [下载](链接未找到) |\n| 愿为西南风 | 闻人可轻 | [下载](https://url89.ctfile.com/f/31084289-1357027759-a931a4?p=8866) |\n| 悠游小说林 | 安贝托・艾柯 | [下载](https://url89.ctfile.com/f/31084289-1357027741-c5060a?p=8866) |\n| 一个市民的自白 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027729-f9c575?p=8866) |\n| 殷红的花朵 | 约翰・高尔斯华绥 | [下载](https://url89.ctfile.com/f/31084289-1357027726-5b41c4?p=8866) |\n| 一个女人 | 艾斯特哈兹・彼得 | [下载](https://url89.ctfile.com/f/31084289-1357027705-4c0ba5?p=8866) |\n| 一个人的遭遇 | 肖洛霍夫 | [下载](https://url89.ctfile.com/f/31084289-1357027708-872d37?p=8866) |\n| 幸存者回忆录 | 多丽丝・莱辛 | [下载](https://url89.ctfile.com/f/31084289-1357027693-2cafef?p=8866) |\n| 荨麻开花 | 哈瑞・马丁松 | [下载](https://url89.ctfile.com/f/31084289-1357027696-7f9578?p=8866) |\n| 夜的草 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357027684-2969f4?p=8866) |\n| 365夜故事：春夏秋冬（套装共4册） | 叶圣陶/赵冰波等 | [下载](https://url89.ctfile.com/f/31084289-1357027690-6c12c9?p=8866) |\n| 老残游记（作家榜经典文库） | 刘鹗 | [下载](https://url89.ctfile.com/f/31084289-1357027681-26f941?p=8866) |\n| 水滴的音乐 | 阿尔多斯・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357027666-cf6538?p=8866) |\n| 绿山墙的安妮（作家榜经典文库） | 露西・莫德・蒙格玛丽 | [下载](https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866) |\n| 骆驼祥子（作家榜经典文库） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357027672-0c6153?p=8866) |\n| 菩萨蛮 | 苏童 | [下载](链接未找到) |\n| 向日葵 | 苏童 | [下载](链接未找到) |\n| 蛇为什么会飞 | 苏童 | [下载](链接未找到) |\n| 神女峰 | 苏童 | [下载](链接未找到) |\n| 骑兵 | 苏童 | [下载](链接未找到) |\n| 老人与海（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866) |\n| 死屋手记（企鹅经典） | 陀思妥耶夫斯基 | [下载](链接未找到) |\n| 喂喂下北泽 | 吉本芭娜娜 | [下载](https://url89.ctfile.com/f/31084289-1357027651-fd0eab?p=8866) |\n| 三十三年梦 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1357027630-221dda?p=8866) |\n| 天使，望故乡 | 托马斯・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357027621-312a39?p=8866) |\n| 无处还乡（套装共2册） | 托马斯・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357027618-b08e33?p=8866) |\n| 书籍的世界 | 赫尔曼黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357027612-b2d143?p=8866) |\n| 喜剧作家 | 止庵 | [下载](https://url89.ctfile.com/f/31084289-1357027600-a9ddae?p=8866) |\n| 包法利夫人 | 居斯达夫・福楼拜 | [下载](https://url89.ctfile.com/f/31084289-1357027603-cfcf3f?p=8866) |\n| 枕草子（读客经典） | 清少纳言 | [下载](https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866) |\n| 单读17：人的困境 | 吴琦主编 | [下载](https://url89.ctfile.com/f/31084289-1357027582-858cfb?p=8866) |\n| 单读18：都市一无所有 | 吴琦主编 | [下载](https://url89.ctfile.com/f/31084289-1357027570-69e4e0?p=8866) |\n| 单读19：到未来去 | 吴琦主编 | [下载](https://url89.ctfile.com/f/31084289-1357027576-7935d7?p=8866) |\n| 荒谬的墙 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866) |\n| 哈佛非虚构写作课：怎样讲好一个故事 | 马克・克雷默/温迪・考尔 | [下载](https://url89.ctfile.com/f/31084289-1357027537-a21903?p=8866) |\n| 静静的顿河（名著名译丛书） | 米・肖洛霍夫 | [下载](https://url89.ctfile.com/f/31084289-1357027588-0583b9?p=8866) |\n| 鬼 | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357027531-e0ac8e?p=8866) |\n| 密西西比 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357027534-c6bd4e?p=8866) |\n| 你是一百只眼睛的水面 | 加布列拉・米斯特拉尔 | [下载](https://url89.ctfile.com/f/31084289-1357027525-6abbc5?p=8866) |\n| 匿名 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1357027516-22199b?p=8866) |\n| 暖梦 | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1357027507-c137e1?p=8866) |\n| 女人的食指 | 向田邦子 | [下载](https://url89.ctfile.com/f/31084289-1357027498-8a4dd7?p=8866) |\n| 米赫尔 | 弗雷德里克・米斯特拉尔 | [下载](https://url89.ctfile.com/f/31084289-1357027495-1c4f2a?p=8866) |\n| 平家物语 | 郑清茂 | [下载](https://url89.ctfile.com/f/31084289-1357027519-13da66?p=8866) |\n| 林家铺子 | 茅盾 | [下载](https://url89.ctfile.com/f/31084289-1357027486-d72605?p=8866) |\n| 妻妾成群 | 苏童 | [下载](链接未找到) |\n| 我的帝王生涯 | 苏童 | [下载](链接未找到) |\n| 武则天 | 苏童 | [下载](链接未找到) |\n| 红粉 | 苏童 | [下载](链接未找到) |\n| 格列佛游记（果麦经典） | 乔纳森・斯威夫特 | [下载](https://url89.ctfile.com/f/31084289-1357027510-2f2be5?p=8866) |\n| 迸涌的流泉 | 马丁・瓦尔泽 | [下载](https://url89.ctfile.com/f/31084289-1357027471-98fa46?p=8866) |\n| 局外人（读客经典） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866) |\n| 白鲸（作家榜经典文库） | 赫尔曼・麦尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357027480-eb7b21?p=8866) |\n| 伤心咖啡馆之歌（作家榜经典文库） | 卡森・麦卡勒斯 | [下载](https://url89.ctfile.com/f/31084289-1357027462-3af9cb?p=8866) |\n| 老人与海（作家榜经典文库） | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027459-37a5f7?p=8866) |\n| 春天与阿修罗 | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1357027450-e73925?p=8866) |\n| 痴儿西木传 | 格里美尔斯豪森 | [下载](链接未找到) |\n| 痴人之爱 | 谷崎润一郎 | [下载](https://url89.ctfile.com/f/31084289-1357027447-870701?p=8866) |\n| 草叶集 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027444-42197e?p=8866) |\n| 搏击俱乐部 | 恰克・帕拉尼克 | [下载](https://url89.ctfile.com/f/31084289-1357027441-67fe4b?p=8866) |\n| 八月的星期天 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357027435-819263?p=8866) |\n| 反叛者 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027423-a2e18f?p=8866) |\n| 地铁姑娘扎姬 | 雷蒙・格诺 | [下载](https://url89.ctfile.com/f/31084289-1357027417-3b5646?p=8866) |\n| 丛林之书 | 鲁德亚德・吉卜林 | [下载](https://url89.ctfile.com/f/31084289-1357027414-2e39b2?p=8866) |\n| 斗牛士之名 | 路易斯・塞普尔维达 | [下载](https://url89.ctfile.com/f/31084289-1357027405-82e241?p=8866) |\n| 帝国轶闻 | 费尔南多・德尔帕索 | [下载](https://url89.ctfile.com/f/31084289-1357027411-d99e3e?p=8866) |\n| 多情客游记 | 劳伦斯・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1357027396-557075?p=8866) |\n| 三言二拍典藏版套装（作家榜经典文库） | 冯梦龙/凌濛初 | [下载](https://url89.ctfile.com/f/31084289-1357027468-fe4fe6?p=8866) |\n| 尤利西斯（读客经典） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357027420-0f8297?p=8866) |\n| 赴宴之前 | 毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357027378-2b2b27?p=8866) |\n| 佛罗伦萨之夜（译文经典） | 海因里希・海涅 | [下载](https://url89.ctfile.com/f/31084289-1357027390-c641ae?p=8866) |\n| 丰饶与贫瘠 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1357027381-2af7f7?p=8866) |\n| 分手在布达 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027363-6c9da6?p=8866) |\n| 不乖的哲学家 | 罗朗・古内尔 | [下载](https://url89.ctfile.com/f/31084289-1357027357-6fca3e?p=8866) |\n| 独家记忆 | 木浮生 | [下载](https://url89.ctfile.com/f/31084289-1357027354-a1ded4?p=8866) |\n| 青鸟故事集 | 李敬泽 | [下载](链接未找到) |\n| 地铁上读书的女孩 | 克里斯蒂娜・费雷-弗勒里 | [下载](https://url89.ctfile.com/f/31084289-1357027249-327cf8?p=8866) |\n| 交际花盛衰记（企鹅经典） | 巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357027228-7f0546?p=8866) |\n| 企鹅青少年文学经典系列（套装共10册） | 刘易斯・卡罗尔等 | [下载](https://url89.ctfile.com/f/31084289-1357027315-5cf5f6?p=8866) |\n| 繁花 | 金宇澄 | [下载](https://url89.ctfile.com/f/31084289-1357027180-6130db?p=8866) |\n| 城南旧事 | 林海音 | [下载](https://url89.ctfile.com/f/31084289-1357027150-9fa4ca?p=8866) |\n| 刀锋（果麦经典） | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357027141-8e7a86?p=8866) |\n| 食人魔花园 | 蕾拉・斯利玛尼 | [下载](https://url89.ctfile.com/f/31084289-1357027132-121fe8?p=8866) |\n| 爱丽丝漫游奇境（作家榜经典文库） | 刘易斯・卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357027171-b9c3bc?p=8866) |\n| 亲爱的小孩 | 露西・狄伦 | [下载](https://url89.ctfile.com/f/31084289-1357027099-2e54b5?p=8866) |\n| 宋词三百首（作家榜经典文库） | 上彊村民 | [下载](https://url89.ctfile.com/f/31084289-1357027120-8ec566?p=8866) |\n| 婚姻中的陌生人 | 埃米尔・库斯图里卡 | [下载](https://url89.ctfile.com/f/31084289-1357027054-9b8a7c?p=8866) |\n| 堕落论 | 坂口安吾 | [下载](https://url89.ctfile.com/f/31084289-1357027048-a40738?p=8866) |\n| 白天的房子，夜晚的房子 | 奥尔加・托卡尔丘克 | [下载](https://url89.ctfile.com/f/31084289-1357027042-2e68ad?p=8866) |\n| 流动的盛宴（果麦经典） | 海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027051-6a3fc0?p=8866) |\n| 太古和其他的时间 | 奥尔加・托卡尔丘克 | [下载](https://url89.ctfile.com/f/31084289-1357027003-d5d748?p=8866) |\n| 世说新语译注 | 刘义庆 | [下载](https://url89.ctfile.com/f/31084289-1357026997-7dd4f3?p=8866) |\n| 男女有别 | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1357026973-55e3ae?p=8866) |\n| 邪恶之路 | 格拉齐娅・黛莱达 | [下载](https://url89.ctfile.com/f/31084289-1357026976-20eadc?p=8866) |\n| 老中医 | 高满堂 | [下载](https://url89.ctfile.com/f/31084289-1357026979-4cd157?p=8866) |\n| 尘埃之书 | 布劳姆・普里瑟尔 | [下载](https://url89.ctfile.com/f/31084289-1357026961-941833?p=8866) |\n| 幻影书（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357026946-7a477b?p=8866) |\n| 亲爱的丫头 | 柯继铭 | [下载](https://url89.ctfile.com/f/31084289-1357026934-41b6dc?p=8866) |\n| 巧克力时代（全3册） | 加・泽文 | [下载](https://url89.ctfile.com/f/31084289-1357026931-f13515?p=8866) |\n| 失物之书 | 约翰・康诺利 | [下载](https://url89.ctfile.com/f/31084289-1357026871-7e2ade?p=8866) |\n| 鲍勃·迪伦：诗人之歌 | 让-多米尼克·布里埃 | [下载](https://url89.ctfile.com/f/31084289-1357026877-634ccd?p=8866) |\n| 我弥留之际 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357026847-d105d1?p=8866) |\n| 亲爱的妹妹 | 罗莎蒙德・勒普顿 | [下载](https://url89.ctfile.com/f/31084289-1357026841-1d5453?p=8866) |\n| 包法利夫人 | 福楼拜 | [下载](https://url89.ctfile.com/f/31084289-1357026808-2efd7e?p=8866) |\n| 爱上几个人渣 | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866) |\n| 死于威尼斯（译文经典） | 托马斯・曼 | [下载](https://url89.ctfile.com/f/31084289-1357026790-ec3dad?p=8866) |\n| 西游记（李卓吾批评本） | 吴承恩 | [下载](https://url89.ctfile.com/f/31084289-1357026781-f18846?p=8866) |\n| 神曲（译文名著典藏） | 但丁 | [下载](https://url89.ctfile.com/f/31084289-1357026799-5090ac?p=8866) |\n| 十日谈（译文名著典藏） | 卜伽丘 | [下载](https://url89.ctfile.com/f/31084289-1357026835-513c66?p=8866) |\n| 堂吉诃德（译文名著典藏） | 塞万提斯 | [下载](https://url89.ctfile.com/f/31084289-1357026787-5f99fe?p=8866) |\n| 叶甫盖尼·奥涅金（译文名著典藏） | 普希金 | [下载](https://url89.ctfile.com/f/31084289-1357026778-6025bd?p=8866) |\n| 悲惨世界（译文名著典藏） | 雨果 | [下载](https://url89.ctfile.com/f/31084289-1357026766-fe791a?p=8866) |\n| 坎特伯雷故事（译文名著典藏） | 杰弗里・乔叟 | [下载](https://url89.ctfile.com/f/31084289-1357026763-3a2c91?p=8866) |\n| 浮士德（译文名著典藏） | 约翰・沃尔夫冈・歌德 | [下载](https://url89.ctfile.com/f/31084289-1357026772-9e30ca?p=8866) |\n| 红与黑（译文名著典藏） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1357026754-a8199f?p=8866) |\n| 呼啸山庄（译文名著典藏） | 艾米莉・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357026745-cb9946?p=8866) |\n| 简·爱（译文名著典藏） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357026733-0e7678?p=8866) |\n| 傲慢与偏见（译文名著典藏） | 简・奥斯汀 | [下载](https://url89.ctfile.com/f/31084289-1357026730-bb23d6?p=8866) |\n| 安娜·卡列尼娜（译文名著典藏） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357026712-2d67fc?p=8866) |\n| 眼之壁 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357026703-ce4abd?p=8866) |\n| 寻找死亡的男人 | 马丁・瓦尔泽 | [下载](https://url89.ctfile.com/f/31084289-1357026691-082508?p=8866) |\n| 我发现了（完全修订版） | 埃德加・爱伦・坡 | [下载](https://url89.ctfile.com/f/31084289-1357026475-c6b3d9?p=8866) |\n| 邦查女孩 | 甘耀明 | [下载](https://url89.ctfile.com/f/31084289-1357026436-0c6072?p=8866) |\n| 官场现形记 | 李宝嘉 | [下载](https://url89.ctfile.com/f/31084289-1357026424-31227d?p=8866) |\n| 情迷佛罗伦萨 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026394-fb0c3f?p=8866) |\n| 人生的枷锁 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026397-998dcb?p=8866) |\n| 西班牙主题变奏 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026391-dafb28?p=8866) |\n| 随性而至 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026382-2185ca?p=8866) |\n| 英国特工 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026379-aeed5e?p=8866) |\n| 木麻黄树 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026430-c550f5?p=8866) |\n| 在中国屏风上 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026370-6f3490?p=8866) |\n| 作家笔记 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026373-6fd2ce?p=8866) |\n| 兰贝斯的丽莎 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026367-8e7126?p=8866) |\n| 过去和现在 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026361-f7520e?p=8866) |\n| 巨匠与杰作 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026352-cee4c7?p=8866) |\n| 观点 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026349-f8a587?p=8866) |\n| 剧院风情 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026340-c12b43?p=8866) |\n| 笔花钗影录 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026343-6052b4?p=8866) |\n| 莎士比亚四大悲剧（译文名著典藏） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357026406-61388c?p=8866) |\n| 杨牧诗选（1956-2013） | 杨牧 | [下载](https://url89.ctfile.com/f/31084289-1357026265-7f9451?p=8866) |\n| 夜航船 | 张岱 | [下载](https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866) |\n| 唐人小说 | 汪辟疆 | [下载](https://url89.ctfile.com/f/31084289-1357026247-8f16c7?p=8866) |\n| 尘埃落定（十五周年纪念版） | 阿来 | [下载](https://url89.ctfile.com/f/31084289-1357026241-e45527?p=8866) |\n| 蜜蜂与远雷 | 恩田陆 | [下载](https://url89.ctfile.com/f/31084289-1357026211-53c0b6?p=8866) |\n| 可爱的骨头 | 艾丽斯・西伯德 | [下载](https://url89.ctfile.com/f/31084289-1357026208-fdf6e1?p=8866) |\n| 海胆 | 雷晓宇 | [下载](https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866) |\n| 达·芬奇手记（珍藏版） | 达・芬奇 | [下载](https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866) |\n| 虚土 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1357025698-a4bd7e?p=8866) |\n| 少年Pi的奇幻漂流（绘图珍藏本） | 扬・马特尔 | [下载](https://url89.ctfile.com/f/31084289-1357025671-79cdcc?p=8866) |\n| 乐队女孩 | 金・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866) |\n| 寻圣光的人 | 玛蒂娜・莱维特 | [下载](https://url89.ctfile.com/f/31084289-1357025641-a9e803?p=8866) |\n| 苔丝（译文名著典藏） | 托马斯・哈代 | [下载](https://url89.ctfile.com/f/31084289-1357025656-f77567?p=8866) |\n| 巫术师 | 约翰・福尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357025632-4de61f?p=8866) |\n| 一遍老爷 | 朱川凑人 | [下载](https://url89.ctfile.com/f/31084289-1357025620-d6e0fa?p=8866) |\n| 传声筒 | 西西 | [下载](https://url89.ctfile.com/f/31084289-1357025599-9a708c?p=8866) |\n| 噪音 | 梁文道 | [下载](https://url89.ctfile.com/f/31084289-1357025527-55faa6?p=8866) |\n| 灵心小史 | 小德兰 | [下载](https://url89.ctfile.com/f/31084289-1357025500-9364d3?p=8866) |\n| 永恒火焰（全3册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357025335-aad644?p=8866) |\n| 东京女子会 | 柚木麻子 | [下载](https://url89.ctfile.com/f/31084289-1357025272-9473aa?p=8866) |\n| The Book of Ebenezer Le Page | Edwards | [下载](https://url89.ctfile.com/f/31084289-1357025245-f5258d?p=8866) |\n| 希腊罗马神话 | 菲利普・马蒂塞克 | [下载](https://url89.ctfile.com/f/31084289-1357025155-94a814?p=8866) |\n| 北欧神话 | 卡罗琳・拉灵顿 | [下载](https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866) |\n| 丧钟为谁而鸣（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866) |\n| 红与黑（果麦经典） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866) |\n| 种玫瑰的男人 | 奥杜・阿娃・奥拉夫斯多蒂 | [下载](https://url89.ctfile.com/f/31084289-1357025083-feb78a?p=8866) |\n| 汤姆·索亚历险记 | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1357025074-44fa95?p=8866) |\n| 张居正：全4册 | 熊召政 | [下载](https://url89.ctfile.com/f/31084289-1357025059-cac065?p=8866) |\n| 冷山 | 查尔斯・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1357025053-beeeae?p=8866) |\n| 必须牺牲卡米尔 | 皮耶尔・勒迈特 | [下载](https://url89.ctfile.com/f/31084289-1357025026-1615ad?p=8866) |\n| 城堡 | 卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1357025014-46844e?p=8866) |\n| 丛林之书（读客经典） | 约瑟夫・鲁德亚德・吉卜林 | [下载](https://url89.ctfile.com/f/31084289-1357024987-cfbbc7?p=8866) |\n| 屠格涅夫文集（全6册） | 屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1357025002-6ad075?p=8866) |\n| 一个青年艺术家的画像（读客经典） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357024966-4ddb18?p=8866) |\n| 骑兵军 | 伊萨克・巴别尔 | [下载](https://url89.ctfile.com/f/31084289-1357024948-2a7089?p=8866) |\n| 耕种 食物 爱情 | 克里斯汀・金博尔 | [下载](https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866) |\n| 不执着，叫看破 不完美，是生活 | 莫妮卡・拉米雷斯・巴斯科 | [下载](https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866) |\n| 天谴 | 塞尔希奥・拉米雷斯 | [下载](https://url89.ctfile.com/f/31084289-1357024861-a5cc92?p=8866) |\n| 小偷家族 | 是枝裕和 | [下载](https://url89.ctfile.com/f/31084289-1357024855-a4d8aa?p=8866) |\n| 彼得·潘 | 詹姆斯・马修・巴利 | [下载](https://url89.ctfile.com/f/31084289-1357024849-4284ce?p=8866) |\n| 最危险的书 | 凯文・伯明翰 | [下载](https://url89.ctfile.com/f/31084289-1357024819-d1aa94?p=8866) |\n| 词史 | 刘毓盘 | [下载](https://url89.ctfile.com/f/31084289-1357024807-5e3b7f?p=8866) |\n| 彩画集（译文经典） | 兰波 | [下载](https://url89.ctfile.com/f/31084289-1357024798-46febb?p=8866) |\n| 沧浪诗话 | 严羽 | [下载](https://url89.ctfile.com/f/31084289-1357024795-d844df?p=8866) |\n| 穿堂风 | 曹文轩 | [下载](https://url89.ctfile.com/f/31084289-1357024801-ced57d?p=8866) |\n| 往事与随想（共3册） | 赫尔岑 | [下载](https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866) |\n| 翅鬼 | 双雪涛 | [下载](https://url89.ctfile.com/f/31084289-1357024771-35d4c6?p=8866) |\n| 女勇士 | 汤亭亭 | [下载](https://url89.ctfile.com/f/31084289-1357024768-569cc0?p=8866) |\n| 血色子午线 | 科马克・麦卡锡 | [下载](https://url89.ctfile.com/f/31084289-1357024720-04f5eb?p=8866) |\n| 列那狐的故事（读客经典） | 玛特・艾・季罗夫人 | [下载](https://url89.ctfile.com/f/31084289-1357024705-152cdc?p=8866) |\n| 芬妮·希尔 | 约翰・克利兰 | [下载](https://url89.ctfile.com/f/31084289-1357024696-f27937?p=8866) |\n| 爷爷一定要离婚 | 帕斯卡・鲁特 | [下载](https://url89.ctfile.com/f/31084289-1357024636-095fcc?p=8866) |\n| 寂寞芳心小姐 | 纳撒尼尔・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357024618-6365f1?p=8866) |\n| 大鳄三部曲 | 仇晓慧 | [下载](https://url89.ctfile.com/f/31084289-1357024561-f0ec75?p=8866) |\n| 伯纳黛特，你要去哪 | 玛利亚・森普尔 | [下载](https://url89.ctfile.com/f/31084289-1357024531-bf243b?p=8866) |\n| 夏日终曲 | 安德烈・艾西蒙 | [下载](https://url89.ctfile.com/f/31084289-1357024519-7dbbd6?p=8866) |\n| 在另一个宇宙的1003天 | 张春 | [下载](https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866) |\n| 中国十大禁毁小说文库 | 雪樵主人 | [下载](https://url89.ctfile.com/f/31084289-1357024510-63968c?p=8866) |\n| 金银岛（果麦经典） | 罗伯特・路易斯・史蒂文森  | [下载](https://url89.ctfile.com/f/31084289-1357024498-232c2b?p=8866) |\n| 乞力马扎罗的雪（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357024483-1cc6ab?p=8866) |\n| 时光边缘的男人 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024444-7f3cf5?p=8866) |\n| 美，看不见的竞争力 | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357024381-dc676d?p=8866) |\n| 呼叫助产士 | 珍妮弗・沃斯 | [下载](https://url89.ctfile.com/f/31084289-1357024336-bc2744?p=8866) |\n| 断代 | 郭强生 | [下载](https://url89.ctfile.com/f/31084289-1357024321-3e4d24?p=8866) |\n| 冬泳 | 班宇 | [下载](https://url89.ctfile.com/f/31084289-1357024318-af87d7?p=8866) |\n| 一代文学大师林语堂逝世40周年纪念典藏版（全18册） | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1357024327-391a41?p=8866) |\n| 沈从文全传 | 张新颖 | [下载](https://url89.ctfile.com/f/31084289-1357024288-a2737b?p=8866) |\n| 绿毛水怪 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357024270-c14537?p=8866) |\n| 天边一星子 | 邓安庆 | [下载](https://url89.ctfile.com/f/31084289-1357024252-c13ed1?p=8866) |\n| 圣诞女孩 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866) |\n| 十二个圣诞故事 | 珍妮特・温特森 | [下载](https://url89.ctfile.com/f/31084289-1357024231-15cc1b?p=8866) |\n| 少年Pi的奇幻漂流（插图珍藏版） | 扬・马特尔 | [下载](https://url89.ctfile.com/f/31084289-1357024228-8bc84a?p=8866) |\n| 终身失忆人 | 卢克・迪特里希 | [下载](https://url89.ctfile.com/f/31084289-1357024192-0076c9?p=8866) |\n| 熊镇 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357024174-567c22?p=8866) |\n| 河合隼雄代表作 | 河合隼雄 | [下载](https://url89.ctfile.com/f/31084289-1357024168-fb6f9e?p=8866) |\n| 时间回旋 | 罗伯特・威尔森 | [下载](https://url89.ctfile.com/f/31084289-1357024120-f2c94d?p=8866) |\n| 呼啸山庄（读客经典） | 艾米莉・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357024126-44fd04?p=8866) |\n| 窄门（果麦经典） | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357024099-8f56cf?p=8866) |\n| 故园风雨后 | 伊夫林・沃 | [下载](https://url89.ctfile.com/f/31084289-1357024093-fba3b7?p=8866) |\n| 走出非洲（果麦经典） | 凯伦・布里克森 | [下载](https://url89.ctfile.com/f/31084289-1357024081-b60289?p=8866) |\n| 鲁滨逊漂流记（作家榜经典文库） | 丹尼尔・笛福 | [下载](https://url89.ctfile.com/f/31084289-1357024075-de0a5f?p=8866) |\n| 追忆似水年华（徐和瑾译本全4卷） | 马塞尔・普鲁斯特 | [下载](https://url89.ctfile.com/f/31084289-1357024090-3f610e?p=8866) |\n| 依赖共生 | 巴里・温霍尔德/贾内・温霍尔德 | [下载](https://url89.ctfile.com/f/31084289-1357024069-b92767?p=8866) |\n| 我忏悔 | 乔莫・卡夫雷 | [下载](https://url89.ctfile.com/f/31084289-1357024045-21af78?p=8866) |\n| 野性的呼唤（读客经典） | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357024048-f76d1c?p=8866) |\n| 盛夏方程式 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357024042-17c929?p=8866) |\n| 木匠手记 | 尼娜・麦克劳林 | [下载](https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866) |\n| 寂寞的游戏 | 袁哲生 | [下载](https://url89.ctfile.com/f/31084289-1357023985-064394?p=8866) |\n| 追忆似水年华（套装全7册） | 马塞尔・普鲁斯特 | [下载](https://url89.ctfile.com/f/31084289-1357023958-e0af26?p=8866) |\n| 北回归线 | 亨利・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023901-5575f9?p=8866) |\n| 南回归线 | 亨利・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023904-244b91?p=8866) |\n| 天堂收音机 | 伊藤正幸 | [下载](https://url89.ctfile.com/f/31084289-1357023868-5e0097?p=8866) |\n| 我只知道人是什么 | 余华 | [下载](https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866) |\n| 了不起的盖茨比（读客经典） | 弗・司各特・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357023826-c18ccc?p=8866) |\n| 英语民族史（套装共4本） | 温斯顿・丘吉尔 | [下载](https://url89.ctfile.com/f/31084289-1357023793-341588?p=8866) |\n| 呼兰河传（完整版插图本） | 萧红 | [下载](https://url89.ctfile.com/f/31084289-1357023718-574708?p=8866) |\n| 中国文学常识 | 郑振铎 | [下载](https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866) |\n| 重启人：终结篇 | 艾米・亭特拉 | [下载](https://url89.ctfile.com/f/31084289-1357023604-fdee86?p=8866) |\n| 无理时代 | 奥田英朗 | [下载](https://url89.ctfile.com/f/31084289-1357023589-934cb3?p=8866) |\n| The Association of Small Bombs | Mahajan Karan | [下载](https://url89.ctfile.com/f/31084289-1357023568-86906f?p=8866) |\n| 最后假期 | 保丽娜・弗洛雷斯 | [下载](https://url89.ctfile.com/f/31084289-1357023508-b0db4d?p=8866) |\n| 诗经楚辞鉴赏辞典 | 周啸天 | [下载](https://url89.ctfile.com/f/31084289-1357023427-f856e9?p=8866) |\n| 春琴抄（果麦经典） | 谷崎润一郎 | [下载](https://url89.ctfile.com/f/31084289-1357023364-b46653?p=8866) |\n| 永远不要找别人要安全感 | 韩梅梅 | [下载](https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866) |\n| 永远不要找别人要安全感2 | 韩梅梅 | [下载](https://url89.ctfile.com/f/31084289-1357023358-da9edb?p=8866) |\n| 为生命而阅读 | 威尔・施瓦尔贝 | [下载](https://url89.ctfile.com/f/31084289-1357023328-a9e738?p=8866) |\n| 使节 | 亨利・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357023319-c926c7?p=8866) |\n| 天才的编辑 | 司各特・伯格 | [下载](https://url89.ctfile.com/f/31084289-1357023316-2d09bb?p=8866) |\n| 国学大纲 | 汪震/王正己 | [下载](https://url89.ctfile.com/f/31084289-1357023292-710c34?p=8866) |\n| 独抒己见 | 弗拉基米尔・纳博科夫 | [下载](https://url89.ctfile.com/f/31084289-1357023283-fe22ec?p=8866) |\n| 四世同堂（完整版） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866) |\n| 漫长的告别（果麦经典） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357023229-b94dc3?p=8866) |\n| 爱与黑暗的故事 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023226-44689c?p=8866) |\n| 地狱变 | 芥川龙之介 | [下载](https://url89.ctfile.com/f/31084289-1357023220-c8b441?p=8866) |\n| 不过，一场生活 | 阿Sam | [下载](https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866) |\n| 写作这门手艺 | 约翰・麦克菲 | [下载](https://url89.ctfile.com/f/31084289-1357023196-9d8958?p=8866) |\n| 乡村生活图景 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023187-1ce16f?p=8866) |\n| 我的米海尔 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023184-f8dc9f?p=8866) |\n| 费玛 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023181-dd9e49?p=8866) |\n| 故事开始了 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023169-13fbb8?p=8866) |\n| 沙海无澜 | 阿摩司・奥兹 | [下载](https://url89.ctfile.com/f/31084289-1357023166-3f7b75?p=8866) |\n| 奥斯丁全集（英文版） | 简・奥斯汀 | [下载](https://url89.ctfile.com/f/31084289-1357023130-faa3ba?p=8866) |\n| 九个人 | 张新颖 | [下载](https://url89.ctfile.com/f/31084289-1357023121-e03fbf?p=8866) |\n| 笑林广记 | 游戏主人 | [下载](https://url89.ctfile.com/f/31084289-1357023100-3e0c16?p=8866) |\n| 我们一无所有 | 安东尼・马拉 | [下载](https://url89.ctfile.com/f/31084289-1357023091-47cf9b?p=8866) |\n| 我的早年岁月 | 苏尔坦・本・穆罕默德・卡西米 | [下载](https://url89.ctfile.com/f/31084289-1357023073-63aa05?p=8866) |\n| 只过必要生活 | 匠久 | [下载](https://url89.ctfile.com/f/31084289-1357023070-774ca6?p=8866) |\n| 人间喜剧（读客经典） | 奥诺雷・德・巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357023082-d9ba2c?p=8866) |\n| 致命冒险 | 闪米特 | [下载](https://url89.ctfile.com/f/31084289-1357023085-ade96e?p=8866) |\n| 箱男 | 安部公房 | [下载](https://url89.ctfile.com/f/31084289-1357023010-1946e0?p=8866) |\n| 绿野仙踪 | 莱曼・弗兰克・鲍姆  | [下载](https://url89.ctfile.com/f/31084289-1357023013-03a6a2?p=8866) |\n| 故事：材质、结构、风格和银幕剧作的原理 | 罗伯特・麦基 | [下载](https://url89.ctfile.com/f/31084289-1357022953-524f05?p=8866) |\n| 天长地久：给美君的信 | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866) |\n| 我不知道该说什么，关于死亡还是爱情 | S.A.阿列克谢耶维奇  | [下载](https://url89.ctfile.com/f/31084289-1357022905-60dc96?p=8866) |\n| 我的浏阳兄弟 | 索文 | [下载](https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866) |\n| 我为你洒下月光 | 简媜 | [下载](https://url89.ctfile.com/f/31084289-1357022869-d5741b?p=8866) |\n| 掌故（第二集） | 徐俊 | [下载](https://url89.ctfile.com/f/31084289-1357022857-872aba?p=8866) |\n| 一个海难幸存者的故事 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357022824-01cd68?p=8866) |\n| 白轮船 | 钦吉斯・·艾特玛托夫 | [下载](https://url89.ctfile.com/f/31084289-1357022752-04c29a?p=8866) |\n| 一瞬一生 | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357022680-a83bd2?p=8866) |\n| 莎士比亚悲剧喜剧全集 | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866) |\n| 我的名字叫红（新版） | 奥尔罕・帕慕克 | [下载](https://url89.ctfile.com/f/31084289-1357022632-2bebcc?p=8866) |\n| 绿山墙的安妮（全译本） | 露西・莫德・蒙格玛利 | [下载](https://url89.ctfile.com/f/31084289-1357022590-0d58d2?p=8866) |\n| 野性的呼唤 | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357022581-919f29?p=8866) |\n| 到灯塔去 | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357022578-1cdcd0?p=8866) |\n| 沙之书 | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357022560-fb10c7?p=8866) |\n| 一念桃花源 | 比尔・波特 | [下载](https://url89.ctfile.com/f/31084289-1357022563-9a7313?p=8866) |\n| 云边有个小卖部 | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1357022539-f60fa4?p=8866) |\n| 我们都是孤独的行路人 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357022542-cf4133?p=8866) |\n| 人类灭绝 | 高野和明 | [下载](https://url89.ctfile.com/f/31084289-1357022524-d31fba?p=8866) |\n| 夜长梦多 | 赵兰振 | [下载](https://url89.ctfile.com/f/31084289-1357022518-85acd6?p=8866) |\n| 破狱 | 李重民 | [下载](https://url89.ctfile.com/f/31084289-1357022503-eaf459?p=8866) |\n| 无尽世界（全3册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357022506-8a2088?p=8866) |\n| 卡门（读客经典） | 普罗斯佩・梅里美 | [下载](https://url89.ctfile.com/f/31084289-1357022485-c0ed82?p=8866) |\n| 我与你（果麦经典） | 马丁・布伯 | [下载](https://url89.ctfile.com/f/31084289-1357022446-f472b6?p=8866) |\n| 斜阳（太宰治作品精选集） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866) |\n| 人间失格（太宰治作品精选集） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357022434-822828?p=8866) |\n| 潘多拉之匣（太宰治作品精选集） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357022431-d56ce6?p=8866) |\n| 危险的妻子 | 卡洛琳・艾瑞克森 | [下载](https://url89.ctfile.com/f/31084289-1357022428-864380?p=8866) |\n| 同情者 | 阮清越 | [下载](https://url89.ctfile.com/f/31084289-1357022422-07238e?p=8866) |\n| 无边的土地 | 若热・亚马多 | [下载](https://url89.ctfile.com/f/31084289-1357022407-bb2b7c?p=8866) |\n| 世上最美的溺水者 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357022392-ea1ebf?p=8866) |\n| 五朝宰相 | 姜狼 | [下载](https://url89.ctfile.com/f/31084289-1357022383-05455f?p=8866) |\n| 世事如刀，我来领教 | 房昊 | [下载](https://url89.ctfile.com/f/31084289-1357022374-2e403d?p=8866) |\n| 遮蔽的天空 | 保罗・鲍尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357022362-ff57cd?p=8866) |\n| 族长的秋天 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357022356-073aeb?p=8866) |\n| 易中天品读中国（套装共6册） | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022353-ac22c1?p=8866) |\n| 直到孤独尽头 | 贝内迪克特・韦尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357022347-89429b?p=8866) |\n| 林达作品集（套装共10册） | 林达 | [下载](https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866) |\n| 背影 | 朱自清 | [下载](https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866) |\n| 我牙齿的故事 | 瓦莱里娅・路易塞利 | [下载](https://url89.ctfile.com/f/31084289-1357022296-a08525?p=8866) |\n| 无处停歇 | 杰米・阿滕贝格 | [下载](https://url89.ctfile.com/f/31084289-1357022275-8a9145?p=8866) |\n| 佛系：如何成为一个快乐的人 | 草薙龙瞬 | [下载](https://url89.ctfile.com/f/31084289-1357022269-176d06?p=8866) |\n| 大雪将至 | 罗伯特・泽塔勒 | [下载](https://url89.ctfile.com/f/31084289-1357022254-844fb9?p=8866) |\n| 万物既伟大又渺小 | 吉米・哈利 | [下载](https://url89.ctfile.com/f/31084289-1357022239-aef96c?p=8866) |\n| 泰戈尔集（全六册） | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866) |\n| 司汤达集（全四册） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866) |\n| 契诃夫集（套装共2册） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357022194-6adc55?p=8866) |\n| 左拉集（全四册） | 左拉 | [下载](https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866) |\n| 霍夫曼集（套装共2册） | 霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357022191-d724ce?p=8866) |\n| 福楼拜集（套装共3册） | 福楼拜 | [下载](https://url89.ctfile.com/f/31084289-1357022185-594952?p=8866) |\n| 爱的教育 | 艾德蒙多・德・亚米契斯 | [下载](https://url89.ctfile.com/f/31084289-1357022167-2eb62d?p=8866) |\n| 随园食单 | 袁枚 | [下载](https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866) |\n| 忆往谈旧录 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866) |\n| 长翅膀的女孩 | 苏・蒙克・基德 | [下载](https://url89.ctfile.com/f/31084289-1357022125-11fbcf?p=8866) |\n| 人间便利店 | 村田沙耶香 | [下载](https://url89.ctfile.com/f/31084289-1357022116-1d4596?p=8866) |\n| 奇迹唱片行 | 蕾秋・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357022113-7cd057?p=8866) |\n| 凯特的选择 | 安・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357022047-60243c?p=8866) |\n| 狄更斯集（套装共10册） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866) |\n| 冈察洛夫集（全四册） | 冈察洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866) |\n| 哈代集（共五册） | 哈代 | [下载](https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866) |\n| 歌德集（全五册） | 歌德 | [下载](https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866) |\n| 纪德集（全五册） | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866) |\n| 德莱塞集（全四册） | 德莱塞 | [下载](https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866) |\n| 莱蒙托夫集（全二册） | 莱蒙托夫 | [下载](https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866) |\n| 托尔斯泰集（共6册） | 托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866) |\n| 茨威格集（全2册） | 茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866) |\n| 大仲马集（共八册） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866) |\n| 劳伦斯集（共5册） | 劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866) |\n| 莫斯科绅士 | 埃默・托尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357021897-2b0983?p=8866) |\n| 山茶文具店 | 小川糸 | [下载](https://url89.ctfile.com/f/31084289-1357021900-38dea3?p=8866) |\n| 潦草 | 贾行家 | [下载](https://url89.ctfile.com/f/31084289-1357021888-5f25ff?p=8866) |\n| 唐朝那些事儿（套装共7册） | 冬雪心境 | [下载](https://url89.ctfile.com/f/31084289-1357021885-af66d6?p=8866) |\n| 白鸟之歌 | 巴勃罗・卡萨尔斯  | [下载](https://url89.ctfile.com/f/31084289-1357021879-f9153e?p=8866) |\n| 许子东现代文学课 | 许子东 | [下载](https://url89.ctfile.com/f/31084289-1357021855-47d98d?p=8866) |\n| 生命清单 | 洛里・斯皮尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357021849-9bd33d?p=8866) |\n| 身份 | 米兰・昆德拉 | [下载](https://url89.ctfile.com/f/31084289-1357021843-019c3a?p=8866) |\n| 衣橱里的女孩 | 弗朗丝・盖兰 | [下载](https://url89.ctfile.com/f/31084289-1357021819-929df9?p=8866) |\n| 大师和玛格丽特 | 米哈伊尔・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357021816-c6992a?p=8866) |\n| 燃烧的天使 | 瓦・勃留索夫 | [下载](https://url89.ctfile.com/f/31084289-1357021813-6662d1?p=8866) |\n| 阿尔谢尼耶夫的一生 | 伊万・布宁 | [下载](https://url89.ctfile.com/f/31084289-1357021804-a41a4f?p=8866) |\n| 希腊神话故事集 | 纳撒尼尔・霍桑 | [下载](https://url89.ctfile.com/f/31084289-1357021801-b47cf4?p=8866) |\n| 有如候鸟 | 周晓枫 | [下载](https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866) |\n| 列奥纳多·达·芬奇传 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357021774-dcc062?p=8866) |\n| 猫武士首部曲（套装共6册） | 艾琳・亨特 | [下载](https://url89.ctfile.com/f/31084289-1357021747-2318d1?p=8866) |\n| 浮生梦 | 达芙妮・杜穆里埃 | [下载](https://url89.ctfile.com/f/31084289-1357021705-6e4f6d?p=8866) |\n| 狐狸男孩 | 米拉・巴尔托克 | [下载](https://url89.ctfile.com/f/31084289-1357021681-5ea59b?p=8866) |\n| 青苔不会消失 | 袁凌 | [下载](https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866) |\n| 亲爱的生活 | 艾丽丝・门罗 | [下载](https://url89.ctfile.com/f/31084289-1357021654-2b4ee2?p=8866) |\n| 再会，契普斯先生 | 詹姆斯・希尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357021627-c108f7?p=8866) |\n| 禹域鸿爪 | 内藤湖南 | [下载](https://url89.ctfile.com/f/31084289-1357021618-f78c8b?p=8866) |\n| 船山遗书 | 王夫之 | [下载](https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866) |\n| 如父如子 | 是枝裕和/佐野晶  | [下载](https://url89.ctfile.com/f/31084289-1357021579-c017d2?p=8866) |\n| 美国梦 | 斯塔兹・特克尔 | [下载](https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866) |\n| 逃离 | 艾丽丝・门罗 | [下载](https://url89.ctfile.com/f/31084289-1357021558-5fd9e2?p=8866) |\n| 基度山伯爵（全2册） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357021567-8fdb13?p=8866) |\n| 麦卡勒斯作品系列（套装共6册） | 卡森・麦卡勒斯 | [下载](https://url89.ctfile.com/f/31084289-1357021537-c2fc56?p=8866) |\n| 神枪手迪克 | 库尔特・冯内古特 | [下载](https://url89.ctfile.com/f/31084289-1357021288-92f5e6?p=8866) |\n| 夜光的阶梯 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357021294-fc9a03?p=8866) |\n| 圣殿春秋（全3册） | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357021252-8a62ce?p=8866) |\n| 人间食粮 | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357021168-e7d281?p=8866) |\n| 邻人之妻 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866) |\n| 我和厄尔以及将死的女孩 | 杰西・安德鲁斯 | [下载](https://url89.ctfile.com/f/31084289-1357021093-451af6?p=8866) |\n| 诗经（风雅颂三卷） | 骆玉明/细井徇 | [下载](https://url89.ctfile.com/f/31084289-1357021144-d46886?p=8866) |\n| 爱的自然史 | 戴安娜・阿克曼 | [下载](https://url89.ctfile.com/f/31084289-1357021021-362752?p=8866) |\n| 蒋勋说唐诗 | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357021003-a4fa60?p=8866) |\n| 奥吉和我 | 帕拉西奥 | [下载](https://url89.ctfile.com/f/31084289-1357020976-b53ede?p=8866) |\n| 了不起的盖茨比（完整版插图本） | 菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357020946-7648ec?p=8866) |\n| 魔鬼辞典 | 安布罗斯・比尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357020925-e0b984?p=8866) |\n| 恶之花 | 夏尔・波德莱尔 | [下载](https://url89.ctfile.com/f/31084289-1357020898-48caea?p=8866) |\n| 北野武的小酒馆 | 北野武 | [下载](https://url89.ctfile.com/f/31084289-1357020850-7ed159?p=8866) |\n| 那个不为人知的故事 | Twentine | [下载](https://url89.ctfile.com/f/31084289-1357020829-f14985?p=8866) |\n| 沉默的告白 | 莎蒙德・勒普顿 | [下载](https://url89.ctfile.com/f/31084289-1357020826-fb6b6b?p=8866) |\n| 暗网 | 杰米・巴特利特 | [下载](https://url89.ctfile.com/f/31084289-1357020808-518d1f?p=8866) |\n| 文章皆岁月 | 萧乾 | [下载](https://url89.ctfile.com/f/31084289-1357020781-294c5e?p=8866) |\n| 喧哗与骚动 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357020775-4c22b6?p=8866) |\n| 高山上的小邮局 | 安赫莱斯・多尼亚特 | [下载](https://url89.ctfile.com/f/31084289-1357020757-97f09e?p=8866) |\n| 三毛作品精选（共6册） | 三毛 | [下载](https://url89.ctfile.com/f/31084289-1357020745-33663b?p=8866) |\n| 苹果酒屋的规则 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357020694-be7e51?p=8866) |\n| 夜神科尔内尔 | 汪玮 | [下载](https://url89.ctfile.com/f/31084289-1357020679-f90668?p=8866) |\n| 月光下的旅人 | 瑟尔伯・昂托 | [下载](https://url89.ctfile.com/f/31084289-1357020676-aff023?p=8866) |\n| 与罗摩相会 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357020670-98bbf9?p=8866) |\n| 我也有过小时候 | 任溶溶 | [下载](https://url89.ctfile.com/f/31084289-1357020673-497c78?p=8866) |\n| 冰激凌家族 | 恩斯特・凡德奎斯特 | [下载](https://url89.ctfile.com/f/31084289-1357020658-1a3b66?p=8866) |\n| 大裂 | 胡迁 | [下载](https://url89.ctfile.com/f/31084289-1357020646-4d4fca?p=8866) |\n| 秘密金鱼 | 大卫・米恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357020652-6cea44?p=8866) |\n| V.S.奈保尔作品精选（共8册） | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357020655-78a379?p=8866) |\n| 萨拉马戈：复明症漫记 | 若泽・萨拉马戈 | [下载](https://url89.ctfile.com/f/31084289-1357020637-70e547?p=8866) |\n| 萨拉马戈：失明症漫记 | 若泽・萨拉马戈 | [下载](https://url89.ctfile.com/f/31084289-1357020634-20292b?p=8866) |\n| 福楼拜的鹦鹉 | 朱利安・巴恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357020619-8713f0?p=8866) |\n| 别对我温柔 | 玛丽・库比卡 | [下载](https://url89.ctfile.com/f/31084289-1357020508-bbe9ac?p=8866) |\n| 以读攻读 | 但汉松 | [下载](https://url89.ctfile.com/f/31084289-1357020502-f49829?p=8866) |\n| 机村史诗（六部曲） | 阿来 | [下载](https://url89.ctfile.com/f/31084289-1357020427-e079e5?p=8866) |\n| 奥斯坦德1936 | 福尔克尔・魏德曼 | [下载](https://url89.ctfile.com/f/31084289-1357020391-a49d11?p=8866) |\n| 把你交给时间 | 陶立夏 | [下载](https://url89.ctfile.com/f/31084289-1357020520-c95774?p=8866) |\n| 换心 | 朱迪・皮考特 | [下载](https://url89.ctfile.com/f/31084289-1357020223-e95fa1?p=8866) |\n| 奇风岁月 | 罗伯特・麦卡蒙 | [下载](https://url89.ctfile.com/f/31084289-1357020187-d7c04c?p=8866) |\n| 星星上的人 | 卡罗琳・帕克丝特 | [下载](https://url89.ctfile.com/f/31084289-1357020163-0016df?p=8866) |\n| 虫子旁 | 朱赢椿 | [下载](https://url89.ctfile.com/f/31084289-1357020127-6ae8cd?p=8866) |\n| 影绘 | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1357020091-2dc43f?p=8866) |\n| 风格感觉：21世纪写作指南 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357020082-efde84?p=8866) |\n| 小书馆系列第一辑（共8册） | 冯友兰/瞿蜕园/俞剑华 | [下载](https://url89.ctfile.com/f/31084289-1357020055-b5b7a8?p=8866) |\n| 烟雾弥漫你的眼 | 凯特琳・道蒂 | [下载](https://url89.ctfile.com/f/31084289-1357020016-418bb3?p=8866) |\n| 十一月的此刻 | 约瑟芬・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357019962-e22cb4?p=8866) |\n| 海的那一边 | 梅丽莎・弗莱明 | [下载](https://url89.ctfile.com/f/31084289-1357019899-e0deb6?p=8866) |\n| 水云（果麦经典） | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866) |\n| 源泉 | 安・兰德 | [下载](https://url89.ctfile.com/f/31084289-1357019848-36d967?p=8866) |\n| 奇迹 | 是枝裕和/中村航 | [下载](https://url89.ctfile.com/f/31084289-1357019839-d71f93?p=8866) |\n| 艾约堡秘史 | 张炜 | [下载](https://url89.ctfile.com/f/31084289-1357019698-04d6ce?p=8866) |\n| 彼得堡 | 安德列・别雷 | [下载](https://url89.ctfile.com/f/31084289-1357019671-73434e?p=8866) |\n| 巫士唐望的教诲 | 卡洛斯・卡斯塔尼达 | [下载](https://url89.ctfile.com/f/31084289-1357019626-626739?p=8866) |\n| 解离的真实 | 卡洛斯・卡斯塔尼达 | [下载](https://url89.ctfile.com/f/31084289-1357019611-2b333c?p=8866) |\n| 前往伊斯特兰的旅程 | 卡洛斯・卡斯塔尼达 | [下载](https://url89.ctfile.com/f/31084289-1357019608-b17024?p=8866) |\n| 爱伦·坡短篇小说集 | 埃德加・爱伦・坡 | [下载](https://url89.ctfile.com/f/31084289-1357019605-f1d5f0?p=8866) |\n| 小小小小的火 | 伍绮诗 | [下载](https://url89.ctfile.com/f/31084289-1357019566-1aaf84?p=8866) |\n| 晚来寂静 | 李海鹏 | [下载](https://url89.ctfile.com/f/31084289-1357019530-323af2?p=8866) |\n| 玛丽·安妮 | 达芙妮・杜穆里埃 | [下载](https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866) |\n| 东瀛文人·印象中国（套装共5册） | 芥川龙之介等 | [下载](https://url89.ctfile.com/f/31084289-1357019443-64d478?p=8866) |\n| 鲁迅经典全集全四册 | 鲁迅 | [下载](https://url89.ctfile.com/f/31084289-1357019455-217bae?p=8866) |\n| 盖普眼中的世界 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866) |\n| 清单人生 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357019404-6cba1f?p=8866) |\n| 染匠之手 | 奥登 | [下载](https://url89.ctfile.com/f/31084289-1357019410-f0261a?p=8866) |\n| 纳兰词（果麦经典） | 纳兰性德 | [下载](https://url89.ctfile.com/f/31084289-1357019365-ccc402?p=8866) |\n| 风沙星辰 | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1357019329-972eda?p=8866) |\n| 时间的习俗 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357019323-98e502?p=8866) |\n| 小王子三部曲 | 埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1357019302-5cad9b?p=8866) |\n| 比海更深 | 是枝裕和 | [下载](https://url89.ctfile.com/f/31084289-1357019257-c13005?p=8866) |\n| 白噪音 | 唐・德里罗 | [下载](https://url89.ctfile.com/f/31084289-1357019245-efeee7?p=8866) |\n| 知更鸟女孩4：末日风暴 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357019206-354ef9?p=8866) |\n| 盛开的樱花林下 | 坂口安吾 | [下载](https://url89.ctfile.com/f/31084289-1357019194-9c60da?p=8866) |\n| 商市街（果麦经典） | 萧红 | [下载](https://url89.ctfile.com/f/31084289-1357019179-fa4281?p=8866) |\n| 如丧 | 高晓松 | [下载](https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866) |\n| 长乐路 | 史明智 | [下载](https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866) |\n| 我在未来等你 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357019131-e9de0c?p=8866) |\n| 多湾 | 周瑄璞 | [下载](https://url89.ctfile.com/f/31084289-1357019128-e0d1aa?p=8866) |\n| 我不要你死于一事无成 | 法齐娅・库菲 | [下载](https://url89.ctfile.com/f/31084289-1357019125-bb2c8c?p=8866) |\n| 与绝迹之鸟的短暂邂逅 | 本・方登 | [下载](https://url89.ctfile.com/f/31084289-1357018930-3b2cac?p=8866) |\n| 乌克兰拖拉机简史 | 玛琳娜・柳薇卡 | [下载](https://url89.ctfile.com/f/31084289-1357018897-8c9b10?p=8866) |\n| 欢愉 | 莉莉・金 | [下载](https://url89.ctfile.com/f/31084289-1357018687-bbe3c2?p=8866) |\n| 夜巡 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357018639-a3c4cc?p=8866) |\n| 一度青春 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357018636-633616?p=8866) |\n| 高兴死了！！！ | 珍妮・罗森 | [下载](https://url89.ctfile.com/f/31084289-1357018624-333039?p=8866) |\n| 上帝鸟 | 詹姆斯・麦克布莱德 | [下载](https://url89.ctfile.com/f/31084289-1357018618-407d9e?p=8866) |\n| 鱼河岸小店 | 西加奈子 | [下载](https://url89.ctfile.com/f/31084289-1357018603-716606?p=8866) |\n| 鲁迅全集（全20册） | 鲁迅 | [下载](https://url89.ctfile.com/f/31084289-1357018621-414c16?p=8866) |\n| 黑色皮革手册 | 松本清张 | [下载](https://url89.ctfile.com/f/31084289-1357018501-e054d3?p=8866) |\n| 南方有乔木（纪念版） | 小狐濡尾 | [下载](https://url89.ctfile.com/f/31084289-1357018402-84c931?p=8866) |\n| 万火归一 | 胡利奥・科塔萨尔 | [下载](https://url89.ctfile.com/f/31084289-1357018396-97fb5c?p=8866) |\n| 李敖混世宝典三部曲 | 李敖 | [下载](https://url89.ctfile.com/f/31084289-1357018234-614afb?p=8866) |\n| 嬉笑怒骂李敖大全集（套装10本） | 李敖 | [下载](https://url89.ctfile.com/f/31084289-1357018222-00f809?p=8866) |\n| 温柔之歌 | 蕾拉・斯利玛尼 | [下载](https://url89.ctfile.com/f/31084289-1357017928-dad628?p=8866) |\n| 暗店街 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357017823-461c0d?p=8866) |\n| 赫拉巴尔之书 | 艾斯特哈兹・彼得 | [下载](https://url89.ctfile.com/f/31084289-1357017838-f75e41?p=8866) |\n| 环城大道 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357017817-222f39?p=8866) |\n| 星形广场 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357017814-a3504b?p=8866) |\n| 克罗诺皮奥与法玛的故事 | 胡利奥・科塔萨尔 | [下载](https://url89.ctfile.com/f/31084289-1357017775-747156?p=8866) |\n| 奥杜邦的祈祷 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357017745-73b9e5?p=8866) |\n| 传家之物：艾丽丝·门罗自选集 | 艾丽丝・门罗 | [下载](https://url89.ctfile.com/f/31084289-1357017661-ec171d?p=8866) |\n| 创意写作书系·走进大师（套装18册全） | 杰里・克利弗等 | [下载](https://url89.ctfile.com/f/31084289-1357017733-0f8010?p=8866) |\n| 悲惨世界（译文名著精选） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357017592-9191d1?p=8866) |\n| 寓言 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357017493-1b3020?p=8866) |\n| 眠 | 村上春树 | [下载](链接未找到) |\n| 你是人间四月天 | 林徽因 | [下载](https://url89.ctfile.com/f/31084289-1357017307-901fb8?p=8866) |\n| 呐喊彷徨故事新编 | 鲁迅 | [下载](https://url89.ctfile.com/f/31084289-1357017259-271898?p=8866) |\n| 道林·格雷的画像 | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866) |\n| 尼克·亚当斯故事集 | 海明威 | [下载](https://url89.ctfile.com/f/31084289-1357017073-0fe1ab?p=8866) |\n| 七十二堂写作课 | 夏丏尊/叶圣陶  | [下载](https://url89.ctfile.com/f/31084289-1357017064-cd4bac?p=8866) |\n| 孩子们的诗 | 果麦 | [下载](https://url89.ctfile.com/f/31084289-1357017097-fec3aa?p=8866) |\n| 世界迷宫Ⅲ：何谓永恒 | 玛格丽特・尤瑟纳尔 | [下载](https://url89.ctfile.com/f/31084289-1357017004-62308e?p=8866) |\n| 魔种 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357016932-d3cb9a?p=8866) |\n| 马伯乐 | 萧红 | [下载](https://url89.ctfile.com/f/31084289-1357016926-0073c7?p=8866) |\n| 人之彼岸 | 郝景芳 | [下载](https://url89.ctfile.com/f/31084289-1357016878-0a3553?p=8866) |\n| 洗澡 | 杨绛 | [下载](https://url89.ctfile.com/f/31084289-1357016821-12754d?p=8866) |\n| 驯子记 | 苏童 | [下载](https://url89.ctfile.com/f/31084289-1357016812-99d2d1?p=8866) |\n| 陪安娜穿过漫漫长夜 | 加瑞尔・萨维 | [下载](https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866) |\n| 世界迷宫I：虔诚的回忆 | 玛格丽特・尤瑟纳尔 | [下载](https://url89.ctfile.com/f/31084289-1357016569-c1efc9?p=8866) |\n| 被仰望与被遗忘的 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357016455-8ba51c?p=8866) |\n| 我的职业是小说家 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357016446-df464d?p=8866) |\n| 追风筝的人 | 卡勒德・胡赛尼 | [下载](https://url89.ctfile.com/f/31084289-1357016443-983457?p=8866) |\n| 禅定荒野 | 加里・斯奈德 | [下载](https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866) |\n| 春灯公子 | 张大春 | [下载](https://url89.ctfile.com/f/31084289-1357016404-86542e?p=8866) |\n| 伯吉斯野外生存系列（套装四册） | 桑顿・伯吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866) |\n| 迷宫中的将军 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357016203-716374?p=8866) |\n| 情人 | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1357016200-5669ab?p=8866) |\n| 波吉亚家族 | 马里奥・普佐 | [下载](https://url89.ctfile.com/f/31084289-1357016059-1a1324?p=8866) |\n| 天崩地裂三百年（下） | 覃仕勇 | [下载](https://url89.ctfile.com/f/31084289-1357016044-4b2a48?p=8866) |\n| 长夜漫漫路迢迢 | 尤金・奥尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357016038-fb4be7?p=8866) |\n| 鼠疫（果麦经典） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357016017-b4cf30?p=8866) |\n| 李太白全集 | 李白 | [下载](https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866) |\n| 王蒙作品精选集（套装16本） | 王蒙 | [下载](https://url89.ctfile.com/f/31084289-1357015960-48f0af?p=8866) |\n| 群鸟飞舞的世界末日 |  查莉・简・安德斯 | [下载](https://url89.ctfile.com/f/31084289-1357015921-312cfa?p=8866) |\n| 苦妓回忆录 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357015906-0e3416?p=8866) |\n| 法国中尉的女人 | 约翰・福尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357015723-9b3d26?p=8866) |\n| 芳华 | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357015696-61e77a?p=8866) |\n| 从前有条喷火龙（第一辑） | 凯特・麦克马伦/比尔・巴索 | [下载](https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866) |\n| 倒悬的地平线 | 马克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357015582-34e2c5?p=8866) |\n| 浮生六记（全本全译全注插图珍藏版） | 沈复 | [下载](https://url89.ctfile.com/f/31084289-1357015576-cbd161?p=8866) |\n| 父亲的失乐园 |  阿里埃勒・萨巴尔 | [下载](https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866) |\n| 柒 | 文珍 | [下载](https://url89.ctfile.com/f/31084289-1357015498-d668fd?p=8866) |\n| 恶童安伦 | 吉姆・谢泼德 | [下载](https://url89.ctfile.com/f/31084289-1357015462-c0e6e3?p=8866) |\n| 活下去，并且要记住 | 拉斯普京 | [下载](https://url89.ctfile.com/f/31084289-1357015465-8edfc5?p=8866) |\n| 被伤害与侮辱的人们（译文名著精选） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357015438-1fdc43?p=8866) |\n| 达洛卫夫人（译文名著精选） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357015435-2a37de?p=8866) |\n| 世界尽头的图书馆 | 费莉希蒂・海斯-麦科 | [下载](https://url89.ctfile.com/f/31084289-1357015411-92cba0?p=8866) |\n| 解说疾病的人 | 裘帕・拉希莉 | [下载](https://url89.ctfile.com/f/31084289-1357015408-005737?p=8866) |\n| 人性的枷锁 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357015369-cdc221?p=8866) |\n| 遥远的星辰 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1357015288-0eebf3?p=8866) |\n| 不成问题的问题 | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357015252-eb9267?p=8866) |\n| 摆渡人2：重返荒原 | 克莱儿・麦克福尔 | [下载](https://url89.ctfile.com/f/31084289-1357015192-9058db?p=8866) |\n| 漫长的中场休息 | 本・方登 | [下载](https://url89.ctfile.com/f/31084289-1357015132-9c1e9a?p=8866) |\n| 不畅销小说写作指南 | 大头马 | [下载](https://url89.ctfile.com/f/31084289-1357015129-764c03?p=8866) |\n| 蒋勋说文学之美（全5册修订版） | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357015126-9255a6?p=8866) |\n| 今天过得怎么样 | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1357015108-00eb73?p=8866) |\n| 武侠，从牛A到牛C | 大脸撑在小胸上 | [下载](https://url89.ctfile.com/f/31084289-1357015081-08667c?p=8866) |\n| 到大地尽头 | 大卫・格罗斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357015066-bcbe3d?p=8866) |\n| 通灵的按摩师 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357015030-38e4bf?p=8866) |\n| 不适之地 | 裘帕・拉希利 | [下载](https://url89.ctfile.com/f/31084289-1357014985-9e6283?p=8866) |\n| 午夜之子 | 萨曼・鲁西迪 | [下载](https://url89.ctfile.com/f/31084289-1357014967-759eef?p=8866) |\n| 柏林孤谍 | 约瑟夫・卡农 | [下载](https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866) |\n| 复明症漫记 | 若泽・萨拉马戈 | [下载](https://url89.ctfile.com/f/31084289-1357014748-8511f3?p=8866) |\n| 时间停止的那一天 | 蕾秋・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357014655-debad3?p=8866) |\n| 字看我一生 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866) |\n| 查拉图斯特拉如是说 | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1357014622-0410f5?p=8866) |\n| 上流法则 | 埃默・托尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357014616-694625?p=8866) |\n| 悉达多（果麦经典） | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357014601-c70ef2?p=8866) |\n| 走出非洲 | 凯伦・布里克森 | [下载](https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866) |\n| 阅读是一座随身携带的避难所 | 威廉・萨默塞特・毛姆  | [下载](https://url89.ctfile.com/f/31084289-1357014526-6e422e?p=8866) |\n| 纯真年代（译文经典） | 伊迪丝・华顿 | [下载](https://url89.ctfile.com/f/31084289-1357014481-bc2114?p=8866) |\n| 动物凶猛 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357014457-a7030d?p=8866) |\n| 呼兰河传（1940年初刊还原版） | 萧红 | [下载](https://url89.ctfile.com/f/31084289-1357014454-6db54f?p=8866) |\n| 王小波作品大全集（15册） | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357014463-323335?p=8866) |\n| 盲刺客 | 玛格丽特・阿特伍德  | [下载](https://url89.ctfile.com/f/31084289-1357014304-350e20?p=8866) |\n| 大萝卜和难挑的鳄梨 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357014292-185e18?p=8866) |\n| 耶鲁小历史系列（全三册） | 詹姆斯・韦斯特・戴维森等 | [下载](https://url89.ctfile.com/f/31084289-1357014289-4430ac?p=8866) |\n| 我不允许自己难过太久 | 凯茜・苏丹 | [下载](https://url89.ctfile.com/f/31084289-1357014112-37b6b5?p=8866) |\n| 莫里哀先生传 | 米哈伊尔・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357013956-e85b77?p=8866) |\n| 逃亡 | 米哈伊尔・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357013950-1259d9?p=8866) |\n| 南十字星共和国 | 费・索洛古勃/瓦・勃留索夫 | [下载](https://url89.ctfile.com/f/31084289-1357013944-a6bd04?p=8866) |\n| 尤利西斯 | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357013971-811c23?p=8866) |\n| 遇见野兔的那一年 | 阿托・帕西林纳 | [下载](https://url89.ctfile.com/f/31084289-1357013932-463f69?p=8866) |\n| 闲情偶寄（果麦经典） | 李渔 | [下载](https://url89.ctfile.com/f/31084289-1357013896-9da2db?p=8866) |\n| 新选组血风录 | 司马辽太郎 | [下载](https://url89.ctfile.com/f/31084289-1357013905-3e7df8?p=8866) |\n| 文稿拾零 | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357013854-de3eab?p=8866) |\n| 君士坦丁堡最后之恋 | 米洛拉德・帕维奇 | [下载](https://url89.ctfile.com/f/31084289-1357013839-6df24f?p=8866) |\n| 白鲸（译文名著典藏） | 赫尔曼・麦尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357013803-9f3bf0?p=8866) |\n| 长日留痕 | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357013677-6e7b44?p=8866) |\n| 平民之宴 | 林真理子 | [下载](https://url89.ctfile.com/f/31084289-1357013668-46916b?p=8866) |\n| 别名格蕾丝 | 玛格丽特・阿特伍德  | [下载](https://url89.ctfile.com/f/31084289-1357013734-95fbc6?p=8866) |\n| 深入北方的小路 | 理查德・弗兰纳根 | [下载](https://url89.ctfile.com/f/31084289-1357013632-920634?p=8866) |\n| 斯万的一次爱情 | 马塞尔・普鲁斯特 | [下载](https://url89.ctfile.com/f/31084289-1357013623-896944?p=8866) |\n| 被掩埋的巨人 | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357013614-0c53d8?p=8866) |\n| 浮世画家 | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357013608-834a7f?p=8866) |\n| 无可慰藉 | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357013617-d81e38?p=8866) |\n| 远山淡影 | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357013599-85090f?p=8866) |\n| 小夜曲 | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357013602-a6afe2?p=8866) |\n| 今昔物语（浮世绘插图珍藏版） | 不详 | [下载](https://url89.ctfile.com/f/31084289-1357013569-1d2e80?p=8866) |\n| 六神磊磊读唐诗 | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357013521-bdd110?p=8866) |\n| 居山而行 | 雲姑 | [下载](https://url89.ctfile.com/f/31084289-1357013512-eda5a3?p=8866) |\n| 朗读者Ⅰ（全3册） | 董卿 | [下载](https://url89.ctfile.com/f/31084289-1357013494-19c678?p=8866) |\n| 三十七度二（译文经典） | 菲利普・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357013452-6e212b?p=8866) |\n| 形同陌路的时刻 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357013440-fec756?p=8866) |\n| 哈佛百年经典（01-38卷） | 伊索 | [下载](https://url89.ctfile.com/f/31084289-1357013542-8c1815?p=8866) |\n| 当我谈跑步时，我谈些什么 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357013386-6178c4?p=8866) |\n| 不属于我们的世纪 | 马修・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1357013275-4a608c?p=8866) |\n| 企鹅课 | 汤姆・米切尔 | [下载](https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866) |\n| 让时间停止的女孩 | 罗伯特・富兰克林・杨 | [下载](https://url89.ctfile.com/f/31084289-1357013245-4e6466?p=8866) |\n| 飞行家 | 双雪涛 | [下载](https://url89.ctfile.com/f/31084289-1357013146-61b96e?p=8866) |\n| 1984 | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357013032-d786be?p=8866) |\n| 罗马爱经（企鹅经典） | 奥维德 | [下载](https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866) |\n| 布登勃洛克一家 | 托马斯・曼 | [下载](https://url89.ctfile.com/f/31084289-1357013014-8c13d3?p=8866) |\n| 无欲的悲歌 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357013011-411202?p=8866) |\n| 平原上的摩西 | 双雪涛 | [下载](https://url89.ctfile.com/f/31084289-1357013002-6e48be?p=8866) |\n| 同栖生活 | 吉田修一 | [下载](https://url89.ctfile.com/f/31084289-1357012996-143f82?p=8866) |\n| 痛苦的中国人 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357012993-90c384?p=8866) |\n| 蝇王（戈尔丁文集） | 威廉・戈尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357012984-413b5f?p=8866) |\n| 平原 | 毕飞宇 | [下载](https://url89.ctfile.com/f/31084289-1357012975-9d2262?p=8866) |\n| 葛亮小说集（共四册） | 葛亮 | [下载](https://url89.ctfile.com/f/31084289-1357012978-46d74d?p=8866) |\n| 爸爸（短经典） | 瓦西利斯・亚历克萨基斯 | [下载](https://url89.ctfile.com/f/31084289-1357012786-703c7e?p=8866) |\n| 发条橙 | 安东尼・伯吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357012759-69a04a?p=8866) |\n| 如何阅读一本小说 | 托马斯・福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357012762-cfdccc?p=8866) |\n| 如何阅读一本文学书 | 托马斯・福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357012756-430541?p=8866) |\n| 杨周翰作品集（全6卷） | 杨周翰 | [下载](https://url89.ctfile.com/f/31084289-1357012693-67e2e6?p=8866) |\n| 家谱 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357012681-1ffe87?p=8866) |\n| 平家物语（译文名著精选） | 佚名 | [下载](https://url89.ctfile.com/f/31084289-1357012687-34135a?p=8866) |\n| 切尔诺贝利的悲鸣 | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866) |\n| 给青年诗人的信 | 莱内・马利亚・里尔克 | [下载](https://url89.ctfile.com/f/31084289-1357012636-064601?p=8866) |\n| 鳄鱼街 | 林蔚昀 | [下载](https://url89.ctfile.com/f/31084289-1357012648-211e67?p=8866) |\n| 集中营的舞者 | 保罗・格拉泽 | [下载](https://url89.ctfile.com/f/31084289-1357012684-e07dca?p=8866) |\n| 蜘蛛女之吻 | 曼努埃尔・普伊格 | [下载](https://url89.ctfile.com/f/31084289-1357012618-4143a3?p=8866) |\n| 焚书之书 | 福尔克尔・魏德曼 | [下载](https://url89.ctfile.com/f/31084289-1357012615-56e5ad?p=8866) |\n| 管家 | 玛丽莲・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357012600-1fdf69?p=8866) |\n| 摘星星的男孩 | 约翰・威廉姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866) |\n| 应许之地 | 埃里希・玛丽亚・雷马克 | [下载](https://url89.ctfile.com/f/31084289-1357012585-de8060?p=8866) |\n| 爱的进化论 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866) |\n| 狗样的春天 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357012612-81d19d?p=8866) |\n| 螺旋之谜 | 圣地亚哥・帕哈雷斯 | [下载](https://url89.ctfile.com/f/31084289-1357012579-c32ac7?p=8866) |\n| 人生最美是清欢 | 林清玄 | [下载](https://url89.ctfile.com/f/31084289-1357012576-33020b?p=8866) |\n| 流浪者史诗 | 詹姆斯・米切纳 | [下载](https://url89.ctfile.com/f/31084289-1357012555-1f6116?p=8866) |\n| 平凡的世界（套装共3册） | 路遥 | [下载](https://url89.ctfile.com/f/31084289-1357012519-dcdb11?p=8866) |\n| 废墟的花朵 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357012504-c2ae8c?p=8866) |\n| 雾都孤儿 | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357012480-bb6ba7?p=8866) |\n| 坎特伯雷故事 | 杰弗里・乔叟 | [下载](https://url89.ctfile.com/f/31084289-1357012498-08c134?p=8866) |\n| 丧钟为谁而鸣 | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357012468-207f9d?p=8866) |\n| 沉吟（短经典） | 梅尔塞・罗多雷达 | [下载](https://url89.ctfile.com/f/31084289-1357012465-2aeabb?p=8866) |\n| 从此以后 | 罗莎蒙德・勒普顿 | [下载](https://url89.ctfile.com/f/31084289-1357012462-214ab8?p=8866) |\n| 重新派遣 | 菲尔・克莱 | [下载](https://url89.ctfile.com/f/31084289-1357012450-4c35c5?p=8866) |\n| 假如明天来临 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012417-3590de?p=8866) |\n| 穆斯林的葬礼 | 霍达 | [下载](https://url89.ctfile.com/f/31084289-1357012387-7d3306?p=8866) |\n| 寓言集 | 胡安・何塞・阿雷奥拉 | [下载](https://url89.ctfile.com/f/31084289-1357012381-3d0134?p=8866) |\n| 小妹妹 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012345-2556ec?p=8866) |\n| 长眠不醒 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012336-5ebd47?p=8866) |\n| 漫长的告别 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012330-ad272f?p=8866) |\n| 她的国 | 寇研 | [下载](https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866) |\n| 半轮黄日 | 奇玛曼达・恩戈兹・阿迪契 | [下载](https://url89.ctfile.com/f/31084289-1357012108-afced2?p=8866) |\n| 动物集 | 胡安・何塞・阿雷奥拉 | [下载](https://url89.ctfile.com/f/31084289-1357012090-8ddb82?p=8866) |\n| 谋杀的简约之道 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012057-9e177a?p=8866) |\n| 等你呼唤我的名字 | 阿尔伯特・埃斯皮诺萨 | [下载](https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866) |\n| 穿条纹衣服的男孩 | 约翰・伯恩 | [下载](https://url89.ctfile.com/f/31084289-1357011964-f9985f?p=8866) |\n| 东京一年 | 蒋方舟 | [下载](https://url89.ctfile.com/f/31084289-1357011895-9ac584?p=8866) |\n| 爱伦·坡暗黑故事全集（下册） | 埃德加・爱伦・坡 | [下载](https://url89.ctfile.com/f/31084289-1357011853-51ba43?p=8866) |\n| 偷影子的人 | 马克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357011811-525654?p=8866) |\n| 罗尼 | 安德鲁・麦克尔・赫尔利 | [下载](https://url89.ctfile.com/f/31084289-1357011778-9792d8?p=8866) |\n| 岛上的最后一天 | 卡米尔・佩简 | [下载](https://url89.ctfile.com/f/31084289-1357011763-477c20?p=8866) |\n| 暗处 | 吉莉安・弗琳 | [下载](https://url89.ctfile.com/f/31084289-1357011760-26de62?p=8866) |\n| 摩托日记 | 埃内斯托・切・格瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866) |\n| 多斯的城堡 | 露西・蒙哥马利 | [下载](https://url89.ctfile.com/f/31084289-1357011712-fe2f13?p=8866) |\n| 围城 | 钱钟书 | [下载](https://url89.ctfile.com/f/31084289-1357011688-6b9ffc?p=8866) |\n| 孤儿列车 | 克里斯蒂娜・贝克・克兰 | [下载](https://url89.ctfile.com/f/31084289-1357011670-4e3c98?p=8866) |\n| 身份的焦虑 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357011703-4d4366?p=8866) |\n| 没有女人的男人们 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357011598-891967?p=8866) |\n| 步履不停 | 是枝裕和 | [下载](https://url89.ctfile.com/f/31084289-1357011592-cde9e5?p=8866) |\n| 敦刻尔克 | 沃尔特・劳德 | [下载](https://url89.ctfile.com/f/31084289-1357011535-df439f?p=8866) |\n| 爱伦·坡暗黑故事全集（上册） | 埃德加・爱伦・坡 | [下载](https://url89.ctfile.com/f/31084289-1357011532-a09ea4?p=8866) |\n| 丙申故事集 | 弋舟 | [下载](https://url89.ctfile.com/f/31084289-1357011514-e0566b?p=8866) |\n| 屠夫十字镇 | 约翰・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357011511-06936a?p=8866) |\n| 戴上手套擦泪：02陪伴 | 乔纳斯・嘉德尔 | [下载](https://url89.ctfile.com/f/31084289-1357011460-0422ee?p=8866) |\n| 戴上手套擦泪：03分离 | 乔纳斯・嘉德尔 | [下载](https://url89.ctfile.com/f/31084289-1357011451-c5bdd9?p=8866) |\n| 夏日走过山间（果麦经典） | 约翰・缪尔 | [下载](https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866) |\n| 一千零一夜（果麦经典） | 邓嘉宛译 | [下载](https://url89.ctfile.com/f/31084289-1357011433-69e0ef?p=8866) |\n| 诗经（全本全注全译） | 王秀梅译注 | [下载](https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866) |\n| 自深深处 | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357011409-a27899?p=8866) |\n| 席勒文集（全6册） | 席勒 | [下载](https://url89.ctfile.com/f/31084289-1357011478-c63c69?p=8866) |\n| 史铁生插图版经典作品选（全5册） | 史铁生 | [下载](https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866) |\n| 西部招妻 | 马宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866) |\n| 舞姬 | 森鸥外 | [下载](https://url89.ctfile.com/f/31084289-1357011316-ad1e18?p=8866) |\n| 雅舍遗珠 | 梁实秋 | [下载](https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866) |\n| 自由 | 乔纳森・弗兰岑 | [下载](https://url89.ctfile.com/f/31084289-1357011283-cb0e40?p=8866) |\n| 咖啡未冷前 | 川口俊和 | [下载](https://url89.ctfile.com/f/31084289-1357011202-0121ce?p=8866) |\n| 一只特立独行的猪（彩绘插图本） | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357011154-36b895?p=8866) |\n| 诺贝尔文学奖作品典藏书系全集（共31册） | 海明威/泰戈尔等 | [下载](https://url89.ctfile.com/f/31084289-1357011121-5976eb?p=8866) |\n| 情节与人物 | 杰夫・格尔克 | [下载](https://url89.ctfile.com/f/31084289-1357011055-c9592f?p=8866) |\n| 依偎 | 丁捷 | [下载](https://url89.ctfile.com/f/31084289-1357010914-197d3d?p=8866) |\n| 独居的一年 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357010776-6affa0?p=8866) |\n| 麦田里的守望者 | 杰罗姆・大卫・塞林格 | [下载](https://url89.ctfile.com/f/31084289-1357010602-c11552?p=8866) |\n| 霍乱时期的爱情 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357010596-537f33?p=8866) |\n| 黎明破晓的世界 | 威廉・曼彻斯特 | [下载](https://url89.ctfile.com/f/31084289-1357010686-b695e9?p=8866) |\n| 斯通纳 | 约翰・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357010497-2da934?p=8866) |\n| 饥饿百年 | 罗伟章 | [下载](https://url89.ctfile.com/f/31084289-1357010440-50916d?p=8866) |\n| 我的河山：抗日正面战场全纪实（套装共3册） | 陈钦  | [下载](https://url89.ctfile.com/f/31084289-1357010449-8b797c?p=8866) |\n| 先秦文体与话语方式研究 | 过常宝 | [下载](https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866) |\n| 戴上手套擦泪：01相遇 | 乔纳斯・嘉德尔 | [下载](https://url89.ctfile.com/f/31084289-1357010389-32ec03?p=8866) |\n| 妹头 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1357010377-d27ee2?p=8866) |\n| 毒木圣经 | 芭芭拉・金索沃 | [下载](https://url89.ctfile.com/f/31084289-1357010254-370a86?p=8866) |\n| 胡适文集（套装共7册） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866) |\n| 简·奥斯丁小说全集 | 简・奥斯丁 | [下载](https://url89.ctfile.com/f/31084289-1357010251-5f85e0?p=8866) |\n| 卡拉马佐夫兄弟 | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357010242-7facf4?p=8866) |\n| 我还是想你，妈妈 | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1357010209-11eeec?p=8866) |\n| 再见，萤火虫小巷 | 克莉丝汀・汉娜  | [下载](https://url89.ctfile.com/f/31084289-1357010206-82872c?p=8866) |\n| 人与永恒 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357010143-7eac54?p=8866) |\n| 寻找阿拉斯加 | 约翰・格林 | [下载](https://url89.ctfile.com/f/31084289-1357010146-a65cb5?p=8866) |\n| 四十个房间 | 奥尔加・格鲁辛 | [下载](https://url89.ctfile.com/f/31084289-1357010137-2f066d?p=8866) |\n| 龙头凤尾 | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1357010032-914b4e?p=8866) |\n| 月亮和六便士 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357010029-35b91e?p=8866) |\n| 超越智商 | 基思・斯坦诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866) |\n| 历史的技艺：塔奇曼论历史 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866) |\n| 经典人物原型45种 | 维多利亚・林恩・施密特 | [下载](https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866) |\n| 一条狗的使命 | 布鲁斯・卡梅隆 | [下载](https://url89.ctfile.com/f/31084289-1357009954-f64d06?p=8866) |\n| 一个人的朝圣2：奎妮的情歌 | 蕾秋・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357009930-818355?p=8866) |\n| 耶路撒冷 | 徐则臣 | [下载](https://url89.ctfile.com/f/31084289-1357009918-2c00da?p=8866) |\n| 梵高的火柴 | 张楚 | [下载](https://url89.ctfile.com/f/31084289-1357009900-0ac672?p=8866) |\n| 加缪全集（小说卷） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357009885-1f723b?p=8866) |\n| 民国趣读系列（共5册） | 编辑组 | [下载](https://url89.ctfile.com/f/31084289-1357009972-90b3b7?p=8866) |\n| 囚鸟 | 库尔特・冯内古特 | [下载](https://url89.ctfile.com/f/31084289-1357009828-d819d2?p=8866) |\n| 我是女兵，也是女人 | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866) |\n| 2666 | 罗贝托・波拉尼奥 | [下载](https://url89.ctfile.com/f/31084289-1357009816-01607a?p=8866) |\n| 白先勇细说红楼梦 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1357009822-88e0d4?p=8866) |\n| 偶发空缺 | J.K.罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357009801-91629b?p=8866) |\n| 漂亮朋友 | 莫泊桑 | [下载](https://url89.ctfile.com/f/31084289-1357009795-28962c?p=8866) |\n| 茵梦湖：施托姆抒情小说选 | 施托姆 | [下载](https://url89.ctfile.com/f/31084289-1357009780-5324ed?p=8866) |\n| 简·爱 | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357009786-616590?p=8866) |\n| 蝴蝶梦 | 达夫妮・杜穆里埃 | [下载](https://url89.ctfile.com/f/31084289-1357009771-997a5a?p=8866) |\n| 曼德施塔姆夫人回忆录 | 娜杰日达・曼德施塔姆 | [下载](https://url89.ctfile.com/f/31084289-1357009744-9ce9e3?p=8866) |\n| 努门诺尔与中洲之未完的传说 | J.R.R.托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357009759-306ebf?p=8866) |\n| 青春咖啡馆 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357009726-977513?p=8866) |\n| Stoner | John Williams | [下载](https://url89.ctfile.com/f/31084289-1357009696-f1deec?p=8866) |\n| 巴尔扎克精选集16册 | 巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357009684-6c54f5?p=8866) |\n| 像我这样的一个读者 | 西西 | [下载](https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866) |\n| 红岩 | 罗广斌/杨益言 | [下载](https://url89.ctfile.com/f/31084289-1357009657-7a2398?p=8866) |\n| 余华长篇小说（套装共4册） | 余华 | [下载](https://url89.ctfile.com/f/31084289-1357009645-718a5f?p=8866) |\n| 神奇动物在哪里 | J.K.罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357009636-41157c?p=8866) |\n| 没有你，什么都不甜蜜 | 约恩・卡尔曼・斯特凡松 | [下载](https://url89.ctfile.com/f/31084289-1357009612-883618?p=8866) |\n| 曾国藩智慧精髓大合集（套装共三册） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866) |\n| 江城 | 彼得・海斯勒 | [下载](https://url89.ctfile.com/f/31084289-1357009462-96eec5?p=8866) |\n| 看，这个世界 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357009435-6a6ded?p=8866) |\n| 圣诞忆旧集 | 杜鲁门・卡坡蒂 | [下载](https://url89.ctfile.com/f/31084289-1357009408-7c05b5?p=8866) |\n| 奥威尔作品集（套装共9册） | 奥威尔等 | [下载](https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866) |\n| 凡尔纳科幻经典（套装11册） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357009561-49bf9f?p=8866) |\n| H档案 | 伊斯梅尔・卡达莱 | [下载](https://url89.ctfile.com/f/31084289-1357009339-12c917?p=8866) |\n| 船夫日记 | 凯尔泰斯・伊姆莱 | [下载](https://url89.ctfile.com/f/31084289-1357009303-181850?p=8866) |\n| 徒步中国 | 雷克 | [下载](https://url89.ctfile.com/f/31084289-1357009309-befe4d?p=8866) |\n| 一半是火焰，一半是海水 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357009294-b318d0?p=8866) |\n| 菲洛梅娜 | 马丁・西克史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357009285-3f7aa9?p=8866) |\n| 哈默手稿 | 列奥纳多・达・芬奇 | [下载](https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866) |\n| 荒原狼 | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357009234-487551?p=8866) |\n| 活着本来单纯：丰子恺散文漫画精品集 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866) |\n| 世界史纲：生物和人类的简明史 | 吴文藻/冰心等 | [下载](https://url89.ctfile.com/f/31084289-1357009207-280a2c?p=8866) |\n| 守望之心 | 哈珀・李 | [下载](https://url89.ctfile.com/f/31084289-1357009153-c9ba37?p=8866) |\n| 诗词大会：品味古文人的“八卦”人生（套装共4册） | 张觅/郭瑞祥/江晓英 | [下载](https://url89.ctfile.com/f/31084289-1357009096-8baf10?p=8866) |\n| 生于一九八四 | 郝景芳 | [下载](https://url89.ctfile.com/f/31084289-1357009078-efa13f?p=8866) |\n| 莎士比亚喜剧全集 | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357009066-01e1b6?p=8866) |\n| 莎士比亚悲剧全集 | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357009063-7f3a81?p=8866) |\n| 容忍比自由更重要 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357009045-8da7c3?p=8866) |\n| 人生有何意义 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866) |\n| 我们能做什么 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866) |\n| 生命不息 | 凯特・阿特金森 | [下载](https://url89.ctfile.com/f/31084289-1357009015-52993b?p=8866) |\n| 暮光之城（豪华珍藏套装） | 斯蒂芬妮・梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357008949-e8803d?p=8866) |\n| 鱼王 | 维克托・阿斯塔菲耶夫 | [下载](https://url89.ctfile.com/f/31084289-1357008928-ed9c64?p=8866) |\n| 树号 | 维克托・阿斯塔菲耶夫 | [下载](https://url89.ctfile.com/f/31084289-1357008916-7b913a?p=8866) |\n| 失乐园（中英插图珍藏本） | 约翰・弥尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357008913-ba5a39?p=8866) |\n| 人类群星闪耀时 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357008880-a9b72b?p=8866) |\n| 局外人 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357008871-2380b6?p=8866) |\n| 卡罗尔 | 帕特里夏・海史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357008898-271551?p=8866) |\n| 兔子共和国（果麦经典） | 理查德・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357008853-deb5e3?p=8866) |\n| 新名字的故事 | 埃莱娜・费兰特 | [下载](https://url89.ctfile.com/f/31084289-1357008784-b8943f?p=8866) |\n| 卡夫卡全集（插图本）全9卷 | 叶廷芳 | [下载](https://url89.ctfile.com/f/31084289-1357008856-95c871?p=8866) |\n| 杀死一只知更鸟 | 哈珀・李 | [下载](https://url89.ctfile.com/f/31084289-1357008760-83b113?p=8866) |\n| 我们仨 | 杨绛 | [下载](https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866) |\n| 反乌托邦三部曲 | 扎米亚京/阿道司・赫胥黎  | [下载](https://url89.ctfile.com/f/31084289-1357008736-24eb0d?p=8866) |\n| 孤独小说家 | 石田衣良 | [下载](https://url89.ctfile.com/f/31084289-1357008721-33de84?p=8866) |\n| 河流之声 | 乔莫・卡夫雷 | [下载](https://url89.ctfile.com/f/31084289-1357008703-83cb6f?p=8866) |\n| 望春风 | 格非 | [下载](https://url89.ctfile.com/f/31084289-1357008655-3a2be5?p=8866) |\n| 布鲁克林有棵树 | 贝蒂・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357008640-fcdadb?p=8866) |\n| 金瓶梅（崇祯本） | 兰陵笑笑生  | [下载](https://url89.ctfile.com/f/31084289-1357008631-0b6df9?p=8866) |\n| 水浒传（校注本） | 施耐庵/罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357008622-98b55d?p=8866) |\n| 西游记（校注本） | 吴承恩 | [下载](https://url89.ctfile.com/f/31084289-1357008604-ca00ed?p=8866) |\n| 红楼梦（校注本） | 曹雪芹/高鹗 | [下载](https://url89.ctfile.com/f/31084289-1357008607-f29360?p=8866) |\n| 三国演义（校注本） | 罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357008598-ec27d1?p=8866) |\n| 大师们的写作课：好文笔是读出来的 | 舒明月 | [下载](https://url89.ctfile.com/f/31084289-1357008586-9602d1?p=8866) |\n| 白鹿原 | 陈忠实 | [下载](https://url89.ctfile.com/f/31084289-1357008565-f635ea?p=8866) |\n| 顾准文集 | 顾准 | [下载](https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866) |\n| 胡适文选 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357008550-543725?p=8866) |\n| 晃来晃去的人 | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1357008463-5b54a8?p=8866) |\n| 春风十里不如你：与冯唐聊天 | 凤凰书品 | [下载](https://url89.ctfile.com/f/31084289-1357008421-7af3cb?p=8866) |\n| 悲惨世界（套装上中下册） | 雨果 | [下载](https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866) |\n| 追问 | 丁捷 | [下载](https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866) |\n| 浮生六记 | 沈复 | [下载](https://url89.ctfile.com/f/31084289-1357008376-279b36?p=8866) |\n| 当尼采哭泣 | 欧文・亚隆 | [下载](https://url89.ctfile.com/f/31084289-1357008346-a7d90b?p=8866) |\n| 等等灵魂 | 李佩甫 | [下载](https://url89.ctfile.com/f/31084289-1357008343-34970f?p=8866) |\n| 东亚近代文明史上的梁启超 | 狭间直树 | [下载](https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866) |\n| 东周列国志（上下） | 蔡元放/冯梦龙  | [下载](https://url89.ctfile.com/f/31084289-1357008370-900bac?p=8866) |\n| 天局 | 矫健 | [下载](https://url89.ctfile.com/f/31084289-1357008208-18ccc8?p=8866) |\n| 一百个人的十年 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866) |\n| 地下铁道 | 科尔森・怀特黑德 | [下载](https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866) |\n| 第十层地狱 | 朱迪・皮考特 | [下载](https://url89.ctfile.com/f/31084289-1357008106-e60331?p=8866) |\n| 阿Q生命中的六个瞬间 | 汪晖 | [下载](https://url89.ctfile.com/f/31084289-1357008061-a92e4b?p=8866) |\n| 荒野寒山 | 何善蒙 | [下载](https://url89.ctfile.com/f/31084289-1357008076-ed2053?p=8866) |\n| 百年孤独 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357008040-9c2191?p=8866) |\n| 把生命浪费在美好的事物上 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357008034-2d080f?p=8866) |\n| 我的孤独是一座花园 | 阿多尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357007998-862b6d?p=8866) |\n| 寻欢作乐 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357008001-2f0063?p=8866) |\n| 苔丝（果麦经典） | 托马斯・哈代 | [下载](https://url89.ctfile.com/f/31084289-1357007950-e22210?p=8866) |\n| 张德芬身心灵四部曲（套装共4册） | 张德芬 | [下载](https://url89.ctfile.com/f/31084289-1357007971-ddfce3?p=8866) |\n| 上午咖啡下午茶 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866) |\n| 伪满洲国（套装共三册） | 迟子建 | [下载](https://url89.ctfile.com/f/31084289-1357007920-212a9c?p=8866) |\n| 一生的读书计划 | 克里夫顿・费迪曼/约翰・S・梅杰 | [下载](https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866) |\n| 萤火虫小巷 | 克莉丝汀・汉娜 | [下载](https://url89.ctfile.com/f/31084289-1357007914-abfad4?p=8866) |\n| 真正全集：王阳明全集 | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1357007911-e2f8f4?p=8866) |\n| 北鸢 | 葛亮 | [下载](https://url89.ctfile.com/f/31084289-1357007899-24deaf?p=8866) |\n| 先谋生，再谋爱 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357007836-560841?p=8866) |\n| 龙应台“人生三书”（套装共3册） | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866) |\n| 十日谈（译文名著精选） | 卜伽丘 | [下载](https://url89.ctfile.com/f/31084289-1357007794-cbc429?p=8866) |\n| 科雷马故事 | 瓦尔拉姆・沙拉莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866) |\n| 夜莺与玫瑰 | 王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357007755-dc10b4?p=8866) |\n| 沙乡年鉴（果麦经典） | 奥尔多・利奥波德 | [下载](https://url89.ctfile.com/f/31084289-1357007749-a6a55e?p=8866) |\n| 变色龙（译文名著精选） | 安东・契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357007737-3fd6bc?p=8866) |\n| 当呼吸化为空气 | 保罗・卡拉尼什 | [下载](https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866) |\n| 马丁·伊登（译文名著精选） | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357007722-8c323e?p=8866) |\n| 无声告白 | 伍绮诗 | [下载](https://url89.ctfile.com/f/31084289-1357007752-de9648?p=8866) |\n| 希腊神话故事 | 古斯塔夫・施瓦布 | [下载](https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866) |\n| 钓鱼的男孩 | 奇戈希・奥比奥玛 | [下载](https://url89.ctfile.com/f/31084289-1357007668-848bf7?p=8866) |\n| 我的天才女友 | 埃莱娜・费兰特 | [下载](https://url89.ctfile.com/f/31084289-1357007614-1518ae?p=8866) |\n| 棋王 | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357007548-c1b611?p=8866) |\n| 千年一叹 | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866) |\n| 如何阅读小说 | 安德烈・布林克 | [下载](https://url89.ctfile.com/f/31084289-1357007539-6200aa?p=8866) |\n| 民国大师细说中国历史（套装共12册） | 吕思勉/吴晗/傅斯年等 | [下载](https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866) |\n| 了不起的盖茨比 | 斯科特・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357007428-711e86?p=8866) |\n| 皮囊 | 蔡崇达 | [下载](https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866) |\n| 说故事的人 | 朱迪・皮考特 | [下载](https://url89.ctfile.com/f/31084289-1357007407-3d5566?p=8866) |\n| 阿甘正传 | 温斯顿・葛詹姆 | [下载](https://url89.ctfile.com/f/31084289-1357007395-34fe2b?p=8866) |\n| 莎士比亚四大悲剧（译文名著精选） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357007458-01f132?p=8866) |\n| 一地鸡毛 | 刘震云 | [下载](https://url89.ctfile.com/f/31084289-1357007380-c504ff?p=8866) |\n| 白宫岁月：基辛格回忆录（套装共4册） | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866) |\n| 一句顶一万句 | 刘震云 | [下载](https://url89.ctfile.com/f/31084289-1357007404-3f81af?p=8866) |\n| 二十年后（套装上下册） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357007203-5ad2db?p=8866) |\n| 我不是潘金莲 | 刘震云 | [下载](https://url89.ctfile.com/f/31084289-1357007218-272acd?p=8866) |\n| 雾中回忆 | 凯特・莫顿 | [下载](https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866) |\n| 年轮 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357007125-fc1448?p=8866) |\n| 小王子 | 安托万・德・圣埃克苏佩里  | [下载](https://url89.ctfile.com/f/31084289-1357007098-6d08d6?p=8866) |\n| 好心眼儿巨人 | 罗尔德・达尔  | [下载](https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866) |\n| 目送（插图版） | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866) |\n| 行者：一念一生 | 六小龄童 | [下载](https://url89.ctfile.com/f/31084289-1357007038-8367b2?p=8866) |\n| 乡关何处 | 土家野夫 | [下载](https://url89.ctfile.com/f/31084289-1357006978-c20038?p=8866) |\n| 岛上书店 | 加布瑞埃拉·泽文  | [下载](https://url89.ctfile.com/f/31084289-1357006963-ca71a3?p=8866) |\n| 水手比利·巴德 | 赫尔曼・梅尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357006942-b622ce?p=8866) |\n| 沉默的大多数（彩绘插图本） | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866) |\n| 剧院魅影（译文名著精选） | 卡斯顿・勒胡 | [下载](https://url89.ctfile.com/f/31084289-1357006849-571d7d?p=8866) |\n| 荆棘鸟（修订版） | 考琳·麦卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866) |\n| 看见 | 柴静 | [下载](https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866) |\n| 冬日笔记 | 保罗·奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357006726-faa615?p=8866) |\n| 不能承受的生命之轻 | 米兰·昆德拉 | [下载](https://url89.ctfile.com/f/31084289-1357006690-905dbd?p=8866) |\n| 莎乐美（译文经典） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357006588-7b673f?p=8866) |\n| 你永远都无法叫醒一个装睡的人 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866) |\n| 你们再也不写了？（短经典） | 洛朗丝・柯赛 | [下载](https://url89.ctfile.com/f/31084289-1357006438-e0248f?p=8866) |\n| 四先生（短经典） | 贡萨洛・曼努埃尔・塔瓦雷斯 | [下载](https://url89.ctfile.com/f/31084289-1357006435-b445a1?p=8866) |\n| 变形的陶醉（译文经典） | 斯台芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357006381-1473bb?p=8866) |\n| 骑兵军（译文经典） | 伊萨克・巴别尔 | [下载](https://url89.ctfile.com/f/31084289-1357006369-d34b18?p=8866) |\n| 欧·亨利短篇小说选（经典译林） | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1357006429-a8db77?p=8866) |\n| 非洲三万里 | 毕淑敏 | [下载](https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866) |\n| 中华的智慧 | 刘笑敢等 | [下载](https://url89.ctfile.com/f/31084289-1357006306-708bf4?p=8866) |\n| 我的孤单，我的自我 | 丽贝卡・特雷斯特 | [下载](https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866) |\n| 瓦尔登湖（经典译林） | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1357006270-0f049c?p=8866) |\n| 墨迹：留在生命和记忆中 | 曾子墨 | [下载](https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866) |\n| 邯郸记 | 汤显祖 | [下载](https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866) |\n| 教父三部曲（典藏版套装） | 马里奥・普佐 | [下载](https://url89.ctfile.com/f/31084289-1357006198-56cf95?p=8866) |\n| 地海传奇六部曲 | 厄休拉・勒古恩 | [下载](https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866) |\n| 白门柳（套装共3册） | 刘斯奋 | [下载](https://url89.ctfile.com/f/31084289-1357006099-ca9e83?p=8866) |\n| 红顶商人胡雪岩珍藏版大全集（套装共6册） | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357006021-885d07?p=8866) |\n| 没有个性的人 | 罗伯特・穆齐尔 | [下载](https://url89.ctfile.com/f/31084289-1357005946-b00b64?p=8866) |\n| 如果我们的语言是威士忌 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357005961-43a508?p=8866) |\n| 蒋勋说红楼梦 | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357005907-b6423c?p=8866) |\n| 夜半蜘蛛猴 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357005913-712f9f?p=8866) |\n| 触摸历史与进入五四 | 陈平原 | [下载](https://url89.ctfile.com/f/31084289-1357005892-ce6f57?p=8866) |\n| 船夫日记2 | 凯尔泰斯・伊姆莱 | [下载](https://url89.ctfile.com/f/31084289-1357005754-20f950?p=8866) |\n| 荷尔蒙夜谈 | 鲁敏 | [下载](https://url89.ctfile.com/f/31084289-1357005748-131ca5?p=8866) |\n| 说文解字通论 | 陆宗达 | [下载](https://url89.ctfile.com/f/31084289-1357005763-d13af3?p=8866) |\n| 癌症楼 | 亚历山大・索尔仁尼琴 | [下载](https://url89.ctfile.com/f/31084289-1357005730-e81dcc?p=8866) |\n| 一生必读的26部欧美人文经典译丛（套装26册） | 尼采/柏拉图等 | [下载](https://url89.ctfile.com/f/31084289-1357005814-2644a8?p=8866) |\n| 一个孤独漫步者的遐想（果麦经典） | 让-雅克・卢梭 | [下载](https://url89.ctfile.com/f/31084289-1357005694-ef74ce?p=8866) |\n| 阿弥陀佛么么哒 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357005679-dc7332?p=8866) |\n| 最好的我们 | 八月长安 | [下载](https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866) |\n| 我们要活的有尊严 | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1357005640-fbc1a6?p=8866) |\n| 夜色人生 | 丹尼斯・勒翰 | [下载](https://url89.ctfile.com/f/31084289-1357005625-b10eda?p=8866) |\n| 雾都孤儿（经典译林） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357005643-ae482c?p=8866) |\n| 我的阿勒泰 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357005583-4653e8?p=8866) |\n| 查令十字街84号 | 海莲·汉芙 | [下载](https://url89.ctfile.com/f/31084289-1357005511-6ba615?p=8866) |\n| 妩媚航班 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357005385-b07161?p=8866) |\n| 宵待草夜情 | 连城三纪彦 | [下载](https://url89.ctfile.com/f/31084289-1357005346-8b2d5a?p=8866) |\n| 寻找时间的人 | 凯特・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1357005340-cf1021?p=8866) |\n| 一个人的西部 | 雪漠 | [下载](https://url89.ctfile.com/f/31084289-1357005343-8070a3?p=8866) |\n| 百万英镑（译文名著精选） | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1357005322-1058e0?p=8866) |\n| 神曲（译文名著精选） | 但丁 | [下载](https://url89.ctfile.com/f/31084289-1357005313-5d3225?p=8866) |\n| 世说新语 | 刘义庆 | [下载](https://url89.ctfile.com/f/31084289-1357005316-e1c6a2?p=8866) |\n| 勃朗宁夫人十四行诗 | 伊丽莎白・芭蕾特・勃朗宁 | [下载](https://url89.ctfile.com/f/31084289-1357005118-5abcfc?p=8866) |\n| 法国知识分子史 | 吕一民/朱晓罕 | [下载](https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866) |\n| 无尽的谈话 | 莫里斯・布朗肖 | [下载](https://url89.ctfile.com/f/31084289-1357005043-e237a2?p=8866) |\n| 修配工 | 伯纳德・马拉默德 | [下载](https://url89.ctfile.com/f/31084289-1357004899-b12544?p=8866) |\n| 甜蜜的苦楚 | 考琳・麦卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357004812-31eee0?p=8866) |\n| 孤独的池塘（短经典） | 弗朗索瓦丝・萨冈 | [下载](https://url89.ctfile.com/f/31084289-1357004749-de3f5a?p=8866) |\n| 我们这个时代的怕和爱 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357004716-7b334c?p=8866) |\n"
  },
  {
    "path": "md/文明.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文明\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 贾雷德·戴蒙德作品集（套装共4册） | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866) |\n| 玛雅三千年 | 西尔韦纳斯・莫利 | [下载](https://url89.ctfile.com/f/31084289-1375499653-c0d007?p=8866) |\n| 失落文明系列（套装共7卷） | 克里斯蒂娜・里格斯等 | [下载](https://url89.ctfile.com/f/31084289-1375506259-f02629?p=8866) |\n| 轴心时代 | 凯伦・阿姆斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357051603-320266?p=8866) |\n| 文明（套装共2册） | 玛丽・比尔德/戴维・奥卢索加 | [下载](https://url89.ctfile.com/f/31084289-1357045870-aa1976?p=8866) |\n| 千年文明史 | 勒尔・兹威克 | [下载](https://url89.ctfile.com/f/31084289-1357045273-f0d9bc?p=8866) |\n| 文明的历史（全5册） | 丹尼尔・布尔斯廷 | [下载](https://url89.ctfile.com/f/31084289-1357043578-4bf330?p=8866) |\n| 联结：通向未来的文明史 | 詹姆斯・伯克 | [下载](https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866) |\n| 古典遗产：希腊的遗产+罗马的遗产 | M.I.芬利等 | [下载](https://url89.ctfile.com/f/31084289-1357029247-2b7b69?p=8866) |\n| 文明的故事（全11卷） | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357024591-9008fc?p=8866) |\n| 遗失的姆大陆之谜 | 詹姆斯・乔治瓦特 | [下载](https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866) |\n| 丝路回响-文明的交融（套装共7册) | 三联生活周刊 | [下载](https://url89.ctfile.com/f/31084289-1357020697-bb72e0?p=8866) |\n| 中国原生文明启示录 | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357015402-bea04c?p=8866) |\n| 那些惊心动魄的人类文明史（套装共18册） | 曹胜高等 | [下载](https://url89.ctfile.com/f/31084289-1357011619-8597aa?p=8866) |\n| 你一定爱读的极简欧洲史 | 约翰・赫斯特 | [下载](https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866) |\n"
  },
  {
    "path": "md/文明史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文明史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 世界文明史（全11卷） | 威尔・杜兰特 | [下载](https://url89.ctfile.com/f/31084289-1357032961-0a7e27?p=8866) |\n"
  },
  {
    "path": "md/文案.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文案\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 秒赞：文案女王20年创作技巧与心法 | 林桂枝 | [下载](https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866) |\n| 爆款文案写作指南 | 李洛克 | [下载](https://url89.ctfile.com/f/31084289-1357000411-b40ddd?p=8866) |\n| 文案的基本修养 | 东东枪 | [下载](https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866) |\n| 好文案会说话 | 梅田悟司 | [下载](https://url89.ctfile.com/f/31084289-1356994906-f67e3a?p=8866) |\n| 人人都能学会的刷屏文案写作技巧 | 吕白 | [下载](https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866) |\n| 文案基本功 | 苏芯 | [下载](https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866) |\n| 微文案 | 朱冰 | [下载](https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866) |\n| 广告文案 | 乐剑峰 | [下载](https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866) |\n| 文案变现 | 叶小鱼 | [下载](https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866) |\n| 10W+走心文案是怎样炼成的 | 卢建彰 | [下载](https://url89.ctfile.com/f/31084289-1357029916-76a0fe?p=8866) |\n| 新媒体文案创作与传播 | 秋叶/叶小鱼/勾俊伟 | [下载](https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866) |\n| 好文案一句话就够了 | 川上徹也 | [下载](https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866) |\n| 文案创作完全手册 | 罗伯特・布莱 | [下载](https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866) |\n| 营销的16个关键词 | 叶茂中 | [下载](https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866) |\n| 爆款文案 | 关健明 | [下载](https://url89.ctfile.com/f/31084289-1357017604-0d7b9e?p=8866) |\n| 尖叫感 | 马楠 | [下载](https://url89.ctfile.com/f/31084289-1357015198-8fc0f5?p=8866) |\n| 文案圣经 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866) |\n"
  },
  {
    "path": "md/文物.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文物\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 巫鸿经典作品集（套装10册） | 巫鸿 | [下载](https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866) |\n| 国家宝藏（全3季） | 于蕾 | [下载](https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866) |\n| 跟着文物穿越历史 | 张志浩 | [下载](https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866) |\n| 汉字与文物的故事（套装共4册） | 许进雄 | [下载](https://url89.ctfile.com/f/31084289-1375513744-067186?p=8866) |\n| 良渚文明丛书 | 浙江大学出版社 | [下载](https://url89.ctfile.com/f/31084289-1357001587-15feaf?p=8866) |\n| 文物中国史 | 中国国家博物馆 | [下载](https://url89.ctfile.com/f/31084289-1356985540-ef65ab?p=8866) |\n| 中国文物常识 | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1357023637-a8bb06?p=8866) |\n| 我在故宫修文物 | 萧寒/绿妖 | [下载](https://url89.ctfile.com/f/31084289-1357008073-19db87?p=8866) |\n"
  },
  {
    "path": "md/文献学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文献学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 义疏学衰亡史论 | 乔秀岩 | [下载](https://url89.ctfile.com/f/31084289-1357054387-22b652?p=8866) |\n| 从六艺到十三经（上下册） | 程苏东 | [下载](https://url89.ctfile.com/f/31084289-1357051807-3757fe?p=8866) |\n| 先秦文体与话语方式研究 | 过常宝 | [下载](https://url89.ctfile.com/f/31084289-1357010422-c9b36f?p=8866) |\n"
  },
  {
    "path": "md/文艺.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文艺\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 善哉善哉，就你话多 | 明安 | [下载](https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866) |\n| 小文艺口袋文库·知人系列（全7册） | 安妮・海勒等 | [下载](https://url89.ctfile.com/f/31084289-1356985999-ba1691?p=8866) |\n| 奇迹病房 | 朱利安・桑德勒尔 | [下载](https://url89.ctfile.com/f/31084289-1356983974-3ed4fc?p=8866) |\n| 我喜欢你，像风走了八千里 | 末那大叔 | [下载](https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866) |\n| 撒野（木小瓷作品） | 木小瓷 | [下载](https://url89.ctfile.com/f/31084289-1357049983-aec537?p=8866) |\n| 犹是深闺梦里人 | 井上三尺 | [下载](https://url89.ctfile.com/f/31084289-1357030462-ce1a44?p=8866) |\n| 西藏，不止旅行 | 周硚 | [下载](https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866) |\n| 生活上瘾指南 | 姚瑶 | [下载](https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866) |\n| 阿司匹林博物馆 | 赵越 | [下载](https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866) |\n| 让我留在你身边 | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1357009714-b77a2e?p=8866) |\n"
  },
  {
    "path": "md/文艺复兴.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文艺复兴\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 文艺复兴的故事（全六册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866) |\n| 海都物语 | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357028041-e5ae35?p=8866) |\n"
  },
  {
    "path": "md/文言文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文言文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 国学梯级公开课（套装共6册） | 摩罗/杨帆 | [下载](https://url89.ctfile.com/f/31084289-1357036837-519673?p=8866) |\n| 百年文言 | 陳永正/徐晉如 | [下载](https://url89.ctfile.com/f/31084289-1357027861-286c94?p=8866) |\n"
  },
  {
    "path": "md/文集.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文集\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 傅斯年文集（套装共6册） | 傅斯年 | [下载](https://url89.ctfile.com/f/31084289-1356991504-c70585?p=8866) |\n| 辛波斯卡诗选三部曲 | 维斯拉瓦・辛波斯卡 | [下载](https://url89.ctfile.com/f/31084289-1357045282-d2f37d?p=8866) |\n| 国学大师顾随全集（套装10册） | 顾随 | [下载](https://url89.ctfile.com/f/31084289-1357043959-3cba5d?p=8866) |\n| 王佐良全集（套装共12卷） | 王佐良 | [下载](https://url89.ctfile.com/f/31084289-1357042960-41e26a?p=8866) |\n"
  },
  {
    "path": "md/文革.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 文革\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 革命时期的爱情 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035277-f2f141?p=8866) |\n| 燕南园往事 | 汤一介等 | [下载](https://url89.ctfile.com/f/31084289-1357025530-09fd76?p=8866) |\n| 无路可逃 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357025032-2108ca?p=8866) |\n| 牛棚杂忆 | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1357024243-42d4fc?p=8866) |\n| 市民底层笔记 | 张礼士 | [下载](https://url89.ctfile.com/f/31084289-1357020877-80c338?p=8866) |\n| 中国知青口述史 | 刘小萌 | [下载](https://url89.ctfile.com/f/31084289-1357009201-91fa5a?p=8866) |\n| 失落的一代：中国的上山下乡运动1968-1980 | 潘鸣啸 | [下载](https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866) |\n| 暴风雨的记忆 | 北岛 | [下载](https://url89.ctfile.com/f/31084289-1357008907-8cef4b?p=8866) |\n| 牛棚杂忆（图文版） | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866) |\n| 求索中国：文革前十年史 | 萧东连/朱地等 | [下载](https://url89.ctfile.com/f/31084289-1357008892-fc9b80?p=8866) |\n| 一百个人的十年 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866) |\n| 唉，我的沧桑50年（1959至今） | 八爪夜叉 | [下载](https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866) |\n| 一个红卫兵的自白 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357006858-8e4d5d?p=8866) |\n| 中国知青史·初澜（1953～1968） | 定宜庄 | [下载](https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866) |\n| 中国知青史·大潮（1966～1980） | 刘小萌 | [下载](https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866) |\n"
  },
  {
    "path": "md/斯坦福.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 斯坦福\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 斯坦福社会创新评论合集（套装共9册） | 斯坦福社会创新评论编辑部 | [下载](https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866) |\n"
  },
  {
    "path": "md/斯大林.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 斯大林\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 斯大林传 | 德米特里・安东诺维奇・沃尔科戈诺夫 | [下载](https://url89.ctfile.com/f/31084289-1375491829-e707fa?p=8866) |\n| 青年斯大林 | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1357022413-7e0d2c?p=8866) |\n"
  },
  {
    "path": "md/新媒体.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 新媒体\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新媒体的语言 | 列夫・马诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866) |\n| 创意短视频策划、推广、引流、爆粉与变现全能攻略 | 肖恩・卡内尔/本吉・特拉维斯 | [下载](https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866) |\n| 点亮视频号 | 刘兴亮 | [下载](https://url89.ctfile.com/f/31084289-1375511014-d8a952?p=8866) |\n| 裂变增长 | 施襄/杨嘉伟 | [下载](https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866) |\n| 抖音营销系统 | 刘大贺 | [下载](https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866) |\n| 文案变现 | 叶小鱼 | [下载](https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866) |\n| 微博营销与运营 | 秋叶/萧秋水/刘勇 | [下载](https://url89.ctfile.com/f/31084289-1357025710-bd18ec?p=8866) |\n| 新媒体营销概论 | 秋叶 | [下载](https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866) |\n| 新媒体写作平台策划与运营 | 哈默 | [下载](https://url89.ctfile.com/f/31084289-1357025650-823a65?p=8866) |\n| 新媒体文案创作与传播 | 秋叶/叶小鱼/勾俊伟 | [下载](https://url89.ctfile.com/f/31084289-1357025605-183333?p=8866) |\n"
  },
  {
    "path": "md/新经济.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 新经济\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 元宇宙 | 赵国栋/易欢欢/徐远重 | [下载](https://url89.ctfile.com/f/31084289-1375500148-0863f3?p=8866) |\n| 明智转向 | 奥马尔・阿布什 | [下载](https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866) |\n| 工业互联网浪潮 | 张学军/王保平 | [下载](https://url89.ctfile.com/f/31084289-1356993973-efa42c?p=8866) |\n| 数字货币 | 龙白滔 | [下载](https://url89.ctfile.com/f/31084289-1356991573-077591?p=8866) |\n| 优步：算法重新定义工作 | 亚力克斯・罗森布拉特 | [下载](https://url89.ctfile.com/f/31084289-1356990616-fdc6bc?p=8866) |\n| 门到门时代 | Edward Humes | [下载](https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866) |\n| 硅谷简史 | 钱纲 | [下载](https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866) |\n| 破绽：风口上的独角兽 | 陈歆磊 | [下载](https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866) |\n| 互动 | 詹妮弗・杜尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1357031617-5f50a6?p=8866) |\n| 电竞生态 | 王萌/路江涌/李晓峰 | [下载](https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866) |\n| 不会被机器替代的人 | 杰夫・科尔文 | [下载](https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866) |\n| 释放潜能：平台型组织的进化路线图 | 穆胜 | [下载](https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866) |\n"
  },
  {
    "path": "md/新闻.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 新闻\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新闻业的怀乡病 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1375513351-511f7d?p=8866) |\n| 《纽约时报》是怎么做新闻的 | 尼基・阿瑟 | [下载](https://url89.ctfile.com/f/31084289-1357003819-60e127?p=8866) |\n| 效应 | 中璋 | [下载](https://url89.ctfile.com/f/31084289-1356997804-194bf8?p=8866) |\n| 美国科学新闻精选套装 | 《科学新闻》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866) |\n| 我的对面是你 | 傅莹 | [下载](https://url89.ctfile.com/f/31084289-1357024765-1f9c07?p=8866) |\n| 王国与权力 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357022410-4ed181?p=8866) |\n| 深度：惊心动魄三十年国运家事纪实 | 李锦  | [下载](https://url89.ctfile.com/f/31084289-1357020544-1aec28?p=8866) |\n| 新闻抄袭历史 | 宋燕 | [下载](https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866) |\n"
  },
  {
    "path": "md/新零售.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 新零售\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 名创优品的101个新零售细节 | 张桓/杨永朋 | [下载](https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866) |\n"
  },
  {
    "path": "md/方法.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 方法\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 高效论证 | 大卫・莫罗 | [下载](https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866) |\n| 聪明人的才华战略 | 莱昂纳多・洛斯佩纳托 | [下载](https://url89.ctfile.com/f/31084289-1357004305-9c50c2?p=8866) |\n| 为什么精英都有超强专注力 | 西多昌规 | [下载](https://url89.ctfile.com/f/31084289-1356987115-60ad0e?p=8866) |\n| 为什么精英都是方法控 | 金武贵 | [下载](https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866) |\n| 如何讨论 | 史蒂芬·D. 布鲁克菲尔德/史蒂芬・普莱斯基尔 | [下载](https://url89.ctfile.com/f/31084289-1356984676-66809c?p=8866) |\n| 安心正念课 | 赵安安 | [下载](https://url89.ctfile.com/f/31084289-1357046125-a2aee7?p=8866) |\n| 极简思考 | 迈克・费廖洛 | [下载](https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866) |\n| 终结拖延症的49种方法 | 海韵 | [下载](https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866) |\n| 读懂一本书 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866) |\n| 如何高效学习 | 斯科特・扬 | [下载](https://url89.ctfile.com/f/31084289-1357037644-0295ce?p=8866) |\n| 所谓学习好，就是方法好 | 坪田信贵 | [下载](https://url89.ctfile.com/f/31084289-1357036189-bba070?p=8866) |\n| 写作提高一点点 | 玛丽-凯特・麦基 | [下载](https://url89.ctfile.com/f/31084289-1357033330-7c6a2b?p=8866) |\n| 学习之道（第2版） | 乔希・维茨金 | [下载](https://url89.ctfile.com/f/31084289-1357033000-290713?p=8866) |\n| 如何有效阅读 | 藤原和博 | [下载](https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866) |\n| 刻意改变 | 玛丽・简・瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357028248-dd3101?p=8866) |\n| 思辨与立场 | 理查德・保罗/琳达・埃尔 | [下载](https://url89.ctfile.com/f/31084289-1357025266-da9182?p=8866) |\n| 完全写作指南 | 劳拉・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357023043-87c82d?p=8866) |\n| 如何成为有效学习的高手 | 卡尔・纽波特 | [下载](https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866) |\n| 万万没想到：用理工科思维理解世界 | 万维钢 | [下载](https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866) |\n| 延展：释放有限资源的无限潜能 | 斯科特・索南沙因 | [下载](https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866) |\n| 全神贯注的方法 | 托马斯 M. 斯特纳 | [下载](https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866) |\n| 深度学习：彻底解决你的知识焦虑 | 今井睦美 | [下载](https://url89.ctfile.com/f/31084289-1357019398-eb3c14?p=8866) |\n| 如何高效阅读 | 彼得・孔普 | [下载](https://url89.ctfile.com/f/31084289-1357018705-8aca11?p=8866) |\n| 一页纸工作整理术 | 丹・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1357016548-7f5190?p=8866) |\n| 一页纸创意思考术 | 丹・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1357016518-adca56?p=8866) |\n| 麦肯锡教我的工作方法 | 中村诚一 | [下载](https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866) |\n| 请停止无效努力 | 孙圈圈 | [下载](https://url89.ctfile.com/f/31084289-1357015162-64e08f?p=8866) |\n| 如何打造你的独特观点 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357014178-6adf58?p=8866) |\n| 刻意练习：如何从新手到大师 | 安德斯・艾利克森 | [下载](https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866) |\n| 如何阅读一本文学书 | 托马斯・福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357012756-430541?p=8866) |\n| 如何阅读一本书 | 莫提默・艾德勒 / 查尔斯・范多伦  | [下载](https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866) |\n| 麦肯锡工具 | 保罗・弗里嘉 | [下载](https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866) |\n| 我们要自学 | 张玳 | [下载](https://url89.ctfile.com/f/31084289-1357007317-c83807?p=8866) |\n| 解决问题最简单的方法 | 达伦・布里奇/戴维・路易斯  | [下载](https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866) |\n| 外语是怎样学会的 | 王初明 | [下载](https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866) |\n| 超级记忆力训练法 | 刘志华 | [下载](https://url89.ctfile.com/f/31084289-1357005052-7a59fb?p=8866) |\n| 神奇的眼脑直映快读法 | 胡雅茹 | [下载](https://url89.ctfile.com/f/31084289-1357004983-8ff776?p=8866) |\n"
  },
  {
    "path": "md/方言.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 方言\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 东言西语 | 郑子宁 | [下载](https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866) |\n| 南腔北调：在语言中重新发现中国 | 郑子宁 | [下载](https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866) |\n"
  },
  {
    "path": "md/旅游.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 旅游\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西藏，西藏！ | 卡布 | [下载](https://url89.ctfile.com/f/31084289-1375496611-f0aac2?p=8866) |\n| 文学履途 | 纽约时报主编 | [下载](https://url89.ctfile.com/f/31084289-1356985852-f9ca35?p=8866) |\n| 秘境 | 乔舒亚・福尔等 | [下载](https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866) |\n| 多瑙河之旅 | 克劳迪欧・马格里斯 | [下载](https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866) |\n| 全民发呆的澳洲 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866) |\n| 下一站，西藏 | 山小 | [下载](https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866) |\n| 徒步中国 | 雷克 | [下载](https://url89.ctfile.com/f/31084289-1357009309-befe4d?p=8866) |\n"
  },
  {
    "path": "md/旅行.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 旅行\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 在中国大地上 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866) |\n| 行走的柠檬 | 海伦娜・阿特利 | [下载](https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866) |\n| 德国文化漫游 | 鲁成文 | [下载](https://url89.ctfile.com/f/31084289-1357000294-049fc0?p=8866) |\n| 从大吉岭到克什米尔 | 闻中 | [下载](https://url89.ctfile.com/f/31084289-1356989050-f11e1a?p=8866) |\n| 沿坟墓而行 | 纳韦德・凯尔曼尼 | [下载](https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866) |\n| 去他的巴西 | 胡续冬 | [下载](https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866) |\n| 正午6：旧山河，新故事 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866) |\n| 和伊壁鸠鲁一起旅行 | 丹尼尔・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866) |\n| 知日46：东京就是日本！ | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1357047952-aa1e1c?p=8866) |\n| 秘境 | 乔舒亚・福尔等 | [下载](https://url89.ctfile.com/f/31084289-1357046902-607977?p=8866) |\n| 我的探险生涯Ⅰ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866) |\n| 世界最险恶之旅Ⅰ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046305-ae2452?p=8866) |\n| 世界最险恶之旅Ⅱ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866) |\n| 珠峰史诗 | 荣赫鹏 | [下载](https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866) |\n| 英国环岛之旅 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357045783-b17647?p=8866) |\n| 威尼斯是一条鱼 | 提齐安诺・斯卡帕 | [下载](https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866) |\n| 夜航西飞 | 柏瑞尔・马卡姆 | [下载](https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866) |\n| 山旅书札 | 伊莎贝拉・博德 | [下载](https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866) |\n| 说吧，叙利亚 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866) |\n| 墨西哥湾千里徒步行 | 约翰・缪尔 | [下载](https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866) |\n| 前往阿姆河之乡 | 罗伯特・拜伦 | [下载](https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866) |\n| 老巴塔哥尼亚快车 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866) |\n| 别列津纳河 | 西尔万・泰松 | [下载](https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866) |\n| 美国深南之旅 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866) |\n| 通往印度次大陆 | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866) |\n| 雨天炎天 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866) |\n| 边境·近境 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866) |\n| 地下巴黎 | 洛朗・多伊奇 | [下载](https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866) |\n| 远方的鼓声 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866) |\n| 伊斯坦布尔 | 埃布鲁・宝雅 | [下载](https://url89.ctfile.com/f/31084289-1357031392-6e01c8?p=8866) |\n| 西藏，不止旅行 | 周硚 | [下载](https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866) |\n| 咖啡苦不苦 | 陈丹燕 | [下载](https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866) |\n| 明天我要去冰岛 | 嘉倩 | [下载](https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866) |\n| 飞乐鸟的手绘旅行笔记：苏州·杭州 | 飞乐鸟 | [下载](https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866) |\n| 这世界啊，随他去吧 | 李沐泽 | [下载](https://url89.ctfile.com/f/31084289-1357017355-7f8a21?p=8866) |\n| 机场里的小旅行 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016749-ca198e?p=8866) |\n| 自由与爱之地：入以色列记 | 云也退 | [下载](https://url89.ctfile.com/f/31084289-1357014499-251f20?p=8866) |\n| 飞乐鸟的手绘旅行笔记：厦门 | 飞乐鸟 | [下载](https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866) |\n| 老两口儿的驼峰之旅 | 维多利亚・特威德 | [下载](https://url89.ctfile.com/f/31084289-1357013344-7beb9e?p=8866) |\n| 老两口儿的世外桃源 | 维多利亚・特威德 | [下载](https://url89.ctfile.com/f/31084289-1357013326-79c181?p=8866) |\n| 老两口儿的狂欢 | 维多利亚・特威德 | [下载](https://url89.ctfile.com/f/31084289-1357013329-02ec90?p=8866) |\n| 去，你的旅行 | 阿Sam | [下载](https://url89.ctfile.com/f/31084289-1357013356-e5707c?p=8866) |\n| 圣地亚哥朝圣之路 | 王赛男 | [下载](https://url89.ctfile.com/f/31084289-1357011304-11a0bb?p=8866) |\n| 西藏，改变一生的旅行 | 尼玛达娃 | [下载](https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866) |\n| 一个人的朝圣 | 蕾秋・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357009921-87bfcb?p=8866) |\n| 他们最幸福 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357009387-6687c1?p=8866) |\n| 背包十年 | 小鹏 | [下载](https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866) |\n| 进入空气稀薄地带 | 乔恩・克拉考尔 | [下载](https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866) |\n| 旅行与读书 | 詹宏志 | [下载](https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866) |\n| 荒野求生：面对冰封的海洋 | 贝尔・格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357007473-ebc0b0?p=8866) |\n| 上海秘境 | TimeOut 上海 | [下载](https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866) |\n| 好吗好的 | 大冰  | [下载](https://url89.ctfile.com/f/31084289-1357007014-27f7a8?p=8866) |\n| 禅与摩托车维修艺术 | 罗伯特·M.波西格 | [下载](https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866) |\n| 你是尘埃也是光 | 梁子 | [下载](https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866) |\n| 乖，摸摸头 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866) |\n"
  },
  {
    "path": "md/日常.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 日常\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 日常人文课（共5册） | 泰吉万・帕丁格 | [下载](https://url89.ctfile.com/f/31084289-1375506901-fb7ee6?p=8866) |\n"
  },
  {
    "path": "md/日耳曼.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 日耳曼\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一本最危险的书 | 克里斯托夫·克里布斯 | [下载](https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866) |\n"
  },
  {
    "path": "md/日记.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 日记\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 张宗和日记（全二卷） | 张宗和 | [下载](https://url89.ctfile.com/f/31084289-1375510597-3f3fea?p=8866) |\n| 孙宝瑄日记 | 孙宝瑄 | [下载](https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866) |\n| 心为身役：苏珊·桑塔格日记与笔记（1964-1980） | 苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866) |\n| 重生：苏珊·桑塔格日记与笔记（1947-1963） | 苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866) |\n| 玻利维亚日记 | 切・格瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357030522-b0f6d8?p=8866) |\n| 梁漱溟日记 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357010896-aa236e?p=8866) |\n| 曾国藩智慧精髓大合集（套装共三册） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357009528-3178c5?p=8866) |\n"
  },
  {
    "path": "md/早餐.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 早餐\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 食帖10：早餐，真的太重要了 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866) |\n"
  },
  {
    "path": "md/时尚.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 时尚\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 卡尔·拉格斐传 | 洛朗・阿朗-卡龙 | [下载](https://url89.ctfile.com/f/31084289-1375500028-a96942?p=8866) |\n| 编剧的艺术 | 拉约什・埃格里 | [下载](https://url89.ctfile.com/f/31084289-1356994639-027e11?p=8866) |\n| 如何假装懂音乐 | 王硕/储智勇 | [下载](https://url89.ctfile.com/f/31084289-1356992167-7c7309?p=8866) |\n| 原宿牛仔 | W. 大卫・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357053643-0a120a?p=8866) |\n| 家的书 | 考薇 | [下载](https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866) |\n| 买买买的乐趣 | 山内麻里子 | [下载](https://url89.ctfile.com/f/31084289-1357043890-8d74b4?p=8866) |\n| 法式优雅 | 弗雷德里克・维塞 | [下载](https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866) |\n| 基本穿搭 | 大山旬 | [下载](https://url89.ctfile.com/f/31084289-1357028179-6a7a86?p=8866) |\n"
  },
  {
    "path": "md/时政.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 时政\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 看懂世界格局的第一本书：中国周边 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866) |\n| 阳谋为上 | 夏昕 | [下载](https://url89.ctfile.com/f/31084289-1357007908-6e6069?p=8866) |\n| 大实话：历史与现在 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357006915-0aa5f7?p=8866) |\n"
  },
  {
    "path": "md/时机.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 时机\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 时机管理：完美时机的隐秘模式 | 丹尼尔・平克 | [下载](https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866) |\n"
  },
  {
    "path": "md/时间.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 时间\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 解码时间 | 阿德里安・巴登 | [下载](https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866) |\n| 时间观 | 西蒙・加菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357054399-46d739?p=8866) |\n| 创造时间 | 杰克・纳普/约翰・泽拉茨基 | [下载](https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866) |\n| 时间的秩序 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866) |\n| 时间之问 | 汪波 | [下载](https://url89.ctfile.com/f/31084289-1357031944-64d9c3?p=8866) |\n| 每天最重要的2小时 | 乔西・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866) |\n| 时间的礼物 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357029586-943dca?p=8866) |\n| The Order of Time | Carlo Rovelli | [下载](https://url89.ctfile.com/f/31084289-1357023880-1dbfad?p=8866) |\n| 为什么精英都是时间控 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866) |\n| 时间不存在 | 韩松/刘宇昆等 | [下载](https://url89.ctfile.com/f/31084289-1357022311-2d6973?p=8866) |\n| 未来时间使用手册 | 松冈真宏 | [下载](https://url89.ctfile.com/f/31084289-1357020493-4cfaea?p=8866) |\n| 奇特的一生 | 格拉宁 | [下载](https://url89.ctfile.com/f/31084289-1357019428-6d23f0?p=8866) |\n| 把时间当作朋友（第3版） | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866) |\n| 你一年的8760小时 | 艾力 | [下载](https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866) |\n| 高效15法则 | 凯文・克鲁斯 | [下载](https://url89.ctfile.com/f/31084289-1357015645-a8ae79?p=8866) |\n| 暗时间 | 刘未鹏 | [下载](https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866) |\n| 别再用勤奋掩饰你的懒惰 | 阿何 | [下载](https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866) |\n| 自制力 | 高原 | [下载](https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866) |\n| 番茄工作法图解 | 诺特伯格 | [下载](https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866) |\n"
  },
  {
    "path": "md/昆虫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 昆虫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 寻蜂记 | 戴夫・古尔森 | [下载](https://url89.ctfile.com/f/31084289-1375491859-9bd801?p=8866) |\n| 昆虫记（全10卷） | 法布尔 | [下载](https://url89.ctfile.com/f/31084289-1375510141-5c4c28?p=8866) |\n"
  },
  {
    "path": "md/明史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 明史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 李洁非明史系列三部曲 | 李洁非 | [下载](https://url89.ctfile.com/f/31084289-1375503595-333015?p=8866) |\n| 朱元璋大传 | 陈梧桐 | [下载](https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866) |\n| 内忧与外患 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045750-19a698?p=8866) |\n| 王朝的末路 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045705-73a219?p=8866) |\n| 一代巨人：明末耶稣会士在中国的故事 | 邓恩 | [下载](https://url89.ctfile.com/f/31084289-1357030192-3cc9c1?p=8866) |\n| 滴血的大朝代 | 宗承灏 | [下载](https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866) |\n| 锦衣卫 | 熊剑平 | [下载](https://url89.ctfile.com/f/31084289-1357025716-291f4b?p=8866) |\n| 显微镜下的大明 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357025350-ca3612?p=8866) |\n| 朱明王朝 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357024888-0afa6a?p=8866) |\n| 明史不忍细看 | 张朝山 | [下载](https://url89.ctfile.com/f/31084289-1357023964-23b953?p=8866) |\n| 暮日耀光：张居正与明代中后期政局 | 韦庆远 | [下载](https://url89.ctfile.com/f/31084289-1357011595-bc04e1?p=8866) |\n| 神偷天下（全三册） | 郑丰 | [下载](https://url89.ctfile.com/f/31084289-1357009021-1cedd4?p=8866) |\n| 明帝国边防史：从土木堡之变到大凌河血战 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357009042-8a3cca?p=8866) |\n| 庸人治国 | 苗棣 | [下载](https://url89.ctfile.com/f/31084289-1357008961-b049a1?p=8866) |\n| 挣扎的帝国：元与明 | 卜正民 | [下载](https://url89.ctfile.com/f/31084289-1357008841-53bcc3?p=8866) |\n"
  },
  {
    "path": "md/明星.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 明星\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| К.С.斯坦尼斯拉夫斯基作品集（套装共四册） | 斯坦尼斯拉夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357019338-3fa8a5?p=8866) |\n"
  },
  {
    "path": "md/明朝.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 明朝\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大明兴衰三百年 | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1375498804-6bd132?p=8866) |\n| 大明风云（套装共9册） | 云石等 | [下载](https://url89.ctfile.com/f/31084289-1375501321-cc13fe?p=8866) |\n| 春明梦余录 | 狐周周 | [下载](https://url89.ctfile.com/f/31084289-1375511800-d57445?p=8866) |\n| 严嵩与张居正 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1356997336-91c17f?p=8866) |\n| 明朝那些事儿（图文增补版） | 当年明月 | [下载](https://url89.ctfile.com/f/31084289-1357050259-ef1bdd?p=8866) |\n| 明朝简史 | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1357048765-cc45e6?p=8866) |\n| 倒退的帝国：朱元璋的成与败 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357046569-f1adaf?p=8866) |\n| 朝廷与党争 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045885-5bdfc7?p=8866) |\n| 晚明大变局 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045558-e69b30?p=8866) |\n| 大明帝国 | 周建行 | [下载](https://url89.ctfile.com/f/31084289-1357034782-d9ee2a?p=8866) |\n| 滴血的大朝代 | 宗承灏 | [下载](https://url89.ctfile.com/f/31084289-1357030126-a99de7?p=8866) |\n| 大明帝国战争史 | 李湖光 | [下载](https://url89.ctfile.com/f/31084289-1357025311-085b9a?p=8866) |\n| 张居正：全4册 | 熊召政 | [下载](https://url89.ctfile.com/f/31084289-1357025059-cac065?p=8866) |\n| 幽明录 | 卢隐 | [下载](https://url89.ctfile.com/f/31084289-1357024369-db1a0a?p=8866) |\n| 崇祯大传奇（全三册） | 晏青 | [下载](https://url89.ctfile.com/f/31084289-1357020979-10eee9?p=8866) |\n| 大明乌纱 | 西风紧 | [下载](https://url89.ctfile.com/f/31084289-1357019917-75816f?p=8866) |\n| Q版大明衣冠图志 | 撷芳主人 | [下载](https://url89.ctfile.com/f/31084289-1357016557-4c2cd9?p=8866) |\n| 孝陵卫 | 陆老师 | [下载](https://url89.ctfile.com/f/31084289-1357010872-c4be3c?p=8866) |\n| 大明王朝的七张面孔（套装共2册） | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357007833-83ee88?p=8866) |\n| 天崩地解：1644大变局 | 汗青 | [下载](https://url89.ctfile.com/f/31084289-1357006444-18d6eb?p=8866) |\n| 大明王朝1566（套装共二册） | 刘和平 | [下载](https://url89.ctfile.com/f/31084289-1357005589-4f319f?p=8866) |\n| 锦衣卫秘事 | 夜行独侠 | [下载](https://url89.ctfile.com/f/31084289-1357005262-15b909?p=8866) |\n| 不容青史尽成灰（套装五册） | 张嵚 | [下载](https://url89.ctfile.com/f/31084289-1357005247-bb17a7?p=8866) |\n| 帝国最后的荣耀：大明1592抗日援朝 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005091-0ae1b1?p=8866) |\n| 万历十五年（经典版） | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357004842-c3da51?p=8866) |\n| 明朝那些事儿（1-9） | 当年明月 | [下载](https://url89.ctfile.com/f/31084289-1357004737-794dc3?p=8866) |\n"
  },
  {
    "path": "md/明治维新.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 明治维新\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知日07：明治维新 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025476-ff6a83?p=8866) |\n| 日本维新史 | 赫伯特・诺曼 | [下载](https://url89.ctfile.com/f/31084289-1357024477-aaca5d?p=8866) |\n"
  },
  {
    "path": "md/明清.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 明清\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 呻吟语（全本全注全译） | 吕坤 | [下载](https://url89.ctfile.com/f/31084289-1356983950-8bba17?p=8866) |\n| 焚书（全本全注全译） | 张建业 | [下载](https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866) |\n| 百年颠沛与千年往复 | 王家范 | [下载](https://url89.ctfile.com/f/31084289-1357027825-d31c6f?p=8866) |\n| 明清之际士大夫研究 | 赵园 | [下载](https://url89.ctfile.com/f/31084289-1357023301-4261b5?p=8866) |\n| 康熙盛世与帝王心术 | 姚念慈 | [下载](https://url89.ctfile.com/f/31084289-1357017247-df3930?p=8866) |\n"
  },
  {
    "path": "md/明清史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 明清史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 被统治的艺术 | 宋怡明 | [下载](https://url89.ctfile.com/f/31084289-1356983314-16ffcd?p=8866) |\n| 家人父子 | 赵园 | [下载](https://url89.ctfile.com/f/31084289-1357053889-726410?p=8866) |\n| 第一等人 | 宋华丽 | [下载](https://url89.ctfile.com/f/31084289-1357042015-7eebfb?p=8866) |\n"
  },
  {
    "path": "md/易中天.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 易中天\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 铁血蒙元 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866) |\n| 大宋革新 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023322-d132ff?p=8866) |\n| 王安石变法 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023325-383dbd?p=8866) |\n| 风流南宋 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023310-7ae917?p=8866) |\n| 品人录 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357022626-1799b8?p=8866) |\n| 易中天中华史：先秦到隋唐 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357008340-6d454f?p=8866) |\n"
  },
  {
    "path": "md/易学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 易学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 周易参同契（全本全注全译） | 章偉文 | [下载](https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866) |\n| 梅花易数 | 邵康节/周浩良 | [下载](https://url89.ctfile.com/f/31084289-1357009240-291b7b?p=8866) |\n"
  },
  {
    "path": "md/星巴克.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 星巴克\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 从头开始 | 霍华德・舒尔茨 | [下载](https://url89.ctfile.com/f/31084289-1375512121-a7c05d?p=8866) |\n| 在星巴克要买大杯咖啡 | 吉本佳生 | [下载](https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866) |\n| 在星巴克遇见德鲁克 | 李麦可 | [下载](https://url89.ctfile.com/f/31084289-1357011139-8f0e63?p=8866) |\n"
  },
  {
    "path": "md/春秋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 春秋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 战国：七雄博弈 | 朱良 | [下载](https://url89.ctfile.com/f/31084289-1375512049-91370e?p=8866) |\n| 春秋那杯茶，战国这碗酒（套装共4册） | 南柯月初 | [下载](https://url89.ctfile.com/f/31084289-1357049146-4e0e56?p=8866) |\n| 春秋大义 | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357047268-e7b81c?p=8866) |\n| 称霸（上下册） | 刘勋 | [下载](https://url89.ctfile.com/f/31084289-1357045126-805c7a?p=8866) |\n| 春秋战国真有趣（全6册） | 龙镇 | [下载](https://url89.ctfile.com/f/31084289-1357042981-c91a01?p=8866) |\n| 贾志刚说春秋×说战国（全十二册） | 贾志刚 | [下载](https://url89.ctfile.com/f/31084289-1357010821-ce4804?p=8866) |\n| 春秋战国：典藏套装版（全三册） | 高兴宇 | [下载](https://url89.ctfile.com/f/31084289-1357008835-d83fe3?p=8866) |\n| 其实我们一直活在春秋战国（套装共6册） | 龙镇 | [下载](https://url89.ctfile.com/f/31084289-1357006417-bd39a9?p=8866) |\n| 春秋战国超好看大全集 | 君玉离 | [下载](https://url89.ctfile.com/f/31084289-1357005691-37f328?p=8866) |\n"
  },
  {
    "path": "md/晚明.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 晚明\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新政与盛世 | 樊树志 | [下载](https://url89.ctfile.com/f/31084289-1357045420-8e75ff?p=8866) |\n| 晚明民变 | 李文治 | [下载](https://url89.ctfile.com/f/31084289-1357017412-226b45?p=8866) |\n"
  },
  {
    "path": "md/晚期.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 晚期\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 帝国落日：晚清大变局 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357018723-5c346e?p=8866) |\n| 失稳的帝国 | 邢超 | [下载](https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866) |\n"
  },
  {
    "path": "md/晚清.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 晚清\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 茅海建作品集（套装共5册） | 茅海建 | [下载](https://url89.ctfile.com/f/31084289-1375502044-913caf?p=8866) |\n| 家国与世情 | 十年砍柴 | [下载](https://url89.ctfile.com/f/31084289-1375509973-b55da1?p=8866) |\n| 马勇讲清史（全5册） | 唐彦 | [下载](https://url89.ctfile.com/f/31084289-1375510183-c8ea60?p=8866) |\n| 幸运儿：晚清留美幼童的故事 | 利尔・莱博维茨/马修・米勒 | [下载](https://url89.ctfile.com/f/31084289-1375510192-ccbbf4?p=8866) |\n| 怀柔远人 | 何伟亚 | [下载](https://url89.ctfile.com/f/31084289-1356999376-fff1a4?p=8866) |\n| 晚清三国 | 李洁 | [下载](https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866) |\n| 秋风宝剑孤臣泪 | 姜鸣 | [下载](https://url89.ctfile.com/f/31084289-1356983611-ecaec9?p=8866) |\n| 旧京人物影像馆（套装三册） | 张社生 | [下载](https://url89.ctfile.com/f/31084289-1357049425-7f26ab?p=8866) |\n| 曾国藩全集（全31册） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357045921-0fe1b6?p=8866) |\n| 坚守与突围 | 凤凰书品 | [下载](https://url89.ctfile.com/f/31084289-1357039378-960d27?p=8866) |\n| 晚清帝国风云系列（全三册） | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357037521-529d85?p=8866) |\n| 清王朝的最后十年 | 菲尔曼・拉里贝 | [下载](https://url89.ctfile.com/f/31084289-1357035697-05658d?p=8866) |\n| 英国公使夫人清宫回忆录 | 苏珊・汤丽 | [下载](https://url89.ctfile.com/f/31084289-1357034767-5ab6e6?p=8866) |\n| 历史深处的民国（全3册） | 江城 | [下载](https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866) |\n| 天国之痒 | 李洁非 | [下载](https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866) |\n| 晚清危亡录 | 凤城杜哥 | [下载](https://url89.ctfile.com/f/31084289-1357029211-fd2b9f?p=8866) |\n| 牛史·晚清篇 | 谭伯牛 | [下载](https://url89.ctfile.com/f/31084289-1357023268-c4b7c6?p=8866) |\n| 辛亥：计划外革命 | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866) |\n| 法国《小日报》记录的晚清（1891-1911） | 李红利/赵丽莎 | [下载](https://url89.ctfile.com/f/31084289-1357021303-f9565d?p=8866) |\n| 火堆上的晚清帝国 | 刘大木 | [下载](https://url89.ctfile.com/f/31084289-1357017859-df5ae7?p=8866) |\n| 太平天国兴亡录 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357014724-33612e?p=8866) |\n| 庚子西狩丛谈 | 吴永 | [下载](https://url89.ctfile.com/f/31084289-1357011625-b93e35?p=8866) |\n| 晚清最后十八年（大全集）（共4册） | 黄治军 | [下载](https://url89.ctfile.com/f/31084289-1357010365-52de24?p=8866) |\n| 晚清大变局 | 马平安 | [下载](https://url89.ctfile.com/f/31084289-1357008790-f00942?p=8866) |\n| 晚清原来是这样 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866) |\n| 战天京：晚清军政传信录 | 谭伯牛 | [下载](https://url89.ctfile.com/f/31084289-1357007827-5533c3?p=8866) |\n| 沉冤录 | 张程 | [下载](https://url89.ctfile.com/f/31084289-1357007488-804e4c?p=8866) |\n| 天公不语对枯棋 | 姜鸣 | [下载](https://url89.ctfile.com/f/31084289-1357006972-dc0d09?p=8866) |\n| 帝国的凋零 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866) |\n| 1856：纠结的大清、天国与列强 | 陶短房 | [下载](https://url89.ctfile.com/f/31084289-1357005985-dd9846?p=8866) |\n| 再说戊戌变法 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005823-df41d5?p=8866) |\n| 直截了当的独白 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866) |\n| 晚清有个曾国藩 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005448-3dc165?p=8866) |\n| 晚清有个袁世凯 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005445-4cb7ff?p=8866) |\n| 晚清有个李鸿章 | 赵焰 | [下载](https://url89.ctfile.com/f/31084289-1357005436-b35afa?p=8866) |\n| 国运1909：清帝国的改革突围 | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357005070-6a1110?p=8866) |\n| 大变局1911 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866) |\n| 清日战争 | 宗泽亚 | [下载](https://url89.ctfile.com/f/31084289-1357004950-0d79b6?p=8866) |\n"
  },
  {
    "path": "md/普京.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 普京\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 普京：权力的逻辑 | 胡贝特・塞佩尔 | [下载](https://url89.ctfile.com/f/31084289-1356997114-7f3bf3?p=8866) |\n| 强人治国：普京传 | 安格斯・罗克斯伯勒 | [下载](https://url89.ctfile.com/f/31084289-1357023151-211707?p=8866) |\n| 普京政治 | 李鸿谷  | [下载](https://url89.ctfile.com/f/31084289-1357009723-3b1f21?p=8866) |\n"
  },
  {
    "path": "md/智商.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 智商\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 智商税 | 高德 | [下载](https://url89.ctfile.com/f/31084289-1375513330-2251ee?p=8866) |\n| 大脑开发指南（全3册） | 丹・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357008388-ce451a?p=8866) |\n"
  },
  {
    "path": "md/智能.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 智能\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人工不智能 | 梅瑞狄斯・布鲁萨德 | [下载](https://url89.ctfile.com/f/31084289-1375491643-5332a8?p=8866) |\n| 智能学习的未来 | 罗斯玛丽・卢金 | [下载](https://url89.ctfile.com/f/31084289-1375511113-9bb24f?p=8866) |\n| 智能的本质 | 皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357029304-4060a7?p=8866) |\n| 生命3.0 | 迈克斯・泰格马克 | [下载](https://url89.ctfile.com/f/31084289-1357021120-2c89e2?p=8866) |\n| 奇点临近 | 雷・库兹韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357017070-174382?p=8866) |\n| 智能数据 | 比约恩・布劳卿等 | [下载](https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866) |\n| 智能浪潮 | 布雷特・金 | [下载](https://url89.ctfile.com/f/31084289-1357015984-23b495?p=8866) |\n"
  },
  {
    "path": "md/暖心.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 暖心\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 听你的 | 张皓宸 | [下载](https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866) |\n| 夏日郊外的旅店 | 安娜-卡埃勒・雨昂 | [下载](https://url89.ctfile.com/f/31084289-1357038115-2ded2b?p=8866) |\n| 生而为猫挺好的 | 猫小姐 | [下载](https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866) |\n| 情绪认知 | 尹惟楚 | [下载](https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866) |\n| 幸福需要等待 | 安娜・戈华达 | [下载](https://url89.ctfile.com/f/31084289-1357030705-407eec?p=8866) |\n"
  },
  {
    "path": "md/暴力.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 暴力\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 走钢丝的人 | 大卫・阿尔蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357031827-350ba1?p=8866) |\n| 冷暴力 | 玛丽・弗朗斯・伊里戈扬 | [下载](https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866) |\n"
  },
  {
    "path": "md/暴雪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 暴雪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 守望先锋（第一卷） | 美国暴雪娱乐 | [下载](https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866) |\n| 血之遗产 | 理查德˙A.纳克 | [下载](https://url89.ctfile.com/f/31084289-1357054489-624f55?p=8866) |\n"
  },
  {
    "path": "md/曹操.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 曹操\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 卑鄙的圣人：曹操（套装共10册） | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357005547-187867?p=8866) |\n"
  },
  {
    "path": "md/曼德拉.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 曼德拉\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 与自己对话：曼德拉自传 | 纳尔逊・曼德拉 | [下载](https://url89.ctfile.com/f/31084289-1357023478-a73738?p=8866) |\n"
  },
  {
    "path": "md/曾国藩.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 曾国藩\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 曾国藩全集（12册） | 曾国藩 | [下载](https://url89.ctfile.com/f/31084289-1357050778-80555d?p=8866) |\n| 曾国藩的经济课 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866) |\n| 成事 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866) |\n| 笨人的成圣之道：曾国藩 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357006762-5532c5?p=8866) |\n| 曾国藩：又笨又慢平天下 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357006087-c38b42?p=8866) |\n"
  },
  {
    "path": "md/有趣.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 有趣\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 菌物志 | 斑斑 | [下载](https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866) |\n| 一读就上瘾的中国史 | 温伯陵 | [下载](https://url89.ctfile.com/f/31084289-1357001608-8e9514?p=8866) |\n| 万物发明指南 | 瑞安・诺思 | [下载](https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866) |\n| 食帖24：啊！又想吃零食了 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866) |\n| 原来你是这样的古人 | 郁馥 | [下载](https://url89.ctfile.com/f/31084289-1357037347-cb95ad?p=8866) |\n"
  },
  {
    "path": "md/服务.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 服务\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 端到端流程 | 迈克尔・哈默/丽莎・赫什曼 | [下载](https://url89.ctfile.com/f/31084289-1357048249-905292?p=8866) |\n| Spring Cloud微服务实战 | 翟永超 | [下载](https://url89.ctfile.com/f/31084289-1357020250-1e5ad7?p=8866) |\n"
  },
  {
    "path": "md/服务器.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 服务器\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鸟哥的Linux私房菜：服务器架设篇（第三版） | 鸟哥 | [下载](https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866) |\n"
  },
  {
    "path": "md/服装.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 服装\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 时装（牛津通识读本） | 丽贝卡・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357001443-1e6b5d?p=8866) |\n"
  },
  {
    "path": "md/服饰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 服饰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 今天也要认真穿 | 黎贝卡 | [下载](https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866) |\n| 章服之实 | 王亚蓉 | [下载](https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866) |\n"
  },
  {
    "path": "md/朝鲜.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 朝鲜\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 近代朝鲜与日本 | 赵景达 | [下载](https://url89.ctfile.com/f/31084289-1357000528-ff6dab?p=8866) |\n| 最寒冷的冬天Ⅲ：血战长津湖 | 何楚舞/凤鸣/陆宏宇  | [下载](https://url89.ctfile.com/f/31084289-1357027327-edf72c?p=8866) |\n| 最寒冷的冬天：美国人眼中的朝鲜战争 | 大卫・哈伯斯塔姆 | [下载](https://url89.ctfile.com/f/31084289-1357027243-c8c4fe?p=8866) |\n"
  },
  {
    "path": "md/朝鲜战争.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 朝鲜战争\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 漫长的战斗：美国人眼中的朝鲜战争（修订版） | 约翰・托兰 | [下载](https://url89.ctfile.com/f/31084289-1357008763-ceb9cf?p=8866) |\n"
  },
  {
    "path": "md/期权.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 期权\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 期权、期货及其他衍生产品（原书第9版） | 约翰・赫尔 | [下载](https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866) |\n| 期权：就这么简单 | 韩冬 | [下载](https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866) |\n| 期权波动率与定价：高级交易策略与技巧 | 谢尔登・纳坦恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866) |\n| 麦克米伦谈期权 | 劳伦斯G.麦克米伦 | [下载](https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866) |\n"
  },
  {
    "path": "md/期货.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 期货\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 期货狙击手 | 彼得 ·L. 勃兰特 | [下载](https://url89.ctfile.com/f/31084289-1357004131-eff6fd?p=8866) |\n| 期权、期货及其他衍生产品（原书第9版） | 约翰・赫尔 | [下载](https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866) |\n| 一个农民的亿万传奇 | 傅海棠 | [下载](https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866) |\n| 十年一梦（修订版） | 青泽 | [下载](https://url89.ctfile.com/f/31084289-1357047046-2e2bd7?p=8866) |\n| 证券混沌操作法（典藏版） | 比尔・威廉斯/贾丝廷・格雷戈里-威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866) |\n| 发现价格 | 姜洋 | [下载](https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866) |\n| 暗池 | 帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866) |\n| 期货市场技术分析 | 约翰・墨菲 | [下载](https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866) |\n| 期货大作手风云录 | 刘强 | [下载](https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866) |\n| 裸奔的钱 | 沈良 | [下载](https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866) |\n"
  },
  {
    "path": "md/未来.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 未来\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 超现实 | 杰里米・拜伦森 | [下载](https://url89.ctfile.com/f/31084289-1375513297-854053?p=8866) |\n| 破译人类的明天 | 迈克尔・李 | [下载](https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866) |\n| 隐藏的行为 | 托马斯・科洛波洛斯 | [下载](https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866) |\n| 治愈未来 | 安德鲁・基恩 | [下载](https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866) |\n| 人机共生 | 托马斯・达文波特/茱莉娅・柯尔比 | [下载](https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866) |\n| 欢迎来到敌托邦 | 戈登・范・格尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049440-137c79?p=8866) |\n| 智能城市 | 卡洛・拉蒂 | [下载](https://url89.ctfile.com/f/31084289-1357047313-0afc1e?p=8866) |\n| 人工智能会抢哪些工作 | 理查德・萨斯坎德/丹尼尔・萨斯坎德 | [下载](https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866) |\n| AI的25种可能 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866) |\n| 科技失控 | 温德尔・瓦拉赫 | [下载](https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866) |\n| 超级思维 | 托马斯·W·马隆 | [下载](https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866) |\n| 未来版图 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866) |\n| 空荡荡的地球 | 达雷尔・布里克/约翰・伊比特森 | [下载](https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866) |\n| 18个未来进行时 | 吉姆・阿尔- 哈里里 | [下载](https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866) |\n| 第三次浪潮 | 阿尔文・托夫勒 | [下载](https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866) |\n| 最后一个人类 | 马克・奥康奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866) |\n| 未来50年 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357027123-c3d4eb?p=8866) |\n| 你一定爱读的极简未来史 | 克里斯托弗・巴纳特 | [下载](https://url89.ctfile.com/f/31084289-1357025617-432176?p=8866) |\n| 四维人类 | 劳伦斯・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866) |\n| 虚拟现实：万象的新开端 | 杰伦・拉尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357023481-c4b2a4?p=8866) |\n| 不会被机器替代的人 | 杰夫・科尔文 | [下载](https://url89.ctfile.com/f/31084289-1357023115-85b483?p=8866) |\n| 超级智能 | 尼克・波斯特洛姆 | [下载](https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866) |\n| 人类的明天 | 席里尔・迪翁 | [下载](https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866) |\n| 机器70年 | 徐曦 | [下载](https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866) |\n| AI·未来 | 李开复 | [下载](https://url89.ctfile.com/f/31084289-1357022242-192485?p=8866) |\n| 资源革命 | 斯蒂芬・赫克等 | [下载](https://url89.ctfile.com/f/31084289-1357021423-f18c7d?p=8866) |\n| 微粒社会 | 克里斯托夫・库克里克 | [下载](https://url89.ctfile.com/f/31084289-1357019575-e3c742?p=8866) |\n| 掌控未来系列（套装共6册） | 伊藤穰一等 | [下载](https://url89.ctfile.com/f/31084289-1357018420-d99af9?p=8866) |\n| 虚拟人 | 玛蒂娜・罗斯布拉特 | [下载](https://url89.ctfile.com/f/31084289-1357018252-b38b81?p=8866) |\n| 超越人类 | 伊芙・赫洛尔德 | [下载](https://url89.ctfile.com/f/31084289-1357017697-b3e68f?p=8866) |\n| 奇点临近 | 雷・库兹韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357017070-174382?p=8866) |\n| 终极复制 | 李智勇 | [下载](https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866) |\n| 复杂：信息时代的连接、机会与布局 | 罗家德 | [下载](https://url89.ctfile.com/f/31084289-1357014691-5f5ec3?p=8866) |\n| The 100-Year Life | Lynda Gratton / Andrew Scott | [下载](https://url89.ctfile.com/f/31084289-1357013686-e885a9?p=8866) |\n| 人类2.0：在硅谷探索科技未来 | 皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866) |\n| 人工智能时代 | 杰瑞・卡普兰 | [下载](https://url89.ctfile.com/f/31084289-1357009093-321621?p=8866) |\n| 人工智能 | 李开复/王咏刚  | [下载](https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866) |\n| 2052：未来四十年的中国与世界 | 乔根・兰德斯 | [下载](https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866) |\n| 必然 | 凯文・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866) |\n| 新一轮产业革命 | 亚力克・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866) |\n"
  },
  {
    "path": "md/本拉登.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 本拉登\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 艰难一日：海豹六队击毙本・拉登行动亲历 | 马克・欧文/凯文・莫勒 | [下载](https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866) |\n"
  },
  {
    "path": "md/朱元璋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 朱元璋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 朱元璋全传（作家榜经典文库） | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866) |\n| 朱元璋大传 | 陈梧桐 | [下载](https://url89.ctfile.com/f/31084289-1357051045-81c76b?p=8866) |\n"
  },
  {
    "path": "md/机器人.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 机器人\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 机器人间 | 阿缺 | [下载](https://url89.ctfile.com/f/31084289-1357028071-d39120?p=8866) |\n| 机器人时代 | 马丁・福特 | [下载](https://url89.ctfile.com/f/31084289-1357015234-30ae0c?p=8866) |\n| 银河帝国：机器人五部曲 | 艾萨克・阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357009321-283a4f?p=8866) |\n"
  },
  {
    "path": "md/机器学习.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 机器学习\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 深度学习入门：基于Python的理论与实现 | 斋藤康毅 | [下载](https://url89.ctfile.com/f/31084289-1357034164-652cd3?p=8866) |\n| 机器学习实战 | Peter Harrington | [下载](https://url89.ctfile.com/f/31084289-1357021075-0d6e7c?p=8866) |\n"
  },
  {
    "path": "md/杂志.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 杂志\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 单读23：破碎之家 | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1357001347-5914af?p=8866) |\n| 未来三十年（修订版） | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1356986467-d00263?p=8866) |\n| 食帖11：美食漫画万岁 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866) |\n| 鲤·与书私奔 | 张悦然 | [下载](https://url89.ctfile.com/f/31084289-1357029817-540e5a?p=8866) |\n| 知日13：暴走 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025458-0c2c9e?p=8866) |\n| 那些消失的文明 | 《环球科学》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866) |\n"
  },
  {
    "path": "md/杂文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 杂文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 那间街角的茶铺 | 王笛 | [下载](https://url89.ctfile.com/f/31084289-1375491775-2dbac0?p=8866) |\n| 读书是最对得起付出的一件事 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1375491988-526c88?p=8866) |\n| 声誉 | 唐诺 | [下载](https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866) |\n| 六神磊磊读金庸 | 六神磊磊 | [下载](https://url89.ctfile.com/f/31084289-1375501339-8defa2?p=8866) |\n| 蔡澜生活美学系列（套装共9册） | 蔡澜 | [下载](https://url89.ctfile.com/f/31084289-1375509004-95a6e4?p=8866) |\n| 全套系中文版陈舜臣随笔集 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357001860-bff3b9?p=8866) |\n| 行走的耳朵 | 周云蓬 | [下载](https://url89.ctfile.com/f/31084289-1356999832-881ef8?p=8866) |\n| 冯骥才记述文化五十年（全四册） | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1356994882-c8931c?p=8866) |\n| 余秋雨作品全集（套装共12册） | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1356987538-9bf3bc?p=8866) |\n| 评说历史系列丛书（套装共7册） | 夏坚勇等 | [下载](https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866) |\n| 我在伏龙芝学军事 | 郝智慧 | [下载](https://url89.ctfile.com/f/31084289-1356985660-ec2862?p=8866) |\n| 声色野记 | 侯磊 | [下载](https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866) |\n| 生命是孤独的旅程 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866) |\n| 观音在远远的山上 | 伊沙 | [下载](https://url89.ctfile.com/f/31084289-1357050556-84c9cc?p=8866) |\n| 张岪与木心 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357044187-f90d7c?p=8866) |\n| 奥威尔杂文全集（全2册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866) |\n| 都嘟合集（套装共2册） | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357037935-733bef?p=8866) |\n| 堕落论（坂口安吾系列作品） | 坂口安吾 | [下载](https://url89.ctfile.com/f/31084289-1357036426-ed96c8?p=8866) |\n| 我的精神家园 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357034980-0be87d?p=8866) |\n| 地下鲍勃·迪伦与老美国 | 格雷尔・马库斯 | [下载](https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866) |\n| 韩寒的杂文们（套装共4册） | 韩寒 | [下载](https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866) |\n| 清欢三卷（唯美珍藏版） | 林清玄 | [下载](https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866) |\n| 寥寥中年事 | 秋色连波 | [下载](https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866) |\n| 文学大师老舍精选杂文集（套装八册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866) |\n| 美国家书 | 本杰明・富兰克林等 | [下载](https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866) |\n| 自由在高处 | 熊培云 | [下载](链接未找到) |\n| 给布里安娜的卡片 | 希瑟・麦克马拉米/威廉・克洛伊尔 | [下载](链接未找到) |\n| 大叔 | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1357026829-a09868?p=8866) |\n| 传声筒 | 西西 | [下载](https://url89.ctfile.com/f/31084289-1357025599-9a708c?p=8866) |\n| 有话说 | 崔永元 | [下载](https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866) |\n| 无所畏 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866) |\n| 然而，很美：爵士乐之书 | 杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357019851-676e46?p=8866) |\n| 关键词 | 梁文道 | [下载](https://url89.ctfile.com/f/31084289-1357019260-b47d26?p=8866) |\n| 李敖混世宝典三部曲 | 李敖 | [下载](https://url89.ctfile.com/f/31084289-1357018234-614afb?p=8866) |\n| 在这复杂世界里 | 韩寒 | [下载](https://url89.ctfile.com/f/31084289-1357016401-5810ba?p=8866) |\n| 旧山河 | 刀尔登 | [下载](https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866) |\n| 送你一颗子弹 | 刘瑜 | [下载](https://url89.ctfile.com/f/31084289-1357014244-82b233?p=8866) |\n| 一只特立独行的猪（彩绘插图本） | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357011154-36b895?p=8866) |\n| 闲看水浒 | 十年砍柴 | [下载](https://url89.ctfile.com/f/31084289-1357010191-d34bba?p=8866) |\n| 新闻抄袭历史 | 宋燕 | [下载](https://url89.ctfile.com/f/31084289-1357010185-137d7f?p=8866) |\n| 容忍比自由更重要 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357009045-8da7c3?p=8866) |\n| 人生有何意义 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866) |\n| 我们能做什么 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866) |\n| 胡适文选 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357008550-543725?p=8866) |\n| 幸福了吗？ | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866) |\n| 沉默的大多数（彩绘插图本） | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866) |\n| 打回原形 | 朱新建 | [下载](https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866) |\n| 我们要活的有尊严 | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1357005640-fbc1a6?p=8866) |\n| 一年之痒 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866) |\n| 我读书少，你可别骗我 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005361-2c92f3?p=8866) |\n| 历史与看客 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005157-06675a?p=8866) |\n"
  },
  {
    "path": "md/权利.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 权利\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 三十年河东：权力市场经济的困境 | 杨继绳 | [下载](https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866) |\n"
  },
  {
    "path": "md/权谋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 权谋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 君主论（果麦经典） | 尼科洛・马基雅维利 | [下载](https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866) |\n| 六韬（全本全注全译） | 陈曦 | [下载](https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866) |\n| 权力48法则 | 罗伯特・格林 | [下载](https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866) |\n| 帝皇书（共5册） | 星零 | [下载](https://url89.ctfile.com/f/31084289-1357045624-5670f9?p=8866) |\n| 五大传奇权谋人物传记（套装共5册） | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357005940-9f562b?p=8866) |\n"
  },
  {
    "path": "md/李小龙.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 李小龙\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 李小龙：不朽的东方传奇（图文版） | 郑杰 | [下载](https://url89.ctfile.com/f/31084289-1357029616-f92b6d?p=8866) |\n"
  },
  {
    "path": "md/李白.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 李白\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 两个李白 | 王充闾 | [下载](https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866) |\n| 李白传 | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1357043203-29ab53?p=8866) |\n| 李太白全集 | 李白 | [下载](https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866) |\n"
  },
  {
    "path": "md/李诞.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 李诞\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 笑场（2017版） | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1357048558-fe098d?p=8866) |\n| 宇宙超度指南 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866) |\n"
  },
  {
    "path": "md/李鸿章.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 李鸿章\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 李鸿章传 | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866) |\n| 李鸿章（全三册） | 张鸿福 | [下载](https://url89.ctfile.com/f/31084289-1357015729-ed4ffc?p=8866) |\n"
  },
  {
    "path": "md/果壳.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 果壳\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 枪与玫瑰的使用方法 | 果壳 | [下载](https://url89.ctfile.com/f/31084289-1357023379-ac0f90?p=8866) |\n| 谣言粉碎机系列（套装共3册） | 果壳 | [下载](https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866) |\n"
  },
  {
    "path": "md/柏林.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 柏林\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 观念的力量 | 以赛亚・伯林爵士 | [下载](https://url89.ctfile.com/f/31084289-1356989647-f5b2ba?p=8866) |\n| 柏林：一座城市的肖像 | 罗里・麦克林 | [下载](https://url89.ctfile.com/f/31084289-1357031386-75dd02?p=8866) |\n"
  },
  {
    "path": "md/校园.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 校园\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我的天 | 子日山 | [下载](https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866) |\n| 冰糖炖雪梨（全两册） | 酒小七 | [下载](https://url89.ctfile.com/f/31084289-1357053997-27d41f?p=8866) |\n| 撒野 | 巫哲 | [下载](https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866) |\n| 罪案迷城 | 张瑞兴 | [下载](https://url89.ctfile.com/f/31084289-1357047385-2cceb5?p=8866) |\n| 你好，旧时光（全三册） | 八月长安 | [下载](https://url89.ctfile.com/f/31084289-1357016317-8d59ff?p=8866) |\n"
  },
  {
    "path": "md/格局.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 格局\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 格局逆袭2 | 宗宁 | [下载](https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866) |\n| 说话体现格局，决定结局 | 凌岚 | [下载](https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866) |\n"
  },
  {
    "path": "md/格林童话.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 格林童话\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 格林童话全集（套装共3册） | 格林 | [下载](https://url89.ctfile.com/f/31084289-1357006672-9efda3?p=8866) |\n"
  },
  {
    "path": "md/梁启超.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 梁启超\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 青年变革者 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1357032535-7bbcad?p=8866) |\n| 李鸿章传 | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1357015774-71aa1b?p=8866) |\n| 东亚近代文明史上的梁启超 | 狭间直树 | [下载](https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866) |\n"
  },
  {
    "path": "md/梦想.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 梦想\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 就想开间小小咖啡馆 | 王森 | [下载](https://url89.ctfile.com/f/31084289-1357031806-c9aa38?p=8866) |\n| 示弱的勇气 | 田口佳史 | [下载](https://url89.ctfile.com/f/31084289-1357029919-38941e?p=8866) |\n| 致命冒险 | 闪米特 | [下载](https://url89.ctfile.com/f/31084289-1357023085-ade96e?p=8866) |\n"
  },
  {
    "path": "md/梵高.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 梵高\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 梵高手稿（典藏修订版） | 文森特・凡高 | [下载](https://url89.ctfile.com/f/31084289-1375513045-85b0e4?p=8866) |\n| 西方绘画大师经典佳作：梵高 | 牛雪彤/唐一帆 | [下载](https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866) |\n| 亲爱的提奥：梵高传 | 文森特・威廉・梵高/约翰娜・梵高・邦格 | [下载](https://url89.ctfile.com/f/31084289-1357017379-8fa602?p=8866) |\n| 梵高传（全三部） | 史蒂文・奈菲/格雷戈里・怀特・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866) |\n"
  },
  {
    "path": "md/植物.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 植物\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 植物知道地球的奥秘 | 戴维・比尔林 | [下载](https://url89.ctfile.com/f/31084289-1375499872-69554e?p=8866) |\n| 瓦尔登湖动植物图鉴 | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866) |\n| 东方草木之美 | 西莉亚・费希尔 | [下载](https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866) |\n| 菌物志 | 斑斑 | [下载](https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866) |\n| 餐桌上的浪漫史 | 诺曼・C.埃尔斯特兰德 | [下载](https://url89.ctfile.com/f/31084289-1375512688-2974e3?p=8866) |\n| 法布尔植物记：手绘珍藏版（套装共2册） | 法布尔 | [下载](https://url89.ctfile.com/f/31084289-1357040536-bfadef?p=8866) |\n| 生命之美：奇异植物的生存智慧 | 林十之 | [下载](https://url89.ctfile.com/f/31084289-1357031011-6d2792?p=8866) |\n| 植物知道生命的答案 | 丹尼尔・查莫维茨 | [下载](https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866) |\n| 你好！植物（全彩） | 喵喵植物控 | [下载](https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866) |\n| 博物文库精美丛书 | 约瑟夫・胡克等 | [下载](https://url89.ctfile.com/f/31084289-1357017430-ca5c6c?p=8866) |\n| 看不见的森林 | 戴维・哈斯凯尔 | [下载](https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866) |\n"
  },
  {
    "path": "md/概率.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 概率\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 醉汉的脚步 | 伦纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357002340-106057?p=8866) |\n| 10堂极简概率课 | 佩尔西・戴康尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866) |\n| 统计学关我什么事 | 小岛宽之 | [下载](https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866) |\n| 黑天鹅：如何应对不可预知的未来（升级版） | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866) |\n"
  },
  {
    "path": "md/欧亨利.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 欧亨利\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 欧·亨利短篇小说精选（读客经典） | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1357034014-51fe85?p=8866) |\n"
  },
  {
    "path": "md/欧洲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 欧洲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大酋长伊丽莎白 | 贾尔斯・米尔顿 | [下载](https://url89.ctfile.com/f/31084289-1375491760-3ce9b1?p=8866) |\n| 牛津欧洲史 | 威廉·多伊尔等 | [下载](https://url89.ctfile.com/f/31084289-1375495393-244d19?p=8866) |\n| 最后的十字军东征 | 奈杰尔・克利夫 | [下载](https://url89.ctfile.com/f/31084289-1375496425-ea0b41?p=8866) |\n| 布拉格：欧洲的十字路口 | 德里克・塞耶 | [下载](https://url89.ctfile.com/f/31084289-1375497352-fa1e56?p=8866) |\n| 欧洲史：古典时代 | 诺曼・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375497439-2b024e?p=8866) |\n| 欧洲史：帝国时代 | 诺曼・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375497445-985dca?p=8866) |\n| 欧洲史：转型时代 | 诺曼・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375497463-481df6?p=8866) |\n| 帝国与蛮族 | 彼得・希瑟 | [下载](https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866) |\n| 工业革命前的欧洲社会与经济 | 卡洛·M. 奇波拉 | [下载](https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866) |\n| 诅咒之塔 | 罗杰・克劳利 | [下载](https://url89.ctfile.com/f/31084289-1375499152-78edc0?p=8866) |\n| 萤火虫丛书第三辑（套装共10册） | 汉娜・韦斯特莱克 | [下载](https://url89.ctfile.com/f/31084289-1375499902-209173?p=8866) |\n| 萤火虫丛书第一辑（套装共10册） | 乔恩・怀特等 | [下载](https://url89.ctfile.com/f/31084289-1375500310-1289b6?p=8866) |\n| 萤火虫丛书第二辑（套装共10册） | 艾米・贝斯特等 | [下载](https://url89.ctfile.com/f/31084289-1375500640-a5b55f?p=8866) |\n| 四大帝国兴衰史（套装共4册） | 塞西尔・詹金斯等 | [下载](https://url89.ctfile.com/f/31084289-1375500286-2a28e0?p=8866) |\n| 黑暗时代 | 马丁·J. 多尔蒂 | [下载](https://url89.ctfile.com/f/31084289-1375501063-141e2f?p=8866) |\n| 征服，1016-1130西西里的诺曼王朝Ⅰ | 约翰・朱利叶斯・诺威奇 | [下载](https://url89.ctfile.com/f/31084289-1375501414-844f43?p=8866) |\n| 王国，1130-1194西西里的诺曼王朝Ⅱ | 约翰・朱利叶斯・诺威奇 | [下载](https://url89.ctfile.com/f/31084289-1375501453-a22ed4?p=8866) |\n| 维京时代与英格兰 | 埃莉诺・帕克 | [下载](https://url89.ctfile.com/f/31084289-1375509307-c481e8?p=8866) |\n| 我的五个德国 | 弗里茨・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1375509865-2a6833?p=8866) |\n| 欧洲：欧洲文明如何塑造现代世界 | 胡里奥・克雷斯波・麦克伦南 | [下载](https://url89.ctfile.com/f/31084289-1375512004-f37e6f?p=8866) |\n| 战争的战争（1618-1648） | 约翰内斯・布克哈特 | [下载](https://url89.ctfile.com/f/31084289-1357003393-26399e?p=8866) |\n| 包罗万象中外历史精选集（套装共20册） | 汤姆・利文等 | [下载](https://url89.ctfile.com/f/31084289-1357000627-ea3343?p=8866) |\n| 伯罗奔尼撒战争三部曲 | 唐纳德・卡根 | [下载](https://url89.ctfile.com/f/31084289-1356998965-3139a8?p=8866) |\n| 三十年战争史：1618-1648 | 塞缪尔・罗森・加德纳 | [下载](https://url89.ctfile.com/f/31084289-1356996487-ea0257?p=8866) |\n| 德国：一个国家的记忆 | 尼尔・麦格雷戈 | [下载](https://url89.ctfile.com/f/31084289-1356994903-7ba011?p=8866) |\n| 诺曼征服 | 马克・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866) |\n| 天国之门 | 赵林 | [下载](https://url89.ctfile.com/f/31084289-1356994720-a3568e?p=8866) |\n| 全民疯狂的欧洲 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866) |\n| 祸起1914 | 克斯・黑斯廷斯 | [下载](https://url89.ctfile.com/f/31084289-1356989533-0de9f7?p=8866) |\n| 看得见的世界史套装（全15卷） | 肖石忠等 | [下载](https://url89.ctfile.com/f/31084289-1357052728-c725d2?p=8866) |\n| 西班牙史（贝克知识丛书） | 瓦尔特·L.伯尔奈克 | [下载](https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866) |\n| 天才时代 | A.C.格雷林 | [下载](https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866) |\n| 罗马的复辟 | 彼得・希瑟 | [下载](https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866) |\n| 西方通史：从古代源头到20世纪（全3册） | 海因里希・奥古斯特・温克勒 | [下载](https://url89.ctfile.com/f/31084289-1357049722-b7a83a?p=8866) |\n| 欧洲一万年（全三册） | J.M.罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357048477-099fc8?p=8866) |\n| 罗马故事 | 阿尔贝托・莫拉维亚 | [下载](https://url89.ctfile.com/f/31084289-1357045699-a7a41a?p=8866) |\n| 欧洲之门 | 谢尔希・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1357045066-209a47?p=8866) |\n| 另一个欧洲 | 何力 | [下载](https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866) |\n| 1848：革命之年 | 迈克・拉波特 | [下载](https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866) |\n| 黑羊与灰鹰（套装共3册） | 丽贝卡・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357043911-01e347?p=8866) |\n| 1683维也纳之战 | 安德鲁・惠克罗夫特 | [下载](https://url89.ctfile.com/f/31084289-1357043749-7857fe?p=8866) |\n| 欧罗巴一千年 | 伊恩・莫蒂默 | [下载](https://url89.ctfile.com/f/31084289-1357040827-7ff413?p=8866) |\n| 耶鲁古典欧洲怪诞生活志 | 伊丽莎白・阿奇博尔德 | [下载](https://url89.ctfile.com/f/31084289-1357039012-b15b5d?p=8866) |\n| 巴尔干百年简史 | 马细谱/余志和 | [下载](https://url89.ctfile.com/f/31084289-1357038772-ae31dc?p=8866) |\n| 以上帝和恺撒之名 | 理查德・巴塞特 | [下载](https://url89.ctfile.com/f/31084289-1357038550-560a71?p=8866) |\n| 皇帝圆舞曲 | 高林 | [下载](https://url89.ctfile.com/f/31084289-1357038442-c63987?p=8866) |\n| 远方之镜 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037410-d56591?p=8866) |\n| 迈尔斯教授讲世界历史（全6册） | 菲利普・范・内斯・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357036933-5ae1e2?p=8866) |\n| 文艺复兴的故事（全六册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357034041-fea83c?p=8866) |\n| 美第奇家族的兴衰 | 克里斯托弗・希伯特 | [下载](https://url89.ctfile.com/f/31084289-1357033375-aba87b?p=8866) |\n| 1945：大国博弈下的世界秩序新格局 | 迈克・内伯格 | [下载](https://url89.ctfile.com/f/31084289-1357032346-8802e3?p=8866) |\n| 欧洲与没有历史的人 | 埃里克·R.沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357031947-f55ce5?p=8866) |\n| 潘帕蓝调 | 罗尔夫・拉佩特 | [下载](https://url89.ctfile.com/f/31084289-1357031257-c06207?p=8866) |\n| 企鹅欧洲史：中世纪盛期的欧洲 | 威廉・乔丹 | [下载](https://url89.ctfile.com/f/31084289-1357031131-a3c6dc?p=8866) |\n| 德国极简史 | 詹姆斯・霍斯 | [下载](https://url89.ctfile.com/f/31084289-1357030354-c52a4d?p=8866) |\n| 我未尽的苦难 | 帕特里克・金斯利 | [下载](https://url89.ctfile.com/f/31084289-1357028959-1f1f0f?p=8866) |\n| 哈布斯堡王朝：翱翔欧洲700年的双头鹰 | 卫克安 | [下载](https://url89.ctfile.com/f/31084289-1357028086-f64a96?p=8866) |\n| 企鹅欧洲史：基督教欧洲的巨变 | 马克・格林格拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357026463-94526e?p=8866) |\n| 企鹅欧洲史：竞逐权力 | 理查德・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357026442-f6a633?p=8866) |\n| 维京传奇 | 拉尔斯・布朗沃思 | [下载](https://url89.ctfile.com/f/31084289-1357025038-59b85c?p=8866) |\n| 欧洲中世纪三部曲+燃烧的远征（套装共4册） | 拉尔斯・布朗沃思 | [下载](https://url89.ctfile.com/f/31084289-1357023808-852d17?p=8866) |\n| 帝国的背影系列（套装共3册） | 诺曼・斯通等 | [下载](https://url89.ctfile.com/f/31084289-1357019785-2a75d6?p=8866) |\n| 欧洲现代史：从文艺复兴到现在（套装共2册） | 约翰・梅里曼 | [下载](https://url89.ctfile.com/f/31084289-1357019770-f8308f?p=8866) |\n| 大国命运（套装共3册） | 席勒/基佐/米涅 | [下载](https://url89.ctfile.com/f/31084289-1357019497-15bf57?p=8866) |\n| 审问欧洲：二战时期的合作、抵抗与报复 | 伊斯特万・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357019488-8b41ab?p=8866) |\n| 十字军的故事（全四册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357018033-c0a564?p=8866) |\n| The Sea Wolves | Lars Brownworth | [下载](https://url89.ctfile.com/f/31084289-1357017679-c5a00a?p=8866) |\n| 欧洲中世纪史 | 朱迪斯・M・本内特等 | [下载](https://url89.ctfile.com/f/31084289-1357017151-2a3e9a?p=8866) |\n| 从黎明到衰落（上下册） | 雅克・巴尔赞 | [下载](https://url89.ctfile.com/f/31084289-1357016596-1f1569?p=8866) |\n| 帝国的背影（套装共2册） | 彼得・贾德森/诺曼・斯通 | [下载](https://url89.ctfile.com/f/31084289-1357013590-8235a7?p=8866) |\n| 金雀花王朝 | 丹・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866) |\n| 欧洲的陨落 | 马克思・加罗 | [下载](https://url89.ctfile.com/f/31084289-1357011757-70ca4b?p=8866) |\n| 中信历史的镜像系列（套装共10本） | 理查德・埃文斯等 | [下载](https://url89.ctfile.com/f/31084289-1357011583-e33bde?p=8866) |\n| 英国通史（套装共6册） | 钱乘旦 | [下载](https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866) |\n| 战后欧洲史（套装共4册） | 托尼・朱特 | [下载](https://url89.ctfile.com/f/31084289-1357011190-f4b570?p=8866) |\n| 从这里读懂第三帝国（套装共8册） | 齐格蒙・鲍曼等 | [下载](https://url89.ctfile.com/f/31084289-1357009381-2d2a36?p=8866) |\n| 滑铁卢：四天、三支大军和三场战役的历史 | 伯纳德・康沃尔 | [下载](https://url89.ctfile.com/f/31084289-1357007620-ec551a?p=8866) |\n| 罗马人的故事（套装共15册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866) |\n| 欧洲：1453年以来的争霸之途 | 布伦丹・西姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357007587-767aa0?p=8866) |\n| 罗马灭亡后的地中海世界（上下册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866) |\n| 十字军东征简史（插图本） | 米肖 | [下载](https://url89.ctfile.com/f/31084289-1357006705-edd093?p=8866) |\n| 宫廷社会（译文经典） | 诺贝特・埃利亚斯 | [下载](https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866) |\n| 帝国强军：欧洲八大古战精锐 | 指文烽火工作室 | [下载](https://url89.ctfile.com/f/31084289-1357006162-d0b8b2?p=8866) |\n| 地中海史诗三部曲 | 罗杰・克劳利 | [下载](https://url89.ctfile.com/f/31084289-1357006105-aed2e0?p=8866) |\n| 你一定爱读的极简欧洲史 | 约翰・赫斯特 | [下载](https://url89.ctfile.com/f/31084289-1357005499-f3a557?p=8866) |\n"
  },
  {
    "path": "md/欧洲史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 欧洲史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 海洋帝国的崛起 | 安东・范德伦 | [下载](https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866) |\n| 梅特涅：帝国与世界（全2册） | 沃尔弗拉姆・希曼 | [下载](https://url89.ctfile.com/f/31084289-1356990193-df77cd?p=8866) |\n| 滑铁卢：决定欧洲命运的四天 | 蒂姆・克莱顿 | [下载](https://url89.ctfile.com/f/31084289-1357049956-06a245?p=8866) |\n| 枫丹白露宫 | 蒂埃里・萨尔芒等 | [下载](https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866) |\n| 第一次十字军东征 | 彼得・弗兰科潘 | [下载](https://url89.ctfile.com/f/31084289-1357046005-83f1d8?p=8866) |\n| 王朝物语（套装全四册） | 中野京子 | [下载](https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866) |\n| 缔造大英帝国 | 詹姆斯・查斯洛・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866) |\n| 骄傲之塔 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037515-63cf76?p=8866) |\n| 野蛮大陆 | 基思・罗威 | [下载](https://url89.ctfile.com/f/31084289-1357034440-2f37e6?p=8866) |\n| 哈布斯堡的灭亡 | 杰弗里・瓦夫罗 | [下载](https://url89.ctfile.com/f/31084289-1357032763-6ef5f4?p=8866) |\n| 中世纪欧洲 | 理查・威廉・丘奇 | [下载](https://url89.ctfile.com/f/31084289-1357031470-735cc6?p=8866) |\n| 企鹅欧洲史：古典欧洲的诞生 | 西蒙・普莱斯/彼得・索恩曼 | [下载](https://url89.ctfile.com/f/31084289-1357031152-135022?p=8866) |\n| 企鹅欧洲史：罗马帝国的遗产 | 克里斯・威克姆 | [下载](https://url89.ctfile.com/f/31084289-1357031140-aa3583?p=8866) |\n| 黑暗大陆：20世纪的欧洲 | 马克・马佐尔 | [下载](https://url89.ctfile.com/f/31084289-1357029334-f32666?p=8866) |\n| 企鹅欧洲史：追逐荣耀 | 蒂莫西・布莱宁 | [下载](https://url89.ctfile.com/f/31084289-1357026451-3049ac?p=8866) |\n"
  },
  {
    "path": "md/欧美.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 欧美\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 欧美名校通识课（第一辑）（套装7册） | 亨利·M.塞尔等 | [下载](https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866) |\n| 尸骨袋 | 斯蒂芬・金  | [下载](https://url89.ctfile.com/f/31084289-1357033264-2ab845?p=8866) |\n| 冰岛人 |  大卫・W・斯托克斯 | [下载](https://url89.ctfile.com/f/31084289-1357020688-c01e06?p=8866) |\n| 从西藏来的男人 | 克莱德・克拉森  | [下载](https://url89.ctfile.com/f/31084289-1357011673-fcf3b0?p=8866) |\n"
  },
  {
    "path": "md/歌赋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 歌赋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 经典咏流传诗词曲赋集（套装21册） | 李白/王维等 | [下载](https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866) |\n"
  },
  {
    "path": "md/正则表达式.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 正则表达式\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 精通正则表达式：第3版 | Jeffrey E·F·Friedl | [下载](https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866) |\n"
  },
  {
    "path": "md/正念.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 正念\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 活在此时此刻 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866) |\n| 学会吃饭 | 珍・克里斯特勒/艾莉莎・鲍曼 | [下载](https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866) |\n"
  },
  {
    "path": "md/正能量.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 正能量\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 当你又忙又美，何惧患得患失 | 梁爽 | [下载](https://url89.ctfile.com/f/31084289-1356988837-3700ad?p=8866) |\n| 总能做出正确决定的幸运法则 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357051366-558fe8?p=8866) |\n| 当你的才华还撑不起你的梦想时 | 特立独行的猫 | [下载](https://url89.ctfile.com/f/31084289-1357009912-93585d?p=8866) |\n| 努力，才配有未来 | 小川叔 | [下载](https://url89.ctfile.com/f/31084289-1357006513-2c0793?p=8866) |\n| 努力到无能为力，拼搏到感动自己 | 沐木 | [下载](https://url89.ctfile.com/f/31084289-1357006447-568588?p=8866) |\n"
  },
  {
    "path": "md/武侠.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 武侠\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 剑来（22-28册）出版精校版 | 烽火戏诸侯 | [下载](https://url89.ctfile.com/f/31084289-1375498294-5c9904?p=8866) |\n| 江湖 | 华发生 | [下载](https://url89.ctfile.com/f/31084289-1375499257-a4fc63?p=8866) |\n| 剑来（1-14册）出版精校版 | 烽火戏诸侯 | [下载](https://url89.ctfile.com/f/31084289-1375510003-9e4751?p=8866) |\n| 白羽经典武侠小说（套装十五册） | 宫白羽 | [下载](https://url89.ctfile.com/f/31084289-1375513273-1d4daa?p=8866) |\n| 一条草鱼 | 哈欠丸 | [下载](https://url89.ctfile.com/f/31084289-1357002037-f32c42?p=8866) |\n| 镖人8 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357048456-50027e?p=8866) |\n| 镖人9 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866) |\n| 白鹤三绝 | 二斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866) |\n| 晋江大神Priest经典作品合集（套装10册） | Priest | [下载](https://url89.ctfile.com/f/31084289-1357035787-47378b?p=8866) |\n| 有匪（套装共4册） | Priest | [下载](https://url89.ctfile.com/f/31084289-1357035424-611fd0?p=8866) |\n| 千劫眉（套装5册） | 藤萍 | [下载](https://url89.ctfile.com/f/31084289-1357034515-d69375?p=8866) |\n| 五大贼王（全七册） | 张海帆 | [下载](https://url89.ctfile.com/f/31084289-1357033582-332d11?p=8866) |\n| 镖人7 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357032982-676f27?p=8866) |\n| 梁羽生作品集（全104册） | 梁羽生 | [下载](https://url89.ctfile.com/f/31084289-1357031665-bac15f?p=8866) |\n| 古龙作品文集（精装72册） | 古龙 | [下载](https://url89.ctfile.com/f/31084289-1357031251-1ca81d?p=8866) |\n| 三十六骑 | 念远怀人 | [下载](https://url89.ctfile.com/f/31084289-1357028368-c78c0c?p=8866) |\n| 镖人5 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357025581-ba94a5?p=8866) |\n| 知中10·以侠之名 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025200-8de2ab?p=8866) |\n| 幽明录 | 卢隐 | [下载](https://url89.ctfile.com/f/31084289-1357024369-db1a0a?p=8866) |\n| 刺局（全六册） | 圆太极 | [下载](https://url89.ctfile.com/f/31084289-1357024114-fe0171?p=8866) |\n| 江湖外史 | 王怜花 | [下载](https://url89.ctfile.com/f/31084289-1357023484-659443?p=8866) |\n| A Hero Born | 金庸 | [下载](https://url89.ctfile.com/f/31084289-1357023235-ad50ef?p=8866) |\n| 七杀碑 | 朱贞木 | [下载](https://url89.ctfile.com/f/31084289-1357022245-87f674?p=8866) |\n| 镖人3 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357022377-a26652?p=8866) |\n| 梁羽生天山系列武侠小说系列（套装共38册） | 梁羽生 | [下载](https://url89.ctfile.com/f/31084289-1357020217-7a53db?p=8866) |\n| 镖人 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357020004-6236a2?p=8866) |\n| 金庸作品全集（新修版）（全36册） | 金庸 | [下载](https://url89.ctfile.com/f/31084289-1357015666-836a9a?p=8866) |\n| 雪中悍刀行（1-20册）全集 | 烽火戏诸侯 | [下载](https://url89.ctfile.com/f/31084289-1357010569-63d2d4?p=8866) |\n| 寻秦记（套装全6卷） | 黄易 | [下载](https://url89.ctfile.com/f/31084289-1357006882-2ead58?p=8866) |\n"
  },
  {
    "path": "md/武器.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 武器\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 现代兵器大百科（套装共12册） | 《深度军事》编委会 | [下载](https://url89.ctfile.com/f/31084289-1375503721-c7382e?p=8866) |\n| 中国兵器史 | 周纬 | [下载](https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866) |\n"
  },
  {
    "path": "md/武志红.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 武志红\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 武志红经典作品合集（套装共4册） | 武志红 | [下载](https://url89.ctfile.com/f/31084289-1357037191-fad441?p=8866) |\n"
  },
  {
    "path": "md/武术.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 武术\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 以武论道：李小龙的功夫心法（套装共5册） | 李小龙 | [下载](https://url89.ctfile.com/f/31084289-1375510759-401baf?p=8866) |\n"
  },
  {
    "path": "md/死亡.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 死亡\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 尸检报告 | 卡拉・瓦伦丁 | [下载](https://url89.ctfile.com/f/31084289-1356987277-fccf1c?p=8866) |\n| 好好告别 | 凯特琳・道蒂 | [下载](https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866) |\n| To Be a Machine | Mark O'Connell | [下载](https://url89.ctfile.com/f/31084289-1357027078-09d6c7?p=8866) |\n| 当呼吸化为空气 | 保罗・卡拉尼什 | [下载](https://url89.ctfile.com/f/31084289-1357007728-be0887?p=8866) |\n"
  },
  {
    "path": "md/段子.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 段子\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 如何成为一名脱口秀老手 | 格雷格・迪安 | [下载](https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866) |\n| 成功的聪明人太多了，我必须为笨蛋争口气！ | 书单狗 | [下载](https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866) |\n"
  },
  {
    "path": "md/毒品.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 毒品\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 毒品史：美国和墨西哥的百年恩怨 | 卡门・博洛萨/迈克・华莱士 | [下载](https://url89.ctfile.com/f/31084289-1375510021-718e77?p=8866) |\n"
  },
  {
    "path": "md/毛姆.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 毛姆\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 十部小说及其作者 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1356991540-89a5e9?p=8866) |\n| 不一样的文学史 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866) |\n| 面纱（果麦经典） | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357031668-2a3322?p=8866) |\n| 面纱 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357031473-0007f9?p=8866) |\n| 人性的因素：毛姆短篇小说全集2 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357029256-35e6e8?p=8866) |\n"
  },
  {
    "path": "md/民主.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 民主\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 论美国的民主（全2册） | 托克维尔 | [下载](https://url89.ctfile.com/f/31084289-1356997912-ae03bf?p=8866) |\n| 抽签与民主、共和 | 王绍光 | [下载](https://url89.ctfile.com/f/31084289-1357027804-f854e1?p=8866) |\n| 顾准文集 | 顾准 | [下载](https://url89.ctfile.com/f/31084289-1357008490-8dce7e?p=8866) |\n| 民主新论（套装2册） | 乔万尼・萨托利 | [下载](https://url89.ctfile.com/f/31084289-1357007968-d5ef21?p=8866) |\n"
  },
  {
    "path": "md/民俗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 民俗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 说魂儿（修订版） | 栾保群 | [下载](https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866) |\n| 纸上寻仙记 | 锦翼 | [下载](https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866) |\n| 老北京杂吧地 | 岳永逸 | [下载](https://url89.ctfile.com/f/31084289-1357012531-6c54c3?p=8866) |\n| 怪谈：日本动漫中的传统妖怪 | 周英 | [下载](https://url89.ctfile.com/f/31084289-1357007602-1b9986?p=8866) |\n"
  },
  {
    "path": "md/民国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 民国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中华民国专题史（套装共18册） | 王川等 | [下载](https://url89.ctfile.com/f/31084289-1375513258-eca3f0?p=8866) |\n| 民国名家史学典藏系列（共14册） | 吕思勉/郑振铎等 | [下载](https://url89.ctfile.com/f/31084289-1356989620-4f5379?p=8866) |\n| 宋案重审 | 尚小明 | [下载](https://url89.ctfile.com/f/31084289-1356985948-5c1a66?p=8866) |\n| 生活的逻辑 | 胡悦晗 | [下载](https://url89.ctfile.com/f/31084289-1356985243-9b3e36?p=8866) |\n| 细说民国大文人系列（增订版） | 民国文林 | [下载](https://url89.ctfile.com/f/31084289-1357049203-a57f9d?p=8866) |\n| 绝版民国小书馆 | 叶鋆生等 | [下载](https://url89.ctfile.com/f/31084289-1357045771-730497?p=8866) |\n| 昨天的中国 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866) |\n| 迷雾围城（全两册） | 匪我思存 | [下载](https://url89.ctfile.com/f/31084289-1357035541-d08688?p=8866) |\n| 民国大师书系（全6册） | 梁实秋等 | [下载](https://url89.ctfile.com/f/31084289-1357035181-4cefe1?p=8866) |\n| 走出帝制 | 秦晖 | [下载](https://url89.ctfile.com/f/31084289-1357033669-f94efa?p=8866) |\n| 丑牛系列之民国才子（套装3本） | 李克/沈燕/李平/孙琳 | [下载](https://url89.ctfile.com/f/31084289-1357033495-4c7802?p=8866) |\n| 民国逸史（全2册） | 王习耕/梅振田 | [下载](https://url89.ctfile.com/f/31084289-1357033477-6c0e82?p=8866) |\n| 历史深处的民国（全3册） | 江城 | [下载](https://url89.ctfile.com/f/31084289-1357033189-62c840?p=8866) |\n| 民国清流系列（全七册） | 汪兆骞 | [下载](https://url89.ctfile.com/f/31084289-1357031422-474dd4?p=8866) |\n| 1943：中国在十字路口 | 周锡瑞/李皓天 | [下载](https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866) |\n| 忆往谈旧录 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357022128-096f75?p=8866) |\n| 暗逻辑 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357021993-ee1b86?p=8866) |\n| 卢作孚套装（全三册） | 鲁/张湛昀 | [下载](https://url89.ctfile.com/f/31084289-1357020706-3dfc66?p=8866) |\n| 北洋风云人物 | 董尧 | [下载](https://url89.ctfile.com/f/31084289-1357020238-6652c1?p=8866) |\n| 海魂国殇 | 肖璞韬 | [下载](https://url89.ctfile.com/f/31084289-1357020121-e8411c?p=8866) |\n| 北京，1912 | 穆儒丐 | [下载](https://url89.ctfile.com/f/31084289-1357017358-eeec31?p=8866) |\n| 道林·格雷的画像 | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866) |\n| 共和十年（套装共2册） | 郑曦原 | [下载](https://url89.ctfile.com/f/31084289-1357014727-5ab666?p=8866) |\n| 中华民国史（16册套装） | 李新 | [下载](https://url89.ctfile.com/f/31084289-1357012918-26053f?p=8866) |\n| 中国灯笼 | 格蕾丝・汤普森・西登 | [下载](https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866) |\n| 民国清流那些大师们（全四册） | 汪兆骞 | [下载](https://url89.ctfile.com/f/31084289-1357010944-bdb64a?p=8866) |\n| 走向共和 | 张建伟 | [下载](https://url89.ctfile.com/f/31084289-1357010215-9eb25f?p=8866) |\n| 张鸣重说晚清民国 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866) |\n| 缠斗：方生与未死 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866) |\n| 北洋大时代 | 陈钦 | [下载](https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866) |\n| 晚清原来是这样 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357008064-12faf5?p=8866) |\n| 北鸢 | 葛亮 | [下载](https://url89.ctfile.com/f/31084289-1357007899-24deaf?p=8866) |\n| 朱雀堂 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007866-c71352?p=8866) |\n| 一个美国记者眼中的真实民国 | 哈雷特・阿班 | [下载](https://url89.ctfile.com/f/31084289-1357007851-444251?p=8866) |\n| 民国大师细说中国历史（套装共12册） | 吕思勉/吴晗/傅斯年等 | [下载](https://url89.ctfile.com/f/31084289-1357007557-1a673d?p=8866) |\n| 1933：聆听民国 | 林语堂等 | [下载](https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866) |\n| 暗杀1905大合集（共3册） | 巫童 | [下载](https://url89.ctfile.com/f/31084289-1357006867-3e8950?p=8866) |\n| 北洋军阀史话 | 丁中江 | [下载](https://url89.ctfile.com/f/31084289-1357006738-a84f44?p=8866) |\n| 溥仪藏宝录 | 景旭枫 | [下载](https://url89.ctfile.com/f/31084289-1357006504-436cc0?p=8866) |\n| 溥仪藏宝录2：最后的复辟挣扎 | 景旭枫 | [下载](https://url89.ctfile.com/f/31084289-1357006489-d2472a?p=8866) |\n| 败因：蒋介石为什么败退台湾？ | 武更斌 | [下载](https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866) |\n| 共和中的帝制 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005838-df5318?p=8866) |\n| 张鸣说历史：角落里的民国 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005808-4cd3c9?p=8866) |\n| 武夫当权：军阀集团的游戏规则 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005778-e952c5?p=8866) |\n| 民国总理段祺瑞 | 关河五十州 | [下载](https://url89.ctfile.com/f/31084289-1357005472-ace00e?p=8866) |\n| 民国原来是这样 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357005451-392314?p=8866) |\n| 辛亥：摇晃的中国 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005151-2a156e?p=8866) |\n| 中国1927·谁主沉浮 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866) |\n| 大变局1911 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866) |\n| 国会现场：1911—1928 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357004872-0a13ad?p=8866) |\n| 真实的汪精卫 | 林思云 | [下载](https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866) |\n| 民国就是这么生猛（全四册） | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357004713-b94ab1?p=8866) |\n| 中国误会了袁世凯 | 吕峥 | [下载](https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866) |\n"
  },
  {
    "path": "md/民族.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 民族\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 民主的不满 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866) |\n| 大历史的多角度解读（套装共20册） | 蒋廷黻等 | [下载](https://url89.ctfile.com/f/31084289-1357049002-a31a23?p=8866) |\n| 黑麋鹿如是说 ：生命与自然之诗 | 尼古拉斯・黑麋鹿等 | [下载](https://url89.ctfile.com/f/31084289-1357020922-d80161?p=8866) |\n| 草原帝国（全译插图本） | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357010188-8dfef6?p=8866) |\n| 中国人的精神 | 辜鸿铭 | [下载](https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866) |\n| 合理的怀疑 | 德肖维茨 | [下载](https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866) |\n| 独裁者手册 | 布鲁斯・布鲁诺・德・梅斯奎塔等 | [下载](https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866) |\n"
  },
  {
    "path": "md/求生.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 求生\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 荒野求生少年生存小说系列（全6册） | 贝尔·格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357006855-6a7c28?p=8866) |\n"
  },
  {
    "path": "md/求职.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 求职\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 你的降落伞是什么颜色？（全新修订版） | 理查德・尼尔森・鲍利斯 | [下载](https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866) |\n| The 2-Hour Job Search | Steve Dalton | [下载](https://url89.ctfile.com/f/31084289-1357029760-6cddaa?p=8866) |\n"
  },
  {
    "path": "md/汉字.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 汉字\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 白鱼解字 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1375511992-0df03b?p=8866) |\n| 汉字的故事 | 王铁钧 | [下载](https://url89.ctfile.com/f/31084289-1357050379-f02840?p=8866) |\n| 澄衷蒙学堂字课图说（全8册） | 刘树屏 | [下载](https://url89.ctfile.com/f/31084289-1357041916-b4d37a?p=8866) |\n| 十六个汉字里的日本 | 姜建强 | [下载](https://url89.ctfile.com/f/31084289-1357031203-be379f?p=8866) |\n| 字看我一生 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357015033-b42814?p=8866) |\n"
  },
  {
    "path": "md/汉朝.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 汉朝\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 汉家天下（1-4册） | 清秋子 | [下载](https://url89.ctfile.com/f/31084289-1375511260-c0a5e2?p=8866) |\n| 大汉兴亡四百年2 | 李金海 | [下载](https://url89.ctfile.com/f/31084289-1356994534-e30d7c?p=8866) |\n| 大汉兴亡四百年 | 李金海 | [下载](https://url89.ctfile.com/f/31084289-1356991453-c67787?p=8866) |\n| 大汉帝国（套装共2册） | 萧然 | [下载](https://url89.ctfile.com/f/31084289-1357047379-f53006?p=8866) |\n| 大汉荣耀：帝国建立与政权巩固 | 上医治国 | [下载](https://url89.ctfile.com/f/31084289-1357044904-2ae676?p=8866) |\n| 大汉荣耀：王朝鼎盛与命运转折 | 上医治国 | [下载](https://url89.ctfile.com/f/31084289-1357044895-83915a?p=8866) |\n| 白日薄西山：大汉帝国的衰亡 | 徐兴无 | [下载](https://url89.ctfile.com/f/31084289-1357007989-fae9b9?p=8866) |\n| 大汉王朝的三张脸谱（全三册） | 飘雪楼主 | [下载](https://url89.ctfile.com/f/31084289-1357006753-0645a8?p=8866) |\n| 这里曾经是汉朝（套装共6册） | 月望东山 | [下载](https://url89.ctfile.com/f/31084289-1357006366-f6a436?p=8866) |\n| 汉朝大历史 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357006039-4817a7?p=8866) |\n"
  },
  {
    "path": "md/汉语.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 汉语\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 汉语四千年 | 黎锦熙 | [下载](https://url89.ctfile.com/f/31084289-1375510942-d4292c?p=8866) |\n| 汉语讲话 | 王力 | [下载](https://url89.ctfile.com/f/31084289-1357045315-e7ccda?p=8866) |\n"
  },
  {
    "path": "md/江湖.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 江湖\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 江湖丛谈（注音注释插图本） | 连阔如 | [下载](https://url89.ctfile.com/f/31084289-1356984292-077343?p=8866) |\n| 魔术江湖 | 唐四方 | [下载](https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866) |\n| 你坏 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357022809-a0e444?p=8866) |\n"
  },
  {
    "path": "md/汽车.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 汽车\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| “排放门”：大众汽车丑闻 | 杰克・尤因 | [下载](https://url89.ctfile.com/f/31084289-1357002769-31400d?p=8866) |\n| 三分钟漫画汽车史 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866) |\n| 汽车是怎样跑起来的 | 御堀直嗣 | [下载](https://url89.ctfile.com/f/31084289-1357013170-8e1445?p=8866) |\n"
  },
  {
    "path": "md/沙皇.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 沙皇\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 末代沙皇：尼古拉二世的最后503天 | 罗伯特・瑟维斯 | [下载](https://url89.ctfile.com/f/31084289-1375491478-017375?p=8866) |\n"
  },
  {
    "path": "md/沟通.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 沟通\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 这真的是你的错吗 | 加藤谛三 | [下载](https://url89.ctfile.com/f/31084289-1375499227-3864f2?p=8866) |\n| 我就是你啊 | 皮埃尔・佩利西耶 | [下载](https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866) |\n| 特别会说话的人都这样说话 | 大野萌子 | [下载](https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866) |\n| 可复制的沟通力 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866) |\n| 把自己当回事儿 | 杨天真 | [下载](https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866) |\n| 尬聊终结者 | 庄舒涵 | [下载](https://url89.ctfile.com/f/31084289-1375511200-f5e66f?p=8866) |\n| 不妥协的谈判 | 丹尼尔・夏皮罗 | [下载](https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866) |\n| 个性优势 | 吉姆・巴雷特/休・格林 | [下载](https://url89.ctfile.com/f/31084289-1375511347-2ee920?p=8866) |\n| 畅所欲言 | 道格・克兰德尔/马特・金卡德 | [下载](https://url89.ctfile.com/f/31084289-1375511779-c8282c?p=8866) |\n| 无压力社交 | 吉莉恩・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1375512292-5b84b2?p=8866) |\n| 当时这样说就好了 | 伊庭正康 | [下载](https://url89.ctfile.com/f/31084289-1375513393-38177a?p=8866) |\n| 掌控沟通 | 贾斯汀・李 | [下载](https://url89.ctfile.com/f/31084289-1375513570-f34dbe?p=8866) |\n| 奇葩心理学 | 冈田尊司 | [下载](https://url89.ctfile.com/f/31084289-1357004146-e96884?p=8866) |\n| 所谓会说话，就是会换位思考 | 卡洛琳・塔格特 | [下载](https://url89.ctfile.com/f/31084289-1357002073-ea5db8?p=8866) |\n| 麦肯锡公众表达课 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866) |\n| 绝对坦率 | 金・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866) |\n| 21天说服力养成 | 诺瓦・戈尔茨坦等 | [下载](https://url89.ctfile.com/f/31084289-1357000174-b0db79?p=8866) |\n| 绝地谈判2 | 马蒂亚斯・施汉纳 | [下载](https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866) |\n| 高效沟通的100种方法 | 王利利 | [下载](https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866) |\n| 故事力 | 高琳/林宏博 | [下载](https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866) |\n| 如何讲好一件事 | 埃丝特·K·乔伊 | [下载](https://url89.ctfile.com/f/31084289-1356992356-e961db?p=8866) |\n| 幽默感 | 李新 | [下载](https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866) |\n| 允许被说服 | 艾尔・比坦帕里 | [下载](https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866) |\n| 你的情商，决定你的人生高度 | 心屋仁之助 | [下载](https://url89.ctfile.com/f/31084289-1356990724-58fd69?p=8866) |\n| 你为什么不道歉 | 哈丽特・勒纳 | [下载](https://url89.ctfile.com/f/31084289-1356990589-e95cbc?p=8866) |\n| 会说话的人运气都不会太差 | 矢野香 | [下载](https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866) |\n| 为什么精英这样沟通最高效 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866) |\n| 征服 | 邝大卫 | [下载](https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866) |\n| 好好接话 | 山口拓朗 | [下载](https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866) |\n| 如何正确吵架 | 朱迪斯・莱特/鲍勃・莱特 | [下载](https://url89.ctfile.com/f/31084289-1356985060-0a753d?p=8866) |\n| 用事实说话 | 马克・墨菲 | [下载](https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866) |\n| 情商是什么？ | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866) |\n| 所谓情商高，就是会说话 | 佐佐木圭一 | [下载](https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866) |\n| 绝地谈判 | 马蒂亚斯・施汉纳 | [下载](https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866) |\n| 关键提问 | 詹姆斯·E.瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357050661-5cfad3?p=8866) |\n| 即兴演讲 | 朱迪思・汉弗莱 | [下载](https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866) |\n| 沟通赢家 | 徐丽丽 | [下载](https://url89.ctfile.com/f/31084289-1357049902-070654?p=8866) |\n| 牛津式高效沟通 | 冈田昭人 | [下载](https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866) |\n| 1分钟沟通课 | 鱼住理英 | [下载](https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866) |\n| 高效人士的问题解决术 | 森秀明 | [下载](https://url89.ctfile.com/f/31084289-1357049437-4b60bc?p=8866) |\n| 谈判技巧：菜鸟谈判进阶的八大要领 | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866) |\n| 深度说服 | 梁秋阳 | [下载](https://url89.ctfile.com/f/31084289-1357046548-b02fe1?p=8866) |\n| 高情商沟通 | 仲佳伟/文娅 | [下载](https://url89.ctfile.com/f/31084289-1357043860-e43eee?p=8866) |\n| 麦肯锡教我的谈判武器 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866) |\n| 边界 | 吉莲・邰蒂 | [下载](https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866) |\n| 沟通力就是销售力 | 余尚祥 | [下载](https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866) |\n| 掌控谈话 | 克里斯・沃斯 | [下载](https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866) |\n| 心理营养 | 林文采/伍娜 | [下载](https://url89.ctfile.com/f/31084289-1357031986-bf4ed8?p=8866) |\n| 好好说话第一步 | 麦克▪P.尼可斯 | [下载](https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866) |\n| 语言表达的艺术 | 赵磊 | [下载](https://url89.ctfile.com/f/31084289-1357030414-9672c6?p=8866) |\n| 亲和力 | 古宫昇 | [下载](https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866) |\n| 自信表达 | 兰迪・帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357030198-77c629?p=8866) |\n| 深度影响：如何自然地赢得他人的心 | 凯伦・梁 | [下载](https://url89.ctfile.com/f/31084289-1357029703-5380f1?p=8866) |\n| 如何建立好人缘 | 谢湘萍 | [下载](https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866) |\n| 高情商沟通术 | 胡慎之 | [下载](https://url89.ctfile.com/f/31084289-1357029124-a2a12a?p=8866) |\n| 与原生家庭和解 | 爱丽丝・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023583-60a575?p=8866) |\n| 好好说话2 | 马薇薇/黄执中/周玄毅等 | [下载](https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866) |\n| 感召力 | 西蒙・兰卡斯特 | [下载](https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866) |\n| 像间谍一样思考 | 卡尔森 | [下载](https://url89.ctfile.com/f/31084289-1357020934-24a0ae?p=8866) |\n| 冷暴力 | 玛丽・弗朗斯・伊里戈扬 | [下载](https://url89.ctfile.com/f/31084289-1357020379-602ca5?p=8866) |\n| 提升你的沟通技能（第四版） | 艾伦・巴克 | [下载](https://url89.ctfile.com/f/31084289-1357020118-157ff6?p=8866) |\n| 内向者沟通圣经 | 珍妮弗・康维勒 | [下载](https://url89.ctfile.com/f/31084289-1357020046-16728f?p=8866) |\n| 杠杆说服力 | 凯文・霍根 | [下载](https://url89.ctfile.com/f/31084289-1357019623-c2c1a7?p=8866) |\n| 绝佳提问：探询改变商业与生活 | 沃伦・贝格尔 | [下载](https://url89.ctfile.com/f/31084289-1357019464-bd3667?p=8866) |\n| 如何实现有效社交 | 凯伦・伯格 | [下载](https://url89.ctfile.com/f/31084289-1357018606-3ed13e?p=8866) |\n| 高难度沟通 | 贾森・杰伊/加布里埃尔・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357018492-971649?p=8866) |\n| 你就是孩子最好的玩具 | 金伯莉・布雷恩 | [下载](https://url89.ctfile.com/f/31084289-1357017844-ea3b3d?p=8866) |\n| 说服：像讲故事一样讲道理 | 尼克・克里 | [下载](https://url89.ctfile.com/f/31084289-1357017778-78f09d?p=8866) |\n| 再也不怕跟人打交道 | 莉尔・朗兹 | [下载](https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866) |\n| 如何有效提问 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357016725-e622b1?p=8866) |\n| 故事思维 | 安妮特・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357016149-fef684?p=8866) |\n| 细节：如何轻松影响他人 | 罗伯特・西奥迪尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015507-30ee58?p=8866) |\n| 关键对话 | 凯瑞・派特森/约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015342-e01712?p=8866) |\n| 关键冲突 | 科里・帕特森/约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015339-b03473?p=8866) |\n| 解决冲突的关键技巧 | 达纳・卡斯帕森 | [下载](https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866) |\n| 魔鬼搭讪学 | 魔鬼咨询师 | [下载](https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866) |\n| P.E.T.父母效能训练 | 托马斯・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357007713-043e37?p=8866) |\n| 好好说话：新鲜有趣的话术精进技巧 | 马东/马薇薇/黄执中等 | [下载](https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866) |\n| 沟通的艺术 | 罗纳德・阿德勒/拉塞尔・普罗克特  | [下载](https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866) |\n| 魔力四射：如何打动、亲近和影响他人 | 帕特里克・金 | [下载](https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866) |\n| 冷读术（白金珍藏版） | 石真语 | [下载](https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866) |\n| 好好说话 | 学诚法师 | [下载](https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866) |\n| 跟任何人都聊得来 | 迈克・贝克特尔 | [下载](https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866) |\n| 演讲的力量 | 克里斯・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357006537-682cc0?p=8866) |\n"
  },
  {
    "path": "md/治愈.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 治愈\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 抱住棒棒的自己 | 徐慢慢心理话 | [下载](https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866) |\n| 生活蒙太奇 | 天然 | [下载](https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866) |\n| 忍不住想打扰你 | bibi园长 | [下载](https://url89.ctfile.com/f/31084289-1375500922-1b9c21?p=8866) |\n| 谢谢，但今天不行 | 科尔杜拉・努斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1375501042-6f62d9?p=8866) |\n| 天堂旅行团 | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1375501435-2b3e87?p=8866) |\n| 出门买蛋去 | 小川糸 | [下载](https://url89.ctfile.com/f/31084289-1375502962-d87e59?p=8866) |\n| 狮子之家的点心日 | 小川糸 | [下载](https://url89.ctfile.com/f/31084289-1375504180-50d4c6?p=8866) |\n| 深夜食堂（第4部：卷19~卷23） | 安倍夜郎 | [下载](https://url89.ctfile.com/f/31084289-1375507348-35ca31?p=8866) |\n| 在最后一页等我 | 索菲亚・蕾依 | [下载](https://url89.ctfile.com/f/31084289-1375506712-efdf8e?p=8866) |\n| 深夜食堂（第1部：卷1~卷6） | 安倍夜郎 | [下载](https://url89.ctfile.com/f/31084289-1375508449-053311?p=8866) |\n| 深夜食堂（第3部：卷13~卷18） | 安倍夜郎 | [下载](https://url89.ctfile.com/f/31084289-1375509205-71e3f3?p=8866) |\n| 带着恐惧前行 | 鲁斯・苏库普 | [下载](https://url89.ctfile.com/f/31084289-1375510180-c33921?p=8866) |\n| 蛤蟆先生去看心理医生 | 罗伯特・戴博德 | [下载](https://url89.ctfile.com/f/31084289-1375510405-ccace2?p=8866) |\n| 不可能的堡垒 | 詹森・雷库拉克 | [下载](https://url89.ctfile.com/f/31084289-1375511824-5bbdd3?p=8866) |\n| 偷心书店 | 卡塔琳娜・碧瓦德 | [下载](https://url89.ctfile.com/f/31084289-1375512223-e07962?p=8866) |\n| 日本的童话（果麦经典） | 小川未明等 | [下载](https://url89.ctfile.com/f/31084289-1357004434-9f10f5?p=8866) |\n| 如果萨莉没离开 | 丽贝卡・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357003960-ba3f4b?p=8866) |\n| 美食，祈祷，恋爱 | 伊丽莎白・吉尔伯特 | [下载](https://url89.ctfile.com/f/31084289-1357002328-a4874c?p=8866) |\n| 快乐贩卖机 | 凯蒂・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866) |\n| 我离开之后 | 苏西・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866) |\n| 杏仁 | 孙元平 | [下载](https://url89.ctfile.com/f/31084289-1356997795-ec9e5f?p=8866) |\n| 别让我离开 | 凯瑟琳・雷恩・海德 | [下载](https://url89.ctfile.com/f/31084289-1356994834-ef4958?p=8866) |\n| 再见马戏团 | 伊坂幸太郎/曼努埃尔・菲奥 | [下载](https://url89.ctfile.com/f/31084289-1356994525-225149?p=8866) |\n| 善哉善哉，就你话多 | 明安 | [下载](https://url89.ctfile.com/f/31084289-1356991837-352d6c?p=8866) |\n| 天使的孩子 | 丹尼尔・斯蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1356986575-694e6f?p=8866) |\n| 灯塔守望者的女儿 | 珍•E.潘德兹沃尔 | [下载](https://url89.ctfile.com/f/31084289-1356986095-8be8e5?p=8866) |\n| 听你的 | 张皓宸 | [下载](https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866) |\n| 我余生的第一天 | 维尔吉妮・格里马尔蒂 | [下载](https://url89.ctfile.com/f/31084289-1356985000-fd55f0?p=8866) |\n| 小岛西岸的来信 | 洛丽・施皮尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357053124-ef774c?p=8866) |\n| 一见你就好心情 | 莉兹・克里莫 | [下载](https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866) |\n| 一条狗的使命：只想陪在你身边 | 布鲁斯・卡梅隆 | [下载](https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866) |\n| 睡在汽车里的女孩 | 珍妮弗・克莱门特 | [下载](https://url89.ctfile.com/f/31084289-1357047661-1ca554?p=8866) |\n| 孤独梦想家 | 戴维・巴尼特 | [下载](https://url89.ctfile.com/f/31084289-1357047646-c1f65b?p=8866) |\n| 再见，黑鸟 | 伊坂幸太郎 | [下载](https://url89.ctfile.com/f/31084289-1357047280-8f2319?p=8866) |\n| 人间值得 | 中村恒子/奥田弘美 | [下载](https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866) |\n| 焦虑又怎样 | 弗兰齐丝卡・赛柏特 | [下载](https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866) |\n| 海边理发店 | 荻原浩 | [下载](https://url89.ctfile.com/f/31084289-1357043965-d46de9?p=8866) |\n| 吉本家的猫咪们 | 春野宵子 | [下载](https://url89.ctfile.com/f/31084289-1357043533-a39c3e?p=8866) |\n| 与自己和解 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357043083-b4e0aa?p=8866) |\n| 食帖12：厨房，治愈人生的避难所 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866) |\n| 费孝通经典作品四部 | 费孝通 | [下载](https://url89.ctfile.com/f/31084289-1357041178-c73b09?p=8866) |\n| 无法完成的告别 | 大卫・利维森 | [下载](https://url89.ctfile.com/f/31084289-1357035373-d1df05?p=8866) |\n| 唯有猫能治愈我 | 杰克森・盖勒克西 | [下载](https://url89.ctfile.com/f/31084289-1357033900-848a6b?p=8866) |\n| 甜月亮 | 陶立夏 | [下载](https://url89.ctfile.com/f/31084289-1357033636-81f339?p=8866) |\n| 爱自己的人自带光芒 | 雅基・马森 | [下载](https://url89.ctfile.com/f/31084289-1357033303-05b124?p=8866) |\n| 成功的聪明人太多了，我必须为笨蛋争口气！ | 书单狗 | [下载](https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866) |\n| 情绪认知 | 尹惟楚 | [下载](https://url89.ctfile.com/f/31084289-1357032388-04b8da?p=8866) |\n| 摆渡人3：无境之爱 | 克莱儿・麦克福尔 | [下载](https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866) |\n| 天真的歌 | 余光中 | [下载](https://url89.ctfile.com/f/31084289-1357032004-ffb2cf?p=8866) |\n| 追恐龙的男孩 | 贾科莫・马扎里奥 | [下载](https://url89.ctfile.com/f/31084289-1357030879-d30fd6?p=8866) |\n| 幸福需要等待 | 安娜・戈华达 | [下载](https://url89.ctfile.com/f/31084289-1357030705-407eec?p=8866) |\n| 寺内贯太郎一家 | 向田邦子 | [下载](https://url89.ctfile.com/f/31084289-1357030645-fd9b57?p=8866) |\n| 当时忍住就好了（插图典藏版） | 肯・林德纳 | [下载](https://url89.ctfile.com/f/31084289-1357029577-e20eb2?p=8866) |\n| 随风飘舞的塑料布 | 森绘都 | [下载](https://url89.ctfile.com/f/31084289-1357028566-77b8a6?p=8866) |\n| 他跟我聊到樱桃树、灰尘以及一座山 | 安东尼・帕耶 | [下载](https://url89.ctfile.com/f/31084289-1357028206-7f784d?p=8866) |\n| 哀愁的预感 | 吉本芭娜娜  | [下载](https://url89.ctfile.com/f/31084289-1357027426-a44ae6?p=8866) |\n| 我在天堂那五年 | 约翰・施利姆 | [下载](https://url89.ctfile.com/f/31084289-1357027240-d0e434?p=8866) |\n| 不执着，叫看破 不完美，是生活 | 莫妮卡・拉米雷斯・巴斯科 | [下载](https://url89.ctfile.com/f/31084289-1357024900-a49539?p=8866) |\n| 蒲公英醇夏 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1357024867-dd3818?p=8866) |\n| 永远不要找别人要安全感 | 韩梅梅 | [下载](https://url89.ctfile.com/f/31084289-1357023361-cb03e3?p=8866) |\n| 永远不要找别人要安全感2 | 韩梅梅 | [下载](https://url89.ctfile.com/f/31084289-1357023358-da9edb?p=8866) |\n| 云边有个小卖部 | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1357022539-f60fa4?p=8866) |\n| 山茶文具店 | 小川糸 | [下载](https://url89.ctfile.com/f/31084289-1357021900-38dea3?p=8866) |\n| 时光倒流的女孩 | 加・泽文 | [下载](https://url89.ctfile.com/f/31084289-1357021435-850156?p=8866) |\n| 睡了吗？摘颗星星给你 | LOST7 | [下载](https://url89.ctfile.com/f/31084289-1357020397-464256?p=8866) |\n| 一个叫欧维的男人决定去死 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357019383-ef7704?p=8866) |\n| 我在未来等你 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357019131-e9de0c?p=8866) |\n| 奇迹男孩 | 帕拉西奥 | [下载](https://url89.ctfile.com/f/31084289-1357017115-40f395?p=8866) |\n| 陪安娜穿过漫漫长夜 | 加瑞尔・萨维 | [下载](https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866) |\n| 羊与钢的森林 | 宫下奈都 | [下载](https://url89.ctfile.com/f/31084289-1357015348-2e4ed9?p=8866) |\n| 守护故事的人 | 丽萨・温格特 | [下载](https://url89.ctfile.com/f/31084289-1357014787-6c94a7?p=8866) |\n| 摘星星的男孩 | 约翰・威廉姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357012597-1eeee3?p=8866) |\n| 小小巴黎书店 | 妮娜・乔治 | [下载](https://url89.ctfile.com/f/31084289-1357012591-51c462?p=8866) |\n| 等你呼唤我的名字 | 阿尔伯特・埃斯皮诺萨 | [下载](https://url89.ctfile.com/f/31084289-1357012054-1358cc?p=8866) |\n| 咖啡未冷前 | 川口俊和 | [下载](https://url89.ctfile.com/f/31084289-1357011202-0121ce?p=8866) |\n| 再见，萤火虫小巷 | 克莉丝汀・汉娜  | [下载](https://url89.ctfile.com/f/31084289-1357010206-82872c?p=8866) |\n| 阿司匹林博物馆 | 赵越 | [下载](https://url89.ctfile.com/f/31084289-1357010119-af683d?p=8866) |\n| 一个人的朝圣2：奎妮的情歌 | 蕾秋・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357009930-818355?p=8866) |\n| 你今天真好看 | 莉兹・克里莫 | [下载](https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866) |\n| 莉莉和章鱼 | 史蒂文・罗利 | [下载](https://url89.ctfile.com/f/31084289-1357009783-3b87ff?p=8866) |\n| 外婆的道歉信 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357008808-17d5d1?p=8866) |\n| 疯狂成瘾者 | 马克・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357008163-e5e6c5?p=8866) |\n| 萤火虫小巷 | 克莉丝汀・汉娜 | [下载](https://url89.ctfile.com/f/31084289-1357007914-abfad4?p=8866) |\n| 从你的全世界路过 | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866) |\n"
  },
  {
    "path": "md/治愈系.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 治愈系\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 厨房（译文经典） | 吉本芭娜娜 | [下载](https://url89.ctfile.com/f/31084289-1357032481-51d917?p=8866) |\n| 红色地址簿 | 苏菲亚・伦德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357032307-65c5a3?p=8866) |\n"
  },
  {
    "path": "md/治疗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 治疗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 医目了然 | 懒兔子 | [下载](https://url89.ctfile.com/f/31084289-1357031530-1e7d76?p=8866) |\n| 身体从未忘记 | 巴塞尔・范德考克 | [下载](https://url89.ctfile.com/f/31084289-1357023610-57fe2f?p=8866) |\n| 爱，不释手 | 琳・斯蒂格・斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357010044-9bddf2?p=8866) |\n"
  },
  {
    "path": "md/法医.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 法医\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 逝者之书 | 法医秦明 | [下载](https://url89.ctfile.com/f/31084289-1356998971-364375?p=8866) |\n| 洗冤集录注评 | 宋慈 | [下载](https://url89.ctfile.com/f/31084289-1357053118-be8da5?p=8866) |\n| 法醫·屍體·解剖室（套装共3册） | 道格拉斯．萊爾 | [下载](https://url89.ctfile.com/f/31084289-1357034428-aee5f1?p=8866) |\n| 天谴者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357024783-34b504?p=8866) |\n| 宋慈大传 | 王宏甲 | [下载](https://url89.ctfile.com/f/31084289-1357007542-43cf64?p=8866) |\n| 黑背鱼之谜 | 鬼马星 | [下载](https://url89.ctfile.com/f/31084289-1357007254-1e1503?p=8866) |\n| 女法医手记系列套装（全四册） | 刘真 | [下载](https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866) |\n| 女法医之尸体加工厂 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005703-a1559d?p=8866) |\n| 女法医之活体贩卖者 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005706-7945b8?p=8866) |\n| 女法医之骨头收藏家 | 戴西 | [下载](https://url89.ctfile.com/f/31084289-1357005088-c846d7?p=8866) |\n| 幸存者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004773-132338?p=8866) |\n| 清道夫 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004761-6fcbaa?p=8866) |\n| 第十一根手指 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004764-d26dda?p=8866) |\n| 无声的证词 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004758-85afce?p=8866) |\n| 尸语者 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357004755-5d0247?p=8866) |\n"
  },
  {
    "path": "md/法国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 法国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 法国大革命前夕的图书世界 | 罗伯特・达恩顿 | [下载](https://url89.ctfile.com/f/31084289-1375498648-a7b92b?p=8866) |\n| 巴黎陷落 | 阿利斯泰尔・霍恩 | [下载](https://url89.ctfile.com/f/31084289-1375499338-db0284?p=8866) |\n| 法国大革命史译丛（套装共六册） | 哈里・狄金森等 | [下载](https://url89.ctfile.com/f/31084289-1375506574-7351e2?p=8866) |\n| 法兰西双皇后 | 南希・戈德斯通 | [下载](https://url89.ctfile.com/f/31084289-1375510870-09407d?p=8866) |\n| 法国大革命与革命心理学 | 古斯塔夫・勒庞 | [下载](https://url89.ctfile.com/f/31084289-1375510999-0c5c32?p=8866) |\n| 成为公民 | 皮埃尔・罗桑瓦龙 | [下载](https://url89.ctfile.com/f/31084289-1375511836-25cf44?p=8866) |\n| 法国大革命和拿破仑 | 林恩・亨特/杰克・R. 森瑟 | [下载](https://url89.ctfile.com/f/31084289-1375512043-6f670b?p=8866) |\n| 雨果文集（全12册） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1375513198-97bfd1?p=8866) |\n| 法兰西世界史 | 帕特里克・布琼 | [下载](https://url89.ctfile.com/f/31084289-1375513288-07aed4?p=8866) |\n| 弥补 | 科隆布・施内克 | [下载](https://url89.ctfile.com/f/31084289-1357002862-a99b5a?p=8866) |\n| 奥斯卡与玫瑰奶奶 | 埃里克-埃马纽埃尔·施米特 | [下载](https://url89.ctfile.com/f/31084289-1357002568-5d28cc?p=8866) |\n| 论爱美 | 夏尔・佩潘 | [下载](https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866) |\n| 看不见的爱 | 埃里克-埃马纽埃尔・施米特 | [下载](https://url89.ctfile.com/f/31084289-1357002421-00aa03?p=8866) |\n| 吉尔·德·莱斯案 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357002133-819abb?p=8866) |\n| 平静的风暴 | 弗朗索瓦丝・萨冈 | [下载](https://url89.ctfile.com/f/31084289-1357001590-272377?p=8866) |\n| 不正经的卢浮宫 | 西塞尔・巴隆等 | [下载](https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866) |\n| 法国文学经典译丛（共6本） | 乔治・桑等 | [下载](https://url89.ctfile.com/f/31084289-1356997660-f91dd1?p=8866) |\n| 法国大革命与法兰西第一帝国 | 威廉・奥康纳・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356996736-b9c328?p=8866) |\n| 红项圈 | 让-克利斯托夫·吕芬 | [下载](https://url89.ctfile.com/f/31084289-1356996508-05afae?p=8866) |\n| 地心游记（读客经典） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866) |\n| 黑色睡莲 | 米歇尔・普西 | [下载](https://url89.ctfile.com/f/31084289-1356994783-a62041?p=8866) |\n| 历史性的体制 | 弗朗索瓦・阿赫托戈 | [下载](https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866) |\n| 冰上斯芬克斯 | 儒尔・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866) |\n| 伏尔泰传 | 安德烈・莫洛亚 | [下载](https://url89.ctfile.com/f/31084289-1356991390-322e00?p=8866) |\n| 世界迷宫三部曲 | 玛格丽特・尤瑟纳尔 | [下载](https://url89.ctfile.com/f/31084289-1356990385-be527b?p=8866) |\n| 可怕的孩子 | 让・谷克多 | [下载](https://url89.ctfile.com/f/31084289-1356990043-5f0e5f?p=8866) |\n| 七个来自远方的故事（短经典） | 让-克利斯托夫・吕芬 | [下载](https://url89.ctfile.com/f/31084289-1356990028-c5cf11?p=8866) |\n| 斯科塔的太阳 | 洛朗・戈代 | [下载](https://url89.ctfile.com/f/31084289-1356989932-49b7ce?p=8866) |\n| 文字传奇 | 袁筱一 | [下载](https://url89.ctfile.com/f/31084289-1356989881-f84d16?p=8866) |\n| 福楼拜小说集（套装共4册） | 居斯塔夫・福楼拜 | [下载](https://url89.ctfile.com/f/31084289-1356989761-e1636e?p=8866) |\n| 文学法兰西 | 普利西拉・帕克赫斯特・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1356987244-0b471f?p=8866) |\n| 我与戛纳 | 蒂耶里・福茂 | [下载](https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866) |\n| 要塞（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985693-c622f6?p=8866) |\n| 夜航（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866) |\n| 人的大地（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985495-722804?p=8866) |\n| 小王子（成为小王子系列） | 小王子（成为小王子系列） | [下载](https://url89.ctfile.com/f/31084289-1356985462-e42ce2?p=8866) |\n| 活的隐喻（二十世纪西方哲学经典） | 保罗・利科 | [下载](https://url89.ctfile.com/f/31084289-1356985294-b76e94?p=8866) |\n| 南方邮航（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985288-11c68c?p=8866) |\n| 空军飞行员（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985102-995977?p=8866) |\n| 奇迹病房 | 朱利安・桑德勒尔 | [下载](https://url89.ctfile.com/f/31084289-1356983974-3ed4fc?p=8866) |\n| 德里达（牛津通识读本） | 西蒙・格伦迪宁 | [下载](https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866) |\n| 理论的幽灵：文学与常识 | 安托万・孔帕尼翁 | [下载](https://url89.ctfile.com/f/31084289-1357052251-1b4968?p=8866) |\n| 天空之蓝 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357052230-fa9975?p=8866) |\n| 罗丹艺术论 | 奥古斯特・罗丹 | [下载](https://url89.ctfile.com/f/31084289-1357052005-e1851b?p=8866) |\n| 蒙田全集（套装共4册） | 蒙田 | [下载](https://url89.ctfile.com/f/31084289-1357051849-bb912e?p=8866) |\n| 群氓的狂欢 | 塞奇・莫斯科维奇 | [下载](https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866) |\n| 不可能性 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357051660-3d8c5e?p=8866) |\n| 火光之色 | 皮耶尔・勒迈特 | [下载](https://url89.ctfile.com/f/31084289-1357051579-ec6e6c?p=8866) |\n| 罗盘 | 马蒂亚斯・埃纳尔 | [下载](https://url89.ctfile.com/f/31084289-1357051156-4846ed?p=8866) |\n| 纪念天使协奏曲 | 埃里克-埃马纽埃尔・施米特 | [下载](https://url89.ctfile.com/f/31084289-1357050433-94333a?p=8866) |\n| 《荒岛》及其他文本 | 吉尔・德勒兹/大卫・拉普雅德 | [下载](https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866) |\n| 导体 | 克洛德・西蒙 | [下载](https://url89.ctfile.com/f/31084289-1357049389-41abeb?p=8866) |\n| 枫丹白露宫 | 蒂埃里・萨尔芒等 | [下载](https://url89.ctfile.com/f/31084289-1357049362-9f60f4?p=8866) |\n| 罗兰·巴尔特文集（套装） | 罗兰・巴尔特 | [下载](https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866) |\n| 卡门（果麦经典） | 普罗斯珀・梅里美 | [下载](https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866) |\n| 辫子 | 莱蒂西娅・科隆巴尼 | [下载](https://url89.ctfile.com/f/31084289-1357047979-c242df?p=8866) |\n| 埃梅短篇小说精选 | 马塞尔・埃梅 | [下载](https://url89.ctfile.com/f/31084289-1357046686-e8fde9?p=8866) |\n| 居里夫人自传（果麦经典） | 玛丽・居里 | [下载](https://url89.ctfile.com/f/31084289-1357046320-31d73f?p=8866) |\n| 巴黎圣母院（果麦经典） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357046152-a5184c?p=8866) |\n| 别列津纳河 | 西尔万・泰松 | [下载](https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866) |\n| 法国大革命 | 维森 | [下载](https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866) |\n| 塞纳河畔的一把椅子 | 阿明・马洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357042879-011dc2?p=8866) |\n| 法式诱惑 | 伊莱恩・西奥利诺 | [下载](https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866) |\n| 名人传（译文经典） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1357042477-5d0e3f?p=8866) |\n| 困在宜家衣柜里的苦行僧 | 罗曼・普埃尔多拉 | [下载](https://url89.ctfile.com/f/31084289-1357042039-20cc0f?p=8866) |\n| 自由的声音 | 米歇尔・维诺克 | [下载](https://url89.ctfile.com/f/31084289-1357041064-ba5df3?p=8866) |\n| 存在主义是一种人道主义（译文经典） | 让-保罗・萨特 | [下载](https://url89.ctfile.com/f/31084289-1357039642-f8eb49?p=8866) |\n| 空间的诗学（译文经典） | 加斯东・巴什拉 | [下载](https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866) |\n| 议程 | 埃里克・维亚尔 | [下载](https://url89.ctfile.com/f/31084289-1357039354-676672?p=8866) |\n| 来自遗忘的最深处 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357039075-4c44c6?p=8866) |\n| 这样你就不会迷路 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357039021-60295e?p=8866) |\n| 实用主义和语用论 | 高宣扬 | [下载](https://url89.ctfile.com/f/31084289-1357037920-2e79c8?p=8866) |\n| 消费社会 | 让・鲍德里亚 | [下载](https://url89.ctfile.com/f/31084289-1357037797-8fc023?p=8866) |\n| 巴黎仗剑寻书记 | 阿图罗・佩雷斯-雷维特 | [下载](https://url89.ctfile.com/f/31084289-1357035358-e49843?p=8866) |\n| 卡利古拉 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357035097-2b2c4c?p=8866) |\n| 流亡与独立王国 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357035040-722b2f?p=8866) |\n| 堕落 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034953-de3083?p=8866) |\n| 南方之星 | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357034878-849ebc?p=8866) |\n| 反与正·婚礼集·夏 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866) |\n| 吉尔·布拉斯（名著名译丛书） | 勒萨日 | [下载](https://url89.ctfile.com/f/31084289-1357034791-747b5e?p=8866) |\n| 鼠疫 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034764-a88dde?p=8866) |\n| 第一个人 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034710-aee0ac?p=8866) |\n| 法式优雅 | 弗雷德里克・维塞 | [下载](https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866) |\n| 正义者 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034548-15beb3?p=8866) |\n| 西西弗神话 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034482-5d6ef6?p=8866) |\n| 都兰趣话（名著名译丛书） | 奥诺雷・德・巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357034479-984c05?p=8866) |\n| 地下巴黎 | 洛朗・多伊奇 | [下载](https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866) |\n| 异乡人 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357033951-f2a1e6?p=8866) |\n| 论人类不平等的起源和基础（果麦经典） | 让-雅克・卢梭 | [下载](https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866) |\n| 6点27分的朗读者 |  让-保尔・迪迪耶洛朗 | [下载](https://url89.ctfile.com/f/31084289-1357033048-452f4a?p=8866) |\n| 与你重逢 | 马克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357032469-49b649?p=8866) |\n| 自由与毁灭 | 彼得・麦克菲 | [下载](https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866) |\n| 被诅咒的部分 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866) |\n| 拿破仑三世与法兰西第二帝国 | 皮埃尔・德・拉诺 | [下载](https://url89.ctfile.com/f/31084289-1357031686-66730a?p=8866) |\n| 电影是什么？ | 安德烈・巴赞 | [下载](https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866) |\n| 天真汉 | 伏尔泰 | [下载](https://url89.ctfile.com/f/31084289-1357029955-6e8063?p=8866) |\n| 三个火枪手（读客经典） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357028785-d4755a?p=8866) |\n| 巴黎圣母院（经典译林） | 维克多・雨果 | [下载](链接未找到) |\n| 他跟我聊到樱桃树、灰尘以及一座山 | 安东尼・帕耶 | [下载](https://url89.ctfile.com/f/31084289-1357028206-7f784d?p=8866) |\n| 罗兰·巴特文选（全6册） | 罗兰・巴特 | [下载](https://url89.ctfile.com/f/31084289-1357027819-f06d3b?p=8866) |\n| 夜的草 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357027684-2969f4?p=8866) |\n| 荒谬的墙 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357027558-daaaf7?p=8866) |\n| 蜜月旅行 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357027522-eb2fb2?p=8866) |\n| 米赫尔 | 弗雷德里克・米斯特拉尔 | [下载](https://url89.ctfile.com/f/31084289-1357027495-1c4f2a?p=8866) |\n| 局外人（读客经典） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866) |\n| 八月的星期天 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357027435-819263?p=8866) |\n| 地铁姑娘扎姬 | 雷蒙・格诺 | [下载](https://url89.ctfile.com/f/31084289-1357027417-3b5646?p=8866) |\n| 不乖的哲学家 | 罗朗・古内尔 | [下载](https://url89.ctfile.com/f/31084289-1357027357-6fca3e?p=8866) |\n| 交际花盛衰记（企鹅经典） | 巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357027228-7f0546?p=8866) |\n| 流动的盛宴（果麦经典） | 海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027051-6a3fc0?p=8866) |\n| 包法利夫人 | 福楼拜 | [下载](https://url89.ctfile.com/f/31084289-1357026808-2efd7e?p=8866) |\n| 巨人传（译文名著典藏） | 拉伯雷 | [下载](https://url89.ctfile.com/f/31084289-1357026739-9c8fe8?p=8866) |\n| 当美拯救我们 | 夏尔・佩潘 | [下载](https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866) |\n| 行走，一堂哲学课 | 弗里德里克・格鲁 | [下载](https://url89.ctfile.com/f/31084289-1357025572-e9bdce?p=8866) |\n| 红与黑（果麦经典） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866) |\n| 窄门（果麦经典） | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357024099-8f56cf?p=8866) |\n| 基督山伯爵（读客经典） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866) |\n| 幻影恐惧 | 亚当・查莫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357021573-27153d?p=8866) |\n| 恶之花 | 夏尔・波德莱尔 | [下载](https://url89.ctfile.com/f/31084289-1357020898-48caea?p=8866) |\n| 风沙星辰 | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1357019329-972eda?p=8866) |\n| 温柔之歌 | 蕾拉・斯利玛尼 | [下载](https://url89.ctfile.com/f/31084289-1357017928-dad628?p=8866) |\n| 悲惨世界（译文名著精选） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357017592-9191d1?p=8866) |\n| 世界迷宫Ⅲ：何谓永恒 | 玛格丽特・尤瑟纳尔 | [下载](https://url89.ctfile.com/f/31084289-1357017004-62308e?p=8866) |\n| 世界迷宫I：虔诚的回忆 | 玛格丽特・尤瑟纳尔 | [下载](https://url89.ctfile.com/f/31084289-1357016569-c1efc9?p=8866) |\n| 世界迷宫Ⅱ：北方档案 | 玛格丽特・尤瑟纳尔 | [下载](https://url89.ctfile.com/f/31084289-1357016566-788ff4?p=8866) |\n| 绝非普通人系列（套装共6册） | 弗雷德里克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357015228-fba95a?p=8866) |\n| 多拉・布吕代 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357014472-b52db7?p=8866) |\n| 三十七度二（译文经典） | 菲利普・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357013452-6e212b?p=8866) |\n| 家谱 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357012681-1ffe87?p=8866) |\n| 废墟的花朵 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357012504-c2ae8c?p=8866) |\n| 偷影子的人 | 马克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357011811-525654?p=8866) |\n| 天上再见 | 皮耶尔・勒迈特 | [下载](https://url89.ctfile.com/f/31084289-1357010554-368938?p=8866) |\n| 加缪全集（小说卷） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357009885-1f723b?p=8866) |\n| 直到那一天 | 米歇尔・普西 | [下载](https://url89.ctfile.com/f/31084289-1357009825-99cc00?p=8866) |\n| 青春咖啡馆 | 帕特里克・莫迪亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357009726-977513?p=8866) |\n| 局外人 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357008871-2380b6?p=8866) |\n| 悲惨世界（套装上中下册） | 雨果 | [下载](https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866) |\n| 八十天环游地球（译文名著精选） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357007725-e9294d?p=8866) |\n| 二十年后（套装上下册） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357007203-5ad2db?p=8866) |\n| 乌合之众：大众心理研究（修订版） | 古斯塔夫·勒庞  | [下载](https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866) |\n| 剧院魅影（译文名著精选） | 卡斯顿・勒胡 | [下载](https://url89.ctfile.com/f/31084289-1357006849-571d7d?p=8866) |\n| 你们再也不写了？（短经典） | 洛朗丝・柯赛 | [下载](https://url89.ctfile.com/f/31084289-1357006438-e0248f?p=8866) |\n| 宫廷社会（译文经典） | 诺贝特・埃利亚斯 | [下载](https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866) |\n| 古代哲学的智慧（译文经典） | 皮埃尔・阿多 | [下载](https://url89.ctfile.com/f/31084289-1357006372-3fb9a1?p=8866) |\n| 法国知识分子史 | 吕一民/朱晓罕 | [下载](https://url89.ctfile.com/f/31084289-1357005112-e01f7e?p=8866) |\n| 无尽的谈话 | 莫里斯・布朗肖 | [下载](https://url89.ctfile.com/f/31084289-1357005043-e237a2?p=8866) |\n| 孤独的池塘（短经典） | 弗朗索瓦丝・萨冈 | [下载](https://url89.ctfile.com/f/31084289-1357004749-de3f5a?p=8866) |\n"
  },
  {
    "path": "md/法国大革命.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 法国大革命\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 自由与毁灭 | 彼得・麦克菲 | [下载](https://url89.ctfile.com/f/31084289-1357032214-01f183?p=8866) |\n| 拿破仑与法兰西第一帝国（全2册） | 约瑟夫・富歇 | [下载](https://url89.ctfile.com/f/31084289-1357031704-299c68?p=8866) |\n"
  },
  {
    "path": "md/法学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 法学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 死亡的视线 | 刘易斯・M.科恩 | [下载](https://url89.ctfile.com/f/31084289-1357002592-e3895f?p=8866) |\n| 刑法学讲义 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866) |\n| 宪法学讲义（第三版） | 林来梵 | [下载](https://url89.ctfile.com/f/31084289-1356990535-066ef2?p=8866) |\n| 圆圈正义 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866) |\n| 盲人奥里翁 | 龚祥瑞 | [下载](https://url89.ctfile.com/f/31084289-1357028482-369eaa?p=8866) |\n| 司法的细节 | 刘仁文 | [下载](https://url89.ctfile.com/f/31084289-1357022755-7efa0d?p=8866) |\n| 刑法格言的展开（第三版） | 张明楷 | [下载](https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866) |\n"
  },
  {
    "path": "md/法律.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 法律\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 法治的细节 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1375498228-28f106?p=8866) |\n| 《中华人民共和国民法典》条文精释与实案全析 | 杨立新 | [下载](https://url89.ctfile.com/f/31084289-1375508884-69560f?p=8866) |\n| 弹劾 | 戴维・E.凯卫格 | [下载](https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866) |\n| 刑罚的历史 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1357003726-07d003?p=8866) |\n| 刑法中的同意制度 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1357003372-a8ac3b?p=8866) |\n| 刑法罗盘 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866) |\n| 誓言：白宫与最高法院 | 杰弗里・图宾 | [下载](https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866) |\n| 以眼还眼 | 米切尔·P·罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866) |\n| 圆圈正义 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866) |\n| 隐秘战争 | 阿里・拉伊迪 | [下载](https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866) |\n| 司法的细节 | 刘仁文 | [下载](https://url89.ctfile.com/f/31084289-1357022755-7efa0d?p=8866) |\n| 法政纠结 | 杨天宏 | [下载](https://url89.ctfile.com/f/31084289-1357020388-cbd634?p=8866) |\n| 十二怒汉 | 雷金纳德・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357018195-04e94b?p=8866) |\n| 联邦论：美国宪法评述 | 亚历山大・汉密尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866) |\n| 批评官员的尺度 | 安东尼・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866) |\n| 断臂上的花朵 | 奥比・萨克斯 | [下载](https://url89.ctfile.com/f/31084289-1357009423-07055d?p=8866) |\n| 辛普森何以逍遥法外？ | 文森特・布廖西 | [下载](https://url89.ctfile.com/f/31084289-1357008964-ad44de?p=8866) |\n| 艰难的一跃 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357008709-1e13a7?p=8866) |\n| 大法官说了算 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866) |\n| 洞穴奇案 | 萨伯 | [下载](https://url89.ctfile.com/f/31084289-1357008175-d08cdd?p=8866) |\n| 合理的怀疑 | 德肖维茨 | [下载](https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866) |\n| 美国最高法院通识读本 | 琳达・格林豪斯 | [下载](https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866) |\n| 刑法格言的展开（第三版） | 张明楷 | [下载](https://url89.ctfile.com/f/31084289-1357005367-73f085?p=8866) |\n"
  },
  {
    "path": "md/法治.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 法治\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 刑法罗盘 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1357001098-c541e1?p=8866) |\n| 圆圈正义 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1356987298-d8e466?p=8866) |\n"
  },
  {
    "path": "md/法规.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 法规\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 《中华人民共和国民法典》条文精释与实案全析 | 杨立新 | [下载](https://url89.ctfile.com/f/31084289-1375508884-69560f?p=8866) |\n| 美国最高法院通识读本 | 琳达・格林豪斯 | [下载](https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866) |\n"
  },
  {
    "path": "md/波兰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 波兰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 米沃什词典 | 切斯瓦夫・米沃什 | [下载](https://url89.ctfile.com/f/31084289-1357043800-b2c0ba?p=8866) |\n| 瓜分波兰 | 乔治・肖-勒费弗 | [下载](https://url89.ctfile.com/f/31084289-1357029763-26eb57?p=8866) |\n"
  },
  {
    "path": "md/注意力.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 注意力\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们被偷走的注意力 | 斯特凡・范德斯蒂格谢尔 | [下载](https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866) |\n| 注意力曲线 | 露西・乔・帕拉迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357022548-72319e?p=8866) |\n"
  },
  {
    "path": "md/泰国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 泰国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 图绘暹罗 | 通猜・威尼差恭 | [下载](https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866) |\n| 泰国通史 | 段立生 | [下载](https://url89.ctfile.com/f/31084289-1357023805-06bd3d?p=8866) |\n"
  },
  {
    "path": "md/泰戈尔.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 泰戈尔\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 生如夏花（作家榜经典文库） | 拉宾德拉纳特・泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866) |\n"
  },
  {
    "path": "md/流感.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 流感\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大流感 | 约翰 M.巴里 | [下载](https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866) |\n| 致命流感 | 杰里米・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866) |\n"
  },
  {
    "path": "md/海关.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 海关\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 潮来潮去：海关与中国现代性的全球起源 | 方德万 | [下载](https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866) |\n"
  },
  {
    "path": "md/海军.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 海军\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 深蓝帝国：英国海军的兴衰 | 本・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866) |\n| 西班牙无敌舰队 | 加勒・马丁利 | [下载](https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866) |\n| 六舰 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866) |\n| 托马斯·杰斐逊与海盗 | 布莱恩・吉米德/唐・耶格 | [下载](https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866) |\n| 海魂国殇 | 肖璞韬 | [下载](https://url89.ctfile.com/f/31084289-1357020121-e8411c?p=8866) |\n"
  },
  {
    "path": "md/海尔.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 海尔\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 海尔制 | 胡国栋 | [下载](https://url89.ctfile.com/f/31084289-1375491937-798132?p=8866) |\n| 海尔是海：张瑞敏随笔选录 | 张瑞敏 | [下载](https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866) |\n| 海尔转型：人人都是CEO | 曹仰锋 | [下载](https://url89.ctfile.com/f/31084289-1357014961-4d7acd?p=8866) |\n"
  },
  {
    "path": "md/海明威.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 海明威\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 整个巴黎属于我 | 莱斯利·M.M.布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357045972-d0dfdd?p=8866) |\n| 丧钟为谁而鸣（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866) |\n"
  },
  {
    "path": "md/海权.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 海权\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 托马斯·杰斐逊与海盗 | 布莱恩・吉米德/唐・耶格 | [下载](https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866) |\n"
  },
  {
    "path": "md/海洋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 海洋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 海上丝绸之路 | 罗德里希・普塔克 | [下载](https://url89.ctfile.com/f/31084289-1357002505-7e6ed9?p=8866) |\n| 哲思与海 | 戴维・法雷尔・克雷尔 | [下载](https://url89.ctfile.com/f/31084289-1357002301-f41798?p=8866) |\n| 海权：海洋帝国与今日世界 | 詹姆斯・斯塔夫里迪斯 | [下载](https://url89.ctfile.com/f/31084289-1356997723-fe76ef?p=8866) |\n| 海上帝国：现代航运世界的故事 | 洛丽・安・拉罗科 | [下载](https://url89.ctfile.com/f/31084289-1356995551-55cc18?p=8866) |\n| 极端生存 | 史蒂芬・帕鲁比/安东尼・帕鲁比 | [下载](https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866) |\n| 深海：探索寂静的未知 | 詹姆斯・内斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866) |\n| 群 | 弗兰克・施茨廷 | [下载](https://url89.ctfile.com/f/31084289-1357025491-553cf5?p=8866) |\n| 海洋与文明 | 林肯・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1357024399-9d0ffc?p=8866) |\n| 极简海洋文明史 | 菲利普・德・索萨 | [下载](https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866) |\n| 海上帝国 | 萝莉·安·拉罗科 | [下载](https://url89.ctfile.com/f/31084289-1357006567-e71694?p=8866) |\n"
  },
  {
    "path": "md/海洋史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 海洋史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 荷兰海洋帝国史 | 顾卫民 | [下载](https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866) |\n| 从航海图到世界史 | 宫崎正胜 | [下载](https://url89.ctfile.com/f/31084289-1357051249-39098c?p=8866) |\n| 伟大的海（全2册） | 大卫・阿布拉菲亚 | [下载](https://url89.ctfile.com/f/31084289-1357045636-57b879?p=8866) |\n| 季风帝国 | 理查德・霍尔 | [下载](https://url89.ctfile.com/f/31084289-1357030810-5624a8?p=8866) |\n"
  },
  {
    "path": "md/海盗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 海盗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 全球海盗史 | 彼得・莱尔 | [下载](https://url89.ctfile.com/f/31084289-1375492117-e4c788?p=8866) |\n| 黑色的旗，蓝色的海 | 埃里克・杰・多林 | [下载](https://url89.ctfile.com/f/31084289-1375504423-4afc88?p=8866) |\n| 海盗共和国 | 科林・伍达德 | [下载](https://url89.ctfile.com/f/31084289-1357032946-dc4fd1?p=8866) |\n| 海盗奇谭 | 盛文强 | [下载](https://url89.ctfile.com/f/31084289-1357028122-374cfe?p=8866) |\n| 大国海盗 | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357008250-032573?p=8866) |\n| 大海盗时代 | 海盗 | [下载](https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866) |\n"
  },
  {
    "path": "md/消费者.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 消费者\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 行为设计学：打造峰值体验 | 奇普・希思/丹・希思 | [下载](https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866) |\n"
  },
  {
    "path": "md/深海.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 深海\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 深海：探索寂静的未知 | 詹姆斯・内斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866) |\n"
  },
  {
    "path": "md/清单.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 清单\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 高效清单工作法 | 达蒙・扎哈里亚德斯 | [下载](https://url89.ctfile.com/f/31084289-1357000315-5aa7f0?p=8866) |\n| 能力清单 | 吉恩・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866) |\n"
  },
  {
    "path": "md/清史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 清史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 清史九讲 | 内藤湖南 | [下载](https://url89.ctfile.com/f/31084289-1356995440-976d6f?p=8866) |\n| 经与史：康有为与章太炎（全二册） | 汤志钧 | [下载](https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866) |\n| 进击的铁骑 | 刘澍 | [下载](https://url89.ctfile.com/f/31084289-1357051048-0840f0?p=8866) |\n| 马背上的朝廷 | 张勉治 | [下载](https://url89.ctfile.com/f/31084289-1357048699-77f374?p=8866) |\n| 古代丝绸之路的绝唱 | 罗三洋 | [下载](https://url89.ctfile.com/f/31084289-1357045555-39eb63?p=8866) |\n| 朕知道了 | 傅淞岩 | [下载](https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866) |\n| 皇权不下县？ | 胡恒 | [下载](https://url89.ctfile.com/f/31084289-1357041118-0a5ee2?p=8866) |\n| 晚清中国的光与影 | 杜德维 | [下载](https://url89.ctfile.com/f/31084289-1357035868-bc3e37?p=8866) |\n| 雍正帝：中国的独裁君主 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866) |\n| 天国之痒 | 李洁非 | [下载](https://url89.ctfile.com/f/31084289-1357033174-45f7f0?p=8866) |\n| 中央帝国 | 乔治·N.赖特 | [下载](https://url89.ctfile.com/f/31084289-1357033150-8be846?p=8866) |\n| 垂帘听政 | 向斯 | [下载](https://url89.ctfile.com/f/31084289-1357030708-e6f8d1?p=8866) |\n| 宁波帮 | 王千马 | [下载](https://url89.ctfile.com/f/31084289-1357029250-02851b?p=8866) |\n| 年羹尧之死 | 郑小悠 | [下载](https://url89.ctfile.com/f/31084289-1357027813-3994d1?p=8866) |\n| 帝国的凛冬 | 冬雪心境 | [下载](https://url89.ctfile.com/f/31084289-1357023916-67917b?p=8866) |\n| 乾隆皇帝的荷包 | 赖惠敏 | [下载](https://url89.ctfile.com/f/31084289-1357023247-014af6?p=8866) |\n| 清朝开国史（上下卷） | 阎崇年 | [下载](https://url89.ctfile.com/f/31084289-1357008889-dcadfa?p=8866) |\n| 最后的中华帝国：大清 | 罗威廉 | [下载](https://url89.ctfile.com/f/31084289-1357008694-c9f404?p=8866) |\n| 洪业：清朝开国史 | 魏斐德 | [下载](https://url89.ctfile.com/f/31084289-1357008280-fe79e7?p=8866) |\n| 戊戌变法史 | 汤志钧 | [下载](https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866) |\n"
  },
  {
    "path": "md/清朝.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 清朝\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 盛世：康乾 | 侯杨方 | [下载](https://url89.ctfile.com/f/31084289-1357004629-21ceb7?p=8866) |\n| 这才是清朝套装（全8册） | 鹿鼎公子 | [下载](https://url89.ctfile.com/f/31084289-1357031809-c21e9d?p=8866) |\n| 刻画战勋 | 马雅贞 | [下载](https://url89.ctfile.com/f/31084289-1357020811-235335?p=8866) |\n| 大清商埠（共3卷） | 祝春亭/辛磊 | [下载](https://url89.ctfile.com/f/31084289-1357010002-cb156a?p=8866) |\n| 道光十九年：从禁烟到战争 | 沈渭滨 | [下载](https://url89.ctfile.com/f/31084289-1357008298-a00093?p=8866) |\n| 饥饿的盛世 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357008151-db2720?p=8866) |\n| 宫女谈往录 | 金易 | [下载](https://url89.ctfile.com/f/31084289-1357007347-b54fb9?p=8866) |\n| 大清的角落 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357007215-27e7d5?p=8866) |\n| 别笑，这是大清正史（套装共三册） | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357005739-4e4df0?p=8866) |\n| 乾隆十三年 | 高王凌 | [下载](https://url89.ctfile.com/f/31084289-1357005277-d6967f?p=8866) |\n"
  },
  {
    "path": "md/温情.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 温情\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人间快递1 | 漫漫漫画 | [下载](https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866) |\n| 一条狗的使命：只想陪在你身边 | 布鲁斯・卡梅隆 | [下载](https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866) |\n"
  },
  {
    "path": "md/温暖.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 温暖\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 你总说没事，但我知道你偷偷哭过很多次 | 一禅小和尚诞 | [下载](https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866) |\n| 赶路人 | 李小晓 | [下载](https://url89.ctfile.com/f/31084289-1357048240-d3013a?p=8866) |\n| 人间值得 | 中村恒子/奥田弘美 | [下载](https://url89.ctfile.com/f/31084289-1357044820-950b5c?p=8866) |\n| 情书 | 岩井俊二 | [下载](https://url89.ctfile.com/f/31084289-1357033849-0749ba?p=8866) |\n| 嘿，小家伙 | 温酒 | [下载](https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866) |\n| 四季，三餐，都随你 | 简猫 | [下载](https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866) |\n| 摆渡人3：无境之爱 | 克莱儿・麦克福尔 | [下载](https://url89.ctfile.com/f/31084289-1357032103-1db260?p=8866) |\n| 花园里的机器人 | 黛博拉・因斯托 | [下载](https://url89.ctfile.com/f/31084289-1357028026-01f454?p=8866) |\n| 慢慢来，反正也来不及 | 囧叔 | [下载](https://url89.ctfile.com/f/31084289-1357017091-63be9e?p=8866) |\n| 陪安娜穿过漫漫长夜 | 加瑞尔・萨维 | [下载](https://url89.ctfile.com/f/31084289-1357016572-4bd4c5?p=8866) |\n| 企鹅课 | 汤姆・米切尔 | [下载](https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866) |\n"
  },
  {
    "path": "md/游戏.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 游戏\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 英雄联盟：符文之地的故事 | 拳头游戏 | [下载](https://url89.ctfile.com/f/31084289-1375501936-2d8551?p=8866) |\n| 游戏化营销 | 胡华成 | [下载](https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866) |\n| 电竞生态 | 王萌/路江涌/李晓峰 | [下载](https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866) |\n| Play Anything | Ian Bogost | [下载](https://url89.ctfile.com/f/31084289-1357025239-8ebaa8?p=8866) |\n| 游戏改变世界 | 简・麦戈尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1357023787-eebab9?p=8866) |\n| 游戏化思维 | 凯文・韦巴赫/丹・亨特 | [下载](https://url89.ctfile.com/f/31084289-1357005214-59ca9f?p=8866) |\n"
  },
  {
    "path": "md/游记.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 游记\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 全民疯狂的欧洲 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1356991381-050fb3?p=8866) |\n| 沿坟墓而行 | 纳韦德・凯尔曼尼 | [下载](https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866) |\n| 徐霞客游记（全本全注全译） | 朱惠荣 | [下载](https://url89.ctfile.com/f/31084289-1356984961-6859f1?p=8866) |\n| 火车大巴扎 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357052536-571f79?p=8866) |\n| 大风向野 | 练明乔 | [下载](https://url89.ctfile.com/f/31084289-1357047823-81f4e6?p=8866) |\n| 中非湖区探险记Ⅰ | 理查德・F.伯顿 | [下载](https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866) |\n| 中非湖区探险记Ⅱ | 理查德・F.伯顿 | [下载](https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866) |\n| 占卜师的预言 | 蒂齐亚诺・泰尔扎尼 | [下载](https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866) |\n| 威尼斯是一条鱼 | 提齐安诺・斯卡帕 | [下载](https://url89.ctfile.com/f/31084289-1357045600-6baa7b?p=8866) |\n| 夜航西飞 | 柏瑞尔・马卡姆 | [下载](https://url89.ctfile.com/f/31084289-1357045540-d565b4?p=8866) |\n| 山旅书札 | 伊莎贝拉・博德 | [下载](https://url89.ctfile.com/f/31084289-1357045321-ed6a7a?p=8866) |\n| 说吧，叙利亚 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357045285-52b913?p=8866) |\n| 墨西哥湾千里徒步行 | 约翰・缪尔 | [下载](https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866) |\n| 前往阿姆河之乡 | 罗伯特・拜伦 | [下载](https://url89.ctfile.com/f/31084289-1357045165-8dec7d?p=8866) |\n| 日升之处 | A.W.金莱克 | [下载](https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866) |\n| 老巴塔哥尼亚快车 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357044976-6ef3d9?p=8866) |\n| 多瑙河之旅 | 克劳迪欧・马格里斯 | [下载](https://url89.ctfile.com/f/31084289-1357044784-b56102?p=8866) |\n| 察沃的食人魔 | J.H.帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866) |\n| 别列津纳河 | 西尔万・泰松 | [下载](https://url89.ctfile.com/f/31084289-1357044031-b9b9e2?p=8866) |\n| 通往印度次大陆 | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866) |\n| 26城记 | 蔡天新 | [下载](https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866) |\n| 太阳船上的孩子 | 雅丝米娜・米哈伊洛维奇 | [下载](https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866) |\n| 幽暗国度 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038568-842851?p=8866) |\n| 信徒的国度 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866) |\n| 边境·近境 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866) |\n| 远方的鼓声 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866) |\n| 客厅里的绅士 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026385-b08e93?p=8866) |\n| 咖啡苦不苦 | 陈丹燕 | [下载](https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866) |\n| 禹域鸿爪 | 内藤湖南 | [下载](https://url89.ctfile.com/f/31084289-1357021618-f78c8b?p=8866) |\n| River Town | 彼得・海斯勒 | [下载](https://url89.ctfile.com/f/31084289-1357021492-f2f9e2?p=8866) |\n| 自由与爱之地：入以色列记 | 云也退 | [下载](https://url89.ctfile.com/f/31084289-1357014499-251f20?p=8866) |\n| 背包十年 | 小鹏 | [下载](https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866) |\n| 非洲三万里 | 毕淑敏 | [下载](https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866) |\n"
  },
  {
    "path": "md/滚雪球.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 滚雪球\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 滚雪球：巴菲特和他的财富人生（套装共2册） | 艾丽斯・施罗德 | [下载](https://url89.ctfile.com/f/31084289-1357018714-bcdbf5?p=8866) |\n"
  },
  {
    "path": "md/演员.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 演员\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 表演者言 | 电影频道《今日影评》栏目组 | [下载](https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866) |\n"
  },
  {
    "path": "md/演讲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 演讲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 演讲技巧 | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1375512052-f9a19a?p=8866) |\n| 麦肯锡公众表达课 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866) |\n| 魏斯曼的演讲大师课3 | 杰瑞・魏斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866) |\n| TED说话的力量 | 阿卡什·P.卡里亚 | [下载](https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866) |\n| 谈判的艺术 | 于反 | [下载](https://url89.ctfile.com/f/31084289-1356986518-9ea72b?p=8866) |\n| 说服力：如何让沟通充满逻辑与技巧 | 白丽洁 | [下载](https://url89.ctfile.com/f/31084289-1356986359-ce2061?p=8866) |\n| 说服力：如何让沟通充满逻辑（全新升级版） | 白丽洁 | [下载](https://url89.ctfile.com/f/31084289-1356985729-c3f598?p=8866) |\n| 如何成为一名脱口秀老手 | 格雷格・迪安 | [下载](https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866) |\n| 魏斯曼的演讲大师课1：说的艺术 | 杰瑞・魏斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356985207-998a83?p=8866) |\n| 如何做一场精彩的演讲 | 琼・戴兹 | [下载](https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866) |\n| 全脑演讲 | 大卫祁 | [下载](https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866) |\n| 即兴演讲 | 朱迪思・汉弗莱 | [下载](https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866) |\n| 马云的说话之道（2019版） | 张笑恒 | [下载](https://url89.ctfile.com/f/31084289-1357049980-537e2f?p=8866) |\n| 精准表达：开口就能说重点 | 牛津 | [下载](https://url89.ctfile.com/f/31084289-1357026985-8d194b?p=8866) |\n| 主宰演讲台 | 比尔・胡戈特伯 | [下载](https://url89.ctfile.com/f/31084289-1357026454-f43984?p=8866) |\n| 手把手教你玩脱口秀 | 格雷格・迪安 | [下载](https://url89.ctfile.com/f/31084289-1357017172-eb3c87?p=8866) |\n| TED思想的力量系列（套装共11册） | 奇普・基德等 | [下载](https://url89.ctfile.com/f/31084289-1357012561-cc2ad1?p=8866) |\n| 白说 | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866) |\n| 演讲的力量 | 克里斯・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357006537-682cc0?p=8866) |\n"
  },
  {
    "path": "md/漫威.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 漫威\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 漫威大战DC | 里德・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866) |\n| 漫威之父斯坦·李 | 鲍勃・巴彻勒 | [下载](https://url89.ctfile.com/f/31084289-1357028266-25f260?p=8866) |\n"
  },
  {
    "path": "md/漫画.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 漫画\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 镖人10 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1375492399-b7dec5?p=8866) |\n| 镖人11 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1375492456-99847e?p=8866) |\n| 乌龙院大长篇之活宝传奇（第三辑） | 敖幼祥 | [下载](https://url89.ctfile.com/f/31084289-1375497247-46f412?p=8866) |\n| 乌龙院大长篇之活宝传奇（第二辑） | 敖幼祥 | [下载](https://url89.ctfile.com/f/31084289-1375495999-c078ba?p=8866) |\n| 乌龙院大长篇之活宝传奇（第一辑） | 敖幼祥 | [下载](https://url89.ctfile.com/f/31084289-1375494919-9c0725?p=8866) |\n| 阿拉蕾（第3部：卷13~卷18） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1375496446-00c897?p=8866) |\n| 阿拉蕾（第2部：卷7~卷12） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1375497853-e440f6?p=8866) |\n| 阿拉蕾（第1部：卷1~卷6） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1375497349-aa8a4e?p=8866) |\n| 悦读日本系列（套装7册） | 唐辛子等 | [下载](https://url89.ctfile.com/f/31084289-1375496755-ea5d84?p=8866) |\n| B.A.W（1-30话） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1375497433-119412?p=8866) |\n| 撒旦在线（1-30话） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1375497826-03ef14?p=8866) |\n| 夏目友人帐（第4部19-21卷） | 绿川幸 | [下载](https://url89.ctfile.com/f/31084289-1375497991-2462c0?p=8866) |\n| 夏目友人帐（第2部7-12卷） | 绿川幸 | [下载](https://url89.ctfile.com/f/31084289-1375498411-b22e00?p=8866) |\n| 夏目友人帐（第3部13-18卷） | 绿川幸 | [下载](https://url89.ctfile.com/f/31084289-1375499305-0ac318?p=8866) |\n| 夏目友人帐（第1部1-6卷） | 绿川幸 | [下载](https://url89.ctfile.com/f/31084289-1375498786-8715fd?p=8866) |\n| 半小时漫画必背古诗词 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375499623-bea742?p=8866) |\n| 抱住棒棒的自己 | 徐慢慢心理话 | [下载](https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866) |\n| 一只猫的存在主义思考 | 卡尔・史蒂文斯 | [下载](https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866) |\n| 你说的那个朋友是不是你自己 | 山羊卡罗 | [下载](https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866) |\n| 半小时漫画宇宙大爆炸 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866) |\n| 半小时漫画三国演义 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501411-8c4262?p=8866) |\n| 半小时漫画中国哲学史2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501417-ad432d?p=8866) |\n| 半小时漫画《论语》 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501885-a28305?p=8866) |\n| 高木直子系列（套装共4册） | 高木直子 | [下载](https://url89.ctfile.com/f/31084289-1375503232-de6e88?p=8866) |\n| 漫画百年党史·开天辟地 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375503298-2b5d77?p=8866) |\n| 漫画病菌、人类与历史 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375505926-c5bb26?p=8866) |\n| 深夜食堂（第4部：卷19~卷23） | 安倍夜郎 | [下载](https://url89.ctfile.com/f/31084289-1375507348-35ca31?p=8866) |\n| 深夜食堂（第1部：卷1~卷6） | 安倍夜郎 | [下载](https://url89.ctfile.com/f/31084289-1375508449-053311?p=8866) |\n| 饭太稀个人绘本画集合辑 | 饭太稀 | [下载](https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866) |\n| 深夜食堂（第2部：卷7~卷12） | 安倍夜郎 | [下载](https://url89.ctfile.com/f/31084289-1375508347-d4d29b?p=8866) |\n| 半小时漫画世界史2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375510054-83f742?p=8866) |\n| 100天后会死的鳄鱼君 | 菊池祐纪 | [下载](https://url89.ctfile.com/f/31084289-1375510312-e1ca94?p=8866) |\n| 满是空虚之物 | 阿伏伽德六 | [下载](https://url89.ctfile.com/f/31084289-1375511062-e94297?p=8866) |\n| 怪奇事物所 | 怪奇事物所所长 | [下载](https://url89.ctfile.com/f/31084289-1375511239-e8b5e8?p=8866) |\n| 鱼（全2册） | 伊藤润二 | [下载](https://url89.ctfile.com/f/31084289-1375512241-e9779d?p=8866) |\n| 北海怪兽 | 彭磊 | [下载](https://url89.ctfile.com/f/31084289-1375511941-7ee0fe?p=8866) |\n| 漫画讲透孙子兵法（全四册） | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1375512280-a5e501?p=8866) |\n| 新蜡笔小新合集（套装共8册） | 臼井仪人 | [下载](https://url89.ctfile.com/f/31084289-1375513225-1f3010?p=8866) |\n| 瑜老板三分钟京剧小灶（套装2册） | 瑜音社 | [下载](https://url89.ctfile.com/f/31084289-1375513381-1aaee4?p=8866) |\n| 聪明的老板不苛责摸鱼的人 | 哎呀我兔 | [下载](https://url89.ctfile.com/f/31084289-1375513525-565ebf?p=8866) |\n| 躺着赚钱的漫画基金书 | 三折人生 | [下载](https://url89.ctfile.com/f/31084289-1375513702-f21c11?p=8866) |\n| 皮笑肉也笑 | 典婆婆 | [下载](https://url89.ctfile.com/f/31084289-1357004533-f9dbd4?p=8866) |\n| 夜泉镇（第二册） | 仟绘动漫 | [下载](https://url89.ctfile.com/f/31084289-1357004728-5262a3?p=8866) |\n| 漫画心理学一看就懂 | 王絮 | [下载](https://url89.ctfile.com/f/31084289-1357003924-326534?p=8866) |\n| 夜泉镇（第一册） | 仟绘动漫 | [下载](https://url89.ctfile.com/f/31084289-1357003930-496305?p=8866) |\n| 王牌神棍 | 天翼爱动漫 | [下载](https://url89.ctfile.com/f/31084289-1357003471-a613aa?p=8866) |\n| 业余真探 | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1357003261-c38de1?p=8866) |\n| 理想国的陷落 | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1357003159-138cd0?p=8866) |\n| 绝望教室 | 泛次元文化 | [下载](https://url89.ctfile.com/f/31084289-1357002973-ed00e3?p=8866) |\n| 猎灵神医 | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1357003651-0fb919?p=8866) |\n| 龙族Ⅰ-Ⅲ（套装共32册） | 江南 | [下载](https://url89.ctfile.com/f/31084289-1357003237-72b827?p=8866) |\n| 子恺漫画全集 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357002385-67b3da?p=8866) |\n| 乌龙院四格漫画系列（套装12册） | 敖幼祥 | [下载](https://url89.ctfile.com/f/31084289-1357002832-48bf80?p=8866) |\n| 朱雀厅 | 仟绘动漫 | [下载](https://url89.ctfile.com/f/31084289-1357002280-200fc0?p=8866) |\n| 人类简史（知识漫画） | 尤瓦尔・赫拉利等 | [下载](https://url89.ctfile.com/f/31084289-1357001926-2ba1b6?p=8866) |\n| 诡探 | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1357002118-feedc2?p=8866) |\n| 一条草鱼 | 哈欠丸 | [下载](https://url89.ctfile.com/f/31084289-1357002037-f32c42?p=8866) |\n| 出马弟子 | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1357002763-fd9ae8?p=8866) |\n| 不灭修罗（共十册） | 冷面加糖 | [下载](https://url89.ctfile.com/f/31084289-1357001317-8fb92a?p=8866) |\n| 恶犬之牙 | 鱼骨互娱 | [下载](https://url89.ctfile.com/f/31084289-1357001476-984182?p=8866) |\n| 格斗赤炎 | 鱼骨互娱 | [下载](https://url89.ctfile.com/f/31084289-1357001272-e8978f?p=8866) |\n| 冲天玄英录 | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357001362-a5e2f1?p=8866) |\n| 英魂之刃 | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1357001335-40c4e0?p=8866) |\n| 白门五甲 | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1357001812-f1e868?p=8866) |\n| 白蛇囧传（1-11话） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357000390-96c1f6?p=8866) |\n| 年纪轻轻，就有猫了 | 卵山玉子 | [下载](https://url89.ctfile.com/f/31084289-1357000237-49e09f?p=8866) |\n| 寻找自我的世界 | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357000051-9ea345?p=8866) |\n| 量子17号：机甲战士（第1卷） | 阿桂 | [下载](https://url89.ctfile.com/f/31084289-1356999898-3d83f2?p=8866) |\n| 济公Q传（套装10册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1356999868-25095b?p=8866) |\n| 鬼来了（套装第1-2册） | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1356999427-ce44dc?p=8866) |\n| 济公传奇（套装9册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1356999598-b81231?p=8866) |\n| hi我的名字叫镰 | 天翼爱动漫 | [下载](https://url89.ctfile.com/f/31084289-1356999409-80bef5?p=8866) |\n| 不要总是谦卑地弯着腰 | 滨濑NORIKO | [下载](https://url89.ctfile.com/f/31084289-1356998998-32fffa?p=8866) |\n| 漫画经济学一看就懂 | 武敬敏/田萍 | [下载](https://url89.ctfile.com/f/31084289-1356998920-f86ba8?p=8866) |\n| 漫画生活哲学一看就懂 | 李静 | [下载](https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866) |\n| 半小时漫画中国史（经济篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866) |\n| 从前有座灵剑山（第1册至第12册） | 鲜漫动漫 | [下载](https://url89.ctfile.com/f/31084289-1356999364-d58cb9?p=8866) |\n| 从前有座灵剑山（第13册至第24册） | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1356998770-9dec22?p=8866) |\n| 超有料漫画中国史 | 韩明辉 | [下载](https://url89.ctfile.com/f/31084289-1356997441-cc9c73?p=8866) |\n| 哆啦A梦珍藏版（第七部：卷37-卷42） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356998470-967b6a?p=8866) |\n| 超有料漫画中国史2 | 韩明辉 | [下载](https://url89.ctfile.com/f/31084289-1356997261-6d28e2?p=8866) |\n| 哆啦A梦珍藏版（第八部：卷43-卷45） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356997591-eabcd8?p=8866) |\n| 日用品简史 | 安迪・沃纳 | [下载](https://url89.ctfile.com/f/31084289-1356997060-cffd2a?p=8866) |\n| 超有料漫画中国史3 | 韩明辉 | [下载](https://url89.ctfile.com/f/31084289-1356996865-28d03d?p=8866) |\n| 藏海花漫画套装（全六册） | 南派三叔 | [下载](https://url89.ctfile.com/f/31084289-1356997207-658fc2?p=8866) |\n| 哆啦A梦珍藏版（第五部：卷25-卷30） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356997618-932079?p=8866) |\n| 哆啦A梦珍藏版（第六部：卷31-卷36） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356997519-73ae65?p=8866) |\n| 哆啦A梦珍藏版（第三部：卷13-卷18） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356997318-46ced3?p=8866) |\n| 哆啦A梦珍藏版（第四部：卷19-卷24） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356996397-964930?p=8866) |\n| 哆啦A梦珍藏版（第一部：卷1-卷6） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866) |\n| 哆啦A梦珍藏版（第二部：卷7-卷12） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356996145-6743c1?p=8866) |\n| 半小时漫画中国哲学史 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356995419-6a1b01?p=8866) |\n| 半小时漫画中国史5 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356995404-e9c71c?p=8866) |\n| 半小时漫画预防常见病 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866) |\n| 虫生（套装第1-6册） | 腾讯动漫 | [下载](https://url89.ctfile.com/f/31084289-1356995233-c2fad6?p=8866) |\n| 鬼灭之刃（第三部：卷16-卷23） | 吾峠呼世晴 | [下载](https://url89.ctfile.com/f/31084289-1356995521-6d41fc?p=8866) |\n| 爆笑棒槌（套装5册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1356994765-fa2057?p=8866) |\n| BEASTARS 动物狂想曲（第2部：卷9~卷15） | 板垣巴留 | [下载](https://url89.ctfile.com/f/31084289-1356994582-4fd0a8?p=8866) |\n| 鬼灭之刃（第一部：卷1-卷7） | 吾峠呼世晴 | [下载](https://url89.ctfile.com/f/31084289-1356995077-467311?p=8866) |\n| 鬼灭之刃（第二部：卷8-卷15） | 吾峠呼世晴 | [下载](https://url89.ctfile.com/f/31084289-1356995050-1a5413?p=8866) |\n| BEASTARS 动物狂想曲（第1部：卷1~卷8） | 板垣巴留 | [下载](https://url89.ctfile.com/f/31084289-1356993796-d76c26?p=8866) |\n| 半小时漫画宋词2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356991639-6b02b8?p=8866) |\n| 千年维新 | 铲史官 | [下载](https://url89.ctfile.com/f/31084289-1356991513-1cd046?p=8866) |\n| 人人羡慕的反派角色（套装2册） | 雨浮凉 | [下载](https://url89.ctfile.com/f/31084289-1356991018-d7abcf?p=8866) |\n| 从早“茫”到晚 | 西沃恩・加拉格尔 | [下载](https://url89.ctfile.com/f/31084289-1356990868-fddced?p=8866) |\n| 赛雷三分钟漫画中国史3 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1356990268-444c1d?p=8866) |\n| 上帝的骰子 | 罗金海 | [下载](https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866) |\n| 你总说没事，但我知道你偷偷哭过很多次 | 一禅小和尚诞 | [下载](https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866) |\n| 守望先锋（第一卷） | 美国暴雪娱乐 | [下载](https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866) |\n| 赛雷三分钟漫画中国史2 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1356988360-19f28b?p=8866) |\n| X的预言 | 宁城荒 | [下载](https://url89.ctfile.com/f/31084289-1356987895-873d28?p=8866) |\n| 半小时漫画科学史 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866) |\n| 半小时漫画宋词 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356985627-927ae6?p=8866) |\n| 那一年+师傅 | 左手韩 | [下载](https://url89.ctfile.com/f/31084289-1356985078-3f51ab?p=8866) |\n| 无名之城 | H.P.洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1356985117-a407a9?p=8866) |\n| 名侦探柯南（第13部：卷96~卷98） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1356985435-f1700a?p=8866) |\n| 赛雷三分钟漫画中国史 | 赛雷三分钟 | [下载](https://url89.ctfile.com/f/31084289-1356985012-e16de7?p=8866) |\n| 赛雷三分钟漫画世界史 | 赛雷三分钟 | [下载](https://url89.ctfile.com/f/31084289-1356984865-79f921?p=8866) |\n| 圣斗士星矢（第4部22-28卷） | 车田正美 | [下载](https://url89.ctfile.com/f/31084289-1356984898-007385?p=8866) |\n| 乱马（第5部：卷33-卷38） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1356983725-235f1a?p=8866) |\n| 圣斗士星矢（第1部1-7卷） | 车田正美 | [下载](https://url89.ctfile.com/f/31084289-1356983902-35ebe0?p=8866) |\n| 圣斗士星矢（第2部8-14卷） | 车田正美 | [下载](https://url89.ctfile.com/f/31084289-1356983941-1ab596?p=8866) |\n| 圣斗士星矢（第3部15-21卷） | 车田正美 | [下载](https://url89.ctfile.com/f/31084289-1356983569-96e619?p=8866) |\n| 乱马（第2部：卷9-卷16） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1356983290-57f378?p=8866) |\n| 乱马（第3部：卷17-卷24） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1356983281-556f8a?p=8866) |\n| 乱马（第4部：卷25-卷32） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1356983263-15b46b?p=8866) |\n| 名侦探柯南（第11部：卷81~卷88） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054771-56c4aa?p=8866) |\n| 异端：进击的哲学现场 | 史蒂文・纳德勒 | [下载](https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866) |\n| 名侦探柯南（第12部：卷89~卷95） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054726-43235d?p=8866) |\n| 乱马（第1部：卷1-卷8） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1357054669-60e509?p=8866) |\n| 半小时漫画经济学（金融危机完结篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357054291-a6d1dc?p=8866) |\n| 名侦探柯南（第8部：卷57~卷64） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054645-c4772c?p=8866) |\n| 名侦探柯南（第9部：卷65~卷72） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054474-d26884?p=8866) |\n| 名侦探柯南（第10部：卷73~卷80） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054366-0dccb2?p=8866) |\n| 名侦探柯南（第5部：卷33~卷40） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054279-6954ac?p=8866) |\n| 名侦探柯南（第6部：卷41~卷48） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054189-c343d7?p=8866) |\n| 名侦探柯南（第7部：卷49~卷56） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053856-fdbd3f?p=8866) |\n| 名侦探柯南（第1部：卷1~卷8） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053607-cae7ea?p=8866) |\n| 名侦探柯南（第2部：卷9~卷16） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053487-daf28b?p=8866) |\n| 名侦探柯南（第3部：卷17~卷24） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053508-e33a08?p=8866) |\n| 名侦探柯南（第4部：卷25~卷32） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053445-22ed13?p=8866) |\n| 伪装者：巴黎往事 | 蚕蚕 | [下载](https://url89.ctfile.com/f/31084289-1357053010-bfbea0?p=8866) |\n| 漫威超级英雄双语故事集（套装共10本） | 美国漫威公司 | [下载](https://url89.ctfile.com/f/31084289-1357053103-e6f1dc?p=8866) |\n| 人间快递3 | 漫漫漫画 | [下载](https://url89.ctfile.com/f/31084289-1357052419-e24215?p=8866) |\n| 一见你就好心情 | 莉兹・克里莫 | [下载](https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866) |\n| 国家是怎样炼成的3 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357052263-b65347?p=8866) |\n| 人间快递1 | 漫漫漫画 | [下载](https://url89.ctfile.com/f/31084289-1357052170-fc0bfa?p=8866) |\n| 人间快递2 | 漫漫漫画 | [下载](https://url89.ctfile.com/f/31084289-1357052521-e6c2e4?p=8866) |\n| 国家是怎样炼成的 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866) |\n| 企鹅都市生存指南（套装全9册） | 贾森・黑兹利/乔尔・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866) |\n| 国家是怎样炼成的2 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866) |\n| 漫画算法 | 魏梦舒 | [下载](https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说3） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357051225-10a03f?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说4） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357050883-b177f3?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说1） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357050733-ce5a62?p=8866) |\n| 冰与火之歌：权力的游戏（图像小说2） | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357050352-c86d54?p=8866) |\n| 拜见女皇陛下（套装10册） | ZCloud | [下载](https://url89.ctfile.com/f/31084289-1357050091-232091?p=8866) |\n| 才不要让你知道 | 方小孬 | [下载](https://url89.ctfile.com/f/31084289-1357049062-ca8818?p=8866) |\n| 三分钟漫画汽车史 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866) |\n| 镖人8 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357048456-50027e?p=8866) |\n| 镖人9 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357048429-dc3f88?p=8866) |\n| 火影忍者（第10部：卷65~卷72） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357049263-5b61c1?p=8866) |\n| 火影忍者（外传：宇智波莎罗娜） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357048198-844218?p=8866) |\n| 白鹤三绝 | 二斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357048234-217c17?p=8866) |\n| 打开哲学家的正确方式 | 畠山创 | [下载](https://url89.ctfile.com/f/31084289-1357047841-67f2ce?p=8866) |\n| 火影忍者（第8部：卷49~卷56） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357048327-ad09a2?p=8866) |\n| 火影忍者（第9部：卷57~卷64） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357048300-dcb294?p=8866) |\n| 火影忍者（第5部：卷28~卷34） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047895-7c9166?p=8866) |\n| 火影忍者（第6部：卷35~卷41） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047679-80d7b1?p=8866) |\n| 火影忍者（第7部：卷42~卷48） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047649-541ed0?p=8866) |\n| 火影忍者（第3部：卷15~卷21） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047475-b30d93?p=8866) |\n| 火影忍者（第4部：卷22~卷27） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047292-9a2d01?p=8866) |\n| 父与子（果麦经典） | 埃·奥·卜劳恩 | [下载](https://url89.ctfile.com/f/31084289-1357046836-36864d?p=8866) |\n| 火影忍者（第1部：卷1~卷7） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866) |\n| 火影忍者（第2部：卷8~卷14） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047043-883e2e?p=8866) |\n| 半小时漫画中国史（中国传统节日） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357044796-82aa09?p=8866) |\n| 半小时漫画经济学（金融危机篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357043179-7c4aeb?p=8866) |\n| 食帖11：美食漫画万岁 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866) |\n| 半小时漫画唐诗2 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357040122-5a5f09?p=8866) |\n| 罗小黑战记1 | MTJJ | [下载](https://url89.ctfile.com/f/31084289-1357039825-7c8219?p=8866) |\n| 半小时漫画中国史4 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357038724-389581?p=8866) |\n| 半小时漫画经济学（生活常识篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866) |\n| 非平面 | 尼克・索萨尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子4 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866) |\n| 三国演义漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866) |\n| 水浒传漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866) |\n| 红楼梦漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866) |\n| 西游记漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866) |\n| 半小时漫画理财课 | 八宝 | [下载](https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866) |\n| 镖人7 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357032982-676f27?p=8866) |\n| 黄同学漫画中国史 | 那个黄同学 | [下载](https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866) |\n| 黄同学漫画中国史2 | 那个黄同学 | [下载](https://url89.ctfile.com/f/31084289-1357032661-abddf5?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子3 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357032709-0558a6?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子2 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357032409-a7c4f5?p=8866) |\n| 今天也吸收了猫能量 | 卵山玉子 | [下载](https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866) |\n| 父与子全集（作家榜经典文库） | 埃・奥・卜劳恩 | [下载](https://url89.ctfile.com/f/31084289-1357031770-c31e11?p=8866) |\n| 龙珠（36-42卷） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1357032202-c68188?p=8866) |\n| 龙珠（22-28卷） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1357031968-91db23?p=8866) |\n| 龙珠（29-35卷） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1357031650-4dcd48?p=8866) |\n| 龙珠（15-21卷） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1357031296-2082ae?p=8866) |\n| 龙珠（8-14卷） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1357031185-361551?p=8866) |\n| 龙珠（1-7卷） | 鸟山明 | [下载](https://url89.ctfile.com/f/31084289-1357031014-763232?p=8866) |\n| 如果能重来，我想做熊孩 | 左手韩 | [下载](https://url89.ctfile.com/f/31084289-1357030297-38302e?p=8866) |\n| 半小时漫画唐诗 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866) |\n| 镖人6 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357029298-3e03c1?p=8866) |\n| 知日15：太喜欢漫画了 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025446-21f6d8?p=8866) |\n| 镖人5 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357025581-ba94a5?p=8866) |\n| 观山海 | 杉泽/梁超 | [下载](https://url89.ctfile.com/f/31084289-1357024672-aac4e1?p=8866) |\n| 回答不了 | 匡扶 | [下载](https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866) |\n| 阿加莎·克里斯蒂的真实人生 | 安娜・马丁内蒂等 | [下载](https://url89.ctfile.com/f/31084289-1357024306-ad80e4?p=8866) |\n| 镖人4 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357024066-18ec80?p=8866) |\n| 镖人3 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357022377-a26652?p=8866) |\n| 芬兰人的噩梦 | 卡罗利娜・科尔霍宁 | [下载](https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866) |\n| 半小时漫画中国史3 | 二混子 | [下载](https://url89.ctfile.com/f/31084289-1357021012-b2a5b1?p=8866) |\n| 镖人2 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357020184-ca791a?p=8866) |\n| 镖人 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357020004-6236a2?p=8866) |\n| 半小时漫画世界史 | 二混子 | [下载](https://url89.ctfile.com/f/31084289-1357019335-523960?p=8866) |\n| 睡不着：Tango一日一画 | Tango | [下载](https://url89.ctfile.com/f/31084289-1357017952-e205a1?p=8866) |\n| 我很好啊，你怎么样 | 莎拉・安徒生 | [下载](https://url89.ctfile.com/f/31084289-1357017538-a3c7eb?p=8866) |\n| 绝非普通人系列（套装共6册） | 弗雷德里克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357015228-fba95a?p=8866) |\n| 尾文字鱼 | 伍肆 | [下载](https://url89.ctfile.com/f/31084289-1357013374-cb4cf7?p=8866) |\n| Hyperbole and a Half | Allie Brosh | [下载](https://url89.ctfile.com/f/31084289-1357011097-a5f8ed?p=8866) |\n| 你今天真好看 | 莉兹・克里莫 | [下载](https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866) |\n| 活着本来单纯：丰子恺散文漫画精品集 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357009222-9b0eaa?p=8866) |\n| 丰子恺漫画精品集（修订版） | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866) |\n| 我可以咬一口吗？ | 莉兹・克里莫 | [下载](https://url89.ctfile.com/f/31084289-1357006363-81268e?p=8866) |\n"
  },
  {
    "path": "md/潜水.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 潜水\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 深海：探索寂静的未知 | 詹姆斯・内斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866) |\n"
  },
  {
    "path": "md/潜规则.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 潜规则\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 潜规则：中国历史中的真实游戏 | 吴思 | [下载](https://url89.ctfile.com/f/31084289-1357006486-e0c136?p=8866) |\n"
  },
  {
    "path": "md/澳大利亚.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 澳大利亚\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 澳大利亚史 | 欧内斯特・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1356996043-23ee0f?p=8866) |\n| 全民发呆的澳洲 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357044325-61f61d?p=8866) |\n"
  },
  {
    "path": "md/澳门.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 澳门\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 蝶变：澳门博彩业田野叙事 | 刘昭瑞/霍志钊 | [下载](https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866) |\n| 澳门往事之孤注一掷 | 左四右五 | [下载](https://url89.ctfile.com/f/31084289-1357023019-0e273f?p=8866) |\n| 澳门史1557-1999 | 杰弗里・冈恩 | [下载](https://url89.ctfile.com/f/31084289-1357019521-94c448?p=8866) |\n"
  },
  {
    "path": "md/激励.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 激励\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 策略：如何在复杂的世界里成为高手 | 江潮 | [下载](https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866) |\n| 第三道门 | 亚历克斯・班纳言 | [下载](https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866) |\n| 不懂员工激励，如何做管理 | 肖祥银 | [下载](https://url89.ctfile.com/f/31084289-1357030405-968764?p=8866) |\n| 超级激励者 | 西蒙・斯涅克 | [下载](https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866) |\n"
  },
  {
    "path": "md/火星.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 火星\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 关于火星的一切 | 李德范 | [下载](https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866) |\n| 火星救援 | 安迪·威尔 | [下载](https://url89.ctfile.com/f/31084289-1357006720-999daf?p=8866) |\n"
  },
  {
    "path": "md/灵修.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 灵修\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 与神对话（全五卷） | 尼尔・唐纳德・沃尔什 | [下载](https://url89.ctfile.com/f/31084289-1357053514-2847d2?p=8866) |\n| 唤醒创作力 | 朱莉娅・卡梅伦 | [下载](https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866) |\n| 恶人传 | 约翰・班扬 | [下载](https://url89.ctfile.com/f/31084289-1357037737-3e74c9?p=8866) |\n| 深夜加油站遇见苏格拉底 | 丹・米尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357033390-4cc049?p=8866) |\n| 无量之网 | 格里格．布莱登 | [下载](https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866) |\n| 意识光谱 | 肯・威尔伯 | [下载](https://url89.ctfile.com/f/31084289-1357024660-2aca25?p=8866) |\n"
  },
  {
    "path": "md/灵异.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 灵异\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 怪谈：远野物语 | 柳田国男 | [下载](https://url89.ctfile.com/f/31084289-1356994702-793d65?p=8866) |\n| 全怪谈：扶桑鬼话（套装共6册） | 小泉八云等 | [下载](https://url89.ctfile.com/f/31084289-1357050130-bed007?p=8866) |\n| 半妖司藤 | 尾鱼 | [下载](https://url89.ctfile.com/f/31084289-1357016350-8e1316?p=8866) |\n| 民调局异闻录1：苗乡巫祖 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006627-77614f?p=8866) |\n| 民调局异闻录2：清河鬼戏 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006624-d57c2b?p=8866) |\n| 民调局异闻录3：血海鬼船 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006621-9caf12?p=8866) |\n| 民调局异闻录4：亡魂列车 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006618-334515?p=8866) |\n| 民调局异闻录5：赌城妖灵 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006615-c3e5c9?p=8866) |\n| 民调局异闻录6：无边冥界 | 耳东水寿 | [下载](https://url89.ctfile.com/f/31084289-1357006612-8ac654?p=8866) |\n| 异域密码大全集（套装共四册） | 羊行屮 | [下载](https://url89.ctfile.com/f/31084289-1357006030-96304a?p=8866) |\n| 传古奇术（套装共四册） | 未六羊 | [下载](https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866) |\n"
  },
  {
    "path": "md/灾难.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 灾难\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 切尔诺贝利的午夜 | 亚当・希金博特姆 | [下载](https://url89.ctfile.com/f/31084289-1375512130-738686?p=8866) |\n| 绝秦书：民国十八年饥馑 | 张浩文 | [下载](https://url89.ctfile.com/f/31084289-1357009609-b22205?p=8866) |\n| 致命接触：全球大型传染病探秘之旅 | 大卫·奎曼  | [下载](https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866) |\n"
  },
  {
    "path": "md/烤箱.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 烤箱\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 食帖18：真的，烤箱什么都能做 | 林江编者 | [下载](https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866) |\n"
  },
  {
    "path": "md/烧脑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 烧脑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 烧烤怪谈 | 蔡必贵 | [下载](https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866) |\n| 本书书名无法描述本书内容 | 埃里克・卡普兰 | [下载](https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866) |\n| 猎鲨游戏之十重人格女孩 | 王健霖 | [下载](https://url89.ctfile.com/f/31084289-1357007257-f053ee?p=8866) |\n"
  },
  {
    "path": "md/烹饪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 烹饪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 肉料理原来是这么回事儿 | 亚瑟・勒凯恩 | [下载](https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866) |\n| 厨艺的常识 | 迈克尔・鲁尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866) |\n| 食帖15：便当灵感集 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866) |\n"
  },
  {
    "path": "md/焦虑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 焦虑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 焦虑你好 | 安珀・雷 | [下载](https://url89.ctfile.com/f/31084289-1357001458-328670?p=8866) |\n| 零压人生 | 米修・斯托罗尼 | [下载](https://url89.ctfile.com/f/31084289-1357051774-c1d5fd?p=8866) |\n| 好的焦虑 | 斯科特・施托塞尔 | [下载](https://url89.ctfile.com/f/31084289-1357049596-802628?p=8866) |\n| 焦虑又怎样 | 弗兰齐丝卡・赛柏特 | [下载](https://url89.ctfile.com/f/31084289-1357044493-3306e7?p=8866) |\n| 焦虑心理学 | 董心洁 | [下载](https://url89.ctfile.com/f/31084289-1357035310-d689df?p=8866) |\n| 焦虑星球笔记 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357035019-621de5?p=8866) |\n| 焦虑心理学：别让美好的生活被焦虑毁了 | 陈东城 | [下载](https://url89.ctfile.com/f/31084289-1357030768-ce633e?p=8866) |\n| 心理界限 | 杨嘉玲 | [下载](https://url89.ctfile.com/f/31084289-1357030759-03d648?p=8866) |\n| 为什么我们总是在逃避 | 约瑟夫・布尔戈 | [下载](https://url89.ctfile.com/f/31084289-1357028359-3ffd8c?p=8866) |\n| 焦虑急救 | 贝芙・艾斯贝特 | [下载](https://url89.ctfile.com/f/31084289-1357028233-5b176f?p=8866) |\n| 内在成长 | 塔玛・琼斯基 | [下载](https://url89.ctfile.com/f/31084289-1357026865-6da366?p=8866) |\n"
  },
  {
    "path": "md/焦虑症.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 焦虑症\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 夜脑：在睡眠中自动学习的秘密 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866) |\n"
  },
  {
    "path": "md/爬虫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 爬虫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 精通Python爬虫框架Scrapy | 迪米特里奥斯 考奇斯-劳卡斯 | [下载](https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866) |\n| 用Python写网络爬虫（第2版） | Katharine Jarmul | [下载](https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866) |\n| 精通Scrapy网络爬虫 | 刘硕 | [下载](https://url89.ctfile.com/f/31084289-1357019203-cea982?p=8866) |\n| Python爬虫开发与项目实战 | 范传辉 | [下载](https://url89.ctfile.com/f/31084289-1357018354-f08e57?p=8866) |\n| Python网络数据采集 | Ryan Mitchell | [下载](https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866) |\n"
  },
  {
    "path": "md/爱尔兰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 爱尔兰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 第三个警察 | 弗兰・奥布莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357046809-668e12?p=8866) |\n| 一个青年艺术家的画像（读客经典） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357024966-4ddb18?p=8866) |\n| 都柏林人 | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357020115-886df2?p=8866) |\n| 尤利西斯 | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357013971-811c23?p=8866) |\n"
  },
  {
    "path": "md/爱情.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 爱情\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 李银河谈亲密关系 | 李银河 | [下载](https://url89.ctfile.com/f/31084289-1375500598-6535b1?p=8866) |\n| 木马湖 | 宋老邪 | [下载](https://url89.ctfile.com/f/31084289-1357002121-ac27cf?p=8866) |\n| 爱情的逻辑 | 蔡垒磊 | [下载](https://url89.ctfile.com/f/31084289-1357001287-7558eb?p=8866) |\n| 爱是什么 | 芭芭拉・弗雷德里克森 | [下载](https://url89.ctfile.com/f/31084289-1356999475-3aed0e?p=8866) |\n| 当爱变成了情感操纵 | 佐治·K.西蒙 | [下载](https://url89.ctfile.com/f/31084289-1356995245-aa31a6?p=8866) |\n| 亚当的人生歌单 | 格雷姆・辛浦生 | [下载](https://url89.ctfile.com/f/31084289-1356990436-70e241?p=8866) |\n| 欲望都市 | 坎迪斯・布什奈尔 | [下载](https://url89.ctfile.com/f/31084289-1356990379-bb75be?p=8866) |\n| 爱情就是堆积如山的笔记 | 苏美 | [下载](https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866) |\n| 挽回爱情33堂课 | 穆木 | [下载](https://url89.ctfile.com/f/31084289-1356985810-12567b?p=8866) |\n| 我们失去的光 | 吉尔・桑托波罗 | [下载](https://url89.ctfile.com/f/31084289-1356985711-f7b9ee?p=8866) |\n| 怦然心动（再版） | 文德琳・范・德拉安南 | [下载](https://url89.ctfile.com/f/31084289-1356985642-272a86?p=8866) |\n| 尉官正年轻 | 刘静 | [下载](https://url89.ctfile.com/f/31084289-1356985630-32bdb9?p=8866) |\n| 怦然心动（中英双语典藏版） | 文德琳・范・德拉安南 | [下载](https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866) |\n| 平如美棠：我俩的故事 | 饶平如 | [下载](https://url89.ctfile.com/f/31084289-1356982525-44a988?p=8866) |\n| 性盲症患者的爱情 | 张天翼 | [下载](https://url89.ctfile.com/f/31084289-1357053070-b8c727?p=8866) |\n| 爱情和其他魔鬼 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357051126-9665e7?p=8866) |\n| 景恒街 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357051015-aa2384?p=8866) |\n| 一个人的巴黎 | 乔乔・莫伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357050619-04e97f?p=8866) |\n| 第84封情书 | 骆淑景 | [下载](https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866) |\n| 返朴 | 北野武 | [下载](https://url89.ctfile.com/f/31084289-1357046800-b689fb?p=8866) |\n| 倾城之恋（2019版） | 张爱玲 | [下载](https://url89.ctfile.com/f/31084289-1357045720-2b6e2f?p=8866) |\n| 简·爱（果麦经典） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357045654-27e62a?p=8866) |\n| 剧演的终章 | 平野启一郎 | [下载](https://url89.ctfile.com/f/31084289-1357045306-447f37?p=8866) |\n| 开往伊斯坦布尔的最后列车 | 艾雪・库林 | [下载](https://url89.ctfile.com/f/31084289-1357043023-4cbbe6?p=8866) |\n| 从你的全世界路过（2019全新修订） | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1357040293-137a08?p=8866) |\n| 李银河说爱情 | 李银河 | [下载](https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866) |\n| 最初之前 | 张皓宸 | [下载](https://url89.ctfile.com/f/31084289-1357036237-0122de?p=8866) |\n| 仲夏夜之梦（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866) |\n| 革命时期的爱情 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035277-f2f141?p=8866) |\n| 既生魄 | 张广天 | [下载](https://url89.ctfile.com/f/31084289-1357034497-a955e3?p=8866) |\n| 飘（企鹅经典） | 玛格丽特・米切尔 | [下载](https://url89.ctfile.com/f/31084289-1357033714-39755f?p=8866) |\n| 甜月亮 | 陶立夏 | [下载](https://url89.ctfile.com/f/31084289-1357033636-81f339?p=8866) |\n| 分手信 | 尼古拉斯・斯帕克思 | [下载](https://url89.ctfile.com/f/31084289-1357032835-a16896?p=8866) |\n| The Hating Game | Sally Thorne | [下载](链接未找到) |\n| 十二年，故人戏（全2册） | 墨宝非宝 | [下载](https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866) |\n| 与你重逢 | 马克・李维 | [下载](https://url89.ctfile.com/f/31084289-1357032469-49b649?p=8866) |\n| 二十首情诗和一支绝望的歌 | 巴勃罗・聂鲁达 | [下载](https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866) |\n| 悲伤逆流成河 | 郭敬明 | [下载](https://url89.ctfile.com/f/31084289-1357032358-7743cd?p=8866) |\n| 爱你就像爱生命 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357031905-193da3?p=8866) |\n| 黎明之街 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357031164-4316c5?p=8866) |\n| 糟糠之妻 | 未夕 | [下载](https://url89.ctfile.com/f/31084289-1357029601-d8ddb2?p=8866) |\n| 好的爱情 | 陈果 | [下载](https://url89.ctfile.com/f/31084289-1357027975-a6a097?p=8866) |\n| 她的小梨窝 | 唧唧的猫 | [下载](链接未找到) |\n| 青青陌上桑 | 陆观澜 | [下载](https://url89.ctfile.com/f/31084289-1357027747-d1669b?p=8866) |\n| 伪装成独白的爱情 | 马洛伊・山多尔 | [下载](https://url89.ctfile.com/f/31084289-1357027723-339ebc?p=8866) |\n| 良言写意（珍藏纪念版） | 木浮生 | [下载](https://url89.ctfile.com/f/31084289-1357027585-8dcbed?p=8866) |\n| 东宫 | 匪我思存 | [下载](https://url89.ctfile.com/f/31084289-1357027138-57ad43?p=8866) |\n| 琥珀恋人 | 茶韵悠悠 | [下载](https://url89.ctfile.com/f/31084289-1357025029-910f40?p=8866) |\n| 街角的奇迹 | 肯尼迪・欧戴德/杰茜卡・波斯纳 | [下载](https://url89.ctfile.com/f/31084289-1357024135-a86d86?p=8866) |\n| 无比美妙的痛苦 | 约翰・格林 | [下载](https://url89.ctfile.com/f/31084289-1357023421-afac0a?p=8866) |\n| 我的房东叫别扭 | 宝卿 | [下载](https://url89.ctfile.com/f/31084289-1357023103-0d5a9b?p=8866) |\n| 为了你，我愿意热爱整个世界 | 唐家三少  | [下载](https://url89.ctfile.com/f/31084289-1357023094-78fa48?p=8866) |\n| 少年的你，如此美丽 | 玖月晞 | [下载](https://url89.ctfile.com/f/31084289-1357022845-17524c?p=8866) |\n| 我就要你好好的 | 乔乔・莫伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357022401-24700e?p=8866) |\n| 幸福的最小行动 | 刘轩 | [下载](https://url89.ctfile.com/f/31084289-1357022134-f272bd?p=8866) |\n| 琥珀·恋爱的犀牛 | 廖一梅 | [下载](https://url89.ctfile.com/f/31084289-1357021084-25b99f?p=8866) |\n| 爱的自然史 | 戴安娜・阿克曼 | [下载](https://url89.ctfile.com/f/31084289-1357021021-362752?p=8866) |\n| 那个不为人知的故事 | Twentine | [下载](https://url89.ctfile.com/f/31084289-1357020829-f14985?p=8866) |\n| 南极绝恋 | 吴有音 | [下载](https://url89.ctfile.com/f/31084289-1357019218-58d2f5?p=8866) |\n| 南方有乔木（纪念版） | 小狐濡尾 | [下载](https://url89.ctfile.com/f/31084289-1357018402-84c931?p=8866) |\n| 翻译官（影视纪念珍藏版） | 缪娟 | [下载](https://url89.ctfile.com/f/31084289-1357017772-ab292f?p=8866) |\n| 玛格丽特小镇 | 加布瑞埃拉・泽文  | [下载](https://url89.ctfile.com/f/31084289-1357017520-70035d?p=8866) |\n| 逆光而行 | 沈南乔 | [下载](https://url89.ctfile.com/f/31084289-1357017262-60c28b?p=8866) |\n| 爱上浪漫 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016809-5e062f?p=8866) |\n| 时间旅行者的妻子 | 奥德丽・尼芬格 | [下载](https://url89.ctfile.com/f/31084289-1357013359-d1a740?p=8866) |\n| 爱的进化论 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866) |\n| 霍乱时期的爱情 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357010596-537f33?p=8866) |\n| 我的前半生 | 亦舒 | [下载](https://url89.ctfile.com/f/31084289-1357009927-9bdb0f?p=8866) |\n| 分心也有好婚姻 | 爱德华・哈洛韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357009468-0fe3cf?p=8866) |\n| 一半是火焰，一半是海水 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357009294-b318d0?p=8866) |\n| 嘉莉妹妹 | 西奥多・德莱塞 | [下载](https://url89.ctfile.com/f/31084289-1357008712-177f57?p=8866) |\n| 告别天堂 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357008511-0969ee?p=8866) |\n| 了不起的盖茨比 | 斯科特・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357007428-711e86?p=8866) |\n| 失乐园 | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1357007320-69bcb7?p=8866) |\n| 雾中回忆 | 凯特・莫顿 | [下载](https://url89.ctfile.com/f/31084289-1357007173-528665?p=8866) |\n| 北海道物语 | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1357007113-1efc77?p=8866) |\n| 消失的爱人 | 吉莉安・弗琳 | [下载](https://url89.ctfile.com/f/31084289-1357006969-e58bb7?p=8866) |\n| 荆棘鸟（修订版） | 考琳·麦卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357006825-1516bb?p=8866) |\n"
  },
  {
    "path": "md/爱迪生.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 爱迪生\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 爱迪生：创新之源与商业成就的秘密 | 里昂纳多・迪格拉夫 | [下载](https://url89.ctfile.com/f/31084289-1357028344-204c61?p=8866) |\n"
  },
  {
    "path": "md/爸爸.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 爸爸\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 成就好爸爸：男人一生最重要的工作 | 格雷戈里・史雷顿 | [下载](https://url89.ctfile.com/f/31084289-1357017655-919009?p=8866) |\n"
  },
  {
    "path": "md/牛津.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 牛津\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 牛津通识读本百本纪念套装（共100册） | 查尔斯・福斯特等 | [下载](https://url89.ctfile.com/f/31084289-1375506448-03adea?p=8866) |\n| 牛津通识读本精选集（第二辑共42册） | 丹尼尔·M.海布伦等 | [下载](https://url89.ctfile.com/f/31084289-1357004224-95511f?p=8866) |\n| 牛津古罗马史 | 约翰・博德曼 | [下载](https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866) |\n| 牛津国际关系手册 | 罗伯特・基欧汉等 | [下载](https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866) |\n| 大众经济学 | 帕萨・达斯古普塔 | [下载](https://url89.ctfile.com/f/31084289-1357021042-91492b?p=8866) |\n| 牛津通识读本精选集（第一辑共58册） | 雷蒙德・瓦克斯 | [下载](https://url89.ctfile.com/f/31084289-1357016143-e41d19?p=8866) |\n"
  },
  {
    "path": "md/物流.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 物流\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 门到门时代 | Edward Humes | [下载](https://url89.ctfile.com/f/31084289-1357051861-8752a2?p=8866) |\n| 供应链管理 | 刘宝红 | [下载](https://url89.ctfile.com/f/31084289-1357024912-2e274f?p=8866) |\n| 集装箱改变世界（修订版） | 马克・莱文森 | [下载](https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866) |\n"
  },
  {
    "path": "md/物理.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 物理\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 第一推动丛书·综合系列：伽利略的手指 | 彼得・阿特金斯 | [下载](https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866) |\n| 数学物理化学大师经典系列（16册套装） | 薛定谔等 | [下载](https://url89.ctfile.com/f/31084289-1375505011-15ac5f?p=8866) |\n| 宇宙的结构 | 斯蒂芬・亚历山大 | [下载](https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866) |\n| 我们身处的宇宙究竟有多古怪？ | 伊拉・马克・爱格多尔 | [下载](https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866) |\n| 影响历史进程的九大科学家代表作图释书（套装9册） | 阿尔伯特・爱因斯坦 | [下载](https://url89.ctfile.com/f/31084289-1375510252-9e4341?p=8866) |\n| 宇宙的最后三分钟 | 保罗・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866) |\n| 费曼的彩虹 | 伦纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1375511389-9a7177?p=8866) |\n| 六极物理 | 严伯钧 | [下载](https://url89.ctfile.com/f/31084289-1375511584-57f21d?p=8866) |\n| 不可能的六件事 | 约翰・格里宾 | [下载](https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866) |\n| 诗意的宇宙 | 斯特凡・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1375513624-bf8549?p=8866) |\n| 生命是什么：活细胞的物理观 | 埃尔温・薛定谔 | [下载](https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866) |\n| 量子空间 | 吉姆・巴戈特 | [下载](https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866) |\n| 爱因斯坦的未完成交响曲 | 玛西亚・芭楚莎 | [下载](https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866) |\n| 相对论之路 | 哈诺赫・古特弗罗因德/于尔根・雷恩 | [下载](https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866) |\n| 爱因斯坦语录（终极版） | 阿尔伯特・爱因斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357000372-db0ba3?p=8866) |\n| 如何不切实际地解决实际问题 | 兰道尔・门罗 | [下载](https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866) |\n| 物质是什么 | 吉姆・巴戈特 | [下载](https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866) |\n| 《三体》中的物理学 | 李淼 | [下载](https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866) |\n| 牛津通识课 | 凯瑟琳・玛丽・布伦德尔等 | [下载](https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866) |\n| 莱布尼茨、牛顿与发明时间 | 托马斯・德・帕多瓦 | [下载](https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866) |\n| 罗杰·彭罗斯作品集（套装共4册） | 罗杰・彭罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356988642-62c533?p=8866) |\n| 是我想多了吗？ | 新科学家杂志/邱涛涛 | [下载](https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866) |\n| 太阳系简史 | 约翰・钱伯斯/杰奎琳・米顿 | [下载](https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866) |\n| 1分钟物理套装 | 中科院物理所 | [下载](https://url89.ctfile.com/f/31084289-1356985375-1c626d?p=8866) |\n| 物理学的进化 | 阿尔伯特・爱因斯坦/利奥波德・英费尔德 | [下载](https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866) |\n| 深奥的简洁 | 约翰・格里宾 | [下载](https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866) |\n| 极简量子力学 | 张天蓉 | [下载](https://url89.ctfile.com/f/31084289-1357050145-239ab3?p=8866) |\n| 与爱因斯坦共进早餐 | 查德・奥泽尔 | [下载](https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866) |\n| 费恩曼物理学讲义（新千年版）（套装共3册） | 费恩曼 | [下载](https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866) |\n| 人类为什么要探索太空 | 克里斯・英庇 | [下载](https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866) |\n| 美丽之问 | 弗兰克・维尔切克 | [下载](https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866) |\n| 从一到无穷大（果麦版） | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866) |\n| 爱因斯坦传（全2册） | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866) |\n| 上帝掷骰子吗？（升级版） | 曹天元 | [下载](https://url89.ctfile.com/f/31084289-1357039567-9b107f?p=8866) |\n| 第一推动丛书·物理系列（套装共9册） | 布莱恩・格林等 | [下载](https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866) |\n| 给好奇者的暗黑物理学 | 罗兰・勒乌克/文森特・博滕斯 | [下载](https://url89.ctfile.com/f/31084289-1357036114-dbe6f4?p=8866) |\n| 第一推动丛书·诺贝尔奖得主作品（新版套装共8册） | 基普·S.索恩等 | [下载](https://url89.ctfile.com/f/31084289-1357036132-d2b94c?p=8866) |\n| 无中生有的世界 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866) |\n| 时间的秩序 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866) |\n| 邀你共进量子早餐 | 索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯 | [下载](https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866) |\n| 一想到还有95%的问题留给人类，我就放心了 | 豪尔赫・陈/丹尼尔・怀特森 | [下载](https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866) |\n| 武侠物理 | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1357031503-32fac0?p=8866) |\n| 黑洞之书 | 史蒂文・古布泽/弗兰斯・比勒陀利乌斯 | [下载](https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866) |\n| 星空的琴弦 | 汪洁 | [下载](https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866) |\n| 茶杯里的风暴 | 海伦・切尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866) |\n| 宇宙从一粒尘埃开始 | 布莱恩・考克斯/杰夫・福修 | [下载](https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866) |\n| 物质的秘密 | 埃蒂安・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866) |\n| 叩响天堂之门 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866) |\n| 第一推动丛书·物理系列（套装共7册） | 罗伯特・劳克林等 | [下载](https://url89.ctfile.com/f/31084289-1357022836-5a2cdc?p=8866) |\n| 给孩子讲量子力学 | 李淼 | [下载](https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866) |\n| 时间重生 | 李・斯莫林 | [下载](https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866) |\n| 柔软的宇宙 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866) |\n| 现实不似你所见 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866) |\n| 极简科学起源课 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866) |\n| 迷人的温度 | 吉诺・格塞雷 | [下载](https://url89.ctfile.com/f/31084289-1357019803-f6c866?p=8866) |\n| 诗意的原子 | 科特・施塔格 | [下载](https://url89.ctfile.com/f/31084289-1357017949-15be38?p=8866) |\n| 时间的形状：相对论史话 | 汪洁 | [下载](https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866) |\n| 给孩子讲宇宙 | 李淼 | [下载](https://url89.ctfile.com/f/31084289-1357016302-ce02e5?p=8866) |\n| 量子大唠嗑 | 马兆远  | [下载](https://url89.ctfile.com/f/31084289-1357016011-0b3bbf?p=8866) |\n| 兰道尔宇宙三部曲 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357015930-649116?p=8866) |\n| 引力波 | 珍娜・莱文 | [下载](https://url89.ctfile.com/f/31084289-1357014196-53b378?p=8866) |\n| 星际穿越 | 基普・索恩/基普・索恩  | [下载](https://url89.ctfile.com/f/31084289-1357014238-883094?p=8866) |\n| 七堂极简物理课 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357013917-9f1be2?p=8866) |\n| 暗物质与恐龙 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866) |\n| 别逗了，费曼先生 | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866) |\n| 上帝掷骰子吗 | 曹天元  | [下载](https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866) |\n| 穿越平行宇宙 | 迈克斯・泰格马克 | [下载](https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866) |\n| 极客物理学：地球上最有趣的问题和最出人意料的答案 | 瑞特・阿莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866) |\n| 物理世界奇遇记 | 伽莫夫/斯坦纳德  | [下载](https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866) |\n| 爱因斯坦的宇宙 | 加来道雄 | [下载](https://url89.ctfile.com/f/31084289-1357005760-1c0736?p=8866) |\n"
  },
  {
    "path": "md/物理学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 物理学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 宇宙从何而来 | 傅渥成 | [下载](https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866) |\n| 柔软的宇宙 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866) |\n"
  },
  {
    "path": "md/特朗普.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 特朗普\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 永不放弃 | 唐纳德・特朗普/梅瑞迪斯・麦基沃 | [下载](https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866) |\n"
  },
  {
    "path": "md/犯罪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 犯罪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 凶年 | 大卫・西蒙 | [下载](https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866) |\n| 犯罪心理档案（共4册） | 刚雪印 | [下载](https://url89.ctfile.com/f/31084289-1357003273-9045a2?p=8866) |\n| 日食之后 | 萨拉・佩里 | [下载](https://url89.ctfile.com/f/31084289-1357003177-593f47?p=8866) |\n| 犯罪心理套装（共四册） | 许大鹏等 | [下载](https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866) |\n| 静默之地 | 约翰・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357000417-20afbf?p=8866) |\n| 犯罪心理分析 | 张蔚 | [下载](https://url89.ctfile.com/f/31084289-1357000360-f9051c?p=8866) |\n| 救赎之路 | 约翰・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357000348-51b134?p=8866) |\n| 最后之子 | 约翰・哈特 | [下载](https://url89.ctfile.com/f/31084289-1357000255-aea9fc?p=8866) |\n| 以眼还眼 | 米切尔·P·罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356990439-86b4b3?p=8866) |\n| 侯大利刑侦笔记3 | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1356988153-be85b0?p=8866) |\n| 神弃之地 | 唐纳德・雷・波洛克 | [下载](https://url89.ctfile.com/f/31084289-1356985507-b2ba91?p=8866) |\n| 刀锋上的救赎（增补版） | 指纹 | [下载](https://url89.ctfile.com/f/31084289-1357053079-0512e3?p=8866) |\n| 罪全书系列（共6册） | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357052944-2dd9a4?p=8866) |\n| 侦畸者 | 叶遁 | [下载](https://url89.ctfile.com/f/31084289-1357052350-07ea85?p=8866) |\n| 幽微的人性 | 李玫瑾 | [下载](https://url89.ctfile.com/f/31084289-1357052320-cff183?p=8866) |\n| 爱尔兰人 | 查尔斯・勃兰特 | [下载](https://url89.ctfile.com/f/31084289-1357051825-b70bae?p=8866) |\n| 猎凶记（套装全三册） | 岳勇 | [下载](https://url89.ctfile.com/f/31084289-1357051765-86815f?p=8866) |\n| 守夜者3 | 秦明 | [下载](https://url89.ctfile.com/f/31084289-1357049350-34aaa6?p=8866) |\n| 破碎海岸 | 彼得・坦普 | [下载](https://url89.ctfile.com/f/31084289-1357047442-f42c38?p=8866) |\n| 神谕之死 | P. D. 詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357044010-bd23c2?p=8866) |\n| 十宗罪6 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866) |\n| 顶级悬案 | 约翰・道格拉斯/马克・奥尔谢克 | [下载](https://url89.ctfile.com/f/31084289-1357040371-b4acad?p=8866) |\n| 白城恶魔 | 埃里克・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357038736-2b449e?p=8866) |\n| 无夜边境 | 田浩 | [下载](https://url89.ctfile.com/f/31084289-1357038571-bea58f?p=8866) |\n| 人人都该懂的法庭科学 | 杰伊・西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866) |\n| 焦渴 | 尤・奈斯博 | [下载](https://url89.ctfile.com/f/31084289-1357033717-8d889d?p=8866) |\n| 魔鬼与福尔摩斯 | 戴维・格兰 | [下载](https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866) |\n| 只有他知道一切 | 利兹・纽金特 | [下载](https://url89.ctfile.com/f/31084289-1357027873-fe0d3b?p=8866) |\n| 十宗罪3 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357027291-d26495?p=8866) |\n| 十宗罪2 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357022272-fa2c80?p=8866) |\n| 默读 | Priest | [下载](https://url89.ctfile.com/f/31084289-1357021312-2cf0a1?p=8866) |\n| 恶女：普通女性为何化身连环杀人狂 | 彼得・佛伦斯基 | [下载](https://url89.ctfile.com/f/31084289-1357020835-ba00af?p=8866) |\n| 嗜血法医（1-4季全集） | 杰夫・林赛 | [下载](https://url89.ctfile.com/f/31084289-1357020538-c2c476?p=8866) |\n| 读心神探：FBI心理侧写术 | 约翰・道格拉斯/马克・奥尔谢克 | [下载](https://url89.ctfile.com/f/31084289-1357016635-5c67ae?p=8866) |\n| 拼布娃娃 | 丹尼尔・科尔 | [下载](https://url89.ctfile.com/f/31084289-1357015456-f0ae77?p=8866) |\n| 十宗罪前传 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357014943-24df7d?p=8866) |\n| 十宗罪5 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357013539-bb0b0c?p=8866) |\n| 七杀简史 | 马龙・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357008202-0ba01b?p=8866) |\n| 十宗罪4 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357007662-c8b434?p=8866) |\n| 女法医手记系列套装（全四册） | 刘真 | [下载](https://url89.ctfile.com/f/31084289-1357007236-0684b2?p=8866) |\n| 猫鼠游戏 | 弗兰克·阿巴格内尔/斯坦·雷丁  | [下载](https://url89.ctfile.com/f/31084289-1357007128-14a58e?p=8866) |\n| 尸案调查科系列（全5册） | 九滴水 | [下载](https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866) |\n| 太阳黑子 | 须一瓜 | [下载](https://url89.ctfile.com/f/31084289-1357006282-cd6c39?p=8866) |\n| 十宗罪 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357006195-b96fd9?p=8866) |\n"
  },
  {
    "path": "md/犹太.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 犹太\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 犹太人三千年简史 | 雷蒙德・P.谢德林 | [下载](https://url89.ctfile.com/f/31084289-1375509358-be1ab4?p=8866) |\n| &#8216;犹&#8217;钱的思维 | 蓝龙 | [下载](https://url89.ctfile.com/f/31084289-1357000435-849e35?p=8866) |\n| 强迫症的历史 | 克劳斯·P.费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1356983698-8f2caf?p=8866) |\n| 犹太文明 | S.N.艾森斯塔特 | [下载](https://url89.ctfile.com/f/31084289-1357049122-04d999?p=8866) |\n| 犹太人的故事：寻找失落的字符 | 西门·沙马  | [下载](https://url89.ctfile.com/f/31084289-1357007017-f60f5d?p=8866) |\n"
  },
  {
    "path": "md/犹太人.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 犹太人\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 犹太人四千年（全两册） | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375509034-47ac0b?p=8866) |\n| 父亲的失乐园 |  阿里埃勒・萨巴尔 | [下载](https://url89.ctfile.com/f/31084289-1357015570-3dfb57?p=8866) |\n"
  },
  {
    "path": "md/狄更斯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 狄更斯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 双城记（企鹅经典） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357033369-82ddd0?p=8866) |\n| 雾都孤儿（经典译林） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357005643-ae482c?p=8866) |\n"
  },
  {
    "path": "md/狄金森.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 狄金森\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我用古典的方式爱过你 | 艾米莉・狄金森 | [下载](https://url89.ctfile.com/f/31084289-1357033786-700cbe?p=8866) |\n"
  },
  {
    "path": "md/狗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 狗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一条狗的使命：只想陪在你身边 | 布鲁斯・卡梅隆 | [下载](https://url89.ctfile.com/f/31084289-1357047844-203fa5?p=8866) |\n"
  },
  {
    "path": "md/猫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 猫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一只猫的存在主义思考 | 卡尔・史蒂文斯 | [下载](https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866) |\n| 年纪轻轻，就有猫了 | 卵山玉子 | [下载](https://url89.ctfile.com/f/31084289-1357000237-49e09f?p=8866) |\n| 吸猫指南 | 六井冰 | [下载](https://url89.ctfile.com/f/31084289-1357040377-276a7e?p=8866) |\n| 猫的秘密 | 约翰・布拉德肖 | [下载](https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866) |\n| 我是猫（果麦经典） | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1357035736-5f5e5a?p=8866) |\n| 生而为猫挺好的 | 猫小姐 | [下载](https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866) |\n| 今天也吸收了猫能量 | 卵山玉子 | [下载](https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866) |\n| 人类“吸猫”小史 | 艾比盖尔・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357027183-6dbd40?p=8866) |\n| 知日05：猫 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025503-b1233d?p=8866) |\n| 猫咪家庭医学大百科 | 林政毅 | [下载](https://url89.ctfile.com/f/31084289-1357025086-d9896b?p=8866) |\n"
  },
  {
    "path": "md/玄幻.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 玄幻\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 蛮荒记（大全集） | 树下野狐 | [下载](https://url89.ctfile.com/f/31084289-1375492450-48eee1?p=8866) |\n| 猎魔人修订版一至八全集 | 安杰伊・萨普科夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375493842-0102d1?p=8866) |\n| 地铁三部曲 | 德米特里・格鲁霍夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375503226-447e22?p=8866) |\n| 将夜（精校版） | 猫腻 | [下载](https://url89.ctfile.com/f/31084289-1357049074-8f7e9a?p=8866) |\n| 回忆，悲伤与荆棘（套装全三卷六册） | 泰德・威廉姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357033894-061805?p=8866) |\n| 异乡人（套装共10册） | 戴安娜・加瓦尔东 | [下载](https://url89.ctfile.com/f/31084289-1357033537-76c311?p=8866) |\n| 神游 | 徐胜治 | [下载](https://url89.ctfile.com/f/31084289-1357033297-17c0a2?p=8866) |\n| 江湖异闻录 | 本少爷 | [下载](https://url89.ctfile.com/f/31084289-1357028242-37d188?p=8866) |\n| 克苏鲁神话 | H.P.洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1357026331-155838?p=8866) |\n| 克苏鲁神话Ⅱ | H.P.洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1357026322-83eb5a?p=8866) |\n| 克苏鲁神话Ⅲ | H.P.洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1357026316-cb833b?p=8866) |\n| 暗黑西游 | 绯红色眼泪 | [下载](https://url89.ctfile.com/f/31084289-1357025137-84c2d0?p=8866) |\n| AI迷航2 | 肖遥 | [下载](https://url89.ctfile.com/f/31084289-1357023982-655d95?p=8866) |\n| 斗罗大陆（全14卷） | 唐家三少 | [下载](https://url89.ctfile.com/f/31084289-1357023769-dc3c40?p=8866) |\n| 极地恶灵（全2册） | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357020643-881da8?p=8866) |\n| 镖人2 | 许先哲 | [下载](https://url89.ctfile.com/f/31084289-1357020184-ca791a?p=8866) |\n| 人族崛起（套装书全10册） | 岳天亮 | [下载](https://url89.ctfile.com/f/31084289-1357020079-80b4c8?p=8866) |\n| 移动迷宫（套装5册） | 詹姆斯・达什纳 | [下载](https://url89.ctfile.com/f/31084289-1357019527-f1b587?p=8866) |\n| 北境三部曲：黑色佣兵团（套装共3册） | 格伦・库克 | [下载](https://url89.ctfile.com/f/31084289-1357018309-76ae77?p=8866) |\n| 开封志怪（全三册） | 尾鱼 | [下载](https://url89.ctfile.com/f/31084289-1357015318-1376a9?p=8866) |\n| 无心法师 | 尼罗 | [下载](https://url89.ctfile.com/f/31084289-1357013239-7522f7?p=8866) |\n| 郑渊洁成人大长篇小说系列三部曲 | 郑渊洁 | [下载](https://url89.ctfile.com/f/31084289-1357011334-a9920c?p=8866) |\n| 秦墟 | 月关 | [下载](https://url89.ctfile.com/f/31084289-1357009132-129b38?p=8866) |\n| 采珠勿惊龙：鬼雨法螺 | 二郎神犬马 | [下载](https://url89.ctfile.com/f/31084289-1357008403-e6a157?p=8866) |\n| 择天记（套装1-7卷全） | 猫腻 | [下载](https://url89.ctfile.com/f/31084289-1357008277-29e82c?p=8866) |\n| 传古奇术（套装共四册） | 未六羊 | [下载](https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866) |\n"
  },
  {
    "path": "md/王夫之.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 王夫之\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 宋论（全本全注全译） | 王夫之 | [下载](https://url89.ctfile.com/f/31084289-1356984610-2ebc00?p=8866) |\n| 船山遗书 | 王夫之 | [下载](https://url89.ctfile.com/f/31084289-1357021615-1d00c5?p=8866) |\n"
  },
  {
    "path": "md/王小波.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 王小波\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 万寿寺 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357030480-1e074b?p=8866) |\n| 王小波作品大全集（15册） | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357014463-323335?p=8866) |\n"
  },
  {
    "path": "md/王朔.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 王朔\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我是你爸爸 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357034359-948c8d?p=8866) |\n| 看上去很美 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866) |\n"
  },
  {
    "path": "md/环保.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 环保\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 创水记 | 赛斯・西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866) |\n| 与荒原同行 | 约翰・麦克菲 | [下载](https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866) |\n"
  },
  {
    "path": "md/环境.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 环境\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 读懂碳中和 | 中国长期低碳发展战略与转型路径研究课题组 | [下载](https://url89.ctfile.com/f/31084289-1375498108-447de0?p=8866) |\n| 一本书读懂碳中和 | 安永碳中和课题组 | [下载](https://url89.ctfile.com/f/31084289-1375507366-f36283?p=8866) |\n| 气候经济与人类未来 | 比尔・盖茨 | [下载](https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866) |\n| 烟囱与进步人士 | 大卫・斯特拉德林 | [下载](https://url89.ctfile.com/f/31084289-1375512436-c178c9?p=8866) |\n| 寂静的春天（四师推荐精装版） | 蕾切尔・卡森 | [下载](https://url89.ctfile.com/f/31084289-1357032802-2197eb?p=8866) |\n| 人类的明天 | 席里尔・迪翁 | [下载](https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866) |\n| 废物星球：从中国到世界的天价垃圾之旅 | 亚当・明特 | [下载](https://url89.ctfile.com/f/31084289-1357014730-c288c9?p=8866) |\n"
  },
  {
    "path": "md/现代.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 现代\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们的庸常生活 | 张畅 | [下载](https://url89.ctfile.com/f/31084289-1375492048-fed780?p=8866) |\n| 范稳作品集（全8册） | 范稳 | [下载](https://url89.ctfile.com/f/31084289-1375493179-34f72a?p=8866) |\n| 我们的时代（共3册） | 王强 | [下载](https://url89.ctfile.com/f/31084289-1375504177-aa627c?p=8866) |\n| 半泽直树（全四册） | 池井户润 | [下载](https://url89.ctfile.com/f/31084289-1356990412-aa7e8c?p=8866) |\n| 现代主义：从波德莱尔到贝克特之后 | 彼得・盖伊 | [下载](https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866) |\n| 北上广女子图鉴 | 王小圈 | [下载](https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866) |\n| 杰克·凯鲁亚克作品集（套装共13册） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1357048672-0f790e?p=8866) |\n| 沧浪之道三部曲 | 宋定国 | [下载](https://url89.ctfile.com/f/31084289-1357047505-f0b74b?p=8866) |\n| 刺客信条全集（全13册） | 奥利弗・波登等 | [下载](https://url89.ctfile.com/f/31084289-1357036453-8aa8c0?p=8866) |\n| 汤姆·克兰西军事系列（套装共9册） | 汤姆・克兰西 | [下载](https://url89.ctfile.com/f/31084289-1357036339-693198?p=8866) |\n| 光禄坊三号 | 陈永和 | [下载](https://url89.ctfile.com/f/31084289-1357036207-b2b9c4?p=8866) |\n| 丑牛系列之民国婉约（套装7本） | 江晓英/林杉/臧宪柱/李婍/牧来 | [下载](https://url89.ctfile.com/f/31084289-1357034188-0b3e65?p=8866) |\n| 菲兹杰拉德小说精选（套装共4册） | 弗朗西斯・司各特・菲兹杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357033936-250a7b?p=8866) |\n| 感悟文学大师经典100册套装 | 萧枫 | [下载](https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866) |\n| 文学大师精品（套装三十册） | 鲁迅/徐志摩/朱自清等  | [下载](https://url89.ctfile.com/f/31084289-1357031935-49b0cf?p=8866) |\n| 钱理群作品精编（共8册） | 钱理群 | [下载](https://url89.ctfile.com/f/31084289-1357029190-be6f44?p=8866) |\n| 九个人 | 张新颖 | [下载](https://url89.ctfile.com/f/31084289-1357023121-e03fbf?p=8866) |\n| 四十九日祭 | 严歌苓 | [下载](https://url89.ctfile.com/f/31084289-1357023001-13c4d5?p=8866) |\n| 许子东现代文学课 | 许子东 | [下载](https://url89.ctfile.com/f/31084289-1357021855-47d98d?p=8866) |\n| 中国都市欲望小说精选集（共6册） | 李晓东等 | [下载](https://url89.ctfile.com/f/31084289-1357019995-a87cfe?p=8866) |\n"
  },
  {
    "path": "md/现代文学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 现代文学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 菲茨杰拉德文集（套装共9本） | 菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357010659-835d89?p=8866) |\n"
  },
  {
    "path": "md/现象学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 现象学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 物的追问（二十世纪西方哲学经典） | 马丁・海德格尔 | [下载](https://url89.ctfile.com/f/31084289-1356985936-6e200a?p=8866) |\n| 现象学的方法（二十世纪西方哲学经典） | 埃德蒙德・胡塞尔 | [下载](https://url89.ctfile.com/f/31084289-1356985603-202a69?p=8866) |\n"
  },
  {
    "path": "md/理想国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 理想国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 隐页书城三部曲 | 凯・迈尔 | [下载](https://url89.ctfile.com/f/31084289-1357051819-6372fc?p=8866) |\n| 6点27分的朗读者 |  让-保尔・迪迪耶洛朗 | [下载](https://url89.ctfile.com/f/31084289-1357033048-452f4a?p=8866) |\n| 明治天皇：1852-1912 | 唐纳德・基恩 | [下载](https://url89.ctfile.com/f/31084289-1357021156-b23e9c?p=8866) |\n"
  },
  {
    "path": "md/理论.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 理论\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 历史与真理（二十世纪西方哲学经典） | 保罗・利科 | [下载](https://url89.ctfile.com/f/31084289-1356985459-26b47c?p=8866) |\n| 資治通鑑·繁體豎排版（胡三省注） | 司馬光編集/胡三省輯注 | [下载](https://url89.ctfile.com/f/31084289-1357030630-44c1c2?p=8866) |\n| 几何原本（全译插图本） | 欧几里得 | [下载](https://url89.ctfile.com/f/31084289-1357010761-329742?p=8866) |\n"
  },
  {
    "path": "md/理财.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 理财\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中高净值人群财富管理的顶层设计（全5册） | 李升等 | [下载](https://url89.ctfile.com/f/31084289-1375491427-50aa01?p=8866) |\n| 巴菲特之道（原书第3版）（典藏版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1375492738-ab0390?p=8866) |\n| 要钱还是要生活 | 维姬・罗宾/乔・多明格斯 | [下载](https://url89.ctfile.com/f/31084289-1375493644-fd98ee?p=8866) |\n| 奇妙的盘算社团 | 高井浩章 | [下载](https://url89.ctfile.com/f/31084289-1375493755-6d2ec3?p=8866) |\n| 指数基金投资攻略 | 翁量 | [下载](https://url89.ctfile.com/f/31084289-1375499170-bcc2b1?p=8866) |\n| 金钱的属性 | 金胜镐 | [下载](https://url89.ctfile.com/f/31084289-1375500652-0252d7?p=8866) |\n| 祖鲁法则：成长股投资要义 | 吉姆・斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866) |\n| 高净值人士投资指南 | 潘添礼 | [下载](https://url89.ctfile.com/f/31084289-1375510582-618a3b?p=8866) |\n| 我们终将变富 | 兰启昌 | [下载](https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866) |\n| 有钱人和你想的不一样 | 哈维・艾克 | [下载](https://url89.ctfile.com/f/31084289-1375512172-8e2586?p=8866) |\n| 躺着赚钱的漫画基金书 | 三折人生 | [下载](https://url89.ctfile.com/f/31084289-1375513702-f21c11?p=8866) |\n| 经典技术分析（原书第3版）（上） | 小查尔斯·D. 柯克帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866) |\n| 稳赚：提升理财收益的投资工具 | 李红萍 | [下载](https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866) |\n| 常赢投资系列（套装共5册） | 帕特・多尔西等 | [下载](https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866) |\n| 格雷厄姆经典投资策略 | 珍妮特・洛尔 | [下载](https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866) |\n| 炒掉你的股票分析师（原书第2版） | 哈里・多马什 | [下载](https://url89.ctfile.com/f/31084289-1357003948-063db9?p=8866) |\n| 投资至简 | 静逸投资 | [下载](https://url89.ctfile.com/f/31084289-1357003885-267ca3?p=8866) |\n| 徐远的投资课 | 徐远 | [下载](https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866) |\n| 理财就是理生活：6个受益一生的财富思维 | 水湄物语 | [下载](https://url89.ctfile.com/f/31084289-1357001803-f962c9?p=8866) |\n| &#8216;犹&#8217;钱的思维 | 蓝龙 | [下载](https://url89.ctfile.com/f/31084289-1357000435-849e35?p=8866) |\n| 价值 | 张磊 | [下载](https://url89.ctfile.com/f/31084289-1357000264-bc8f4e?p=8866) |\n| 像有钱人一样思考 | 本田健 | [下载](https://url89.ctfile.com/f/31084289-1356996430-594e7e?p=8866) |\n| 投资21戒 | 本・斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866) |\n| 指数定投实现财务自由 | 姬建东 | [下载](https://url89.ctfile.com/f/31084289-1356995248-ef3c21?p=8866) |\n| 不可撼动的财务自由 | 托尼・罗宾斯/彼得・默劳克 | [下载](https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866) |\n| 巴比伦富翁新解 | 乔治・克拉森 | [下载](https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866) |\n| 财报背后的投资机会 | 蒋豹 | [下载](https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866) |\n| 大钱细思 | 乔尔・蒂林哈斯特 | [下载](https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866) |\n| 指数基金投资从入门到精通 | 老罗 | [下载](https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866) |\n| 家庭财富保卫攻略 | 王昊 | [下载](https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866) |\n| 保险自选手册 | 许春波 | [下载](https://url89.ctfile.com/f/31084289-1356991387-717ffd?p=8866) |\n| 买房可以很简单 | 子安 | [下载](https://url89.ctfile.com/f/31084289-1356990172-b8768b?p=8866) |\n| 投资的常识 | 布拉德福德・康纳尔等 | [下载](https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866) |\n| 让时间陪你慢慢变富 | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1356984862-b62e79?p=8866) |\n| 赢：有钱人和你想的不一样 | 塞缪尔・斯迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866) |\n| 富人的逻辑 | 雷纳・齐特尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866) |\n| 巴菲特的护城河（新版） | 帕特・多尔西 | [下载](https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866) |\n| 大额保单操作实务 | 曾祥霞 | [下载](https://url89.ctfile.com/f/31084289-1357049410-6a8850?p=8866) |\n| 大熊市启示录（原书第4版） | 拉塞尔・纳皮尔 | [下载](https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866) |\n| 给投资新手的极简股票课 | lip师兄 | [下载](https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866) |\n| 为什么中国人勤劳而不富有（新版） | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866) |\n| 人人都该买保险 | 刘彦斌 | [下载](https://url89.ctfile.com/f/31084289-1357044769-0ccba8?p=8866) |\n| 穷人缺什么 | 古古 | [下载](https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866) |\n| 一本书读懂黄金白银投资理财 | 李若问 | [下载](https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866) |\n| 股票投资入门与实战技巧 | 王坤 | [下载](https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866) |\n| 巴菲特与索罗斯的投资习惯（纪念版） | 马克・泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866) |\n| 独立，从财富开始 | 水湄物语 | [下载](https://url89.ctfile.com/f/31084289-1357043248-38239e?p=8866) |\n| 在苍茫中传灯 | 姚斌 | [下载](https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866) |\n| 漫步华尔街（原书第11版） | 伯顿G.马尔基尔 | [下载](https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866) |\n| 定投十年财务自由 | 银行螺丝钉 | [下载](https://url89.ctfile.com/f/31084289-1357041760-6a8d5b?p=8866) |\n| 雪球投资 | 林起 | [下载](https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866) |\n| 低风险，高回报 | 皮姆・万・弗利特 | [下载](https://url89.ctfile.com/f/31084289-1357041322-fd0d46?p=8866) |\n| 我的第一本炒股书 | 杨金 | [下载](https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866) |\n| 集中投资 | 艾伦・卡尔普・波尼洛等 | [下载](https://url89.ctfile.com/f/31084289-1357039054-d0d956?p=8866) |\n| 彼得·林奇教你理财（典藏版） | 彼得・林奇/约翰・罗瑟查尔德 | [下载](https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866) |\n| 向格雷厄姆学思考，向巴菲特学投资 | 劳伦斯・坎宁安 | [下载](https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866) |\n| 财富自由 | 托马斯・斯坦利/萨拉斯坦利・弗洛 | [下载](https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866) |\n| 7分钟理财 | 罗元裳 | [下载](https://url89.ctfile.com/f/31084289-1357034965-f28528?p=8866) |\n| 理财就是理生活 | 艾玛・沈 | [下载](https://url89.ctfile.com/f/31084289-1357034665-bb12ef?p=8866) |\n| 活用理财金三角 | 方士维 | [下载](https://url89.ctfile.com/f/31084289-1357033393-0eaf41?p=8866) |\n| 慢慢变富 | 张居营 | [下载](https://url89.ctfile.com/f/31084289-1357033147-38eae6?p=8866) |\n| 半小时漫画理财课 | 八宝 | [下载](https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866) |\n| 韭菜的自我修养（增订版） | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866) |\n| 好好赚钱 | 简七 | [下载](https://url89.ctfile.com/f/31084289-1357030909-335fc1?p=8866) |\n| 穷人穷口袋，富人富脑袋 | 曾驿翔 | [下载](https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866) |\n| 远离迷茫，从学会赚钱开始 | 曾鹏宇 | [下载](https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866) |\n| You Are a Badass at Making Money | Jen Sincero | [下载](https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866) |\n| 财务自由之路Ⅱ | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357027984-a043c5?p=8866) |\n| 财务自由之路Ⅲ | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866) |\n| 30岁前的每一天 | 水湄物语 | [下载](https://url89.ctfile.com/f/31084289-1357027846-1a01dd?p=8866) |\n| 赚钱的逻辑 | 钱伯鑫 | [下载](https://url89.ctfile.com/f/31084289-1357027744-0af2ee?p=8866) |\n| 高效管理 | 乔纳森・莱蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866) |\n| 你的第一本保险指南 | 槽叔 | [下载](https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866) |\n| 小乌龟投资智慧 | 伍治坚 | [下载](https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866) |\n| 小乌龟投资智慧2 | 伍治坚 | [下载](https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866) |\n| 巴菲特之道（学习篇） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866) |\n| 钱：7步创造终身收入 | 托尼・罗宾斯 | [下载](https://url89.ctfile.com/f/31084289-1357019368-76a1cb?p=8866) |\n| 财务自由之路 | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357018366-414491?p=8866) |\n| 指数基金投资指南 | 银行螺丝钉 | [下载](https://url89.ctfile.com/f/31084289-1357018240-2f4e20?p=8866) |\n| 手把手教你读财报2 | 唐朝 | [下载](https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866) |\n| 30年后，你拿什么养活自己？ | 高得诚/郑成镇/崔秉熙  | [下载](https://url89.ctfile.com/f/31084289-1357017421-191d50?p=8866) |\n| 30年后，你拿什么养活自己？2 | 高得诚 | [下载](https://url89.ctfile.com/f/31084289-1357017409-fba58b?p=8866) |\n| 金融的解释 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866) |\n| 工作前5年，决定你一生的财富 | 三公子 | [下载](https://url89.ctfile.com/f/31084289-1357014817-68b046?p=8866) |\n| 巴菲特传（纪念版） | 罗杰・洛温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357012093-22ce3c?p=8866) |\n| 小花的投资魔法书 | 小花小花 | [下载](https://url89.ctfile.com/f/31084289-1357010716-f4a679?p=8866) |\n| 小狗钱钱的爸爸教你实现财务自由 | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357010704-c5de17?p=8866) |\n| 红楼梦教你的10堂理财课 | 朱国凤 | [下载](https://url89.ctfile.com/f/31084289-1357007884-57754e?p=8866) |\n| 非富不可：曹仁超给年轻人的投资忠告 | 曹仁超 | [下载](https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866) |\n| 金钱有术 | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866) |\n| 我最需要的理财常识书 | 王华 | [下载](https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866) |\n| 百箭穿杨 | 小小辛巴 | [下载](https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866) |\n| 小狗钱钱（套装全2册） | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357007170-abaad7?p=8866) |\n| 富爸爸穷爸爸 | 罗伯特.T.清崎 | [下载](https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866) |\n| 资本的雪球 | 吕波 | [下载](https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866) |\n| 彼得·林奇教你理财 | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866) |\n"
  },
  {
    "path": "md/瑞典.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 瑞典\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 流沙刑 | 莫琳・派森・吉莉特 | [下载](https://url89.ctfile.com/f/31084289-1357051519-fb7329?p=8866) |\n| 我的探险生涯Ⅱ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866) |\n| 格拉斯医生（译文经典） | 雅尔玛尔・瑟德尔贝里 | [下载](https://url89.ctfile.com/f/31084289-1357042873-c12a32?p=8866) |\n| 奥瑟罗（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866) |\n| 魔灯（全译本） | 英格玛・伯格曼 | [下载](https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866) |\n| 熊镇2 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1357033165-9e1f41?p=8866) |\n| 红色地址簿 | 苏菲亚・伦德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357032307-65c5a3?p=8866) |\n| 尼尔斯骑鹅历险记（作家榜经典文库） | 塞尔玛・拉格洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866) |\n| 不太多，不太少 | 罗拉・A.阿克斯特伦 | [下载](https://url89.ctfile.com/f/31084289-1357021063-bc15d6?p=8866) |\n"
  },
  {
    "path": "md/生命.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 生命\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 当死亡化作生命 | 书亚・梅兹里希 | [下载](https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866) |\n| 生命进化的跃升 | 尼克・莱恩 | [下载](https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866) |\n| 超级潜能 | 亚当・皮奥里 | [下载](https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866) |\n| 第一推动丛书·生命系列（套装共5册） | 伦道夫·M. 尼斯等 | [下载](https://url89.ctfile.com/f/31084289-1357035862-20c392?p=8866) |\n| 好好告别 | 凯特琳・道蒂 | [下载](https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866) |\n| 死亡的故事 | 大卫・伊格曼 | [下载](https://url89.ctfile.com/f/31084289-1357032478-145139?p=8866) |\n| 生命之轮 | 伊丽莎白・库伯勒-罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357026214-a5ffe9?p=8866) |\n| 无比美妙的痛苦 | 约翰・格林 | [下载](https://url89.ctfile.com/f/31084289-1357023421-afac0a?p=8866) |\n| 你的生存本能正在杀死你（修订版） | 马克・舍恩/克里斯汀・洛贝格 | [下载](https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866) |\n| 生命的法则 | 肖恩·B·卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866) |\n| 时光倒流的女孩 | 加・泽文 | [下载](https://url89.ctfile.com/f/31084289-1357021435-850156?p=8866) |\n| 生命的未来 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357020727-193b46?p=8866) |\n| 连接组：造就独一无二的你 | 承现峻 | [下载](https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866) |\n| 生命：进化生物学、遗传学、人类学和环境科学的黎明 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866) |\n| Tuesdays with Morrie | Mitch Albom | [下载](https://url89.ctfile.com/f/31084289-1357012087-f9ff16?p=8866) |\n| 生命是什么 | 王立铭 | [下载](https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866) |\n"
  },
  {
    "path": "md/生活.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 生活\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 陈允斌顺时生活的智慧（全12册） | 陈允斌 | [下载](https://url89.ctfile.com/f/31084289-1375498798-9bff2a?p=8866) |\n| 生活蒙太奇 | 天然 | [下载](https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866) |\n| 饭太稀个人绘本画集合辑 | 饭太稀 | [下载](https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866) |\n| 鱼米之乡 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866) |\n| 中国人超会吃 | 王恺等 | [下载](https://url89.ctfile.com/f/31084289-1375508890-237674?p=8866) |\n| 吃和远方 | 程磊 | [下载](https://url89.ctfile.com/f/31084289-1375509802-3be4da?p=8866) |\n| 极简主义改变了我 | 乔舒亚・贝克尔 | [下载](https://url89.ctfile.com/f/31084289-1375511542-2d95fe?p=8866) |\n| 海风电影院 | 吴忠全 | [下载](https://url89.ctfile.com/f/31084289-1375513090-0c3561?p=8866) |\n| 老鼠什么都知道 | 海带 | [下载](https://url89.ctfile.com/f/31084289-1375513681-e01d68?p=8866) |\n| 美顺与长生 | 毛建军 | [下载](https://url89.ctfile.com/f/31084289-1375513723-731852?p=8866) |\n| 大众的反叛 | 何塞・奥尔特加・伊・加塞特 | [下载](https://url89.ctfile.com/f/31084289-1357002775-9ae93e?p=8866) |\n| 爱上收纳 | 蚂小蚁 | [下载](https://url89.ctfile.com/f/31084289-1357001383-d555a4?p=8866) |\n| 漫画生活哲学一看就懂 | 李静 | [下载](https://url89.ctfile.com/f/31084289-1356998641-e4e86e?p=8866) |\n| 啤酒原来是这么回事儿 | 吉雷克・奥贝尔 | [下载](https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866) |\n| 鸡尾酒原来是这么回事儿 | 米凯勒・吉多/亚尼斯・瓦卢西克斯 | [下载](https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866) |\n| 奶酪原来是这么回事儿 | 特里斯坦・西卡尔 | [下载](https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866) |\n| 生活需要界限感 | 景天 | [下载](https://url89.ctfile.com/f/31084289-1356995263-2bc9b2?p=8866) |\n| 半小时漫画预防常见病 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866) |\n| 金缮生活法 | 坎迪斯・熊井 | [下载](https://url89.ctfile.com/f/31084289-1356995173-3a3c44?p=8866) |\n| 饮食生活新提案系列（套装共5册） | 特里斯坦・西卡尔等 | [下载](https://url89.ctfile.com/f/31084289-1356993028-2b5773?p=8866) |\n| 你是个年轻人，请你好好生活 | 吕不同 | [下载](https://url89.ctfile.com/f/31084289-1356991471-8feb15?p=8866) |\n| 幽默感 | 李新 | [下载](https://url89.ctfile.com/f/31084289-1356991393-722219?p=8866) |\n| 跨界竞争 | 王小圈 | [下载](https://url89.ctfile.com/f/31084289-1356990190-52d9e1?p=8866) |\n| 一个人生活 | 谷川俊太郎 | [下载](https://url89.ctfile.com/f/31084289-1356989908-bc769a?p=8866) |\n| 一个人张灯结彩 | 田耳 | [下载](https://url89.ctfile.com/f/31084289-1356988828-6d4776?p=8866) |\n| 匿名区+1 | 匿名用户 | [下载](https://url89.ctfile.com/f/31084289-1356986368-d69b14?p=8866) |\n| 玩的就是规则 | 伊恩・伯格斯特 | [下载](https://url89.ctfile.com/f/31084289-1356985351-add50e?p=8866) |\n| 如果没有明天 | 余耕 | [下载](https://url89.ctfile.com/f/31084289-1356983716-ce8642?p=8866) |\n| 日本风俗小物 | 中川政七商店 | [下载](https://url89.ctfile.com/f/31084289-1356983593-3192f5?p=8866) |\n| 黄小厨的春夏秋冬 | 黄磊 | [下载](https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866) |\n| 掌控分寸 | 珍妮・米勒/维多利亚・兰伯特 | [下载](https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866) |\n| 精准购买 | 塔拉・巴顿 | [下载](https://url89.ctfile.com/f/31084289-1357053505-96c3ff?p=8866) |\n| 我爱器皿 | 祥见知生 | [下载](https://url89.ctfile.com/f/31084289-1357052851-3d9768?p=8866) |\n| 公园生活 | 吉田修一 | [下载](https://url89.ctfile.com/f/31084289-1357052704-8e3824?p=8866) |\n| 怦然心动的人生整理魔法 | 近藤麻理惠 | [下载](https://url89.ctfile.com/f/31084289-1357052008-1e4ed5?p=8866) |\n| 怦然心动的人生整理魔法2 | 近藤麻理惠 | [下载](https://url89.ctfile.com/f/31084289-1357051894-74540a?p=8866) |\n| 美之地图 | 米哈埃拉・诺洛茨 | [下载](https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866) |\n| 今天也要认真穿 | 黎贝卡 | [下载](https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866) |\n| 久坐不伤身 | 哈丽特・格里菲 | [下载](https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866) |\n| 终身创造力 | 斯科特・科克伦 | [下载](https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866) |\n| 睡个好觉 | 迈尔・克利格 | [下载](https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866) |\n| 风格的练习 | 艾莉森・沃尔什 | [下载](https://url89.ctfile.com/f/31084289-1357046617-f68956?p=8866) |\n| 人生十二法则 | 乔丹・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357045777-666438?p=8866) |\n| 精彩人生的一分钟小习惯 | 冲幸子 | [下载](https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866) |\n| 雅舍谈吃 | 梁实秋 | [下载](https://url89.ctfile.com/f/31084289-1357044742-1db99f?p=8866) |\n| 食帖21：酒的全事典 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866) |\n| 家的书 | 考薇 | [下载](https://url89.ctfile.com/f/31084289-1357043968-3b8fae?p=8866) |\n| 食帖19：下午茶时间到 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866) |\n| 买买买的乐趣 | 山内麻里子 | [下载](https://url89.ctfile.com/f/31084289-1357043890-8d74b4?p=8866) |\n| 食帖17：蔬菜多好吃啊 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866) |\n| 食帖16：大满足！就爱锅料理 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866) |\n| 食帖13：腐的品格 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866) |\n| 食帖14：小聚会教科书 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866) |\n| 食帖10：早餐，真的太重要了 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866) |\n| 食帖11：美食漫画万岁 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866) |\n| 食帖12：厨房，治愈人生的避难所 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866) |\n| 食帖08：自给自足指南书 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866) |\n| 食帖04：肉!肉!肉! | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866) |\n| 食帖05：全宇宙都在吃甜品 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866) |\n| 食帖03：食鲜最高 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866) |\n| 大杯咖啡经济学 | 吉本佳生 | [下载](https://url89.ctfile.com/f/31084289-1357041637-5af127?p=8866) |\n| 26城记 | 蔡天新 | [下载](https://url89.ctfile.com/f/31084289-1357041553-844f75?p=8866) |\n| 健康零食：知道这些就够了 | 戴尔・沃勒 | [下载](https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866) |\n| 啤博士的啤酒札记 | 太空精酿 | [下载](https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866) |\n| Unfu*k Yourself | Gary John Bishop | [下载](https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866) |\n| 神奇的肌肤能量书Ⅱ | 金柏莉・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1357039144-9df9ca?p=8866) |\n| 茶与茶器 | 静清和 | [下载](https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866) |\n| 10分钟扫除术 | 贝基・拉平竺 | [下载](https://url89.ctfile.com/f/31084289-1357036390-b0f5e3?p=8866) |\n| 巴黎美人 | 珍妮・达玛斯/劳伦・巴斯蒂德 | [下载](https://url89.ctfile.com/f/31084289-1357035805-4c9285?p=8866) |\n| 李开周说宋史套装（全3册） | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1357035601-6fcc4c?p=8866) |\n| 法式优雅 | 弗雷德里克・维塞 | [下载](https://url89.ctfile.com/f/31084289-1357034713-bd3171?p=8866) |\n| 学会吃饭 | 珍・克里斯特勒/艾莉莎・鲍曼 | [下载](https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866) |\n| 以色列的诞生（全四册） | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866) |\n| 断网生活 | 贾健 | [下载](https://url89.ctfile.com/f/31084289-1357033096-f85ae2?p=8866) |\n| 如何畅享啤酒 | 约翰・霍尔  | [下载](https://url89.ctfile.com/f/31084289-1357032259-138919?p=8866) |\n| 玩儿 | 于谦 | [下载](https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866) |\n| 就想开间小小咖啡馆 | 王森 | [下载](https://url89.ctfile.com/f/31084289-1357031806-c9aa38?p=8866) |\n| 就想开间自己的小店 | 夏小暖 | [下载](https://url89.ctfile.com/f/31084289-1357031782-511b94?p=8866) |\n| 猫头鹰的咖啡馆 | 佐拉 | [下载](https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866) |\n| 阅读蒙田，是为了生活 | 萨拉・贝克韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866) |\n| 小野兽 | 艾明雅 | [下载](https://url89.ctfile.com/f/31084289-1357030312-d9a911?p=8866) |\n| 和谐两性：从了解对方到相互吸引（套装共3册） | 埃德蒙・沙夫茨伯里 | [下载](https://url89.ctfile.com/f/31084289-1357029880-48513c?p=8866) |\n| 做二休五 | 大原扁理 | [下载](https://url89.ctfile.com/f/31084289-1357029772-21cd6b?p=8866) |\n| 一怒之下 | 杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357029214-6346e3?p=8866) |\n| You Are a Badass at Making Money | Jen Sincero | [下载](https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866) |\n| 再忙也要用心生活 | 凯莉・威廉斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357029148-7f3a80?p=8866) |\n| 基本穿搭 | 大山旬 | [下载](https://url89.ctfile.com/f/31084289-1357028179-6a7a86?p=8866) |\n| 那些伤不起的年轻人 | 二白 | [下载](https://url89.ctfile.com/f/31084289-1357027111-bfde42?p=8866) |\n| 笑林广记（作家榜经典文库） | 游戏主人 | [下载](https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866) |\n| 有风吹过厨房 | 食家饭 | [下载](https://url89.ctfile.com/f/31084289-1357025518-067637?p=8866) |\n| 知日12：断舍离 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025443-003ec0?p=8866) |\n| 知日24：杂货 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025368-2d5b91?p=8866) |\n| 耕种 食物 爱情 | 克里斯汀・金博尔 | [下载](https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866) |\n| 生活的哲学 | 朱尔斯・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357024624-690c6b?p=8866) |\n| 回答不了 | 匡扶 | [下载](https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866) |\n| 斯坦福的完美睡眠法 | 西野精致 | [下载](https://url89.ctfile.com/f/31084289-1357024213-e8d4ce?p=8866) |\n| 四维人类 | 劳伦斯・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357024183-b1d497?p=8866) |\n| 明年更年轻 | 克里斯・克劳利/亨利・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866) |\n| 好好说话2 | 马薇薇/黄执中/周玄毅等 | [下载](https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866) |\n| 明天我要去冰岛 | 嘉倩 | [下载](https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866) |\n| 极简 | 乔舒亚・贝克尔 | [下载](https://url89.ctfile.com/f/31084289-1357023433-7c8ffb?p=8866) |\n| 随园食单 | 袁枚 | [下载](https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866) |\n| 生活上瘾指南 | 姚瑶 | [下载](https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866) |\n| 写给孩子的山海经·鱼鸟篇 | 竹马书坊 | [下载](https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866) |\n| 鱼翅与花椒 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866) |\n| 不太多，不太少 | 罗拉・A.阿克斯特伦 | [下载](https://url89.ctfile.com/f/31084289-1357021063-bc15d6?p=8866) |\n| 生命最后的读书会 | 威尔・施瓦尔贝 | [下载](https://url89.ctfile.com/f/31084289-1357019641-a06ea5?p=8866) |\n| 生命中最美好的事都是免费的 | 尼尔・帕斯理查 | [下载](https://url89.ctfile.com/f/31084289-1357019473-2bce99?p=8866) |\n| 囚徒健身全集（共4册） | 保罗・威德 | [下载](https://url89.ctfile.com/f/31084289-1357019035-5dda2c?p=8866) |\n| Furiously Happy | Jenny Lawson | [下载](https://url89.ctfile.com/f/31084289-1357018477-7d1e06?p=8866) |\n| 重塑幸福：如何活成你想要的模样 | 马克・曼森 | [下载](https://url89.ctfile.com/f/31084289-1357018303-5054fe?p=8866) |\n| 现代艺术150年 | 威尔・贡培兹 | [下载](https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866) |\n| 岛上来信 | 胡子 | [下载](https://url89.ctfile.com/f/31084289-1357016458-b787f9?p=8866) |\n| 你好，小确幸 | 加肥猫 | [下载](https://url89.ctfile.com/f/31084289-1357016305-40563d?p=8866) |\n| 咖啡 咖啡 | 齐鸣 | [下载](https://url89.ctfile.com/f/31084289-1357015963-7019a0?p=8866) |\n| 把这瓶开了！ | 玛德琳・帕克特/贾斯汀琳・海默克 | [下载](https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866) |\n| 世界咖啡学 | 韩怀宗 | [下载](https://url89.ctfile.com/f/31084289-1357015366-f832b2?p=8866) |\n| 咖啡咖啡处处开 | 杰里米・托茨/史蒂文・马卡东尼亚 | [下载](https://url89.ctfile.com/f/31084289-1357015165-adf5d0?p=8866) |\n| 婚姻的意义 | 提摩太・凯勒 | [下载](https://url89.ctfile.com/f/31084289-1357014898-c319af?p=8866) |\n| 维多利亚时代的互联网 | 汤姆・斯坦迪奇 | [下载](https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866) |\n| 丹麦人为什么幸福 | 迈克・维金 | [下载](https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866) |\n| 断舍离 | 山下英子 | [下载](https://url89.ctfile.com/f/31084289-1357014298-651b59?p=8866) |\n| 蔡康永的说话之道 | 蔡康永 | [下载](https://url89.ctfile.com/f/31084289-1357014031-30040b?p=8866) |\n| 睡眠革命 | 尼克・利特尔黑尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866) |\n| 飞乐鸟的手绘旅行笔记：厦门 | 飞乐鸟 | [下载](https://url89.ctfile.com/f/31084289-1357013413-f83cc9?p=8866) |\n| 老两口儿的驼峰之旅 | 维多利亚・特威德 | [下载](https://url89.ctfile.com/f/31084289-1357013344-7beb9e?p=8866) |\n| 老两口儿的世外桃源 | 维多利亚・特威德 | [下载](https://url89.ctfile.com/f/31084289-1357013326-79c181?p=8866) |\n| 老两口儿的狂欢 | 维多利亚・特威德 | [下载](https://url89.ctfile.com/f/31084289-1357013329-02ec90?p=8866) |\n| 去，你的旅行 | 阿Sam | [下载](https://url89.ctfile.com/f/31084289-1357013356-e5707c?p=8866) |\n| 这书能让你戒烟 | 亚伦・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357011292-5c7edf?p=8866) |\n| 怪咖的自我修养 | 闫景歌 | [下载](https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866) |\n| 暖食：质朴的味道，家的味道 | 蔡澜 | [下载](https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866) |\n| 人人时代 | 克莱・舍基  | [下载](https://url89.ctfile.com/f/31084289-1357009798-cd52c6?p=8866) |\n| 极简主义：活出生命真意 | 乔舒亚・菲尔茨・米尔本/瑞安・尼科迪默斯  | [下载](https://url89.ctfile.com/f/31084289-1357009297-d4db9c?p=8866) |\n| 趣味生活简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357009129-cb7825?p=8866) |\n| 我在底层的生活 | 芭芭拉・艾伦瑞克 | [下载](https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866) |\n| 背包十年 | 小鹏 | [下载](https://url89.ctfile.com/f/31084289-1357008046-5998df?p=8866) |\n| 上午咖啡下午茶 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357007926-7e7392?p=8866) |\n| 培养最棒的女孩 | 赵子墨 | [下载](https://url89.ctfile.com/f/31084289-1357007701-b147b9?p=8866) |\n| 好好说话 | 学诚法师 | [下载](https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866) |\n| 跑步圣经：我跑故我在 | 乔治・希恩 | [下载](https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866) |\n| 上海秘境 | TimeOut 上海 | [下载](https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866) |\n| 抽烟喝酒防癌书 | 柳垂亮/李万瑶  | [下载](https://url89.ctfile.com/f/31084289-1357007020-4eeab1?p=8866) |\n| 白说 | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866) |\n| 乖，摸摸头 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866) |\n"
  },
  {
    "path": "md/生物.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 生物\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 生命的起源 | 刘大可 | [下载](https://url89.ctfile.com/f/31084289-1375497466-2034fd?p=8866) |\n| 我们为什么长这样 | 爱丽丝・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866) |\n| 在病毒中生存 | 苗德岁 | [下载](https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866) |\n| 5分钟生物课 | 冯智 | [下载](https://url89.ctfile.com/f/31084289-1375511134-5ad126?p=8866) |\n| 生命是什么：活细胞的物理观 | 埃尔温・薛定谔 | [下载](https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866) |\n| 生命是什么：40亿年生命史诗的开端 | 埃迪・普罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357003546-7d4c71?p=8866) |\n| 致命接触（第二版） | 大卫・奎曼 | [下载](https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866) |\n| 基因与命运 | 斯蒂芬·J.海涅 | [下载](https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866) |\n| 生命之源 | 尼克・連恩 | [下载](https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866) |\n| 极端生存 | 史蒂芬・帕鲁比/安东尼・帕鲁比 | [下载](https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866) |\n| 我包罗万象 | 埃德・扬 | [下载](https://url89.ctfile.com/f/31084289-1357043266-561836?p=8866) |\n| 创世记 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866) |\n| 反本能生存学 | 李・戈德曼 | [下载](https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866) |\n| 科学元典套装（五） | 惠更斯等 | [下载](https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866) |\n| 人类的算法 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866) |\n| 驯化 | 艾丽丝・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866) |\n| 动物城邦系列（共四册） | 伯特・霍尔多布勒等 | [下载](https://url89.ctfile.com/f/31084289-1357030435-d80ab8?p=8866) |\n| 龙：一种未明的动物（增订本） | 马小星 | [下载](https://url89.ctfile.com/f/31084289-1357028452-c59106?p=8866) |\n| 美的进化 | 理查德·O.普鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866) |\n| 生命密码 | 尹烨 | [下载](https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866) |\n| 缤纷的生命 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866) |\n| 刘易斯·托马斯作品（共5册） | 刘易斯・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866) |\n| 基因、大脑和人类潜能 | 肯・理查森 | [下载](https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866) |\n| 重新设计生命 | 约翰・帕林顿 | [下载](https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866) |\n| 盲眼钟表匠 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866) |\n| 未完成的进化 | 凯文・拉兰德 | [下载](https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866) |\n| 人类存在的意义 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866) |\n| 生命的未来：从双螺旋到合成生命 | 克雷格・文特尔 | [下载](https://url89.ctfile.com/f/31084289-1357020724-9f0385?p=8866) |\n| 百科通识全系列大套装（共49本） | 安德鲁・巴兰坦等 | [下载](https://url89.ctfile.com/f/31084289-1357020376-81a38d?p=8866) |\n| 上帝的手术刀 | 王立铭 | [下载](https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866) |\n| 基因传 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866) |\n| 地球上最伟大的表演 | 理查德・毛姆道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866) |\n| 与机器赛跑 | 埃里克・布林约尔松 | [下载](https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866) |\n| 生命是什么 | 王立铭 | [下载](https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866) |\n| 致命接触：全球大型传染病探秘之旅 | 大卫·奎曼  | [下载](https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866) |\n"
  },
  {
    "path": "md/生物学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 生物学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 老鼠、虱子和历史 | 汉斯・辛瑟尔 | [下载](https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866) |\n| 人人都该懂的遗传学 | 伯顿・格特曼等 | [下载](https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866) |\n| 为什么需要生物学思维 | 塞缪尔・阿贝斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357033675-b4a2a6?p=8866) |\n| 病毒星球 | 卡尔・齐默 | [下载](https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866) |\n"
  },
  {
    "path": "md/用户.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 用户\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 用户的本质 | 史蒂文・范・贝莱格姆 | [下载](https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866) |\n| 引爆用户增长 | 黄天文 | [下载](https://url89.ctfile.com/f/31084289-1357016125-7b3129?p=8866) |\n"
  },
  {
    "path": "md/甲午.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 甲午\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 甲午两甲子：忆与思 | 姜鸣/贾葭 | [下载](https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866) |\n| 甲午殇思 | 刘声东 | [下载](https://url89.ctfile.com/f/31084289-1357009177-e05cf4?p=8866) |\n"
  },
  {
    "path": "md/甲午战争.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 甲午战争\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 重读甲午：中日国运大对决 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357012939-c8481b?p=8866) |\n"
  },
  {
    "path": "md/甲骨文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 甲骨文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 甲骨文有故事 | 许进雄 | [下载](https://url89.ctfile.com/f/31084289-1375512556-901413?p=8866) |\n| 谜一样的清明上河图（精致版） | 野岛刚 | [下载](https://url89.ctfile.com/f/31084289-1357035433-9e1141?p=8866) |\n| 无情的革命 | 乔伊斯・阿普尔比 | [下载](https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866) |\n| 甲午两甲子：忆与思 | 姜鸣/贾葭 | [下载](https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866) |\n"
  },
  {
    "path": "md/电商.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 电商\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 亚马逊效应 | 娜塔莉・伯格/米娅・奈茨 | [下载](https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866) |\n| 破绽：风口上的独角兽 | 陈歆磊 | [下载](https://url89.ctfile.com/f/31084289-1357045051-608a4b?p=8866) |\n| 11.11如何卖到一个亿 | 陈炉均/陈威/马国良 | [下载](https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866) |\n"
  },
  {
    "path": "md/电子商务.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 电子商务\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 转化率实战技巧从入门到精通 | 营销铁军 | [下载](https://url89.ctfile.com/f/31084289-1375510741-6aef3c?p=8866) |\n| 揭秘跨境电商 | 李鹏博 | [下载](https://url89.ctfile.com/f/31084289-1357028146-739f5b?p=8866) |\n| 跨境电商宝典（套装共2册） | 孙韬/老魏 | [下载](https://url89.ctfile.com/f/31084289-1357021741-39f857?p=8866) |\n| 一键下单：杰夫·贝佐斯与亚马逊的崛起 | 理查德・勃兰特 | [下载](https://url89.ctfile.com/f/31084289-1357018510-e51af2?p=8866) |\n"
  },
  {
    "path": "md/电影.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 电影\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 读电影·百年奥斯卡佳片品鉴（套装3册） | 杨晓林 | [下载](https://url89.ctfile.com/f/31084289-1375503820-7cf8c0?p=8866) |\n| 詹姆斯·卡梅隆的科幻故事 | 兰德尔・弗雷克斯 | [下载](https://url89.ctfile.com/f/31084289-1375509604-3a44ff?p=8866) |\n| 新媒体的语言 | 列夫・马诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866) |\n| 电影意志 | 王小鲁 | [下载](https://url89.ctfile.com/f/31084289-1375512109-561eca?p=8866) |\n| 煮海时光 | 白睿文 | [下载](https://url89.ctfile.com/f/31084289-1375513129-02d351?p=8866) |\n| 我们与恶的距离 | 吕莳媛 | [下载](https://url89.ctfile.com/f/31084289-1357002985-472c7f?p=8866) |\n| 绘色 | 葛亮 | [下载](https://url89.ctfile.com/f/31084289-1357002856-21b3da?p=8866) |\n| 定义邪典电影 | 马克・扬克维奇 | [下载](https://url89.ctfile.com/f/31084289-1357002151-9c4719?p=8866) |\n| 有点意思 | 黄渤 | [下载](https://url89.ctfile.com/f/31084289-1357000483-0f32e7?p=8866) |\n| 电影的元素 | 罗伯特・伯德 | [下载](https://url89.ctfile.com/f/31084289-1356996553-12e06b?p=8866) |\n| 吉卜力的伙伴们 | 铃木敏夫 | [下载](https://url89.ctfile.com/f/31084289-1356994822-c08285?p=8866) |\n| 两个人的车站 | 埃・韦・布拉金斯基/埃・亚・梁赞诺夫 | [下载](https://url89.ctfile.com/f/31084289-1356990322-dc54b3?p=8866) |\n| 我的最后叹息 | 路易斯・布努艾尔 | [下载](https://url89.ctfile.com/f/31084289-1356986086-5a0f0e?p=8866) |\n| 我与戛纳 | 蒂耶里・福茂 | [下载](https://url89.ctfile.com/f/31084289-1356985870-c471df?p=8866) |\n| 电影（牛津通识读本） | 迈克尔・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866) |\n| 如何用手机拍一部电影 | 英国Little White Lies编辑部 | [下载](https://url89.ctfile.com/f/31084289-1357050172-c91b3c?p=8866) |\n| 电影冷知识 | 许立衡/张凯淯 | [下载](https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866) |\n| 双子杀手 | 泰坦图书 | [下载](https://url89.ctfile.com/f/31084289-1357047988-81f498?p=8866) |\n| 大象席地而坐 | 胡迁 | [下载](https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866) |\n| 我是开豆腐店的，我只做豆腐 | 小津安二郎 | [下载](https://url89.ctfile.com/f/31084289-1357035157-62d9ec?p=8866) |\n| 魔灯（全译本） | 英格玛・伯格曼 | [下载](https://url89.ctfile.com/f/31084289-1357034596-72fe39?p=8866) |\n| 光影里的梦幻与真实 | 郑实 | [下载](https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866) |\n| 知日40：步履不停，是枝裕和 | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1357031917-82a810?p=8866) |\n| 电影是什么？ | 安德烈・巴赞 | [下载](https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866) |\n| 危险地活着 | 汉斯・舒茨 | [下载](https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866) |\n| 如何聊电影 | 安・霍纳迪 | [下载](https://url89.ctfile.com/f/31084289-1357029709-5cea62?p=8866) |\n| 我知道你们又来这一套 | 罗杰・伊伯特 | [下载](https://url89.ctfile.com/f/31084289-1357028974-b269a9?p=8866) |\n| HBO的内容战略 | 小比尔・梅西 | [下载](https://url89.ctfile.com/f/31084289-1357026886-3c5154?p=8866) |\n| 如何欣赏一部电影 | 托马斯・福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357022224-caab80?p=8866) |\n| 对白：文字、舞台、银幕的言语行为艺术 | 罗伯特・麦基 | [下载](https://url89.ctfile.com/f/31084289-1357018612-e3095d?p=8866) |\n| 世界电影史（套装共3册） | 杰弗里・诺维尔・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357017265-9718d5?p=8866) |\n| “雅众·影事”之日本导演系列（套装共4册） | 今敏/大岛渚等 | [下载](https://url89.ctfile.com/f/31084289-1357017130-8dc1b4?p=8866) |\n| 与火同行：大卫·林奇谈电影 | 大卫・林奇/克里斯・罗德雷 | [下载](https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866) |\n| 香港电影史记 | 魏君子 | [下载](https://url89.ctfile.com/f/31084289-1357006993-4a082b?p=8866) |\n"
  },
  {
    "path": "md/电竞.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 电竞\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 密室困游鱼 | 墨宝非宝 | [下载](https://url89.ctfile.com/f/31084289-1357032955-deb293?p=8866) |\n| 蜜汁炖鱿鱼 | 墨宝非宝 | [下载](https://url89.ctfile.com/f/31084289-1357032229-530e18?p=8866) |\n| 电竞生态 | 王萌/路江涌/李晓峰 | [下载](https://url89.ctfile.com/f/31084289-1357031110-a06f35?p=8866) |\n| 电竞经济 | 蔡湫雨 | [下载](https://url89.ctfile.com/f/31084289-1357029121-564941?p=8866) |\n"
  },
  {
    "path": "md/画册.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 画册\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 朝暮集 | 呼葱觅蒜/白落梅 | [下载](https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866) |\n| 西方绘画大师经典佳作：梵高 | 牛雪彤/唐一帆 | [下载](https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866) |\n| 西方绘画大师经典佳作：莫奈 | 牛雪彤/唐一帆 | [下载](https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866) |\n| 西方绘画大师原作：塞尚 | 牛雪彤/唐一帆 | [下载](https://url89.ctfile.com/f/31084289-1357026727-604405?p=8866) |\n"
  },
  {
    "path": "md/留学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 留学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 镀金时代 | 夏清影 | [下载](https://url89.ctfile.com/f/31084289-1357032676-8550ac?p=8866) |\n| 猫眼看美国 | 聂平 | [下载](https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866) |\n"
  },
  {
    "path": "md/疗愈.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 疗愈\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 缺爱 | 罗伯特・纳伯格 | [下载](https://url89.ctfile.com/f/31084289-1357048741-415f94?p=8866) |\n| 这不是你的错 | 马克・沃林恩 | [下载](https://url89.ctfile.com/f/31084289-1357026988-306901?p=8866) |\n"
  },
  {
    "path": "md/疫苗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 疫苗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 疫苗竞赛 | 梅雷迪丝・瓦德曼 | [下载](https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866) |\n| 免疫 | 尤拉・比斯 | [下载](https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866) |\n"
  },
  {
    "path": "md/疾病.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 疾病\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人类大瘟疫 | 马克・霍尼斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866) |\n| 传染病的文化史 | 洛伊斯·N.玛格纳 | [下载](https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866) |\n"
  },
  {
    "path": "md/病毒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 病毒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 在病毒中生存 | 苗德岁 | [下载](https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866) |\n| 致命敌人 | 迈克尔·T.奥斯特霍姆 | [下载](https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866) |\n| 血殇 | 理查德・普雷斯顿 | [下载](https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866) |\n| 花冠病毒 | 毕淑敏 | [下载](https://url89.ctfile.com/f/31084289-1357049548-85c3c0?p=8866) |\n| 新型冠状病毒感染防护 | 何剑峰/宋铁 | [下载](https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866) |\n| 病毒星球 | 卡尔・齐默 | [下载](https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866) |\n| 血疫：埃博拉的故事 | 理查德・普雷斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866) |\n"
  },
  {
    "path": "md/瘟疫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 瘟疫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 瘟疫周期 | 查尔斯・肯尼 | [下载](https://url89.ctfile.com/f/31084289-1375508044-93a44f?p=8866) |\n| 瘟疫与人 | 威廉・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357020880-aa080f?p=8866) |\n"
  },
  {
    "path": "md/癌症.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 癌症\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 癌症·免疫与治愈 | 迈克尔・金奇 | [下载](https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866) |\n| 深呼吸：菠萝解密肺癌 | 李治中 | [下载](https://url89.ctfile.com/f/31084289-1357035556-2eaf53?p=8866) |\n| 她说：菠萝解密乳腺癌 | 李治中 | [下载](https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866) |\n| 每个人的战争 | 大卫・塞尔旺・施莱伯 | [下载](https://url89.ctfile.com/f/31084289-1357020205-f17668?p=8866) |\n| 癌症科普（套装共2册） | 李治中 | [下载](https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866) |\n| 癌症·真相 | 菠萝 | [下载](https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866) |\n| 众病之王：癌症传 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866) |\n"
  },
  {
    "path": "md/百科.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 百科\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 外研社百科通识文库（世界万象大套装共114本） | 伏尔泰等 | [下载](https://url89.ctfile.com/f/31084289-1375502542-168165?p=8866) |\n| 给孩子的清宫兽谱 | 小海/夏雪 | [下载](https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866) |\n| 给孩子的清宫鸟谱 | 小海 | [下载](https://url89.ctfile.com/f/31084289-1356990010-138e10?p=8866) |\n| 伊林经典科普小丛书（套装4册） | 伊林 | [下载](https://url89.ctfile.com/f/31084289-1356985759-492e78?p=8866) |\n| 自然万物科普百科（套装共2册） | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866) |\n| 夜航船 | 张岱 | [下载](https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866) |\n| 希利尔儿童世界地理 | 希利尔/休伊  | [下载](https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866) |\n| 美国儿科学会育儿百科（第6版） | 斯蒂文・谢尔弗 | [下载](https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866) |\n| 中华传统文化大百科套装50册 | 刘心莲等 | [下载](https://url89.ctfile.com/f/31084289-1357008472-a35cc3?p=8866) |\n| 定本育儿百科 | 松田道雄 | [下载](https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866) |\n"
  },
  {
    "path": "md/皮肤.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 皮肤\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 神奇的肌肤能量书 | 金柏莉・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1357038670-c2a947?p=8866) |\n| 皮肤的秘密 | 耶尔・阿德勒  | [下载](https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866) |\n"
  },
  {
    "path": "md/盗墓.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 盗墓\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 天坑宝藏 | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1356985273-7ce1df?p=8866) |\n| 沙海：荒沙诡影 | 南派三叔 | [下载](https://url89.ctfile.com/f/31084289-1357020958-faed28?p=8866) |\n| 沙海2：沙蟒蛇巢 | 南派三叔 | [下载](https://url89.ctfile.com/f/31084289-1357020952-c06183?p=8866) |\n| 盗墓笔记（插图版） | 南派三叔 | [下载](https://url89.ctfile.com/f/31084289-1357005646-e7641b?p=8866) |\n| 传古奇术（套装共四册） | 未六羊 | [下载](https://url89.ctfile.com/f/31084289-1357005541-573834?p=8866) |\n| 鬼吹灯全集（插图版） | 天下霸唱 | [下载](https://url89.ctfile.com/f/31084289-1357004863-5bc405?p=8866) |\n"
  },
  {
    "path": "md/盗墓笔记.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 盗墓笔记\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 藏海花漫画套装（全六册） | 南派三叔 | [下载](https://url89.ctfile.com/f/31084289-1356997207-658fc2?p=8866) |\n"
  },
  {
    "path": "md/直销.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 直销\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 丰盛人生：安利创始人理查・狄维士自传 | 理查・狄维士 | [下载](https://url89.ctfile.com/f/31084289-1357007446-4f7db5?p=8866) |\n"
  },
  {
    "path": "md/相对论.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 相对论\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 相对论之路 | 哈诺赫・古特弗罗因德/于尔根・雷恩 | [下载](https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866) |\n"
  },
  {
    "path": "md/睡眠.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 睡眠\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 关灯就睡觉 | 格雷格·D·贾克布 | [下载](https://url89.ctfile.com/f/31084289-1375491976-465249?p=8866) |\n| 拯救你的睡眠 | 阿里安娜・赫芬顿 | [下载](https://url89.ctfile.com/f/31084289-1375499422-0ad975?p=8866) |\n| 脑子不会好好睡 | 盖伊・勒施齐纳 | [下载](https://url89.ctfile.com/f/31084289-1375509061-ceecea?p=8866) |\n| 伴你一生的睡眠指导书 | 爱丽丝・格雷戈里 | [下载](https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866) |\n| 干掉失眠 | 科琳・恩斯特朗姆/阿丽莎・布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866) |\n| 如何睡个好觉 | 劳伦斯·J. 爱泼斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866) |\n| 久坐不伤身 | 哈丽特・格里菲 | [下载](https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866) |\n| 睡个好觉 | 迈尔・克利格 | [下载](https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866) |\n| 催眠二十八讲 | 威廉姆・韦斯利・库克 | [下载](https://url89.ctfile.com/f/31084289-1357024915-d17460?p=8866) |\n| 法伯睡眠宝典 | 理查德・法伯 | [下载](https://url89.ctfile.com/f/31084289-1357011148-584292?p=8866) |\n"
  },
  {
    "path": "md/矛盾.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 矛盾\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 子夜（果麦经典） | 茅盾 | [下载](https://url89.ctfile.com/f/31084289-1357000102-ac0b0d?p=8866) |\n| 人世间（全三册） | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357038496-ed84a7?p=8866) |\n"
  },
  {
    "path": "md/知乎.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 知乎\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知乎一小时「补课系列」套装 | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357011235-8d096d?p=8866) |\n| 近视怎么办：眼科医生教你正确配镜和治疗 | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357007638-12f9a2?p=8866) |\n| 金钱有术 | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866) |\n| 创业时，我们在知乎聊什么？ | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357005787-856cdb?p=8866) |\n"
  },
  {
    "path": "md/知日.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 知日\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知日46：东京就是日本！ | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1357047952-aa1e1c?p=8866) |\n| 知日52：BGM之魂 | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1357047412-210b95?p=8866) |\n| 知日40：步履不停，是枝裕和 | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1357031917-82a810?p=8866) |\n"
  },
  {
    "path": "md/知识.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 知识\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知识社会中的大学 | 杰勒德・德兰迪 | [下载](https://url89.ctfile.com/f/31084289-1357004371-45c9cb?p=8866) |\n| 创造知识的实践 | 野中郁次郎/西原文乃 | [下载](https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866) |\n| 创造知识的方法论 | 野中郁次郎/绀野登 | [下载](https://url89.ctfile.com/f/31084289-1356991945-e87f6d?p=8866) |\n| 夜航船 | 张岱 | [下载](https://url89.ctfile.com/f/31084289-1357026280-2a32f2?p=8866) |\n| 知识大迁移 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357019845-51d7de?p=8866) |\n| 知识变现 | 萧秋水/剽悍一只猫 | [下载](https://url89.ctfile.com/f/31084289-1357018279-eb39b7?p=8866) |\n| 小学问 | 黄执中/周玄毅等 | [下载](https://url89.ctfile.com/f/31084289-1357017124-975340?p=8866) |\n"
  },
  {
    "path": "md/知青.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 知青\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中国知青口述史 | 刘小萌 | [下载](https://url89.ctfile.com/f/31084289-1357009201-91fa5a?p=8866) |\n| 失落的一代：中国的上山下乡运动1968-1980 | 潘鸣啸 | [下载](https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866) |\n| 中国知青史·初澜（1953～1968） | 定宜庄 | [下载](https://url89.ctfile.com/f/31084289-1357005901-a687f1?p=8866) |\n| 中国知青史·大潮（1966～1980） | 刘小萌 | [下载](https://url89.ctfile.com/f/31084289-1357005904-f54b50?p=8866) |\n"
  },
  {
    "path": "md/短篇.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 短篇\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 失意者酒馆 | 曹畅洲 | [下载](https://url89.ctfile.com/f/31084289-1357048543-ac1644?p=8866) |\n| 埃梅短篇小说精选 | 马塞尔・埃梅 | [下载](https://url89.ctfile.com/f/31084289-1357046686-e8fde9?p=8866) |\n| 被猜死的人 | 田耳 | [下载](https://url89.ctfile.com/f/31084289-1357036468-e0797b?p=8866) |\n| 一个陌生女人的来信（读客经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866) |\n| 背对世界 | 埃尔克・海登莱希 | [下载](https://url89.ctfile.com/f/31084289-1357031692-85e059?p=8866) |\n| 冬泳 | 班宇 | [下载](https://url89.ctfile.com/f/31084289-1357024318-af87d7?p=8866) |\n"
  },
  {
    "path": "md/短视频.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 短视频\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 创意短视频策划、推广、引流、爆粉与变现全能攻略 | 肖恩・卡内尔/本吉・特拉维斯 | [下载](https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866) |\n| 15秒的商机 | 胡涵林 | [下载](https://url89.ctfile.com/f/31084289-1357051903-88c85f?p=8866) |\n"
  },
  {
    "path": "md/石油.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 石油\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 石油的时代 | 王能全 | [下载](https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866) |\n| 石油战争 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866) |\n"
  },
  {
    "path": "md/石黑一雄.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 石黑一雄\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| The Buried Giant | Kazuo Ishiguro | [下载](https://url89.ctfile.com/f/31084289-1357016653-9a3edb?p=8866) |\n| Never Let Me Go | Kazuo Ishiguro | [下载](https://url89.ctfile.com/f/31084289-1357013593-c4885e?p=8866) |\n| The Remains of the Day | Kazuo Ishiguro | [下载](https://url89.ctfile.com/f/31084289-1357013581-23b14c?p=8866) |\n"
  },
  {
    "path": "md/破案.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 破案\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 天涯双探3：古画寻踪 | 七名 | [下载](https://url89.ctfile.com/f/31084289-1357044214-07f96d?p=8866) |\n| 尸案调查科系列（全5册） | 九滴水 | [下载](https://url89.ctfile.com/f/31084289-1357006516-d902b7?p=8866) |\n"
  },
  {
    "path": "md/硅谷.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 硅谷\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 硅谷搅局者 | 莱斯利・柏林 | [下载](https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866) |\n| 硅谷之火（第3版） | 迈克尔・斯韦因/保罗・弗赖伯格 | [下载](https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866) |\n| 混乱的猴子 | 安东尼奥・加西亚・马丁内斯 | [下载](https://url89.ctfile.com/f/31084289-1357043758-daa7b0?p=8866) |\n| 硅谷帝国 | 露西・格林 | [下载](https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866) |\n| Bad Blood | John Carreyrou | [下载](https://url89.ctfile.com/f/31084289-1357024663-88d5e5?p=8866) |\n| 硅谷百年史 | 阿伦・拉奥/皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866) |\n| 这里改变世界：硅谷成功创新之谜 | 黛博拉・佩里・皮肖内 | [下载](https://url89.ctfile.com/f/31084289-1357012039-dac3b7?p=8866) |\n| Elon Musk | Ashlee Vance | [下载](https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866) |\n"
  },
  {
    "path": "md/礼学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 礼学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 周礼（全本全注全译） | 徐正英/常佩雨 | [下载](https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866) |\n"
  },
  {
    "path": "md/社交.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 社交\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一旦能放声嘲笑自己，你就自由了 | 梅丽莎・达尔 | [下载](https://url89.ctfile.com/f/31084289-1375499704-86a34e?p=8866) |\n| 可复制的沟通力 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866) |\n| 无压力社交 | 吉莉恩・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1375512292-5b84b2?p=8866) |\n| 朋友圈的人际高手 | 诸葛思远 | [下载](https://url89.ctfile.com/f/31084289-1356997123-04d286?p=8866) |\n| 高效沟通的100种方法 | 王利利 | [下载](https://url89.ctfile.com/f/31084289-1356996181-799df3?p=8866) |\n| 内向心理学 | 西尔维亚・洛肯 | [下载](https://url89.ctfile.com/f/31084289-1356991714-0881f2?p=8866) |\n| 亲切的艺术 | 凯莉・威廉斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866) |\n| 世界没有陌生人 | 洪洁 | [下载](https://url89.ctfile.com/f/31084289-1356990346-669e7d?p=8866) |\n| 诚实的信号 | 阿莱克斯・彭特兰 | [下载](https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866) |\n| 有意识的社交 | 肯・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357054297-134471?p=8866) |\n| 精简社交 | 莫拉格・巴雷特 | [下载](https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866) |\n| 所谓情商高，就是会说话 | 佐佐木圭一 | [下载](https://url89.ctfile.com/f/31084289-1357051300-93b8c2?p=8866) |\n| 沟通赢家 | 徐丽丽 | [下载](https://url89.ctfile.com/f/31084289-1357049902-070654?p=8866) |\n| 牛津式高效沟通 | 冈田昭人 | [下载](https://url89.ctfile.com/f/31084289-1357049764-daf2f8?p=8866) |\n| 受益一生的六本书（套装六册） | 鬼谷子等 | [下载](https://url89.ctfile.com/f/31084289-1357048375-6faf9f?p=8866) |\n| 我们为什么会说脏话？ | 埃玛・伯恩 | [下载](https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866) |\n| 如何结交比你更优秀的人 | 康妮 | [下载](https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866) |\n| 从受欢迎到被需要 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357033780-0124f0?p=8866) |\n| 10秒沟通 | 荒木真理子 | [下载](https://url89.ctfile.com/f/31084289-1357032049-c8544d?p=8866) |\n| 好好说话第一步 | 麦克▪P.尼可斯 | [下载](https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866) |\n| 好好说话2 | 马薇薇/黄执中/周玄毅等 | [下载](https://url89.ctfile.com/f/31084289-1357023565-2c9eb4?p=8866) |\n| 逻辑说服力 | 陈浩 | [下载](https://url89.ctfile.com/f/31084289-1357020013-f61abe?p=8866) |\n| 披着羊皮的狼 | 乔治.K.西蒙 | [下载](https://url89.ctfile.com/f/31084289-1357018948-a7cfe4?p=8866) |\n| 如何实现有效社交 | 凯伦・伯格 | [下载](https://url89.ctfile.com/f/31084289-1357018606-3ed13e?p=8866) |\n| 至关重要的关系 | 里德・霍夫曼/本・卡斯诺瓦 | [下载](https://url89.ctfile.com/f/31084289-1357018369-4bb227?p=8866) |\n| 再也不怕跟人打交道 | 莉尔・朗兹 | [下载](https://url89.ctfile.com/f/31084289-1357017346-709daf?p=8866) |\n| 社交的本质 | 兰迪・扎克伯格 | [下载](https://url89.ctfile.com/f/31084289-1357017229-842413?p=8866) |\n| 社交天性 | 马修・利伯曼 | [下载](https://url89.ctfile.com/f/31084289-1357015453-2d3770?p=8866) |\n| 蔡康永的说话之道 | 蔡康永 | [下载](https://url89.ctfile.com/f/31084289-1357014031-30040b?p=8866) |\n| 解决冲突的关键技巧 | 达纳・卡斯帕森 | [下载](https://url89.ctfile.com/f/31084289-1357011205-94db6d?p=8866) |\n| 魔鬼搭讪学 | 魔鬼咨询师 | [下载](https://url89.ctfile.com/f/31084289-1357008955-2d8a9c?p=8866) |\n| 魔鬼约会学 | 魔鬼咨询师 | [下载](https://url89.ctfile.com/f/31084289-1357008952-8a6737?p=8866) |\n| 沟通的艺术 | 罗纳德・阿德勒/拉塞尔・普罗克特  | [下载](https://url89.ctfile.com/f/31084289-1357007599-0cfe43?p=8866) |\n| 魔力四射：如何打动、亲近和影响他人 | 帕特里克・金 | [下载](https://url89.ctfile.com/f/31084289-1357007509-2c24b0?p=8866) |\n| 跟任何人都聊得来 | 迈克・贝克特尔 | [下载](https://url89.ctfile.com/f/31084289-1357007068-9dafb2?p=8866) |\n| 陌生的中国人 | 杨猛 | [下载](https://url89.ctfile.com/f/31084289-1357005721-fc7d62?p=8866) |\n"
  },
  {
    "path": "md/社会.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 社会\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 现代政治的正当性基础 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1375491484-c06fa6?p=8866) |\n| 地狱里的希望 | 丹・波托洛蒂 | [下载](https://url89.ctfile.com/f/31084289-1375492060-2c8fad?p=8866) |\n| 贾雷德·戴蒙德作品集（套装共4册） | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866) |\n| 吉姆·罗杰斯的大预测 | 吉姆・罗杰斯 | [下载](https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866) |\n| 温铁军套装（共5册） | 温铁军 | [下载](https://url89.ctfile.com/f/31084289-1375493437-a29263?p=8866) |\n| 网上遗产 | 伊莱恩・卡斯凯特 | [下载](https://url89.ctfile.com/f/31084289-1375493404-9f5bf0?p=8866) |\n| 俄国史译（全7册） | 伊利娜・谢尔盖耶夫娜・雷巴乔诺克等 | [下载](https://url89.ctfile.com/f/31084289-1375493761-ea4345?p=8866) |\n| 运气的诱饵 | 娜塔莎・道・舒尔 | [下载](https://url89.ctfile.com/f/31084289-1375493695-e4930e?p=8866) |\n| 在中国大地上 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866) |\n| 单身偏见 | 克莱尔・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1375493863-2752fc?p=8866) |\n| 身体的历史（三卷本） | 乔治・维加埃罗等 | [下载](https://url89.ctfile.com/f/31084289-1375494961-7ca170?p=8866) |\n| 阿拉伯“革命”隐藏的另一面 | 埃里克・德尼西 | [下载](https://url89.ctfile.com/f/31084289-1375496482-040f62?p=8866) |\n| 压裂的底层 | 伊丽莎・格里斯沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1375497073-d5a61b?p=8866) |\n| 工作的意义 | 詹姆斯・苏兹曼 | [下载](https://url89.ctfile.com/f/31084289-1375497598-753d90?p=8866) |\n| 大国合集（套装共4册） | 余玮等 | [下载](https://url89.ctfile.com/f/31084289-1375497739-6909f1?p=8866) |\n| 郑永年论中国系列（套装6册） | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866) |\n| 新乌合之众 | 迈赫迪・穆萨伊德 | [下载](https://url89.ctfile.com/f/31084289-1375497907-396975?p=8866) |\n| 权力 | 德博拉・格林菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1375498009-cbe216?p=8866) |\n| 从零开始的女性主义 | 上野千鹤子/田房永子 | [下载](https://url89.ctfile.com/f/31084289-1375498135-bec29a?p=8866) |\n| 十种人性 | 德克斯特・迪亚斯 | [下载](https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866) |\n| 利益相关者 | 克劳斯・施瓦布/彼得・万哈姆 | [下载](https://url89.ctfile.com/f/31084289-1375498156-b93f87?p=8866) |\n| 北欧：冰与火之地的寻真之旅 | 迈克尔・布斯 | [下载](https://url89.ctfile.com/f/31084289-1375498264-40e9d6?p=8866) |\n| 韦伯作品集（套装9册） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1375498366-dfd378?p=8866) |\n| 人口大逆转 | 查尔斯・古德哈特/马诺杰・普拉丹 | [下载](https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866) |\n| 厌女：日本的女性嫌恶 | 上野千鹤子 | [下载](https://url89.ctfile.com/f/31084289-1375498933-3437c3?p=8866) |\n| 身份政治 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1375499002-9f16d0?p=8866) |\n| 碳中和时代 | 汪军 | [下载](https://url89.ctfile.com/f/31084289-1375499221-bf6b0d?p=8866) |\n| 反内卷 | 黄徽 | [下载](https://url89.ctfile.com/f/31084289-1375499245-6c8e89?p=8866) |\n| 老后两代破产 | NHK特别节目录制组 | [下载](https://url89.ctfile.com/f/31084289-1375499251-4a9792?p=8866) |\n| 大加速：1945年以来人类世的环境史 | 约翰·R.麦克尼尔等 | [下载](https://url89.ctfile.com/f/31084289-1375499380-1d1f87?p=8866) |\n| 我是主播 | 国谷裕子 | [下载](https://url89.ctfile.com/f/31084289-1375499404-105834?p=8866) |\n| 大转向：世界如何步入现代 | 斯蒂芬・格林布拉特 | [下载](https://url89.ctfile.com/f/31084289-1375499458-d00b10?p=8866) |\n| 共有的习惯 | E.P. 汤普森 | [下载](https://url89.ctfile.com/f/31084289-1375500268-020026?p=8866) |\n| 精英的傲慢 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1375500601-accc90?p=8866) |\n| 单读26：全球真实故事集 | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1375500649-4348f2?p=8866) |\n| 私立小学闯关记 | 槙原久美子 | [下载](https://url89.ctfile.com/f/31084289-1375500793-2c71ca?p=8866) |\n| 破茧 | 施展 | [下载](https://url89.ctfile.com/f/31084289-1375500925-acb6ff?p=8866) |\n| 夹缝生存：不堪重负的中产家庭 | 阿莉莎・夸特 | [下载](https://url89.ctfile.com/f/31084289-1375501354-ff97b8?p=8866) |\n| 如何像人类学家一样思考·鹈鹕丛书 | 马修・恩格尔克 | [下载](https://url89.ctfile.com/f/31084289-1375501426-4e56e5?p=8866) |\n| 高中生穷忙族 | NHK特别节目录制组 | [下载](https://url89.ctfile.com/f/31084289-1375501642-8081e6?p=8866) |\n| 一套书读懂中国人文社会（套装共8册） | 冯友兰等 | [下载](https://url89.ctfile.com/f/31084289-1375502341-52b551?p=8866) |\n| 欧美名校通识课（第一辑）（套装7册） | 亨利·M.塞尔等 | [下载](https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866) |\n| 基层女性 | 王慧玲 | [下载](https://url89.ctfile.com/f/31084289-1375503280-8b980f?p=8866) |\n| 一套书理解中国（套装共15册） | 蔡昉等 | [下载](https://url89.ctfile.com/f/31084289-1375506709-9a88fd?p=8866) |\n| 外研社百科通识大套装·社会卷（共49本） | 柏拉图等 | [下载](https://url89.ctfile.com/f/31084289-1375507051-2a2f7d?p=8866) |\n| 美国的反智传统 | 理查德・霍夫施塔特 | [下载](https://url89.ctfile.com/f/31084289-1375506823-0cc3c2?p=8866) |\n| 人为何物 | 王一江 | [下载](https://url89.ctfile.com/f/31084289-1375507411-9a3746?p=8866) |\n| 锥形帐篷的起源 | 喬尼・休斯 | [下载](https://url89.ctfile.com/f/31084289-1375507432-99ca3f?p=8866) |\n| 殿军：山一证券最后的12人 | 清武英利 | [下载](https://url89.ctfile.com/f/31084289-1375507573-379911?p=8866) |\n| 川菜 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866) |\n| 百科通识文库：西方学科奠基精选大套装（套装共88本） | 柏拉图等 | [下载](https://url89.ctfile.com/f/31084289-1375508041-895ae1?p=8866) |\n| 无隐私时代 | 阿奇科・布希 | [下载](https://url89.ctfile.com/f/31084289-1375508872-0496be?p=8866) |\n| 国际政治精品文库精选套装（套装11册） | 塞缪尔・亨廷顿等 | [下载](https://url89.ctfile.com/f/31084289-1375509124-80f0aa?p=8866) |\n| 虚无时代 | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866) |\n| 龙王的嬗变 | 杨德爱/杨跃雄 | [下载](https://url89.ctfile.com/f/31084289-1375509319-b9f6e6?p=8866) |\n| 百年南开日本研究文库（共18册） | 吴廷璆等 | [下载](https://url89.ctfile.com/f/31084289-1375509472-9832f9?p=8866) |\n| 那些特别善于表达自己观点的女人们 | 米歇尔・迪安 | [下载](https://url89.ctfile.com/f/31084289-1375509370-466dcd?p=8866) |\n| 发现阴阳道 | 山下克明 | [下载](https://url89.ctfile.com/f/31084289-1375509379-3c5bbd?p=8866) |\n| 马克斯·韦伯：跨越时代的人生 | 于尔根・考伯 | [下载](https://url89.ctfile.com/f/31084289-1375509481-7f34ec?p=8866) |\n| 改变或免疫 | 戴维・迈尔斯/琼・特韦奇 | [下载](https://url89.ctfile.com/f/31084289-1375509568-e95089?p=8866) |\n| 城市与压力 | 马兹达・阿德里 | [下载](https://url89.ctfile.com/f/31084289-1375509655-c19810?p=8866) |\n| 日本还是第一吗 | 傅高义 | [下载](https://url89.ctfile.com/f/31084289-1375509790-9c9f84?p=8866) |\n| 新文化运动史料丛编 | 孙郁 | [下载](https://url89.ctfile.com/f/31084289-1375510201-42c727?p=8866) |\n| 风雨横渡 | 西蒙・沙玛 | [下载](https://url89.ctfile.com/f/31084289-1375510204-4a529b?p=8866) |\n| 失信：公共卫生体系的崩溃 | 劳丽・加勒特 | [下载](https://url89.ctfile.com/f/31084289-1375510282-6f16d7?p=8866) |\n| 被绑架的心灵 | 戴维・凯斯勒 | [下载](https://url89.ctfile.com/f/31084289-1375510372-1db3f6?p=8866) |\n| 乐观而不绝望 | 诺姆・乔姆斯基 | [下载](https://url89.ctfile.com/f/31084289-1375510429-5ca9fe?p=8866) |\n| 重新发现日本：60处日本最美古建筑之旅 | 矶达雄/宫泽洋 | [下载](https://url89.ctfile.com/f/31084289-1375510525-107c20?p=8866) |\n| 女性的时刻 | 梅琳达・盖茨 | [下载](https://url89.ctfile.com/f/31084289-1375510522-eaa879?p=8866) |\n| 清华社会学讲义（全四册） | 李强等 | [下载](https://url89.ctfile.com/f/31084289-1375510564-1079f3?p=8866) |\n| 桑切斯的孩子们 | 奥斯卡・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1375510819-58d021?p=8866) |\n| 亚洲家族物语 | 濑户正人 | [下载](https://url89.ctfile.com/f/31084289-1375510855-c0b32b?p=8866) |\n| 下流社会 | 三浦展 | [下载](https://url89.ctfile.com/f/31084289-1375510957-9e78c5?p=8866) |\n| 别睡，这里有蛇 | 丹尼尔・埃弗里特 | [下载](https://url89.ctfile.com/f/31084289-1375510891-4ad519?p=8866) |\n| 单身社会 | 伊利亚金・奇斯列夫 | [下载](https://url89.ctfile.com/f/31084289-1375511056-3aa444?p=8866) |\n| 低欲望社会 | 大前研一 | [下载](https://url89.ctfile.com/f/31084289-1375511137-51d5bb?p=8866) |\n| 六论自发性 | 詹姆斯·C. 斯科特 | [下载](https://url89.ctfile.com/f/31084289-1375511248-9f9016?p=8866) |\n| 承认：一部欧洲观念史 | 阿克塞尔・霍耐特 | [下载](https://url89.ctfile.com/f/31084289-1375511263-1a153b?p=8866) |\n| 神好多的日本 | 山口谣司 | [下载](https://url89.ctfile.com/f/31084289-1375511602-3b109c?p=8866) |\n| 人类学讲义稿 | 王铭铭 | [下载](https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866) |\n| 从部落到国家 | 马克·W. 莫菲特 | [下载](https://url89.ctfile.com/f/31084289-1375511962-90a78c?p=8866) |\n| 伯林传 | 叶礼庭 | [下载](https://url89.ctfile.com/f/31084289-1375512067-e53a08?p=8866) |\n| 小镇美国 | 罗伯特・伍斯诺 | [下载](https://url89.ctfile.com/f/31084289-1375512082-f8d626?p=8866) |\n| 气候经济与人类未来 | 比尔・盖茨 | [下载](https://url89.ctfile.com/f/31084289-1375512229-68d76f?p=8866) |\n| 秩序与历史（套装全五卷） | 埃里克・沃格林 | [下载](https://url89.ctfile.com/f/31084289-1375513159-e66ba2?p=8866) |\n| 通俗心理学百科合集（套装共18册） | 约翰・华生等 | [下载](https://url89.ctfile.com/f/31084289-1375513492-f070e3?p=8866) |\n| 女性贫困 | NHK特别节目录制组 | [下载](https://url89.ctfile.com/f/31084289-1375513486-69ca43?p=8866) |\n| 消失的古城 | 王笛 | [下载](https://url89.ctfile.com/f/31084289-1375513591-99df08?p=8866) |\n| 沉默的铁证 | 安吉拉・盖洛普/简・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1375513696-53c951?p=8866) |\n| 大局观 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1375513711-251b40?p=8866) |\n| 为什么是中国 | 金一南 | [下载](https://url89.ctfile.com/f/31084289-1375513717-116ed5?p=8866) |\n| 智慧未来 | 李开复 | [下载](https://url89.ctfile.com/f/31084289-1375513735-fe1296?p=8866) |\n| 地缘政治三部曲 | 罗伯特·D.卡普兰等 | [下载](https://url89.ctfile.com/f/31084289-1375513753-cc4d25?p=8866) |\n| 美国怎么了 | 安妮・凯斯/安格斯・迪顿 | [下载](https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866) |\n| 极端经济 | 理查德・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375513786-ca7531?p=8866) |\n| 下沉年代 | 乔治・帕克 | [下载](https://url89.ctfile.com/f/31084289-1375513777-106914?p=8866) |\n| 第一印象手册 | 柳沼佐千子 | [下载](https://url89.ctfile.com/f/31084289-1375513798-47c741?p=8866) |\n| 朱鹮的遗言 | 小林照幸 | [下载](https://url89.ctfile.com/f/31084289-1357004575-299851?p=8866) |\n| 变量3 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357004476-186d31?p=8866) |\n| 我们内心的冲突（果麦经典） | 卡伦・霍妮 | [下载](https://url89.ctfile.com/f/31084289-1357004464-e0bf3e?p=8866) |\n| 香帅财富报告 | 香帅 | [下载](https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866) |\n| 超级社会 | 彼得・图尔钦 | [下载](https://url89.ctfile.com/f/31084289-1357004446-8c0263?p=8866) |\n| 社会设计 | 笕裕介 | [下载](https://url89.ctfile.com/f/31084289-1357004068-5f7fdc?p=8866) |\n| 《纽约时报》是怎么做新闻的 | 尼基・阿瑟 | [下载](https://url89.ctfile.com/f/31084289-1357003819-60e127?p=8866) |\n| 重返美丽新世界 | 阿道司・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357003570-70aa54?p=8866) |\n| 欧盟的危机 | 尤尔根・哈贝马斯 | [下载](https://url89.ctfile.com/f/31084289-1357003513-5860cb?p=8866) |\n| 父权制与资本主义 | 上野千鹤子 | [下载](https://url89.ctfile.com/f/31084289-1357003507-3f7b6a?p=8866) |\n| 百年变局 | 王文 | [下载](https://url89.ctfile.com/f/31084289-1357003465-977d4c?p=8866) |\n| 美国革命的激进主义 | 戈登·S.伍德 | [下载](https://url89.ctfile.com/f/31084289-1357003327-20516e?p=8866) |\n| 民主的不满 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357002877-aa1c66?p=8866) |\n| 历史的温度5 | 张玮 | [下载](https://url89.ctfile.com/f/31084289-1357002667-68b506?p=8866) |\n| 死亡的视线 | 刘易斯・M.科恩 | [下载](https://url89.ctfile.com/f/31084289-1357002592-e3895f?p=8866) |\n| 浮生 | 刘汀 | [下载](https://url89.ctfile.com/f/31084289-1357002565-c62a12?p=8866) |\n| 东西街 | 菲利普・桑兹 | [下载](https://url89.ctfile.com/f/31084289-1357002484-3fc686?p=8866) |\n| 回归故里 | 迪迪埃・埃里蓬 | [下载](https://url89.ctfile.com/f/31084289-1357002355-543671?p=8866) |\n| 把自己作为方法 | 项飙 | [下载](https://url89.ctfile.com/f/31084289-1357002262-18b150?p=8866) |\n| 我的二本学生 | 黄灯 | [下载](https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866) |\n| 绝对欲望，绝对奇异 | 马克弟 | [下载](https://url89.ctfile.com/f/31084289-1357002109-90cc9f?p=8866) |\n| 饱食穷民 | 斋藤茂男 | [下载](https://url89.ctfile.com/f/31084289-1357001761-d44b46?p=8866) |\n| 科学作为天职 | 李猛 | [下载](https://url89.ctfile.com/f/31084289-1357001632-142eb7?p=8866) |\n| 颜色的故事 | 加文・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866) |\n| 性经验史（3卷本） | 米歇尔・福柯 | [下载](https://url89.ctfile.com/f/31084289-1357001113-170e8b?p=8866) |\n| 日本权力结构之谜 | 卡瑞尔・范・沃尔夫伦 | [下载](https://url89.ctfile.com/f/31084289-1357000906-aafbe6?p=8866) |\n| 他者的消失 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357000279-32504e?p=8866) |\n| 倦怠社会 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1356999751-ac5097?p=8866) |\n| 好老师，坏老师 | 达娜・戈德斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866) |\n| 右派国家（新版） | 约翰・米克尔思韦特/阿德里安・伍尔德里奇 | [下载](https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866) |\n| 许倬云说美国 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866) |\n| 美国独行 | 马克・斯坦恩 | [下载](https://url89.ctfile.com/f/31084289-1356997540-afe385?p=8866) |\n| 美国监狱 | 肖恩・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866) |\n| 资本主义的未来 | 保罗・科利尔 | [下载](https://url89.ctfile.com/f/31084289-1356997324-2dab97?p=8866) |\n| 新美国 | 弗雷德里克・洛根・帕克森 | [下载](https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866) |\n| 英雄与母亲 | C.G. 荣格 | [下载](https://url89.ctfile.com/f/31084289-1356996685-df9910?p=8866) |\n| 国家的视角 | 詹姆斯·C.斯科特 | [下载](https://url89.ctfile.com/f/31084289-1356996523-b7c691?p=8866) |\n| 喧哗的大多数 | 艾伦・雅各布斯 | [下载](https://url89.ctfile.com/f/31084289-1356995443-5d0afe?p=8866) |\n| 新基建：全球大变局下的中国经济新引擎 | 任泽平/马家进/连一席 | [下载](https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866) |\n| 财富千年史 | 辛西娅・克罗森 | [下载](https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866) |\n| 巨兽：工厂与现代世界的形成 | 乔舒亚・B.弗里曼 | [下载](https://url89.ctfile.com/f/31084289-1356995212-a5b02f?p=8866) |\n| 历史的镜子（全新修订版） | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1356995107-b2e29c?p=8866) |\n| 中国人史纲 | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1356994801-344c47?p=8866) |\n| 斯坦福社会创新评论合集（套装共9册） | 斯坦福社会创新评论编辑部 | [下载](https://url89.ctfile.com/f/31084289-1356994753-a11713?p=8866) |\n| 床的人类史 | 布莱恩・费根/纳迪亚・杜兰尼 | [下载](https://url89.ctfile.com/f/31084289-1356994714-fb4ffa?p=8866) |\n| 不让生育的社会 | 小林美希 | [下载](https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866) |\n| 安身立命 | 许纪霖 | [下载](https://url89.ctfile.com/f/31084289-1356994618-4ed8ff?p=8866) |\n| 一个利他主义者之死 | 奥伦・哈曼 | [下载](https://url89.ctfile.com/f/31084289-1356994531-bf36d7?p=8866) |\n| 煤气灯效应 | 罗宾・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1356993625-04fc09?p=8866) |\n| 岩波：日本社会写实精选系列 | 森冈孝二等 | [下载](https://url89.ctfile.com/f/31084289-1356993460-3e8452?p=8866) |\n| 参与的力量 | 慎泰俊 | [下载](https://url89.ctfile.com/f/31084289-1356992248-f3bcbb?p=8866) |\n| 当代中国学术思想史（套装共19卷） | 成一农等 | [下载](https://url89.ctfile.com/f/31084289-1356992233-2c2864?p=8866) |\n| 历史性的体制 | 弗朗索瓦・阿赫托戈 | [下载](https://url89.ctfile.com/f/31084289-1356992128-b9fa52?p=8866) |\n| 女性与权力 | 玛丽・比尔德 | [下载](https://url89.ctfile.com/f/31084289-1356991975-4c57b0?p=8866) |\n| 国会政体 | 伍德罗・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866) |\n| 公司与将军 | 亚当・克卢洛 | [下载](https://url89.ctfile.com/f/31084289-1356991738-0e7446?p=8866) |\n| 共同体的焚毁 | 希利斯・米勒 | [下载](https://url89.ctfile.com/f/31084289-1356991525-c08881?p=8866) |\n| 全球不平等逸史 | 布兰科・米兰诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1356991216-73f59c?p=8866) |\n| 好的经济学 | 阿比吉特・班纳吉/埃斯特・迪弗洛 | [下载](https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866) |\n| 中国治理 | 罗家德 | [下载](https://url89.ctfile.com/f/31084289-1356990442-a8b499?p=8866) |\n| 业余者说 | 王人博 | [下载](https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866) |\n| 原罪、梦想与霸权 | 维克多・基尔南 | [下载](https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866) |\n| 一座城市，一部历史 | 李永石等 | [下载](https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866) |\n| 香港社会三部曲 | 刘兆佳 | [下载](https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866) |\n| 耶鲁古文明发现史 | 布莱恩・费根 | [下载](https://url89.ctfile.com/f/31084289-1356989986-64a34d?p=8866) |\n| 剧变 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866) |\n| 美国人与中国人 | 许烺光 | [下载](https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866) |\n| 李光耀观天下 | 李光耀 | [下载](https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866) |\n| 神圣家族 | 梁鸿 | [下载](https://url89.ctfile.com/f/31084289-1356987097-c13163?p=8866) |\n| 网络战争 | 查尔斯・亚瑟 | [下载](https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866) |\n| 未来的处方 | 伊齐基尔・伊曼纽尔 | [下载](https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866) |\n| 未来三十年（修订版） | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1356986467-d00263?p=8866) |\n| 数据驱动的智能城市 | 史蒂芬・戈德史密斯/苏珊・克劳福德 | [下载](https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866) |\n| 客观知识（二十世纪西方哲学经典） | 卡尔・波普尔 | [下载](https://url89.ctfile.com/f/31084289-1356985501-f55e56?p=8866) |\n| 像哲学家一样生活 | 威廉·B.欧文 | [下载](https://url89.ctfile.com/f/31084289-1356985492-fda843?p=8866) |\n| 礼物的流动 | 阎云翔 | [下载](https://url89.ctfile.com/f/31084289-1356985465-3e6908?p=8866) |\n| 语言的诞生 | 丹尼尔·L. 埃弗雷特 | [下载](https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866) |\n| 享乐主义宣言 | 米歇尔・翁福雷 | [下载](https://url89.ctfile.com/f/31084289-1356985336-4cdc66?p=8866) |\n| 日本世相系列（套装共2册） | 斋藤茂男 | [下载](https://url89.ctfile.com/f/31084289-1356985222-bd140a?p=8866) |\n| 身边的逻辑学 | 伯纳・派顿 | [下载](https://url89.ctfile.com/f/31084289-1356985057-68506c?p=8866) |\n| 社会与经济 | 马克・格兰诺维特 | [下载](https://url89.ctfile.com/f/31084289-1356984793-a39f61?p=8866) |\n| 腐败（牛津通识读本） | 莱斯利・霍姆斯 | [下载](https://url89.ctfile.com/f/31084289-1356984613-d3354c?p=8866) |\n| 新教伦理与资本主义精神 | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356983953-db891f?p=8866) |\n| 经济与社会（全二卷）新版 | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356983944-d80749?p=8866) |\n| 崩溃：社会如何选择成败兴亡 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356984235-e50cb6?p=8866) |\n| 腐败：人性与文化 | 克里斯・肖尔/迪特尔・哈勒 | [下载](https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866) |\n| 鹈鹕丛书（共6册） | 罗宾・邓巴等 | [下载](https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866) |\n| 新情商 | 丹尼尔・戈尔曼 | [下载](https://url89.ctfile.com/f/31084289-1356983293-c99a50?p=8866) |\n| 重口味心理学2 | 姚尧 | [下载](https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866) |\n| 士大夫政治演生史稿 | 阎步克 | [下载](https://url89.ctfile.com/f/31084289-1357053769-fa35a3?p=8866) |\n| 广场与高塔 | 尼尔・弗格森 | [下载](https://url89.ctfile.com/f/31084289-1357053496-3c88ef?p=8866) |\n| 日本人的画像 | 李长声 | [下载](https://url89.ctfile.com/f/31084289-1357053013-a69c08?p=8866) |\n| 变量2 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357052989-6d9cbb?p=8866) |\n| 景观社会 | 居伊・德波 | [下载](https://url89.ctfile.com/f/31084289-1357052653-164a75?p=8866) |\n| 专家之死 | 托马斯・尼科尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357052356-47c0eb?p=8866) |\n| 正午1：我穿墙过去 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866) |\n| 人类网络 | 马修・杰克逊 | [下载](https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866) |\n| 无缘社会 | 日本NHK特别节目录制组 | [下载](https://url89.ctfile.com/f/31084289-1357051867-337e7a?p=8866) |\n| 群氓的狂欢 | 塞奇・莫斯科维奇 | [下载](https://url89.ctfile.com/f/31084289-1357051828-4c0ad5?p=8866) |\n| 何故为敌 | 卡罗琳・艾姆克 | [下载](https://url89.ctfile.com/f/31084289-1357051798-658124?p=8866) |\n| 化蝶：一个滇南小镇的政治史 | 刘永刚 | [下载](https://url89.ctfile.com/f/31084289-1357051804-1856d3?p=8866) |\n| 理论的危机 | 斯科特・汉密尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866) |\n| 内向思考 | 迈克尔・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357051690-a897e1?p=8866) |\n| 怎样管精力，就怎样过一生 | 奥迪尔・夏布里亚克 | [下载](https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866) |\n| 2020：用数据看懂中国发展 | 谢伏瞻等 | [下载](https://url89.ctfile.com/f/31084289-1357051561-41b087?p=8866) |\n| 出身：不平等的选拔与精英的自我复制 | 劳伦·A·里韦拉 | [下载](https://url89.ctfile.com/f/31084289-1357051546-baba5d?p=8866) |\n| 阶层跃迁 | 闫肖锋 | [下载](https://url89.ctfile.com/f/31084289-1357051423-630300?p=8866) |\n| 米塞斯评传 | 伊斯雷尔·M·柯兹纳 | [下载](https://url89.ctfile.com/f/31084289-1357051420-6f2e32?p=8866) |\n| 人类的价值 | 罗伯特・博伊德 | [下载](https://url89.ctfile.com/f/31084289-1357051105-4b4530?p=8866) |\n| 简斯维尔 | 艾米・戈德斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866) |\n| 经济与社会（全二卷） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866) |\n| 食货《金瓶梅》 | 侯会 | [下载](https://url89.ctfile.com/f/31084289-1357050868-bb8823?p=8866) |\n| 创造未来城市 | 迈克尔・巴蒂 | [下载](https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866) |\n| 独异性社会 | 安德雷亚斯・莱克维茨 | [下载](https://url89.ctfile.com/f/31084289-1357050682-32415f?p=8866) |\n| 国家、经济与大分流 | 皮尔・弗里斯 | [下载](https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866) |\n| 中国问题 | 伯特兰・罗素 | [下载](https://url89.ctfile.com/f/31084289-1357050541-91df0c?p=8866) |\n| 财富与权力 | 诺姆・乔姆斯基 | [下载](https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866) |\n| 汤因比著作集（套装全7册） | 阿诺德・汤因比 | [下载](https://url89.ctfile.com/f/31084289-1357050334-6d0812?p=8866) |\n| 网红养成记 | 吴清缘 | [下载](https://url89.ctfile.com/f/31084289-1357049926-102b70?p=8866) |\n| 奇特的传染 | 李・丹尼尔・克拉韦茨 | [下载](https://url89.ctfile.com/f/31084289-1357049605-d91e82?p=8866) |\n| 白领：美国的中产阶级 | 米尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357049386-35756b?p=8866) |\n| 正义的代价 | 劳伦斯・李默尔 | [下载](https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866) |\n| 社会心理学（第8版） | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357049308-87b7cb?p=8866) |\n| 一九八四（纪念版） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866) |\n| 汤姆斯河 | 丹・费金 | [下载](https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866) |\n| 5G时代：生活方式和商业模式的大变革 | 龟井卓也 | [下载](https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866) |\n| 酒鬼与圣徒 | 劳伦斯・奥斯本 | [下载](https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866) |\n| 终身创造力 | 斯科特・科克伦 | [下载](https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866) |\n| 大象席地而坐 | 胡迁 | [下载](https://url89.ctfile.com/f/31084289-1357046203-4b436e?p=8866) |\n| 论文化 | 特里・伊格尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357046062-20408c?p=8866) |\n| 暴力拓扑学 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357045756-006b45?p=8866) |\n| 牛津国际关系手册 | 罗伯特・基欧汉等 | [下载](https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866) |\n| 为什么中国人勤劳而不富有 | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866) |\n| 另一个欧洲 | 何力 | [下载](https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866) |\n| 不安的生活 | 何力 | [下载](https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866) |\n| 昨天的中国 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357044736-cc4c42?p=8866) |\n| 傻世界，笨生意 | 何力 | [下载](https://url89.ctfile.com/f/31084289-1357044727-92ea3a?p=8866) |\n| 我们最幸福 | 芭芭拉・德米克 | [下载](https://url89.ctfile.com/f/31084289-1357044277-f11ae8?p=8866) |\n| 为未知而教，为未来而学 | 戴维・珀金斯 | [下载](https://url89.ctfile.com/f/31084289-1357044265-3e1805?p=8866) |\n| 银元时代生活史 | 陈存仁 | [下载](https://url89.ctfile.com/f/31084289-1357044394-c5eff1?p=8866) |\n| 哈耶克作品（共6册） | 弗里德里希・奥古斯特・哈耶克 | [下载](https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866) |\n| 江湖中国 | 于阳 | [下载](https://url89.ctfile.com/f/31084289-1357043692-f33615?p=8866) |\n| 刺桐城 | 王铭铭 | [下载](https://url89.ctfile.com/f/31084289-1357043230-22a720?p=8866) |\n| 国学治要（套装共三册） | 张文治 | [下载](https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866) |\n| 光棍危机 | 瓦莱丽・M. 赫德森等 | [下载](https://url89.ctfile.com/f/31084289-1357042783-f1c3cb?p=8866) |\n| 法式诱惑 | 伊莱恩・西奥利诺 | [下载](https://url89.ctfile.com/f/31084289-1357042735-ace07c?p=8866) |\n| 不要害怕中国 | 菲利普・巴莱 | [下载](https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866) |\n| 蝶变：澳门博彩业田野叙事 | 刘昭瑞/霍志钊 | [下载](https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866) |\n| 论自愿为奴（译文经典） | 艾蒂安・德・拉・波埃西 | [下载](https://url89.ctfile.com/f/31084289-1357042240-18b5aa?p=8866) |\n| 购物凶猛 | 孙骁骥 | [下载](https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866) |\n| 不同的音调 | 约翰・唐文/凯伦・祖克 | [下载](https://url89.ctfile.com/f/31084289-1357042138-e866e0?p=8866) |\n| 打造消费天堂 | 连玲玲 | [下载](https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866) |\n| 吃肉喝酒飞奔 | 吴惠子 | [下载](https://url89.ctfile.com/f/31084289-1357041562-6e4a9f?p=8866) |\n| 感受中国（套装3本） | 李锦/任志刚/李新 | [下载](https://url89.ctfile.com/f/31084289-1357040905-1f77cd?p=8866) |\n| 贝希摩斯 | 托马斯・霍布斯 | [下载](https://url89.ctfile.com/f/31084289-1357040341-70f007?p=8866) |\n| 骨节 | 孙频 | [下载](https://url89.ctfile.com/f/31084289-1357040164-1a7571?p=8866) |\n| 西方的没落（译林人文精选） | 奥斯瓦尔德・斯宾格勒 | [下载](https://url89.ctfile.com/f/31084289-1357039663-e0d535?p=8866) |\n| 人性中的善与恶 | 阿比盖尔・马什 | [下载](https://url89.ctfile.com/f/31084289-1357039612-8d1c5f?p=8866) |\n| 空荡荡的地球 | 达雷尔・布里克/约翰・伊比特森 | [下载](https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866) |\n| 贫穷的本质（修订版） | 阿比吉特・班纳吉/埃斯特・迪弗洛 | [下载](https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866) |\n| 创世记 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866) |\n| 意会时刻 | 克里斯琴・马兹比尔格/米凯尔・拉斯马森 | [下载](https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866) |\n| 工作漂流 | 稻泉连 | [下载](https://url89.ctfile.com/f/31084289-1357037632-6132e7?p=8866) |\n| 第一声礼炮 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866) |\n| 李银河说爱情 | 李银河 | [下载](https://url89.ctfile.com/f/31084289-1357036396-f08416?p=8866) |\n| 民粹主义大爆炸 | 约翰・朱迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866) |\n| 西方政治思想的社会史：自由与财产 | 艾伦・梅克辛斯・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357036024-29a42c?p=8866) |\n| 大趋势 | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1357035364-75f8ce?p=8866) |\n| 从祖先到算法 | 亚历克斯・本特利 | [下载](https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866) |\n| 我想重新解释历史 | 吴思 | [下载](https://url89.ctfile.com/f/31084289-1357033837-7ecd82?p=8866) |\n| 深度预测 | 理查德·A·克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357033822-1e355a?p=8866) |\n| 社群的进化 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866) |\n| 不平等社会 | 沃尔特・沙伊德尔 | [下载](https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866) |\n| 贫穷的终结 | 安妮・罗瑞 | [下载](https://url89.ctfile.com/f/31084289-1357033516-85ae36?p=8866) |\n| 巨变：当代政治与经济的起源 | 卡尔・波兰尼 | [下载](https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866) |\n| 断裂的阶梯 | 基思・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866) |\n| 爱欲之死 | 韩炳哲 | [下载](https://url89.ctfile.com/f/31084289-1357033084-abadc2?p=8866) |\n| 低增长社会 | 大前研一 | [下载](https://url89.ctfile.com/f/31084289-1357032994-77e8ac?p=8866) |\n| 英国下层阶级的愤怒 | 戴伦・麦加维 | [下载](https://url89.ctfile.com/f/31084289-1357032574-2a5e18?p=8866) |\n| 暴力：思无所限 | 理查德·J.伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866) |\n| 全民蠢萌的美国 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866) |\n| 日本的细节 | 蒋丰 | [下载](https://url89.ctfile.com/f/31084289-1357032355-8598e5?p=8866) |\n| 贸易打造的世界 | 彭慕兰/史蒂文・托皮克 | [下载](https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866) |\n| 美丽新世界（译文经典） | 奥尔德斯・赫胥黎 | [下载](链接未找到) |\n| 学习力：颠覆职场学习的高效方法 | 王世民/缪志聪 | [下载](https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866) |\n| 忧郁的热带 | 克洛德·列维-斯特劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357032301-d94f6b?p=8866) |\n| 面对现代世界问题的人类学 | 克洛德·列维-斯特劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357032265-7d37d4?p=8866) |\n| 下游老人 | 藤田孝典 | [下载](https://url89.ctfile.com/f/31084289-1357032235-32dde2?p=8866) |\n| 自下而上 | 马特・里德利  | [下载](https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866) |\n| 理解媒介 | 马歇尔・麦克卢汉 | [下载](https://url89.ctfile.com/f/31084289-1357031776-144515?p=8866) |\n| 成为妮可 | 艾米・埃利斯・纳特 | [下载](https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866) |\n| 黑帮·贩毒集团神秘内幕（全五册） | 詹幼鹏等 | [下载](https://url89.ctfile.com/f/31084289-1357031308-31f32e?p=8866) |\n| 社交媒体简史 | 汤姆・斯丹迪奇 | [下载](https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866) |\n| 房奴 | 戴维・戴恩 | [下载](https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866) |\n| 自由在高处 | 熊培云 | [下载](链接未找到) |\n| 有闲阶级论 | 凡勃伦 | [下载](https://url89.ctfile.com/f/31084289-1357030537-777029?p=8866) |\n| 寻路中国 | 彼得・海斯勒 | [下载](https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866) |\n| 深蓝的故事 | 深蓝 | [下载](https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866) |\n| 崩溃 | 克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克 | [下载](https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866) |\n| 乌合之众（作家榜经典文库） | 古斯塔夫・勒庞 | [下载](https://url89.ctfile.com/f/31084289-1357030441-c14c47?p=8866) |\n| 亲和力 | 古宫昇 | [下载](https://url89.ctfile.com/f/31084289-1357030396-2465dd?p=8866) |\n| 谁统治美国？公司富豪的胜利 | 威廉・多姆霍夫 | [下载](https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866) |\n| 中国与中国人影像（增订版） | 约翰・汤姆逊 | [下载](https://url89.ctfile.com/f/31084289-1357030279-7e35db?p=8866) |\n| 一阅千年 | 马克・科尔兰斯基 | [下载](https://url89.ctfile.com/f/31084289-1357030069-f9e69e?p=8866) |\n| 我在现场 | 黄盈盈 | [下载](https://url89.ctfile.com/f/31084289-1357030039-700572?p=8866) |\n| 与古为徒和娟娟发屋 | 白谦慎 | [下载](https://url89.ctfile.com/f/31084289-1357030021-8772c8?p=8866) |\n| 社会理论的核心问题 | 安东尼・吉登斯 | [下载](https://url89.ctfile.com/f/31084289-1357029886-fe1bf2?p=8866) |\n| 天降之任：学术与政治 | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357029682-d3a753?p=8866) |\n| 谈判心理学 | 康木 | [下载](https://url89.ctfile.com/f/31084289-1357029664-32f6cd?p=8866) |\n| 袍哥 | 王笛 | [下载](https://url89.ctfile.com/f/31084289-1357029658-37cafe?p=8866) |\n| 媒介批评三部曲（套装共3册） | 尼尔・波斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357029637-888957?p=8866) |\n| 如何建立好人缘 | 谢湘萍 | [下载](https://url89.ctfile.com/f/31084289-1357029487-0d33a8?p=8866) |\n| 较量：乐观的经济学与悲观的生态学 | 保罗・萨宾 | [下载](https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866) |\n| 霍布斯鲍姆年代四部曲（套装共4册） | 艾瑞克・霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357029361-ff5c8f?p=8866) |\n| 人情、面子与权力的再生产（修订版） | 翟学伟 | [下载](https://url89.ctfile.com/f/31084289-1357029310-bc9143?p=8866) |\n| 如何研究中国（增订本） | 曹锦清 | [下载](https://url89.ctfile.com/f/31084289-1357029193-76f098?p=8866) |\n| 看不见的美国 | 珍妮・拉斯卡斯 | [下载](https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866) |\n| 穷忙 | 戴维・希普勒 | [下载](https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866) |\n| 论文与治学 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357029043-f29e28?p=8866) |\n| 平等之路 | 迈克尔·J.克拉曼 | [下载](https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866) |\n| 过剩之地 | 莫妮卡・普拉萨德 | [下载](https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866) |\n| 信息背后的信息 | 马克斯・巴泽曼 | [下载](https://url89.ctfile.com/f/31084289-1357028227-08a419?p=8866) |\n| 甲子1：中国60年民生记录 | 陈晓卿/朱乐贤 | [下载](https://url89.ctfile.com/f/31084289-1357028203-c24763?p=8866) |\n| 甲子2：中国60年民生记录 | 陈晓卿/朱乐贤 | [下载](https://url89.ctfile.com/f/31084289-1357028182-15b27e?p=8866) |\n| 甲子3：中国60年民生记录 | 陈晓卿/朱乐贤 | [下载](https://url89.ctfile.com/f/31084289-1357028176-a2cb1b?p=8866) |\n| 改变心理学 | 杰弗里・科特勒 | [下载](https://url89.ctfile.com/f/31084289-1357028140-76076d?p=8866) |\n| 孤独的帝国 | 波波・洛 | [下载](https://url89.ctfile.com/f/31084289-1357028137-04de6d?p=8866) |\n| 傅山的交往和应酬（增订本） | 白谦慎 | [下载](https://url89.ctfile.com/f/31084289-1357028113-e9791a?p=8866) |\n| 第二性（合卷本） | 西蒙娜・德・波伏瓦 | [下载](https://url89.ctfile.com/f/31084289-1357027966-86caf4?p=8866) |\n| 浮沉万象记 | 毛晓雯 | [下载](https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866) |\n| 单向度的人 | 赫伯特・马尔库塞 | [下载](https://url89.ctfile.com/f/31084289-1357027930-c2ca75?p=8866) |\n| 不再害羞 | 菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357027789-fbee3f?p=8866) |\n| 彩票中奖一亿元之后 | 铃木信行 | [下载](https://url89.ctfile.com/f/31084289-1357027702-53ccb6?p=8866) |\n| 我是个妈妈，我需要铂金包 | 温妮斯蒂・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357027687-a52575?p=8866) |\n| 平常的恶 | 朱迪丝·N.施克莱 | [下载](https://url89.ctfile.com/f/31084289-1357027648-d9850c?p=8866) |\n| 单读（01-10） | 许知远/肖海生 | [下载](https://url89.ctfile.com/f/31084289-1357027654-e73901?p=8866) |\n| 单读（11-15） | 吴琦 | [下载](https://url89.ctfile.com/f/31084289-1357027657-d9573b?p=8866) |\n| 单读16：新北京人 | 吴琦主编 | [下载](https://url89.ctfile.com/f/31084289-1357027591-a94676?p=8866) |\n| 合作的复杂性 | 罗伯特・阿克塞尔罗德 | [下载](https://url89.ctfile.com/f/31084289-1357027483-d1a1a3?p=8866) |\n| 日本新中产阶级 | 傅高义 | [下载](https://url89.ctfile.com/f/31084289-1357027330-ae5a2e?p=8866) |\n| 惡血 | 約翰・凱瑞魯 | [下载](https://url89.ctfile.com/f/31084289-1357027258-867926?p=8866) |\n| 弱传播 | 邹振东 | [下载](https://url89.ctfile.com/f/31084289-1357027201-40d002?p=8866) |\n| 秘密如何改变了我们的生活 | 朗达・拜恩 | [下载](https://url89.ctfile.com/f/31084289-1357027126-28eadf?p=8866) |\n| 一件T恤的全球经济之旅（原书第2版） | 皮厄特拉・里佛利 | [下载](https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866) |\n| 我们时代的精神状况 | 海因里希・盖瑟尔伯格 | [下载](https://url89.ctfile.com/f/31084289-1357026277-82d739?p=8866) |\n| 海胆 | 雷晓宇 | [下载](https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866) |\n| 洗钱内幕 | 姚耀/秋叶良和 | [下载](https://url89.ctfile.com/f/31084289-1357025722-0dbcb6?p=8866) |\n| 极简思维 | S.J. Scott/Barrie Davenport | [下载](https://url89.ctfile.com/f/31084289-1357025647-00ab62?p=8866) |\n| 下一个家在何方？ | 馬修・戴斯蒙 | [下载](https://url89.ctfile.com/f/31084289-1357025545-020e6e?p=8866) |\n| 谁偷走了美国梦 | 赫德里克・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357025536-ab13ba?p=8866) |\n| 吸引 | 瓦妮莎・范・爱德华兹 | [下载](https://url89.ctfile.com/f/31084289-1357025563-ca425f?p=8866) |\n| 燕南园往事 | 汤一介等 | [下载](https://url89.ctfile.com/f/31084289-1357025530-09fd76?p=8866) |\n| 街角的老北京 | 卢文龙 | [下载](https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866) |\n| 衣的现象学 | 鹫田清一 | [下载](https://url89.ctfile.com/f/31084289-1357025359-4d71c5?p=8866) |\n| 有话说 | 崔永元 | [下载](https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866) |\n| 知日29：偶像 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025353-47b33b?p=8866) |\n| 劫持 | 玛丽•K. 斯温格尔 | [下载](https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866) |\n| 我们的信任 | 布鲁斯・施奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357024999-0143fe?p=8866) |\n| 遇见日本 | 徐静波 | [下载](https://url89.ctfile.com/f/31084289-1357024732-43de40?p=8866) |\n| 地球的故事（果麦经典） | 亨德里克・威廉・房龙 | [下载](https://url89.ctfile.com/f/31084289-1357024774-f809b9?p=8866) |\n| 解读中国经济（增订版） | 林毅夫 | [下载](https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866) |\n| 永生的海拉 | 丽贝卡・思科鲁特 | [下载](https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866) |\n| 马航MH370失联十七天 | 陈功 | [下载](https://url89.ctfile.com/f/31084289-1357024450-32c0b3?p=8866) |\n| 美国式幸福 | 亚瑟·C.布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866) |\n| 椰壳碗外的人生 | 本尼迪克特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357024303-b81668?p=8866) |\n| 一代文学大师林语堂逝世40周年纪念典藏版（全18册） | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1357024327-391a41?p=8866) |\n| 看人的艺术 | 山姆・高斯林 | [下载](https://url89.ctfile.com/f/31084289-1357024294-65b337?p=8866) |\n| Never Split the Difference | Chris Voss/Tahl Raz | [下载](https://url89.ctfile.com/f/31084289-1357024258-60d859?p=8866) |\n| 网络心理学 | 玛丽・艾肯 | [下载](https://url89.ctfile.com/f/31084289-1357024027-d383d4?p=8866) |\n| 如何做出正确决定 | 乔纳・莱勒 | [下载](https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866) |\n| 态度改变与社会影响 | 菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357023853-1d340e?p=8866) |\n| 重返巴格达 | 唐师曾 | [下载](https://url89.ctfile.com/f/31084289-1357023856-5b4c01?p=8866) |\n| 语言风格的秘密 | 詹姆斯・彭尼贝克 | [下载](https://url89.ctfile.com/f/31084289-1357023781-4c8ac9?p=8866) |\n| 匠人 | 申赋渔 | [下载](https://url89.ctfile.com/f/31084289-1357023748-9674dd?p=8866) |\n| 身体不说谎 | 爱丽丝・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357023652-62bc2e?p=8866) |\n| 打工女孩 | 张彤禾 | [下载](https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866) |\n| 荒诞医学史 | 莉迪亚・康/内特・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866) |\n| 现实主义者的乌托邦 | 鲁特格尔・布雷格曼 | [下载](https://url89.ctfile.com/f/31084289-1357023271-cc8268?p=8866) |\n| 理解增长 | 道格拉斯・洛西科夫 | [下载](https://url89.ctfile.com/f/31084289-1357023250-ff1bb1?p=8866) |\n| 算法霸权 | 凯西・奥尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866) |\n| 一切与创造有关 | 奥古斯汀・富恩特斯 | [下载](https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866) |\n| 中国社会各阶层分析 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357022956-0c4ce7?p=8866) |\n| The Coddling of the American Mind | Greg Lukianoff/Jonathan Haidt | [下载](https://url89.ctfile.com/f/31084289-1357022932-efa525?p=8866) |\n| 公平之怒 | 理查德・威尔金森/凯特・皮克特 | [下载](https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866) |\n| 我们都发狂了 | 凯伦・乔伊・富勒 | [下载](https://url89.ctfile.com/f/31084289-1357022860-956833?p=8866) |\n| 东北游记 | 迈克尔・麦尔 | [下载](https://url89.ctfile.com/f/31084289-1357022509-9d7c84?p=8866) |\n| 格调（修订第3版） | 保罗・福塞尔 | [下载](https://url89.ctfile.com/f/31084289-1357022470-f9a015?p=8866) |\n| 王国与权力 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357022410-4ed181?p=8866) |\n| 大江大河（共4册） | 阿耐 | [下载](https://url89.ctfile.com/f/31084289-1357022380-6f84ee?p=8866) |\n| 铁道之旅 | 沃尔夫冈・希弗尔布施 | [下载](https://url89.ctfile.com/f/31084289-1357022107-1141df?p=8866) |\n| 发现民众 | 林红 | [下载](https://url89.ctfile.com/f/31084289-1357021852-b5cbe5?p=8866) |\n| 芬兰人的噩梦 | 卡罗利娜・科尔霍宁 | [下载](https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866) |\n| 亚裔美国的创生 | 李漪莲 | [下载](https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866) |\n| 今日简史 | 尤瓦尔・赫拉利 | [下载](https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866) |\n| Daring Greatly | Brene Brown | [下载](https://url89.ctfile.com/f/31084289-1357021633-af3ac8?p=8866) |\n| 场景：空间品质如何塑造社会生活 | 丹尼尔・亚伦・西尔/特里・尼科尔斯・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357021585-0b48ca?p=8866) |\n| 扫地出门：美国城市的贫穷与暴利 | 马修・德斯蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866) |\n| 娱乐至死 | 尼尔・波兹曼 | [下载](https://url89.ctfile.com/f/31084289-1357021261-711d62?p=8866) |\n| Our Kids | Robert D. Putnam | [下载](https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866) |\n| 黑箱社会 | 弗兰克・帕斯奎尔 | [下载](https://url89.ctfile.com/f/31084289-1357021171-9be5d6?p=8866) |\n| 战争、枪炮与选票 | 保罗・科利尔 | [下载](https://url89.ctfile.com/f/31084289-1357021162-f86e9b?p=8866) |\n| 国家构建 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357021159-d86f25?p=8866) |\n| 合作的进化 | 罗伯特・艾克斯罗德 | [下载](https://url89.ctfile.com/f/31084289-1357021090-b0978a?p=8866) |\n| 规模：复杂世界的简单法则 | 杰弗里・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357021036-fe84e6?p=8866) |\n| 雄性衰落 | 菲利普・津巴多/尼基塔・库隆布 | [下载](https://url89.ctfile.com/f/31084289-1357020970-224943?p=8866) |\n| 瘟疫与人 | 威廉・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357020880-aa080f?p=8866) |\n| 恶女：普通女性为何化身连环杀人狂 | 彼得・佛伦斯基 | [下载](https://url89.ctfile.com/f/31084289-1357020835-ba00af?p=8866) |\n| 金赛性学报告（男人篇&#038;女人篇） | 阿尔弗雷德・C.金赛 | [下载](https://url89.ctfile.com/f/31084289-1357020571-87df7c?p=8866) |\n| 丝路回响-文明的交融（套装共7册) | 三联生活周刊 | [下载](https://url89.ctfile.com/f/31084289-1357020697-bb72e0?p=8866) |\n| 能力都是逼出来的 | 布兰登・伯查德 | [下载](https://url89.ctfile.com/f/31084289-1357020433-eee874?p=8866) |\n| 美国独行：西方世界的末日 | 马克・斯坦恩 | [下载](https://url89.ctfile.com/f/31084289-1357020337-7905c5?p=8866) |\n| 认知盈余：自由时间的力量 | 克莱・舍基 | [下载](https://url89.ctfile.com/f/31084289-1357020253-b77fad?p=8866) |\n| 博弈与社会 | 张维迎 | [下载](https://url89.ctfile.com/f/31084289-1357020199-4cd873?p=8866) |\n| 知觉之门 | 阿道斯・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357019935-31f55b?p=8866) |\n| 蕾蒂西娅，或人类的终结 | 伊凡・雅布隆卡 | [下载](https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866) |\n| 同步：秩序如何从混沌中涌现 | 斯蒂芬・斯托加茨 | [下载](https://url89.ctfile.com/f/31084289-1357019755-1e9eae?p=8866) |\n| 中信国学大典：历史地理（上册） | 单周尧等 | [下载](https://url89.ctfile.com/f/31084289-1357019728-de9599?p=8866) |\n| 中信国学大典：历史地理（下册） | 张伟保等 | [下载](https://url89.ctfile.com/f/31084289-1357019734-e6e9b5?p=8866) |\n| 中信国学大典：诸子百家（上册） | 陈耀南男 | [下载](https://url89.ctfile.com/f/31084289-1357019713-a62b5d?p=8866) |\n| 中信国学大典：诸子百家（下册） | 趙善軒等 | [下载](https://url89.ctfile.com/f/31084289-1357019707-ed5d95?p=8866) |\n| 微粒社会 | 克里斯托夫・库克里克 | [下载](https://url89.ctfile.com/f/31084289-1357019575-e3c742?p=8866) |\n| 思维简史：从丛林到宇宙 | 伦纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357019542-7cb361?p=8866) |\n| 时间的悖论 | 菲利普・津巴多/约翰・博伊德 | [下载](https://url89.ctfile.com/f/31084289-1357019449-bf5895?p=8866) |\n| 后物欲时代的来临 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357019419-3b77fe?p=8866) |\n| 刺 | 李尚龙 | [下载](https://url89.ctfile.com/f/31084289-1357019266-96362f?p=8866) |\n| 中信国学大典：哲学宗教（下册） | 杨祖汉等 | [下载](https://url89.ctfile.com/f/31084289-1357019209-42a853?p=8866) |\n| 国家的兴衰 | 曼瑟・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1357019092-d58e9a?p=8866) |\n| 你不可不知的人性（全二册） | 刘墉 | [下载](https://url89.ctfile.com/f/31084289-1357018933-feb3e1?p=8866) |\n| 异类的天赋 | 凯文・达顿 | [下载](https://url89.ctfile.com/f/31084289-1357018588-2cb593?p=8866) |\n| 事实改变之后 | 托尼・朱特 | [下载](https://url89.ctfile.com/f/31084289-1357018498-25d054?p=8866) |\n| 高难度沟通 | 贾森・杰伊/加布里埃尔・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357018492-971649?p=8866) |\n| 为什么有的国家富裕，有的国家贫穷 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357018243-d98729?p=8866) |\n| 西方的兴起 | 威廉・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357017958-a45d43?p=8866) |\n| 想象的共同体（增订版） | 本尼迪克特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357017700-976365?p=8866) |\n| 自卑与超越（经典完整译本） | 阿弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357017193-116343?p=8866) |\n| 好人为什么会作恶 | 托马斯・布拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357016959-db3d20?p=8866) |\n| 从零开始写故事 | 叶伟民/知乎 | [下载](https://url89.ctfile.com/f/31084289-1357016416-e192eb?p=8866) |\n| 安静冥想的力量（十册套装） | 帕拉宏撒・尤迦南达等 | [下载](https://url89.ctfile.com/f/31084289-1357016377-d348d3?p=8866) |\n| Homo Deus | Yuval Noah Harari | [下载](https://url89.ctfile.com/f/31084289-1357016344-af4d82?p=8866) |\n| 基因社会 | 以太・亚奈 | [下载](https://url89.ctfile.com/f/31084289-1357016272-086eed?p=8866) |\n| 基因组：人类自传 | 马特・里德利 | [下载](https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866) |\n| 反焦虑思维 | 罗尔・克肖/ 比尔・韦德 | [下载](https://url89.ctfile.com/f/31084289-1357015648-08a46e?p=8866) |\n| 读自己心理阅读书系（第1辑） | 卡伦・霍妮等 | [下载](https://url89.ctfile.com/f/31084289-1357015639-644be4?p=8866) |\n| 人类的故事：正式授权续写至21世纪 | 亨德里克・威廉・房龙等 | [下载](https://url89.ctfile.com/f/31084289-1357015681-651344?p=8866) |\n| 人类砍头小史 | 弗朗西斯・拉尔森 | [下载](https://url89.ctfile.com/f/31084289-1357015630-9d7d3e?p=8866) |\n| 大拐点 | 袁剑 | [下载](https://url89.ctfile.com/f/31084289-1357015597-bc638c?p=8866) |\n| 看不见的影响力 | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357015537-02d9e0?p=8866) |\n| 我们如何正确思维 | 约翰・杜威 | [下载](https://url89.ctfile.com/f/31084289-1357015363-a4ca27?p=8866) |\n| 怪诞关系学 | 亚当・加林斯基/马利斯・施韦泽 | [下载](https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866) |\n| 人性中的善良天使 | 斯蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357015102-e9b4b4?p=8866) |\n| 活过 | 南方人物周刊 | [下载](https://url89.ctfile.com/f/31084289-1357014892-297fa9?p=8866) |\n| 维多利亚时代的互联网 | 汤姆・斯坦迪奇 | [下载](https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866) |\n| 废物星球：从中国到世界的天价垃圾之旅 | 亚当・明特 | [下载](https://url89.ctfile.com/f/31084289-1357014730-c288c9?p=8866) |\n| 复杂：信息时代的连接、机会与布局 | 罗家德 | [下载](https://url89.ctfile.com/f/31084289-1357014691-5f5ec3?p=8866) |\n| 牲人祭 | 皮埃尔・比恩鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357014478-2f2e77?p=8866) |\n| 大地上的亲人 | 黄灯 | [下载](https://url89.ctfile.com/f/31084289-1357014427-4895bb?p=8866) |\n| 丹麦人为什么幸福 | 迈克・维金 | [下载](https://url89.ctfile.com/f/31084289-1357014418-106f01?p=8866) |\n| 社会动物 | 戴维・布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357014367-2e013a?p=8866) |\n| 十里红妆 | 吴瑞贤/吴静波 | [下载](https://url89.ctfile.com/f/31084289-1357014310-ce95e8?p=8866) |\n| 如何思考会思考的机器 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357014175-b0a0d3?p=8866) |\n| The 100-Year Life | Lynda Gratton / Andrew Scott | [下载](https://url89.ctfile.com/f/31084289-1357013686-e885a9?p=8866) |\n| Street of Eternal Happiness | Rob Schmitz | [下载](https://url89.ctfile.com/f/31084289-1357013707-35fbcc?p=8866) |\n| 迈尔斯社会心理学套装（第8版共4册） | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357013611-f376ca?p=8866) |\n| 你所不知道的日本（套装共3册） | 黄亚南 | [下载](https://url89.ctfile.com/f/31084289-1357013320-488041?p=8866) |\n| 太阳底下的新鲜事 | 约翰・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866) |\n| 绝非偶然 | 埃利奥特・阿伦森 | [下载](https://url89.ctfile.com/f/31084289-1357013215-25ed00?p=8866) |\n| 你的第一本哲学书 | 托马斯・内格尔 | [下载](https://url89.ctfile.com/f/31084289-1357012999-032fe2?p=8866) |\n| 平原 | 毕飞宇 | [下载](https://url89.ctfile.com/f/31084289-1357012975-9d2262?p=8866) |\n| 走近费曼丛书（套装共6册） | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866) |\n| 逃离不平等 | 安格斯・迪顿 | [下载](https://url89.ctfile.com/f/31084289-1357012318-a4fae0?p=8866) |\n| 社会学的想象力 | 赖特・米尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357012270-d825c1?p=8866) |\n| 菊与刀（增订版） | 鲁思・本尼迪克特 | [下载](https://url89.ctfile.com/f/31084289-1357012096-e918e2?p=8866) |\n| 吾国教育病理 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357012033-9178e2?p=8866) |\n| 大国大城 | 陆铭 | [下载](https://url89.ctfile.com/f/31084289-1357011787-8e42f4?p=8866) |\n| 你会杀死那个胖子吗？ | 戴维・埃德蒙兹 | [下载](https://url89.ctfile.com/f/31084289-1357011724-00f728?p=8866) |\n| 资本社会的17个矛盾 | 大卫・哈维 | [下载](https://url89.ctfile.com/f/31084289-1357011637-aacc42?p=8866) |\n| 台湾这些年所知道的祖国 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011577-6f8a94?p=8866) |\n| 我们台湾这些年 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011574-9729a0?p=8866) |\n| 我们台湾这些年2 | 廖信忠 | [下载](https://url89.ctfile.com/f/31084289-1357011571-5ec4cc?p=8866) |\n| 通往大国之路：中国的知识重建和文明复兴 | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1357011517-f964c0?p=8866) |\n| 世界的逻辑 | 大卫・哈维 | [下载](https://url89.ctfile.com/f/31084289-1357011373-733a50?p=8866) |\n| 私人生活的变革 | 阎云翔 | [下载](https://url89.ctfile.com/f/31084289-1357011340-6b01db?p=8866) |\n| 时间地图 | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357011370-deef54?p=8866) |\n| 西部招妻 | 马宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866) |\n| 以诈止诈 | 刘墉 | [下载](https://url89.ctfile.com/f/31084289-1357011319-2fc00d?p=8866) |\n| 中国大趋势：新社会的八大支柱 | 约翰・奈斯比特 | [下载](https://url89.ctfile.com/f/31084289-1357011295-ef8ccd?p=8866) |\n| 知乎一小时「补课系列」套装 | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357011235-8d096d?p=8866) |\n| 他的国 | 韩寒 | [下载](https://url89.ctfile.com/f/31084289-1357010668-2bfb7c?p=8866) |\n| 道德动物 | 罗伯特・赖特 | [下载](https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866) |\n| 批评官员的尺度 | 安东尼・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866) |\n| 论政治（上卷） | 阿兰・瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357010296-c3b1e1?p=8866) |\n| 论政治（下卷） | 阿兰・瑞安 | [下载](https://url89.ctfile.com/f/31084289-1357010299-1b25d3?p=8866) |\n| 灰犀牛：如何应对大概率危机 | 米歇尔・渥克 | [下载](https://url89.ctfile.com/f/31084289-1357010110-fa186a?p=8866) |\n| 白板 | 史蒂芬・平克  | [下载](https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866) |\n| 思想本质 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010098-d1928c?p=8866) |\n| 语言本能 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866) |\n| 心智探奇 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866) |\n| 人人时代 | 克莱・舍基  | [下载](https://url89.ctfile.com/f/31084289-1357009798-cd52c6?p=8866) |\n| 中国人的精神 | 辜鸿铭 | [下载](https://url89.ctfile.com/f/31084289-1357009774-1fb697?p=8866) |\n| 上帝与黄金 | 沃尔特・拉塞尔・米德 | [下载](https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866) |\n| 信任 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009633-ce67ee?p=8866) |\n| 政治秩序的起源 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009624-db85f9?p=8866) |\n| 政治秩序与政治衰败 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009627-a0585e?p=8866) |\n| 枪炮、病菌和钢铁 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357009603-070937?p=8866) |\n| 大断裂 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009438-2a63df?p=8866) |\n| 断臂上的花朵 | 奥比・萨克斯 | [下载](https://url89.ctfile.com/f/31084289-1357009423-07055d?p=8866) |\n| 历史的终结与最后的人 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009426-82fd03?p=8866) |\n| 零年：1945 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1357009417-dafa6d?p=8866) |\n| 浮生取义 | 吴飞 | [下载](https://url89.ctfile.com/f/31084289-1357009279-69e486?p=8866) |\n| 权力：为什么只为某些人所拥有（经典版） | 杰弗瑞・菲佛 | [下载](https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866) |\n| 神似祖先 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866) |\n| 国家兴衰 | 鲁奇尔・夏尔马 | [下载](https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866) |\n| 开放社会及其敌人（全二卷） | 卡尔・波普尔爵士 | [下载](https://url89.ctfile.com/f/31084289-1357008862-788a60?p=8866) |\n| 格拉德威尔经典系列（套装共5册） | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1357008817-5267fc?p=8866) |\n| 论中国 | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357008787-cd8ffe?p=8866) |\n| 理性乐观派：一部人类经济进步史 | 马特・里德利 | [下载](https://url89.ctfile.com/f/31084289-1357008781-b8b9ad?p=8866) |\n| 骗枭 | 冯精志 | [下载](https://url89.ctfile.com/f/31084289-1357008745-c36a76?p=8866) |\n| 旧制度与大革命 | 托克维尔 | [下载](https://url89.ctfile.com/f/31084289-1357008646-06a012?p=8866) |\n| 与荒原同行 | 约翰・麦克菲 | [下载](https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866) |\n| 出梁庄记 | 梁鸿 | [下载](https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866) |\n| 二号首长 | 黄晓阳 | [下载](https://url89.ctfile.com/f/31084289-1357008580-78b9e7?p=8866) |\n| 大国空巢 | 易富贤 | [下载](https://url89.ctfile.com/f/31084289-1357008244-1d0cc5?p=8866) |\n| 房思琪的初恋乐园 | 林奕含 | [下载](https://url89.ctfile.com/f/31084289-1357008127-c9eeda?p=8866) |\n| 我在底层的生活 | 芭芭拉・艾伦瑞克 | [下载](https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866) |\n| 不可思议的年代 | 乔舒亚・库珀・雷默  | [下载](https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866) |\n| 被劫持的私生活 | 肉唐僧 | [下载](https://url89.ctfile.com/f/31084289-1357008037-46dd88?p=8866) |\n| 2052：未来四十年的中国与世界 | 乔根・兰德斯 | [下载](https://url89.ctfile.com/f/31084289-1357008022-6de1f8?p=8866) |\n| 上瘾五百年 | 戴维・考特莱特 | [下载](https://url89.ctfile.com/f/31084289-1357007941-9ac356?p=8866) |\n| 塞利格曼幸福五部曲 | 马丁・塞利格曼 | [下载](https://url89.ctfile.com/f/31084289-1357007890-41a818?p=8866) |\n| 血酬定律：中国历史中的生存游戏 | 吴思 | [下载](https://url89.ctfile.com/f/31084289-1357007791-63f5eb?p=8866) |\n| 掌舵三部曲（掌舵＋掌舵2+舵手） | 龙在宇 | [下载](https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866) |\n| 光荣与梦想（套装共4册） | 威廉・曼彻斯特 | [下载](https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866) |\n| 我们都是食人族 | 克劳德・列维-斯特劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357007506-9da198?p=8866) |\n| 血疫：埃博拉的故事 | 理查德・普雷斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866) |\n| 进步时代 | 张国庆 | [下载](https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866) |\n| 国富论（缩译全彩插图本） | 亚当·斯密 | [下载](https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866) |\n| 乌合之众：大众心理研究（修订版） | 古斯塔夫·勒庞  | [下载](https://url89.ctfile.com/f/31084289-1357007008-879308?p=8866) |\n| 警察难做 | 冰河 | [下载](https://url89.ctfile.com/f/31084289-1357006957-9f1d28?p=8866) |\n| 自私的基因（30周年纪念版） | 理查德·道金斯  | [下载](https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866) |\n| 草民经济学 | 南勇 | [下载](https://url89.ctfile.com/f/31084289-1357006894-56ae7d?p=8866) |\n| 维基解密：谁授权美国统管世界 | 苏言/贺濒 | [下载](https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866) |\n| 社会性动物 | Elliot Aronson | [下载](https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866) |\n| 时寒冰说：未来二十年，经济大趋势（合集） | 时寒冰 | [下载](https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866) |\n| 郑永年看中国系列（共8本） | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1357006609-d621da?p=8866) |\n| 人的权利（译文经典） | 托马斯・潘恩 | [下载](https://url89.ctfile.com/f/31084289-1357006564-636a09?p=8866) |\n| 日本人与中国人 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357006471-f2b909?p=8866) |\n| 人以什么理由来记忆 | 徐贲 | [下载](https://url89.ctfile.com/f/31084289-1357006453-f30ed5?p=8866) |\n| 全民寂寞的美国 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357006432-89cb5c?p=8866) |\n| 宫廷社会（译文经典） | 诺贝特・埃利亚斯 | [下载](https://url89.ctfile.com/f/31084289-1357006378-8b23d3?p=8866) |\n| 我的孤单，我的自我 | 丽贝卡・特雷斯特 | [下载](https://url89.ctfile.com/f/31084289-1357006291-f6d3ec?p=8866) |\n| 侯卫东官场笔记（1-8册+巴国侯氏） | 小桥老树 | [下载](https://url89.ctfile.com/f/31084289-1357006186-fed3db?p=8866) |\n| 疯狂人类进化史 | 史钧 | [下载](https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866) |\n| 增长的极限 | 德内拉・梅多斯 | [下载](https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866) |\n| 独裁者手册 | 布鲁斯・布鲁诺・德・梅斯奎塔等 | [下载](https://url89.ctfile.com/f/31084289-1357005673-776963?p=8866) |\n| 一年之痒 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866) |\n| 集体行动的逻辑 | 曼瑟・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866) |\n| 时间的残渣 | 冯峰 | [下载](https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866) |\n| 1644：中国式王朝兴替 | 吴蔚 | [下载](https://url89.ctfile.com/f/31084289-1357005220-eda0ce?p=8866) |\n| 小狗也要叫 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005055-f06b5e?p=8866) |\n| 叫魂 | 孔飞力 | [下载](https://url89.ctfile.com/f/31084289-1357004902-1b6315?p=8866) |\n| 反脆弱：从不确定性中获益 | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866) |\n"
  },
  {
    "path": "md/社会学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 社会学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 枪炮、病菌与钢铁（修订版） | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866) |\n| 人类思维的自然史 | 迈克尔・托马塞洛 | [下载](https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866) |\n| 金泽：江南民间祭祀探源 | 李天纲 | [下载](https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866) |\n| 巴拉巴西成功定律 | 拉斯洛・巴拉巴西 | [下载](https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866) |\n| 边缘型人格障碍 | 兰迪・克雷格 | [下载](https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866) |\n| 新教伦理与资本主义精神（译文经典） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866) |\n| 人口浪潮 | 保罗・莫兰 | [下载](https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866) |\n| 大局观从何而来 | 罗宾・邓巴等 | [下载](https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866) |\n| 天才在左，疯子在右 | 高铭 | [下载](https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866) |\n| 论人类不平等的起源和基础（果麦经典） | 让-雅克・卢梭 | [下载](https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866) |\n| 色情 | 乔治・巴塔耶 | [下载](链接未找到) |\n| 分裂的西方（译文经典） | 尤尔根・哈贝马斯 | [下载](https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866) |\n| 图绘暹罗 | 通猜・威尼差恭 | [下载](https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866) |\n| 家族、土地与祖先 | 易劳逸 | [下载](https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866) |\n| 道德浪女 | 朵思.伊斯頓 | [下载](https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866) |\n| 亚当夏娃在拂晓 | 克里斯托弗・莱恩/卡西尔达・杰萨 | [下载](https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866) |\n| 裸猿三部曲（裸猿+人类动物园+亲密行为） | 德斯蒙德·莫利斯 | [下载](https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866) |\n"
  },
  {
    "path": "md/社会学人类学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 社会学人类学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 枪炮、病菌与钢铁（修订版） | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356983905-f85b31?p=8866) |\n| 人类思维的自然史 | 迈克尔・托马塞洛 | [下载](https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866) |\n| 金泽：江南民间祭祀探源 | 李天纲 | [下载](https://url89.ctfile.com/f/31084289-1357051459-d27d41?p=8866) |\n| 巴拉巴西成功定律 | 拉斯洛・巴拉巴西 | [下载](https://url89.ctfile.com/f/31084289-1357051138-d3549d?p=8866) |\n| 边缘型人格障碍 | 兰迪・克雷格 | [下载](https://url89.ctfile.com/f/31084289-1357046161-9be382?p=8866) |\n| 新教伦理与资本主义精神（译文经典） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357040401-93f014?p=8866) |\n| 人口浪潮 | 保罗・莫兰 | [下载](https://url89.ctfile.com/f/31084289-1357036612-18f17f?p=8866) |\n| 大局观从何而来 | 罗宾・邓巴等 | [下载](https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866) |\n| 天才在左，疯子在右 | 高铭 | [下载](https://url89.ctfile.com/f/31084289-1357033432-51830f?p=8866) |\n| 论人类不平等的起源和基础（果麦经典） | 让-雅克・卢梭 | [下载](https://url89.ctfile.com/f/31084289-1357033066-71ad49?p=8866) |\n| 色情 | 乔治・巴塔耶 | [下载](链接未找到) |\n| 分裂的西方（译文经典） | 尤尔根・哈贝马斯 | [下载](https://url89.ctfile.com/f/31084289-1357031485-819851?p=8866) |\n| 图绘暹罗 | 通猜・威尼差恭 | [下载](https://url89.ctfile.com/f/31084289-1357031227-7a0955?p=8866) |\n| 家族、土地与祖先 | 易劳逸 | [下载](https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866) |\n| 道德浪女 | 朵思.伊斯頓 | [下载](https://url89.ctfile.com/f/31084289-1357030552-72f46b?p=8866) |\n| 亚当夏娃在拂晓 | 克里斯托弗・莱恩/卡西尔达・杰萨 | [下载](https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866) |\n| 裸猿三部曲（裸猿+人类动物园+亲密行为） | 德斯蒙德·莫利斯 | [下载](https://url89.ctfile.com/f/31084289-1357006138-fcb247?p=8866) |\n"
  },
  {
    "path": "md/社会科学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 社会科学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 在路上：我生活的故事 | 格洛丽亚・斯泰纳姆 | [下载](https://url89.ctfile.com/f/31084289-1357035034-83902d?p=8866) |\n"
  },
  {
    "path": "md/社科.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 社科\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 偏见 | 珍妮弗・埃伯哈特 | [下载](https://url89.ctfile.com/f/31084289-1375510933-ef0322?p=8866) |\n| 穿透：像社会学家一样思考 | 严飞 | [下载](https://url89.ctfile.com/f/31084289-1357002463-b7f860?p=8866) |\n| 没有思想的世界 | 富兰克林・福尔 | [下载](https://url89.ctfile.com/f/31084289-1357001647-17d366?p=8866) |\n| 中国的当下与未来 | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1356990334-2cb936?p=8866) |\n| 剧变 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1356988960-beaf61?p=8866) |\n| 新教伦理与资本主义精神（理想国新版） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356988420-f2ca45?p=8866) |\n| 掌控分寸 | 珍妮・米勒/维多利亚・兰伯特 | [下载](https://url89.ctfile.com/f/31084289-1357053919-73e9ae?p=8866) |\n| 真相与错觉 | 塔莎・欧里希 | [下载](https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866) |\n| 亚洲世纪 | 帕拉格・康纳 | [下载](https://url89.ctfile.com/f/31084289-1357053061-2c7502?p=8866) |\n| 哲学原来很有趣 | 刘帅 | [下载](https://url89.ctfile.com/f/31084289-1357052497-71e6ec?p=8866) |\n| 人性中的善良天使（见识丛书） | 斯蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357043068-c833f2?p=8866) |\n| 祖先的故事 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866) |\n| 议程 | 埃里克・维亚尔 | [下载](https://url89.ctfile.com/f/31084289-1357039354-676672?p=8866) |\n| 三千年来谁铸币 | 王永生 | [下载](https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866) |\n| 一个观点，不一定对 | 黄章晋 | [下载](https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866) |\n| 金钱暗流 | 简・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866) |\n| 情绪勒索 | 朱迪斯·P·西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357021009-58665a?p=8866) |\n| 发现玛雅 | 约翰・劳埃德・斯蒂芬斯 | [下载](https://url89.ctfile.com/f/31084289-1357020442-bd32ca?p=8866) |\n"
  },
  {
    "path": "md/社群.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 社群\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 社群营销与运营 | 秋叶/秦阳 | [下载](https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866) |\n| 社群思维：精神商业时代的创新创业法 | 付岩 | [下载](https://url89.ctfile.com/f/31084289-1357018435-120347?p=8866) |\n"
  },
  {
    "path": "md/神怪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 神怪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 沙门空海之大唐鬼宴·卷之一·入唐 | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357006813-c02669?p=8866) |\n| 沙门空海之大唐鬼宴·卷之二·咒俑 | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357006810-5335bf?p=8866) |\n| 沙门空海之大唐鬼宴·卷之三·胡术 | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357006801-6964e4?p=8866) |\n| 沙门空海之大唐鬼宴·卷之四·不空 | 梦枕貘 | [下载](https://url89.ctfile.com/f/31084289-1357006795-b95cc7?p=8866) |\n"
  },
  {
    "path": "md/神经病.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 神经病\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 克莱因文集（套装共4册） | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866) |\n"
  },
  {
    "path": "md/神话.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 神话\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 茅盾讲中国神话 | 茅盾 | [下载](https://url89.ctfile.com/f/31084289-1375492144-627120?p=8866) |\n| 上古神话（全四册） | 钟毓龙 | [下载](https://url89.ctfile.com/f/31084289-1375500949-92326a?p=8866) |\n| 星空5500年 | 爱德华・布鲁克-海钦 | [下载](https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866) |\n| 喀耳刻 | 马德琳・米勒 | [下载](https://url89.ctfile.com/f/31084289-1375506415-595930?p=8866) |\n| 重述神话系列套装7册 | A.S.拜雅特 | [下载](https://url89.ctfile.com/f/31084289-1375506790-5f6b2e?p=8866) |\n| 神在人间的时光（修订版） | 陈喜辉 | [下载](https://url89.ctfile.com/f/31084289-1357004272-ae9f00?p=8866) |\n| 神圣的存在 | 米尔恰・伊利亚德 | [下载](https://url89.ctfile.com/f/31084289-1357004041-899065?p=8866) |\n| 山海百灵 | 王新禧 | [下载](https://url89.ctfile.com/f/31084289-1357004023-a305af?p=8866) |\n| 聊斋汊子（全两册） | 董均伦/江源 | [下载](https://url89.ctfile.com/f/31084289-1357003747-87ed89?p=8866) |\n| 英雄 | 斯蒂芬・弗莱 | [下载](https://url89.ctfile.com/f/31084289-1356995575-9cd60e?p=8866) |\n| 神话 | 斯蒂芬・弗莱 | [下载](https://url89.ctfile.com/f/31084289-1356995473-1daa2f?p=8866) |\n| 说魂儿（修订版） | 栾保群 | [下载](https://url89.ctfile.com/f/31084289-1356987034-e97f8f?p=8866) |\n| 扪虱谈鬼录（修订版） | 栾保群 | [下载](https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866) |\n| 穆天子传（全本全注全译） | 高永旺译注 | [下载](https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866) |\n| 纸上寻仙记 | 锦翼 | [下载](https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866) |\n| 中国神话通论 | 袁珂 | [下载](https://url89.ctfile.com/f/31084289-1357049314-f5b7b8?p=8866) |\n| 神仙传（全本全注全译） | 葛洪 | [下载](https://url89.ctfile.com/f/31084289-1357045663-b8eb2f?p=8866) |\n| 极简世界神话 | 马克・丹尼尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866) |\n| The House of Hades | Riordan, Rick | [下载](https://url89.ctfile.com/f/31084289-1357034689-d4bc80?p=8866) |\n| 封神演义（果麦经典） | 许仲琳 | [下载](https://url89.ctfile.com/f/31084289-1357033483-c79eaa?p=8866) |\n| 献给艾拉·格雷的歌 | 大卫・阿尔蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357032283-7bd194?p=8866) |\n| 全怪谈（全三册） | 田中贡太郎 | [下载](https://url89.ctfile.com/f/31084289-1357032217-dba52f?p=8866) |\n| 金叶：来自金枝的故事 | 丽莉・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1357028533-53157f?p=8866) |\n| 凯尔特神话 | 米兰达・阿尔德豪斯-格林 | [下载](https://url89.ctfile.com/f/31084289-1357026139-d5e318?p=8866) |\n| 知中6·一本读懂！山海经 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025233-398c4e?p=8866) |\n| 希腊罗马神话 | 菲利普・马蒂塞克 | [下载](https://url89.ctfile.com/f/31084289-1357025155-94a814?p=8866) |\n| 埃及神话 | 加里·J.肖 | [下载](https://url89.ctfile.com/f/31084289-1357025149-2a44c7?p=8866) |\n| 北欧神话 | 卡罗琳・拉灵顿 | [下载](https://url89.ctfile.com/f/31084289-1357025152-b17f78?p=8866) |\n| 观山海 | 杉泽/梁超 | [下载](https://url89.ctfile.com/f/31084289-1357024672-aac4e1?p=8866) |\n| 凯尔特的薄暮 | 威廉・巴特勒・叶芝  | [下载](https://url89.ctfile.com/f/31084289-1357023673-2bd6c4?p=8866) |\n| 写给孩子的山海经·异兽篇 | 竹马书坊 | [下载](https://url89.ctfile.com/f/31084289-1357021321-ab85f8?p=8866) |\n| 写给孩子的山海经·人神篇 | 竹马书坊 | [下载](https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866) |\n| 小顾聊神话 | 顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866) |\n| 一千零一夜（果麦经典） | 邓嘉宛译 | [下载](https://url89.ctfile.com/f/31084289-1357011433-69e0ef?p=8866) |\n| 悟空传（完美纪念版） | 今何在 | [下载](https://url89.ctfile.com/f/31084289-1357009351-e1b571?p=8866) |\n| 千面英雄 | 约瑟夫・坎贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357009183-8d9fea?p=8866) |\n| 希腊神话故事 | 古斯塔夫・施瓦布 | [下载](https://url89.ctfile.com/f/31084289-1357007698-6aab03?p=8866) |\n| 山海经密码大全集（套装共5册） | 阿菩 | [下载](https://url89.ctfile.com/f/31084289-1357006714-464296?p=8866) |\n| 中国神话大词典 | 袁珂 | [下载](https://url89.ctfile.com/f/31084289-1357004944-935a61?p=8866) |\n"
  },
  {
    "path": "md/禅.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 禅\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 禅者的初心 | 铃木俊隆 | [下载](https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866) |\n| 知中9·禅的入门 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025203-9975c0?p=8866) |\n| 铃木大拙说禅 | 铃木大拙 | [下载](https://url89.ctfile.com/f/31084289-1357014136-19a5b6?p=8866) |\n"
  },
  {
    "path": "md/禅修.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 禅修\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 活在此时此刻 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1356985453-7c4a04?p=8866) |\n| 禅者的初心 | 铃木俊隆 | [下载](https://url89.ctfile.com/f/31084289-1357033345-f59b92?p=8866) |\n| 和繁重的工作一起修行 | 一行禅师 | [下载](https://url89.ctfile.com/f/31084289-1357029163-8fb11a?p=8866) |\n"
  },
  {
    "path": "md/福尔摩斯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 福尔摩斯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 福尔摩斯探案全集（插图新注新译本） | 亚瑟·柯南·道尔 | [下载](https://url89.ctfile.com/f/31084289-1357005475-a71bd9?p=8866) |\n"
  },
  {
    "path": "md/私募.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 私募\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 金融街：私募风云 | 梁成 | [下载](https://url89.ctfile.com/f/31084289-1357034311-81e387?p=8866) |\n| 金融街：一个影子私募基金经理的自白 | 梁成 | [下载](https://url89.ctfile.com/f/31084289-1357033699-597e93?p=8866) |\n| 解读私募股权基金 | 周炜 | [下载](https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866) |\n| 资本之王 | 戴维・凯里/约翰・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357005829-d05ccb?p=8866) |\n"
  },
  {
    "path": "md/种族.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 种族\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 东西街 | 菲利普・桑兹 | [下载](https://url89.ctfile.com/f/31084289-1357002484-3fc686?p=8866) |\n| 根部之血：美国的一次种族清洗 | 特里克・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866) |\n| 平等之路 | 迈克尔·J.克拉曼 | [下载](https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866) |\n| 美国种族简史 | 托马斯・索威尔 | [下载](https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866) |\n"
  },
  {
    "path": "md/科学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 科学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 所有工具都是锤子 | 亚当・萨维奇 | [下载](https://url89.ctfile.com/f/31084289-1375490995-fea1f0?p=8866) |\n| 关于火星的一切 | 李德范 | [下载](https://url89.ctfile.com/f/31084289-1375492084-f53321?p=8866) |\n| 贾雷德·戴蒙德作品集（套装共4册） | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1375492300-e6d81a?p=8866) |\n| 人人都该懂的能源新趋势 | 瓦茨拉夫・斯米尔 | [下载](https://url89.ctfile.com/f/31084289-1375493416-7ae8a8?p=8866) |\n| 李·斯莫林讲量子引力 | 李・斯莫林 | [下载](https://url89.ctfile.com/f/31084289-1375493503-da4a48?p=8866) |\n| 我们被偷走的注意力 | 斯特凡・范德斯蒂格谢尔 | [下载](https://url89.ctfile.com/f/31084289-1375493725-23e966?p=8866) |\n| 身体的历史（三卷本） | 乔治・维加埃罗等 | [下载](https://url89.ctfile.com/f/31084289-1375494961-7ca170?p=8866) |\n| 里程碑书系（套装7册） | 吉姆・贝尔等 | [下载](https://url89.ctfile.com/f/31084289-1375497502-218ca7?p=8866) |\n| 人人都该懂的脑科学 | 阿马尔・阿尔查拉比等 | [下载](https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866) |\n| 第一推动丛书·综合系列：伽利略的手指 | 彼得・阿特金斯 | [下载](https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866) |\n| 永不停歇的时钟 | 杰西卡・里斯金 | [下载](https://url89.ctfile.com/f/31084289-1375498153-27f384?p=8866) |\n| 新科学漫游指南（套装共8册） | 《新科学家》杂志 | [下载](https://url89.ctfile.com/f/31084289-1375498336-abceb1?p=8866) |\n| 懒惰脑科学 | 鲍里斯・薛瓦勒等 | [下载](https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866) |\n| 混沌：开创一门新科学 | 詹姆斯・格雷克 | [下载](https://url89.ctfile.com/f/31084289-1375499593-12a37c?p=8866) |\n| 细胞生命的礼赞 | 刘易斯・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1375499728-0ba4d6?p=8866) |\n| 在别的星球上 | 吕西安・吕都 | [下载](https://url89.ctfile.com/f/31084289-1375499833-e58485?p=8866) |\n| 史蒂芬·霍金中文版著作全集（套装共11册） | 史蒂芬・霍金 | [下载](https://url89.ctfile.com/f/31084289-1375500730-428f3d?p=8866) |\n| 深时之旅 | 罗伯特・麦克法伦 | [下载](https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866) |\n| 改变历史的100个实验（套装共2册） | 亚当・哈特-戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375502659-93c7ba?p=8866) |\n| 数学物理化学大师经典系列（16册套装） | 薛定谔等 | [下载](https://url89.ctfile.com/f/31084289-1375505011-15ac5f?p=8866) |\n| 外研社百科通识大套装·社会卷（共49本） | 柏拉图等 | [下载](https://url89.ctfile.com/f/31084289-1375507051-2a2f7d?p=8866) |\n| 百科通识文库：西方学科奠基精选大套装（套装共88本） | 柏拉图等 | [下载](https://url89.ctfile.com/f/31084289-1375508041-895ae1?p=8866) |\n| 影响历史进程的九大科学家代表作图释书（套装9册） | 阿尔伯特・爱因斯坦 | [下载](https://url89.ctfile.com/f/31084289-1375510252-9e4341?p=8866) |\n| BBC夜空探索系列（套装全8册） | BBC仰望夜空杂志 | [下载](https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866) |\n| 科学：无尽的前沿 | 范内瓦・布什/拉什·D·霍尔特 | [下载](https://url89.ctfile.com/f/31084289-1375510807-8d9351?p=8866) |\n| 放空 | 曼诺诗・左莫若迪 | [下载](https://url89.ctfile.com/f/31084289-1375511116-f9cceb?p=8866) |\n| 不可能的六件事 | 约翰・格里宾 | [下载](https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866) |\n| 性的进化 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1375512319-d04e8d?p=8866) |\n| 超现实 | 杰里米・拜伦森 | [下载](https://url89.ctfile.com/f/31084289-1375513297-854053?p=8866) |\n| 不确定的边缘 | 埃尔文・布鲁克斯・怀特 | [下载](https://url89.ctfile.com/f/31084289-1375513399-cd84df?p=8866) |\n| 中国科学史（全两册） | 李申 | [下载](https://url89.ctfile.com/f/31084289-1357004308-1ba9f4?p=8866) |\n| 理查德·费曼传 | 劳伦斯・克劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357001806-54b61b?p=8866) |\n| 科学作为天职 | 李猛 | [下载](https://url89.ctfile.com/f/31084289-1357001632-142eb7?p=8866) |\n| 理性的边界 | 诺桑・亚诺夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357001614-cc8dce?p=8866) |\n| 破译人类的明天 | 迈克尔・李 | [下载](https://url89.ctfile.com/f/31084289-1357000984-c69a46?p=8866) |\n| 巴拉巴西网络科学 | 艾伯特-拉斯洛・巴拉巴西 | [下载](https://url89.ctfile.com/f/31084289-1357000138-cf99ca?p=8866) |\n| 基因之河 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1356999775-ad8131?p=8866) |\n| 师从天才 | 罗伯特・卡尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1356999742-fb19d4?p=8866) |\n| 人人都该懂的科学简史 | 肖恩·F·约翰斯顿 | [下载](https://url89.ctfile.com/f/31084289-1356999493-9088d8?p=8866) |\n| 别想那只大象 | 乔治・莱考夫 | [下载](https://url89.ctfile.com/f/31084289-1356999469-0222ec?p=8866) |\n| 给年轻科学家的信 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1356997759-7b3384?p=8866) |\n| 物质是什么 | 吉姆・巴戈特 | [下载](https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866) |\n| 科学的价值 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1356995326-60c097?p=8866) |\n| 颠覆式学习 | 周林文 | [下载](https://url89.ctfile.com/f/31084289-1356995266-c179c6?p=8866) |\n| 人体简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866) |\n| 有趣得让人睡不着的科普系列（套装共8册） | 竹内薫等 | [下载](https://url89.ctfile.com/f/31084289-1356994651-9f7c25?p=8866) |\n| 地理的时空 | 尼古拉斯・克兰 | [下载](https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866) |\n| 世界边缘的秘密 | 光子 | [下载](https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866) |\n| 上帝的骰子 | 罗金海 | [下载](https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866) |\n| 自然的音符 | 自然科研 | [下载](https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866) |\n| 莱布尼茨、牛顿与发明时间 | 托马斯・德・帕多瓦 | [下载](https://url89.ctfile.com/f/31084289-1356989194-1c9a15?p=8866) |\n| 一口一口“吃掉”你 | 生命时报 | [下载](https://url89.ctfile.com/f/31084289-1356989155-7f2b40?p=8866) |\n| 罗杰·彭罗斯作品集（套装共4册） | 罗杰・彭罗斯 | [下载](https://url89.ctfile.com/f/31084289-1356988642-62c533?p=8866) |\n| 万物发明指南 | 瑞安・诺思 | [下载](https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866) |\n| 太阳系度假指南 | 奥莉维亚・科斯基/加纳・格鲁赛维克 | [下载](https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866) |\n| 思维的方式 | 阿尔弗雷德・诺思・怀特海 | [下载](https://url89.ctfile.com/f/31084289-1356987088-319fee?p=8866) |\n| 数学本来很简单 | 赛・太蒙尼 | [下载](https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866) |\n| 半小时漫画科学史 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866) |\n| 数学不简单 | 吴悦辰 | [下载](https://url89.ctfile.com/f/31084289-1356985834-983ed5?p=8866) |\n| 太阳系简史 | 约翰・钱伯斯/杰奎琳・米顿 | [下载](https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866) |\n| 人人都该懂的工程学 | 娜塔莎・麦卡锡 | [下载](https://url89.ctfile.com/f/31084289-1356985189-b04eab?p=8866) |\n| 无穷的开始 | 戴维・多伊奇 | [下载](https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866) |\n| 无穷小 | 阿米尔・亚历山大 | [下载](https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866) |\n| 鹈鹕丛书（共6册） | 罗宾・邓巴等 | [下载](https://url89.ctfile.com/f/31084289-1356983398-3b56ec?p=8866) |\n| 耶鲁极简科学史 | 威廉・拜纳姆 | [下载](https://url89.ctfile.com/f/31084289-1356982441-5807b0?p=8866) |\n| 物理学的进化 | 阿尔伯特・爱因斯坦/利奥波德・英费尔德 | [下载](https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866) |\n| 如何系统思考 | 邱昭良 | [下载](https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866) |\n| 月亮全书 | 比尔・莱瑟巴罗 | [下载](https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866) |\n| 美国科学新闻精选套装 | 《科学新闻》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866) |\n| 天才时代 | A.C.格雷林 | [下载](https://url89.ctfile.com/f/31084289-1357051096-f2adb4?p=8866) |\n| 《自然》百年科学经典（第一卷） | 赫胥黎等 | [下载](https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866) |\n| 追捕祝融星 | 托马斯・利文森 | [下载](https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866) |\n| 《新科学家》杂志轻科普系列（套装全3册） | 新科学家杂志 | [下载](https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866) |\n| 弹性 | 列纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357049611-e31116?p=8866) |\n| 与爱因斯坦共进早餐 | 查德・奥泽尔 | [下载](https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866) |\n| 几何原本（果麦经典） | 欧几里得 | [下载](https://url89.ctfile.com/f/31084289-1357049506-e06abd?p=8866) |\n| 全新万物简史 | 鲍勃・伯曼 | [下载](https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866) |\n| 《科学美国人》精选系列科学全景套装（共14册） | 《环球科学》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866) |\n| 大开眼界的科学知识 | 胡桃夹子工作室 | [下载](https://url89.ctfile.com/f/31084289-1357048882-d2f1c4?p=8866) |\n| 费恩曼物理学讲义（新千年版）（套装共3册） | 费恩曼 | [下载](https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866) |\n| 大漠奇迹 | 王文彪 | [下载](https://url89.ctfile.com/f/31084289-1357047955-306ed1?p=8866) |\n| 大图景 | 肖恩・卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866) |\n| 亚洲古兵器图说 | 周纬 | [下载](https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866) |\n| 爱因斯坦传（全2册） | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357044112-3e0a4d?p=8866) |\n| 超凡：我们的身心极致及天赋的科学 | 罗恩・胡珀 | [下载](https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866) |\n| 反本能生存学 | 李・戈德曼 | [下载](https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866) |\n| 第一推动丛书·弦理论之争系列（新版套装共3册） | 布莱恩・格林 | [下载](https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866) |\n| 第一推动丛书·时空奥秘系列（新版套装共5册） | 史蒂芬・霍金等 | [下载](https://url89.ctfile.com/f/31084289-1357036891-abb2fb?p=8866) |\n| 第一推动丛书·物理系列（套装共9册） | 布莱恩・格林等 | [下载](https://url89.ctfile.com/f/31084289-1357036777-10f011?p=8866) |\n| 第一推动丛书·综合系列（套装共7册） | 梅拉妮・米歇尔等 | [下载](https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866) |\n| 科学元典套装（六） | 伽利略等 | [下载](https://url89.ctfile.com/f/31084289-1357036366-c0cbfa?p=8866) |\n| 科学本来很有趣 | 赛・太蒙尼 | [下载](https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866) |\n| 迷人的材料 | 马克・米奥多尼克 | [下载](https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866) |\n| 第一推动丛书·生命系列（套装共5册） | 伦道夫·M. 尼斯等 | [下载](https://url89.ctfile.com/f/31084289-1357035862-20c392?p=8866) |\n| 发现的乐趣 | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1357035826-de103a?p=8866) |\n| 科学元典套装（五） | 惠更斯等 | [下载](https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866) |\n| 人人都该懂的科学哲学 | 杰弗里・戈勒姆 | [下载](https://url89.ctfile.com/f/31084289-1357035562-baa886?p=8866) |\n| 万物起源 | 格雷厄姆・劳顿等 | [下载](https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866) |\n| 下游老人 | 藤田孝典 | [下载](https://url89.ctfile.com/f/31084289-1357032235-32dde2?p=8866) |\n| 一想到还有95%的问题留给人类，我就放心了 | 豪尔赫・陈/丹尼尔・怀特森 | [下载](https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866) |\n| 极简天文学 | 科林・斯图尔特 | [下载](https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866) |\n| 谈判心理学 | 康木 | [下载](https://url89.ctfile.com/f/31084289-1357029664-32f6cd?p=8866) |\n| 媒介批评三部曲（套装共3册） | 尼尔・波斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357029637-888957?p=8866) |\n| 联结：通向未来的文明史 | 詹姆斯・伯克 | [下载](https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866) |\n| 没有极限的科学 | 周建 | [下载](https://url89.ctfile.com/f/31084289-1357029220-f6becc?p=8866) |\n| 火焰中的秘密 | 延斯・森特根 | [下载](https://url89.ctfile.com/f/31084289-1357028938-6425da?p=8866) |\n| 科学的历程（修订第4版） | 吴国盛 | [下载](https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866) |\n| 脑洞大作战（套装三册） | 玛特・富尼耶等 | [下载](https://url89.ctfile.com/f/31084289-1357028755-fd2efe?p=8866) |\n| 人工智能简史 | 约翰・马尔科夫 | [下载](https://url89.ctfile.com/f/31084289-1357028056-700487?p=8866) |\n| 香农传 | 吉米・索尼 | [下载](https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866) |\n| 深度思考：如何有效利用注意力做出理性决策 | 川上浩司 | [下载](https://url89.ctfile.com/f/31084289-1357027192-709fbf?p=8866) |\n| 一本有趣又有料的科学书 | 大象公会 | [下载](https://url89.ctfile.com/f/31084289-1357025065-df6894?p=8866) |\n| 刘易斯·托马斯作品（共5册） | 刘易斯・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866) |\n| 地球的故事（果麦经典） | 亨德里克・威廉・房龙 | [下载](https://url89.ctfile.com/f/31084289-1357024774-f809b9?p=8866) |\n| 茶杯里的风暴 | 海伦・切尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866) |\n| 打开一颗心 | 斯蒂芬・韦斯塔比 | [下载](https://url89.ctfile.com/f/31084289-1357024597-c6df19?p=8866) |\n| 重新认识资本主义三部曲 | 娜奥米・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357024513-df8078?p=8866) |\n| 基因、大脑和人类潜能 | 肯・理查森 | [下载](https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866) |\n| 物质的秘密 | 埃蒂安・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866) |\n| 网络心理学 | 玛丽・艾肯 | [下载](https://url89.ctfile.com/f/31084289-1357024027-d383d4?p=8866) |\n| 普鲁斯特是个神经学家 | 乔纳・莱勒 | [下载](https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866) |\n| 光电帝国 | 吉尔・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357023925-f4200b?p=8866) |\n| 如何想到又做到 | 肖恩・扬 | [下载](https://url89.ctfile.com/f/31084289-1357023922-44ffca?p=8866) |\n| 如何做出正确决定 | 乔纳・莱勒 | [下载](https://url89.ctfile.com/f/31084289-1357023910-2d9c27?p=8866) |\n| 迷人的技术 | 凯莉・魏纳史密斯/扎克・魏纳史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866) |\n| 刷脸背后 | 张重生 | [下载](https://url89.ctfile.com/f/31084289-1357023562-06a369?p=8866) |\n| Brief Answers to the Big Questions | Stephen Hawking | [下载](https://url89.ctfile.com/f/31084289-1357023337-520d53?p=8866) |\n| 魔鬼的牧师 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357023202-04f6de?p=8866) |\n| 恶的科学 | 西蒙・巴伦-科恩 | [下载](https://url89.ctfile.com/f/31084289-1357022980-4f5c40?p=8866) |\n| 公平之怒 | 理查德・威尔金森/凯特・皮克特 | [下载](https://url89.ctfile.com/f/31084289-1357022902-7e39b6?p=8866) |\n| 你的生存本能正在杀死你（修订版） | 马克・舍恩/克里斯汀・洛贝格 | [下载](https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866) |\n| 七堂思维成长课 | 卡罗琳・韦布 | [下载](https://url89.ctfile.com/f/31084289-1357022566-3c90d6?p=8866) |\n| 医学的真相 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866) |\n| 认知三部曲 | 理查德・尼斯贝特 | [下载](https://url89.ctfile.com/f/31084289-1357021783-c1feca?p=8866) |\n| 机器人叛乱 | 基思・斯坦诺维奇  | [下载](https://url89.ctfile.com/f/31084289-1357021507-5497dc?p=8866) |\n| 未来三部曲 | 阿尔文・托夫勒 | [下载](https://url89.ctfile.com/f/31084289-1357021477-8f5f78?p=8866) |\n| X的奇幻之旅 | 史蒂夫・斯托加茨 | [下载](https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866) |\n| 极简科学起源课 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866) |\n| 数字乌托邦 | 尼古拉斯・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357020883-6adb43?p=8866) |\n| 有序：关于心智效率的认知科学 | 丹尼尔・列维汀 | [下载](https://url89.ctfile.com/f/31084289-1357020190-284690?p=8866) |\n| 科学推理：逻辑与科学思维方法 | 周建武 | [下载](https://url89.ctfile.com/f/31084289-1357020007-e15c56?p=8866) |\n| 科学学习：斯坦福黄金学习法则 | 丹尼尔 L. 施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357020025-038e41?p=8866) |\n| 时间的悖论 | 菲利普・津巴多/约翰・博伊德 | [下载](https://url89.ctfile.com/f/31084289-1357019449-bf5895?p=8866) |\n| 什么是科学 | 吴国盛 | [下载](https://url89.ctfile.com/f/31084289-1357017991-026d4b?p=8866) |\n| 实验是如何终结的？ | 彼得・伽里森 | [下载](https://url89.ctfile.com/f/31084289-1357017994-a7216f?p=8866) |\n| 当自我来敲门 | 安东尼奥・达马西奥 | [下载](https://url89.ctfile.com/f/31084289-1357017889-ef3bdf?p=8866) |\n| 时间的形状：相对论史话 | 汪洁 | [下载](https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866) |\n| 道金斯科学经典系列（套装共三册） | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357016665-7167df?p=8866) |\n| 对于历史，科学家有话说 | 熊卫民 | [下载](https://url89.ctfile.com/f/31084289-1357016641-473197?p=8866) |\n| Life 3.0 | 迈克斯・泰格马克 | [下载](https://url89.ctfile.com/f/31084289-1357016356-638f33?p=8866) |\n| Homo Deus | Yuval Noah Harari | [下载](https://url89.ctfile.com/f/31084289-1357016344-af4d82?p=8866) |\n| 连接组：造就独一无二的你 | 承现峻 | [下载](https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866) |\n| 费马大定理：一个困惑了世间智者358年的谜 | 西蒙・辛格 | [下载](https://url89.ctfile.com/f/31084289-1357014706-602d01?p=8866) |\n| 创新自信力 | 戴维・凯利/汤姆・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357013998-9834d9?p=8866) |\n| 世界顶级思维 | 沧海满月 | [下载](https://url89.ctfile.com/f/31084289-1357013860-8e324d?p=8866) |\n| 生命：进化生物学、遗传学、人类学和环境科学的黎明 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866) |\n| 睡眠革命 | 尼克・利特尔黑尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357013353-fef4a5?p=8866) |\n| 湛庐文化医学人文经典书系（套装共5册） | 阿图・葛文德等 | [下载](https://url89.ctfile.com/f/31084289-1357012834-c2175e?p=8866) |\n| 社会学的想象力 | 赖特・米尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357012270-d825c1?p=8866) |\n| 科技之巅2 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357011889-9977ff?p=8866) |\n| 道德景观 | 萨姆・哈里斯 | [下载](https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866) |\n| 机械宇宙 | 爱德华・多尼克 | [下载](https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866) |\n| 经度 | 达娃・索贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866) |\n| 神秘的量子生命 | 吉姆・艾尔/约翰乔・麦克法登 | [下载](https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866) |\n| 宇宙简史：起源与归宿 | 斯蒂芬・霍金 | [下载](https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866) |\n| 极简科学史 | 苏珊・怀斯・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357007800-428adc?p=8866) |\n| 极客物理学：地球上最有趣的问题和最出人意料的答案 | 瑞特・阿莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866) |\n| 科学管理原理 | 弗雷德里克・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357007242-f6d444?p=8866) |\n| 科学究竟是什么（第3版） | A.F.查尔默斯 | [下载](https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866) |\n| 致命接触：全球大型传染病探秘之旅 | 大卫·奎曼  | [下载](https://url89.ctfile.com/f/31084289-1357007101-3f4fe7?p=8866) |\n| 物理世界奇遇记 | 伽莫夫/斯坦纳德  | [下载](https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866) |\n| 社会性动物 | Elliot Aronson | [下载](https://url89.ctfile.com/f/31084289-1357006708-eb30d9?p=8866) |\n| 疯狂人类进化史 | 史钧 | [下载](https://url89.ctfile.com/f/31084289-1357006132-4466cf?p=8866) |\n| 万物简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866) |\n| 从一到无穷大 | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357005568-d9ac87?p=8866) |\n| 数学那些事儿 | William Dunham | [下载](https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866) |\n| 人造恐慌 | 袁越 | [下载](https://url89.ctfile.com/f/31084289-1357005136-32c837?p=8866) |\n"
  },
  {
    "path": "md/科学家.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 科学家\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 共和国科学拓荒者传记（套装共9册） | 许鹿希等 | [下载](https://url89.ctfile.com/f/31084289-1357020856-bcb915?p=8866) |\n"
  },
  {
    "path": "md/科幻.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 科幻\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 杀手机器人日记（全四册） | 玛莎・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375491805-d73e35?p=8866) |\n| 上海胶囊 | btr | [下载](https://url89.ctfile.com/f/31084289-1375493545-f20f20?p=8866) |\n| 莱姆狂想曲 | 斯塔尼斯瓦夫・莱姆 | [下载](https://url89.ctfile.com/f/31084289-1375493608-e7a5b9?p=8866) |\n| 高能预警（读客版） | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1375493848-f7331c?p=8866) |\n| 恐惧之旅 | 埃里克・安布勒 | [下载](https://url89.ctfile.com/f/31084289-1375493878-e9e33f?p=8866) |\n| 四十岛骑士 | 谢尔盖・卢基扬年科 | [下载](https://url89.ctfile.com/f/31084289-1375495570-30739a?p=8866) |\n| 星云X：忒弥斯 | 江波 | [下载](https://url89.ctfile.com/f/31084289-1375498216-e02887?p=8866) |\n| 蚁群 | 汤问棘 | [下载](https://url89.ctfile.com/f/31084289-1375498846-6ad541?p=8866) |\n| 沙丘序曲三部曲 | 布莱恩・赫伯特 | [下载](https://url89.ctfile.com/f/31084289-1375498951-099295?p=8866) |\n| 盘上之夜 | 宫内悠介 | [下载](https://url89.ctfile.com/f/31084289-1375499317-6f647b?p=8866) |\n| 齐马蓝 | 阿拉斯泰尔・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1375499437-afc295?p=8866) |\n| 阿西莫夫：机器人短篇全集 | 阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1375499548-33b084?p=8866) |\n| 挽救计划 | 安迪・威尔 | [下载](https://url89.ctfile.com/f/31084289-1375499665-b03b38?p=8866) |\n| 星际战争（作家榜经典文库） | 赫伯特・乔治・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375499734-b85d92?p=8866) |\n| 北方反对南方 | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1375500277-f179aa?p=8866) |\n| 银河英雄传说（1-8册合集） | 田中芳树 | [下载](https://url89.ctfile.com/f/31084289-1375500589-254eab?p=8866) |\n| 盲视 | 彼得・沃茨 | [下载](https://url89.ctfile.com/f/31084289-1375500607-c516c2?p=8866) |\n| 小镇奇谈 | 七月 | [下载](https://url89.ctfile.com/f/31084289-1375501054-9c7541?p=8866) |\n| 复写 | 法条遥 | [下载](https://url89.ctfile.com/f/31084289-1375501207-ebe079?p=8866) |\n| 未来的序曲（全二册） | 戴维·G.哈特威尔等 | [下载](https://url89.ctfile.com/f/31084289-1375501762-31ce1e?p=8866) |\n| 科幻奇幻丛书精选集（套装共60册） | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1375502281-b20499?p=8866) |\n| 漫长的寒冬 | A. G. 利德尔 | [下载](https://url89.ctfile.com/f/31084289-1375502296-033c96?p=8866) |\n| 零度分离 | 伊格言 | [下载](https://url89.ctfile.com/f/31084289-1375504252-eb8320?p=8866) |\n| 十月之殇 | 劳伦斯・赖特 | [下载](https://url89.ctfile.com/f/31084289-1375504270-901ee9?p=8866) |\n| 菲利普·迪克作品合集（套装共10册） | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1375506739-bc4b48?p=8866) |\n| 机器人大师 | 斯坦尼斯瓦夫・莱姆 | [下载](https://url89.ctfile.com/f/31084289-1375506775-c81751?p=8866) |\n| 蜜蜂717 | 拉莱恩・波尔 | [下载](https://url89.ctfile.com/f/31084289-1375507054-16e098?p=8866) |\n| 波兰科幻泰斗莱姆作品集（共6册） | 斯坦尼斯瓦夫・莱姆 | [下载](https://url89.ctfile.com/f/31084289-1375509085-904148?p=8866) |\n| 路边野餐 | 阿卡迪・斯特鲁伽茨基/鲍里斯・斯特鲁伽茨基 | [下载](https://url89.ctfile.com/f/31084289-1375509301-218cbd?p=8866) |\n| 詹姆斯·卡梅隆的科幻故事 | 兰德尔・弗雷克斯 | [下载](https://url89.ctfile.com/f/31084289-1375509604-3a44ff?p=8866) |\n| 你一生的故事 | 特德・姜 | [下载](https://url89.ctfile.com/f/31084289-1375509787-706d6f?p=8866) |\n| 银河之心三部曲 | 江波 | [下载](https://url89.ctfile.com/f/31084289-1375510066-0e0a6d?p=8866) |\n| 月球城市 | 安迪・威尔 | [下载](https://url89.ctfile.com/f/31084289-1375510057-9e2e52?p=8866) |\n| 蚂蚁三部曲 | 贝尔纳・韦尔贝尔 | [下载](https://url89.ctfile.com/f/31084289-1375510078-224217?p=8866) |\n| 时间旅行者年鉴（全四册） | 安・范德米尔 | [下载](https://url89.ctfile.com/f/31084289-1375510300-1ad927?p=8866) |\n| 末日之书 | 康妮・威利斯 | [下载](https://url89.ctfile.com/f/31084289-1375510297-04da08?p=8866) |\n| 灯火管制·警报解除 | 康妮・威利斯 | [下载](https://url89.ctfile.com/f/31084289-1375510384-9917a8?p=8866) |\n| 我这样的机器 | 伊恩・麦克尤恩 | [下载](https://url89.ctfile.com/f/31084289-1375510408-102979?p=8866) |\n| 中央星站 | 拉维・提德哈 | [下载](https://url89.ctfile.com/f/31084289-1375510486-d048f0?p=8866) |\n| 银河边缘系列（共五册） | 迈克・雷斯尼克 | [下载](https://url89.ctfile.com/f/31084289-1375510852-ec8c30?p=8866) |\n| 星之继承者（全3册） | 詹姆斯˙P.霍根 | [下载](https://url89.ctfile.com/f/31084289-1375510915-dadc87?p=8866) |\n| 失落的星阵（全三册） | 尼尔・斯蒂芬森 | [下载](https://url89.ctfile.com/f/31084289-1375511089-093e8d?p=8866) |\n| 关于那个人的备忘录 | 小林泰三 | [下载](https://url89.ctfile.com/f/31084289-1375511449-1dfbff?p=8866) |\n| 易碎品 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1375511521-d3a748?p=8866) |\n| 图案人 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1375511650-6f216a?p=8866) |\n| 雷·布拉德伯里短篇杰作精选集（全4册） | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1375512142-18c417?p=8866) |\n| 星河战队 | 罗伯特・海因莱因 | [下载](https://url89.ctfile.com/f/31084289-1375512394-fa353d?p=8866) |\n| 消失的世界 | 汤姆・斯维特里奇 | [下载](https://url89.ctfile.com/f/31084289-1375512406-c95da5?p=8866) |\n| 倒悬的天空 | 程婧波 | [下载](https://url89.ctfile.com/f/31084289-1375513051-7f9308?p=8866) |\n| 未来：人类的征途 | 今何在 | [下载](https://url89.ctfile.com/f/31084289-1375513102-f953a2?p=8866) |\n| 人类重启 | 亚历山大・温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1375513312-f626c6?p=8866) |\n| 电子脑叶 | 野崎惑 | [下载](https://url89.ctfile.com/f/31084289-1375513429-a35151?p=8866) |\n| 我的宠物是个人 | 艾米・利尔沃 | [下载](https://url89.ctfile.com/f/31084289-1375513573-07ea89?p=8866) |\n| 莫比乌斯时空 | 顾适 | [下载](https://url89.ctfile.com/f/31084289-1357004302-23ec80?p=8866) |\n| 造物者之歌 | 狷狂 | [下载](https://url89.ctfile.com/f/31084289-1357004242-1d4628?p=8866) |\n| 呼吸 | 特德・姜 | [下载](https://url89.ctfile.com/f/31084289-1357004239-b39688?p=8866) |\n| 大师的盛宴 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357003834-8b69c8?p=8866) |\n| 小行星掉在下午 | 沈大成 | [下载](https://url89.ctfile.com/f/31084289-1357002790-45a845?p=8866) |\n| 回忆爱玛侬 | 梶尾真治 | [下载](https://url89.ctfile.com/f/31084289-1357001452-bb9389?p=8866) |\n| 快乐贩卖机 | 凯蒂・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357000609-8e1e99?p=8866) |\n| 日本沉没 | 小松左京 | [下载](https://url89.ctfile.com/f/31084289-1356997774-4d5a8c?p=8866) |\n| 十月国度 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1356996484-1dafee?p=8866) |\n| 地心游记（读客经典） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1356995038-913ca4?p=8866) |\n| 交错的世界 | 詹姆斯・冈恩 | [下载](https://url89.ctfile.com/f/31084289-1356994981-3f09d3?p=8866) |\n| 变化的位面 | 厄休拉・勒古恩 | [下载](https://url89.ctfile.com/f/31084289-1356992251-370b13?p=8866) |\n| 八十天环游地球（读客经典） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1356992194-dd571f?p=8866) |\n| 冰上斯芬克斯 | 儒尔・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1356991888-b46d88?p=8866) |\n| 夏日永别 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1356991768-6563a5?p=8866) |\n| 月光狂想曲 | 迈克尔・夏邦 | [下载](https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866) |\n| 泰坦的女妖 | 库尔特・冯内古特 | [下载](https://url89.ctfile.com/f/31084289-1356989920-397d08?p=8866) |\n| 科幻大师威尔斯精选集 | 赫伯特・乔治・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356988489-c865c5?p=8866) |\n| 水刀子 | 保罗・巴奇加卢皮 | [下载](https://url89.ctfile.com/f/31084289-1356987310-e009b7?p=8866) |\n| 是我想多了吗？ | 新科学家杂志/邱涛涛 | [下载](https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866) |\n| 未来机器城 | 燕垒生 | [下载](https://url89.ctfile.com/f/31084289-1356985534-578df5?p=8866) |\n| 生命进阶 | 天降龙虾 | [下载](https://url89.ctfile.com/f/31084289-1356985267-e969dd?p=8866) |\n| 梦蛇 | 冯达·N.麦金泰尔 | [下载](https://url89.ctfile.com/f/31084289-1356984835-beb8f9?p=8866) |\n| 地球编年史（套装全七册） | 撒迦利亚・西琴 | [下载](https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866) |\n| 无人幸免 | 奥马尔・阿卡德 | [下载](https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866) |\n| 巧合制造师 | 约夫・布卢姆 | [下载](https://url89.ctfile.com/f/31084289-1356984553-fa83dc?p=8866) |\n| 致命引擎系列四部曲 | 菲利普・瑞弗 | [下载](https://url89.ctfile.com/f/31084289-1356983971-94980a?p=8866) |\n| 御龙记 | 邢立达 | [下载](https://url89.ctfile.com/f/31084289-1357053727-1ac22b?p=8866) |\n| 战略级天使 | 白伯欢 | [下载](https://url89.ctfile.com/f/31084289-1357052299-3d2050?p=8866) |\n| 雨狗空间 | 卧斧 | [下载](https://url89.ctfile.com/f/31084289-1357051516-baea86?p=8866) |\n| 克莱因壶 | 冈岛二人 | [下载](https://url89.ctfile.com/f/31084289-1357051378-057ad5?p=8866) |\n| 圣天秤星 | 彼得・汉密尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357050919-7cecbb?p=8866) |\n| 阿瑟·克拉克科幻经典（套装三本） | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357050493-92bbe3?p=8866) |\n| 火星三部曲 | 金・斯坦利・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357050118-f7ad9b?p=8866) |\n| 困惑的三文鱼 | 道格拉斯・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866) |\n| 欢迎来到敌托邦 | 戈登・范・格尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049440-137c79?p=8866) |\n| 梅格时空大冒险（套装全5册） | 马德琳・英格 | [下载](https://url89.ctfile.com/f/31084289-1357049338-dfaaea?p=8866) |\n| 涌变 | 丹尼尔・苏亚雷斯 | [下载](https://url89.ctfile.com/f/31084289-1357048645-d302a7?p=8866) |\n| 双子杀手 | 泰坦图书 | [下载](https://url89.ctfile.com/f/31084289-1357047988-81f498?p=8866) |\n| 自指引擎 | 圆城塔 | [下载](https://url89.ctfile.com/f/31084289-1357045945-2bd0b3?p=8866) |\n| 灵魂漫长而黑暗的茶点时间 | 道格拉斯・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357045672-dda13f?p=8866) |\n| 代体 | 山田宗树 | [下载](https://url89.ctfile.com/f/31084289-1357045411-ec3f9f?p=8866) |\n| 下町火箭 | 池井户润 | [下载](https://url89.ctfile.com/f/31084289-1357044826-9f3e2b?p=8866) |\n| 醉步男 | 小林泰三 | [下载](https://url89.ctfile.com/f/31084289-1357044337-709ec2?p=8866) |\n| 地球无应答 | 王诺诺 | [下载](https://url89.ctfile.com/f/31084289-1357043929-c25390?p=8866) |\n| 万物的终结 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357043734-88cbdf?p=8866) |\n| 老人的战争 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357043710-92e2a9?p=8866) |\n| 魔兽世界编年史史诗级套装 | 克里斯・梅森等 | [下载](https://url89.ctfile.com/f/31084289-1357043194-1328e2?p=8866) |\n| 高堡奇人 | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357042756-6a157f?p=8866) |\n| 流吧！我的眼泪 | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357042693-17f1fb?p=8866) |\n| 冰冻时光之窗 | 尤里・维尼楚克 | [下载](https://url89.ctfile.com/f/31084289-1357042510-b9497c?p=8866) |\n| 尤比克 | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357042339-ab4228?p=8866) |\n| 火星孤儿 | 刘洋 | [下载](https://url89.ctfile.com/f/31084289-1357041823-ce2895?p=8866) |\n| 水形物语 | 吉尔莫・德尔・托罗/丹尼尔・克劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357041067-14f002?p=8866) |\n| 神秘博士 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357041031-2436e1?p=8866) |\n| 岛上的女儿们 | 珍妮・梅拉米德 | [下载](https://url89.ctfile.com/f/31084289-1357040929-da7f44?p=8866) |\n| 沙丘六部曲 | 弗兰克・赫伯特 | [下载](https://url89.ctfile.com/f/31084289-1357040926-a4d303?p=8866) |\n| 侏罗纪公园（套装全2册） | 迈克尔・克莱顿 | [下载](https://url89.ctfile.com/f/31084289-1357039933-4d9ffe?p=8866) |\n| 穿梭时间的女孩 | 瑞萨・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357039570-f8f47c?p=8866) |\n| 彩虹尽头 | 弗诺・文奇 | [下载](https://url89.ctfile.com/f/31084289-1357039390-a9f532?p=8866) |\n| 夜袭动物园 | 比尔・布龙 | [下载](https://url89.ctfile.com/f/31084289-1357039288-50ece6?p=8866) |\n| 真名实姓 | 弗诺・文奇 | [下载](https://url89.ctfile.com/f/31084289-1357039282-aee0e3?p=8866) |\n| 太空旅行指南 | 尼尔·F. 科明斯 | [下载](https://url89.ctfile.com/f/31084289-1357039180-ff8b0d?p=8866) |\n| 哈利的十五次人生 | 克莱尔・诺丝 | [下载](https://url89.ctfile.com/f/31084289-1357039090-c3abbc?p=8866) |\n| 荒潮 | 陈楸帆 | [下载](https://url89.ctfile.com/f/31084289-1357039060-191f82?p=8866) |\n| 地球的新生 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038802-5275a0?p=8866) |\n| 地球的呼唤 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038523-3217f5?p=8866) |\n| 地球飞船 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866) |\n| 失控的地球 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038337-71ff2e?p=8866) |\n| 地球的回忆 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357037857-e299ab?p=8866) |\n| 银河界区三部曲 | 弗诺・文奇 | [下载](https://url89.ctfile.com/f/31084289-1357037371-702f6f?p=8866) |\n| 100：科幻之书（套装共4册） | 安・范德米尔/杰夫・范德米尔 | [下载](https://url89.ctfile.com/f/31084289-1357035952-a150ea?p=8866) |\n| 微宇宙的上帝 | 西奥多・斯特金等 | [下载](https://url89.ctfile.com/f/31084289-1357035316-79f03b?p=8866) |\n| 华氏451 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1357035076-d9ac4f?p=8866) |\n| 献给阿尔吉侬的花束（理想国） | 丹尼尔・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1357034725-d79b53?p=8866) |\n| The Year of the Flood | Margaret Atwood | [下载](https://url89.ctfile.com/f/31084289-1357034677-627783?p=8866) |\n| 疯癫亚当 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1357034611-1bb945?p=8866) |\n| 洪水之年 | 玛格丽特・阿特伍德 | [下载](https://url89.ctfile.com/f/31084289-1357034530-12e063?p=8866) |\n| 献给阿尔吉侬的花束 | 丹尼尔・凯斯/罗杰・泽拉兹尼  | [下载](https://url89.ctfile.com/f/31084289-1357034419-a7595b?p=8866) |\n| 蜂巢 | 刘洋 | [下载](https://url89.ctfile.com/f/31084289-1357033603-f6beee?p=8866) |\n| 环界（套装共4册） | 铃木光司 | [下载](https://url89.ctfile.com/f/31084289-1357033525-63923d?p=8866) |\n| 利维坦号战记（套装共4册） | 斯科特・维斯特菲尔德/基斯・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866) |\n| 凡尔纳经典科幻故事套装（全10册） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357033261-60db9a?p=8866) |\n| 11/22/63 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033240-8ee3ff?p=8866) |\n| 美妙的新世界（企鹅经典） | 阿道斯・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357032943-1adcbe?p=8866) |\n| 星际迷航：红衫 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357032931-297bdc?p=8866) |\n| 毛毛星球 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357032928-eec215?p=8866) |\n| 编码宝典（全三册） | 尼尔・斯蒂芬森 | [下载](https://url89.ctfile.com/f/31084289-1357032895-0e9ef5?p=8866) |\n| 双星 | 罗伯特・海因莱因 | [下载](https://url89.ctfile.com/f/31084289-1357032667-da2c4f?p=8866) |\n| 少数派报告 | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357032211-328213?p=8866) |\n| 上海堡垒 | 江南 | [下载](https://url89.ctfile.com/f/31084289-1357032085-57b5df?p=8866) |\n| 空间三部曲（套装共3册） | C.S.刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357032082-f7e4b5?p=8866) |\n| The Calculating Stars | Mary Robinette Kowal | [下载](https://url89.ctfile.com/f/31084289-1357031923-db707d?p=8866) |\n| 杀敌算法 | 刘宇昆 | [下载](https://url89.ctfile.com/f/31084289-1357031659-2ab709?p=8866) |\n| 人类之子 | P.D.詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357031398-7de6ed?p=8866) |\n| 2061：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866) |\n| 3001：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866) |\n| 超新星纪元 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357031290-a6d5bf?p=8866) |\n| 2010：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357031092-6ce749?p=8866) |\n| 宇宙超度指南 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866) |\n| 云球（第一部） | 白丁 | [下载](https://url89.ctfile.com/f/31084289-1357029952-67bb0c?p=8866) |\n| 犹太警察工会 | 迈克尔・夏邦 | [下载](https://url89.ctfile.com/f/31084289-1357029757-2a1eee?p=8866) |\n| 未来病史 | 陈楸帆 | [下载](https://url89.ctfile.com/f/31084289-1357029727-5e3866?p=8866) |\n| 2001：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357029631-0c12fd?p=8866) |\n| 雷切帝国2 | 安・莱基 | [下载](https://url89.ctfile.com/f/31084289-1357029550-009959?p=8866) |\n| 喝掉这 “罐”书 | 阿米殿下 | [下载](https://url89.ctfile.com/f/31084289-1357029373-48052b?p=8866) |\n| 永恒先生 | 亚伦・锡尔 | [下载](https://url89.ctfile.com/f/31084289-1357029370-2862a0?p=8866) |\n| 日本未来时 | [美]真澄· 华盛顿 编 | [下载](https://url89.ctfile.com/f/31084289-1357029313-b99a3a?p=8866) |\n| 人类帝国的覆灭 | 常博逸 | [下载](https://url89.ctfile.com/f/31084289-1357029106-bc38be?p=8866) |\n| 完美的真空 | 斯坦尼斯拉夫・莱姆 | [下载](https://url89.ctfile.com/f/31084289-1357028944-66d399?p=8866) |\n| 雷沙革村的读墨人 | 托马斯・奥尔德・赫维尔特 | [下载](https://url89.ctfile.com/f/31084289-1357028404-d56f56?p=8866) |\n| 九黎传说 | 莫溟 | [下载](https://url89.ctfile.com/f/31084289-1357028239-ece9b6?p=8866) |\n| 机器人间 | 阿缺 | [下载](https://url89.ctfile.com/f/31084289-1357028071-d39120?p=8866) |\n| “雨果奖”得主郝景芳科幻短篇合集 | 郝景芳 | [下载](https://url89.ctfile.com/f/31084289-1357028059-8aff1c?p=8866) |\n| 阿努比斯之门 | 提姆・鲍尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357027972-26c9ea?p=8866) |\n| 最后一个人类 | 马克・奥康奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866) |\n| 天意 | 钱莉芳 | [下载](https://url89.ctfile.com/f/31084289-1357027627-cbedf4?p=8866) |\n| AI迷航3 | 肖遥 | [下载](https://url89.ctfile.com/f/31084289-1357027561-bda2a4?p=8866) |\n| 高能预警 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357027366-bb5633?p=8866) |\n| 蜘蛛男孩 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357027294-bd7dfc?p=8866) |\n| 凡尔纳科幻经典（套装共9册） | 凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357027225-b52df3?p=8866) |\n| 雷切帝国：正义号的觉醒 | 安・莱基 | [下载](https://url89.ctfile.com/f/31084289-1357027027-452134?p=8866) |\n| 家族八景 | 筒井康隆 | [下载](https://url89.ctfile.com/f/31084289-1357026409-9a007f?p=8866) |\n| 魔法传奇系列（共3册） | 杰夫・惠勒 | [下载](https://url89.ctfile.com/f/31084289-1357026412-2b400f?p=8866) |\n| 控梦东京 | 汤介生 | [下载](https://url89.ctfile.com/f/31084289-1357026226-d799c7?p=8866) |\n| 海：另一个未知的宇宙 | 弗兰克・施茨廷 | [下载](https://url89.ctfile.com/f/31084289-1357026199-42f833?p=8866) |\n| 刘慈欣短篇科幻小说合集 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357025713-6021fa?p=8866) |\n| 球状闪电 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357025551-8733aa?p=8866) |\n| 群 | 弗兰克・施茨廷 | [下载](https://url89.ctfile.com/f/31084289-1357025491-553cf5?p=8866) |\n| 人生算法 | 陈楸帆 | [下载](https://url89.ctfile.com/f/31084289-1357025482-16b6bb?p=8866) |\n| 昨日重现 | 张寒寺 | [下载](https://url89.ctfile.com/f/31084289-1357025080-f26716?p=8866) |\n| 全能侦探社 | 道格拉斯・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357025050-f8a066?p=8866) |\n| 日本合众国 | 彼得・特莱亚斯 | [下载](https://url89.ctfile.com/f/31084289-1357024858-d14c17?p=8866) |\n| The Paper Menagerie and Other Stories | Ken Liu | [下载](https://url89.ctfile.com/f/31084289-1357024654-266691?p=8866) |\n| 时光尽头 | 珍妮・格林 | [下载](https://url89.ctfile.com/f/31084289-1357024645-7fef5c?p=8866) |\n| 三体（读客版） | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357024489-51e50e?p=8866) |\n| 神奇动物：格林德沃之罪 | J·K·罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357024141-baf465?p=8866) |\n| 时间回旋 | 罗伯特・威尔森 | [下载](https://url89.ctfile.com/f/31084289-1357024120-f2c94d?p=8866) |\n| 神的九十亿个名字 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357024108-f7933b?p=8866) |\n| 莱博维茨的赞歌 | 小沃尔特・M.米勒 | [下载](https://url89.ctfile.com/f/31084289-1357024009-650207?p=8866) |\n| 来自新世界（全2册） | 贵志祐介 | [下载](https://url89.ctfile.com/f/31084289-1357023994-8642d9?p=8866) |\n| 时间之墟 | 宝树 | [下载](https://url89.ctfile.com/f/31084289-1357023874-05e0a5?p=8866) |\n| 好兆头 | 特里・普拉切特/尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357023736-2634aa?p=8866) |\n| 重启人 | 艾米・亭特拉 | [下载](https://url89.ctfile.com/f/31084289-1357023616-224cdd?p=8866) |\n| 重启人：终结篇 | 艾米・亭特拉 | [下载](https://url89.ctfile.com/f/31084289-1357023604-fdee86?p=8866) |\n| 孤独的进化者 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357023286-1cfd91?p=8866) |\n| 记忆迷踪 | 启山 | [下载](https://url89.ctfile.com/f/31084289-1357023262-aad346?p=8866) |\n| 发条女孩 | 保罗・巴奇加卢皮 | [下载](https://url89.ctfile.com/f/31084289-1357023145-b737fe?p=8866) |\n| AI迷航 | 肖遥 | [下载](https://url89.ctfile.com/f/31084289-1357022938-041ae2?p=8866) |\n| 魔戒 | J.R.R. 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357022926-610c0f?p=8866) |\n| 流浪地球 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357022911-83ea9f?p=8866) |\n| 时间之河 | 晋康 | [下载](https://url89.ctfile.com/f/31084289-1357022404-7f7923?p=8866) |\n| 超频交易商 | 谢云宁 | [下载](https://url89.ctfile.com/f/31084289-1357022317-c95b84?p=8866) |\n| 时间不存在 | 韩松/刘宇昆等 | [下载](https://url89.ctfile.com/f/31084289-1357022311-2d6973?p=8866) |\n| 湿婆之舞 | 江波 | [下载](https://url89.ctfile.com/f/31084289-1357022290-a4b08f?p=8866) |\n| Selected Stories of Philip K. Dick | Dick, Philip K.; Lethem, Jonathan; | [下载](https://url89.ctfile.com/f/31084289-1357022257-b9df83?p=8866) |\n| 十二个明天 | 刘慈欣等 | [下载](https://url89.ctfile.com/f/31084289-1357022230-561396?p=8866) |\n| 骸骨迷宫 | 弗朗西斯卡・海格 | [下载](https://url89.ctfile.com/f/31084289-1357021174-49eafd?p=8866) |\n| The Grace of Kings | Ken Liu | [下载](https://url89.ctfile.com/f/31084289-1357020802-e27019?p=8866) |\n| Children of Time | Adrian Tchaikovsky | [下载](https://url89.ctfile.com/f/31084289-1357020736-687584?p=8866) |\n| 来自12个星球的敌人 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357020703-2a774b?p=8866) |\n| 与罗摩相会 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357020670-98bbf9?p=8866) |\n| 消失的殖民星球 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357020514-ac3aac?p=8866) |\n| 林中秘族 | 柳原汉雅 | [下载](https://url89.ctfile.com/f/31084289-1357020478-8eaca5?p=8866) |\n| 阿瑟·克拉克经典科幻套装（套装共4册） | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357020415-ea2a46?p=8866) |\n| 云图 | 大卫・米切尔 | [下载](https://url89.ctfile.com/f/31084289-1357020193-f1d6d4?p=8866) |\n| 两个世界 | 弗朗西斯科 · 沃索 | [下载](https://url89.ctfile.com/f/31084289-1357019878-a9c475?p=8866) |\n| 天意（典藏版） | 钱莉芳 | [下载](https://url89.ctfile.com/f/31084289-1357019788-2e4c1a?p=8866) |\n| 百年法（全2册） | 山田宗树 | [下载](https://url89.ctfile.com/f/31084289-1357019740-f1d8ac?p=8866) |\n| 巫士唐望的教诲 | 卡洛斯・卡斯塔尼达 | [下载](https://url89.ctfile.com/f/31084289-1357019626-626739?p=8866) |\n| 全息玫瑰碎片 | 威廉・吉布森 | [下载](https://url89.ctfile.com/f/31084289-1357019599-8065bf?p=8866) |\n| 日本沉没（无删减典藏版） | 小松左京 | [下载](https://url89.ctfile.com/f/31084289-1357019296-b1094b?p=8866) |\n| 银河系搭车客指南5部曲 | 道格拉斯・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357019305-acbfb5?p=8866) |\n| 神们自己 | 艾萨克・阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357019239-8d9184?p=8866) |\n| 奇点遗民 | 刘宇昆 | [下载](https://url89.ctfile.com/f/31084289-1357019227-8d71a7?p=8866) |\n| 幽灵舰队 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357019146-a9411c?p=8866) |\n| 佐伊的战争 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357018507-59ad7e?p=8866) |\n| 玩家1号 | 恩斯特・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357018486-7ec891?p=8866) |\n| “破碎的星球”三部曲 | N.K.杰米辛 | [下载](https://url89.ctfile.com/f/31084289-1357018225-57f19b?p=8866) |\n| 遗落的南境（套装共3册） | 杰夫・范德米尔 | [下载](https://url89.ctfile.com/f/31084289-1357017925-e0c5a3?p=8866) |\n| 克隆人科幻两部曲 | 南希・法默 | [下载](https://url89.ctfile.com/f/31084289-1357017907-9055bc?p=8866) |\n| 人类决裂 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357017856-f3f6a9?p=8866) |\n| 火星编年史 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1357017820-1ccbf2?p=8866) |\n| 分歧者 |  维罗尼卡・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357017796-d79478?p=8866) |\n| 分歧者2：反叛者 | 维罗尼卡・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357017793-8fd6cd?p=8866) |\n| 分歧者3：忠诚者 | 维罗尼卡・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357017790-3ab567?p=8866) |\n| 蒲公英王朝：七王之战 | 刘宇昆 | [下载](https://url89.ctfile.com/f/31084289-1357017466-93852e?p=8866) |\n| 安德的游戏三部曲 | 奥森・斯科特・卡德  | [下载](https://url89.ctfile.com/f/31084289-1357017406-384a04?p=8866) |\n| 死亡刻痕 | 维罗尼卡・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357017325-298780?p=8866) |\n| 黑暗的左手（套装共3册） | 厄休拉・勒古恩 | [下载](https://url89.ctfile.com/f/31084289-1357017001-1450cb?p=8866) |\n| 人之彼岸 | 郝景芳 | [下载](https://url89.ctfile.com/f/31084289-1357016878-0a3553?p=8866) |\n| 未来镜像 | 刘慈欣/夏笳等 | [下载](https://url89.ctfile.com/f/31084289-1357016164-7dd1f6?p=8866) |\n| 火星崛起3：晨色之星 | 皮尔斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357014709-afb2b9?p=8866) |\n| 知更鸟女孩3：神秘人 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357014673-5d684d?p=8866) |\n| 6号泵 | 保罗・巴奇加卢皮 | [下载](https://url89.ctfile.com/f/31084289-1357014658-f7fe68?p=8866) |\n| 移动迷宫（全三册） | 詹姆斯・达什纳 | [下载](https://url89.ctfile.com/f/31084289-1357014538-12dc40?p=8866) |\n| 第13个小时 | 理查德・道许 | [下载](https://url89.ctfile.com/f/31084289-1357014388-3c060e?p=8866) |\n| Morning Star | Pierce Brown | [下载](链接未找到) |\n| 格里莎三部曲 | 李・巴杜格 | [下载](https://url89.ctfile.com/f/31084289-1357013596-7d4d93?p=8866) |\n| 神经漫游者 | 威廉・吉布森 | [下载](https://url89.ctfile.com/f/31084289-1357013500-119668?p=8866) |\n| 零伯爵：神经漫游者2 | 威廉・吉布森 | [下载](https://url89.ctfile.com/f/31084289-1357013518-991e5f?p=8866) |\n| 重启蒙娜丽莎：神经漫游者3 | 威廉・吉布森 | [下载](https://url89.ctfile.com/f/31084289-1357013488-e4b0f0?p=8866) |\n| 让时间停止的女孩 | 罗伯特・富兰克林・杨 | [下载](https://url89.ctfile.com/f/31084289-1357013245-4e6466?p=8866) |\n| 摩天楼 | J.G.巴拉德 | [下载](https://url89.ctfile.com/f/31084289-1357012369-d8f3e2?p=8866) |\n| 火星崛起2：黄金之子 | 皮尔斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357011604-a69006?p=8866) |\n| 郑渊洁成人大长篇小说系列三部曲 | 郑渊洁 | [下载](https://url89.ctfile.com/f/31084289-1357011334-a9920c?p=8866) |\n| 神經喚術士 | 威廉・吉布森 | [下载](https://url89.ctfile.com/f/31084289-1357011271-f9046e?p=8866) |\n| 美妙的新世界 | 阿道司・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357010503-709f5d?p=8866) |\n| 饥饿游戏（套装共3册） | 苏珊・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1357010443-27b9b4?p=8866) |\n| 虫：虫子的世界 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357010290-eebe54?p=8866) |\n| 奇点天空 | 查尔斯・斯特罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357010020-b23b00?p=8866) |\n| 化学家（套装共2册） | 斯蒂芬妮・梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357009945-e38c49?p=8866) |\n| 未来边缘 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357009504-664435?p=8866) |\n| 凡尔纳科幻经典（套装11册） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357009561-49bf9f?p=8866) |\n| 银河帝国：基地七部曲 | 艾萨克・阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357009342-12faad?p=8866) |\n| 银河帝国：帝国三部曲 | 艾萨克・阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357009324-3d749b?p=8866) |\n| 银河帝国：机器人五部曲 | 艾萨克・阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357009321-283a4f?p=8866) |\n| 时间移民 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357009258-2d1c69?p=8866) |\n| 上帝的图书馆 | 司各特・霍金斯 | [下载](https://url89.ctfile.com/f/31084289-1357009051-91771d?p=8866) |\n| 反乌托邦三部曲 | 扎米亚京/阿道司・赫胥黎  | [下载](https://url89.ctfile.com/f/31084289-1357008736-24eb0d?p=8866) |\n| 穹顶之下 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357008688-40d3dd?p=8866) |\n| 环太平洋 | 亚历克斯・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357008577-cd05c3?p=8866) |\n| 永恒的终结 | 艾萨克・阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357007860-8793c1?p=8866) |\n| 八十天环游地球（译文名著精选） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357007725-e9294d?p=8866) |\n| 降临 | 特德・姜 | [下载](https://url89.ctfile.com/f/31084289-1357007533-b1388b?p=8866) |\n| 外星人已潜伏地球5000年 | 吉姆・马尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357007305-7428fc?p=8866) |\n| 天赋者 | 林洛 | [下载](https://url89.ctfile.com/f/31084289-1357007005-788784?p=8866) |\n| 海伯利安四部曲（套装共4册） | 丹·西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357006975-c613a8?p=8866) |\n| 火星崛起 | 皮尔斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357006954-0482f0?p=8866) |\n| 赡养人类 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357006903-d62a19?p=8866) |\n| 火星救援 | 安迪·威尔 | [下载](https://url89.ctfile.com/f/31084289-1357006720-999daf?p=8866) |\n| 三体全集 | 刘慈欣 | [下载](https://url89.ctfile.com/f/31084289-1357005103-ff0b5c?p=8866) |\n| 弗兰肯斯坦 | 玛丽・雪莱 | [下载](https://url89.ctfile.com/f/31084289-1357005019-1f783a?p=8866) |\n"
  },
  {
    "path": "md/科技.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 科技\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 所有工具都是锤子 | 亚当・萨维奇 | [下载](https://url89.ctfile.com/f/31084289-1375490995-fea1f0?p=8866) |\n| 元宇宙时代：颠覆未来的技术变革与商业图景 | 金相允 | [下载](https://url89.ctfile.com/f/31084289-1375491193-14b1ac?p=8866) |\n| 人工不智能 | 梅瑞狄斯・布鲁萨德 | [下载](https://url89.ctfile.com/f/31084289-1375491643-5332a8?p=8866) |\n| 技术陷阱 | 卡尔・贝内迪克特・弗雷 | [下载](https://url89.ctfile.com/f/31084289-1375495546-fe10e4?p=8866) |\n| 元宇宙通证 | 邢杰等 | [下载](https://url89.ctfile.com/f/31084289-1375499134-ab1e5c?p=8866) |\n| 无隐私时代 | 阿奇科・布希 | [下载](https://url89.ctfile.com/f/31084289-1375508872-0496be?p=8866) |\n| 解密Instagram | 莎拉・弗莱尔 | [下载](https://url89.ctfile.com/f/31084289-1375512328-84447b?p=8866) |\n| 工具，还是武器？ | 布拉德・史密斯/卡罗尔・安・布朗 | [下载](https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866) |\n| 创新简史：打开人类进步的黑匣子 | 赵炎 | [下载](https://url89.ctfile.com/f/31084289-1356991702-bc1ee7?p=8866) |\n| 无人驾驶 | 胡迪・利普森/梅尔芭・库曼 | [下载](https://url89.ctfile.com/f/31084289-1356983344-4b5bf8?p=8866) |\n| 隐藏的行为 | 托马斯・科洛波洛斯 | [下载](https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866) |\n| 治愈未来 | 安德鲁・基恩 | [下载](https://url89.ctfile.com/f/31084289-1357052638-8a1ece?p=8866) |\n| 人工智能时代，你的工作还好吗？ | 渠成/陈伟 | [下载](https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866) |\n| 硅谷简史 | 钱纲 | [下载](https://url89.ctfile.com/f/31084289-1357049638-d5fffc?p=8866) |\n| 5G时代：经济增长新引擎 | 孙松林 | [下载](https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866) |\n| 5G时代：生活方式和商业模式的大变革 | 龟井卓也 | [下载](https://url89.ctfile.com/f/31084289-1357048354-3ac912?p=8866) |\n| “芯”想事成 | 陈芳 | [下载](https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866) |\n| 科技失控 | 温德尔・瓦拉赫 | [下载](https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866) |\n| 中美科技巨头 | 田中道昭 | [下载](https://url89.ctfile.com/f/31084289-1357044898-522abf?p=8866) |\n| 积极计算 | 拉斐尔·A.卡里罗等 | [下载](https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866) |\n| 滑动解锁 | 尼尔・梅塔等 | [下载](https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866) |\n| 未来版图 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040737-6c7837?p=8866) |\n| 极限创新 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040614-2a8b51?p=8866) |\n| 奔腾年代：互联网与中国：1995-2018 | 郭万盛 | [下载](https://url89.ctfile.com/f/31084289-1357040287-28d2ae?p=8866) |\n| 科技之巅3 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866) |\n| 硅谷帝国 | 露西・格林 | [下载](https://url89.ctfile.com/f/31084289-1357038010-2bb020?p=8866) |\n| 迷人的材料 | 马克・米奥多尼克 | [下载](https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866) |\n| 18个未来进行时 | 吉姆・阿尔- 哈里里 | [下载](https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866) |\n| 5G时代 | 项立刚 | [下载](https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866) |\n| 与机器人共舞 | 约翰・马尔科夫 | [下载](https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866) |\n| 主食芯片 | 鸿涛 | [下载](https://url89.ctfile.com/f/31084289-1357032313-6abb7f?p=8866) |\n| 说出来你可能不信 | SME | [下载](https://url89.ctfile.com/f/31084289-1357032043-e62957?p=8866) |\n| 全球科技通史 | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357031734-3f4ae5?p=8866) |\n| 社交媒体简史 | 汤姆・斯丹迪奇 | [下载](https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866) |\n| 特斯拉传 | 哈米什・麦肯齐 | [下载](https://url89.ctfile.com/f/31084289-1357030846-20e501?p=8866) |\n| 坏血：一个硅谷巨头的秘密与谎言 | 约翰・卡雷鲁 | [下载](https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866) |\n| 量子世界的发现之旅 | 迈克尔・S. 沃克 | [下载](https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866) |\n| 数字战争 | 查尔斯・亚瑟 | [下载](https://url89.ctfile.com/f/31084289-1357027981-3905e8?p=8866) |\n| 老科技的全球史 | 大卫・艾杰顿 | [下载](https://url89.ctfile.com/f/31084289-1357027402-7317b9?p=8866) |\n| 密码朋克 | 朱利安・阿桑奇 | [下载](https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866) |\n| 人类思维如何与互联网共同进化 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866) |\n| 内容算法 | 闫泽华 | [下载](https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866) |\n| 机器70年 | 徐曦 | [下载](https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866) |\n| 硅谷百年史 | 阿伦・拉奥/皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357021381-141202?p=8866) |\n| 塑造世界经济的50项伟大发明 | 蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866) |\n| 科技前哨 | 王煜全 | [下载](https://url89.ctfile.com/f/31084289-1357020316-b05dfb?p=8866) |\n| 人工智能时代的教育革命 | 王作冰 | [下载](https://url89.ctfile.com/f/31084289-1357019908-719008?p=8866) |\n| 掌控未来系列（套装共6册） | 伊藤穰一等 | [下载](https://url89.ctfile.com/f/31084289-1357018420-d99af9?p=8866) |\n| 刷新：重新发现商业与未来 | 萨提亚・纳德拉 | [下载](https://url89.ctfile.com/f/31084289-1357017295-014e5b?p=8866) |\n| 科技的狂欢 | 安德鲁・基恩 | [下载](https://url89.ctfile.com/f/31084289-1357016656-d1cdf6?p=8866) |\n| 智能浪潮 | 布雷特・金 | [下载](https://url89.ctfile.com/f/31084289-1357015984-23b495?p=8866) |\n| 终极复制 | 李智勇 | [下载](https://url89.ctfile.com/f/31084289-1357015513-c9f8c7?p=8866) |\n| 维多利亚时代的互联网 | 汤姆・斯坦迪奇 | [下载](https://url89.ctfile.com/f/31084289-1357014751-993591?p=8866) |\n| 玻璃笼子 | 尼古拉斯・卡尔  | [下载](https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866) |\n| 人类2.0：在硅谷探索科技未来 | 皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357011589-1e110c?p=8866) |\n| Elon Musk | Ashlee Vance | [下载](https://url89.ctfile.com/f/31084289-1357010062-9778cf?p=8866) |\n| 人工智能时代 | 杰瑞・卡普兰 | [下载](https://url89.ctfile.com/f/31084289-1357009093-321621?p=8866) |\n| 科技之巅 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866) |\n| 新一轮产业革命 | 亚力克・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866) |\n| 硅谷钢铁侠 | 阿什利・万斯 | [下载](https://url89.ctfile.com/f/31084289-1357004920-ab864e?p=8866) |\n"
  },
  {
    "path": "md/科普.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 科普\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 寻蜂记 | 戴夫・古尔森 | [下载](https://url89.ctfile.com/f/31084289-1375491859-9bd801?p=8866) |\n| 关灯就睡觉 | 格雷格·D·贾克布 | [下载](https://url89.ctfile.com/f/31084289-1375491976-465249?p=8866) |\n| 人人都该懂的地外生命 | 刘易斯・达特奈尔 | [下载](https://url89.ctfile.com/f/31084289-1375492573-a93ad2?p=8866) |\n| 人人都该懂的能源新趋势 | 瓦茨拉夫・斯米尔 | [下载](https://url89.ctfile.com/f/31084289-1375493416-7ae8a8?p=8866) |\n| 数据如何误导了我们 | 桑内・布劳 | [下载](https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866) |\n| 危崖：生存性风险与人类的未来 | 托比・奥德 | [下载](https://url89.ctfile.com/f/31084289-1375493782-80c088?p=8866) |\n| 牛津科普读本（第一辑） | 克劳塞维茨等 | [下载](https://url89.ctfile.com/f/31084289-1375496395-3eb1b0?p=8866) |\n| 国家地理终极观星指南 | 霍华德・施耐德  | [下载](https://url89.ctfile.com/f/31084289-1375496701-44ca96?p=8866) |\n| 牛津通识课：理学套装（全4册） | 麦克・戈德史密斯等 | [下载](https://url89.ctfile.com/f/31084289-1375496950-51ea21?p=8866) |\n| 0次与10000次 | 吉塔・雅各布 | [下载](https://url89.ctfile.com/f/31084289-1375497181-c8dc00?p=8866) |\n| 宇宙的奥秘 | 托马斯・德・帕多瓦 | [下载](https://url89.ctfile.com/f/31084289-1375497319-411984?p=8866) |\n| 生命的起源 | 刘大可 | [下载](https://url89.ctfile.com/f/31084289-1375497466-2034fd?p=8866) |\n| 人人都该懂的脑科学 | 阿马尔・阿尔查拉比等 | [下载](https://url89.ctfile.com/f/31084289-1375497499-e3b511?p=8866) |\n| 毒药：危险物质的历史 | 本・哈伯德 | [下载](https://url89.ctfile.com/f/31084289-1375497697-cec14c?p=8866) |\n| 第一推动丛书·综合系列：伽利略的手指 | 彼得・阿特金斯 | [下载](https://url89.ctfile.com/f/31084289-1375497712-1e71d5?p=8866) |\n| 国家宝藏（全3季） | 于蕾 | [下载](https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866) |\n| 十种人性 | 德克斯特・迪亚斯 | [下载](https://url89.ctfile.com/f/31084289-1375498141-62f242?p=8866) |\n| 永不停歇的时钟 | 杰西卡・里斯金 | [下载](https://url89.ctfile.com/f/31084289-1375498153-27f384?p=8866) |\n| 人类进化史 | 加亚・文斯 | [下载](https://url89.ctfile.com/f/31084289-1375498165-5357ae?p=8866) |\n| 法治的细节 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1375498228-28f106?p=8866) |\n| 新科学漫游指南（套装共8册） | 《新科学家》杂志 | [下载](https://url89.ctfile.com/f/31084289-1375498336-abceb1?p=8866) |\n| 身体由我 | 希拉・德利兹/路易莎・施托默尔 | [下载](https://url89.ctfile.com/f/31084289-1375498423-b40073?p=8866) |\n| 柏林病人 | 娜塔莉亚・霍尔特 | [下载](https://url89.ctfile.com/f/31084289-1375498453-ee35c9?p=8866) |\n| 贪婪的多巴胺 | 丹尼尔・利伯曼等 | [下载](https://url89.ctfile.com/f/31084289-1375498459-018013?p=8866) |\n| 太空居民 | 克里斯托弗・万杰克 | [下载](https://url89.ctfile.com/f/31084289-1375498621-22f698?p=8866) |\n| 跟着文物穿越历史 | 张志浩 | [下载](https://url89.ctfile.com/f/31084289-1375498633-a2c2eb?p=8866) |\n| 国宝来了 | 马菁菁 | [下载](https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866) |\n| 懒惰脑科学 | 鲍里斯・薛瓦勒等 | [下载](https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866) |\n| 灵长类人科动物图鉴 | 向田邦子 | [下载](https://url89.ctfile.com/f/31084289-1375498702-8b48c5?p=8866) |\n| 我们为什么长这样 | 爱丽丝・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866) |\n| 碳中和时代 | 汪军 | [下载](https://url89.ctfile.com/f/31084289-1375499221-bf6b0d?p=8866) |\n| 到火星去 | 莎拉・斯图尔特・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375499260-e8e937?p=8866) |\n| 重新发现日本：500件日本怀旧器物图鉴 | 岩井宏实/中林启治 | [下载](https://url89.ctfile.com/f/31084289-1375499302-2fb977?p=8866) |\n| 医学简史 | 杰克琳・杜芬 | [下载](https://url89.ctfile.com/f/31084289-1375499506-2cac2b?p=8866) |\n| 生命在于静止 | 篠原薰 | [下载](https://url89.ctfile.com/f/31084289-1375499569-193758?p=8866) |\n| 法医报告2 | 苏・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1375499542-190a47?p=8866) |\n| 混沌：开创一门新科学 | 詹姆斯・格雷克 | [下载](https://url89.ctfile.com/f/31084289-1375499593-12a37c?p=8866) |\n| 超级生物探寻指南 | 马修 · D. 拉普兰特 | [下载](https://url89.ctfile.com/f/31084289-1375499677-11db81?p=8866) |\n| 凤凰：神鸟传奇 | 约瑟夫・尼格 | [下载](https://url89.ctfile.com/f/31084289-1375499722-63b477?p=8866) |\n| 细胞生命的礼赞 | 刘易斯・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1375499728-0ba4d6?p=8866) |\n| 给孩子的天工开物·绘本版（全三册） | 一页书 | [下载](https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866) |\n| 在别的星球上 | 吕西安・吕都 | [下载](https://url89.ctfile.com/f/31084289-1375499833-e58485?p=8866) |\n| 助燃创新的人 | 史蒂文・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375499887-18f06c?p=8866) |\n| 植物知道地球的奥秘 | 戴维・比尔林 | [下载](https://url89.ctfile.com/f/31084289-1375499872-69554e?p=8866) |\n| 戒糖：改变一生的科学饮食法 | 初夏之菡 | [下载](https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866) |\n| 狡猾的细胞 | 雅典娜・阿克蒂皮斯 | [下载](https://url89.ctfile.com/f/31084289-1375500322-b11884?p=8866) |\n| 隐藏的自我 | 大卫・伊格曼 | [下载](https://url89.ctfile.com/f/31084289-1375500376-01a4ec?p=8866) |\n| 在病毒中生存 | 苗德岁 | [下载](https://url89.ctfile.com/f/31084289-1375500622-0a9910?p=8866) |\n| 史蒂芬·霍金中文版著作全集（套装共11册） | 史蒂芬・霍金 | [下载](https://url89.ctfile.com/f/31084289-1375500730-428f3d?p=8866) |\n| 无脊椎动物百科 | 拉尔夫・布克斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1375500724-3e2969?p=8866) |\n| 外科的诞生 | 大卫・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1375500703-c0710c?p=8866) |\n| 药物简史 | 德劳因・伯奇 | [下载](https://url89.ctfile.com/f/31084289-1375500718-9137b0?p=8866) |\n| 耐药菌小史 | 穆罕默德·H.扎曼 | [下载](https://url89.ctfile.com/f/31084289-1375500787-4ece60?p=8866) |\n| 一个健康吃货的自我修养（共4册） | 威廉・李博士 | [下载](https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866) |\n| 如何证明你不是僵尸 | 杰里米・斯特朗姆 | [下载](https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866) |\n| 很高兴认识“我” | 比尔・沙利文 | [下载](https://url89.ctfile.com/f/31084289-1375500934-5e3acf?p=8866) |\n| 半小时漫画宇宙大爆炸 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375501027-465438?p=8866) |\n| 噪声：人类判断的缺陷 | 丹尼尔・卡尼曼等 | [下载](https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866) |\n| 万物皆假设 | 埃里克斯・伯依斯 | [下载](https://url89.ctfile.com/f/31084289-1375501312-6893ef?p=8866) |\n| 怀孕呵护指南 | 六层楼先生 | [下载](https://url89.ctfile.com/f/31084289-1375501330-30fc9c?p=8866) |\n| 深时之旅 | 罗伯特・麦克法伦 | [下载](https://url89.ctfile.com/f/31084289-1375501390-4ef039?p=8866) |\n| 癌症·免疫与治愈 | 迈克尔・金奇 | [下载](https://url89.ctfile.com/f/31084289-1375501393-5675f9?p=8866) |\n| 大脑的一天·鹈鹕丛书 | 苏珊・格林菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1375501504-478cce?p=8866) |\n| 传染病与人类历史 | 约书亚·S.卢米斯 | [下载](https://url89.ctfile.com/f/31084289-1375501513-c3ab6e?p=8866) |\n| 星空5500年 | 爱德华・布鲁克-海钦 | [下载](https://url89.ctfile.com/f/31084289-1375501699-2bba66?p=8866) |\n| 特工训练手册 | 克林特・埃默森 | [下载](https://url89.ctfile.com/f/31084289-1375501945-412c41?p=8866) |\n| 推开红酒的门 | 王胜寒 | [下载](https://url89.ctfile.com/f/31084289-1375502554-c90c21?p=8866) |\n| 我们星球上的生命 | 大卫・爱登堡 | [下载](https://url89.ctfile.com/f/31084289-1375503952-5bd190?p=8866) |\n| 被误解的盐 | 詹姆斯・迪尼科兰托尼奥 | [下载](https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866) |\n| 世界自然文学经典：博物图鉴版（共12册） | 伊迪丝・霍尔登等 | [下载](https://url89.ctfile.com/f/31084289-1375505827-9f090e?p=8866) |\n| 漫画病菌、人类与历史 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375505926-c5bb26?p=8866) |\n| 科学休息 | 亚历克斯・索勇－金・庞 | [下载](https://url89.ctfile.com/f/31084289-1375505929-497bb9?p=8866) |\n| 地球的故事 | 罗伯特・哈森 | [下载](https://url89.ctfile.com/f/31084289-1375505959-214d70?p=8866) |\n| 神奇的材料 | 艾妮莎・拉米雷斯 | [下载](https://url89.ctfile.com/f/31084289-1375506454-00e823?p=8866) |\n| 地图3000年 | 托马斯・伯格 | [下载](https://url89.ctfile.com/f/31084289-1375506883-89a846?p=8866) |\n| 餐桌上的危机 | 玛丽安・麦克纳 | [下载](https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866) |\n| 肠道断糖 | 江田证 | [下载](https://url89.ctfile.com/f/31084289-1375507414-c09954?p=8866) |\n| 一本书读懂碳中和 | 安永碳中和课题组 | [下载](https://url89.ctfile.com/f/31084289-1375507366-f36283?p=8866) |\n| 人为何物 | 王一江 | [下载](https://url89.ctfile.com/f/31084289-1375507411-9a3746?p=8866) |\n| 锥形帐篷的起源 | 喬尼・休斯 | [下载](https://url89.ctfile.com/f/31084289-1375507432-99ca3f?p=8866) |\n| 如果宇宙可以伸缩 | 凯莱布・沙夫 | [下载](https://url89.ctfile.com/f/31084289-1375508368-cf05f3?p=8866) |\n| 瘟疫周期 | 查尔斯・肯尼 | [下载](https://url89.ctfile.com/f/31084289-1375508044-93a44f?p=8866) |\n| 爱因斯坦的怪物 | 克里斯・伊姆佩 | [下载](https://url89.ctfile.com/f/31084289-1375508134-74bc4c?p=8866) |\n| 宇宙的起源 | 约翰・巴罗 | [下载](https://url89.ctfile.com/f/31084289-1375508191-ec962a?p=8866) |\n| 宇宙的结构 | 斯蒂芬・亚历山大 | [下载](https://url89.ctfile.com/f/31084289-1375508842-8a6735?p=8866) |\n| 阳台人的植物生活 | 伊藤正幸 | [下载](https://url89.ctfile.com/f/31084289-1375508935-c37c4a?p=8866) |\n| 脑子不会好好睡 | 盖伊・勒施齐纳 | [下载](https://url89.ctfile.com/f/31084289-1375509061-ceecea?p=8866) |\n| 21个被“淘汰”的人体器官 | 坂井建雄 | [下载](https://url89.ctfile.com/f/31084289-1375509247-6918f2?p=8866) |\n| 解剖无聊 | 马克・金维尔 | [下载](https://url89.ctfile.com/f/31084289-1375509250-97a1e0?p=8866) |\n| 七个世界，一个星球 | 强尼・基林/斯科特・亚历山大 | [下载](https://url89.ctfile.com/f/31084289-1375509295-af62d4?p=8866) |\n| 致命敌人 | 迈克尔·T.奥斯特霍姆 | [下载](https://url89.ctfile.com/f/31084289-1375509517-e76c3c?p=8866) |\n| 终极观星指南 | 鲍勃・金 | [下载](https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866) |\n| 地球的故事三部曲 | 法布尔 | [下载](https://url89.ctfile.com/f/31084289-1375509640-75ac91?p=8866) |\n| 读脑术 | 拉塞尔·A.波德拉克 | [下载](https://url89.ctfile.com/f/31084289-1375509688-9d9191?p=8866) |\n| 大英经典博物学（套装5册） | 德斯蒙德・莫里斯等 | [下载](https://url89.ctfile.com/f/31084289-1375509904-1f74c7?p=8866) |\n| 我们身处的宇宙究竟有多古怪？ | 伊拉・马克・爱格多尔 | [下载](https://url89.ctfile.com/f/31084289-1375509910-16db48?p=8866) |\n| 拜托，哲学没有那么难 | 小川仁志 | [下载](https://url89.ctfile.com/f/31084289-1375509877-4157bd?p=8866) |\n| 从玫瑰到枪炮 | 戴维・迈尔斯/琼・特韦奇 | [下载](https://url89.ctfile.com/f/31084289-1375509892-7e4601?p=8866) |\n| 欢乐数学 | 本・奥尔林 | [下载](https://url89.ctfile.com/f/31084289-1375509988-85b379?p=8866) |\n| 宇宙的最后三分钟 | 保罗・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375510018-4e0ca1?p=8866) |\n| 昆虫记（全10卷） | 法布尔 | [下载](https://url89.ctfile.com/f/31084289-1375510141-5c4c28?p=8866) |\n| 一起来粉碎朋友圈养生谣言 | 好奇博士团队 | [下载](https://url89.ctfile.com/f/31084289-1375510414-2a5276?p=8866) |\n| 失信：公共卫生体系的崩溃 | 劳丽・加勒特 | [下载](https://url89.ctfile.com/f/31084289-1375510282-6f16d7?p=8866) |\n| 悠扬的素数 | 马库斯・杜・索托伊 | [下载](https://url89.ctfile.com/f/31084289-1375510315-8d1e4a?p=8866) |\n| 人工智能之不能 | 马兆远 | [下载](https://url89.ctfile.com/f/31084289-1375510333-472d20?p=8866) |\n| BBC夜空探索系列（套装全8册） | BBC仰望夜空杂志 | [下载](https://url89.ctfile.com/f/31084289-1375510726-765a79?p=8866) |\n| 瓦尔登湖动植物图鉴 | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1375510621-959e91?p=8866) |\n| 牛津大学自然史博物馆的寻宝之旅 | 凯特・迪思顿/佐薇・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1375510750-5b4a2a?p=8866) |\n| 人类大瘟疫 | 马克・霍尼斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1375510735-fd4cb3?p=8866) |\n| 科学：无尽的前沿 | 范内瓦・布什/拉什·D·霍尔特 | [下载](https://url89.ctfile.com/f/31084289-1375510807-8d9351?p=8866) |\n| 终极求生 | 贝尔・格里尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375510861-cb888f?p=8866) |\n| 疫苗竞赛 | 梅雷迪丝・瓦德曼 | [下载](https://url89.ctfile.com/f/31084289-1375510840-cfbe9d?p=8866) |\n| 东方草木之美 | 西莉亚・费希尔 | [下载](https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866) |\n| 关于痛苦的七堂哲学课 | 斯科特・塞缪尔森 | [下载](https://url89.ctfile.com/f/31084289-1375510948-7b1f45?p=8866) |\n| 手术刀下的历史 | 阿诺德・范德拉尔 | [下载](https://url89.ctfile.com/f/31084289-1375510960-26a6f8?p=8866) |\n| 烧掉数学书 | 杰森・威尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1375510984-d5459b?p=8866) |\n| 你想知道的生酮饮食错误 | 米尔萨德・哈西奇 | [下载](https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866) |\n| 史前人类生活大辟谣 | 安托万・巴尔泽奥 | [下载](https://url89.ctfile.com/f/31084289-1375511002-65432a?p=8866) |\n| 当死亡化作生命 | 书亚・梅兹里希 | [下载](https://url89.ctfile.com/f/31084289-1375511029-0139eb?p=8866) |\n| 是我把你蠢哭了吗 | 迪安・博内特 | [下载](https://url89.ctfile.com/f/31084289-1375511098-4544c6?p=8866) |\n| 5分钟生物课 | 冯智 | [下载](https://url89.ctfile.com/f/31084289-1375511134-5ad126?p=8866) |\n| 怪奇事物所 | 怪奇事物所所长 | [下载](https://url89.ctfile.com/f/31084289-1375511239-e8b5e8?p=8866) |\n| 费曼的彩虹 | 伦纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1375511389-9a7177?p=8866) |\n| 六极物理 | 严伯钧 | [下载](https://url89.ctfile.com/f/31084289-1375511584-57f21d?p=8866) |\n| 人类学讲义稿 | 王铭铭 | [下载](https://url89.ctfile.com/f/31084289-1375511617-633896?p=8866) |\n| 黄油：一部丰富的历史 | 约翰・马图夏克 | [下载](https://url89.ctfile.com/f/31084289-1375511737-ace1ac?p=8866) |\n| 白鱼解字 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1375511992-0df03b?p=8866) |\n| 从部落到国家 | 马克·W. 莫菲特 | [下载](https://url89.ctfile.com/f/31084289-1375511962-90a78c?p=8866) |\n| 度量衡简史 | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1375511983-ec1b7c?p=8866) |\n| 菌物志 | 斑斑 | [下载](https://url89.ctfile.com/f/31084289-1375512040-b79e08?p=8866) |\n| 不可能的六件事 | 约翰・格里宾 | [下载](https://url89.ctfile.com/f/31084289-1375512064-c9fcdc?p=8866) |\n| 伴你一生的睡眠指导书 | 爱丽丝・格雷戈里 | [下载](https://url89.ctfile.com/f/31084289-1375512151-440c95?p=8866) |\n| 荒诞医学史·中国篇 | 光子 | [下载](https://url89.ctfile.com/f/31084289-1375512193-724ebd?p=8866) |\n| 动物王朝 | 冉浩 | [下载](https://url89.ctfile.com/f/31084289-1375512175-7e0849?p=8866) |\n| 茶学与茶科学 | 叶士敏 | [下载](https://url89.ctfile.com/f/31084289-1375512316-d78971?p=8866) |\n| 血液循环 | 弗朗索瓦・布斯塔尼 | [下载](https://url89.ctfile.com/f/31084289-1375512286-58e5e6?p=8866) |\n| 性的进化 | 贾雷德・戴蒙德 | [下载](https://url89.ctfile.com/f/31084289-1375512319-d04e8d?p=8866) |\n| 达尔文的战争 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866) |\n| 图解宇宙的尺度 | 金伯莉・阿坎德 | [下载](https://url89.ctfile.com/f/31084289-1375512424-f9a069?p=8866) |\n| 老爸评测：你的健康呵护指南 | 老爸评测 | [下载](https://url89.ctfile.com/f/31084289-1375512535-af72f0?p=8866) |\n| 女士品茶 | 戴维・萨尔斯伯格 | [下载](https://url89.ctfile.com/f/31084289-1375512682-fdee18?p=8866) |\n| 餐桌上的浪漫史 | 诺曼・C.埃尔斯特兰德 | [下载](https://url89.ctfile.com/f/31084289-1375512688-2974e3?p=8866) |\n| 追寻记忆的痕迹 | 埃里克・坎德尔 | [下载](https://url89.ctfile.com/f/31084289-1375513372-90244d?p=8866) |\n| 动物眼中的人类 | 赵序茅 | [下载](https://url89.ctfile.com/f/31084289-1375513462-89d08b?p=8866) |\n| 智慧大脑 | 艾克纳恩・戈德堡 | [下载](https://url89.ctfile.com/f/31084289-1375513534-db2475?p=8866) |\n| 动物不简单（套装共5册） | 德斯蒙德・莫里斯等 | [下载](https://url89.ctfile.com/f/31084289-1375513651-236db3?p=8866) |\n| 诗意的宇宙 | 斯特凡・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1375513624-bf8549?p=8866) |\n| 干掉失眠 | 科琳・恩斯特朗姆/阿丽莎・布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1375513654-b14e9b?p=8866) |\n| 工具，还是武器？ | 布拉德・史密斯/卡罗尔・安・布朗 | [下载](https://url89.ctfile.com/f/31084289-1375513657-9c3045?p=8866) |\n| 沉默的铁证 | 安吉拉・盖洛普/简・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1375513696-53c951?p=8866) |\n| 奇葩进化论（套装共7册） | 玛拉·J. 哈尔特等 | [下载](https://url89.ctfile.com/f/31084289-1375513783-2e2ad9?p=8866) |\n| 像火箭科学家一样思考 | 奥赞・瓦罗尔 | [下载](https://url89.ctfile.com/f/31084289-1375513759-0d8eec?p=8866) |\n| 第六日译丛（套装六册） | 玛丽・罗琦等 | [下载](https://url89.ctfile.com/f/31084289-1375513816-ceb911?p=8866) |\n| 大脑修复术 | 姚乃琳 | [下载](https://url89.ctfile.com/f/31084289-1357004539-c52863?p=8866) |\n| 丁香妈妈科学养育 | 丁香妈妈 | [下载](https://url89.ctfile.com/f/31084289-1357004488-c3216d?p=8866) |\n| 超级社会 | 彼得・图尔钦 | [下载](https://url89.ctfile.com/f/31084289-1357004446-8c0263?p=8866) |\n| 医疗与人性系列（套装共4册） | 亨利・马什等 | [下载](https://url89.ctfile.com/f/31084289-1357004365-27ce81?p=8866) |\n| 中国科学史（全两册） | 李申 | [下载](https://url89.ctfile.com/f/31084289-1357004308-1ba9f4?p=8866) |\n| 鳗鱼的旅行 | 帕特里克・斯文松 | [下载](https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866) |\n| 水的密码 | 特里斯坦・古利 | [下载](https://url89.ctfile.com/f/31084289-1357004038-2e1bbb?p=8866) |\n| 传染病的文化史 | 洛伊斯·N.玛格纳 | [下载](https://url89.ctfile.com/f/31084289-1357003951-810a75?p=8866) |\n| 缺陷也完美 | 内森·H.兰兹 | [下载](https://url89.ctfile.com/f/31084289-1357003792-89386e?p=8866) |\n| 日常生活中的发明原理 | 高木芳德 | [下载](https://url89.ctfile.com/f/31084289-1357003813-12cbae?p=8866) |\n| 生命是什么：活细胞的物理观 | 埃尔温・薛定谔 | [下载](https://url89.ctfile.com/f/31084289-1357003762-6a6963?p=8866) |\n| 刑罚的历史 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1357003726-07d003?p=8866) |\n| 人体的秘密 | 耶尔・阿德勒/卡佳・施皮策 | [下载](https://url89.ctfile.com/f/31084289-1357003708-5ef7a9?p=8866) |\n| 传染 | 亚当・库哈尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1357003660-c8d8ff?p=8866) |\n| 生命是什么：40亿年生命史诗的开端 | 埃迪・普罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357003546-7d4c71?p=8866) |\n| 人类简史（知识漫画） | 尤瓦尔・赫拉利等 | [下载](https://url89.ctfile.com/f/31084289-1357001926-2ba1b6?p=8866) |\n| 够笑一年的奇葩人体冷知识 | SME | [下载](https://url89.ctfile.com/f/31084289-1357001743-801a91?p=8866) |\n| 量子空间 | 吉姆・巴戈特 | [下载](https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866) |\n| 颜色的故事 | 加文・埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357001311-2dfefb?p=8866) |\n| 下落小猫与基础物理学 | 格雷戈里·J.格布尔 | [下载](https://url89.ctfile.com/f/31084289-1357001302-28b2c5?p=8866) |\n| 进化的故事 | 奥伦・哈曼 | [下载](https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866) |\n| 爱因斯坦的未完成交响曲 | 玛西亚・芭楚莎 | [下载](https://url89.ctfile.com/f/31084289-1357000840-0ee42a?p=8866) |\n| 相对论之路 | 哈诺赫・古特弗罗因德/于尔根・雷恩 | [下载](https://url89.ctfile.com/f/31084289-1357000813-842202?p=8866) |\n| 犯罪心理套装（共四册） | 许大鹏等 | [下载](https://url89.ctfile.com/f/31084289-1357000780-01c775?p=8866) |\n| 猎药师 | 唐纳德・R・基尔希/奥吉・奥加斯 | [下载](https://url89.ctfile.com/f/31084289-1357000702-1890cd?p=8866) |\n| 逻辑新引·怎样判别是非 | 殷海光 | [下载](https://url89.ctfile.com/f/31084289-1357000414-fe83d1?p=8866) |\n| 爱因斯坦语录（终极版） | 阿尔伯特・爱因斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357000372-db0ba3?p=8866) |\n| 解码时间 | 阿德里安・巴登 | [下载](https://url89.ctfile.com/f/31084289-1357000285-11cfb0?p=8866) |\n| 基因之河 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1356999775-ad8131?p=8866) |\n| 薄世宁医学通识讲义 | 薄世宁 | [下载](https://url89.ctfile.com/f/31084289-1356999703-5d8070?p=8866) |\n| 刑法学讲义 | 罗翔 | [下载](https://url89.ctfile.com/f/31084289-1356999190-b9ce24?p=8866) |\n| 人人都该懂的认识论 | 罗伯特・马丁 | [下载](https://url89.ctfile.com/f/31084289-1356999046-10db8e?p=8866) |\n| 人人都该懂的互联网思维 | 伯纳多・A. 胡伯曼 | [下载](https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866) |\n| 人人都该懂的地球科学 | 约翰・格里宾 | [下载](https://url89.ctfile.com/f/31084289-1356998518-3ec35a?p=8866) |\n| 生命进化的跃升 | 尼克・莱恩 | [下载](https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866) |\n| 给年轻科学家的信 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1356997759-7b3384?p=8866) |\n| 美国国会（牛津通识读本） | 唐纳德・A.里奇 | [下载](https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866) |\n| 日用品简史 | 安迪・沃纳 | [下载](https://url89.ctfile.com/f/31084289-1356997060-cffd2a?p=8866) |\n| 如何不切实际地解决实际问题 | 兰道尔・门罗 | [下载](https://url89.ctfile.com/f/31084289-1356996721-c3a523?p=8866) |\n| 张文宏说传染 | 张文宏 | [下载](https://url89.ctfile.com/f/31084289-1356996598-f10f1a?p=8866) |\n| 威士忌原来是这么回事儿 | 米凯勒・吉多 | [下载](https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866) |\n| 奥利弗萨克斯系列（套装共4册） | 奥利弗・萨克斯 | [下载](https://url89.ctfile.com/f/31084289-1356995947-35801f?p=8866) |\n| 肉料理原来是这么回事儿 | 亚瑟・勒凯恩 | [下载](https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866) |\n| 啤酒原来是这么回事儿 | 吉雷克・奥贝尔 | [下载](https://url89.ctfile.com/f/31084289-1356995656-57d831?p=8866) |\n| 捍卫隐私 | 凯文・米特尼克/罗伯特・瓦摩西 | [下载](https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866) |\n| 鸡尾酒原来是这么回事儿 | 米凯勒・吉多/亚尼斯・瓦卢西克斯 | [下载](https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866) |\n| 致命接触（第二版） | 大卫・奎曼 | [下载](https://url89.ctfile.com/f/31084289-1356995455-e3dd7a?p=8866) |\n| 奶酪原来是这么回事儿 | 特里斯坦・西卡尔 | [下载](https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866) |\n| 物质是什么 | 吉姆・巴戈特 | [下载](https://url89.ctfile.com/f/31084289-1356995395-ff06d5?p=8866) |\n| 科学的价值 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1356995326-60c097?p=8866) |\n| 半小时漫画预防常见病 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356995287-e29128?p=8866) |\n| 人体简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1356995005-0355b3?p=8866) |\n| 《三体》中的物理学 | 李淼 | [下载](https://url89.ctfile.com/f/31084289-1356994771-0f42c1?p=8866) |\n| 有趣得让人睡不着的科普系列（套装共8册） | 竹内薫等 | [下载](https://url89.ctfile.com/f/31084289-1356994651-9f7c25?p=8866) |\n| 肥胖代码 | 冯子新 | [下载](https://url89.ctfile.com/f/31084289-1356994552-448a66?p=8866) |\n| 一个利他主义者之死 | 奥伦・哈曼 | [下载](https://url89.ctfile.com/f/31084289-1356994531-bf36d7?p=8866) |\n| 基因蓝图 | 罗伯特・普罗明 | [下载](https://url89.ctfile.com/f/31084289-1356994126-6e174f?p=8866) |\n| 如何睡个好觉 | 劳伦斯·J. 爱泼斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356994057-0b5f45?p=8866) |\n| 姿势跑法 | 尼古拉斯・罗曼诺夫/约翰・罗伯逊 | [下载](https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866) |\n| 心智与阅读 | 丹尼尔·T.威林厄姆 | [下载](https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866) |\n| 创新大脑 | 艾克纳恩・戈德堡艾克纳恩・戈德堡 | [下载](https://url89.ctfile.com/f/31084289-1356991867-61d613?p=8866) |\n| 地理的时空 | 尼古拉斯・克兰 | [下载](https://url89.ctfile.com/f/31084289-1356991804-582d1b?p=8866) |\n| 好奇心杂货铺 | 汤姆・斯丹迪奇 | [下载](https://url89.ctfile.com/f/31084289-1356991786-260d2f?p=8866) |\n| 牛津通识课 | 凯瑟琳・玛丽・布伦德尔等 | [下载](https://url89.ctfile.com/f/31084289-1356991699-95a1ef?p=8866) |\n| 如果，哥白尼错了 | 凯莱布・沙夫 | [下载](https://url89.ctfile.com/f/31084289-1356991624-eb9c92?p=8866) |\n| 从丝绸到硅 | 杰弗里・加滕 | [下载](https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866) |\n| 大流感 | 约翰 M.巴里 | [下载](https://url89.ctfile.com/f/31084289-1356990898-2c7e53?p=8866) |\n| 法医报告 | 苏・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866) |\n| 世界边缘的秘密 | 光子 | [下载](https://url89.ctfile.com/f/31084289-1356990409-361d96?p=8866) |\n| 天空无界 | 尼尔・德格拉斯・泰森 | [下载](链接未找到) |\n| 上帝的骰子 | 罗金海 | [下载](https://url89.ctfile.com/f/31084289-1356990250-a7df8a?p=8866) |\n| 与达尔文共进晚餐 | 乔纳森・西尔弗顿 | [下载](https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866) |\n| 非正常死亡事件簿 | 上野正彦 | [下载](https://url89.ctfile.com/f/31084289-1356990121-2cc599?p=8866) |\n| 一个天文学家的夜空漫游指南 | 郑春顺 | [下载](https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866) |\n| 给孩子的清宫海错图 | 夏雪著 | [下载](https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866) |\n| 自然的音符 | 自然科研 | [下载](https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866) |\n| 思维魔方 | 陈波 | [下载](https://url89.ctfile.com/f/31084289-1356989965-527109?p=8866) |\n| 不吃糖的理由 | 加里・陶布斯 | [下载](https://url89.ctfile.com/f/31084289-1356989851-a15964?p=8866) |\n| 企鹅、凤梨与穿山甲 | 克莱尔・科克-斯塔基 | [下载](https://url89.ctfile.com/f/31084289-1356989284-df491a?p=8866) |\n| 中国妖怪大全 | 孙见坤 | [下载](https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866) |\n| 万物发明指南 | 瑞安・诺思 | [下载](https://url89.ctfile.com/f/31084289-1356987853-c23f39?p=8866) |\n| 太阳系度假指南 | 奥莉维亚・科斯基/加纳・格鲁赛维克 | [下载](https://url89.ctfile.com/f/31084289-1356987550-2e4e9e?p=8866) |\n| 多云的宇宙 | 小谷太郎 | [下载](https://url89.ctfile.com/f/31084289-1356987340-afdf8f?p=8866) |\n| 思维的本质 | 约翰・杜威 | [下载](https://url89.ctfile.com/f/31084289-1356987280-13909c?p=8866) |\n| 尸检报告 | 卡拉・瓦伦丁 | [下载](https://url89.ctfile.com/f/31084289-1356987277-fccf1c?p=8866) |\n| 思维：关于决策、问题解决与预测的新科学 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1356987145-752493?p=8866) |\n| 极简20世纪史 | 妮古拉・查尔顿/梅雷迪思・麦克阿德尔 | [下载](https://url89.ctfile.com/f/31084289-1356986602-539487?p=8866) |\n| 数学本来很简单 | 赛・太蒙尼 | [下载](https://url89.ctfile.com/f/31084289-1356986686-8acded?p=8866) |\n| 半小时漫画科学史 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356986257-c07e96?p=8866) |\n| 简史：世界隐秘知识博库（套装全4册） | 大卫・沃克等 | [下载](https://url89.ctfile.com/f/31084289-1356986746-917056?p=8866) |\n| 是我想多了吗？ | 新科学家杂志/邱涛涛 | [下载](https://url89.ctfile.com/f/31084289-1356985945-b0a7c6?p=8866) |\n| 基因与命运 | 斯蒂芬·J.海涅 | [下载](https://url89.ctfile.com/f/31084289-1356985726-a126a7?p=8866) |\n| 伊林经典科普小丛书（套装4册） | 伊林 | [下载](https://url89.ctfile.com/f/31084289-1356985759-492e78?p=8866) |\n| 心、脑与科学（二十世纪西方哲学经典） | 约翰・塞尔 | [下载](https://url89.ctfile.com/f/31084289-1356985651-a671c2?p=8866) |\n| 未解的宇宙 | 汪诘 | [下载](https://url89.ctfile.com/f/31084289-1356985645-e44e5a?p=8866) |\n| 数字起源 | 凯莱布・埃弗里特 | [下载](https://url89.ctfile.com/f/31084289-1356985594-5ea813?p=8866) |\n| 太阳系简史 | 约翰・钱伯斯/杰奎琳・米顿 | [下载](https://url89.ctfile.com/f/31084289-1356985441-0ba225?p=8866) |\n| 语言的诞生 | 丹尼尔·L. 埃弗雷特 | [下载](https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866) |\n| 1分钟物理套装 | 中科院物理所 | [下载](https://url89.ctfile.com/f/31084289-1356985375-1c626d?p=8866) |\n| 生命之源 | 尼克・連恩 | [下载](https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866) |\n| 我们脑中那些挥之不去的问题 | 卓克 | [下载](https://url89.ctfile.com/f/31084289-1356985348-fd5cec?p=8866) |\n| 虫 | 儒勒・米什莱 | [下载](https://url89.ctfile.com/f/31084289-1356985333-8f71e8?p=8866) |\n| 鸟 | 儒勒・米什莱 | [下载](https://url89.ctfile.com/f/31084289-1356985324-f5b93b?p=8866) |\n| 海 | 儒勒・米什莱 | [下载](https://url89.ctfile.com/f/31084289-1356985309-558959?p=8866) |\n| 山 | 儒勒・米什莱 | [下载](https://url89.ctfile.com/f/31084289-1356985306-7d7e9b?p=8866) |\n| 人类的旅程 | 斯宾塞・韦尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356985285-3ca80d?p=8866) |\n| 人人都该懂的工程学 | 娜塔莎・麦卡锡 | [下载](https://url89.ctfile.com/f/31084289-1356985189-b04eab?p=8866) |\n| 新序（全本全注全译） | 马世年 | [下载](https://url89.ctfile.com/f/31084289-1356985030-3dd24c?p=8866) |\n| 神经科医生有话要说 | 吴洵昳 | [下载](https://url89.ctfile.com/f/31084289-1356984910-24b0a8?p=8866) |\n| 十分钟智商运动 | 李永乐 | [下载](https://url89.ctfile.com/f/31084289-1356984940-6dc445?p=8866) |\n| 地球编年史（套装全七册） | 撒迦利亚・西琴 | [下载](https://url89.ctfile.com/f/31084289-1356984895-9db4cb?p=8866) |\n| 人生新算法 | 矢野和男 | [下载](https://url89.ctfile.com/f/31084289-1356984541-43bc39?p=8866) |\n| 无穷的开始 | 戴维・多伊奇 | [下载](https://url89.ctfile.com/f/31084289-1356983914-b01695?p=8866) |\n| 无穷小 | 阿米尔・亚历山大 | [下载](https://url89.ctfile.com/f/31084289-1356983869-87196d?p=8866) |\n| 智能机器如何思考 | 肖恩・格里什 | [下载](https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866) |\n| 人类成功统治地球的秘密 | 约瑟夫・亨里奇 | [下载](https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866) |\n| 人类思维的自然史 | 迈克尔・托马塞洛 | [下载](https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866) |\n| 重口味心理学2 | 姚尧 | [下载](https://url89.ctfile.com/f/31084289-1356982465-e937d4?p=8866) |\n| 小数据之美 | 陈辉 | [下载](https://url89.ctfile.com/f/31084289-1356982447-1e6d76?p=8866) |\n| 异端：进击的哲学现场 | 史蒂文・纳德勒 | [下载](https://url89.ctfile.com/f/31084289-1357054525-b4416a?p=8866) |\n| 时间观 | 西蒙・加菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357054399-46d739?p=8866) |\n| 物理学的进化 | 阿尔伯特・爱因斯坦/利奥波德・英费尔德 | [下载](https://url89.ctfile.com/f/31084289-1357054312-e9dd25?p=8866) |\n| 月亮全书 | 比尔・莱瑟巴罗 | [下载](https://url89.ctfile.com/f/31084289-1357053916-32c5f9?p=8866) |\n| 寻找爽点 | 大卫・林登 | [下载](https://url89.ctfile.com/f/31084289-1357053724-0d1325?p=8866) |\n| 致命流感 | 杰里米・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357053661-503b47?p=8866) |\n| 网络（牛津通识读本） | 圭多・卡尔达雷利/米凯莱・卡坦扎罗 | [下载](https://url89.ctfile.com/f/31084289-1357053052-0ef287?p=8866) |\n| 电影（牛津通识读本） | 迈克尔・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866) |\n| 雨：一部自然与文化的历史 | 辛西娅・巴内特 | [下载](https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866) |\n| 深奥的简洁 | 约翰・格里宾 | [下载](https://url89.ctfile.com/f/31084289-1357052617-a8d943?p=8866) |\n| 人机共生 | 托马斯・达文波特/茱莉娅・柯尔比 | [下载](https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866) |\n| 人工智能时代，你的工作还好吗？ | 渠成/陈伟 | [下载](https://url89.ctfile.com/f/31084289-1357051939-b08242?p=8866) |\n| 人工智能十万个为什么 | 智能相对论 | [下载](https://url89.ctfile.com/f/31084289-1357051492-7ab628?p=8866) |\n| 世纪的哭泣 | 兰迪・希尔茨 | [下载](https://url89.ctfile.com/f/31084289-1357051345-8d25b6?p=8866) |\n| 迷人的逻辑题 | 亚历克斯・贝洛斯 | [下载](https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866) |\n| 大脑训练手册 | 塔拉・斯瓦特 | [下载](https://url89.ctfile.com/f/31084289-1357051024-e3c24d?p=8866) |\n| 《自然》百年科学经典（第一卷） | 赫胥黎等 | [下载](https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866) |\n| 角斗士、海盗与信任博弈 | 哈伊姆・夏皮拉 | [下载](https://url89.ctfile.com/f/31084289-1357050799-329cef?p=8866) |\n| 和伊壁鸠鲁一起旅行 | 丹尼尔・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357050787-35640b?p=8866) |\n| 创造未来城市 | 迈克尔・巴蒂 | [下载](https://url89.ctfile.com/f/31084289-1357050715-39faf6?p=8866) |\n| 追捕祝融星 | 托马斯・利文森 | [下载](https://url89.ctfile.com/f/31084289-1357050697-5694eb?p=8866) |\n| 《新科学家》杂志轻科普系列（套装全3册） | 新科学家杂志 | [下载](https://url89.ctfile.com/f/31084289-1357050586-d2fffd?p=8866) |\n| 极简地理学 | 威尔・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357050448-e34a7b?p=8866) |\n| 动物的“屁”事儿 | 尼克・卡鲁索等 | [下载](https://url89.ctfile.com/f/31084289-1357050424-0a1c39?p=8866) |\n| 我在太空的一年 | 斯科特 · 凯利等 | [下载](https://url89.ctfile.com/f/31084289-1357050355-16803e?p=8866) |\n| 极简哲学史 | 莱斯莉・莱文 | [下载](https://url89.ctfile.com/f/31084289-1357050184-da086c?p=8866) |\n| 极简量子力学 | 张天蓉 | [下载](https://url89.ctfile.com/f/31084289-1357050145-239ab3?p=8866) |\n| 万智有灵 | 弗朗斯・德瓦尔 | [下载](https://url89.ctfile.com/f/31084289-1357049908-4023d0?p=8866) |\n| 电影冷知识 | 许立衡/张凯淯 | [下载](https://url89.ctfile.com/f/31084289-1357049617-ca8f01?p=8866) |\n| 与爱因斯坦共进早餐 | 查德・奥泽尔 | [下载](https://url89.ctfile.com/f/31084289-1357049521-754f57?p=8866) |\n| 全新万物简史 | 鲍勃・伯曼 | [下载](https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866) |\n| 结构是什么 | 詹姆斯・爱德华・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866) |\n| 5G时代：经济增长新引擎 | 孙松林 | [下载](https://url89.ctfile.com/f/31084289-1357049167-7cc0f4?p=8866) |\n| 新型冠状病毒感染防护 | 何剑峰/宋铁 | [下载](https://url89.ctfile.com/f/31084289-1357048888-1ce5cf?p=8866) |\n| 《科学美国人》精选系列科学全景套装（共14册） | 《环球科学》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866) |\n| 大开眼界的科学知识 | 胡桃夹子工作室 | [下载](https://url89.ctfile.com/f/31084289-1357048882-d2f1c4?p=8866) |\n| 汤姆斯河 | 丹・费金 | [下载](https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866) |\n| 动物奇葩说 | 尼克・卡鲁索等 | [下载](https://url89.ctfile.com/f/31084289-1357048585-97d7e9?p=8866) |\n| 费恩曼物理学讲义（新千年版）（套装共3册） | 费恩曼 | [下载](https://url89.ctfile.com/f/31084289-1357048867-70de47?p=8866) |\n| 人类为什么要探索太空 | 克里斯・英庇 | [下载](https://url89.ctfile.com/f/31084289-1357048507-649167?p=8866) |\n| 模型思维 | 斯科特・佩奇 | [下载](https://url89.ctfile.com/f/31084289-1357048045-63863d?p=8866) |\n| 人类的进击 | 唐文 | [下载](https://url89.ctfile.com/f/31084289-1357047508-dc4798?p=8866) |\n| 老鼠、虱子和历史 | 汉斯・辛瑟尔 | [下载](https://url89.ctfile.com/f/31084289-1357047154-4c937f?p=8866) |\n| 科技与和平 | 皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357047055-d0635a?p=8866) |\n| 睡个好觉 | 迈尔・克利格 | [下载](https://url89.ctfile.com/f/31084289-1357046974-e3f8e3?p=8866) |\n| 超级潜能 | 亚当・皮奥里 | [下载](https://url89.ctfile.com/f/31084289-1357046656-e8fc4a?p=8866) |\n| 超人诞生 | 稻见昌彦 | [下载](https://url89.ctfile.com/f/31084289-1357046428-f0a336?p=8866) |\n| 超纲冷知识 | 吉姆・查普曼 | [下载](https://url89.ctfile.com/f/31084289-1357046425-97ce43?p=8866) |\n| 大脑的情绪生活 | 理查德・戴维森/莎朗・伯格利 | [下载](https://url89.ctfile.com/f/31084289-1357046380-9cf5de?p=8866) |\n| 大图景 | 肖恩・卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357046332-a41634?p=8866) |\n| 动物思维 | 查尔斯・福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357046140-2e2e23?p=8866) |\n| 人工智能会抢哪些工作 | 理查德・萨斯坎德/丹尼尔・萨斯坎德 | [下载](https://url89.ctfile.com/f/31084289-1357046014-d3f3a4?p=8866) |\n| 亚洲古兵器图说 | 周纬 | [下载](https://url89.ctfile.com/f/31084289-1357046128-2c7284?p=8866) |\n| AI的25种可能 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357045990-ebb4e9?p=8866) |\n| 140亿年宇宙演化全史 | 尼尔・德格拉斯・泰森/唐纳德・戈德史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357045711-acfd80?p=8866) |\n| 十二堂经典科普课 | 吴京平/汪诘 | [下载](https://url89.ctfile.com/f/31084289-1357045681-e1cc56?p=8866) |\n| 极端生存 | 史蒂芬・帕鲁比/安东尼・帕鲁比 | [下载](https://url89.ctfile.com/f/31084289-1357045501-c5f1f7?p=8866) |\n| 科技失控 | 温德尔・瓦拉赫 | [下载](https://url89.ctfile.com/f/31084289-1357045468-5452cb?p=8866) |\n| 学会呼吸 | 帕特里克・麦基翁 | [下载](https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866) |\n| 美丽之问 | 弗兰克・维尔切克 | [下载](https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866) |\n| 超级思维 | 托马斯·W·马隆 | [下载](https://url89.ctfile.com/f/31084289-1357045216-ccaf96?p=8866) |\n| 共同的生命线 | 约翰・苏尔斯顿/乔治娜・费里 | [下载](https://url89.ctfile.com/f/31084289-1357045171-77570b?p=8866) |\n| 欢迎来到你的世界 | 莎拉・威廉姆斯・戈德哈根 | [下载](https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866) |\n| 空间简史 | 托马斯・马卡卡罗 | [下载](https://url89.ctfile.com/f/31084289-1357044703-9154af?p=8866) |\n| 从一到无穷大（果麦版） | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866) |\n| 极简算法史 | 吕克・德・布拉班迪尔 | [下载](https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866) |\n| 写给大家的AI极简史 | 托马斯・拉姆齐 | [下载](https://url89.ctfile.com/f/31084289-1357043935-90a7c1?p=8866) |\n| 叛逆的思想家 | 皮耶尔乔治・奥迪弗雷迪 | [下载](https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866) |\n| 让我们灵魂激荡身体欢愉 | 任黎明 | [下载](https://url89.ctfile.com/f/31084289-1357043866-18019c?p=8866) |\n| 你也是蘑菇吗 | 安定医院郝医生 | [下载](https://url89.ctfile.com/f/31084289-1357043701-0683a6?p=8866) |\n| 超凡：我们的身心极致及天赋的科学 | 罗恩・胡珀 | [下载](https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866) |\n| 古代人的日常生活 | 讲历史的王老师 | [下载](https://url89.ctfile.com/f/31084289-1357043638-abdc6f?p=8866) |\n| 晓肚知肠 | 段云峰 | [下载](https://url89.ctfile.com/f/31084289-1357043326-134f07?p=8866) |\n| 我包罗万象 | 埃德・扬 | [下载](https://url89.ctfile.com/f/31084289-1357043266-561836?p=8866) |\n| 气候改变世界 | 布莱恩・费根 | [下载](https://url89.ctfile.com/f/31084289-1357043254-e54d87?p=8866) |\n| 揭秘太空 | 张天蓉 | [下载](https://url89.ctfile.com/f/31084289-1357043209-6575f3?p=8866) |\n| 改变未来的九大算法 | 约翰・麦考密克 | [下载](https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866) |\n| 极简世界神话 | 马克・丹尼尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357042600-e34866?p=8866) |\n| 触感引擎 | 大卫・林登 | [下载](https://url89.ctfile.com/f/31084289-1357042108-97942a?p=8866) |\n| 女生呵护指南 | 六层楼 | [下载](https://url89.ctfile.com/f/31084289-1357041436-dc9eb4?p=8866) |\n| 滑动解锁 | 尼尔・梅塔等 | [下载](https://url89.ctfile.com/f/31084289-1357041268-8703f8?p=8866) |\n| 人类起源的故事 | 大卫・赖克 | [下载](https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866) |\n| 病者生存 | 沙龙・莫勒姆/乔纳森・普林斯 | [下载](https://url89.ctfile.com/f/31084289-1357040998-261d56?p=8866) |\n| 极简新药发现史 | 彭雷 | [下载](https://url89.ctfile.com/f/31084289-1357040899-7bda48?p=8866) |\n| 祖先的故事 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357040707-39a87e?p=8866) |\n| 法布尔植物记：手绘珍藏版（套装共2册） | 法布尔 | [下载](https://url89.ctfile.com/f/31084289-1357040536-bfadef?p=8866) |\n| 我们花园里的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866) |\n| 猫的秘密 | 约翰・布拉德肖 | [下载](https://url89.ctfile.com/f/31084289-1357040104-568c5d?p=8866) |\n| 科技之巅3 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357040035-383a2d?p=8866) |\n| 我们林地里的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866) |\n| 我们迷人的鸟：猫头鹰 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866) |\n| 企鹅与其他海鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866) |\n| 我们唱歌的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866) |\n| 人性中的善与恶 | 阿比盖尔・马什 | [下载](https://url89.ctfile.com/f/31084289-1357039612-8d1c5f?p=8866) |\n| 我们为什么会说脏话？ | 埃玛・伯恩 | [下载](https://url89.ctfile.com/f/31084289-1357039573-d271a0?p=8866) |\n| 上帝掷骰子吗？（升级版） | 曹天元 | [下载](https://url89.ctfile.com/f/31084289-1357039567-9b107f?p=8866) |\n| 空荡荡的地球 | 达雷尔・布里克/约翰・伊比特森 | [下载](https://url89.ctfile.com/f/31084289-1357039507-2d7877?p=8866) |\n| 啤博士的啤酒札记 | 太空精酿 | [下载](https://url89.ctfile.com/f/31084289-1357039351-39ea9e?p=8866) |\n| 太空旅行指南 | 尼尔·F. 科明斯 | [下载](https://url89.ctfile.com/f/31084289-1357039180-ff8b0d?p=8866) |\n| 创世记 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357038829-745a6a?p=8866) |\n| 反本能生存学 | 李・戈德曼 | [下载](https://url89.ctfile.com/f/31084289-1357038757-646e30?p=8866) |\n| 亚当的肚脐 | 迈克尔・西姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357038733-b4a2a8?p=8866) |\n| 免疫 | 尤拉・比斯 | [下载](https://url89.ctfile.com/f/31084289-1357038577-a46ac8?p=8866) |\n| 猫咪海洋简史 | 菲利帕・桑德尔/艾德・朗 | [下载](https://url89.ctfile.com/f/31084289-1357038478-6fe43e?p=8866) |\n| 理性动物 | 道格拉斯・肯里克 | [下载](https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866) |\n| 半小时漫画经济学（生活常识篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866) |\n| 盐糖脂 | 迈克尔・莫斯 | [下载](https://url89.ctfile.com/f/31084289-1357037266-955677?p=8866) |\n| 第一推动丛书·量子探秘系列（新版套装共5册） | 布鲁斯・罗森布鲁姆等 | [下载](https://url89.ctfile.com/f/31084289-1357037227-c08bef?p=8866) |\n| 第一推动丛书·弦理论之争系列（新版套装共3册） | 布莱恩・格林 | [下载](https://url89.ctfile.com/f/31084289-1357037062-f2fa8b?p=8866) |\n| 极简数学 | 克里斯・韦林 | [下载](https://url89.ctfile.com/f/31084289-1357036807-4542b9?p=8866) |\n| 醉酒简史 | 马克・福赛思 | [下载](https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866) |\n| 第一推动丛书·时空奥秘系列（新版套装共5册） | 史蒂芬・霍金等 | [下载](https://url89.ctfile.com/f/31084289-1357036891-abb2fb?p=8866) |\n| 非平面 | 尼克・索萨尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866) |\n| 弥散的心智 | 里卡多・曼佐蒂 | [下载](https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866) |\n| 人人都该懂的遗传学 | 伯顿・格特曼等 | [下载](https://url89.ctfile.com/f/31084289-1357036555-9e462a?p=8866) |\n| 第一推动丛书·综合系列（套装共7册） | 梅拉妮・米歇尔等 | [下载](https://url89.ctfile.com/f/31084289-1357036546-f9ed21?p=8866) |\n| 科学元典套装（六） | 伽利略等 | [下载](https://url89.ctfile.com/f/31084289-1357036366-c0cbfa?p=8866) |\n| 给好奇者的暗黑物理学 | 罗兰・勒乌克/文森特・博滕斯 | [下载](https://url89.ctfile.com/f/31084289-1357036114-dbe6f4?p=8866) |\n| 科学本来很有趣 | 赛・太蒙尼 | [下载](https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866) |\n| 第一推动丛书·诺贝尔奖得主作品（新版套装共8册） | 基普·S.索恩等 | [下载](https://url89.ctfile.com/f/31084289-1357036132-d2b94c?p=8866) |\n| 迷人的材料 | 马克・米奥多尼克 | [下载](https://url89.ctfile.com/f/31084289-1357035931-be99dc?p=8866) |\n| 新药的故事 | 梁贵柏 | [下载](https://url89.ctfile.com/f/31084289-1357035895-6b93d3?p=8866) |\n| 人人都该懂的克隆技术 | 亚伦・莱文 | [下载](https://url89.ctfile.com/f/31084289-1357035901-def398?p=8866) |\n| 发现的乐趣 | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1357035826-de103a?p=8866) |\n| 人人都该懂的法庭科学 | 杰伊・西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357035709-076131?p=8866) |\n| 科学元典套装（四） | 约翰・布鲁德斯・华生等 | [下载](https://url89.ctfile.com/f/31084289-1357035742-b3a5b1?p=8866) |\n| 科学元典套装（五） | 惠更斯等 | [下载](https://url89.ctfile.com/f/31084289-1357035748-b4937c?p=8866) |\n| 为什么 | 朱迪亚・珀尓/达纳・麦肯齐 | [下载](https://url89.ctfile.com/f/31084289-1357035547-38479f?p=8866) |\n| 深呼吸：菠萝解密肺癌 | 李治中 | [下载](https://url89.ctfile.com/f/31084289-1357035556-2eaf53?p=8866) |\n| 迷茫的旅行商 | William J. Cook | [下载](https://url89.ctfile.com/f/31084289-1357035454-7affdc?p=8866) |\n| 科学元典套装（三） | 开普勒等 | [下载](https://url89.ctfile.com/f/31084289-1357035532-bb6874?p=8866) |\n| 世界因何美妙而优雅地运行 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866) |\n| 万物起源 | 格雷厄姆・劳顿等 | [下载](https://url89.ctfile.com/f/31084289-1357035208-8882dd?p=8866) |\n| 科学元典套装（一） | 摩尔根等 | [下载](https://url89.ctfile.com/f/31084289-1357035232-3fa4b9?p=8866) |\n| 她说：菠萝解密乳腺癌 | 李治中 | [下载](https://url89.ctfile.com/f/31084289-1357035268-5947c4?p=8866) |\n| 科学元典套装（二） | 玛丽・居里等 | [下载](https://url89.ctfile.com/f/31084289-1357035253-2e02f8?p=8866) |\n| BBC自然探索系列（套装共7册） | 阿拉斯泰尔・福瑟吉尔等 | [下载](https://url89.ctfile.com/f/31084289-1357035511-2fd3b9?p=8866) |\n| 星座全书 | 贾尔斯・斯帕罗 | [下载](https://url89.ctfile.com/f/31084289-1357034923-1361c3?p=8866) |\n| 无中生有的世界 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866) |\n| 从祖先到算法 | 亚历克斯・本特利 | [下载](https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866) |\n| 10堂极简概率课 | 佩尔西・戴康尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357034302-084a62?p=8866) |\n| 圆圈之书 | 曼纽尔・利马 | [下载](https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866) |\n| 我是谁？如果有我，有几个我？ | 理查德・大卫・普列斯特 | [下载](https://url89.ctfile.com/f/31084289-1357034263-1a3a44?p=8866) |\n| 心理学与生活 | 理查德・格里格/菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866) |\n| 星空故事 | 苏珊娜・希斯洛普 | [下载](https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866) |\n| 人类的算法 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866) |\n| 时间的秩序 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357033597-4ea8a1?p=8866) |\n| 社群的进化 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866) |\n| 最好的亲密关系 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866) |\n| 大局观从何而来 | 罗宾・邓巴等 | [下载](https://url89.ctfile.com/f/31084289-1357033450-b78be9?p=8866) |\n| 18个未来进行时 | 吉姆・阿尔- 哈里里 | [下载](https://url89.ctfile.com/f/31084289-1357033387-b60047?p=8866) |\n| 我们为什么会发胖 | 盖里・陶比斯 | [下载](https://url89.ctfile.com/f/31084289-1357033384-3adeed?p=8866) |\n| 大脑的故事 | 大卫・伊格曼 | [下载](https://url89.ctfile.com/f/31084289-1357033396-0dc284?p=8866) |\n| 脑与意识 | 斯坦尼斯拉斯・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357033363-70c625?p=8866) |\n| 无量之网 | 格里格．布莱登 | [下载](https://url89.ctfile.com/f/31084289-1357033285-2142d5?p=8866) |\n| 丰子恺漫画古诗文 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866) |\n| 认识身体2 | 加文・弗朗西斯 | [下载](https://url89.ctfile.com/f/31084289-1357033075-93e71d?p=8866) |\n| 5G时代 | 项立刚 | [下载](https://url89.ctfile.com/f/31084289-1357033045-916943?p=8866) |\n| 飞奔的物种 | 大卫・伊格曼/安东尼・布兰德 | [下载](https://url89.ctfile.com/f/31084289-1357033078-dd09d8?p=8866) |\n| 与机器人共舞 | 约翰・马尔科夫 | [下载](https://url89.ctfile.com/f/31084289-1357033036-93ea7e?p=8866) |\n| 邀你共进量子早餐 | 索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯 | [下载](https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866) |\n| 对话最强大脑 | 李大巍 | [下载](https://url89.ctfile.com/f/31084289-1357033003-e77cd0?p=8866) |\n| 第三次浪潮 | 阿尔文・托夫勒 | [下载](https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866) |\n| 寂静的春天（四师推荐精装版） | 蕾切尔・卡森 | [下载](https://url89.ctfile.com/f/31084289-1357032802-2197eb?p=8866) |\n| 薛将军精解《孙子兵法》 | 薛国安 | [下载](https://url89.ctfile.com/f/31084289-1357032532-cd3d67?p=8866) |\n| 周期表 | 普里莫・莱维 | [下载](https://url89.ctfile.com/f/31084289-1357032400-bc1f68?p=8866) |\n| 最后的熊猫 | 乔治・夏勒 | [下载](https://url89.ctfile.com/f/31084289-1357032364-6ae019?p=8866) |\n| 技术简史 | 德伯拉·L·斯帕 | [下载](https://url89.ctfile.com/f/31084289-1357032319-7433f4?p=8866) |\n| 从一到无穷大（完整精修珍藏译本） | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866) |\n| 总觉得饿？ | 大卫. 路德维希 | [下载](https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866) |\n| 一想到还有95%的问题留给人类，我就放心了 | 豪尔赫・陈/丹尼尔・怀特森 | [下载](https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866) |\n| 说出来你可能不信 | SME | [下载](https://url89.ctfile.com/f/31084289-1357032043-e62957?p=8866) |\n| 通识：学问的门类 | 茂木健一郎 | [下载](https://url89.ctfile.com/f/31084289-1357032028-db8b7e?p=8866) |\n| 病毒星球 | 卡尔・齐默 | [下载](https://url89.ctfile.com/f/31084289-1357031956-dd7e81?p=8866) |\n| 自下而上 | 马特・里德利  | [下载](https://url89.ctfile.com/f/31084289-1357031893-e146f2?p=8866) |\n| 时间之问 | 汪波 | [下载](https://url89.ctfile.com/f/31084289-1357031944-64d9c3?p=8866) |\n| 谷物大脑 | 戴维・珀尔马特/戴维・珀尔马特 | [下载](https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866) |\n| 菌群大脑 | 戴维・珀尔马特/克里斯廷・洛伯格 | [下载](https://url89.ctfile.com/f/31084289-1357031752-3e7987?p=8866) |\n| 全球科技通史 | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357031734-3f4ae5?p=8866) |\n| 武侠化学 | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1357031512-ccaaad?p=8866) |\n| 武侠物理 | 李开周 | [下载](https://url89.ctfile.com/f/31084289-1357031503-32fac0?p=8866) |\n| 奇点艺术 | 谭力勤 | [下载](https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866) |\n| 社交媒体简史 | 汤姆・斯丹迪奇 | [下载](https://url89.ctfile.com/f/31084289-1357031287-a9c528?p=8866) |\n| 急救，比医生快一步 | 贾大成 | [下载](https://url89.ctfile.com/f/31084289-1357031260-e64b4f?p=8866) |\n| 鸟类的天赋 | 珍妮弗・阿克曼 | [下载](https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866) |\n| 驯化 | 艾丽丝・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866) |\n| 生命之美：奇异植物的生存智慧 | 林十之 | [下载](https://url89.ctfile.com/f/31084289-1357031011-6d2792?p=8866) |\n| 人类愚蠢辞典 | 皮耶尔乔治・奥迪弗雷迪  | [下载](https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866) |\n| 表象与本质 | 侯世达/桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357030774-2b9590?p=8866) |\n| 自然万物科普百科（套装共2册） | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357030786-04e62b?p=8866) |\n| 极简天文学 | 科林・斯图尔特 | [下载](https://url89.ctfile.com/f/31084289-1357030729-163c8a?p=8866) |\n| 齐民要术（全本全注全译） | 贾思勰 | [下载](https://url89.ctfile.com/f/31084289-1357030642-350654?p=8866) |\n| 宇宙从何而来 | 傅渥成 | [下载](https://url89.ctfile.com/f/31084289-1357030585-628e91?p=8866) |\n| 动物城邦系列（共四册） | 伯特・霍尔多布勒等 | [下载](https://url89.ctfile.com/f/31084289-1357030435-d80ab8?p=8866) |\n| 人类酷刑简史 | 马克·P.唐纳利/丹尼尔·迪尔 | [下载](https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866) |\n| 数据的真相 | 约翰・H. 约翰逊/迈克・格鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866) |\n| 增强人类 | 海伦・帕帕扬尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357030204-bca3d3?p=8866) |\n| 饮食的迷思 | 蒂姆・斯佩克特 | [下载](https://url89.ctfile.com/f/31084289-1357029718-6b2d54?p=8866) |\n| 神奇的数字零 | 查尔斯・塞弗 | [下载](链接未找到) |\n| 深海：探索寂静的未知 | 詹姆斯・内斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029541-413573?p=8866) |\n| 暗知识：机器认知如何颠覆商业和社会 | 王维嘉 | [下载](https://url89.ctfile.com/f/31084289-1357029484-71f57f?p=8866) |\n| 上帝笑了99次 | 彼得・凯弗 | [下载](https://url89.ctfile.com/f/31084289-1357029406-b5a217?p=8866) |\n| 较量：乐观的经济学与悲观的生态学 | 保罗・萨宾 | [下载](https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866) |\n| 皮肤的秘密 | 耶尔・阿德勒  | [下载](https://url89.ctfile.com/f/31084289-1357029337-13d2fe?p=8866) |\n| 智能的本质 | 皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357029304-4060a7?p=8866) |\n| 未解之谜（套装共2册） | 克雷格·P·鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357029346-23a41e?p=8866) |\n| 联结：通向未来的文明史 | 詹姆斯・伯克 | [下载](https://url89.ctfile.com/f/31084289-1357029328-596060?p=8866) |\n| 起源：万物大历史 | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357029259-608e4e?p=8866) |\n| 人人都该懂的哲学 | 彼得・卡夫 | [下载](https://url89.ctfile.com/f/31084289-1357029208-d44179?p=8866) |\n| You Are a Badass at Making Money | Jen Sincero | [下载](https://url89.ctfile.com/f/31084289-1357029169-c6a901?p=8866) |\n| 脑洞 | 马修・桑托罗/杰克・格林 | [下载](https://url89.ctfile.com/f/31084289-1357029172-3654fd?p=8866) |\n| 尼安德特人 | 斯万特・帕博 | [下载](https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866) |\n| 人工智能的进化 | 赫克托・莱韦斯克 | [下载](https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866) |\n| 下一站火星 | 克里斯蒂安・达文波特 | [下载](https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866) |\n| 火焰中的秘密 | 延斯・森特根 | [下载](https://url89.ctfile.com/f/31084289-1357028938-6425da?p=8866) |\n| 科学的历程（修订第4版） | 吴国盛 | [下载](https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866) |\n| 零基础读懂云计算 | 纳扬・鲁帕拉里 | [下载](https://url89.ctfile.com/f/31084289-1357028467-7f62ed?p=8866) |\n| 龙：一种未明的动物（增订本） | 马小星 | [下载](https://url89.ctfile.com/f/31084289-1357028452-c59106?p=8866) |\n| 量子世界的发现之旅 | 迈克尔・S. 沃克 | [下载](https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866) |\n| 黑洞之书 | 史蒂文・古布泽/弗兰斯・比勒陀利乌斯 | [下载](https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866) |\n| 美的进化 | 理查德·O.普鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866) |\n| 老科技的全球史 | 大卫・艾杰顿 | [下载](https://url89.ctfile.com/f/31084289-1357027402-7317b9?p=8866) |\n| 高手：精英的见识和我们的时代 | 万维钢 | [下载](https://url89.ctfile.com/f/31084289-1357027279-86e7b5?p=8866) |\n| 一个观点，不一定对 | 黄章晋 | [下载](https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866) |\n| 人类“吸猫”小史 | 艾比盖尔・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357027183-6dbd40?p=8866) |\n| 码书：编码与解码的战争 | 西蒙・辛格 | [下载](https://url89.ctfile.com/f/31084289-1357027210-1192ec?p=8866) |\n| 未来50年 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357027123-c3d4eb?p=8866) |\n| 如果我们错了呢？ | 查克・克洛斯特曼 | [下载](https://url89.ctfile.com/f/31084289-1357027147-aafe1f?p=8866) |\n| 星空帝国 | 徐刚/王燕平 | [下载](https://url89.ctfile.com/f/31084289-1357027096-381168?p=8866) |\n| 走近2050 | 集智俱乐部 | [下载](https://url89.ctfile.com/f/31084289-1357026955-cae786?p=8866) |\n| 知识的边界 | 戴维・温伯格 | [下载](https://url89.ctfile.com/f/31084289-1357026913-097907?p=8866) |\n| 密码朋克 | 朱利安・阿桑奇 | [下载](https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866) |\n| 简单统计学 | 加里・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866) |\n| 怪诞脑科学 | 盖瑞・马库斯 | [下载](https://url89.ctfile.com/f/31084289-1357026820-32a86b?p=8866) |\n| 明亮的泥土 | 菲利普・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357026793-14240d?p=8866) |\n| 纸上动物园 | 夏洛特・斯莱 | [下载](https://url89.ctfile.com/f/31084289-1357026883-d8edc7?p=8866) |\n| 世界观（原书第2版） | 理查德・德威特 | [下载](https://url89.ctfile.com/f/31084289-1357026505-be18f3?p=8866) |\n| 撼动世界史的思想家格斗 | 茂木诚 | [下载](https://url89.ctfile.com/f/31084289-1357026415-5855e5?p=8866) |\n| 海：另一个未知的宇宙 | 弗兰克・施茨廷 | [下载](https://url89.ctfile.com/f/31084289-1357026199-42f833?p=8866) |\n| 人类思维如何与互联网共同进化 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357026196-e1e0ff?p=8866) |\n| 人的脑洞略大于整个宇宙 | 丹・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357026175-0b29b5?p=8866) |\n| 理性之谜 | 雨果・梅西耶 | [下载](https://url89.ctfile.com/f/31084289-1357025725-888475?p=8866) |\n| 有用的逻辑学（第2版） | 梅森・皮里 | [下载](https://url89.ctfile.com/f/31084289-1357025659-255f15?p=8866) |\n| 你一定爱读的极简未来史 | 克里斯托弗・巴纳特 | [下载](https://url89.ctfile.com/f/31084289-1357025617-432176?p=8866) |\n| 进击的智人 | 河森堡 | [下载](https://url89.ctfile.com/f/31084289-1357025104-60a1dc?p=8866) |\n| 隐藏的意识 | 约翰・巴奇 | [下载](https://url89.ctfile.com/f/31084289-1357025113-66459c?p=8866) |\n| 一本有趣又有料的科学书 | 大象公会 | [下载](https://url89.ctfile.com/f/31084289-1357025065-df6894?p=8866) |\n| 生命密码 | 尹烨 | [下载](https://url89.ctfile.com/f/31084289-1357025089-016748?p=8866) |\n| 猫咪家庭医学大百科 | 林政毅 | [下载](https://url89.ctfile.com/f/31084289-1357025086-d9896b?p=8866) |\n| 劫持 | 玛丽•K. 斯温格尔 | [下载](https://url89.ctfile.com/f/31084289-1357025047-c67046?p=8866) |\n| 长寿的基因 | 普雷斯顿・埃斯特普 | [下载](https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866) |\n| 脑与阅读 | 斯坦尼斯拉斯・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357024882-9103fb?p=8866) |\n| 缤纷的生命 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866) |\n| 刘易斯·托马斯作品（共5册） | 刘易斯・托马斯 | [下载](https://url89.ctfile.com/f/31084289-1357024816-c54ec4?p=8866) |\n| 星空的琴弦 | 汪洁 | [下载](https://url89.ctfile.com/f/31084289-1357024810-75064e?p=8866) |\n| 茶杯里的风暴 | 海伦・切尔斯基 | [下载](https://url89.ctfile.com/f/31084289-1357024633-64bd09?p=8866) |\n| 永生的海拉 | 丽贝卡・思科鲁特 | [下载](https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866) |\n| 阿波罗 | 扎克・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357024600-7d239d?p=8866) |\n| 基因、大脑和人类潜能 | 肯・理查森 | [下载](https://url89.ctfile.com/f/31084289-1357024378-df4a92?p=8866) |\n| 云彩收集者手册 | 加文・普雷特 | [下载](https://url89.ctfile.com/f/31084289-1357024291-bd3b5c?p=8866) |\n| 哲学·科学·常识 | 陈嘉映 | [下载](https://url89.ctfile.com/f/31084289-1357024279-dcadb0?p=8866) |\n| 宇宙从一粒尘埃开始 | 布莱恩・考克斯/杰夫・福修 | [下载](https://url89.ctfile.com/f/31084289-1357024087-fa17ce?p=8866) |\n| 医生的修炼 | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357024060-80fd78?p=8866) |\n| 医生的精进 | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357024054-2abd18?p=8866) |\n| 物质的秘密 | 埃蒂安・克莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357024021-4d42a1?p=8866) |\n| 肿瘤防治科普丛书（套装共13册） | 重庆市肿瘤医院 | [下载](https://url89.ctfile.com/f/31084289-1357024204-5c05ce?p=8866) |\n| 普鲁斯特是个神经学家 | 乔纳・莱勒 | [下载](https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866) |\n| 自私的基因（40周年增订版） | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357023907-8aa3e0?p=8866) |\n| The Order of Time | Carlo Rovelli | [下载](https://url89.ctfile.com/f/31084289-1357023880-1dbfad?p=8866) |\n| 中国建筑常识 | 林徽因 | [下载](https://url89.ctfile.com/f/31084289-1357023643-a76ebd?p=8866) |\n| 明年更年轻 | 克里斯・克劳利/亨利・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357023613-b2d4f8?p=8866) |\n| 鸡征服世界 | 安德鲁・劳勒 | [下载](https://url89.ctfile.com/f/31084289-1357023553-c10634?p=8866) |\n| 重新设计生命 | 约翰・帕林顿 | [下载](https://url89.ctfile.com/f/31084289-1357023517-a7a1c5?p=8866) |\n| 迷人的技术 | 凯莉・魏纳史密斯/扎克・魏纳史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357023475-689bcd?p=8866) |\n| 简单的逻辑学 | 麦克伦尼 | [下载](https://url89.ctfile.com/f/31084289-1357023388-82d1a0?p=8866) |\n| 枪与玫瑰的使用方法 | 果壳 | [下载](https://url89.ctfile.com/f/31084289-1357023379-ac0f90?p=8866) |\n| 荒诞医学史 | 莉迪亚・康/内特・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357023451-88a41f?p=8866) |\n| 暗黑医疗史 | 苏上豪 | [下载](https://url89.ctfile.com/f/31084289-1357023346-cae348?p=8866) |\n| 魔鬼的牧师 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357023202-04f6de?p=8866) |\n| 盲眼钟表匠 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866) |\n| 超级连接者 | 伊桑・祖克曼 | [下载](https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866) |\n| 神经的逻辑 | 埃利泽・斯滕伯格 | [下载](https://url89.ctfile.com/f/31084289-1357023133-cd238c?p=8866) |\n| 哲学之美 | 艾克哈特・玛腾斯 | [下载](https://url89.ctfile.com/f/31084289-1357023118-bb94c1?p=8866) |\n| 超级智能 | 尼克・波斯特洛姆 | [下载](https://url89.ctfile.com/f/31084289-1357023076-a138b3?p=8866) |\n| 一切与创造有关 | 奥古斯汀・富恩特斯 | [下载](https://url89.ctfile.com/f/31084289-1357023037-cb5f39?p=8866) |\n| 未完成的进化 | 凯文・拉兰德 | [下载](https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866) |\n| 好奇心：保持对未知世界永不停息的热情 | 伊恩・莱斯利 | [下载](https://url89.ctfile.com/f/31084289-1357022995-3678fc?p=8866) |\n| 亚当夏娃在拂晓 | 克里斯托弗・莱恩/卡西尔达・杰萨 | [下载](https://url89.ctfile.com/f/31084289-1357022974-7960c8?p=8866) |\n| 如何给狮子剥皮 | 克莱尔・科克-斯塔基 | [下载](https://url89.ctfile.com/f/31084289-1357022968-b9aee4?p=8866) |\n| 统计学关我什么事 | 小岛宽之 | [下载](https://url89.ctfile.com/f/31084289-1357022935-106977?p=8866) |\n| 经济学关我什么事 | 文安德・冯・彼特尔斯多夫 | [下载](https://url89.ctfile.com/f/31084289-1357022896-9538ae?p=8866) |\n| 黎曼猜想漫谈 | 卢昌海 | [下载](https://url89.ctfile.com/f/31084289-1357022899-88af93?p=8866) |\n| 叩响天堂之门 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357022833-998e72?p=8866) |\n| 弯曲的旅行 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357022818-41a87e?p=8866) |\n| 第一推动丛书·物理系列（套装共7册） | 罗伯特・劳克林等 | [下载](https://url89.ctfile.com/f/31084289-1357022836-5a2cdc?p=8866) |\n| 第一推动丛书·宇宙系列（套装共6册） | 史蒂芬・霍金等 | [下载](https://url89.ctfile.com/f/31084289-1357022812-304b75?p=8866) |\n| 第一推动丛书·综合系列（套装共5册） | 罗杰・彭罗斯等 | [下载](https://url89.ctfile.com/f/31084289-1357022785-3c7f3b?p=8866) |\n| 一个定理的诞生 | 塞德里克・维拉尼 | [下载](https://url89.ctfile.com/f/31084289-1357022608-e6a289?p=8866) |\n| 给孩子讲量子力学 | 李淼 | [下载](https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866) |\n| 人类的明天 | 席里尔・迪翁 | [下载](https://url89.ctfile.com/f/31084289-1357022440-689a22?p=8866) |\n| 选择的悖论 | 巴里・施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866) |\n| 机器70年 | 徐曦 | [下载](https://url89.ctfile.com/f/31084289-1357022332-319d8b?p=8866) |\n| 赤裸裸的统计学 | 查尔斯・惠伦 | [下载](https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866) |\n| 本书书名无法描述本书内容 | 埃里克・卡普兰 | [下载](https://url89.ctfile.com/f/31084289-1357022308-0f96aa?p=8866) |\n| 生命的法则 | 肖恩·B·卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866) |\n| 科学的极致：漫谈人工智能 | 集智俱乐部 | [下载](https://url89.ctfile.com/f/31084289-1357022236-849651?p=8866) |\n| 万万没想到：用理工科思维理解世界 | 万维钢 | [下载](https://url89.ctfile.com/f/31084289-1357022140-be8c8a?p=8866) |\n| 时间重生 | 李・斯莫林 | [下载](https://url89.ctfile.com/f/31084289-1357021870-fe988b?p=8866) |\n| 医学的真相 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357021846-b40e73?p=8866) |\n| 今日简史 | 尤瓦尔・赫拉利 | [下载](https://url89.ctfile.com/f/31084289-1357021711-20ea4a?p=8866) |\n| 柔软的宇宙 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1357021720-b19c90?p=8866) |\n| 思维的发现 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357021693-d754a0?p=8866) |\n| 人类存在的意义 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357021663-2150bf?p=8866) |\n| 网络是怎样连接的 | 户根勤 | [下载](https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866) |\n| 走神的艺术与科学 | 迈克尔・C.科尔巴里斯 | [下载](https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866) |\n| 现实不似你所见 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866) |\n| 塑造世界经济的50项伟大发明 | 蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1357021258-cba3bd?p=8866) |\n| The Princeton Companion to Mathematics | Gowers, Timothy | [下载](https://url89.ctfile.com/f/31084289-1357021243-933c06?p=8866) |\n| 黑箱社会 | 弗兰克・帕斯奎尔 | [下载](https://url89.ctfile.com/f/31084289-1357021171-9be5d6?p=8866) |\n| 数学简史 | 蔡天新 | [下载](https://url89.ctfile.com/f/31084289-1357021195-ee63f5?p=8866) |\n| 算法之美：指导工作与生活的算法 | 布莱恩・克里斯汀/汤姆・格里菲思 | [下载](https://url89.ctfile.com/f/31084289-1357021150-6920ac?p=8866) |\n| 看脸 | 华沙 | [下载](https://url89.ctfile.com/f/31084289-1357021126-869176?p=8866) |\n| 植物知道生命的答案 | 丹尼尔・查莫维茨 | [下载](https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866) |\n| 生命3.0 | 迈克斯・泰格马克 | [下载](https://url89.ctfile.com/f/31084289-1357021120-2c89e2?p=8866) |\n| 第五次开始 | 罗伯特・L .凯利 | [下载](https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866) |\n| 卑微的套套 | 安妮・科利尔 | [下载](https://url89.ctfile.com/f/31084289-1357021051-972816?p=8866) |\n| 规模：复杂世界的简单法则 | 杰弗里・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357021036-fe84e6?p=8866) |\n| X的奇幻之旅 | 史蒂夫・斯托加茨 | [下载](https://url89.ctfile.com/f/31084289-1357021033-0311fa?p=8866) |\n| 认识身体 | 加文・弗朗西斯 | [下载](https://url89.ctfile.com/f/31084289-1357020937-585a2a?p=8866) |\n| 极简科学起源课 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357020931-9c734c?p=8866) |\n| 消失的微生物 | 马丁・布莱泽 | [下载](https://url89.ctfile.com/f/31084289-1357020871-3d589b?p=8866) |\n| 安慰剂效应 | 莉萨・兰金 | [下载](https://url89.ctfile.com/f/31084289-1357020814-39b49a?p=8866) |\n| 梦的真相 | 大卫・兰德尔 | [下载](https://url89.ctfile.com/f/31084289-1357020793-75b8cb?p=8866) |\n| 认知心理学（原书第5版） | 凯瑟琳・加洛蒂 | [下载](https://url89.ctfile.com/f/31084289-1357020787-06bc90?p=8866) |\n| 荷尔蒙战争 | 科迪莉亚・法恩 | [下载](https://url89.ctfile.com/f/31084289-1357020769-c67cdf?p=8866) |\n| 生命的未来 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357020727-193b46?p=8866) |\n| 生命的未来：从双螺旋到合成生命 | 克雷格・文特尔 | [下载](https://url89.ctfile.com/f/31084289-1357020724-9f0385?p=8866) |\n| 病毒防御和心理复原力三部曲 | 内森・沃尔夫等 | [下载](https://url89.ctfile.com/f/31084289-1357020532-469146?p=8866) |\n| 科技前哨 | 王煜全 | [下载](https://url89.ctfile.com/f/31084289-1357020316-b05dfb?p=8866) |\n| 飞行中的科学 | 布莱恩・克雷格 | [下载](https://url89.ctfile.com/f/31084289-1357020310-213507?p=8866) |\n| 无器械健身 | 马克・劳伦 | [下载](https://url89.ctfile.com/f/31084289-1357020154-710555?p=8866) |\n| 美国儿科学会育儿百科（第6版） | 斯蒂文・谢尔弗 | [下载](https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866) |\n| 百科通识全系列大套装（共49本） | 安德鲁・巴兰坦等 | [下载](https://url89.ctfile.com/f/31084289-1357020376-81a38d?p=8866) |\n| 基因魔剪 | 日本NHK“基因组编辑”采访组 | [下载](https://url89.ctfile.com/f/31084289-1357020022-f75244?p=8866) |\n| 20世纪最伟大的心理学实验 | 伦・斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1357019893-bcc56f?p=8866) |\n| 数学现场：另类世界史 | 王雁斌 | [下载](https://url89.ctfile.com/f/31084289-1357019836-4f4794?p=8866) |\n| 迷人的温度 | 吉诺・格塞雷 | [下载](https://url89.ctfile.com/f/31084289-1357019803-f6c866?p=8866) |\n| 同步：秩序如何从混沌中涌现 | 斯蒂芬・斯托加茨 | [下载](https://url89.ctfile.com/f/31084289-1357019755-1e9eae?p=8866) |\n| 思维简史：从丛林到宇宙 | 伦纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357019542-7cb361?p=8866) |\n| 你好！植物（全彩） | 喵喵植物控 | [下载](https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866) |\n| 哲学家们都干了些什么？（2015年全新修订版） | 林欣浩 | [下载](https://url89.ctfile.com/f/31084289-1357019287-bbfe16?p=8866) |\n| 世界是数字的 | Brian W·Kernighan | [下载](https://url89.ctfile.com/f/31084289-1357019173-51d646?p=8866) |\n| 心智社会 | 马文・明斯基 | [下载](https://url89.ctfile.com/f/31084289-1357018900-706749?p=8866) |\n| 上帝的手术刀 | 王立铭 | [下载](https://url89.ctfile.com/f/31084289-1357018852-dc5d45?p=8866) |\n| 笛卡尔的错误 | 安东尼奥・达马西奥 | [下载](https://url89.ctfile.com/f/31084289-1357018066-8ad3a0?p=8866) |\n| 什么是科学 | 吴国盛 | [下载](https://url89.ctfile.com/f/31084289-1357017991-026d4b?p=8866) |\n| 诗意的原子 | 科特・施塔格 | [下载](https://url89.ctfile.com/f/31084289-1357017949-15be38?p=8866) |\n| 他们应当行走 | 戴维・M. 奥辛斯基 | [下载](https://url89.ctfile.com/f/31084289-1357017937-987b61?p=8866) |\n| 超人类革命 | 吕克・费希 | [下载](https://url89.ctfile.com/f/31084289-1357017670-bee6d3?p=8866) |\n| 我们人类的进化 | 亚历山大・哈考特 | [下载](https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866) |\n| 大历史，小世界 | 辛西娅・斯托克斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357017472-752b12?p=8866) |\n| 创造自然 | 安德烈娅・武尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357017490-5b557e?p=8866) |\n| 大脑使用指南 | 赵思家 | [下载](https://url89.ctfile.com/f/31084289-1357017454-809589?p=8866) |\n| 时间的形状：相对论史话 | 汪洁 | [下载](https://url89.ctfile.com/f/31084289-1357017400-018ecf?p=8866) |\n| 文明之光（全三册） | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357017397-aefe13?p=8866) |\n| 一万年的爆发 | 格雷戈里・柯克伦/亨利・哈本丁 | [下载](https://url89.ctfile.com/f/31084289-1357017313-fa9dd4?p=8866) |\n| 基因传 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357016893-23588d?p=8866) |\n| 泥土：文明的侵蚀 | 戴维·R. 蒙哥马利 | [下载](https://url89.ctfile.com/f/31084289-1357016863-fce466?p=8866) |\n| 飞鸟记 | 欧仁・朗贝尔/保罗・罗贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357016632-58b036?p=8866) |\n| Life 3.0 | 迈克斯・泰格马克 | [下载](https://url89.ctfile.com/f/31084289-1357016356-638f33?p=8866) |\n| 给孩子讲宇宙 | 李淼 | [下载](https://url89.ctfile.com/f/31084289-1357016302-ce02e5?p=8866) |\n| 基因社会 | 以太・亚奈 | [下载](https://url89.ctfile.com/f/31084289-1357016272-086eed?p=8866) |\n| 基因组：人类自传 | 马特・里德利 | [下载](https://url89.ctfile.com/f/31084289-1357016236-2a63f9?p=8866) |\n| 为什么我们会上瘾 | 迈克尔・库赫 | [下载](https://url89.ctfile.com/f/31084289-1357016179-c81d0e?p=8866) |\n| 地理学与生活：全彩插图第11版 | 阿瑟・格蒂斯等 | [下载](https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866) |\n| 迈尔斯直觉心理学 | 戴维・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357016014-26ab45?p=8866) |\n| 量子大唠嗑 | 马兆远  | [下载](https://url89.ctfile.com/f/31084289-1357016011-0b3bbf?p=8866) |\n| 推理的迷宫 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357015870-65728c?p=8866) |\n| 兰道尔宇宙三部曲 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357015930-649116?p=8866) |\n| 让大脑自由 | 约翰・梅迪纳 | [下载](https://url89.ctfile.com/f/31084289-1357015795-94cb6e?p=8866) |\n| 囚徒的困境 | 威廉姆・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357015522-ed9831?p=8866) |\n| 看不见的大猩猩 | 克里斯托弗・查布利斯等 | [下载](https://url89.ctfile.com/f/31084289-1357015489-952de6?p=8866) |\n| 癌症科普（套装共2册） | 李治中 | [下载](https://url89.ctfile.com/f/31084289-1357015615-1b33eb?p=8866) |\n| 连接组：造就独一无二的你 | 承现峻 | [下载](https://url89.ctfile.com/f/31084289-1357015285-e97b17?p=8866) |\n| 技术的本质 | 布莱恩・阿瑟 | [下载](https://url89.ctfile.com/f/31084289-1357015207-84ea05?p=8866) |\n| 蛊惑世界的力量：可卡因传奇 | 多米尼克・斯特里特费尔德 | [下载](https://url89.ctfile.com/f/31084289-1357015042-67c9a9?p=8866) |\n| 地球上最伟大的表演 | 理查德・毛姆道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866) |\n| 行星全书 | 尼尔马拉・纳塔瑞杰 | [下载](https://url89.ctfile.com/f/31084289-1357014421-80096e?p=8866) |\n| 看不见的森林 | 戴维・哈斯凯尔 | [下载](https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866) |\n| 引力波 | 珍娜・莱文 | [下载](https://url89.ctfile.com/f/31084289-1357014196-53b378?p=8866) |\n| 如何思考会思考的机器 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357014175-b0a0d3?p=8866) |\n| 星际穿越 | 基普・索恩/基普・索恩  | [下载](https://url89.ctfile.com/f/31084289-1357014238-883094?p=8866) |\n| Astrophysics for People in a Hurry | Neil deGrasse Tyson | [下载](https://url89.ctfile.com/f/31084289-1357014013-01ce24?p=8866) |\n| 七堂极简物理课 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357013917-9f1be2?p=8866) |\n| 太空全书 | 詹姆斯・特赖菲尔 | [下载](https://url89.ctfile.com/f/31084289-1357014349-3199c0?p=8866) |\n| 西部王国传奇（套装共5册） | 贾陈亮/王东等 | [下载](https://url89.ctfile.com/f/31084289-1357013881-20c2cf?p=8866) |\n| 生命：进化生物学、遗传学、人类学和环境科学的黎明 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357013776-6a7bdc?p=8866) |\n| 暗物质与恐龙 | 丽莎・兰道尔 | [下载](https://url89.ctfile.com/f/31084289-1357013755-200050?p=8866) |\n| 别逗了，费曼先生 | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1357013659-26c5c9?p=8866) |\n| 动物的精神生活 | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866) |\n| 汽车是怎样跑起来的 | 御堀直嗣 | [下载](https://url89.ctfile.com/f/31084289-1357013170-8e1445?p=8866) |\n| 终极算法 | 佩德罗・多明戈斯 | [下载](https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866) |\n| 走近费曼丛书（套装共6册） | 理查德・费曼 | [下载](https://url89.ctfile.com/f/31084289-1357012879-806495?p=8866) |\n| 最好的抉择 | 杰尔姆・格罗普曼/帕米拉・哈茨班德 | [下载](https://url89.ctfile.com/f/31084289-1357012789-a455a7?p=8866) |\n| 爱与数学 | 爱德华・弗伦克尔 | [下载](https://url89.ctfile.com/f/31084289-1357012663-712e79?p=8866) |\n| 哲学家们都干了些什么？ | 林欣浩 | [下载](https://url89.ctfile.com/f/31084289-1357012042-46b91e?p=8866) |\n| 与机器赛跑 | 埃里克・布林约尔松 | [下载](https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866) |\n| AI：人工智能的本质与未来 | 玛格丽特・博登 | [下载](https://url89.ctfile.com/f/31084289-1357011793-7233e8?p=8866) |\n| 肠子的小心思 | 朱莉娅・恩德斯 | [下载](https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866) |\n| 思考的乐趣：Matrix67数学笔记 | 顾森 | [下载](https://url89.ctfile.com/f/31084289-1357011298-3bfd51?p=8866) |\n| 人体的故事：进化、健康与疾病 | 丹尼尔・利伯曼  | [下载](https://url89.ctfile.com/f/31084289-1357011079-3bb308?p=8866) |\n| 宇宙：从起源到未来 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357010935-644bd6?p=8866) |\n| 数学沉思录 | Mario Livio | [下载](https://url89.ctfile.com/f/31084289-1357010926-6eb53d?p=8866) |\n| 物理世界的本质 | 亚瑟・斯坦利・爱丁顿 | [下载](https://url89.ctfile.com/f/31084289-1357010893-b337b8?p=8866) |\n| 通俗天文学（全彩四色珍藏版） | 西蒙・纽康 | [下载](https://url89.ctfile.com/f/31084289-1357010887-fc3eff?p=8866) |\n| 上帝掷骰子吗 | 曹天元  | [下载](https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866) |\n| 道德动物 | 罗伯特・赖特 | [下载](https://url89.ctfile.com/f/31084289-1357010644-df0133?p=8866) |\n| 道德景观 | 萨姆・哈里斯 | [下载](https://url89.ctfile.com/f/31084289-1357010617-244e19?p=8866) |\n| 穿越平行宇宙 | 迈克斯・泰格马克 | [下载](https://url89.ctfile.com/f/31084289-1357010545-fd0f1d?p=8866) |\n| 我们的后人类未来 |  弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357010413-dfe2b1?p=8866) |\n| 极简海洋文明史 | 菲利普・德・索萨 | [下载](https://url89.ctfile.com/f/31084289-1357010350-ec61b6?p=8866) |\n| 数学女孩 | 结城浩 | [下载](https://url89.ctfile.com/f/31084289-1357010338-f745a3?p=8866) |\n| 数学女孩2：费马大定理 | 结城浩 | [下载](https://url89.ctfile.com/f/31084289-1357010332-f2891c?p=8866) |\n| 白板 | 史蒂芬・平克  | [下载](https://url89.ctfile.com/f/31084289-1357010101-5a4e7d?p=8866) |\n| 非洲常识 | 吕夏乔 | [下载](https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866) |\n| 机械宇宙 | 爱德华・多尼克 | [下载](https://url89.ctfile.com/f/31084289-1357009975-babec5?p=8866) |\n| 控制论与科学方法论 | 金观涛/华国凡  | [下载](https://url89.ctfile.com/f/31084289-1357009942-8968ed?p=8866) |\n| 生命是什么 | 王立铭 | [下载](https://url89.ctfile.com/f/31084289-1357009738-c0bfb9?p=8866) |\n| 世界未解之谜大全集（超值白金版） | 文若愚 | [下载](https://url89.ctfile.com/f/31084289-1357009702-76dece?p=8866) |\n| 知识大融通：21世纪的科学与人文 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357009588-edfc82?p=8866) |\n| 你一定爱读的极简科普丛书（套装共6册） | 阿尔伯特・爱因斯坦等 | [下载](https://url89.ctfile.com/f/31084289-1357009147-e52dc1?p=8866) |\n| 脑的阅读：破解人类阅读之谜 | 斯坦尼斯拉斯・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866) |\n| 那些古怪又让人忧心的问题 | 兰道尔・门罗 | [下载](https://url89.ctfile.com/f/31084289-1357008988-3e59d8?p=8866) |\n| 救护车到来前，你能做什么？ | 贾大成 | [下载](https://url89.ctfile.com/f/31084289-1357008886-4953ac?p=8866) |\n| 科技之巅 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866) |\n| 经度 | 达娃・索贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357008700-0b8a46?p=8866) |\n| 极简宇宙史 | 克里斯托弗・加尔法德 | [下载](https://url89.ctfile.com/f/31084289-1357008505-b28eb5?p=8866) |\n| 神秘的量子生命 | 吉姆・艾尔/约翰乔・麦克法登 | [下载](https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866) |\n| 哥伦布大交换 | 艾尔弗雷德・克罗斯比 | [下载](https://url89.ctfile.com/f/31084289-1357008283-f09ce3?p=8866) |\n| 天生变态狂 | 詹姆斯・法隆 | [下载](https://url89.ctfile.com/f/31084289-1357008187-852b5b?p=8866) |\n| 数理化通俗演义 | 梁衡 | [下载](https://url89.ctfile.com/f/31084289-1357008178-f506c2?p=8866) |\n| 宇宙简史：起源与归宿 | 斯蒂芬・霍金 | [下载](https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866) |\n| 谣言粉碎机系列（套装共3册） | 果壳 | [下载](https://url89.ctfile.com/f/31084289-1357007923-6a6daa?p=8866) |\n| 极简科学史 | 苏珊・怀斯・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357007800-428adc?p=8866) |\n| 未来简史 | 尤瓦尔・赫拉利 | [下载](https://url89.ctfile.com/f/31084289-1357007731-6ac5a2?p=8866) |\n| 那些消失的文明 | 《环球科学》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866) |\n| 极客物理学：地球上最有趣的问题和最出人意料的答案 | 瑞特・阿莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357007476-1e5ad6?p=8866) |\n| 双脑记：认知神经科学之父加扎尼加自传 | 迈克尔・加扎尼加 | [下载](https://url89.ctfile.com/f/31084289-1357007419-68b075?p=8866) |\n| 血疫：埃博拉的故事 | 理查德・普雷斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357007227-550572?p=8866) |\n| 信息简史 | 詹姆斯·格雷克  | [下载](https://url89.ctfile.com/f/31084289-1357007146-62452b?p=8866) |\n| 科学究竟是什么（第3版） | A.F.查尔默斯 | [下载](https://url89.ctfile.com/f/31084289-1357007122-5ae6e3?p=8866) |\n| 哇，历史原来可以这样学（套装共2册） | 林欣浩 | [下载](https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866) |\n| 物理世界奇遇记 | 伽莫夫/斯坦纳德  | [下载](https://url89.ctfile.com/f/31084289-1357006996-2aa1b9?p=8866) |\n| 自私的基因（30周年纪念版） | 理查德·道金斯  | [下载](https://url89.ctfile.com/f/31084289-1357006960-42afc5?p=8866) |\n| 欧几里得之窗 | 列纳德・蒙洛迪诺 | [下载](https://url89.ctfile.com/f/31084289-1357006591-0ff2c9?p=8866) |\n| 森林的奇妙旅行 | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357006462-24745a?p=8866) |\n| 大自然的社交网络 | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357006459-66ad57?p=8866) |\n| 群星都是你们的世界 | 乔恩・威利斯 | [下载](https://url89.ctfile.com/f/31084289-1357006396-8de5aa?p=8866) |\n| 癌症·真相 | 菠萝 | [下载](https://url89.ctfile.com/f/31084289-1357006279-cc40ad?p=8866) |\n| 极简音乐史 | 冈田晓生 | [下载](https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866) |\n| 大灭绝时代：一部反常的自然史 | 伊丽莎白·科尔伯特 | [下载](https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866) |\n| 爱因斯坦的宇宙 | 加来道雄 | [下载](https://url89.ctfile.com/f/31084289-1357005760-1c0736?p=8866) |\n| 一平米健身：硬派健身 | 斌卡 | [下载](https://url89.ctfile.com/f/31084289-1357005727-03824e?p=8866) |\n| 给忙碌者的天体物理学 | 尼尔・德格拉斯・泰森 | [下载](https://url89.ctfile.com/f/31084289-1357005616-19f741?p=8866) |\n| 众病之王：癌症传 | 悉达多・穆克吉 | [下载](https://url89.ctfile.com/f/31084289-1357005517-f80482?p=8866) |\n| 万物简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357005496-a7d874?p=8866) |\n| 从一到无穷大 | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357005568-d9ac87?p=8866) |\n| 极简人类史 | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357005490-669cac?p=8866) |\n| 数学那些事儿 | William Dunham | [下载](https://url89.ctfile.com/f/31084289-1357005352-eee413?p=8866) |\n| 人造恐慌 | 袁越 | [下载](https://url89.ctfile.com/f/31084289-1357005136-32c837?p=8866) |\n| 斯坦福极简经济学 | 蒂莫西・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866) |\n"
  },
  {
    "path": "md/秦始皇.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 秦始皇\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 生死秦始皇 | 辛德勇 | [下载](https://url89.ctfile.com/f/31084289-1357004158-8201b6?p=8866) |\n| 始皇帝：秦始皇和他生活的时代 | 鹤间和幸 | [下载](https://url89.ctfile.com/f/31084289-1356992335-5f1bd7?p=8866) |\n| 秦始皇：创造力一统天下 | 度阴山 | [下载](https://url89.ctfile.com/f/31084289-1357032160-073320?p=8866) |\n| 千古一帝秦始皇（上下全2册） | 王立群 | [下载](https://url89.ctfile.com/f/31084289-1357031857-a1d998?p=8866) |\n| 秦始皇：穿越现实与历史的思辨之旅 | 吕世浩 | [下载](https://url89.ctfile.com/f/31084289-1357010635-d004d7?p=8866) |\n| 秦崩：从秦始皇到刘邦 | 李开元 | [下载](https://url89.ctfile.com/f/31084289-1357005109-a88027?p=8866) |\n| 大秦帝国（全新修订版） | 孙皓晖 | [下载](https://url89.ctfile.com/f/31084289-1357004890-cf3460?p=8866) |\n"
  },
  {
    "path": "md/秦朝.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 秦朝\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 弹秦 | 王杉 | [下载](https://url89.ctfile.com/f/31084289-1357028002-3ba7b4?p=8866) |\n| 秦朝那些事儿（共3册） | 昊天牧云 | [下载](https://url89.ctfile.com/f/31084289-1357021549-2b4b61?p=8866) |\n| 秦朝原来是这样 | 醉罢君山 | [下载](https://url89.ctfile.com/f/31084289-1357006480-90a92e?p=8866) |\n"
  },
  {
    "path": "md/秦汉.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 秦汉\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 秦制两千年 | 谌旭彬 | [下载](https://url89.ctfile.com/f/31084289-1375509367-728e53?p=8866) |\n| 秦谜：重新发现秦始皇（插图增订版） | 李开元 | [下载](https://url89.ctfile.com/f/31084289-1375511506-fe2b0a?p=8866) |\n| 潜夫论（全本全注全译） | 马世年 | [下载](https://url89.ctfile.com/f/31084289-1356983326-206879?p=8866) |\n| 一看就懂的大汉史（修订版） | 朱真 | [下载](https://url89.ctfile.com/f/31084289-1357053139-fdde88?p=8866) |\n| 邂逅秦始皇 | 中信出版·大方 | [下载](https://url89.ctfile.com/f/31084289-1357049749-255362?p=8866) |\n| 秦谜：重新发现秦始皇 | 李开元 | [下载](https://url89.ctfile.com/f/31084289-1357014271-174e75?p=8866) |\n| 早期中华帝国：秦与汉 | 陆威仪 | [下载](https://url89.ctfile.com/f/31084289-1357009264-03cc70?p=8866) |\n| 东汉的豪族 | 杨联陛 | [下载](https://url89.ctfile.com/f/31084289-1357006837-a944f1?p=8866) |\n"
  },
  {
    "path": "md/秦汉史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 秦汉史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 春秋与汉道 | 陈苏镇 | [下载](https://url89.ctfile.com/f/31084289-1356997624-363d35?p=8866) |\n| 秦汉帝国 | 西嶋定生 | [下载](https://url89.ctfile.com/f/31084289-1357053790-cd6e5d?p=8866) |\n| 制造汉武帝 | 辛德勇 | [下载](https://url89.ctfile.com/f/31084289-1357030171-cabd6a?p=8866) |\n| 大秦三部曲 | 吕世浩 | [下载](https://url89.ctfile.com/f/31084289-1357008274-748b98?p=8866) |\n"
  },
  {
    "path": "md/穿搭.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 穿搭\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 今天也要认真穿 | 黎贝卡 | [下载](https://url89.ctfile.com/f/31084289-1357050472-e38241?p=8866) |\n| 风格的练习 | 艾莉森・沃尔什 | [下载](https://url89.ctfile.com/f/31084289-1357046617-f68956?p=8866) |\n"
  },
  {
    "path": "md/穿越.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 穿越\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新宋（共15册） | 阿越 | [下载](https://url89.ctfile.com/f/31084289-1357049803-dea15b?p=8866) |\n| 庆余年（精校版） | 猫腻 | [下载](https://url89.ctfile.com/f/31084289-1357043752-01e491?p=8866) |\n| 千劫眉（套装5册） | 藤萍 | [下载](https://url89.ctfile.com/f/31084289-1357034515-d69375?p=8866) |\n| 寻秦记（套装全6卷） | 黄易 | [下载](https://url89.ctfile.com/f/31084289-1357006882-2ead58?p=8866) |\n"
  },
  {
    "path": "md/竞争.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 竞争\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新规则 | 约翰·P.科特 | [下载](https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866) |\n| 与众不同 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866) |\n"
  },
  {
    "path": "md/童书.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 童书\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 绿山墙的安妮（作家榜经典文库） | 露西・莫德・蒙格玛丽 | [下载](https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866) |\n| 希利尔儿童世界地理 | 希利尔/休伊  | [下载](https://url89.ctfile.com/f/31084289-1357022737-89fc7a?p=8866) |\n"
  },
  {
    "path": "md/童年.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 童年\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 看上去很美 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357033921-bcef4d?p=8866) |\n| 城南旧事（绘图本） | 林海音 | [下载](https://url89.ctfile.com/f/31084289-1357018462-adf327?p=8866) |\n"
  },
  {
    "path": "md/童话.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 童话\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 罗塞塔夫人 | 罗尔德・达尔 | [下载](https://url89.ctfile.com/f/31084289-1375493737-177581?p=8866) |\n| 汤汤奇幻童年故事本（套装6册） | 汤汤 | [下载](https://url89.ctfile.com/f/31084289-1375497934-ca2e7b?p=8866) |\n| 快乐王子（译文经典） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357042723-bfc360?p=8866) |\n| 星空故事 | 苏珊娜・希斯洛普 | [下载](https://url89.ctfile.com/f/31084289-1357034053-2b5bc9?p=8866) |\n| 嘿，小家伙 | 温酒 | [下载](https://url89.ctfile.com/f/31084289-1357032799-079655?p=8866) |\n| 公主走进黑森林 | 吕旭亚 | [下载](https://url89.ctfile.com/f/31084289-1357032340-822a73?p=8866) |\n| 夜莺与玫瑰（读客经典） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357028629-d7c7bb?p=8866) |\n| 小王子（作家榜经典文库） | 圣-埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1357027807-091fea?p=8866) |\n| 尼尔斯骑鹅历险记（作家榜经典文库） | 塞尔玛・拉格洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357027837-6e7aff?p=8866) |\n| 格林童话（果麦经典） | 格林兄弟 | [下载](https://url89.ctfile.com/f/31084289-1357027186-65bb3b?p=8866) |\n| 爱丽丝漫游奇境（作家榜经典文库） | 刘易斯・卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357027171-b9c3bc?p=8866) |\n| 彼得·潘 | 詹姆斯・马修・巴利 | [下载](https://url89.ctfile.com/f/31084289-1357024849-4284ce?p=8866) |\n| 圣诞男孩 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024714-b9a35e?p=8866) |\n| 伊索寓言 | 伊索  | [下载](https://url89.ctfile.com/f/31084289-1357022137-b00931?p=8866) |\n| 安徒生童话 | 安徒生 | [下载](https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866) |\n| 罗尔德·达尔作品典藏（共13册） | 罗尔德・达尔 | [下载](https://url89.ctfile.com/f/31084289-1357010074-32fff4?p=8866) |\n| 好心眼儿巨人 | 罗尔德・达尔  | [下载](https://url89.ctfile.com/f/31084289-1357007107-da7806?p=8866) |\n"
  },
  {
    "path": "md/笑话.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 笑话\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 笑林广记（作家榜经典文库） | 游戏主人 | [下载](https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866) |\n"
  },
  {
    "path": "md/笔记.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 笔记\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 笔记思考术 | 黄忠毅 | [下载](https://url89.ctfile.com/f/31084289-1375512244-216e47?p=8866) |\n| 视觉笔记术 | 卢慈伟 | [下载](https://url89.ctfile.com/f/31084289-1356985774-afd8b0?p=8866) |\n| 麦肯锡笔记思考法 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357051108-0a2a52?p=8866) |\n| 如何有效整理信息 | 奥野宣之 | [下载](https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866) |\n| 子弹笔记术 | 杉野干人 | [下载](https://url89.ctfile.com/f/31084289-1357019761-864774?p=8866) |\n| 聪明人用方格笔记本 | 高桥政史 | [下载](https://url89.ctfile.com/f/31084289-1357010908-f51638?p=8866) |\n| 艽野尘梦 | 陈渠珍 | [下载](https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866) |\n"
  },
  {
    "path": "md/策划.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 策划\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 文案基本功 | 苏芯 | [下载](https://url89.ctfile.com/f/31084289-1356987490-037286?p=8866) |\n| 10W+走心文案是怎样炼成的 | 卢建彰 | [下载](https://url89.ctfile.com/f/31084289-1357029916-76a0fe?p=8866) |\n| 深度粉销 | 丁丁 | [下载](https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866) |\n"
  },
  {
    "path": "md/策略.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 策略\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 博弈：所有问题都是一场赛局 | 川西谕 | [下载](https://url89.ctfile.com/f/31084289-1375509700-04f1de?p=8866) |\n| 直面不确定性 | 大辉 | [下载](https://url89.ctfile.com/f/31084289-1356991405-bab185?p=8866) |\n"
  },
  {
    "path": "md/简史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 简史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 国家是怎样炼成的 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357051882-3e2617?p=8866) |\n| 中国文化简史（套装共4册） | 王立 | [下载](https://url89.ctfile.com/f/31084289-1357011424-a43f40?p=8866) |\n| 让你爱不释手的极简美国史 | 姚尧 | [下载](https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866) |\n"
  },
  {
    "path": "md/算法.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 算法\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 漫画算法 | 魏梦舒 | [下载](https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866) |\n| 极简算法史 | 吕克・德・布拉班迪尔 | [下载](https://url89.ctfile.com/f/31084289-1357044019-a0af08?p=8866) |\n| 改变未来的九大算法 | 约翰・麦考密克 | [下载](https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866) |\n| 从祖先到算法 | 亚历克斯・本特利 | [下载](https://url89.ctfile.com/f/31084289-1357034443-1f37c0?p=8866) |\n| 内容算法 | 闫泽华 | [下载](https://url89.ctfile.com/f/31084289-1357024036-64cccb?p=8866) |\n| 算法的乐趣 | 王晓华 | [下载](https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866) |\n| 算法霸权 | 凯西・奥尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357023199-ffbca6?p=8866) |\n| 推荐系统实践 | 项亮 | [下载](https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866) |\n| 编程珠玑（第2版·修订版） | Jon Bentley | [下载](https://url89.ctfile.com/f/31084289-1357018450-0ab379?p=8866) |\n| 算法图解 | Aditya Bhargava | [下载](https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866) |\n"
  },
  {
    "path": "md/管理.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 管理\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 灰犀牛：个人、组织如何与风险共舞 | 米歇尔・渥克 | [下载](https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866) |\n| 长期主义 | 高德威 | [下载](https://url89.ctfile.com/f/31084289-1375498969-41de87?p=8866) |\n| 福格行为模型 | B.J.福格 | [下载](https://url89.ctfile.com/f/31084289-1375499539-38be34?p=8866) |\n| 像高手一样行动 | 丹尼尔・科伊尔 | [下载](https://url89.ctfile.com/f/31084289-1375500049-7f0f39?p=8866) |\n| 高效的组织都是圆的 | 戴维・珀金斯 | [下载](https://url89.ctfile.com/f/31084289-1375500100-7e145d?p=8866) |\n| 马尔科姆·格拉德威尔系列（套装共6册） | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1375500292-299023?p=8866) |\n| 时间管理 | 吉姆・兰德尔 | [下载](https://url89.ctfile.com/f/31084289-1375500340-640c65?p=8866) |\n| 像高手一样解决问题 | 伯纳德・加雷特等 | [下载](https://url89.ctfile.com/f/31084289-1375500307-6d78d2?p=8866) |\n| 影响力：全新升级版 | 罗伯特・西奥迪尼 | [下载](https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866) |\n| 鹿智者的法则 | 丹・米尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375501204-e161de?p=8866) |\n| 噪声：人类判断的缺陷 | 丹尼尔・卡尼曼等 | [下载](https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866) |\n| 亚马逊编年史 | 宁向东 | [下载](https://url89.ctfile.com/f/31084289-1375501459-ac7cad?p=8866) |\n| 贝佐斯致股东的信 | 史蒂夫・安德森/卡伦・安德森 | [下载](https://url89.ctfile.com/f/31084289-1375502302-565477?p=8866) |\n| 我就是你啊 | 皮埃尔・佩利西耶 | [下载](https://url89.ctfile.com/f/31084289-1375506742-b92474?p=8866) |\n| 管理敏感 | 全弘镇 | [下载](https://url89.ctfile.com/f/31084289-1375508092-cbb0a1?p=8866) |\n| 华为战略财务讲义 | 何绍茂 | [下载](https://url89.ctfile.com/f/31084289-1375509100-205637?p=8866) |\n| 成就 | 埃里克・施密特等 | [下载](https://url89.ctfile.com/f/31084289-1375509649-bb9c5c?p=8866) |\n| 光环效应 | 罗森维 | [下载](https://url89.ctfile.com/f/31084289-1375509661-105edd?p=8866) |\n| 高级零工 | 村上敦伺 | [下载](https://url89.ctfile.com/f/31084289-1375509853-10fa45?p=8866) |\n| 麦肯锡&#038;波士顿解决问题方法和创造价值技巧 | 名和高司 | [下载](https://url89.ctfile.com/f/31084289-1375509916-d4a822?p=8866) |\n| 重来3 | 贾森・弗里德/戴维・海涅迈尔・汉森（ | [下载](https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866) |\n| 铁军团队 | 欧德张 | [下载](https://url89.ctfile.com/f/31084289-1375510093-23e3eb?p=8866) |\n| 打胜仗系列三部曲 | 布赖斯・霍夫曼等 | [下载](https://url89.ctfile.com/f/31084289-1375510114-f256af?p=8866) |\n| 大头侃人：任正非 | 于立坤 | [下载](https://url89.ctfile.com/f/31084289-1375510195-37fecf?p=8866) |\n| 硬核晋升 | 朱莉・卓 | [下载](https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866) |\n| 极度成功 | 丹尼尔・科伊尔 | [下载](https://url89.ctfile.com/f/31084289-1375510375-05242f?p=8866) |\n| 阿里人的答案书 | 阿里巴巴组织文化 | [下载](https://url89.ctfile.com/f/31084289-1375510804-a5e3a8?p=8866) |\n| 从0到1打造个人品牌 | 王一九 | [下载](https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866) |\n| 反惰性 | 加布里埃尔・厄廷根 | [下载](https://url89.ctfile.com/f/31084289-1375511077-b1ee53?p=8866) |\n| 智能学习的未来 | 罗斯玛丽・卢金 | [下载](https://url89.ctfile.com/f/31084289-1375511113-9bb24f?p=8866) |\n| 本质：贝佐斯的商业逻辑与领导力法则 | 海伦娜・亨特 | [下载](https://url89.ctfile.com/f/31084289-1375511119-ae55f7?p=8866) |\n| 共创对话 | 林小桢 | [下载](https://url89.ctfile.com/f/31084289-1375511161-a37ad3?p=8866) |\n| 销售经理的22条军规 | 仲崇玉 | [下载](https://url89.ctfile.com/f/31084289-1375511158-7a7bd5?p=8866) |\n| 暗理性：如何掌控情绪 | 卫蓝 | [下载](https://url89.ctfile.com/f/31084289-1375511197-369a4f?p=8866) |\n| 海星式组织 | 奥瑞・布莱福曼/罗德・贝克斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866) |\n| 哈佛大学危机管理课 | 伦纳德・马库斯等 | [下载](https://url89.ctfile.com/f/31084289-1375511461-c57e66?p=8866) |\n| 快速成交 | 俞赛前 | [下载](https://url89.ctfile.com/f/31084289-1375511488-43d314?p=8866) |\n| 日本企业家精选（全5册） | 一条和生等 | [下载](https://url89.ctfile.com/f/31084289-1375511533-b724b2?p=8866) |\n| 畅所欲言 | 道格・克兰德尔/马特・金卡德 | [下载](https://url89.ctfile.com/f/31084289-1375511779-c8282c?p=8866) |\n| 逆商2 | 保罗·G.史托兹 | [下载](https://url89.ctfile.com/f/31084289-1375511989-b7bf29?p=8866) |\n| 最简单的图形与最复杂的信息 | 黄慧敏 | [下载](https://url89.ctfile.com/f/31084289-1375512553-185e6e?p=8866) |\n| 销售冠军是如何炼成的 | 贺学友 | [下载](https://url89.ctfile.com/f/31084289-1375512427-0c8976?p=8866) |\n| 知识炼金术 | 邱昭良/王谋 | [下载](https://url89.ctfile.com/f/31084289-1375512442-a712f3?p=8866) |\n| 远见：一本故事丰富的决策行为指南 | 史蒂文・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1375513123-bdf9a1?p=8866) |\n| 影响力变现 | 徐悦佳 | [下载](https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866) |\n| 爱因斯坦的老板 | 罗伯特・赫罗马斯 | [下载](https://url89.ctfile.com/f/31084289-1375513645-5a5886?p=8866) |\n| 发现你的管理优势 | 伊查克・爱迪思 | [下载](https://url89.ctfile.com/f/31084289-1357004686-da59f3?p=8866) |\n| 丰田传 | 野地秩嘉 | [下载](https://url89.ctfile.com/f/31084289-1357004668-341a2c?p=8866) |\n| 工匠哲学 | 马修・克劳福德 | [下载](https://url89.ctfile.com/f/31084289-1357004671-7199ef?p=8866) |\n| 从偶然到必然 | 夏忠毅 | [下载](https://url89.ctfile.com/f/31084289-1357004578-74afac?p=8866) |\n| 得粉丝者得天下 | 佐伊・弗拉德・布拉纳等 | [下载](https://url89.ctfile.com/f/31084289-1357004536-baa43e?p=8866) |\n| 产品思维 | 张印帅 | [下载](https://url89.ctfile.com/f/31084289-1357004566-20c559?p=8866) |\n| 不拘一格 | 里德・哈斯廷斯/艾琳・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357004497-f86418?p=8866) |\n| 财富管理与传承 | 云大慧 | [下载](https://url89.ctfile.com/f/31084289-1357004485-01b160?p=8866) |\n| 责任病毒 | 罗杰・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866) |\n| 转机 | 萨拉・罗布・奥黑根 | [下载](https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866) |\n| 罗辑思维（全5册） | 罗振宇 | [下载](https://url89.ctfile.com/f/31084289-1357004005-539071?p=8866) |\n| 熵减：华为活力之源 | 华为大学 | [下载](https://url89.ctfile.com/f/31084289-1357003804-77cb09?p=8866) |\n| 变革的力量 | 约翰·P.科特 | [下载](https://url89.ctfile.com/f/31084289-1357001737-a8b420?p=8866) |\n| 聚焦 | 布兰登・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357001644-216a13?p=8866) |\n| 麦肯锡公众表达课 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357001626-761f03?p=8866) |\n| 麦肯锡高效工作法 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866) |\n| 波斯公主选驸马 | 帕维尔・莫托 | [下载](https://url89.ctfile.com/f/31084289-1357000897-1f13ef?p=8866) |\n| 闭环思维 | 智俊启 | [下载](https://url89.ctfile.com/f/31084289-1357000399-71f5ec?p=8866) |\n| 极致零售 | 杜凤林 | [下载](https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866) |\n| 绝对坦率 | 金・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357000324-addf5b?p=8866) |\n| 华与华方法 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866) |\n| 变革性创新 | 加里・皮萨诺 | [下载](https://url89.ctfile.com/f/31084289-1356999646-2e238d?p=8866) |\n| OKR使用手册 | 姚琼 | [下载](https://url89.ctfile.com/f/31084289-1356999514-59c758?p=8866) |\n| 行动教练 | 季益祥 | [下载](https://url89.ctfile.com/f/31084289-1356999400-98dabd?p=8866) |\n| 绝地谈判2 | 马蒂亚斯・施汉纳 | [下载](https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866) |\n| 人人都该懂的互联网思维 | 伯纳多・A. 胡伯曼 | [下载](https://url89.ctfile.com/f/31084289-1356998806-73cc4d?p=8866) |\n| 穿越寒冬 | 史蒂文・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1356998776-90be10?p=8866) |\n| 关键的少数 | 乔恩・卡岑巴赫/詹姆斯・托马斯/格雷琴・安德森 | [下载](https://url89.ctfile.com/f/31084289-1356997447-983a7c?p=8866) |\n| 明智转向 | 奥马尔・阿布什 | [下载](https://url89.ctfile.com/f/31084289-1356996988-47d4d5?p=8866) |\n| 硬功夫：助你精进的八大硬核技能 | 崔诚靓 | [下载](https://url89.ctfile.com/f/31084289-1356996547-541b9e?p=8866) |\n| 曾仕强品三国（套装共3册） | 曾仕强 | [下载](https://url89.ctfile.com/f/31084289-1356995533-1624d0?p=8866) |\n| 商业之巅 | 周导 | [下载](https://url89.ctfile.com/f/31084289-1356995260-2128f8?p=8866) |\n| 飞轮效应 | 吉姆・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1356995218-0be670?p=8866) |\n| 如何达成目标 | 海蒂・格兰特・霍尔沃森 | [下载](https://url89.ctfile.com/f/31084289-1356994909-cbcb48?p=8866) |\n| 商业实战三部曲 | 唐纳德・米勒等 | [下载](https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866) |\n| 创模式 | 段传敏 | [下载](https://url89.ctfile.com/f/31084289-1356994075-3700fb?p=8866) |\n| 影响商业的50本书 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866) |\n| 一生的旅程 | 罗伯特・艾格/乔尔・洛弗尔 | [下载](https://url89.ctfile.com/f/31084289-1356992434-d4d14d?p=8866) |\n| 创造知识的实践 | 野中郁次郎/西原文乃 | [下载](https://url89.ctfile.com/f/31084289-1356992245-1af643?p=8866) |\n| 如何启动黄金圈思维 | 西蒙・斯涅克/戴维・米德/彼得・多克尔 | [下载](https://url89.ctfile.com/f/31084289-1356992221-a4d256?p=8866) |\n| 创造知识的方法论 | 野中郁次郎/绀野登 | [下载](https://url89.ctfile.com/f/31084289-1356991945-e87f6d?p=8866) |\n| 知识创造管理 | 野中郁次郎/绀野登 | [下载](https://url89.ctfile.com/f/31084289-1356991759-1130f2?p=8866) |\n| 外卖超级运营术 | 饿了么 | [下载](https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866) |\n| 创新者的行动 | 乔舒亚・甘斯 | [下载](https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866) |\n| 只管去做 | 邹小强 | [下载](https://url89.ctfile.com/f/31084289-1356991549-e07ddd?p=8866) |\n| 刷新品牌 | 高端训 | [下载](https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866) |\n| 允许被说服 | 艾尔・比坦帕里 | [下载](https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866) |\n| 做出明智判断的10个方法 | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1356991237-57ea0b?p=8866) |\n| 亲切的艺术 | 凯莉・威廉斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866) |\n| 扛住就是本事 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866) |\n| 为什么精英这样沟通最高效 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1356989821-bba761?p=8866) |\n| 贝佐斯的数字帝国 | 拉姆・查兰 | [下载](https://url89.ctfile.com/f/31084289-1356989539-c2656e?p=8866) |\n| 谷歌的故事 | 戴维・怀斯/马克・摩西德 | [下载](https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866) |\n| 魏斯曼的演讲大师课3 | 杰瑞・魏斯曼 | [下载](https://url89.ctfile.com/f/31084289-1356989377-f44a36?p=8866) |\n| 七次转型 | 罗伯特 A. 伯格曼 | [下载](https://url89.ctfile.com/f/31084289-1356988948-97e64b?p=8866) |\n| 团队赋能 | 迈克・布伦特/菲奥娜・爱尔莎・丹特 | [下载](https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866) |\n| 赢的答案（尊享版） | 杰克・韦尔奇/苏茜・韦尔奇 | [下载](https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866) |\n| 为什么精英都有超级领导力 | 金·R·鲍威尔 | [下载](https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866) |\n| 水平思考法 | 保罗・斯隆 | [下载](https://url89.ctfile.com/f/31084289-1356987214-2ef374?p=8866) |\n| 时间管理手账 | 徐铁/邱晨 | [下载](https://url89.ctfile.com/f/31084289-1356986992-73fa61?p=8866) |\n| 未来的处方 | 伊齐基尔・伊曼纽尔 | [下载](https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866) |\n| 实践智慧 | 野中郁次郎/荻野进介 | [下载](https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866) |\n| 第四次管理革命 | 曹仰锋 | [下载](https://url89.ctfile.com/f/31084289-1356986344-ff3bf6?p=8866) |\n| 为什么精英都是动机控 | 池田贵将 | [下载](https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866) |\n| 为什么精英都是方法控 | 金武贵 | [下载](https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866) |\n| 诚实的信号 | 阿莱克斯・彭特兰 | [下载](https://url89.ctfile.com/f/31084289-1356985837-5c02e3?p=8866) |\n| 沃顿商学院时间管理课（修订版） | 穆然 | [下载](https://url89.ctfile.com/f/31084289-1356985804-d73c79?p=8866) |\n| 让财报说话 | 郑永强 | [下载](https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866) |\n| 销售技巧② | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866) |\n| 2019年中国资产管理行业发展报告 | 巴曙松 | [下载](https://url89.ctfile.com/f/31084289-1356985717-d8ba83?p=8866) |\n| 华为没有秘密2 | 吴春波 | [下载](https://url89.ctfile.com/f/31084289-1356985315-80c146?p=8866) |\n| 人力资源管理从新手到总监（全2册） | 李志勇 | [下载](https://url89.ctfile.com/f/31084289-1356985228-e6aa30?p=8866) |\n| 销售技巧① | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866) |\n| 能力清单 | 吉恩・凯斯 | [下载](https://url89.ctfile.com/f/31084289-1356985021-4e879b?p=8866) |\n| 高效能人士的七个习惯（30周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1356984850-83f8e4?p=8866) |\n| 如何有效管理自己（升级版） | 杜耿 | [下载](https://url89.ctfile.com/f/31084289-1356984787-7968f7?p=8866) |\n| 自控力（经典套装三册） | 凯利・麦格尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866) |\n| 如何成为超级创业英雄 | 提姆・德瑞普 | [下载](https://url89.ctfile.com/f/31084289-1356984295-7fd163?p=8866) |\n| 商业模式4.0 | 梁宇亮 | [下载](https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866) |\n| 向诸葛亮借智慧 | 赵玉平 | [下载](https://url89.ctfile.com/f/31084289-1356983920-387cfd?p=8866) |\n| 异议的力量 | 查兰・奈米斯 | [下载](https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866) |\n| 如何给别人留下好印象 | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866) |\n| 向上管理 | 蒋巍巍 | [下载](https://url89.ctfile.com/f/31084289-1356983296-d41f93?p=8866) |\n| 先发制人 | 布伦特・格里森 | [下载](https://url89.ctfile.com/f/31084289-1356983161-cd7422?p=8866) |\n| 职业通道 | 吴静 | [下载](https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866) |\n| 优秀到不能被忽视 | 卡尔・纽波特 | [下载](https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866) |\n| 如何系统思考 | 邱昭良 | [下载](https://url89.ctfile.com/f/31084289-1357054198-b1201d?p=8866) |\n| 一日之计 | 本杰明・斯帕/迈克尔・赞德 | [下载](https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866) |\n| 协同：如何打造高联动团队 | 马克・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357053130-4a0e45?p=8866) |\n| 协同：数字化时代组织效率的本质 | 陈春花/朱丽 | [下载](https://url89.ctfile.com/f/31084289-1357053076-87dade?p=8866) |\n| 赢在上班时 | 高城幸司 | [下载](https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866) |\n| 无印良品笔记术 | 松井忠三 | [下载](https://url89.ctfile.com/f/31084289-1357052794-d169d9?p=8866) |\n| 重构 | 村西边老王 | [下载](https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866) |\n| 组织革新 | 杨国安/戴维・尤里奇 | [下载](https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866) |\n| 卓越工作 | 莫滕·T·汉森 | [下载](https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866) |\n| 执行力：10项驱动法则 | 章俊 | [下载](https://url89.ctfile.com/f/31084289-1357052290-876230?p=8866) |\n| 知识管理如何改变商业模式 | 卡拉・欧戴尔/辛迪・休伯特 | [下载](https://url89.ctfile.com/f/31084289-1357052293-751e3f?p=8866) |\n| 让顾客都成为回头客 | 安部修仁 | [下载](https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866) |\n| 领导力精进 | 马歇尔・古德史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866) |\n| 怎样管精力，就怎样过一生 | 奥迪尔・夏布里亚克 | [下载](https://url89.ctfile.com/f/31084289-1357051591-cb956c?p=8866) |\n| 管理的艺术（套装五册） | 马歇尔・戈德史密斯等 | [下载](https://url89.ctfile.com/f/31084289-1357051558-d5c231?p=8866) |\n| 早起的奇迹 | 哈尔・埃尔罗德 | [下载](https://url89.ctfile.com/f/31084289-1357051405-4773be?p=8866) |\n| 量化自我 | 吉娜・聂夫/唐恩・娜芙斯 | [下载](https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866) |\n| 精益转型 | 约翰・涂尚徳 | [下载](https://url89.ctfile.com/f/31084289-1357051252-2f48cb?p=8866) |\n| 麦肯锡决断力 | 石井辉美 | [下载](https://url89.ctfile.com/f/31084289-1357051141-d76cb3?p=8866) |\n| 个人可持续发展精要 | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357051120-d9b6a3?p=8866) |\n| 麦肯锡入职培训第一课 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866) |\n| 华为管理哲学 | 蒋朝安/杜俊鸿 | [下载](https://url89.ctfile.com/f/31084289-1357050910-d72194?p=8866) |\n| 精力管理手册 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357050901-31d610?p=8866) |\n| 科学的广告 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866) |\n| 有效资产管理（典藏版） | 威廉・伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866) |\n| 干法（口袋版） | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866) |\n| 权力48法则 | 罗伯特・格林 | [下载](https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866) |\n| 管理是个技术活 | 芭芭拉・米切尔/科妮莉亚・甘伦 | [下载](https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866) |\n| 复盘+（第3版） | 邱昭良 | [下载](https://url89.ctfile.com/f/31084289-1357049452-f5679a?p=8866) |\n| 海尔是海：张瑞敏随笔选录 | 张瑞敏 | [下载](https://url89.ctfile.com/f/31084289-1357049221-4c1d6c?p=8866) |\n| 谈判技巧：菜鸟谈判进阶的八大要领 | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866) |\n| 营销的本质 | 包政 | [下载](https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866) |\n| 营销的本质（珍藏版） | 包政 | [下载](https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866) |\n| 底层逻辑 | 张羽 | [下载](https://url89.ctfile.com/f/31084289-1357048750-e0f027?p=8866) |\n| 领导就是让人追随 | 约翰・科特/霍尔格・拉斯格博 | [下载](https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866) |\n| 端到端流程 | 迈克尔・哈默/丽莎・赫什曼 | [下载](https://url89.ctfile.com/f/31084289-1357048249-905292?p=8866) |\n| 高情商领导力 | 丹尼尔・戈尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357047655-a6a7d1?p=8866) |\n| 麦肯锡精英高效阅读法 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866) |\n| 终身创造力 | 斯科特・科克伦 | [下载](https://url89.ctfile.com/f/31084289-1357047304-c6bf44?p=8866) |\n| 过程决定成败 | 乔尔・布罗克纳 | [下载](https://url89.ctfile.com/f/31084289-1357046644-6b9c12?p=8866) |\n| 解密腾讯帝国（全6册） | 吴晓波等 | [下载](https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866) |\n| 稻盛和夫的人生哲学 | 北康利 | [下载](https://url89.ctfile.com/f/31084289-1357046560-b84170?p=8866) |\n| 不疲惫的精力管理术 | 葛西纪明 | [下载](https://url89.ctfile.com/f/31084289-1357046434-95610f?p=8866) |\n| 良性增长 | 拉姆・查兰 | [下载](https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866) |\n| 闪电式扩张 | 里德 · 霍夫曼/叶嘉新 | [下载](https://url89.ctfile.com/f/31084289-1357045732-e3880f?p=8866) |\n| 毫无保留 | 小比尔・马里奥特等 | [下载](https://url89.ctfile.com/f/31084289-1357045708-dae6d9?p=8866) |\n| 零售畅销秘籍 | 本多利范 | [下载](https://url89.ctfile.com/f/31084289-1357045615-2e3e93?p=8866) |\n| 保持饥渴 | Thinkers50 | [下载](https://url89.ctfile.com/f/31084289-1357045627-a6ae7b?p=8866) |\n| 30天精读MBA（套装共3册） | 科林・巴罗 | [下载](https://url89.ctfile.com/f/31084289-1357045696-20ac29?p=8866) |\n| 极简思考 | 迈克・费廖洛 | [下载](https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866) |\n| 轻战略：量子时代的敏捷决策 | 许正 | [下载](https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866) |\n| 奇才 | 梅利莎・席林 | [下载](https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866) |\n| 终结拖延症的49种方法 | 海韵 | [下载](https://url89.ctfile.com/f/31084289-1357045243-4bb605?p=8866) |\n| 战略几何学 | 罗伯特・凯德尔 | [下载](https://url89.ctfile.com/f/31084289-1357045234-dfb543?p=8866) |\n| 智能战略 | 曾鸣 | [下载](https://url89.ctfile.com/f/31084289-1357045117-f2708a?p=8866) |\n| 曾仕强中国式管理全集（套装书全23册） | 曾仕强 | [下载](https://url89.ctfile.com/f/31084289-1357045264-71c053?p=8866) |\n| 怪诞行为学（全5册） | 丹・艾瑞里等 | [下载](https://url89.ctfile.com/f/31084289-1357045105-dcaec5?p=8866) |\n| 精彩人生的一分钟小习惯 | 冲幸子 | [下载](https://url89.ctfile.com/f/31084289-1357045045-47aeea?p=8866) |\n| 褚时健经营哲学系列（套装共3册） | 张小军 | [下载](https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866) |\n| 傻世界，笨生意 | 何力 | [下载](https://url89.ctfile.com/f/31084289-1357044727-92ea3a?p=8866) |\n| 内容之王 | 迈克尔・巴斯卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357044808-3d7309?p=8866) |\n| 高效领导力 | 布伦达・本斯 | [下载](https://url89.ctfile.com/f/31084289-1357044523-e9c7cf?p=8866) |\n| 高效忍者 | 格雷厄姆・阿尔科特 | [下载](https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866) |\n| 从雇佣到自由人 | 吕廷杰 | [下载](https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866) |\n| 突破之道 | 基思 R. 麦克法兰 | [下载](https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866) |\n| 番茄工作法 | 弗朗西斯科・西里洛 | [下载](https://url89.ctfile.com/f/31084289-1357042903-e98275?p=8866) |\n| 复合型领导力 | 埃里克・道格拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357042846-a27c11?p=8866) |\n| 冲突管理 | 大卫・里德尔 | [下载](https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866) |\n| 麦肯锡教我的逻辑思维 | 高杉尚伊 | [下载](https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866) |\n| 麦肯锡教我的思考武器 | 安宅和人 | [下载](https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866) |\n| 边界 | 吉莲・邰蒂 | [下载](https://url89.ctfile.com/f/31084289-1357042444-a5d609?p=8866) |\n| 战略推演 | 王昶 | [下载](https://url89.ctfile.com/f/31084289-1357042372-78310a?p=8866) |\n| 麦肯锡图表工作法 | 齐藤显一/竹内里子 | [下载](https://url89.ctfile.com/f/31084289-1357042315-1bcded?p=8866) |\n| 从1到N：天才创造世界 | 水木然 | [下载](https://url89.ctfile.com/f/31084289-1357041298-4d7a2c?p=8866) |\n| 创造时间 | 杰克・纳普/约翰・泽拉茨基 | [下载](https://url89.ctfile.com/f/31084289-1357041241-2a4814?p=8866) |\n| 新定位 | 杰克・特劳特/史蒂夫・里夫金 | [下载](https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866) |\n| 金字塔原理2 | 芭芭拉・明托 | [下载](https://url89.ctfile.com/f/31084289-1357040257-8090ee?p=8866) |\n| 突破现实的困境 | 克里斯・布拉德利等 | [下载](https://url89.ctfile.com/f/31084289-1357039702-2369fb?p=8866) |\n| 销售铁军 | 贺学友 | [下载](https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866) |\n| 西贝的服务员为什么总爱笑 | 贾林男 | [下载](https://url89.ctfile.com/f/31084289-1357039231-373b6d?p=8866) |\n| The 5 AM Club | Robin Sharma | [下载](https://url89.ctfile.com/f/31084289-1357039192-ead248?p=8866) |\n| 在耶鲁精进 | 王烁 | [下载](https://url89.ctfile.com/f/31084289-1357039087-2cce2c?p=8866) |\n| 别输在不懂管理上 | 冯为中 | [下载](https://url89.ctfile.com/f/31084289-1357039018-f17707?p=8866) |\n| 王道的经营（套装共6册） | 施振荣 | [下载](https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866) |\n| 意会时刻 | 克里斯琴・马兹比尔格/米凯尔・拉斯马森 | [下载](https://url89.ctfile.com/f/31084289-1357038205-6a77eb?p=8866) |\n| 创新的国度 | 詹姆斯・布雷丁 | [下载](https://url89.ctfile.com/f/31084289-1357037605-1b9599?p=8866) |\n| 从颠覆到创新 | 长江商学院 | [下载](https://url89.ctfile.com/f/31084289-1357037467-534740?p=8866) |\n| 如何结交比你更优秀的人 | 康妮 | [下载](https://url89.ctfile.com/f/31084289-1357037278-b7145a?p=8866) |\n| 失败课 | 周磊 | [下载](https://url89.ctfile.com/f/31084289-1357037098-f5cd55?p=8866) |\n| A4纸上看人生 | 刘建梅 | [下载](https://url89.ctfile.com/f/31084289-1357036990-6d0ed3?p=8866) |\n| 品牌22律 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357036843-c46796?p=8866) |\n| 华为管理变革 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357036516-884b3b?p=8866) |\n| 高效的方法 | 泰勒・本-沙哈尔/安格斯・里奇韦 | [下载](https://url89.ctfile.com/f/31084289-1357035544-91782e?p=8866) |\n| 21世纪的管理挑战（珍藏版） | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357035478-d1cadf?p=8866) |\n| 销售圣经 | 杰弗里・吉特黙 | [下载](https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866) |\n| Everything Is F*cked | Mark Manson | [下载](https://url89.ctfile.com/f/31084289-1357035463-2719b3?p=8866) |\n| 21世纪的管理挑战 | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357035184-67d4c6?p=8866) |\n| 论大战略 | 约翰・刘易斯・加迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357035022-70cc7f?p=8866) |\n| 声誉为王 | 马丁・纽曼/克里斯・福克斯 | [下载](https://url89.ctfile.com/f/31084289-1357034992-7b36f4?p=8866) |\n| 职场第一课（套装共5册） | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866) |\n| 每周工作4小时（修订版） | 蒂莫西・费里斯 | [下载](https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866) |\n| 灰度决策 | 小约瑟夫・巴达拉克 | [下载](https://url89.ctfile.com/f/31084289-1357034737-c28a7d?p=8866) |\n| 掌控习惯 | 詹姆斯・克利尔 | [下载](https://url89.ctfile.com/f/31084289-1357034644-1e1a14?p=8866) |\n| 大脑减压的子弹笔记术 | 电脑玩物站长 | [下载](https://url89.ctfile.com/f/31084289-1357034512-0dc513?p=8866) |\n| 高效能人士的七个习惯（25周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357034338-0f9f3b?p=8866) |\n| 高效能人士的第八个习惯 | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357034320-a9544e?p=8866) |\n| 阿米巴经营 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357034248-76ecaf?p=8866) |\n| 谷歌方法 | 比尔・基尔迪 | [下载](https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866) |\n| 转变：应对复杂新世界的思维方式 | 弗雷德蒙德・马利克 | [下载](https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866) |\n| 如何创建天才团队 | 里奇・卡尔加德/迈克尔・马隆 | [下载](https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866) |\n| 华为方法论 | 周锡冰 | [下载](https://url89.ctfile.com/f/31084289-1357033705-5ef0ea?p=8866) |\n| 创新者的任务 | 克莱顿・克里斯坦森等 | [下载](https://url89.ctfile.com/f/31084289-1357033567-63b1ec?p=8866) |\n| 创新者的路径 | 斯蒂芬・温克尔等 | [下载](https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866) |\n| 时间看得见 | 王潇 | [下载](https://url89.ctfile.com/f/31084289-1357033381-62fcdf?p=8866) |\n| 重新定义系列（共四册） | 埃里克・施密特等 | [下载](https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866) |\n| 出版人 | 艾伦・布里克林 | [下载](https://url89.ctfile.com/f/31084289-1357032703-6323c4?p=8866) |\n| 12个工作的基本 | 大久保幸夫 | [下载](https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866) |\n| 设计大师的商业课 | 戴维・舍温 | [下载](https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866) |\n| 野蛮生存 | 李凯旋 | [下载](https://url89.ctfile.com/f/31084289-1357032421-4c536f?p=8866) |\n| 新规则 | 约翰·P.科特 | [下载](https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866) |\n| 优秀的人都是提问高手 | 樱井弘 | [下载](https://url89.ctfile.com/f/31084289-1357032184-64c791?p=8866) |\n| 精进2：解锁万物的心智进化法 | 采铜 | [下载](https://url89.ctfile.com/f/31084289-1357032040-d6c7c5?p=8866) |\n| 超级符号原理 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357031524-1a7a6c?p=8866) |\n| 绩效使能：超越OKR | 况阳 | [下载](https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866) |\n| 第五项修炼·实践篇 | 彼得・圣吉 | [下载](https://url89.ctfile.com/f/31084289-1357031224-5ab3aa?p=8866) |\n| 能力陷阱 | 埃米尼亚・伊贝拉 | [下载](https://url89.ctfile.com/f/31084289-1357031173-1a88c9?p=8866) |\n| 零售的本质 | 本多利范 | [下载](https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866) |\n| 第五项修炼·变革篇 | 彼得・圣吉 | [下载](https://url89.ctfile.com/f/31084289-1357030801-7b000d?p=8866) |\n| 第五项修炼·心灵篇 | 彼得・圣吉 | [下载](https://url89.ctfile.com/f/31084289-1357030789-52e5c2?p=8866) |\n| 横向领导力 | 罗杰・费希尔 | [下载](https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866) |\n| 成事 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357030726-a8c162?p=8866) |\n| 领导力思维 | 珍妮弗・加维・伯格/基斯・约翰斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866) |\n| 硅谷蓝图 | 雅各・范德库伊 | [下载](https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866) |\n| 远离迷茫，从学会赚钱开始 | 曾鹏宇 | [下载](https://url89.ctfile.com/f/31084289-1357030558-04bcc2?p=8866) |\n| 第二曲线：跨越“S型曲线”的二次增长 | 查尔斯・汉迪 | [下载](https://url89.ctfile.com/f/31084289-1357030546-1ad3ef?p=8866) |\n| 每天最重要的2小时 | 乔西・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1357030534-7ddb31?p=8866) |\n| 从1到N：企业数字化生存指南 | 尤尔根・梅菲特/沙莎 | [下载](https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866) |\n| 任正非传 | 孙力科 | [下载](https://url89.ctfile.com/f/31084289-1357030453-152563?p=8866) |\n| 中层领导力（共三册） | 约翰・麦克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866) |\n| 不懂员工激励，如何做管理 | 肖祥银 | [下载](https://url89.ctfile.com/f/31084289-1357030405-968764?p=8866) |\n| 知识管理 | 尼克・米尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357030318-1dd6c3?p=8866) |\n| 企业生命周期 | 伊查克・爱迪思 | [下载](https://url89.ctfile.com/f/31084289-1357030324-960b77?p=8866) |\n| 第五项修炼（套装共5册） | 彼得・圣吉 | [下载](https://url89.ctfile.com/f/31084289-1357030288-17bf8f?p=8866) |\n| 小米哲学 | 杨宗勇 | [下载](https://url89.ctfile.com/f/31084289-1357030237-138f5e?p=8866) |\n| 思维精进 | 赵帅/王姗姗  | [下载](https://url89.ctfile.com/f/31084289-1357030216-90e1ab?p=8866) |\n| 高情商管理者的6个习惯 | 斯蒂芬E.科恩/文森特D.奥康奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357030129-4ea76b?p=8866) |\n| 清醒：如何用价值观创造价值 | 弗雷德・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866) |\n| Trillion Dollar Coach | Eric Schmidt | [下载](https://url89.ctfile.com/f/31084289-1357029766-d3bd25?p=8866) |\n| 使命必达：百分之百实现目标的行为科学管理法 | 石田淳 | [下载](https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866) |\n| 深度成长 | 亚力山德拉・卡弗拉科斯/凯瑟琳・明斯 | [下载](https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866) |\n| 胜出：非掠夺社交智慧与共享式领导力 | 琳达・科汗 | [下载](https://url89.ctfile.com/f/31084289-1357029514-754530?p=8866) |\n| 敢创之旅：科勒百年传奇 | 《敢创之旅》编写组 | [下载](https://url89.ctfile.com/f/31084289-1357029376-1a0ae7?p=8866) |\n| 本质 | 正和岛 | [下载](https://url89.ctfile.com/f/31084289-1357029286-80bcf0?p=8866) |\n| 从困境走向成功 | Pepe Nummi | [下载](https://url89.ctfile.com/f/31084289-1357029271-694df0?p=8866) |\n| You are a Badass | Jen Sincero | [下载](https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866) |\n| 你只是看起来很专注 | 张笑恒 | [下载](https://url89.ctfile.com/f/31084289-1357029157-fe7c87?p=8866) |\n| 任正非商业的逻辑 | 申辰 | [下载](https://url89.ctfile.com/f/31084289-1357029109-348519?p=8866) |\n| 全脑优势（第二版） | 奈德・赫曼等 | [下载](https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866) |\n| 大思维：集体智慧如何改变我们的世界 | 周若刚 | [下载](https://url89.ctfile.com/f/31084289-1357029070-010cf1?p=8866) |\n| 如何管好自己（第五版） | 约翰・康特 | [下载](https://url89.ctfile.com/f/31084289-1357028941-7396b8?p=8866) |\n| 逆向创新 | 亚当・摩根 | [下载](https://url89.ctfile.com/f/31084289-1357028677-7e2d5f?p=8866) |\n| 全数字化赋能 | 迈克尔・韦德等 | [下载](https://url89.ctfile.com/f/31084289-1357028410-d6d08c?p=8866) |\n| 未来，相信而看见 | 星野 | [下载](https://url89.ctfile.com/f/31084289-1357028395-7e1c0c?p=8866) |\n| 激情创业 | 于刚 | [下载](https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866) |\n| 这就是OKR | 约翰・杜尔 | [下载](https://url89.ctfile.com/f/31084289-1357028263-0178b7?p=8866) |\n| 解密无印良品 | 松井忠三 | [下载](https://url89.ctfile.com/f/31084289-1357028110-182231?p=8866) |\n| 极度效率 | 阿米特・奥菲尔 | [下载](https://url89.ctfile.com/f/31084289-1357028083-8ae1ff?p=8866) |\n| 适应性创新 |  蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1357027912-c374f8?p=8866) |\n| 世界精英的带人术 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357027900-f1558d?p=8866) |\n| 财务自由之路Ⅲ | 博多・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357027933-640c01?p=8866) |\n| 阿里铁军销售课 | 李立恒 | [下载](https://url89.ctfile.com/f/31084289-1357027711-425f64?p=8866) |\n| 高效管理 | 乔纳森・莱蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866) |\n| 阿米巴核能 | 胡八一 | [下载](https://url89.ctfile.com/f/31084289-1357027267-f8932f?p=8866) |\n| 别让好脾气害了你 | 周维丽 | [下载](https://url89.ctfile.com/f/31084289-1357027069-8b1e00?p=8866) |\n| 逆境成长：坚韧人格养成手册 | 小乔治·S.埃弗利等 | [下载](https://url89.ctfile.com/f/31084289-1357026952-0c0e71?p=8866) |\n| 褚时健 | 先燕云 | [下载](https://url89.ctfile.com/f/31084289-1357026892-ff2ed7?p=8866) |\n| 左脑思考，右脑执行 | 罗森维 | [下载](https://url89.ctfile.com/f/31084289-1357026472-343411?p=8866) |\n| 全面预算管理 | 温兆文 | [下载](https://url89.ctfile.com/f/31084289-1357026223-5a4fd2?p=8866) |\n| 圈层效应 | 托马斯・科洛波洛斯/丹・克尔德森 | [下载](https://url89.ctfile.com/f/31084289-1357025653-5dccf9?p=8866) |\n| 洞见 | 赵昂 | [下载](https://url89.ctfile.com/f/31084289-1357025662-874d05?p=8866) |\n| 社群营销实战手册 | 秋叶 | [下载](https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866) |\n| 触点管理 | 安妮·M·许勒尔 | [下载](https://url89.ctfile.com/f/31084289-1357025596-850ca8?p=8866) |\n| 如何把产品打造成有生命的品牌 | 叶明桂 | [下载](https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866) |\n| 从极简到极致 | 赵晓璃 | [下载](https://url89.ctfile.com/f/31084289-1357025524-050d17?p=8866) |\n| 终身学习 | 黄征宇 | [下载](https://url89.ctfile.com/f/31084289-1357025071-2d34a3?p=8866) |\n| 供应链管理 | 刘宝红 | [下载](https://url89.ctfile.com/f/31084289-1357024912-2e274f?p=8866) |\n| 变革的基因 | 杨国安 | [下载](https://url89.ctfile.com/f/31084289-1357024687-a63a0b?p=8866) |\n| 做自己人生的CEO | 崔璀 | [下载](https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866) |\n| 常青：如何持久吸引客户 | 诺亚・弗雷明 | [下载](https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866) |\n| 走红：如何打造个人品牌 | 杰瑞米・戈德曼/阿里・扎格特 | [下载](https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866) |\n| 重新定义团队 | 拉斯洛・博克 | [下载](https://url89.ctfile.com/f/31084289-1357024459-e3560e?p=8866) |\n| 重新定义公司 | 埃里克・施密特 | [下载](https://url89.ctfile.com/f/31084289-1357024456-64be5b?p=8866) |\n| 企鹅沟通力系列合集 | 马丁・曼瑟等 | [下载](https://url89.ctfile.com/f/31084289-1357024171-e3e647?p=8866) |\n| 逻辑工作法 | 西村克己 | [下载](https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866) |\n| 我每天只工作3小时 | 押井守 | [下载](https://url89.ctfile.com/f/31084289-1357024051-5c3359?p=8866) |\n| 要事第一 | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357024057-5976ea?p=8866) |\n| 奈飞文化手册 | 帕蒂・麦考德 | [下载](https://url89.ctfile.com/f/31084289-1357024030-800847?p=8866) |\n| 哈佛决策课 | 迈克尔・罗伯托 | [下载](https://url89.ctfile.com/f/31084289-1357024012-dc6cf8?p=8866) |\n| 底特律往事 | 比尔・弗拉斯科 | [下载](https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866) |\n| 高效的秘密 | 查尔斯・都希格 | [下载](https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866) |\n| 认识商业 | 威廉・尼克尔斯等 | [下载](https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866) |\n| 超级激励者 | 西蒙・斯涅克 | [下载](https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866) |\n| 感召力 | 西蒙・兰卡斯特 | [下载](https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866) |\n| 赢（纪念版） | 杰克・韦尔奇/苏茜・韦尔奇 | [下载](https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866) |\n| 谷歌创业帮 | 王丹 | [下载](https://url89.ctfile.com/f/31084289-1357023067-2ccabe?p=8866) |\n| 创新法则：名企破局秘笈 | 理查德・科克等 | [下载](https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866) |\n| 你的生存本能正在杀死你（修订版） | 马克・舍恩/克里斯汀・洛贝格 | [下载](https://url89.ctfile.com/f/31084289-1357022587-2b489b?p=8866) |\n| 七堂思维成长课 | 卡罗琳・韦布 | [下载](https://url89.ctfile.com/f/31084289-1357022566-3c90d6?p=8866) |\n| 为什么精英都是时间控 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1357022419-5500f2?p=8866) |\n| 选择的悖论 | 巴里・施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866) |\n| 战略：从思维到行动 | 刘学 | [下载](https://url89.ctfile.com/f/31084289-1357022368-7d77c3?p=8866) |\n| 如何成为有效学习的高手 | 卡尔・纽波特 | [下载](https://url89.ctfile.com/f/31084289-1357022233-d89878?p=8866) |\n| 释放潜能：7个改变个人、团队和组织的教练技巧 | 迈克尔・K.辛普森 | [下载](https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866) |\n| 释放潜能：平台型组织的进化路线图 | 穆胜 | [下载](https://url89.ctfile.com/f/31084289-1357021978-8ba811?p=8866) |\n| 让问题到你为止 | 博恩・崔西 | [下载](https://url89.ctfile.com/f/31084289-1357021912-0c9d89?p=8866) |\n| 高效PDCA工作术 | 富田和成 | [下载](https://url89.ctfile.com/f/31084289-1357021882-8ccafc?p=8866) |\n| 掌控：开启不疲惫、不焦虑的人生 | 张展晖 | [下载](https://url89.ctfile.com/f/31084289-1357021903-0cf2b0?p=8866) |\n| 延展：释放有限资源的无限潜能 | 斯科特・索南沙因 | [下载](https://url89.ctfile.com/f/31084289-1357021864-957e52?p=8866) |\n| 零秒思考：像麦肯锡精英一样思考 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357021822-d42b59?p=8866) |\n| 六顶思考帽：如何简单而高效的思考 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1357021651-474437?p=8866) |\n| 时机管理：完美时机的隐秘模式 | 丹尼尔・平克 | [下载](https://url89.ctfile.com/f/31084289-1357021609-338df4?p=8866) |\n| 洞见未来商业（套装共4册） | 威廉・尼克尔斯等 | [下载](https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866) |\n| 生命向前 | 迈克尔・海厄特/丹尼尔・哈卡维 | [下载](https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866) |\n| 烧掉你的商业计划书 | 卡尔·J. 施拉姆 | [下载](https://url89.ctfile.com/f/31084289-1357021426-2547c1?p=8866) |\n| 百岁人生：长寿时代的生活和工作 | 琳达・格拉顿/安德鲁・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357021330-9ce0b1?p=8866) |\n| 零秒工作 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866) |\n| 脆弱的力量 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357021078-290a71?p=8866) |\n| MBA十日读（第四版） | 史蒂文・西尔比格 | [下载](https://url89.ctfile.com/f/31084289-1357021045-26cf5b?p=8866) |\n| 时间管理法（套装共3册） | 爱德华・德博诺等 | [下载](https://url89.ctfile.com/f/31084289-1357020913-a4f1b5?p=8866) |\n| 成长到死 | 布琳・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357020892-1a7715?p=8866) |\n| 阿里巴巴与四十大道 | 赵先超 | [下载](https://url89.ctfile.com/f/31084289-1357020613-0c1a46?p=8866) |\n| 抗压力：逆境重生法则 | 久世浩司 | [下载](https://url89.ctfile.com/f/31084289-1357020541-463985?p=8866) |\n| 深度案例思考法 | 井上达彦 | [下载](https://url89.ctfile.com/f/31084289-1357020535-71effc?p=8866) |\n| 如何有效整理信息 | 奥野宣之 | [下载](https://url89.ctfile.com/f/31084289-1357020547-dd9e0d?p=8866) |\n| 未来时间使用手册 | 松冈真宏 | [下载](https://url89.ctfile.com/f/31084289-1357020493-4cfaea?p=8866) |\n| 深度模仿 | 井上达彦 | [下载](https://url89.ctfile.com/f/31084289-1357020490-8e6c68?p=8866) |\n| 重来2：更为简单高效的远程工作方式 | 贾森・弗里德/戴维・海涅迈尔・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357020463-1cc2f2?p=8866) |\n| 精准努力 | 野口真人 | [下载](https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866) |\n| 非理性的时代 | 查尔斯・汉迪 | [下载](https://url89.ctfile.com/f/31084289-1357020283-d423d5?p=8866) |\n| 连接：顾客价值时代的营销战略 | 施炜 | [下载](https://url89.ctfile.com/f/31084289-1357020277-549efc?p=8866) |\n| 绝对自控 | 瑞安・霍利迪 | [下载](https://url89.ctfile.com/f/31084289-1357020094-358288?p=8866) |\n| 让数字说话：审计，就这么简单 | 孙含晖等 | [下载](https://url89.ctfile.com/f/31084289-1357020043-ddea35?p=8866) |\n| 全神贯注的方法 | 托马斯 M. 斯特纳 | [下载](https://url89.ctfile.com/f/31084289-1357020040-648574?p=8866) |\n| 搞定（全三册） | 戴维・艾伦 | [下载](https://url89.ctfile.com/f/31084289-1357020034-d97493?p=8866) |\n| 逻辑说服力 | 陈浩 | [下载](https://url89.ctfile.com/f/31084289-1357020013-f61abe?p=8866) |\n| 影子银行内幕：下一个次贷危机的源头（修订版） | 张化桥 | [下载](https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866) |\n| 不存在的人 | 阿尼尔・阿南塔斯瓦米 | [下载](https://url89.ctfile.com/f/31084289-1357019830-4d406a?p=8866) |\n| 洞察：精确观察和有效沟通的艺术 | 艾米・赫曼 | [下载](https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866) |\n| 欲罢不能：刷屏时代如何摆脱行为上瘾 | 亚当・阿尔特 | [下载](https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866) |\n| 麦肯锡思维 | 洛威茨 | [下载](https://url89.ctfile.com/f/31084289-1357019797-9e7f9d?p=8866) |\n| 心智力：商业奇迹的底层思维 | 李中莹/舒瀚霆 | [下载](https://url89.ctfile.com/f/31084289-1357019779-447881?p=8866) |\n| 子弹笔记术 | 杉野干人 | [下载](https://url89.ctfile.com/f/31084289-1357019761-864774?p=8866) |\n| 当机立断 | 出口治明 | [下载](https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866) |\n| 创业维艰 | 本・霍洛维茨 | [下载](https://url89.ctfile.com/f/31084289-1357019557-cbd6d4?p=8866) |\n| 直觉：我们为什么无从推理，却能决策 | 格尔德・吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357019524-1c3e13?p=8866) |\n| 斜杠创业家 | 金伯莉・帕尔默 | [下载](https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866) |\n| 流量池 | 杨飞 | [下载](https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866) |\n| 奇特的一生 | 格拉宁 | [下载](https://url89.ctfile.com/f/31084289-1357019428-6d23f0?p=8866) |\n| 创新简史 | 杨旸 | [下载](https://url89.ctfile.com/f/31084289-1357019392-680cf7?p=8866) |\n| 平均的终结 | 托德・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357019251-a6dba1?p=8866) |\n| 让大象飞 | 史蒂文・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357019134-da9ecd?p=8866) |\n| 女神进化论 | 寺主人 | [下载](https://url89.ctfile.com/f/31084289-1357019086-4cbd0e?p=8866) |\n| 辣道至简：老干妈陶华碧的经营智慧 | 李琦晨 | [下载](https://url89.ctfile.com/f/31084289-1357019074-0c0d6b?p=8866) |\n| 塞氏企业：设计未来组织新模式 | 里卡多・塞姆勒 | [下载](https://url89.ctfile.com/f/31084289-1357019056-a8bb99?p=8866) |\n| 关键20小时，快速学会任何技能！ | 乔希・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357018735-508fa6?p=8866) |\n| 如何成为一个学习忍者 | 格雷厄姆・奥尔科特 | [下载](https://url89.ctfile.com/f/31084289-1357018495-810956?p=8866) |\n| Under New Management | David Burkus | [下载](https://url89.ctfile.com/f/31084289-1357018441-015a18?p=8866) |\n| 至关重要的关系 | 里德・霍夫曼/本・卡斯诺瓦 | [下载](https://url89.ctfile.com/f/31084289-1357018369-4bb227?p=8866) |\n| 心理韧性的力量 | 道格・亨施 | [下载](https://url89.ctfile.com/f/31084289-1357018291-0b8a09?p=8866) |\n| 成为数据分析师 | 托马斯・达文波特 | [下载](https://url89.ctfile.com/f/31084289-1357018255-12f5c6?p=8866) |\n| 阿里巴巴正传 | 方兴东/刘伟  | [下载](https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866) |\n| 平台革命：改变世界的商业模式 | 杰奥夫雷 G. 帕克等 | [下载](https://url89.ctfile.com/f/31084289-1357018114-636599?p=8866) |\n| 萨缪尔森经济学精选套装（第19版共4册） | 保罗・萨缪尔森 | [下载](https://url89.ctfile.com/f/31084289-1357018045-002052?p=8866) |\n| 七个天才团队的故事 | 沃伦・本尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866) |\n| 以客户为中心 | 黄卫伟 | [下载](https://url89.ctfile.com/f/31084289-1357017832-1c4b9c?p=8866) |\n| 价值为纲：华为公司财经管理纲要 | 黄卫伟 | [下载](https://url89.ctfile.com/f/31084289-1357017811-05f4eb?p=8866) |\n| 创业36条军规 | 孙陶然 | [下载](https://url89.ctfile.com/f/31084289-1357017766-e33f92?p=8866) |\n| 把时间当作朋友（第3版） | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1357017763-3e3512?p=8866) |\n| 成功，动机与目标 | 海蒂・格兰特・霍尔沃森 | [下载](https://url89.ctfile.com/f/31084289-1357017709-dd63a7?p=8866) |\n| 斜杠青年 | Susan Kuang | [下载](https://url89.ctfile.com/f/31084289-1357017703-338a87?p=8866) |\n| 人生定位：特劳特教你营销自己 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866) |\n| 有效学习 | 乌尔里希・伯泽尔 | [下载](https://url89.ctfile.com/f/31084289-1357017628-d288d6?p=8866) |\n| DISCOVER自我探索（全彩） | 李海峰 | [下载](https://url89.ctfile.com/f/31084289-1357017607-237846?p=8866) |\n| 赋能：打造应对不确定性的敏捷团队 | 斯坦利・麦克里斯特尔等 | [下载](https://url89.ctfile.com/f/31084289-1357017535-3f09e7?p=8866) |\n| 盗火 | 史蒂芬・科特勒/杰米・威尔 | [下载](https://url89.ctfile.com/f/31084289-1357017394-61ea85?p=8866) |\n| 增长黑客：如何低成本实现爆发式成长 | Sean Ellis | [下载](https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866) |\n| Principles | Ray Dalio | [下载](https://url89.ctfile.com/f/31084289-1357017202-d00a86?p=8866) |\n| 影响力大师（原书第2版） | 约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357017205-c1655c?p=8866) |\n| 可复制的领导力 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357017184-25e82f?p=8866) |\n| 隐形冠军：未来全球化的先锋 | 赫尔曼・西蒙 | [下载](https://url89.ctfile.com/f/31084289-1357017103-ceb233?p=8866) |\n| 2小时品牌素养 | 邓德隆 | [下载](https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866) |\n| 商业的本质 | 杰克・韦尔奇/苏西・韦尔奇 | [下载](https://url89.ctfile.com/f/31084289-1357017043-68bb69?p=8866) |\n| 决断力 | 奇普・希思/丹・希思  | [下载](https://url89.ctfile.com/f/31084289-1357016977-d8378c?p=8866) |\n| HR转型突破 | 康志军 | [下载](https://url89.ctfile.com/f/31084289-1357016836-d313c3?p=8866) |\n| 李善友颠覆式创新思维系列（共4册） | 李善友/龚焱 | [下载](https://url89.ctfile.com/f/31084289-1357016941-a33728?p=8866) |\n| 原则 | 瑞・达利欧 | [下载](https://url89.ctfile.com/f/31084289-1357016686-356e2c?p=8866) |\n| 混乱 | 蒂姆・哈福德  | [下载](https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866) |\n| 从行动开始 | 石田淳 | [下载](https://url89.ctfile.com/f/31084289-1357016650-20e429?p=8866) |\n| 你一年的8760小时 | 艾力 | [下载](https://url89.ctfile.com/f/31084289-1357016536-e3cbda?p=8866) |\n| 餐巾纸系列套装（套装共2本） | 丹・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1357016506-d2e8ae?p=8866) |\n| OKR工作法 | 克里斯蒂娜・沃特克 | [下载](https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866) |\n| OKR：源于英特尔和谷歌的目标管理利器 | 保罗・尼文/本・拉莫尔特 | [下载](https://url89.ctfile.com/f/31084289-1357016284-d23741?p=8866) |\n| 松下幸之助三书（套装共3本） | 松下幸之助 | [下载](https://url89.ctfile.com/f/31084289-1357016254-1869c5?p=8866) |\n| 你凭什么做好互联网 | 曹政 | [下载](https://url89.ctfile.com/f/31084289-1357016146-0d016d?p=8866) |\n| Fintech：全球金融科技权威指南 | 苏珊娜・奇斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866) |\n| 卖故事：实践版 | 高朋 | [下载](https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866) |\n| 重塑组织 | 弗雷德里克・莱卢  | [下载](https://url89.ctfile.com/f/31084289-1357016041-672fb1?p=8866) |\n| 内容经济 | 谢利明 | [下载](https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866) |\n| 每天学点时间整理术 | 特瑞博・伍兹 | [下载](https://url89.ctfile.com/f/31084289-1357015936-2a3d9f?p=8866) |\n| 人生效率手册 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357015783-caef80?p=8866) |\n| 决策的智慧 | 大卫・亨德森/查尔斯・胡珀 | [下载](https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866) |\n| 麦肯锡教我的工作方法 | 中村诚一 | [下载](https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866) |\n| 为什么精英都是Excel控 | 熊野整 | [下载](https://url89.ctfile.com/f/31084289-1357015744-ec5cf7?p=8866) |\n| 高效15法则 | 凯文・克鲁斯 | [下载](https://url89.ctfile.com/f/31084289-1357015645-a8ae79?p=8866) |\n| 单核工作法图解 | 史蒂夫・诺特伯格 | [下载](https://url89.ctfile.com/f/31084289-1357015606-53a35f?p=8866) |\n| 经营战略全史 | 三谷宏治 | [下载](https://url89.ctfile.com/f/31084289-1357015552-b46898?p=8866) |\n| 参谋助手论 | 王怀志/郭政 | [下载](https://url89.ctfile.com/f/31084289-1357015459-a2ef41?p=8866) |\n| 靠谱 | 大石哲之 | [下载](https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866) |\n| 关键对话 | 凯瑞・派特森/约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015342-e01712?p=8866) |\n| 关键冲突 | 科里・帕特森/约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015339-b03473?p=8866) |\n| 关键责任 | 科里・帕特森/约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866) |\n| 趋势红利 | 刘润 | [下载](https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866) |\n| 所以，一切都是童年的错吗？ | KnowYourself主创们 | [下载](https://url89.ctfile.com/f/31084289-1357015294-aa1568?p=8866) |\n| 激活个体 | 陈春花 | [下载](https://url89.ctfile.com/f/31084289-1357015225-236a5a?p=8866) |\n| 极简工作Ⅰ | 约根・库尔兹 | [下载](https://url89.ctfile.com/f/31084289-1357015267-2b86bb?p=8866) |\n| 极简工作Ⅱ | 约根・库尔兹 | [下载](https://url89.ctfile.com/f/31084289-1357015210-742ca7?p=8866) |\n| 简化 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1357015120-deeada?p=8866) |\n| 决策与判断 | 斯科特・普劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357015099-3a7e2f?p=8866) |\n| 水煮三国（十周年纪念版） | 成君忆 | [下载](https://url89.ctfile.com/f/31084289-1357015078-1ffe74?p=8866) |\n| 请给我结果 | 姜汝祥 | [下载](https://url89.ctfile.com/f/31084289-1357015060-25a31d?p=8866) |\n| 管理的常识 | 陈春花 | [下载](https://url89.ctfile.com/f/31084289-1357015057-903f80?p=8866) |\n| 回头客战略 | 谢家华 | [下载](https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866) |\n| HR+三支柱 | 彭剑锋/马海刚/西楠 | [下载](https://url89.ctfile.com/f/31084289-1357014970-7e75ae?p=8866) |\n| 好好工作，好好生活 | 克里斯汀・卡特 | [下载](https://url89.ctfile.com/f/31084289-1357014940-af4bd2?p=8866) |\n| 华为没有秘密 | 吴春波 | [下载](https://url89.ctfile.com/f/31084289-1357014922-96f554?p=8866) |\n| 终身成长 | 卡罗尔・德韦克 | [下载](https://url89.ctfile.com/f/31084289-1357014808-fa0a34?p=8866) |\n| 好好学习 | 成甲 | [下载](https://url89.ctfile.com/f/31084289-1357014799-edd4b9?p=8866) |\n| 第七感 | 乔舒亚・库珀・雷默 | [下载](https://url89.ctfile.com/f/31084289-1357014766-53de67?p=8866) |\n| 爆品战略 | 金错刀 | [下载](https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866) |\n| 公司的概念（珍藏版） | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357014736-217047?p=8866) |\n| 威科夫操盘法 | 孟洪涛 | [下载](https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866) |\n| 孵化皮克斯 | 劳伦斯・利维 | [下载](https://url89.ctfile.com/f/31084289-1357014694-2f351f?p=8866) |\n| 运营之光 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866) |\n| 运营之光2.0 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866) |\n| 别让猴子跳回背上 | 威廉・安肯三世 | [下载](https://url89.ctfile.com/f/31084289-1357014490-3430ef?p=8866) |\n| 别让无效努力毁了你 | 克里斯・贝利 | [下载](https://url89.ctfile.com/f/31084289-1357014442-332e82?p=8866) |\n| 创业就是要细分垄断 | 李开复/汪华/傅盛  | [下载](https://url89.ctfile.com/f/31084289-1357014265-1ee832?p=8866) |\n| 怎样卖龙虾 | 比尔・毕晓普 | [下载](https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866) |\n| 大众创新 | 埃里克・冯・希佩尔 | [下载](https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866) |\n| 黑匣子思维：我们如何更理性地犯错 | 马修・萨伊德 | [下载](https://url89.ctfile.com/f/31084289-1357014211-1c5f9b?p=8866) |\n| 刻意练习：如何从新手到大师 | 安德斯・艾利克森 | [下载](https://url89.ctfile.com/f/31084289-1357014022-891e5d?p=8866) |\n| 逆势销售：UGG创始人自述 | 布莱恩・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866) |\n| 褚时健管理法 | 张小军/马玥 | [下载](https://url89.ctfile.com/f/31084289-1357013983-1e34a0?p=8866) |\n| 大道当然 | 王石 | [下载](https://url89.ctfile.com/f/31084289-1357013914-060374?p=8866) |\n| “错误”的行为 | 理查德・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357013920-5d454d?p=8866) |\n| 暗时间 | 刘未鹏 | [下载](https://url89.ctfile.com/f/31084289-1357013725-1745f9?p=8866) |\n| 别再用勤奋掩饰你的懒惰 | 阿何 | [下载](https://url89.ctfile.com/f/31084289-1357013689-163e7f?p=8866) |\n| 11枚戒指禅：师菲尔·杰克逊自传 | 菲尔・杰克逊/休・迪里汉提 | [下载](https://url89.ctfile.com/f/31084289-1357013530-adcbea?p=8866) |\n| 结网@改变世界的互联网产品经理（修订版） | 王坚 | [下载](https://url89.ctfile.com/f/31084289-1357013311-bc83a9?p=8866) |\n| 浪潮之巅 | 吴军 | [下载](https://url89.ctfile.com/f/31084289-1357013254-7066dd?p=8866) |\n| 系统之美 | 德内拉・梅多斯 | [下载](https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866) |\n| 跃迁：成为高手的技术 | 古典 | [下载](https://url89.ctfile.com/f/31084289-1357013161-eaef0d?p=8866) |\n| 11.11如何卖到一个亿 | 陈炉均/陈威/马国良 | [下载](https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866) |\n| AsK.反直觉询问 | 莱恩・莱韦斯克 | [下载](https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866) |\n| U型理论（全新升级版） | 奥托・夏莫 | [下载](https://url89.ctfile.com/f/31084289-1357013143-40fa8b?p=8866) |\n| 追时间的人 | 阳志平等 | [下载](https://url89.ctfile.com/f/31084289-1357013005-f92fca?p=8866) |\n| 指数型组织 | 萨利姆・伊斯梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357012981-350136?p=8866) |\n| CEO说：像企业家一样思考 | 拉姆・查兰 | [下载](https://url89.ctfile.com/f/31084289-1357012924-0396bc?p=8866) |\n| 中国式管理行为 | 曾仕强 | [下载](https://url89.ctfile.com/f/31084289-1357012855-72e7bc?p=8866) |\n| 微习惯 | 斯蒂芬・盖斯 | [下载](https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866) |\n| 深度工作 | 卡尔・纽波特 | [下载](https://url89.ctfile.com/f/31084289-1357012528-0a8a94?p=8866) |\n| 未来的组织：企业持续成长的智慧 | 章永宏/罗旭 | [下载](https://url89.ctfile.com/f/31084289-1357012483-15e595?p=8866) |\n| 斯坦福商业决策课 | 卡尔・斯佩茨勒等 | [下载](https://url89.ctfile.com/f/31084289-1357012456-2f8744?p=8866) |\n| 创新者 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357012477-89ebbb?p=8866) |\n| 创新者的基因 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357012429-deba4e?p=8866) |\n| 华为工作法 | 黄继伟 | [下载](https://url89.ctfile.com/f/31084289-1357012357-a75698?p=8866) |\n| 胜利的法则 | 铃木博毅 | [下载](https://url89.ctfile.com/f/31084289-1357012291-10c2a3?p=8866) |\n| 谁说你不能坚持 | 程龙 | [下载](https://url89.ctfile.com/f/31084289-1357012297-36d4eb?p=8866) |\n| 可口可乐传 | 马克・彭德格拉斯特 | [下载](https://url89.ctfile.com/f/31084289-1357011883-528c11?p=8866) |\n| 品牌洗脑（珍藏版） | 马丁・林斯特龙 | [下载](https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866) |\n| 新零售时代三部曲（套装共三册） | 杰弗里・米勒/大卫・贝尔等 | [下载](https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866) |\n| 自制力 | 高原 | [下载](https://url89.ctfile.com/f/31084289-1357011280-54e2c0?p=8866) |\n| 这才是思维 | 爱德华・德博诺 | [下载](https://url89.ctfile.com/f/31084289-1357011256-cc5193?p=8866) |\n| 愿景领导者 | 迪帕克・乔普拉 | [下载](https://url89.ctfile.com/f/31084289-1357011211-07999a?p=8866) |\n| 在星巴克要买大杯咖啡 | 吉本佳生 | [下载](https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866) |\n| 在星巴克遇见德鲁克 | 李麦可 | [下载](https://url89.ctfile.com/f/31084289-1357011139-8f0e63?p=8866) |\n| 聪明人用方格笔记本 | 高桥政史 | [下载](https://url89.ctfile.com/f/31084289-1357010908-f51638?p=8866) |\n| 创新的先知 | 托马斯・麦克劳 | [下载](https://url89.ctfile.com/f/31084289-1357010812-0d5497?p=8866) |\n| 饥饿的灵魂 | 查尔斯・汉迪 | [下载](https://url89.ctfile.com/f/31084289-1357010437-3fcddd?p=8866) |\n| 哈佛商业评论・职场那些事（全10册） | 哈佛商业评论 | [下载](https://url89.ctfile.com/f/31084289-1357010470-365bbf?p=8866) |\n| 哈佛商业评论・像管理者一样思考（全15册） | 哈佛商业评论 | [下载](https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866) |\n| 帮你省时间！替你划重点！教你学管理！ | 哈佛商业评论 | [下载](https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866) |\n| 关系力 | 蒂姆・邓普顿 | [下载](https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866) |\n| 思维力：高效的系统思维 | 王世民 | [下载](https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866) |\n| 罗杰·道森优势谈判系列 | 罗杰・道森 | [下载](https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866) |\n| 倾听全球的声音（全10册） | 经济学人 | [下载](https://url89.ctfile.com/f/31084289-1357010230-dfe349?p=8866) |\n| 创新的本能：类比思维的力量 | 约翰・波拉克 | [下载](https://url89.ctfile.com/f/31084289-1357010167-85c2d3?p=8866) |\n| 超越智商 | 基思・斯坦诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866) |\n| 干法 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866) |\n| 互联网思维独孤九剑 | 赵大伟 | [下载](https://url89.ctfile.com/f/31084289-1357009990-5e1eb8?p=8866) |\n| 上瘾 | 尼尔・埃亚尔/瑞安・胡佛 | [下载](https://url89.ctfile.com/f/31084289-1357009936-0540e2?p=8866) |\n| 超级IP：互联网新物种方法论 | 吴声 | [下载](https://url89.ctfile.com/f/31084289-1357009858-1b0db0?p=8866) |\n| 痛点：挖掘小数据满足用户需求 | 马丁・林斯特龙 | [下载](https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866) |\n| 刻意学习 | Scalers | [下载](https://url89.ctfile.com/f/31084289-1357009747-d221a9?p=8866) |\n| 象与骑象人：幸福的假设 | 乔纳森・海特 | [下载](https://url89.ctfile.com/f/31084289-1357009654-67ea14?p=8866) |\n| 科学的广告+我的广告生涯 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866) |\n| 金钱不能买什么 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357009447-bec7f0?p=8866) |\n| 最重要的事，只有一件 | 加里・凯勒/杰伊・帕帕森 | [下载](https://url89.ctfile.com/f/31084289-1357009393-dab5ec?p=8866) |\n| 十亿美金的教训 | 林军 | [下载](https://url89.ctfile.com/f/31084289-1357009252-f16c20?p=8866) |\n| 权力：为什么只为某些人所拥有（经典版） | 杰弗瑞・菲佛 | [下载](https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866) |\n| 精力管理 | 吉姆・洛尔/托尼・施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357009036-6c36ba?p=8866) |\n| 设计冲刺 | 杰克・纳普 | [下载](https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866) |\n| 慢决策：如何在极速时代掌握慢思考的力量 | 弗兰克・帕特诺伊  | [下载](https://url89.ctfile.com/f/31084289-1357008970-5275d1?p=8866) |\n| 魔力法则：用一年时间积累一生财富（套装共3册） | 拿破仑・希尔 | [下载](https://url89.ctfile.com/f/31084289-1357008946-266699?p=8866) |\n| 小米生态链战地笔记 | 小米生态链谷仓学院 | [下载](https://url89.ctfile.com/f/31084289-1357008922-f481cd?p=8866) |\n| 罗伯特议事规则 | 袁天鹏 | [下载](https://url89.ctfile.com/f/31084289-1357008811-e8cf3b?p=8866) |\n| 鞋狗 | 菲尔・奈特 | [下载](https://url89.ctfile.com/f/31084289-1357008685-9437a7?p=8866) |\n| 精要主义 | 格雷戈・麦吉沃恩  | [下载](https://url89.ctfile.com/f/31084289-1357008661-c552a6?p=8866) |\n| 董事会里的战争 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866) |\n| 疯狂到位 | 亚当・施特尔茨/威廉・帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1357008316-1265a5?p=8866) |\n| 好战略，坏战略 | 理查德・鲁梅尔特 | [下载](https://url89.ctfile.com/f/31084289-1357008307-ed14b0?p=8866) |\n| 引爆点：如何制造流行 | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866) |\n| 结构思考力 | 李忠秋 | [下载](https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866) |\n| 重来：更为简单有效的商业思维 | 贾森・弗里德/大卫・汉森 | [下载](https://url89.ctfile.com/f/31084289-1357007893-1e2d77?p=8866) |\n| 定位 | 杰克・特劳特/阿尔・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866) |\n| 麦肯锡精英的48个工作习惯 | 户塚隆将 | [下载](https://url89.ctfile.com/f/31084289-1357007767-d82cd1?p=8866) |\n| 吉姆·柯林斯成就卓越系列（套装共4册） | 吉姆・柯林斯 | [下载](https://url89.ctfile.com/f/31084289-1357007773-3b19ee?p=8866) |\n| 为什么精英都是清单控 | 宝拉・里佐 | [下载](https://url89.ctfile.com/f/31084289-1357007710-be0e00?p=8866) |\n| 好好说话：新鲜有趣的话术精进技巧 | 马东/马薇薇/黄执中等 | [下载](https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866) |\n| 柳问：柳传志的管理三要素 | 张涛 | [下载](https://url89.ctfile.com/f/31084289-1357007566-7946b7?p=8866) |\n| 领导梯队（原书第2版） | 拉姆・查兰/斯蒂芬・德罗特 | [下载](https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866) |\n| 吴晓波细说商业史（套装共5册） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357007437-79d20a?p=8866) |\n| 阿里传：这是阿里巴巴的世界 | 波特・埃里斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357007371-999645?p=8866) |\n| 地产狂人许家印 | 魏昕 | [下载](https://url89.ctfile.com/f/31084289-1357007365-9823aa?p=8866) |\n| 影响力 | 罗伯特・西奥迪尼 | [下载](https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866) |\n| 海底捞你学不会 | 黄铁鹰 | [下载](https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866) |\n| 麦肯锡工具 | 保罗・弗里嘉 | [下载](https://url89.ctfile.com/f/31084289-1357007335-83e6cf?p=8866) |\n| 德鲁克的最后忠告 | 伊丽莎白・哈斯・埃德莎姆 | [下载](https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866) |\n| 精益创业实战（第2版） | Ash Maurya | [下载](https://url89.ctfile.com/f/31084289-1357007290-b0edf9?p=8866) |\n| 创新者的解答 | 克莱顿・克里斯坦森/迈克尔・雷纳 | [下载](https://url89.ctfile.com/f/31084289-1357007299-0c5457?p=8866) |\n| 创新者的窘境 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1357007272-f21998?p=8866) |\n| 跨越鸿沟：颠覆性产品营销圣经 | 杰弗里・摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866) |\n| 联想风云三十年 | 赵雪/姜美芝 | [下载](https://url89.ctfile.com/f/31084289-1357007260-d642e2?p=8866) |\n| 科学管理原理 | 弗雷德里克・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357007242-f6d444?p=8866) |\n| 商战 | 杰克・特劳特 / 阿尔・里斯  | [下载](https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866) |\n| 什么是战略 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866) |\n| 清单革命 | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866) |\n| 万达工作法 | 万达集团企业文化中心  | [下载](https://url89.ctfile.com/f/31084289-1357007134-214c77?p=8866) |\n| 富爸爸穷爸爸 | 罗伯特.T.清崎 | [下载](https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866) |\n| 22条商规 | 艾・里斯 / 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866) |\n| 零售哲学系列：7-11便利店创始人自述（套装共2册） | 铃木敏文 | [下载](https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866) |\n| 巴菲特致股东的信（精华篇） | L·J·瑞德豪斯 | [下载](https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866) |\n| 管理的实践（珍藏版） | 彼得・德鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357007080-44a05a?p=8866) |\n| 解决问题最简单的方法 | 达伦・布里奇/戴维・路易斯  | [下载](https://url89.ctfile.com/f/31084289-1357007065-633a40?p=8866) |\n| 精益创业 : 新创企业的成长思维 | 埃里克・莱斯  | [下载](https://url89.ctfile.com/f/31084289-1357007053-ff392a?p=8866) |\n| Ego Is the Enemy | Ryan Holiday  | [下载](https://url89.ctfile.com/f/31084289-1357006948-f3c958?p=8866) |\n| 1分钟爱上管理学 | 姚余梁 | [下载](https://url89.ctfile.com/f/31084289-1357006891-f90357?p=8866) |\n| 钓愚：操纵与欺骗的经济学 | 乔治·阿克洛夫/罗伯特·席勒 | [下载](https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866) |\n| 伟大是熬出来的 | 优米网 | [下载](https://url89.ctfile.com/f/31084289-1357006840-272bf7?p=8866) |\n| 复盘：对过去的事情做思维演练 | 陈中 | [下载](https://url89.ctfile.com/f/31084289-1357006834-928d42?p=8866) |\n| 万达哲学：王健林首次自述经营之道 | 王健林 | [下载](https://url89.ctfile.com/f/31084289-1357006783-e0c51d?p=8866) |\n| 宗庆后：万有引力原理 | 迟宇宙 | [下载](https://url89.ctfile.com/f/31084289-1357006780-2e1e88?p=8866) |\n| TED竞争心理学 | 玛格丽特·赫夫南 | [下载](https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866) |\n| 风险与好的决策 | 格尔德·吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357006729-e84009?p=8866) |\n| 世界是部金融史（全新修订典藏版） | 陈雨露/杨栋  | [下载](https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866) |\n| 平台战略 | 陈威如/余卓轩  | [下载](https://url89.ctfile.com/f/31084289-1357006423-865add?p=8866) |\n| 沃顿商学院最受欢迎的思维课 | 亚当・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357006393-bbd23d?p=8866) |\n| 行在宽处 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006243-e0097a?p=8866) |\n| 理想丰满 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006249-88b6ca?p=8866) |\n| 野蛮生长（权威未删节） | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357006246-9ff757?p=8866) |\n| 小强升职记（升级版） | 邹鑫 | [下载](https://url89.ctfile.com/f/31084289-1357006204-c05b09?p=8866) |\n| 不奋斗就等死 | 陈轩 | [下载](https://url89.ctfile.com/f/31084289-1357006111-6361a4?p=8866) |\n| 高效能人士的七个习惯（20周年纪念版） | 史蒂芬・柯维 | [下载](https://url89.ctfile.com/f/31084289-1357006063-39c12e?p=8866) |\n| 下一个倒下的会不会是华为 | 吴春波/田涛 | [下载](https://url89.ctfile.com/f/31084289-1357005934-356c47?p=8866) |\n| 领导力21法则 | 约翰・麦克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1357005919-08ec04?p=8866) |\n| 成功的真谛 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357005862-364963?p=8866) |\n| 新版一分钟经理人 | 肯・布兰佳 | [下载](https://url89.ctfile.com/f/31084289-1357005577-99fa0a?p=8866) |\n| 创京东 | 李志刚 | [下载](https://url89.ctfile.com/f/31084289-1357005544-0bce57?p=8866) |\n| 大败局（十周年套装纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866) |\n| 从0到1：开启商业与未来的秘密 | 彼得・蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1357004827-5f6756?p=8866) |\n| 番茄工作法图解 | 诺特伯格 | [下载](https://url89.ctfile.com/f/31084289-1357004824-6211b9?p=8866) |\n"
  },
  {
    "path": "md/粮食、油脂及植物蛋白工程.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 粮食、油脂及植物蛋白工程\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 金龙鱼背后的粮油帝国 | 余盛 | [下载](https://url89.ctfile.com/f/31084289-1357039426-863024?p=8866) |\n"
  },
  {
    "path": "md/精进.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 精进\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 奇才 | 梅利莎・席林 | [下载](https://url89.ctfile.com/f/31084289-1357045384-077be7?p=8866) |\n| 第三道门 | 亚历克斯・班纳言 | [下载](https://url89.ctfile.com/f/31084289-1357042288-2d7570?p=8866) |\n| 升维：让你人生出众的另类通道 | 褚明宇 | [下载](https://url89.ctfile.com/f/31084289-1357031302-e588b2?p=8866) |\n"
  },
  {
    "path": "md/系列.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 系列\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| TED思想的力量系列（套装共11册） | 奇普・基德等 | [下载](https://url89.ctfile.com/f/31084289-1357012561-cc2ad1?p=8866) |\n"
  },
  {
    "path": "md/系统.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 系统\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 推荐系统实践 | 项亮 | [下载](https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866) |\n| 系统之美 | 德内拉・梅多斯 | [下载](https://url89.ctfile.com/f/31084289-1357013248-e73d3c?p=8866) |\n| 思维力：高效的系统思维 | 王世民 | [下载](https://url89.ctfile.com/f/31084289-1357010326-b6e488?p=8866) |\n"
  },
  {
    "path": "md/红楼梦.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 红楼梦\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 刘心武妙品红楼梦 | 刘心武 | [下载](https://url89.ctfile.com/f/31084289-1375508878-a5cdd8?p=8866) |\n| 尘世梦影：彩绘红楼梦 | 孙温/王典弋 | [下载](https://url89.ctfile.com/f/31084289-1356999178-c5dc11?p=8866) |\n| 红楼梦脂评汇校本 | 吴铭恩 | [下载](https://url89.ctfile.com/f/31084289-1357051549-30467b?p=8866) |\n| 曹雪芹大传（共14册） | 曹雪芹等 | [下载](https://url89.ctfile.com/f/31084289-1357050604-976667?p=8866) |\n| 红楼十二层：周汝昌妙解红楼 | 周汝昌 | [下载](https://url89.ctfile.com/f/31084289-1357044889-ec39c7?p=8866) |\n| 三春争及初春景（全三册） | 高阳 | [下载](https://url89.ctfile.com/f/31084289-1357031890-2d8f96?p=8866) |\n| 蒋勋说红楼梦（修订版） | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866) |\n| 正本清源说红楼 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1357029559-e08768?p=8866) |\n| 蒋勋说红楼梦 | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357005907-b6423c?p=8866) |\n"
  },
  {
    "path": "md/纪实.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 纪实\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 女孩们的地下战争 | 蕾切尔・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1375491190-40f929?p=8866) |\n| 不平等的尸体 | 西尾元 | [下载](https://url89.ctfile.com/f/31084289-1375491730-fd4592?p=8866) |\n| 地狱里的希望 | 丹・波托洛蒂 | [下载](https://url89.ctfile.com/f/31084289-1375492060-2c8fad?p=8866) |\n| 她来自马里乌波尔 | 娜塔莎・沃丁 | [下载](https://url89.ctfile.com/f/31084289-1375493182-6af357?p=8866) |\n| 里约折叠 | 米沙・格兰尼 | [下载](https://url89.ctfile.com/f/31084289-1375493452-eb3a63?p=8866) |\n| 运气的诱饵 | 娜塔莎・道・舒尔 | [下载](https://url89.ctfile.com/f/31084289-1375493695-e4930e?p=8866) |\n| 在中国大地上 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1375493722-348f90?p=8866) |\n| 美好时代的背后 | 凯瑟琳・布 | [下载](https://url89.ctfile.com/f/31084289-1375495399-0e9e0c?p=8866) |\n| 压裂的底层 | 伊丽莎・格里斯沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1375497073-d5a61b?p=8866) |\n| 坠落与重生：911的故事 | 米切尔・祖科夫 | [下载](https://url89.ctfile.com/f/31084289-1375497535-e9ce53?p=8866) |\n| 在人间：肿瘤科女医生亲历记录 | 沈琳/戴志悦 | [下载](https://url89.ctfile.com/f/31084289-1375498033-dfa046?p=8866) |\n| 隐谷路 | 罗伯特・科尔克 | [下载](https://url89.ctfile.com/f/31084289-1375498873-def7c6?p=8866) |\n| 张医生与王医生 | 伊险峰/杨樱 | [下载](https://url89.ctfile.com/f/31084289-1375499125-925a06?p=8866) |\n| 老后两代破产 | NHK特别节目录制组 | [下载](https://url89.ctfile.com/f/31084289-1375499251-4a9792?p=8866) |\n| 熔炉 | 孔枝泳 | [下载](https://url89.ctfile.com/f/31084289-1375500031-1ac20c?p=8866) |\n| 回归家庭 | 沙尼・奥加德 | [下载](https://url89.ctfile.com/f/31084289-1375500403-34b60f?p=8866) |\n| 失业白领的职场漂流 | 芭芭拉・艾伦瑞克 | [下载](https://url89.ctfile.com/f/31084289-1375500553-5edab3?p=8866) |\n| 梁庄十年 | 梁鸿 | [下载](https://url89.ctfile.com/f/31084289-1375500706-b2fafd?p=8866) |\n| 私立小学闯关记 | 槙原久美子 | [下载](https://url89.ctfile.com/f/31084289-1375500793-2c71ca?p=8866) |\n| 夹缝生存：不堪重负的中产家庭 | 阿莉莎・夸特 | [下载](https://url89.ctfile.com/f/31084289-1375501354-ff97b8?p=8866) |\n| 高中生穷忙族 | NHK特别节目录制组 | [下载](https://url89.ctfile.com/f/31084289-1375501642-8081e6?p=8866) |\n| 重走：在公路、河流和驿道上寻找西南联大 | 杨潇 | [下载](https://url89.ctfile.com/f/31084289-1375507096-34bbb4?p=8866) |\n| 东京贫困女子 | 中村淳彦 | [下载](https://url89.ctfile.com/f/31084289-1375507093-5284bf?p=8866) |\n| 殿军：山一证券最后的12人 | 清武英利 | [下载](https://url89.ctfile.com/f/31084289-1375507573-379911?p=8866) |\n| 虚无时代 | 彼得・沃森 | [下载](https://url89.ctfile.com/f/31084289-1375509310-806d15?p=8866) |\n| 桶川跟踪狂杀人事件 | 清水洁 | [下载](https://url89.ctfile.com/f/31084289-1375509955-7d12b3?p=8866) |\n| 云没有回答 | 是枝裕和 | [下载](https://url89.ctfile.com/f/31084289-1375510006-ca0590?p=8866) |\n| 女佣的故事 | 斯蒂芬妮・兰德 | [下载](https://url89.ctfile.com/f/31084289-1375512379-69c390?p=8866) |\n| 护士的故事 | 克里斯蒂・沃森 | [下载](https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866) |\n| 女性贫困 | NHK特别节目录制组 | [下载](https://url89.ctfile.com/f/31084289-1375513486-69ca43?p=8866) |\n| 正午之魔 | 安德鲁・所罗门 | [下载](https://url89.ctfile.com/f/31084289-1375513495-8b06fa?p=8866) |\n| 俺爹俺娘 | 焦波 | [下载](https://url89.ctfile.com/f/31084289-1375513762-f54ff0?p=8866) |\n| 朱鹮的遗言 | 小林照幸 | [下载](https://url89.ctfile.com/f/31084289-1357004575-299851?p=8866) |\n| 这就是茅台 | 张小军/马玥/熊玥伽 | [下载](https://url89.ctfile.com/f/31084289-1357004500-5515a4?p=8866) |\n| 形而上学俱乐部 | 路易斯・梅南 | [下载](https://url89.ctfile.com/f/31084289-1357003579-09071b?p=8866) |\n| 永远的现在时 | 苏珊・科金 | [下载](https://url89.ctfile.com/f/31084289-1357003021-92ad62?p=8866) |\n| 看护杀人 | 每日新闻大阪社会部采访组 | [下载](https://url89.ctfile.com/f/31084289-1357003012-070566?p=8866) |\n| 深暗 | 赫克托・托巴尔 | [下载](https://url89.ctfile.com/f/31084289-1357002850-10fa6c?p=8866) |\n| “排放门”：大众汽车丑闻 | 杰克・尤因 | [下载](https://url89.ctfile.com/f/31084289-1357002769-31400d?p=8866) |\n| 非虚构的艺术 | 特雷西・基德尔/理查德・托德 | [下载](https://url89.ctfile.com/f/31084289-1357002583-d3c7fb?p=8866) |\n| 美国病 | 伊丽莎白・罗森塔尔 | [下载](https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866) |\n| 我的二本学生 | 黄灯 | [下载](https://url89.ctfile.com/f/31084289-1357002256-105f87?p=8866) |\n| 妻子们的思秋期 | 斋藤茂男 | [下载](https://url89.ctfile.com/f/31084289-1357001602-8bf926?p=8866) |\n| 好老师，坏老师 | 达娜・戈德斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866) |\n| 知晓我姓名 | 香奈儿・米勒 | [下载](https://url89.ctfile.com/f/31084289-1356999049-ca4b88?p=8866) |\n| 秋园 | 杨本芬 | [下载](https://url89.ctfile.com/f/31084289-1356998932-5bad21?p=8866) |\n| 肮脏的三十年代 | 蒂莫西・伊根 | [下载](https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866) |\n| 美国监狱 | 肖恩・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866) |\n| 血殇 | 理查德・普雷斯顿 | [下载](https://url89.ctfile.com/f/31084289-1356994792-a7eab9?p=8866) |\n| 不让生育的社会 | 小林美希 | [下载](https://url89.ctfile.com/f/31084289-1356994636-e7916e?p=8866) |\n| 廷巴克图 | 约书亚・哈默 | [下载](https://url89.ctfile.com/f/31084289-1356994543-10662e?p=8866) |\n| 你好，我是接体员 | 大师兄 | [下载](https://url89.ctfile.com/f/31084289-1356991813-e12002?p=8866) |\n| 法医报告 | 苏・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1356990391-0c98e7?p=8866) |\n| 梁漱溟往来书信集 | 梁培宽 | [下载](https://url89.ctfile.com/f/31084289-1356990061-7137cf?p=8866) |\n| 约翰·伯格作品13册套装 | 约翰・伯格 | [下载](https://url89.ctfile.com/f/31084289-1356985822-e14dbb?p=8866) |\n| 生死96小时 | 冯韵娴 | [下载](https://url89.ctfile.com/f/31084289-1356985246-d27bd2?p=8866) |\n| 奥威尔战时文集 | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866) |\n| 主妇、舞者与牧师 | 马蜂窝出品 | [下载](https://url89.ctfile.com/f/31084289-1357053694-6f133f?p=8866) |\n| 亲历滇缅公路（套装共4本） | 内维尔・布拉德利等 | [下载](https://url89.ctfile.com/f/31084289-1357053577-aca361?p=8866) |\n| 正午2：此地不宜久留 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052698-caedb3?p=8866) |\n| 正午3：到海底去 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052620-5a8fe8?p=8866) |\n| 正午4：我的黎明骊歌 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052587-a22353?p=8866) |\n| 正午1：我穿墙过去 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052269-5c5835?p=8866) |\n| 无缘社会 | 日本NHK特别节目录制组 | [下载](https://url89.ctfile.com/f/31084289-1357051867-337e7a?p=8866) |\n| 米格尔在智利的地下行动 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357051711-d0d758?p=8866) |\n| 世纪的哭泣 | 兰迪・希尔茨 | [下载](https://url89.ctfile.com/f/31084289-1357051345-8d25b6?p=8866) |\n| 创水记 | 赛斯・西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357049476-0cc434?p=8866) |\n| 正义的代价 | 劳伦斯・李默尔 | [下载](https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866) |\n| 少林很忙 | 马修・波利 | [下载](https://url89.ctfile.com/f/31084289-1357049068-7ff5e6?p=8866) |\n| 汤姆斯河 | 丹・费金 | [下载](https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866) |\n| 非典十年祭 | 何建明 | [下载](https://url89.ctfile.com/f/31084289-1357048432-7a243d?p=8866) |\n| 醉鲨 | 莫腾・安德雷亚斯・斯特罗克奈斯 | [下载](https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866) |\n| 奥威尔纪实作品全集（套装共3册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866) |\n| 巨浪下的小学 | 理查德・劳埃德・帕里 | [下载](https://url89.ctfile.com/f/31084289-1357046986-bb9508?p=8866) |\n| 我的探险生涯Ⅰ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046557-b8ceea?p=8866) |\n| 我的探险生涯Ⅱ | 斯文・赫定 | [下载](https://url89.ctfile.com/f/31084289-1357046512-d93082?p=8866) |\n| 智慧七柱Ⅰ | T. E.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357046392-642d2d?p=8866) |\n| 最残酷的夏天：美国人眼中的越南战争 | 菲利普・卡普托 | [下载](https://url89.ctfile.com/f/31084289-1357045954-cdb76c?p=8866) |\n| 求医记 | 会飞的王动 | [下载](https://url89.ctfile.com/f/31084289-1357045063-bfae67?p=8866) |\n| 凉灯 | 黄于纲 | [下载](https://url89.ctfile.com/f/31084289-1357044739-fc0da7?p=8866) |\n| 察沃的食人魔 | J.H.帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866) |\n| 产科男医生手记 | 田吉顺 | [下载](https://url89.ctfile.com/f/31084289-1357043962-8697c3?p=8866) |\n| 煤老板自述三十年 | 老五/劲飞 | [下载](https://url89.ctfile.com/f/31084289-1357043788-51d196?p=8866) |\n| 超凡：我们的身心极致及天赋的科学 | 罗恩・胡珀 | [下载](https://url89.ctfile.com/f/31084289-1357043680-eee988?p=8866) |\n| 蝶变：澳门博彩业田野叙事 | 刘昭瑞/霍志钊 | [下载](https://url89.ctfile.com/f/31084289-1357042456-f6803d?p=8866) |\n| 最深的水是泪水 | 鲍尔吉・原野 | [下载](https://url89.ctfile.com/f/31084289-1357040617-eb3c15?p=8866) |\n| 冰雪王国：美国军舰珍妮特号的极地远征 | 汉普顿・塞兹 | [下载](https://url89.ctfile.com/f/31084289-1357040221-ed59c0?p=8866) |\n| 絕望者之歌 | 杰德・凡斯 | [下载](https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866) |\n| 一起连环绑架案的新闻 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357037893-b383ce?p=8866) |\n| 工作漂流 | 稻泉连 | [下载](https://url89.ctfile.com/f/31084289-1357037632-6132e7?p=8866) |\n| 周作人经典作品合集（套装共9册） | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357037461-7d9d06?p=8866) |\n| 西方视野里的中国合集（共10册） | 庄士敦等 | [下载](https://url89.ctfile.com/f/31084289-1357037230-bf5592?p=8866) |\n| 走的人多了，就有了路 | 尼可拉斯・克里斯多夫/雪莉・邓恩 | [下载](https://url89.ctfile.com/f/31084289-1357035403-81964f?p=8866) |\n| 九月的十三天 | 劳伦斯・莱特 | [下载](https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866) |\n| 昨日的世界 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357034998-22a621?p=8866) |\n| 巴黎烧了吗？ | 拉莱・科林斯 | [下载](https://url89.ctfile.com/f/31084289-1357034662-2cf7ae?p=8866) |\n| 好好告别 | 凯特琳・道蒂 | [下载](https://url89.ctfile.com/f/31084289-1357034647-664db9?p=8866) |\n| 周作人自编集 | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357034128-6c7435?p=8866) |\n| 冷血 | 杜鲁门・卡波特 | [下载](https://url89.ctfile.com/f/31084289-1357034077-79c03d?p=8866) |\n| 以色列的诞生（全四册） | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357033909-4bc2b9?p=8866) |\n| 最后的访谈系列（套装共6册） | 欧内斯特・米勒尔・海明威等 | [下载](https://url89.ctfile.com/f/31084289-1357033843-e0eb2e?p=8866) |\n| BBC经典文化纪录片配套著作精选合集 | 迈克尔・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357033249-7df812?p=8866) |\n| 总统班底 | 卡尔・伯恩斯坦/鲍勃・伍德沃德 | [下载](https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866) |\n| 全民蠢萌的美国 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866) |\n| 最后的熊猫 | 乔治・夏勒 | [下载](https://url89.ctfile.com/f/31084289-1357032364-6ae019?p=8866) |\n| 小岗村40年 | 贾鸿彬 | [下载](https://url89.ctfile.com/f/31084289-1357032196-ab6cf7?p=8866) |\n| 绝对笑喷之弃业医生日志 | 亚当・凯 | [下载](https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866) |\n| 三杯茶 | 葛瑞格・摩顿森/大卫・奥利佛・瑞林 | [下载](https://url89.ctfile.com/f/31084289-1357032001-2bc835?p=8866) |\n| 地下：东京地铁沙林毒气事件实录（套装共2册） | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357031869-499ce7?p=8866) |\n| 熬：极地求生700天 | 阿尔弗雷德・兰辛 | [下载](https://url89.ctfile.com/f/31084289-1357031866-6e7d0b?p=8866) |\n| 黑帮·贩毒集团神秘内幕（全五册） | 詹幼鹏等 | [下载](https://url89.ctfile.com/f/31084289-1357031308-31f32e?p=8866) |\n| 房奴 | 戴维・戴恩 | [下载](https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866) |\n| 寻路中国 | 彼得・海斯勒 | [下载](https://url89.ctfile.com/f/31084289-1357030504-ac289d?p=8866) |\n| 深蓝的故事 | 深蓝 | [下载](https://url89.ctfile.com/f/31084289-1357030468-ec4088?p=8866) |\n| 中国与中国人影像（增订版） | 约翰・汤姆逊 | [下载](https://url89.ctfile.com/f/31084289-1357030279-7e35db?p=8866) |\n| 无人岛生存十六人 | 须川邦彦 | [下载](https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866) |\n| 黑箱：日本之耻 | 伊藤诗织 | [下载](https://url89.ctfile.com/f/31084289-1357029460-1e1c60?p=8866) |\n| 坏血：一个硅谷巨头的秘密与谎言 | 约翰・卡雷鲁 | [下载](https://url89.ctfile.com/f/31084289-1357029424-b28a34?p=8866) |\n| 看不见的美国 | 珍妮・拉斯卡斯 | [下载](https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866) |\n| 穷忙 | 戴维・希普勒 | [下载](https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866) |\n| 那时的先生 | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1357028962-13aa23?p=8866) |\n| 甲子1：中国60年民生记录 | 陈晓卿/朱乐贤 | [下载](https://url89.ctfile.com/f/31084289-1357028203-c24763?p=8866) |\n| 甲子2：中国60年民生记录 | 陈晓卿/朱乐贤 | [下载](https://url89.ctfile.com/f/31084289-1357028182-15b27e?p=8866) |\n| 甲子3：中国60年民生记录 | 陈晓卿/朱乐贤 | [下载](https://url89.ctfile.com/f/31084289-1357028176-a2cb1b?p=8866) |\n| 单读16：新北京人 | 吴琦主编 | [下载](https://url89.ctfile.com/f/31084289-1357027591-a94676?p=8866) |\n| 慕尼黑的清真寺 | 伊恩・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357027297-3f70eb?p=8866) |\n| 辛德勒名单（译文经典） | 托马斯・基尼利 | [下载](https://url89.ctfile.com/f/31084289-1357027282-8e342c?p=8866) |\n| 兄弟连（译林纪念版） | 斯蒂芬•E．安布罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357027234-45185d?p=8866) |\n| 寡头 | 戴维・霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357026421-1292b0?p=8866) |\n| 下一个家在何方？ | 馬修・戴斯蒙 | [下载](https://url89.ctfile.com/f/31084289-1357025545-020e6e?p=8866) |\n| 往事与随想（共3册） | 赫尔岑 | [下载](https://url89.ctfile.com/f/31084289-1357024804-92f35d?p=8866) |\n| 永生的海拉 | 丽贝卡・思科鲁特 | [下载](https://url89.ctfile.com/f/31084289-1357024606-a07c14?p=8866) |\n| 全民自黑的英国 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866) |\n| 马航MH370失联十七天 | 陈功 | [下载](https://url89.ctfile.com/f/31084289-1357024450-32c0b3?p=8866) |\n| 木匠手记 | 尼娜・麦克劳林 | [下载](https://url89.ctfile.com/f/31084289-1357024039-212619?p=8866) |\n| 我从战场归来 | 唐师曾 | [下载](https://url89.ctfile.com/f/31084289-1357023892-3faa9a?p=8866) |\n| 我钻进了金字塔 | 唐师曾 | [下载](https://url89.ctfile.com/f/31084289-1357023844-04f9b7?p=8866) |\n| 重返巴格达 | 唐师曾 | [下载](https://url89.ctfile.com/f/31084289-1357023856-5b4c01?p=8866) |\n| 打工女孩 | 张彤禾 | [下载](https://url89.ctfile.com/f/31084289-1357023511-4ea3c0?p=8866) |\n| 美国情报界 | 杰弗瑞・理查尔森 | [下载](https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866) |\n| 我不知道该说什么，关于死亡还是爱情 | S.A.阿列克谢耶维奇  | [下载](https://url89.ctfile.com/f/31084289-1357022905-60dc96?p=8866) |\n| 我的浏阳兄弟 | 索文 | [下载](https://url89.ctfile.com/f/31084289-1357022851-470bc5?p=8866) |\n| 东北游记 | 迈克尔・麦尔 | [下载](https://url89.ctfile.com/f/31084289-1357022509-9d7c84?p=8866) |\n| 再会，老北京 | 迈克尔・麦尔 | [下载](https://url89.ctfile.com/f/31084289-1357022461-d6df24?p=8866) |\n| 唐山大地震（纪念版） | 钱钢 | [下载](https://url89.ctfile.com/f/31084289-1357022425-0c7827?p=8866) |\n| 青苔不会消失 | 袁凌 | [下载](https://url89.ctfile.com/f/31084289-1357021672-421d56?p=8866) |\n| 扫地出门：美国城市的贫穷与暴利 | 马修・德斯蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866) |\n| 鱼翅与花椒 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866) |\n| 邻人之妻 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866) |\n| 暗网 | 杰米・巴特利特 | [下载](https://url89.ctfile.com/f/31084289-1357020808-518d1f?p=8866) |\n| 阿图医生（第二季） | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357020292-b5bcc6?p=8866) |\n| 蕾蒂西娅，或人类的终结 | 伊凡・雅布隆卡 | [下载](https://url89.ctfile.com/f/31084289-1357019854-16f6fc?p=8866) |\n| 汶川地震168小时 | 张良 | [下载](https://url89.ctfile.com/f/31084289-1357019782-2760cf?p=8866) |\n| 故宫物语 | 野岛刚 | [下载](https://url89.ctfile.com/f/31084289-1357019347-0c448f?p=8866) |\n| 刺 | 李尚龙 | [下载](https://url89.ctfile.com/f/31084289-1357019266-96362f?p=8866) |\n| 长乐路 | 史明智 | [下载](https://url89.ctfile.com/f/31084289-1357019137-9de01d?p=8866) |\n| 一只名叫鲍勃的流浪猫 | 詹姆斯・鲍文 | [下载](https://url89.ctfile.com/f/31084289-1357018270-7946fb?p=8866) |\n| 大路：高速中国里的工地纪事 | 张赞波 | [下载](https://url89.ctfile.com/f/31084289-1357017673-ac0306?p=8866) |\n| 大地上的亲人 | 黄灯 | [下载](https://url89.ctfile.com/f/31084289-1357014427-4895bb?p=8866) |\n| 黑旗：ISIS的崛起 | 乔比・沃里克 | [下载](https://url89.ctfile.com/f/31084289-1357014355-a74506?p=8866) |\n| Street of Eternal Happiness | Rob Schmitz | [下载](https://url89.ctfile.com/f/31084289-1357013707-35fbcc?p=8866) |\n| 与火同行：大卫·林奇谈电影 | 大卫・林奇/克里斯・罗德雷 | [下载](https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866) |\n| 都市速写簿 | 阮义忠 | [下载](https://url89.ctfile.com/f/31084289-1357013200-fa5ef3?p=8866) |\n| 中国灯笼 | 格蕾丝・汤普森・西登 | [下载](https://url89.ctfile.com/f/31084289-1357012849-9eb735?p=8866) |\n| 切尔诺贝利的悲鸣 | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1357012672-6ac582?p=8866) |\n| 西部招妻 | 马宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357011436-192a1f?p=8866) |\n| 血战大武汉 | 张军 | [下载](https://url89.ctfile.com/f/31084289-1357010920-a3947f?p=8866) |\n| 我还是想你，妈妈 | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1357010209-11eeec?p=8866) |\n| 1942河南大饥荒 | 宋致新 | [下载](https://url89.ctfile.com/f/31084289-1357009999-ed0873?p=8866) |\n| 时刻关注：二战经典战役纪实（套装共10册） | 二战经典战役编委会 | [下载](https://url89.ctfile.com/f/31084289-1357010356-afab94?p=8866) |\n| 我是女兵，也是女人 | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1357009819-b5ebd7?p=8866) |\n| 江城 | 彼得・海斯勒 | [下载](https://url89.ctfile.com/f/31084289-1357009462-96eec5?p=8866) |\n| 牛棚杂忆（图文版） | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1357008901-663a4d?p=8866) |\n| 寂静的烽塔 | 卡伊斯・阿克巴尔・奥马尔  | [下载](https://url89.ctfile.com/f/31084289-1357008757-f55e62?p=8866) |\n| 与荒原同行 | 约翰・麦克菲 | [下载](https://url89.ctfile.com/f/31084289-1357008589-0d00fe?p=8866) |\n| 出梁庄记 | 梁鸿 | [下载](https://url89.ctfile.com/f/31084289-1357008529-f1d0d4?p=8866) |\n| 追问 | 丁捷 | [下载](https://url89.ctfile.com/f/31084289-1357008373-12289f?p=8866) |\n| 一百个人的十年 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1357008136-f4b38f?p=8866) |\n| 我在底层的生活 | 芭芭拉・艾伦瑞克 | [下载](https://url89.ctfile.com/f/31084289-1357008067-a084a7?p=8866) |\n| 末日巨塔 | 劳伦斯・赖特 | [下载](https://url89.ctfile.com/f/31084289-1357007947-f24581?p=8866) |\n| 进入空气稀薄地带 | 乔恩・克拉考尔 | [下载](https://url89.ctfile.com/f/31084289-1357007905-b6f9f8?p=8866) |\n| 希拉里传（纪念版） | 卡尔・伯恩斯坦  | [下载](https://url89.ctfile.com/f/31084289-1357007839-6bdb2b?p=8866) |\n| 我的抗战Ⅰ | 《我的抗战》节目组 | [下载](https://url89.ctfile.com/f/31084289-1357007719-6554e1?p=8866) |\n| 我的抗战Ⅱ | 《我的抗战》节目组 | [下载](https://url89.ctfile.com/f/31084289-1357007707-d2888d?p=8866) |\n| “四人帮”兴亡（增订版） | 叶永烈 | [下载](https://url89.ctfile.com/f/31084289-1357007659-6ddcb0?p=8866) |\n| 唉，我的沧桑50年（1959至今） | 八爪夜叉 | [下载](https://url89.ctfile.com/f/31084289-1357007584-0f84ec?p=8866) |\n| 艰难一日：海豹六队击毙本・拉登行动亲历 | 马克・欧文/凯文・莫勒 | [下载](https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866) |\n| CIA美国中央情报局全传 | 亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866) |\n| 统一大业（合订本） | 郭晨 | [下载](https://url89.ctfile.com/f/31084289-1357007245-1ee6fe?p=8866) |\n| 幸福了吗？ | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866) |\n| 奇石：来自东西方的报道 | 彼得·海斯勒  | [下载](https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866) |\n| 一个红卫兵的自白 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1357006858-8e4d5d?p=8866) |\n| 看见 | 柴静 | [下载](https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866) |\n| 你是尘埃也是光 | 梁子 | [下载](https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866) |\n| 夹边沟记事 | 杨显惠 | [下载](https://url89.ctfile.com/f/31084289-1357006411-34b535?p=8866) |\n| 甘南纪事 | 杨显惠 | [下载](https://url89.ctfile.com/f/31084289-1357006405-e4b8cb?p=8866) |\n| 墨迹：留在生命和记忆中 | 曾子墨 | [下载](https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866) |\n| 大灭绝时代：一部反常的自然史 | 伊丽莎白·科尔伯特 | [下载](https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866) |\n| 陌生的中国人 | 杨猛 | [下载](https://url89.ctfile.com/f/31084289-1357005721-fc7d62?p=8866) |\n"
  },
  {
    "path": "md/纳粹.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 纳粹\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 德意志公敌 | 杰弗里・赫夫 | [下载](https://url89.ctfile.com/f/31084289-1357050487-a3503a?p=8866) |\n| 来自纳粹地狱的报告 | 米克洛斯・尼斯利 | [下载](https://url89.ctfile.com/f/31084289-1357044349-a57c53?p=8866) |\n| 浪潮 | 托德・斯特拉瑟 | [下载](https://url89.ctfile.com/f/31084289-1357015600-55b4aa?p=8866) |\n| 黑暗时刻：希特勒、大屠杀与纳粹文化（上下册） | 单世联 | [下载](https://url89.ctfile.com/f/31084289-1357012657-8600d5?p=8866) |\n| 强迫症的历史：德国人的犹太恐惧症与大屠杀 | 克劳斯・费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357009105-aafce9?p=8866) |\n| 第三帝国的兴亡（全三册） | 威廉・夏伊勒 | [下载](https://url89.ctfile.com/f/31084289-1357008364-2370dc?p=8866) |\n| 纳粹德国的腐败与反腐 | 弗兰克・巴约尔 | [下载](https://url89.ctfile.com/f/31084289-1357006561-a68ed0?p=8866) |\n"
  },
  {
    "path": "md/组织.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 组织\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 组织革新 | 杨国安/戴维・尤里奇 | [下载](https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866) |\n| 帮你省时间！替你划重点！教你学管理！ | 哈佛商业评论 | [下载](https://url89.ctfile.com/f/31084289-1357010434-b69920?p=8866) |\n"
  },
  {
    "path": "md/经典.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 经典\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 磨坊信札（作家榜经典文库） | 阿尔封斯・都德 | [下载](https://url89.ctfile.com/f/31084289-1375491025-903fa5?p=8866) |\n| 百年百部红色经典系列：第一辑（套装共20册） | 周梅森等 | [下载](https://url89.ctfile.com/f/31084289-1375491169-00db51?p=8866) |\n| 经史百家杂钞套装共8册（全本全注全译） | 余兴安 | [下载](https://url89.ctfile.com/f/31084289-1375491943-3f0e5a?p=8866) |\n| 太多值得思考的事物 | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1375493218-ba0ce5?p=8866) |\n| 里程碑文库（第三辑） | 唐克扬等 | [下载](https://url89.ctfile.com/f/31084289-1375496881-d79a75?p=8866) |\n| 译文经典·第一辑（套装共20册） | 福楼拜等 | [下载](https://url89.ctfile.com/f/31084289-1375497409-47086f?p=8866) |\n| 人生必读之书：文景古典·名译插图本 | 埃斯库罗斯等 | [下载](https://url89.ctfile.com/f/31084289-1375497523-e093d0?p=8866) |\n| 西方心理学大师经典译丛（套装共11册） | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1375497529-0e8c3b?p=8866) |\n| 三联苏俄文学经典译著（套装15册） | 高尔基等 | [下载](https://url89.ctfile.com/f/31084289-1375497571-7a9471?p=8866) |\n| 世界名著名家经典译本·译文40（套装共40册） | 奥威尔等 | [下载](https://url89.ctfile.com/f/31084289-1375497904-e167f7?p=8866) |\n| 世界经典名著超值套装（80册）（经典译林） | 詹姆斯・乔伊斯等 | [下载](https://url89.ctfile.com/f/31084289-1375498210-cccd8e?p=8866) |\n| 中译经典文库•世界文学名著精选50册 | 中国对外翻译出版公司 | [下载](https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866) |\n| 译文心理分析作品集（套装共12册） | 西格蒙德・弗洛伊德等 | [下载](https://url89.ctfile.com/f/31084289-1375498315-9e8afd?p=8866) |\n| 欧·亨利小说全集（全6册） | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1375498882-338365?p=8866) |\n| 莫罗博士岛（作家榜经典文库） | 赫伯特・乔治・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375498885-f259b0?p=8866) |\n| 长眠不醒（作家榜经典文库） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1375498939-95f078?p=8866) |\n| 钢铁是怎样炼成的（作家榜经典文库） | 尼古拉・奥斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375498993-19158e?p=8866) |\n| 金银岛（作家榜经典文库） | 罗伯特・路易斯・史蒂文森 | [下载](https://url89.ctfile.com/f/31084289-1375498984-f45284?p=8866) |\n| 俄罗斯套娃（短经典精选） | 阿道夫・比奥伊・卡萨雷斯 | [下载](https://url89.ctfile.com/f/31084289-1375499080-07b8b6?p=8866) |\n| 陀思妥耶夫斯基文集套装（全八册） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375499341-f43d73?p=8866) |\n| 拳头（短经典精选） | 彼得罗・格罗西 | [下载](https://url89.ctfile.com/f/31084289-1375499359-0762d3?p=8866) |\n| 陀思妥耶夫斯基中篇心理小说经典（全4册） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375499635-ae8716?p=8866) |\n| 陈鼓应著作精选合集（套装共6册） | 陈鼓应 | [下载](https://url89.ctfile.com/f/31084289-1375499644-a23b2a?p=8866) |\n| 避暑（短经典精选） | 何塞・多诺索 | [下载](https://url89.ctfile.com/f/31084289-1375499668-bf196c?p=8866) |\n| 变色龙（作家榜经典文库） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1375499692-2e4742?p=8866) |\n| 星际战争（作家榜经典文库） | 赫伯特・乔治・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375499734-b85d92?p=8866) |\n| 套中人（作家榜经典文库） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1375500169-080c3a?p=8866) |\n| 美丽的约定（作家榜经典文库） | 阿兰・傅尼埃 | [下载](https://url89.ctfile.com/f/31084289-1375500358-f4641f?p=8866) |\n| 汪曾祺纪念文集水墨珍藏版套装全六册 | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1375500346-c90acd?p=8866) |\n| 吹牛大王历险记（作家榜经典文库） | 埃・拉斯伯 | [下载](https://url89.ctfile.com/f/31084289-1375500382-8e5f6b?p=8866) |\n| 影响力：全新升级版 | 罗伯特・西奥迪尼 | [下载](https://url89.ctfile.com/f/31084289-1375500478-9f34c6?p=8866) |\n| 海蒂（果麦经典） | 约翰娜・斯比丽 | [下载](https://url89.ctfile.com/f/31084289-1375500616-d44508?p=8866) |\n| 名人传（作家榜经典文库） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1375500694-85d5d9?p=8866) |\n| 一代大师林语堂作品全新修订版（全25册） | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1375500832-ce5662?p=8866) |\n| 余秋雨学术四卷（套装共4册） | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1375500850-128583?p=8866) |\n| 道林格雷的画像（作家榜经典文库） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1375500937-3c3b07?p=8866) |\n| 楚辞选（古典文学大字本） | 陆侃如/龚克昌 | [下载](https://url89.ctfile.com/f/31084289-1375501081-311ef3?p=8866) |\n| S.A.阿列克谢耶维奇作品集（套装共五册） | S.A.阿列克谢耶维奇 | [下载](https://url89.ctfile.com/f/31084289-1375501123-bc5f17?p=8866) |\n| 傲慢与偏见（读客经典文库） | 简・奥斯汀 | [下载](https://url89.ctfile.com/f/31084289-1375501381-675b76?p=8866) |\n| 诗经选（古典文学大字本） | 褚斌杰 | [下载](https://url89.ctfile.com/f/31084289-1375501477-e31d54?p=8866) |\n| 苏轼词选（古典文学大字本） | 刘石 | [下载](https://url89.ctfile.com/f/31084289-1375501546-485495?p=8866) |\n| 辛弃疾词选（古典文学大字本） | 刘扬忠 | [下载](https://url89.ctfile.com/f/31084289-1375501651-12c86d?p=8866) |\n| 朱光潜全集 | 朱光潜 | [下载](https://url89.ctfile.com/f/31084289-1375501777-4c22d0?p=8866) |\n| 鄙视 | 阿尔贝托・莫拉维亚 | [下载](https://url89.ctfile.com/f/31084289-1375501930-0b2e66?p=8866) |\n| 唐诗三百首（古典文学大字本） | 孙洙 | [下载](https://url89.ctfile.com/f/31084289-1375501939-d54a1c?p=8866) |\n| 历代名家词集精华录（全22册） | 温庭筠 | [下载](https://url89.ctfile.com/f/31084289-1375502101-12a823?p=8866) |\n| 樊登讲论语：学而 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1375502065-aaa0f3?p=8866) |\n| 毛姆短篇小说全集（读客经典文库） | 毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375502116-5455c0?p=8866) |\n| 元曲三百首（古典文学大字本） | 张燕瑾 | [下载](https://url89.ctfile.com/f/31084289-1375502113-fcbdaa?p=8866) |\n| 聚斯金德文集（套装共5册） | 帕特里克・聚斯金德 | [下载](https://url89.ctfile.com/f/31084289-1375502188-2f2edc?p=8866) |\n| 古文观止（古典文学大字本） | 吴楚材/吴调侯 | [下载](https://url89.ctfile.com/f/31084289-1375502311-70f080?p=8866) |\n| 柳永词选（古典文学大字本） | 柳永 | [下载](https://url89.ctfile.com/f/31084289-1375502314-b5e7e4?p=8866) |\n| 宋词三百首（古典文学大字本） | 武玉成/顾丛龙 | [下载](https://url89.ctfile.com/f/31084289-1375503301-c03e33?p=8866) |\n| 李清照词选（古典文学大字本） | 陈祖美 | [下载](https://url89.ctfile.com/f/31084289-1375503934-42bda0?p=8866) |\n| 白居易诗选（古典文学大字本） | 孙明君 | [下载](https://url89.ctfile.com/f/31084289-1375504276-543fa0?p=8866) |\n| 恩古吉·瓦·提安哥文集（全7册） | 恩古吉・瓦・提安哥 | [下载](https://url89.ctfile.com/f/31084289-1375504327-8ea788?p=8866) |\n| 世界名著大师课合集（套装全7册） | 柳鸣九等 | [下载](https://url89.ctfile.com/f/31084289-1375504636-6a6fc4?p=8866) |\n| 姜夔词选（古典文学大字本） | 韩经太/王维若 | [下载](https://url89.ctfile.com/f/31084289-1375504993-b34598?p=8866) |\n| 中国文学鉴赏辞典大系（套装共17部22册） | 上海辞书出版社文学鉴赏辞典编纂中心 | [下载](https://url89.ctfile.com/f/31084289-1375506529-6d5879?p=8866) |\n| 银河铁道之夜（作家榜经典文库） | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1375506277-c17653?p=8866) |\n| 金瓶梅的艺术 | 孙述宇 | [下载](https://url89.ctfile.com/f/31084289-1375506652-ddc7ba?p=8866) |\n| 坏蛋与大象（作家榜经典文库） | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1375506616-7f1f34?p=8866) |\n| 李商隐诗选（古典文学大字本） | 董乃斌 | [下载](https://url89.ctfile.com/f/31084289-1375506757-ccee5d?p=8866) |\n| 契诃夫中短篇小说全集（全8册） | 安东・契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1375507030-e46ffb?p=8866) |\n| 李煜诗词全集（作家榜经典文库） | 李煜 | [下载](https://url89.ctfile.com/f/31084289-1375507048-37f6d0?p=8866) |\n| 青梅竹马·樋口一叶选集（作家榜经典文库） | 樋口一叶 | [下载](https://url89.ctfile.com/f/31084289-1375507315-77109b?p=8866) |\n| 猫咪事务所（作家榜经典文库） | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1375507474-204cb6?p=8866) |\n| 卡尔维诺的经典世界（共26册） | 伊塔洛・卡尔维诺 | [下载](https://url89.ctfile.com/f/31084289-1375507552-e56fe9?p=8866) |\n| 勒卡雷谍影经典系列重磅套装15册 | 约翰・勒卡雷 | [下载](https://url89.ctfile.com/f/31084289-1375507804-ad5466?p=8866) |\n| 民国诗人徐志摩作品典藏全集 | 徐志摩 | [下载](https://url89.ctfile.com/f/31084289-1375507867-390f01?p=8866) |\n| 英诗经典名家名译全集（套装共21本） | 莎士比亚等 | [下载](https://url89.ctfile.com/f/31084289-1375508305-0fc203?p=8866) |\n| 约翰·克利斯朵夫（全四册） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1375508653-1087bf?p=8866) |\n| 三岛由纪夫大合集（全10册） | 三岛由纪夫 | [下载](https://url89.ctfile.com/f/31084289-1375508854-9a7e1f?p=8866) |\n| 语文阅读推荐丛书·初中部分·全49种 | 儒勒・凡尔纳等 | [下载](https://url89.ctfile.com/f/31084289-1375508971-dab70d?p=8866) |\n| 语文阅读推荐丛书·高中部分·全56种 | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1375509052-6ba338?p=8866) |\n| 狄更斯原版作品大合集（套装共70册） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1375508989-b952cf?p=8866) |\n| 文白对照四书五经全本（精注全译） | 李伯钦 | [下载](https://url89.ctfile.com/f/31084289-1375509031-2a7754?p=8866) |\n| 随园食单（全本全注全译） | 陈伟明 | [下载](https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866) |\n| 三岛由纪夫禁色作品集（套装共15册） | 三岛由纪夫 | [下载](https://url89.ctfile.com/f/31084289-1375509106-9bcd46?p=8866) |\n| 茨威格中短篇小说选（外国文学名著丛书） | 斯・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1375509109-d38600?p=8866) |\n| 说文解字套装全五册（全本全注全译） | 许慎 | [下载](https://url89.ctfile.com/f/31084289-1375509451-f7225a?p=8866) |\n| 草婴译列夫·托尔斯泰·全3种6册 | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1375509229-b42707?p=8866) |\n| 布宁美文精选（全3册） | 伊凡・阿列克谢耶维奇・布宁 | [下载](https://url89.ctfile.com/f/31084289-1375509214-c671f0?p=8866) |\n| 冯至译文全集（共四册） | 歌德等 | [下载](https://url89.ctfile.com/f/31084289-1375509274-6808a3?p=8866) |\n| 去年的树（果麦经典） | 新美南吉 | [下载](https://url89.ctfile.com/f/31084289-1375509280-4384dd?p=8866) |\n| 建党百年百篇文学短经典（全5册） | 贺绍俊等 | [下载](https://url89.ctfile.com/f/31084289-1375509304-7fb398?p=8866) |\n| 柏拉图哲学作品集（套装6册） | 柏拉图 | [下载](https://url89.ctfile.com/f/31084289-1375509394-d47210?p=8866) |\n| 外研社博雅文库大全集（套装共24本） | 费孝通等 | [下载](https://url89.ctfile.com/f/31084289-1375509547-14b151?p=8866) |\n| 茅奖作家短经典（全14册） | 陈忠实等 | [下载](https://url89.ctfile.com/f/31084289-1375509631-093196?p=8866) |\n| 狄更斯文集·逝世150周年纪念版 | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1375509703-27e896?p=8866) |\n| 论自由（果麦经典） | 约翰・穆勒 | [下载](https://url89.ctfile.com/f/31084289-1375509712-d3abc7?p=8866) |\n| 人文与社会译丛·精选集（套装20册） | 汉娜・阿伦特等 | [下载](https://url89.ctfile.com/f/31084289-1375509832-1b9259?p=8866) |\n| 传习录（全本全注全译） | 王阳明 | [下载](https://url89.ctfile.com/f/31084289-1375509775-46c4c9?p=8866) |\n| 白夜（果麦经典） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375510144-7fa451?p=8866) |\n| 莫言经典作品（套装7册） | 莫言 | [下载](https://url89.ctfile.com/f/31084289-1375510243-1f1cbf?p=8866) |\n| 华章同人重现经典（套装24册） | 安・兰德等 | [下载](https://url89.ctfile.com/f/31084289-1375510513-78819a?p=8866) |\n| 陀思妥耶夫斯基作品集（套装共9册） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375510720-d03973?p=8866) |\n| 围炉夜话（作家榜经典文库） | 王永彬 | [下载](https://url89.ctfile.com/f/31084289-1375510696-9e23ec?p=8866) |\n| 清文选 | 刘世南/刘松来 | [下载](https://url89.ctfile.com/f/31084289-1375510765-68d5d1?p=8866) |\n| 四世同堂（读客经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1375510825-94b6a4?p=8866) |\n| 小窗幽记（作家榜经典文库） | 陈继儒 | [下载](https://url89.ctfile.com/f/31084289-1375510867-7b596f?p=8866) |\n| 中国古典文学读本丛书典藏全集（共23册） | 薛天纬等 | [下载](https://url89.ctfile.com/f/31084289-1375510990-2cbfc9?p=8866) |\n| 处世三大奇书（套装共3册） | 洪应明等 | [下载](https://url89.ctfile.com/f/31084289-1375510918-b3a5ca?p=8866) |\n| 四世同堂：足本（全三册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1375510981-38511d?p=8866) |\n| 灯塔船 | 西格弗里德・伦茨 | [下载](https://url89.ctfile.com/f/31084289-1375510969-3e51f2?p=8866) |\n| 溪山琴况 琴声十六法（全本全注全译） | 陈忱译注 | [下载](https://url89.ctfile.com/f/31084289-1375511044-5300d3?p=8866) |\n| 风俗通义（全本全注全译） | 应劭 | [下载](https://url89.ctfile.com/f/31084289-1375511053-cc854f?p=8866) |\n| 企鹅经典小白书（全14册） | 戴维・布朗等 | [下载](https://url89.ctfile.com/f/31084289-1375511128-49e429?p=8866) |\n| 帝范 臣轨 庭训格言（全本全注全译） | 王双怀等 | [下载](https://url89.ctfile.com/f/31084289-1375511086-2c38d2?p=8866) |\n| 杀死一只知更鸟（图像小说） | 哈珀・李/弗雷德哈珀・李福德姆 | [下载](https://url89.ctfile.com/f/31084289-1375511326-6ffb36?p=8866) |\n| 变形记（作家榜经典文库） | 弗兰茨・卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1375511323-ecb5b9?p=8866) |\n| 西西弗神话（读客经典文库） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1375511362-ce4957?p=8866) |\n| 猎人笔记（作家榜经典文库） | 伊万・谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1375511440-340449?p=8866) |\n| 山海经（果麦经典） | 刘向/刘歆 | [下载](https://url89.ctfile.com/f/31084289-1375511605-ee4d4c?p=8866) |\n| 漫长的告别（作家榜经典文库） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1375511782-eaea45?p=8866) |\n| 浮生六记（2020全新编校精美插图典藏本） | 沈复 | [下载](https://url89.ctfile.com/f/31084289-1375511932-7b6bb3?p=8866) |\n| 季羡林全集（套装全套三十卷） | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1375511971-8fd3a8?p=8866) |\n| 外国文学名著丛书（第二辑） | 托尔斯泰等 | [下载](https://url89.ctfile.com/f/31084289-1375512160-ee215b?p=8866) |\n| 荒原（果麦经典） | 托・斯・艾略特 | [下载](https://url89.ctfile.com/f/31084289-1375512013-24591d?p=8866) |\n| 一个青年艺术家的画像（果麦经典） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1375512145-efc308?p=8866) |\n| 外国文学名著丛书（第一辑） | 斯威夫特等 | [下载](https://url89.ctfile.com/f/31084289-1375512493-553b6b?p=8866) |\n| 红与黑（作家榜经典文库） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1375512541-3dc7db?p=8866) |\n| 孤独小说家（作家榜经典文库） | 郁达夫 | [下载](https://url89.ctfile.com/f/31084289-1375512583-7a6408?p=8866) |\n| 远大前程（作家榜经典文库） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1375512628-994571?p=8866) |\n| 毛姆短篇小说全集（套装共7册） | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375512712-1e94ab?p=8866) |\n| 菜根谭（作家榜经典文库） | 洪应明 | [下载](https://url89.ctfile.com/f/31084289-1375512730-2183ca?p=8866) |\n| 翁贝托·埃科重要代表作品集（套装共12册） | 翁贝托・埃科 | [下载](https://url89.ctfile.com/f/31084289-1375513030-dd182d?p=8866) |\n| 王蒙写给年轻人的中国智慧（全四册） | 王蒙 | [下载](https://url89.ctfile.com/f/31084289-1375513588-2fdf16?p=8866) |\n| 牛虻（果麦经典） | 埃塞尔・丽莲・伏尼契 | [下载](https://url89.ctfile.com/f/31084289-1375513789-ea804a?p=8866) |\n| 牛天赐传（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357004530-ae8ca6?p=8866) |\n| 本雅明作品集（套装共六册） | 瓦尔特・本雅明 | [下载](https://url89.ctfile.com/f/31084289-1357004428-bf2da4?p=8866) |\n| 人性的枷锁（作家榜经典） | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357004386-bd9f54?p=8866) |\n| 先知：纪伯伦散文诗选（果麦经典） | 纪伯伦 | [下载](https://url89.ctfile.com/f/31084289-1357004314-4501b1?p=8866) |\n| 文明及其不满（果麦经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357004269-ea87b0?p=8866) |\n| 里程碑文库（第二辑） | 詹姆斯・汉密尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357004257-24dc6d?p=8866) |\n| 沈从文精选散文系列（全6册） | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1357004128-d3b59e?p=8866) |\n| 少年维特之烦恼（果麦经典） | 歌德 | [下载](https://url89.ctfile.com/f/31084289-1357004071-6309ee?p=8866) |\n| 双城记（果麦经典） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357003906-785783?p=8866) |\n| 心灵的焦灼（读客经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357003828-b5debe?p=8866) |\n| 汪曾祺散文全编（全6卷） | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1357003693-d74b7a?p=8866) |\n| 人鼠之间（果麦经典） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357003681-64a126?p=8866) |\n| 日之东·月之西：北欧故事集 | 彼得・克利斯登・亚柏容森等 | [下载](https://url89.ctfile.com/f/31084289-1357003552-8f56f9?p=8866) |\n| 项塔兰（套装全三册） | 格里高利・大卫・罗伯兹 | [下载](https://url89.ctfile.com/f/31084289-1357003516-7758a1?p=8866) |\n| 时间机器（作家榜经典文库） | 赫伯特・乔治・威尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357003399-288485?p=8866) |\n| 舍勒作品集（套装共七册） | 马克思・舍勒 | [下载](https://url89.ctfile.com/f/31084289-1357003123-717cf7?p=8866) |\n| 纳尼亚传奇全集（套装共7册） | C.S.路易斯 | [下载](https://url89.ctfile.com/f/31084289-1357002988-6b8b50?p=8866) |\n| 唐诗三百首（作家榜经典文库） | 蘅塘退士 | [下载](https://url89.ctfile.com/f/31084289-1357002970-071756?p=8866) |\n| 人类群星闪耀时（果麦经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357002574-f02fe9?p=8866) |\n| 玛尔戈王后 | 亚历山大・仲马 | [下载](https://url89.ctfile.com/f/31084289-1357002424-836ef4?p=8866) |\n| 鲁滨逊漂流记（果麦经典） | 丹尼尔・笛福 | [下载](https://url89.ctfile.com/f/31084289-1357002208-7fa331?p=8866) |\n| 南怀瑾经典合集（共24册） | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357002232-b29b6a?p=8866) |\n| 梦的解析（果麦经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357002187-512d6c?p=8866) |\n| 脚客 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357002142-08a9b3?p=8866) |\n| 猎人笔记（果麦经典） | 伊凡・谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1357001815-50efa3?p=8866) |\n| 茨威格作品集（套装共9册） | 斯特凡・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357001710-78d962?p=8866) |\n| 君主论（果麦经典） | 尼科洛・马基雅维利 | [下载](https://url89.ctfile.com/f/31084289-1357001653-dc6406?p=8866) |\n| 外研社双语读库·情感故事书系（套装共66本） | 歌德等 | [下载](https://url89.ctfile.com/f/31084289-1357001674-8956de?p=8866) |\n| 神曲（作家榜经典文库） | 但丁・阿利吉耶里 | [下载](https://url89.ctfile.com/f/31084289-1357001539-6e9215?p=8866) |\n| 梁实秋经典作品雅致生活系列（套装共5册） | 梁实秋 | [下载](https://url89.ctfile.com/f/31084289-1357001419-010171?p=8866) |\n| 李健吾译文集（套装共14册） | 福楼拜等 | [下载](https://url89.ctfile.com/f/31084289-1357001437-81e8a8?p=8866) |\n| 吉檀迦利（果麦经典） | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357001179-3f0045?p=8866) |\n| 封神演义（作家榜经典文库） | 许仲琳 | [下载](https://url89.ctfile.com/f/31084289-1357001044-27b101?p=8866) |\n| 战争与和平（读客经典） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357000699-3c0b68?p=8866) |\n| 金色俄罗斯系列（第二辑） | 普希金等 | [下载](https://url89.ctfile.com/f/31084289-1357000600-533ea6?p=8866) |\n| 春潮（作家榜经典文库） | 屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1357000564-12b502?p=8866) |\n| 群雄逐鹿：彩绘三国演义 | 金协中绘/成长著 | [下载](https://url89.ctfile.com/f/31084289-1357000246-278283?p=8866) |\n| 罪与罚（作家榜经典文库） | 费奥多尔・米哈伊洛维奇・陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1356999847-be2ddd?p=8866) |\n| 降魔修心：彩绘西游记 | 林遥 | [下载](https://url89.ctfile.com/f/31084289-1357000642-780a39?p=8866) |\n| 培根随笔全集（作家榜经典文库） | 弗朗西斯・培根 | [下载](https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866) |\n| 都柏林人（作家榜经典文库） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1356999451-b07ef2?p=8866) |\n| 初恋（作家榜经典文库） | 伊凡・谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1356999073-2cb9f3?p=8866) |\n| 荒凉山庄（插图珍藏版） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1356999151-c700d1?p=8866) |\n| 读书杂志 | 王念孙 | [下载](https://url89.ctfile.com/f/31084289-1356998794-90304c?p=8866) |\n| 草枕（果麦经典） | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1356998569-850adf?p=8866) |\n| 白鲸（作家榜经典文库）2020版 | 赫尔曼・麦尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1356997672-b67be3?p=8866) |\n| 沙乡年鉴（经典译林） | 奥尔多・利奥波德 | [下载](https://url89.ctfile.com/f/31084289-1356997633-c1cc0f?p=8866) |\n| 浮生六记丛书 | 沈复/陈裴之 | [下载](https://url89.ctfile.com/f/31084289-1356997495-33676e?p=8866) |\n| 弗吉尼亚·伍尔夫作品集（套装共6册） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356996826-c6f60d?p=8866) |\n| 酉阳杂俎注评 | 段成式 | [下载](https://url89.ctfile.com/f/31084289-1356996406-51b018?p=8866) |\n| 梁启超修身三书 | 梁启超 | [下载](https://url89.ctfile.com/f/31084289-1356996163-d09e12?p=8866) |\n| 诺贝尔经济学奖经典文库系列（套装共11册） | 保罗・克鲁格曼等 | [下载](https://url89.ctfile.com/f/31084289-1356995938-fd0511?p=8866) |\n| 纪伯伦大全集名家译著经典套装（全七册） | 纪伯伦 | [下载](https://url89.ctfile.com/f/31084289-1356995524-a19e30?p=8866) |\n| 列那狐的故事（作家榜经典文库） | 威廉・卡克斯顿 | [下载](https://url89.ctfile.com/f/31084289-1356995368-9b04db?p=8866) |\n| 苏珊·桑塔格文集套装（套装共16册） | 苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1356995377-7fe3c3?p=8866) |\n| 堂吉诃德（作家榜经典文库） | 塞万提斯 | [下载](https://url89.ctfile.com/f/31084289-1356995341-51019b?p=8866) |\n| 安徒生童话（果麦经典） | 汉斯・克里斯汀・安徒生 | [下载](https://url89.ctfile.com/f/31084289-1356995311-bfdc72?p=8866) |\n| 巴尔扎克小说集（傅雷译文经典） | 巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1356995194-58db5d?p=8866) |\n| 雪夜来客 | 冯骥才 | [下载](https://url89.ctfile.com/f/31084289-1356995071-9ecd56?p=8866) |\n| 哲学与人：20世纪西方哲学精选（套装共5本） | 卡尔・雅斯贝斯等 | [下载](https://url89.ctfile.com/f/31084289-1356994810-b418bf?p=8866) |\n| 保罗·奥斯特作品集（套装共8册） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1356994537-3a23e1?p=8866) |\n| 在路上（博集天卷） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866) |\n| 四大名著（彩皮版） | 曹雪芹等 | [下载](https://url89.ctfile.com/f/31084289-1356991642-a692e7?p=8866) |\n| 短经典系列（套装共15册） | 路易吉・马莱巴等 | [下载](https://url89.ctfile.com/f/31084289-1356991078-23a4a7?p=8866) |\n| 失踪者（读客经典） | 卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1356990928-0ab20b?p=8866) |\n| 局外人（作家榜经典文库） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1356990895-2603f9?p=8866) |\n| 七个来自远方的故事（短经典） | 让-克利斯托夫・吕芬 | [下载](https://url89.ctfile.com/f/31084289-1356990028-c5cf11?p=8866) |\n| 魔山（读客经典） | 托马斯・曼 | [下载](https://url89.ctfile.com/f/31084289-1356989524-5ccc77?p=8866) |\n| 屠格涅夫文集（全7册） | 伊万谢尔盖耶维奇・屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1356988888-d70246?p=8866) |\n| 企鹅经典：小黑书（第五辑） | 蒲松龄等 | [下载](https://url89.ctfile.com/f/31084289-1356985930-aed100?p=8866) |\n| 西方百年学术经典著作（套装共30品38册） | 西格蒙德・弗洛伊德等 | [下载](https://url89.ctfile.com/f/31084289-1356985768-ab1baa?p=8866) |\n| 企鹅经典：小黑书（第四辑） | 弗吉尼亚・伍尔夫等 | [下载](https://url89.ctfile.com/f/31084289-1356985612-a20007?p=8866) |\n| 怦然心动（中英双语典藏版） | 文德琳・范・德拉安南 | [下载](https://url89.ctfile.com/f/31084289-1356985600-4bbce3?p=8866) |\n| 唐德刚经典作品集 | 唐德刚 | [下载](https://url89.ctfile.com/f/31084289-1356985357-e6f046?p=8866) |\n| 名侦探柯南（第13部：卷96~卷98） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1356985435-f1700a?p=8866) |\n| 朱元璋全传（作家榜经典文库） | 吴晗 | [下载](https://url89.ctfile.com/f/31084289-1356983887-bd4457?p=8866) |\n| 圣斗士星矢（第4部22-28卷） | 车田正美 | [下载](https://url89.ctfile.com/f/31084289-1356984898-007385?p=8866) |\n| 乱马（第5部：卷33-卷38） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1356983725-235f1a?p=8866) |\n| 圣斗士星矢（第1部1-7卷） | 车田正美 | [下载](https://url89.ctfile.com/f/31084289-1356983902-35ebe0?p=8866) |\n| 圣斗士星矢（第2部8-14卷） | 车田正美 | [下载](https://url89.ctfile.com/f/31084289-1356983941-1ab596?p=8866) |\n| 圣斗士星矢（第3部15-21卷） | 车田正美 | [下载](https://url89.ctfile.com/f/31084289-1356983569-96e619?p=8866) |\n| 乱马（第2部：卷9-卷16） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1356983290-57f378?p=8866) |\n| 乱马（第3部：卷17-卷24） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1356983281-556f8a?p=8866) |\n| 乱马（第4部：卷25-卷32） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1356983263-15b46b?p=8866) |\n| 老子（全本全注全译） | 老子 | [下载](https://url89.ctfile.com/f/31084289-1356982426-bd6f89?p=8866) |\n| 乱马（第1部：卷1-卷8） | 高桥留美子 | [下载](https://url89.ctfile.com/f/31084289-1357054669-60e509?p=8866) |\n| 那时上帝是只兔子 | 莎拉・韦曼 | [下载](https://url89.ctfile.com/f/31084289-1357051723-905b0e?p=8866) |\n| 企鹅经典：小黑书（第三辑） | 简・奥斯汀等 | [下载](https://url89.ctfile.com/f/31084289-1357051342-44a7e5?p=8866) |\n| 第二十二条军规 | 约瑟夫・海勒 | [下载](https://url89.ctfile.com/f/31084289-1357051087-ca589a?p=8866) |\n| 红字（果麦经典） | 纳撒尼尔・霍桑 | [下载](https://url89.ctfile.com/f/31084289-1357050886-37cf4c?p=8866) |\n| 鼠疫（影子经典） | 加缪 | [下载](https://url89.ctfile.com/f/31084289-1357050511-978701?p=8866) |\n| 论语别裁 | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866) |\n| 公孙龙子（全本全注全译） | 黄克剑译注 | [下载](https://url89.ctfile.com/f/31084289-1357048060-56db9f?p=8866) |\n| 卡门（果麦经典） | 普罗斯珀・梅里美 | [下载](https://url89.ctfile.com/f/31084289-1357048051-61e8c8?p=8866) |\n| 企鹅经典：小彩虹（第一辑） | 尤瓦尔・赫拉利等 | [下载](https://url89.ctfile.com/f/31084289-1357047589-826fe8?p=8866) |\n| 呼啸山庄（果麦经典） | 爱米丽・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357047481-49fc2b?p=8866) |\n| 春秋穀梁传（全本全注全译） | 徐正英/邹皓 | [下载](https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866) |\n| 钢铁是怎样炼成的（果麦经典） | 尼古拉・奥斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357047319-612f67?p=8866) |\n| 尔雅（全本全注全译） | 管锡华译注 | [下载](https://url89.ctfile.com/f/31084289-1357047091-9fe5b2?p=8866) |\n| 纯真年代（果麦经典） | 伊迪丝・华顿 | [下载](https://url89.ctfile.com/f/31084289-1357046398-388e26?p=8866) |\n| 简·爱（果麦经典） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357045654-27e62a?p=8866) |\n| 大卫·科波菲尔（果麦经典） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357045576-7c5279?p=8866) |\n| 世界文学名著名译典藏（套装共50册） | 亚历山大・仲马 | [下载](https://url89.ctfile.com/f/31084289-1357045579-8eb63c?p=8866) |\n| 大师和玛格丽特（果麦经典） | 米・阿・布尔加科夫 | [下载](https://url89.ctfile.com/f/31084289-1357045261-32db15?p=8866) |\n| 诗经点醒 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866) |\n| 陶渊明集（作家榜经典文库） | 陶渊明 | [下载](https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866) |\n| 从一到无穷大（果麦版） | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357044649-c5c098?p=8866) |\n| 上海译文TOP30名家名作大套装（套装共30本·2019年版） | 贾雷德・戴蒙德等 | [下载](https://url89.ctfile.com/f/31084289-1357045210-c6ded3?p=8866) |\n| 海明威诞辰120周年图文珍藏版文集（全18卷） | 海明威 | [下载](https://url89.ctfile.com/f/31084289-1357044511-3d087b?p=8866) |\n| 国学治要（套装共三册） | 张文治 | [下载](https://url89.ctfile.com/f/31084289-1357043014-44e1aa?p=8866) |\n| 画梁春尽落香尘 | 刘心武 | [下载](https://url89.ctfile.com/f/31084289-1357042753-f657fc?p=8866) |\n| 苏格拉底之死（译文经典） | 柏拉图 | [下载](https://url89.ctfile.com/f/31084289-1357041274-f496c2?p=8866) |\n| 心灵、自我与社会（译文经典） | 米德 | [下载](https://url89.ctfile.com/f/31084289-1357040941-3c60e8?p=8866) |\n| 北大名家名著文丛（套装共六册） | 许渊冲等 | [下载](https://url89.ctfile.com/f/31084289-1357040761-0f0cc1?p=8866) |\n| 世界少年文学经典文库·中国经典篇（全套30册） | 吴承恩等 | [下载](https://url89.ctfile.com/f/31084289-1357040800-945097?p=8866) |\n| 自我与本我（译文经典） | 西格蒙德・弗洛伊德 | [下载](https://url89.ctfile.com/f/31084289-1357040101-c44a78?p=8866) |\n| 熊逸说经典作品集（套装共4册） | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866) |\n| 企鹅经典：小黑书（第二辑） | 奥斯卡・王尔德等 | [下载](https://url89.ctfile.com/f/31084289-1357039732-4d4163?p=8866) |\n| 爱欲与文明（译文经典） | 赫伯特・马尔库塞 | [下载](https://url89.ctfile.com/f/31084289-1357039576-5787a8?p=8866) |\n| 企鹅经典：小黑书（第一辑） | 薄伽丘等 | [下载](https://url89.ctfile.com/f/31084289-1357039321-31ad7e?p=8866) |\n| 海浪（译文经典） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357039228-13707b?p=8866) |\n| 第四只手 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357038940-7b7b24?p=8866) |\n| 田园交响曲（译文经典） | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357038904-bcb0b1?p=8866) |\n| 香水（译文经典） | 帕特里克・聚斯金德 | [下载](https://url89.ctfile.com/f/31084289-1357038457-f07ef8?p=8866) |\n| 中华经典藏书全套装（全61册） | 胡平生等 | [下载](https://url89.ctfile.com/f/31084289-1357038349-85eafc?p=8866) |\n| 一九八四（译文经典） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357037821-bebf0d?p=8866) |\n| 发条橙（全新译本） | 安东尼・伯吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357037221-aea276?p=8866) |\n| 捕鼠器（译文经典） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357037056-fc7f9f?p=8866) |\n| 傅雷经典译文全集（共45册） | 巴尔扎克等 | [下载](https://url89.ctfile.com/f/31084289-1357036606-f389f7?p=8866) |\n| 名著名译丛书（第三辑） | 圣埃克苏佩里等 | [下载](https://url89.ctfile.com/f/31084289-1357036372-54fcf2?p=8866) |\n| 名著名译丛书（第四辑） | 大仲马等 | [下载](https://url89.ctfile.com/f/31084289-1357035967-93109c?p=8866) |\n| 名著名译丛书（第五辑） | 梭罗等 | [下载](https://url89.ctfile.com/f/31084289-1357035886-c54a82?p=8866) |\n| 名著名译丛书（第一辑） | 莫泊桑等 | [下载](https://url89.ctfile.com/f/31084289-1357035844-2cc812?p=8866) |\n| 名著名译丛书（第二辑） | 荷马等 | [下载](https://url89.ctfile.com/f/31084289-1357035679-1e958c?p=8866) |\n| 蔡志忠经典解密系列6本 | 蔡志忠 | [下载](https://url89.ctfile.com/f/31084289-1357035520-653d63?p=8866) |\n| 皆大欢喜（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866) |\n| 契诃夫短篇小说选（名著名译丛书） | 契诃夫 | [下载](https://url89.ctfile.com/f/31084289-1357035244-18370e?p=8866) |\n| 黄金时代 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035160-d37674?p=8866) |\n| 西方心理学名著译丛（套装共十四册） | 赫尔曼・艾宾浩斯等 | [下载](https://url89.ctfile.com/f/31084289-1357035172-bd4fe6?p=8866) |\n| 呼啸山庄（名著名译丛书） | 爱米丽・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357034848-f289fc?p=8866) |\n| 夜行记 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357034770-67707c?p=8866) |\n| 复活（名著名译丛书） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357034776-4f89d2?p=8866) |\n| 南怀瑾著作全收录 | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357034758-551f63?p=8866) |\n| 文学巨匠老舍作品珍藏集（套装53册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357034650-848b00?p=8866) |\n| 文学百年经典（套装三册） | 李朝全 | [下载](https://url89.ctfile.com/f/31084289-1357034599-a4cfe1?p=8866) |\n| 卡尔维诺精选作品集（套装23册） | 伊塔洛・卡尔维诺 | [下载](https://url89.ctfile.com/f/31084289-1357034284-3a66b1?p=8866) |\n| 欧·亨利短篇小说选（名著名译丛书） | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1357034254-5ce4c2?p=8866) |\n| 心理学与生活 | 理查德・格里格/菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357034233-7fc4b5?p=8866) |\n| 海明威作品全集（套装共17册） | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357034464-b3597e?p=8866) |\n| 一位女士的画像（名著名译丛书） | 亨利・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357034101-54f30a?p=8866) |\n| 一个陌生女人的来信（读客经典） | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357033846-16f737?p=8866) |\n| 纯真年代（企鹅经典） | 伊迪丝・华顿 | [下载](https://url89.ctfile.com/f/31084289-1357033813-b518c2?p=8866) |\n| 经典咏流传诗词曲赋集（套装21册） | 李白/王维等 | [下载](https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866) |\n| 三国演义漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034632-84f2cc?p=8866) |\n| 一九八四（企鹅经典） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357033651-3000d6?p=8866) |\n| 水浒传漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034578-dbefc7?p=8866) |\n| 红楼梦漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034230-c6c9d4?p=8866) |\n| 西游记漫画版全套（共20册） | 天津神界漫画 | [下载](https://url89.ctfile.com/f/31084289-1357034143-315d2a?p=8866) |\n| 茵梦湖（企鹅经典） | 施托姆 | [下载](https://url89.ctfile.com/f/31084289-1357033138-01b7da?p=8866) |\n| 了不起的盖茨比（企鹅经典） | F.S.菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866) |\n| 战争与和平（名著名译丛书） | 列夫・托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357033024-d278e5?p=8866) |\n| 我是猫（企鹅经典） | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1357032898-bc4857?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第五辑） | 雅各布・布克哈特等 | [下载](https://url89.ctfile.com/f/31084289-1357032817-1f37aa?p=8866) |\n| 坟墓的闯入者（企鹅经典） | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357032805-2fdf34?p=8866) |\n| 双星 | 罗伯特・海因莱因 | [下载](https://url89.ctfile.com/f/31084289-1357032667-da2c4f?p=8866) |\n| 世界十大文学名著（名译珍藏版） | 列夫・托尔斯泰等 | [下载](https://url89.ctfile.com/f/31084289-1357032628-52a9ac?p=8866) |\n| 企鹅口袋书系列·伟大的思想（第四辑） | 米歇尔・德・蒙田等 | [下载](https://url89.ctfile.com/f/31084289-1357032601-2b4139?p=8866) |\n| 怪谈·奇谭（译文经典） | 小泉八云 | [下载](https://url89.ctfile.com/f/31084289-1357032262-b7998a?p=8866) |\n| 棋王（纪念版） | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357032205-bbe80d?p=8866) |\n| 罗生门（读客经典） | 芥川龙之介 | [下载](https://url89.ctfile.com/f/31084289-1357032109-6ad93e?p=8866) |\n| 感悟文学大师经典100册套装 | 萧枫 | [下载](https://url89.ctfile.com/f/31084289-1357032037-e3a645?p=8866) |\n| 了不起的盖茨比（作家榜经典文库） | 弗・司各特・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357031977-f1c06b?p=8866) |\n| 克莱因文集（套装共4册） | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357031725-1bd4d9?p=8866) |\n| 世界经典文学名著四师深度解读推荐版（套装七册） | 威廉・福克纳等 | [下载](https://url89.ctfile.com/f/31084289-1357031599-991694?p=8866) |\n| 一生必读的外国文学经典（套装35册）（经典译林） | 詹姆斯・乔伊斯等 | [下载](https://url89.ctfile.com/f/31084289-1357031596-2f2a04?p=8866) |\n| 文学大师老舍长篇小说作品全集（套装十七册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031458-4659d9?p=8866) |\n| 文学大师老舍作品全集（套装五十五册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031389-1fea08?p=8866) |\n| 2061：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866) |\n| 老舍经典代表作（套装共3册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031329-6d9fcc?p=8866) |\n| 3001：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866) |\n| 文学大师老舍精选中短篇小说集（套装六册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031305-740b89?p=8866) |\n| 文学大师老舍精选杂文集（套装八册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866) |\n| 文学大师老舍代表作作品集（套装九册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866) |\n| 了不起的盖茨比（果麦经典） | 弗朗西斯・司各特・菲兹杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357031194-680961?p=8866) |\n| 外国文学名著名译化境文库（套装共9册） | 化境文库编委会 | [下载](https://url89.ctfile.com/f/31084289-1357031188-dfafdb?p=8866) |\n| 2010：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357031092-6ce749?p=8866) |\n| 伊恩·麦克尤恩作品集（套装共15册） | 伊恩・麦克尤恩 | [下载](https://url89.ctfile.com/f/31084289-1357030873-4d30db?p=8866) |\n| 聊斋志异详注新评 | 蒲松龄 | [下载](https://url89.ctfile.com/f/31084289-1357030834-021d30?p=8866) |\n| 世界文学名著合辑（套装六十册） | 奥斯丁/勃朗特等 | [下载](https://url89.ctfile.com/f/31084289-1357031182-92bef5?p=8866) |\n| 叔本华哲学经典（套装共5册） | 叔本华 | [下载](https://url89.ctfile.com/f/31084289-1357030699-1c8a13?p=8866) |\n| 译文豆瓣高分必读经典套装 | Digital Lab | [下载](https://url89.ctfile.com/f/31084289-1357030654-cbc641?p=8866) |\n| 蒋勋说红楼梦（修订版） | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357030588-0310b4?p=8866) |\n| 人间词话（作家榜经典文库） | 王国维 | [下载](https://url89.ctfile.com/f/31084289-1357030492-572067?p=8866) |\n| 中国文学大师经典必读（套装100册） | 鲁迅/徐志摩/朱自清等 | [下载](https://url89.ctfile.com/f/31084289-1357030450-b187cd?p=8866) |\n| 河合隼雄心理学经典 | 河合隼雄等 | [下载](https://url89.ctfile.com/f/31084289-1357030357-1b42df?p=8866) |\n| 三毛典藏全集（14本套装） | 三毛 | [下载](https://url89.ctfile.com/f/31084289-1357030303-88ee37?p=8866) |\n| 民国大师精选典藏系列套装33册 | 林徽因等 | [下载](https://url89.ctfile.com/f/31084289-1357030351-12b7fa?p=8866) |\n| 念楼学短 | 锺叔河 | [下载](https://url89.ctfile.com/f/31084289-1357030249-d4ac58?p=8866) |\n| 天真的幽默家 | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357030183-d2a9e6?p=8866) |\n| （新华书店十年畅销书系列）世界名著39本合集（上册） | 新华文轩出版集团 | [下载](https://url89.ctfile.com/f/31084289-1357030153-5465e0?p=8866) |\n| （新华书店十年畅销书系列）世界名著39本合集（下册） | 新华文轩出版集团 | [下载](https://url89.ctfile.com/f/31084289-1357030141-351a91?p=8866) |\n| 世界文学名著合辑（套装共50册） | 莎士比亚等 | [下载](https://url89.ctfile.com/f/31084289-1357030147-656d9e?p=8866) |\n| 熊逸书院（套装共8册） | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357029850-c5adf5?p=8866) |\n| 傲慢与偏见（名著译林） | 简・奥斯丁 | [下载](https://url89.ctfile.com/f/31084289-1357029805-90d798?p=8866) |\n| 简·爱（名著译林） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357029799-c0895d?p=8866) |\n| 老人与海（名著译林） | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357029796-8ad781?p=8866) |\n| 海底两万里（名著译林） | 儒勒・凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357029784-a7b283?p=8866) |\n| 钢铁是怎样炼成的（名著译林） | 尼・奥斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357029793-0e7ea0?p=8866) |\n| 2001：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357029631-0c12fd?p=8866) |\n| 南怀瑾四书精讲（套装共11册） | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357029571-16066b?p=8866) |\n| 新刻绣像批评金瓶梅 | 兰陵笑笑生 | [下载](链接未找到) |\n| 人间失格（作家榜经典文库） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357029385-ae493f?p=8866) |\n| 红楼梦（果麦经典） | 曹雪芹 | [下载](https://url89.ctfile.com/f/31084289-1357029145-2505b6?p=8866) |\n| 三国演义（果麦经典） | 罗贯中 | [下载](https://url89.ctfile.com/f/31084289-1357029139-256b5c?p=8866) |\n| 西游记（果麦经典） | 吴承恩 | [下载](https://url89.ctfile.com/f/31084289-1357029133-504b14?p=8866) |\n| 水浒传（果麦经典） | 施耐庵 | [下载](https://url89.ctfile.com/f/31084289-1357029127-457e5e?p=8866) |\n| 约翰·克利斯朵夫（读客经典） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1357028821-f3f217?p=8866) |\n| 纳尔齐斯与歌尔德蒙 | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357028767-0d8d9a?p=8866) |\n| 月亮与六便士（读客经典） | 毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357028707-7117d7?p=8866) |\n| 夜莺与玫瑰（读客经典） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357028629-d7c7bb?p=8866) |\n| 三个火枪手（读客经典） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357028785-d4755a?p=8866) |\n| 海底两万里（读客经典） | 凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357028590-8917cf?p=8866) |\n| 巴黎圣母院（读客经典） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028290-a85451?p=8866) |\n| 巴黎圣母院（权威全译典藏版） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028281-88645a?p=8866) |\n| 巴黎圣母院 | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866) |\n| 巴黎圣母院（经典译林） | 维克多・雨果 | [下载](链接未找到) |\n| 巴黎圣母院（世界十大文学名著） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028269-081068?p=8866) |\n| 巴黎圣母院（作家榜经典文库） | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028299-c59dc2?p=8866) |\n| 小王子（作家榜经典文库） | 圣-埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1357027807-091fea?p=8866) |\n| 海明威精选集（套装共4册） | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027795-430894?p=8866) |\n| 特立斯非虚构经典著作 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357027792-68778f?p=8866) |\n| 阿德勒积极心理学（套装共4册） | 阿尔弗雷德・阿德勒 | [下载](https://url89.ctfile.com/f/31084289-1357027780-02be68?p=8866) |\n| 绿山墙的安妮（作家榜经典文库） | 露西・莫德・蒙格玛丽 | [下载](https://url89.ctfile.com/f/31084289-1357027669-eff4b8?p=8866) |\n| 老人与海（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027639-f72a41?p=8866) |\n| 包法利夫人 | 居斯达夫・福楼拜 | [下载](https://url89.ctfile.com/f/31084289-1357027603-cfcf3f?p=8866) |\n| 枕草子（读客经典） | 清少纳言 | [下载](https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866) |\n| 林家铺子 | 茅盾 | [下载](https://url89.ctfile.com/f/31084289-1357027486-d72605?p=8866) |\n| 格列佛游记（果麦经典） | 乔纳森・斯威夫特 | [下载](https://url89.ctfile.com/f/31084289-1357027510-2f2be5?p=8866) |\n| 局外人（读客经典） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357027477-59e7cc?p=8866) |\n| 高老头（作家榜经典文库） | 奥诺雷·德·巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357027474-27cba5?p=8866) |\n| 白鲸（作家榜经典文库） | 赫尔曼・麦尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357027480-eb7b21?p=8866) |\n| 老人与海（作家榜经典文库） | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357027459-37a5f7?p=8866) |\n| 常识（译文经典） | 托马斯・潘恩 | [下载](https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866) |\n| 权力意志与永恒轮回（译文经典） | 弗里德里希·威廉·尼采 | [下载](https://url89.ctfile.com/f/31084289-1357027429-6b003d?p=8866) |\n| 三言二拍典藏版套装（作家榜经典文库） | 冯梦龙/凌濛初 | [下载](https://url89.ctfile.com/f/31084289-1357027468-fe4fe6?p=8866) |\n| 尤利西斯（读客经典） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357027420-0f8297?p=8866) |\n| 佛罗伦萨之夜（译文经典） | 海因里希・海涅 | [下载](https://url89.ctfile.com/f/31084289-1357027390-c641ae?p=8866) |\n| 人性的弱点（作家榜经典文库） | 戴尔・卡耐基 | [下载](https://url89.ctfile.com/f/31084289-1357027351-1d2ccc?p=8866) |\n| 金粉世家（作家榜经典文库） | 张恨水 | [下载](https://url89.ctfile.com/f/31084289-1357027375-2bba42?p=8866) |\n| 企鹅青少年文学经典系列（套装共10册） | 刘易斯・卡罗尔等 | [下载](https://url89.ctfile.com/f/31084289-1357027315-5cf5f6?p=8866) |\n| 格林童话（果麦经典） | 格林兄弟 | [下载](https://url89.ctfile.com/f/31084289-1357027186-65bb3b?p=8866) |\n| 凡尔纳科幻经典（套装共9册） | 凡尔纳 | [下载](https://url89.ctfile.com/f/31084289-1357027225-b52df3?p=8866) |\n| 笑林广记（作家榜经典文库） | 游戏主人 | [下载](https://url89.ctfile.com/f/31084289-1357027060-ae6417?p=8866) |\n| 浮士德（译文名著典藏） | 约翰・沃尔夫冈・歌德 | [下载](https://url89.ctfile.com/f/31084289-1357026772-9e30ca?p=8866) |\n| 官场现形记 | 李宝嘉 | [下载](https://url89.ctfile.com/f/31084289-1357026424-31227d?p=8866) |\n| 人生的枷锁 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026397-998dcb?p=8866) |\n| 西班牙主题变奏 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026391-dafb28?p=8866) |\n| 苔丝（译文名著典藏） | 托马斯・哈代 | [下载](https://url89.ctfile.com/f/31084289-1357025656-f77567?p=8866) |\n| 当美拯救我们 | 夏尔・佩潘 | [下载](https://url89.ctfile.com/f/31084289-1357025575-1194c0?p=8866) |\n| 未发现的自我 | 卡尔・古斯塔夫・荣格 | [下载](https://url89.ctfile.com/f/31084289-1357025497-5a5313?p=8866) |\n| The Human Comedy | Honore de Balzac | [下载](https://url89.ctfile.com/f/31084289-1357025263-8947e9?p=8866) |\n| 丧钟为谁而鸣（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357025095-8834f9?p=8866) |\n| 红与黑（果麦经典） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1357025092-8e37c7?p=8866) |\n| 汤姆·索亚历险记 | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1357025074-44fa95?p=8866) |\n| 城堡 | 卡夫卡 | [下载](https://url89.ctfile.com/f/31084289-1357025014-46844e?p=8866) |\n| 丛林之书（读客经典） | 约瑟夫・鲁德亚德・吉卜林 | [下载](https://url89.ctfile.com/f/31084289-1357024987-cfbbc7?p=8866) |\n| 列那狐的故事（读客经典） | 玛特・艾・季罗夫人 | [下载](https://url89.ctfile.com/f/31084289-1357024705-152cdc?p=8866) |\n| 乞力马扎罗的雪（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357024483-1cc6ab?p=8866) |\n| 无人爱我 | D.H.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866) |\n| 沈从文全传 | 张新颖 | [下载](https://url89.ctfile.com/f/31084289-1357024288-a2737b?p=8866) |\n| 少年维特的烦恼（读客经典） | 约翰・沃尔夫冈・冯・歌德 | [下载](https://url89.ctfile.com/f/31084289-1357024237-1edddb?p=8866) |\n| 呼啸山庄（读客经典） | 艾米莉・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357024126-44fd04?p=8866) |\n| 小妇人（读客经典） | 露易莎・梅・奥尔科特 | [下载](https://url89.ctfile.com/f/31084289-1357024123-d8ea29?p=8866) |\n| 走出非洲（果麦经典） | 凯伦・布里克森 | [下载](https://url89.ctfile.com/f/31084289-1357024081-b60289?p=8866) |\n| 鲁滨逊漂流记（作家榜经典文库） | 丹尼尔・笛福 | [下载](https://url89.ctfile.com/f/31084289-1357024075-de0a5f?p=8866) |\n| 野性的呼唤（读客经典） | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357024048-f76d1c?p=8866) |\n| 了不起的盖茨比（读客经典） | 弗・司各特・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357023826-c18ccc?p=8866) |\n| 基督山伯爵（读客经典） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866) |\n| 中国文学常识 | 郑振铎 | [下载](https://url89.ctfile.com/f/31084289-1357023661-87519a?p=8866) |\n| 中国哲学常识 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357023640-fe3bfc?p=8866) |\n| 伏尔泰小说精选（读客经典） | 伏尔泰 | [下载](https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866) |\n| IBM帝国缔造者：小沃森自传 | 小托马斯・约翰・沃森/彼得・彼得 | [下载](https://url89.ctfile.com/f/31084289-1357023331-030721?p=8866) |\n| 四世同堂（完整版） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866) |\n| 漫长的告别（果麦经典） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357023229-b94dc3?p=8866) |\n| 奥斯丁全集（英文版） | 简・奥斯汀 | [下载](https://url89.ctfile.com/f/31084289-1357023130-faa3ba?p=8866) |\n| 我们一无所有 | 安东尼・马拉 | [下载](https://url89.ctfile.com/f/31084289-1357023091-47cf9b?p=8866) |\n| 漫长的告别（读客经典） | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357023061-1bff68?p=8866) |\n| 人间喜剧（读客经典） | 奥诺雷・德・巴尔扎克 | [下载](https://url89.ctfile.com/f/31084289-1357023082-d9ba2c?p=8866) |\n| 银河铁道之夜（读客经典） | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1357022767-1f1a92?p=8866) |\n| 白轮船 | 钦吉斯・·艾特玛托夫 | [下载](https://url89.ctfile.com/f/31084289-1357022752-04c29a?p=8866) |\n| 莎士比亚悲剧喜剧全集 | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866) |\n| 到灯塔去 | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357022578-1cdcd0?p=8866) |\n| 茶花女（读客经典） | 小仲马 | [下载](https://url89.ctfile.com/f/31084289-1357022494-778de5?p=8866) |\n| 卡门（读客经典） | 普罗斯佩・梅里美 | [下载](https://url89.ctfile.com/f/31084289-1357022485-c0ed82?p=8866) |\n| 斜阳（太宰治作品精选集） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357022443-a2acaa?p=8866) |\n| 潘多拉之匣（太宰治作品精选集） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357022431-d56ce6?p=8866) |\n| 背影 | 朱自清 | [下载](https://url89.ctfile.com/f/31084289-1357022329-2784ac?p=8866) |\n| 人间失格（读客经典） | 太宰治 | [下载](https://url89.ctfile.com/f/31084289-1357022320-b8d36b?p=8866) |\n| 泰戈尔集（全六册） | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357022218-ca2757?p=8866) |\n| 司汤达集（全四册） | 司汤达 | [下载](https://url89.ctfile.com/f/31084289-1357022212-1c7d34?p=8866) |\n| 屠格涅夫集（全五册） | 屠格涅夫 | [下载](https://url89.ctfile.com/f/31084289-1357022206-6b62a3?p=8866) |\n| 陀思妥耶夫斯基集（全九册） | 陀思妥耶夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357022209-03d5a0?p=8866) |\n| 左拉集（全四册） | 左拉 | [下载](https://url89.ctfile.com/f/31084289-1357022197-f61e93?p=8866) |\n| 霍夫曼集（套装共2册） | 霍夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357022191-d724ce?p=8866) |\n| 七个被绞死的人 | 安德烈耶夫 | [下载](https://url89.ctfile.com/f/31084289-1357021981-96c437?p=8866) |\n| 狄更斯集（套装共10册） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357021987-572f2d?p=8866) |\n| 冈察洛夫集（全四册） | 冈察洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357021966-0bd0e3?p=8866) |\n| 哈代集（共五册） | 哈代 | [下载](https://url89.ctfile.com/f/31084289-1357021954-1102de?p=8866) |\n| 歌德集（全五册） | 歌德 | [下载](https://url89.ctfile.com/f/31084289-1357021948-44e9dc?p=8866) |\n| 纪德集（全五册） | 安德烈・纪德 | [下载](https://url89.ctfile.com/f/31084289-1357021942-db69bc?p=8866) |\n| 德莱塞集（全四册） | 德莱塞 | [下载](https://url89.ctfile.com/f/31084289-1357021945-abdfab?p=8866) |\n| 莱蒙托夫集（全二册） | 莱蒙托夫 | [下载](https://url89.ctfile.com/f/31084289-1357021933-86adef?p=8866) |\n| 托尔斯泰集（共6册） | 托尔斯泰 | [下载](https://url89.ctfile.com/f/31084289-1357021939-ee39cf?p=8866) |\n| 茨威格集（全2册） | 茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357021918-de9abb?p=8866) |\n| 大仲马集（共八册） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357021930-83a4dc?p=8866) |\n| 劳伦斯集（共5册） | 劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357021921-6efc6b?p=8866) |\n| 基度山伯爵（全2册） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357021567-8fdb13?p=8866) |\n| 麦卡勒斯作品系列（套装共6册） | 卡森・麦卡勒斯 | [下载](https://url89.ctfile.com/f/31084289-1357021537-c2fc56?p=8866) |\n| 写给孩子的山海经·鱼鸟篇 | 竹马书坊 | [下载](https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866) |\n| 写给孩子的山海经·人神篇 | 竹马书坊 | [下载](https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866) |\n| 50：伟大的短篇小说们 | 欧・亨利等 | [下载](https://url89.ctfile.com/f/31084289-1357020481-1fffa1?p=8866) |\n| 爱伦·坡短篇小说集 | 埃德加・爱伦・坡 | [下载](https://url89.ctfile.com/f/31084289-1357019605-f1d5f0?p=8866) |\n| 玛丽·安妮 | 达芙妮・杜穆里埃 | [下载](https://url89.ctfile.com/f/31084289-1357019458-f144ab?p=8866) |\n| 鲁迅经典全集全四册 | 鲁迅 | [下载](https://url89.ctfile.com/f/31084289-1357019455-217bae?p=8866) |\n| 盖普眼中的世界 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866) |\n| 纳兰词（果麦经典） | 纳兰性德 | [下载](https://url89.ctfile.com/f/31084289-1357019365-ccc402?p=8866) |\n| 小王子三部曲 | 埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1357019302-5cad9b?p=8866) |\n| 巴菲特致股东的信（原书第4版） | 沃伦・巴菲特 | [下载](https://url89.ctfile.com/f/31084289-1357018690-8db8c7?p=8866) |\n| 鲁迅全集（全20册） | 鲁迅 | [下载](https://url89.ctfile.com/f/31084289-1357018621-414c16?p=8866) |\n| 道林·格雷的画像 | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357017079-7a688d?p=8866) |\n| 国学备览（套装共12册） | 赵敏俐/尹小林  | [下载](https://url89.ctfile.com/f/31084289-1357016722-5e54ed?p=8866) |\n| 月亮与六便士（作家榜经典文库） | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357016398-3a2ca3?p=8866) |\n| 鼠疫（果麦经典） | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357016017-b4cf30?p=8866) |\n| 国富论（全译本） | 亚当・斯密 | [下载](https://url89.ctfile.com/f/31084289-1357015849-0975d2?p=8866) |\n| 不成问题的问题 | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357015252-eb9267?p=8866) |\n| 华杉讲透孙子兵法 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357014508-c3e54a?p=8866) |\n| 哈佛百年经典（01-38卷） | 伊索 | [下载](https://url89.ctfile.com/f/31084289-1357013542-8c1815?p=8866) |\n| 平凡的世界（套装共3册） | 路遥 | [下载](https://url89.ctfile.com/f/31084289-1357012519-dcdb11?p=8866) |\n| 雾都孤儿 | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357012480-bb6ba7?p=8866) |\n| 坎特伯雷故事 | 杰弗里・乔叟 | [下载](https://url89.ctfile.com/f/31084289-1357012498-08c134?p=8866) |\n| 三个火枪手 | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357012471-f5ee43?p=8866) |\n| 高窗 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012333-e3cf0f?p=8866) |\n| 湖底女人 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012327-4c3365?p=8866) |\n| 重播 | 雷蒙德・钱德勒 | [下载](https://url89.ctfile.com/f/31084289-1357012063-099570?p=8866) |\n| 夏日走过山间（果麦经典） | 约翰・缪尔 | [下载](https://url89.ctfile.com/f/31084289-1357011448-581d32?p=8866) |\n| 诗经（全本全注全译） | 王秀梅译注 | [下载](https://url89.ctfile.com/f/31084289-1357011427-1cfa69?p=8866) |\n| 贼巢 | 詹姆斯・斯图尔特 | [下载](https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866) |\n| 安徒生童话 | 安徒生 | [下载](https://url89.ctfile.com/f/31084289-1357010461-58114e?p=8866) |\n| 白先勇细说红楼梦 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1357009822-88e0d4?p=8866) |\n| 名利场（套装上下册） | 萨克雷 | [下载](https://url89.ctfile.com/f/31084289-1357008997-bf0775?p=8866) |\n| 雾都孤儿（果麦经典） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357008829-113e17?p=8866) |\n| 杀死一只知更鸟 | 哈珀・李 | [下载](https://url89.ctfile.com/f/31084289-1357008760-83b113?p=8866) |\n| 儒林外史（果麦经典） | 吴敬梓 | [下载](https://url89.ctfile.com/f/31084289-1357008754-58ab37?p=8866) |\n| 百年孤独 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357008040-9c2191?p=8866) |\n| 秘密花园（果麦经典） | 弗朗西丝・霍奇森・伯内特 | [下载](https://url89.ctfile.com/f/31084289-1357007665-e9967f?p=8866) |\n| 国富论（缩译全彩插图本） | 亚当·斯密 | [下载](https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866) |\n| 欧·亨利短篇小说选（经典译林） | 欧・亨利 | [下载](https://url89.ctfile.com/f/31084289-1357006429-a8db77?p=8866) |\n| 群书治要译注 | 魏徵等 | [下载](https://url89.ctfile.com/f/31084289-1357006303-52769e?p=8866) |\n| 邯郸记 | 汤显祖 | [下载](https://url89.ctfile.com/f/31084289-1357006228-889b1b?p=8866) |\n| 一生必读的26部欧美人文经典译丛（套装26册） | 尼采/柏拉图等 | [下载](https://url89.ctfile.com/f/31084289-1357005814-2644a8?p=8866) |\n| 一个孤独漫步者的遐想（果麦经典） | 让-雅克・卢梭 | [下载](https://url89.ctfile.com/f/31084289-1357005694-ef74ce?p=8866) |\n| 汤姆·索亚历险记（经典译林） | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1357005670-e80ccf?p=8866) |\n| 钢铁是怎样炼成的（译文名著精选） | 尼・奥斯特洛夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357005319-d938bf?p=8866) |\n| 世说新语 | 刘义庆 | [下载](https://url89.ctfile.com/f/31084289-1357005316-e1c6a2?p=8866) |\n| 倾诉（短经典） | 伊芙琳・康伦 | [下载](https://url89.ctfile.com/f/31084289-1357004746-84baf1?p=8866) |\n"
  },
  {
    "path": "md/经学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 经学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 周礼（全本全注全译） | 徐正英/常佩雨 | [下载](https://url89.ctfile.com/f/31084289-1356985789-d7d9d8?p=8866) |\n| 仪礼（全本全注全译） | 彭林译注 | [下载](https://url89.ctfile.com/f/31084289-1356985543-fb5537?p=8866) |\n| 潜夫论（全本全注全译） | 马世年 | [下载](https://url89.ctfile.com/f/31084289-1356983326-206879?p=8866) |\n| 礼记（全本全注全译） | 胡平生译注/张萌译注  | [下载](https://url89.ctfile.com/f/31084289-1357054426-ca0b1a?p=8866) |\n| 义疏学衰亡史论 | 乔秀岩 | [下载](https://url89.ctfile.com/f/31084289-1357054387-22b652?p=8866) |\n| 从六艺到十三经（上下册） | 程苏东 | [下载](https://url89.ctfile.com/f/31084289-1357051807-3757fe?p=8866) |\n| 经与史：康有为与章太炎（全二册） | 汤志钧 | [下载](https://url89.ctfile.com/f/31084289-1357051474-6c8592?p=8866) |\n| 春秋穀梁传（全本全注全译） | 徐正英/邹皓 | [下载](https://url89.ctfile.com/f/31084289-1357047328-018934?p=8866) |\n"
  },
  {
    "path": "md/经济.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 经济\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 金钱革命 | 安妮・博登 | [下载](https://url89.ctfile.com/f/31084289-1375490917-6f069c?p=8866) |\n| 智造中国 | 马兆远 | [下载](https://url89.ctfile.com/f/31084289-1375491232-200000?p=8866) |\n| 原则：应对变化中的世界秩序 | 瑞・达利欧 | [下载](https://url89.ctfile.com/f/31084289-1375492075-4f7b4c?p=8866) |\n| 进化的力量 | 刘润 | [下载](https://url89.ctfile.com/f/31084289-1375492024-2f20d3?p=8866) |\n| 吉姆·罗杰斯的大预测 | 吉姆・罗杰斯 | [下载](https://url89.ctfile.com/f/31084289-1375492939-a2a582?p=8866) |\n| 房价的逻辑 | 徐远 | [下载](https://url89.ctfile.com/f/31084289-1375493002-d88db9?p=8866) |\n| 温铁军套装（共5册） | 温铁军 | [下载](https://url89.ctfile.com/f/31084289-1375493437-a29263?p=8866) |\n| 变量4 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1375493833-c77a73?p=8866) |\n| 芯片陷阱 | 马克・拉叙斯 | [下载](https://url89.ctfile.com/f/31084289-1375495186-db8ef2?p=8866) |\n| 超级资管 | 乔永远/孔祥 | [下载](https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866) |\n| 中国资本市场变革 | 肖钢 | [下载](https://url89.ctfile.com/f/31084289-1375497634-635389?p=8866) |\n| 小白经济学：带你欢快地进入经济学的大门 | 大墨 | [下载](https://url89.ctfile.com/f/31084289-1375497655-f6b05a?p=8866) |\n| 动荡时代 | 白川方明 | [下载](https://url89.ctfile.com/f/31084289-1375497670-93f060?p=8866) |\n| 郑永年论中国系列（套装6册） | 郑永年 | [下载](https://url89.ctfile.com/f/31084289-1375497760-3bb4e4?p=8866) |\n| 读懂碳中和 | 中国长期低碳发展战略与转型路径研究课题组 | [下载](https://url89.ctfile.com/f/31084289-1375498108-447de0?p=8866) |\n| 灰犀牛：个人、组织如何与风险共舞 | 米歇尔・渥克 | [下载](https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866) |\n| 利益相关者 | 克劳斯・施瓦布/彼得・万哈姆 | [下载](https://url89.ctfile.com/f/31084289-1375498156-b93f87?p=8866) |\n| 大萧条前夜的繁荣与疯狂 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866) |\n| 创造性破坏的力量 | 菲利普・阿吉翁等 | [下载](https://url89.ctfile.com/f/31084289-1375498252-63196c?p=8866) |\n| 人口大逆转 | 查尔斯・古德哈特/马诺杰・普拉丹 | [下载](https://url89.ctfile.com/f/31084289-1375498405-c43f19?p=8866) |\n| 行为投资者 | 丹尼尔・克罗斯比 | [下载](https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866) |\n| 大侦探经济学 | 李井奎 | [下载](https://url89.ctfile.com/f/31084289-1375499014-c19e74?p=8866) |\n| 工业革命前的欧洲社会与经济 | 卡洛·M. 奇波拉 | [下载](https://url89.ctfile.com/f/31084289-1375499074-6926f6?p=8866) |\n| 美国货币史（精校本） | 米尔顿・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866) |\n| 帝国经济风暴 | 张昕冉 | [下载](https://url89.ctfile.com/f/31084289-1375499353-a57622?p=8866) |\n| 投资理财红宝书 | 龙红亮 | [下载](https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866) |\n| 鹤老师说经济 | 鹤老师 | [下载](https://url89.ctfile.com/f/31084289-1375499413-bdea83?p=8866) |\n| 全球化简史 | 杰弗里・萨克斯 | [下载](https://url89.ctfile.com/f/31084289-1375499440-2ab9ca?p=8866) |\n| 中国的选择 | 马凯硕 | [下载](https://url89.ctfile.com/f/31084289-1375499530-f72d2a?p=8866) |\n| 厉以宁经济史文集套装 | 厉以宁 | [下载](https://url89.ctfile.com/f/31084289-1375500088-41a814?p=8866) |\n| 工作、消费主义和新穷人 | 齐格蒙特・鲍曼 | [下载](https://url89.ctfile.com/f/31084289-1375500127-368b0a?p=8866) |\n| 羊群的共识 | 肖小跑 | [下载](https://url89.ctfile.com/f/31084289-1375500187-e6d4a0?p=8866) |\n| 置身事内 | 兰小欢 | [下载](https://url89.ctfile.com/f/31084289-1375500901-c3b7ff?p=8866) |\n| 噪声：人类判断的缺陷 | 丹尼尔・卡尼曼等 | [下载](https://url89.ctfile.com/f/31084289-1375501309-de4215?p=8866) |\n| 经济金融学专业核心课（套装共8册） | 王文寅等 | [下载](https://url89.ctfile.com/f/31084289-1375501984-beaef1?p=8866) |\n| 预测：经济、周期与市场泡沫 | 洪灝 | [下载](https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866) |\n| 美联储 | 威廉・格雷德 | [下载](https://url89.ctfile.com/f/31084289-1375502575-8350f8?p=8866) |\n| 文明、资本与投资 | 丁昶 | [下载](https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866) |\n| 世界钱币2000年 | 伯恩德・克鲁格 | [下载](https://url89.ctfile.com/f/31084289-1375503277-39fb14?p=8866) |\n| 故事经济学 | 罗伯特・麦基/哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866) |\n| 博弈论与生活 | 兰・费雪 | [下载](https://url89.ctfile.com/f/31084289-1375507066-43abdb?p=8866) |\n| 美元真相 | 达尔辛妮・大卫 | [下载](https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866) |\n| 每个人的经济学 | 张夏准 | [下载](https://url89.ctfile.com/f/31084289-1375509256-c1030a?p=8866) |\n| 区块链实战：从技术创新到商业模式 | 冒志鸿/陈俊 | [下载](https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866) |\n| 趋势的力量 | 李迅雷 | [下载](https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866) |\n| 改变中国 | 张军 | [下载](https://url89.ctfile.com/f/31084289-1375509850-d9c207?p=8866) |\n| 崩盘：全球金融危机如何重塑世界 | 亚当・图兹 | [下载](https://url89.ctfile.com/f/31084289-1375510096-bd2d0a?p=8866) |\n| 股票大作手利弗莫尔的交易精髓 | 李路 | [下载](https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866) |\n| 一切皆契约 | 聂辉华 | [下载](https://url89.ctfile.com/f/31084289-1375510423-f1d70c?p=8866) |\n| 透过经济看国学 | 翁礼华 | [下载](https://url89.ctfile.com/f/31084289-1375510531-3f4603?p=8866) |\n| 新增点 | 管清友等 | [下载](https://url89.ctfile.com/f/31084289-1375510843-826852?p=8866) |\n| 我们终将变富 | 兰启昌 | [下载](https://url89.ctfile.com/f/31084289-1375511182-c372ea?p=8866) |\n| 中国经济2020 | 王德培 | [下载](https://url89.ctfile.com/f/31084289-1375511185-ea4e0f?p=8866) |\n| 帝国陷阱 | 诺埃尔・毛雷尔 | [下载](https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866) |\n| 海星式组织 | 奥瑞・布莱福曼/罗德・贝克斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1375511245-082bd3?p=8866) |\n| 云上的中国 | 吴晓波等 | [下载](https://url89.ctfile.com/f/31084289-1375511269-087c56?p=8866) |\n| 超越财富 | 赵晶 | [下载](https://url89.ctfile.com/f/31084289-1375511332-7490f1?p=8866) |\n| 大营销哲学 | 陈军 | [下载](https://url89.ctfile.com/f/31084289-1375511335-35eeb4?p=8866) |\n| 从绿到金 | 丹尼尔・埃斯蒂/安德鲁・温斯顿 | [下载](https://url89.ctfile.com/f/31084289-1375511350-277a7e?p=8866) |\n| 钱的千年兴衰史 | 金菁 | [下载](https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866) |\n| 资本5000年 | 彭兴庭 | [下载](https://url89.ctfile.com/f/31084289-1375512352-c23aa4?p=8866) |\n| 房地产与中国经济 | 盛松成等 | [下载](https://url89.ctfile.com/f/31084289-1375512808-94f8bf?p=8866) |\n| 黄金的故事 | 詹姆斯・莱德贝特 | [下载](https://url89.ctfile.com/f/31084289-1375513099-a6d2c2?p=8866) |\n| 硅谷搅局者 | 莱斯利・柏林 | [下载](https://url89.ctfile.com/f/31084289-1375513303-d3814c?p=8866) |\n| 完美的正义 | 熊秉元 | [下载](https://url89.ctfile.com/f/31084289-1375513342-6d19a6?p=8866) |\n| 重新定义增长 | 马丁・R.斯塔奇等 | [下载](https://url89.ctfile.com/f/31084289-1375513630-010be2?p=8866) |\n| 金融激荡300年 | 瀛洲客 | [下载](https://url89.ctfile.com/f/31084289-1375513660-81fac3?p=8866) |\n| 大局观 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1375513711-251b40?p=8866) |\n| 美国怎么了 | 安妮・凯斯/安格斯・迪顿 | [下载](https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866) |\n| 极端经济 | 理查德・戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1375513786-ca7531?p=8866) |\n| 账簿与权力 | 雅各布・索尔 | [下载](https://url89.ctfile.com/f/31084289-1357004521-f2651d?p=8866) |\n| 变量3 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357004476-186d31?p=8866) |\n| 香帅财富报告 | 香帅 | [下载](https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866) |\n| 全球创新投资 | 睦大均 | [下载](https://url89.ctfile.com/f/31084289-1357004356-9eca1f?p=8866) |\n| 股票投资的24堂必修课（典藏版） | 威廉・欧奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866) |\n| 石油的时代 | 王能全 | [下载](https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866) |\n| 票据革命 | 张立洲 | [下载](https://url89.ctfile.com/f/31084289-1357003528-1640ad?p=8866) |\n| 百年变局 | 王文 | [下载](https://url89.ctfile.com/f/31084289-1357003465-977d4c?p=8866) |\n| 货币战争 | 詹姆斯・里卡兹 | [下载](https://url89.ctfile.com/f/31084289-1357003357-d4da5a?p=8866) |\n| 财富与贫困 | 乔治・吉尔德 | [下载](https://url89.ctfile.com/f/31084289-1357002337-9bd116?p=8866) |\n| 经济情操论 | 艾玛・罗斯柴尔德 | [下载](https://url89.ctfile.com/f/31084289-1357002307-c67bdb?p=8866) |\n| 大国出行 | 王千马/何丹 | [下载](https://url89.ctfile.com/f/31084289-1357002166-292e8e?p=8866) |\n| 流媒体时代 | 迈克尔·D.史密斯等 | [下载](https://url89.ctfile.com/f/31084289-1357002094-d7ffa9?p=8866) |\n| 交易圣经 | 布伦特・奔富 | [下载](https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866) |\n| 聚焦 | 布兰登・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357001644-216a13?p=8866) |\n| 从工业化到城市化 | 徐远 | [下载](https://url89.ctfile.com/f/31084289-1357001290-856734?p=8866) |\n| 错觉：AI如何通过数据挖掘误导我们 | 加里・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357000357-8a60cf?p=8866) |\n| 金融科技新时代 | 伊夫・埃奥内/埃尔维・芒斯龙 | [下载](https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866) |\n| 伟大的贸易 | 威廉・伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866) |\n| 繁荣的悖论 | 克莱顿・克里斯坦森 | [下载](https://url89.ctfile.com/f/31084289-1356999064-70da95?p=8866) |\n| 半小时漫画中国史（经济篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1356997864-85928f?p=8866) |\n| 结构性改革 | 黄奇帆 | [下载](https://url89.ctfile.com/f/31084289-1356997597-3d930f?p=8866) |\n| 美国真相 | 約瑟夫・斯蒂格利茨 | [下载](https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866) |\n| 新基建：全球大变局下的中国经济新引擎 | 任泽平/马家进/连一席 | [下载](https://url89.ctfile.com/f/31084289-1356995398-662ae8?p=8866) |\n| 非理性繁荣与金融危机（第二版） | 罗伯特・席勒 | [下载](https://url89.ctfile.com/f/31084289-1356995335-19a9c7?p=8866) |\n| 财富千年史 | 辛西娅・克罗森 | [下载](https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866) |\n| 告别施舍 | 格里高利・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1356995314-0d2cae?p=8866) |\n| 价格的发现 | 保尔・米格罗姆 | [下载](https://url89.ctfile.com/f/31084289-1356995308-ba31df?p=8866) |\n| 激进市场 | 埃里克·A.波斯纳/E.格伦·韦尔 | [下载](https://url89.ctfile.com/f/31084289-1356995302-d77728?p=8866) |\n| 后谷歌时代 | 乔治・吉尔德 | [下载](https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866) |\n| 商业实战三部曲 | 唐纳德・米勒等 | [下载](https://url89.ctfile.com/f/31084289-1356994813-2c8cd7?p=8866) |\n| 商从商朝来 | 傅奕群 | [下载](https://url89.ctfile.com/f/31084289-1356994669-267453?p=8866) |\n| 巴比伦富翁新解 | 乔治・克拉森 | [下载](https://url89.ctfile.com/f/31084289-1356994624-547006?p=8866) |\n| 指数基金投资从入门到精通 | 老罗 | [下载](https://url89.ctfile.com/f/31084289-1356993940-1256a5?p=8866) |\n| 影响商业的50本书 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866) |\n| 时刻：新全球化时代的中国韧性与创新 | 秦朔 | [下载](https://url89.ctfile.com/f/31084289-1356992239-a2bd98?p=8866) |\n| 尖峰对话区块链 | 王峰 | [下载](https://url89.ctfile.com/f/31084289-1356992212-9a31a5?p=8866) |\n| 啤酒经济学 | 约翰・思文/德文・布里斯基 | [下载](https://url89.ctfile.com/f/31084289-1356991984-3b28af?p=8866) |\n| 反直觉 | 理查德・肖顿 | [下载](https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866) |\n| 好奇心杂货铺 | 汤姆・斯丹迪奇 | [下载](https://url89.ctfile.com/f/31084289-1356991786-260d2f?p=8866) |\n| 知识创造管理 | 野中郁次郎/绀野登 | [下载](https://url89.ctfile.com/f/31084289-1356991759-1130f2?p=8866) |\n| 区块链浪潮 | 贾英昊/江泽武 | [下载](https://url89.ctfile.com/f/31084289-1356991633-222d1d?p=8866) |\n| 增长危机 | 丹比萨・莫约 | [下载](https://url89.ctfile.com/f/31084289-1356991612-1591cf?p=8866) |\n| 保险的未来 | 王和 | [下载](https://url89.ctfile.com/f/31084289-1356991489-b536e1?p=8866) |\n| 全球贸易摩擦与大国兴衰 | 任泽平/罗志恒 | [下载](https://url89.ctfile.com/f/31084289-1356991219-d430c3?p=8866) |\n| 全球不平等逸史 | 布兰科・米兰诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1356991216-73f59c?p=8866) |\n| 从丝绸到硅 | 杰弗里・加滕 | [下载](https://url89.ctfile.com/f/31084289-1356991084-19ee0e?p=8866) |\n| 新货币战争 | 诺伯特・海林 | [下载](https://url89.ctfile.com/f/31084289-1356990925-93e06e?p=8866) |\n| 代谢增长论 | 陈平 | [下载](https://url89.ctfile.com/f/31084289-1356990715-9d84b3?p=8866) |\n| 未来站在中国这一边 | 宁南山 | [下载](https://url89.ctfile.com/f/31084289-1356990559-a386a7?p=8866) |\n| 好的经济学 | 阿比吉特・班纳吉/埃斯特・迪弗洛 | [下载](https://url89.ctfile.com/f/31084289-1356990553-e92a01?p=8866) |\n| 互联网四大 | 斯科特・加洛韦 | [下载](https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866) |\n| 中国货币史 | 彭信威 | [下载](https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866) |\n| 叙事经济学 | 罗伯特・希勒 | [下载](https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866) |\n| 基本收入·鹈鹕丛书 | 盖伊・斯坦丁 | [下载](https://url89.ctfile.com/f/31084289-1356990058-b0a6de?p=8866) |\n| 一本书读懂区块链 | 王腾鹤 | [下载](https://url89.ctfile.com/f/31084289-1356989131-40f05d?p=8866) |\n| 新教伦理与资本主义精神（理想国新版） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356988420-f2ca45?p=8866) |\n| 全球房地产 | 夏磊/任泽平  | [下载](https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866) |\n| 八次危机 | 温铁军 | [下载](https://url89.ctfile.com/f/31084289-1356987595-1cd401?p=8866) |\n| 李光耀观天下 | 李光耀 | [下载](https://url89.ctfile.com/f/31084289-1356987178-000c5c?p=8866) |\n| 证券分析（原书第6版） | 本杰明・格雷厄姆/戴维・多德 | [下载](https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866) |\n| 未来的处方 | 伊齐基尔・伊曼纽尔 | [下载](https://url89.ctfile.com/f/31084289-1356986680-45c4da?p=8866) |\n| 沃顿商学院时间管理课（修订版） | 穆然 | [下载](https://url89.ctfile.com/f/31084289-1356985804-d73c79?p=8866) |\n| 适应性市场 | 罗闻全 | [下载](https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866) |\n| 数据驱动的智能城市 | 史蒂芬・戈德史密斯/苏珊・克劳福德 | [下载](https://url89.ctfile.com/f/31084289-1356985747-bb1c12?p=8866) |\n| 水库论坛欧神作品（共2册） | 欧成效 | [下载](https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866) |\n| 世界不是平的 | 简世勋 | [下载](https://url89.ctfile.com/f/31084289-1356985531-0b4aff?p=8866) |\n| 盐铁论（全本全注全译） | 陈桐生 | [下载](https://url89.ctfile.com/f/31084289-1356985165-67a2d3?p=8866) |\n| 无霸主的世界经济 | 彼得・特明/戴维・瓦因斯 | [下载](https://url89.ctfile.com/f/31084289-1356985009-8b5974?p=8866) |\n| 社会与经济 | 马克・格兰诺维特 | [下载](https://url89.ctfile.com/f/31084289-1356984793-a39f61?p=8866) |\n| 我是怎么割韭菜的 | 查尔斯・庞兹 | [下载](https://url89.ctfile.com/f/31084289-1356984592-f438eb?p=8866) |\n| 商务思维工具箱系列（套装共3册） | HRInstitute | [下载](https://url89.ctfile.com/f/31084289-1356984514-700431?p=8866) |\n| 经济与社会（全二卷）新版 | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1356983944-d80749?p=8866) |\n| 引爆流行 | 德里克・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866) |\n| 无处不在 | 中国邮政快递报社 | [下载](https://url89.ctfile.com/f/31084289-1356983632-8e58ce?p=8866) |\n| 半小时漫画经济学（金融危机完结篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357054291-a6d1dc?p=8866) |\n| 日本经济如何走出迷失 | 三木谷浩史/三木谷良一 | [下载](https://url89.ctfile.com/f/31084289-1357054201-9f5f9e?p=8866) |\n| 激荡：十年二十人 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357053586-fc8ad3?p=8866) |\n| 尼尔弗格森谈经济（共3册） | 尼尔・弗格森 | [下载](https://url89.ctfile.com/f/31084289-1357053535-d2aa30?p=8866) |\n| 经济与改革：厉以宁文选（套装共4册） | 厉以宁 | [下载](https://url89.ctfile.com/f/31084289-1357053469-e816bf?p=8866) |\n| 变量2 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357052989-6d9cbb?p=8866) |\n| 一学就会的经济学 | 张彩彩 | [下载](https://url89.ctfile.com/f/31084289-1357052974-9a4739?p=8866) |\n| 赢：有钱人和你想的不一样 | 塞缪尔・斯迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866) |\n| 精明投资者的满分课 | 孙旭东等 | [下载](https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866) |\n| 用图表看懂世界经济 | 宫崎勇 | [下载](https://url89.ctfile.com/f/31084289-1357052677-8ce5f4?p=8866) |\n| 拯救资本主义 | 罗伯特・赖克 | [下载](https://url89.ctfile.com/f/31084289-1357052308-144997?p=8866) |\n| 原因与结果的经济学 | 中室牧子/津川友介 | [下载](https://url89.ctfile.com/f/31084289-1357052284-b4a58c?p=8866) |\n| 全球金融体系 | 黄海洲 | [下载](https://url89.ctfile.com/f/31084289-1357051942-839ed7?p=8866) |\n| 人类网络 | 马修・杰克逊 | [下载](https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866) |\n| 钱从哪里来 | 香帅 | [下载](https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866) |\n| 明斯基时刻 | 兰德尔・雷 | [下载](https://url89.ctfile.com/f/31084289-1357051318-a2c092?p=8866) |\n| 金色的羁绊 | 巴里・艾肯格林 | [下载](https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866) |\n| 富人的逻辑 | 雷纳・齐特尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866) |\n| 简斯维尔 | 艾米・戈德斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866) |\n| 经济与社会（全二卷） | 马克斯・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357051036-d4a2a4?p=8866) |\n| 简明世界经济史 | 宫崎正胜 | [下载](https://url89.ctfile.com/f/31084289-1357051012-e71f74?p=8866) |\n| 国家、经济与大分流 | 皮尔・弗里斯 | [下载](https://url89.ctfile.com/f/31084289-1357050700-4c48cc?p=8866) |\n| 看得懂的金融投资课 | 向松祚 | [下载](https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866) |\n| 财富与权力 | 诺姆・乔姆斯基 | [下载](https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866) |\n| 隐秘战争 | 阿里・拉伊迪 | [下载](https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866) |\n| 货币围城 | 约翰・莫尔丁等 | [下载](https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866) |\n| 一套书读懂中国经济下半场（套装共25册） | 陈元/钱颖一等 | [下载](https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866) |\n| 货币之惑 | 乔治・吉尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866) |\n| 曾国藩的经济课 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357049374-c7949f?p=8866) |\n| 灭火：美国金融危机及其教训 | 本・伯南克等 | [下载](https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866) |\n| 货币变局 | 巴里・艾肯格林等 | [下载](https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866) |\n| 怪诞行为学6 | 丹・艾瑞里/马特・R.特劳尔 | [下载](https://url89.ctfile.com/f/31084289-1357048546-c8fffc?p=8866) |\n| 就业、利息与货币通论（去梯言系列） | 约翰・梅纳德・凯恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357047628-8cc56b?p=8866) |\n| “芯”想事成 | 陈芳 | [下载](https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866) |\n| 财富的起源 | 埃里克・拜因霍克 | [下载](https://url89.ctfile.com/f/31084289-1357047400-b0091e?p=8866) |\n| 货币金融学（原书第2版） | 弗雷德里克S.米什金 | [下载](https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866) |\n| 金融市场与金融机构（原书第7版） | 弗雷德里克 S. 米什金/斯坦利 G. 埃金斯 | [下载](https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866) |\n| 超脑行为金融学 | 薛冰岩 | [下载](https://url89.ctfile.com/f/31084289-1357047115-117230?p=8866) |\n| 期权：就这么简单 | 韩冬 | [下载](https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866) |\n| 逃不开的经济周期（珍藏版） | 拉斯・特维德 | [下载](https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866) |\n| 繁荣与衰退 | 艾伦・格林斯潘 | [下载](https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866) |\n| 石油战争 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357045666-1ba195?p=8866) |\n| 看懂世界格局的第一本书：中国周边 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357045642-abaa6b?p=8866) |\n| 在股市遇见凯恩斯 | 约翰 F. 瓦辛科 | [下载](https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866) |\n| 为什么中国人勤劳而不富有 | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866) |\n| 火枪与账簿 | 李伯重 | [下载](https://url89.ctfile.com/f/31084289-1357045168-fb291c?p=8866) |\n| 为什么中国人勤劳而不富有（新版） | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866) |\n| 怪诞行为学（全5册） | 丹・艾瑞里等 | [下载](https://url89.ctfile.com/f/31084289-1357045105-dcaec5?p=8866) |\n| 另一个欧洲 | 何力 | [下载](https://url89.ctfile.com/f/31084289-1357045042-480d21?p=8866) |\n| 日本财经大腕谈中国 | 蒋丰 | [下载](https://url89.ctfile.com/f/31084289-1357044982-a1df0d?p=8866) |\n| 互惠资本主义 | 布鲁诺・罗奇 | [下载](https://url89.ctfile.com/f/31084289-1357044532-bf397f?p=8866) |\n| 穷人缺什么 | 古古 | [下载](https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866) |\n| 哈耶克作品（共6册） | 弗里德里希・奥古斯特・哈耶克 | [下载](https://url89.ctfile.com/f/31084289-1357043830-0e5d9f?p=8866) |\n| 商业的本质套装（全3册） | 杨宗勇 | [下载](https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866) |\n| 煤老板自述三十年 | 老五/劲飞 | [下载](https://url89.ctfile.com/f/31084289-1357043788-51d196?p=8866) |\n| 格林斯潘传 | 塞巴斯蒂安・马拉比 | [下载](https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866) |\n| 西方经济学说史教程 | 晏智杰编 | [下载](https://url89.ctfile.com/f/31084289-1357043584-8bd3af?p=8866) |\n| 从雇佣到自由人 | 吕廷杰 | [下载](https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866) |\n| 半小时漫画经济学（金融危机篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357043179-7c4aeb?p=8866) |\n| 振荡指标MACD（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866) |\n| 贸易的冲突 | 道格拉斯・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866) |\n| 商业冒险 | 约翰・布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866) |\n| 不要害怕中国 | 菲利普・巴莱 | [下载](https://url89.ctfile.com/f/31084289-1357042690-46ab6f?p=8866) |\n| 城市隐秩序 | 刘春成 | [下载](https://url89.ctfile.com/f/31084289-1357042336-7a14a0?p=8866) |\n| 购物凶猛 | 孙骁骥 | [下载](https://url89.ctfile.com/f/31084289-1357042237-bee402?p=8866) |\n| 打造消费天堂 | 连玲玲 | [下载](https://url89.ctfile.com/f/31084289-1357042252-6ab14c?p=8866) |\n| 大破局 | 叶檀 | [下载](https://url89.ctfile.com/f/31084289-1357042051-f213e9?p=8866) |\n| 大杯咖啡经济学 | 吉本佳生 | [下载](https://url89.ctfile.com/f/31084289-1357041637-5af127?p=8866) |\n| 无论如何都想告诉你的世界史 | 玉木俊明 | [下载](https://url89.ctfile.com/f/31084289-1357040368-13eaaa?p=8866) |\n| 中国经济2019 | 王德培 | [下载](https://url89.ctfile.com/f/31084289-1357040161-184485?p=8866) |\n| 贫穷的本质（修订版） | 阿比吉特・班纳吉/埃斯特・迪弗洛 | [下载](https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866) |\n| 别输在不懂营销上 | 戈非 | [下载](https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866) |\n| 投资最重要的事 | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866) |\n| 繁荣的真谛 | 路易吉・津加莱斯 | [下载](https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866) |\n| 王道的经营（套装共6册） | 施振荣 | [下载](https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866) |\n| 看得见的与看不见的 | 巴斯夏 | [下载](https://url89.ctfile.com/f/31084289-1357038388-dd5409?p=8866) |\n| 涛动周期录 | 周金涛 | [下载](https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866) |\n| 半小时漫画经济学（生活常识篇） | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357037779-129c18?p=8866) |\n| 大浪潮 | 斯蒂芬・拉德勒 | [下载](https://url89.ctfile.com/f/31084289-1357037386-86cf50?p=8866) |\n| 压力测试 | 蒂莫西・盖特纳 | [下载](https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866) |\n| 积极型资产配置指南 | 马丁 J. 普林格 | [下载](https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866) |\n| 债：第一个5000年 | 大卫・格雷伯 | [下载](https://url89.ctfile.com/f/31084289-1357037263-d306b9?p=8866) |\n| 银的故事 | 威廉・L.西尔伯 | [下载](https://url89.ctfile.com/f/31084289-1357037239-ead4cb?p=8866) |\n| 卧底经济学（套装共4册） | 蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1357037194-590484?p=8866) |\n| 房地产与城市发展 | 陈杰/陆铭/黄益平/潘英丽 | [下载](https://url89.ctfile.com/f/31084289-1357037188-e63591?p=8866) |\n| 贸易的真相 | 丹尼・罗德里克 | [下载](https://url89.ctfile.com/f/31084289-1357037065-bd5341?p=8866) |\n| 彼得·林奇的成功投资（典藏版） | 彼得・林奇/约翰・罗瑟查尔德 | [下载](https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866) |\n| 嚣张的特权 | 巴里・艾肯格林 | [下载](https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866) |\n| 50人的二十年 | 樊纲/易纲等 | [下载](https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866) |\n| 茶叶大盗 | 萨拉・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866) |\n| 财富自由 | 托马斯・斯坦利/萨拉斯坦利・弗洛 | [下载](https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866) |\n| 掉队的拉美 | 塞巴斯蒂安・爱德华兹 | [下载](https://url89.ctfile.com/f/31084289-1357035082-3c2a50?p=8866) |\n| 为什么不平等至关重要 | 托马斯・斯坎伦 | [下载](https://url89.ctfile.com/f/31084289-1357034986-ec2e1c?p=8866) |\n| 巴菲特阴谋 | 余治国 | [下载](https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866) |\n| 不平等社会 | 沃尔特・沙伊德尔 | [下载](https://url89.ctfile.com/f/31084289-1357033531-debc2e?p=8866) |\n| 贫穷的终结 | 安妮・罗瑞 | [下载](https://url89.ctfile.com/f/31084289-1357033516-85ae36?p=8866) |\n| 坚定不移 | 保罗・沃尔克 | [下载](https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866) |\n| 巨变：当代政治与经济的起源 | 卡尔・波兰尼 | [下载](https://url89.ctfile.com/f/31084289-1357033237-8eb76d?p=8866) |\n| 郁金香热 | 迈克・达什 | [下载](https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866) |\n| 低增长社会 | 大前研一 | [下载](https://url89.ctfile.com/f/31084289-1357032994-77e8ac?p=8866) |\n| 超越金融（纪念版） | 乔治・索罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866) |\n| 进化：顶级企业家自述40年成长心法 | 正和岛 | [下载](https://url89.ctfile.com/f/31084289-1357032940-fc25a8?p=8866) |\n| 财富的帝国 | 约翰.S.戈登 | [下载](https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866) |\n| 半小时漫画理财课 | 八宝 | [下载](https://url89.ctfile.com/f/31084289-1357032925-3cfd22?p=8866) |\n| 权力密码 | 王伟 | [下载](https://url89.ctfile.com/f/31084289-1357032886-a0070a?p=8866) |\n| 一本书看透信贷 | 何华平 | [下载](https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866) |\n| 发现价格 | 姜洋 | [下载](https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866) |\n| 新规则 | 约翰·P.科特 | [下载](https://url89.ctfile.com/f/31084289-1357032412-bfca76?p=8866) |\n| 贸易打造的世界 | 彭慕兰/史蒂文・托皮克 | [下载](https://url89.ctfile.com/f/31084289-1357032328-91bb20?p=8866) |\n| 一本书读懂生活中的金融常识 | 陈思进 | [下载](https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866) |\n| 中国经济史 | 钱穆/叶龙 | [下载](https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866) |\n| 美林传奇 | 小温斯洛普 H.史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866) |\n| 金融的解释：王福重金融学通识课 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357030924-fca2c3?p=8866) |\n| 沙特公司 | 埃伦·R.沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866) |\n| 货币简史：从货币的起源到货币的未来 | 苗延波 | [下载](https://url89.ctfile.com/f/31084289-1357030525-dfd919?p=8866) |\n| 谁统治美国？公司富豪的胜利 | 威廉・多姆霍夫 | [下载](https://url89.ctfile.com/f/31084289-1357030330-7af268?p=8866) |\n| 被掩盖的原罪 | 爱德华・巴普蒂斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866) |\n| 清醒：如何用价值观创造价值 | 弗雷德・考夫曼 | [下载](https://url89.ctfile.com/f/31084289-1357029778-65a8aa?p=8866) |\n| 廉价的代价 | 拉杰・帕特尔 | [下载](https://url89.ctfile.com/f/31084289-1357029697-5b7480?p=8866) |\n| 美国陷阱 | 弗雷德里克・皮耶鲁齐 | [下载](https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866) |\n| 中国改革三部曲 | 吴敬琏 | [下载](https://url89.ctfile.com/f/31084289-1357029502-af85d7?p=8866) |\n| 棉花帝国 | 斯文・贝克特 | [下载](https://url89.ctfile.com/f/31084289-1357029418-eec041?p=8866) |\n| 较量：乐观的经济学与悲观的生态学 | 保罗・萨宾 | [下载](https://url89.ctfile.com/f/31084289-1357029382-7451d7?p=8866) |\n| 从困境走向成功 | Pepe Nummi | [下载](https://url89.ctfile.com/f/31084289-1357029271-694df0?p=8866) |\n| 电竞经济 | 蔡湫雨 | [下载](https://url89.ctfile.com/f/31084289-1357029121-564941?p=8866) |\n| 任正非商业的逻辑 | 申辰 | [下载](https://url89.ctfile.com/f/31084289-1357029109-348519?p=8866) |\n| 经济学的思维方式（套装共2册） | 托马斯・索维尔 | [下载](https://url89.ctfile.com/f/31084289-1357028518-678150?p=8866) |\n| 过剩之地 | 莫妮卡・普拉萨德 | [下载](https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866) |\n| 激情创业 | 于刚 | [下载](https://url89.ctfile.com/f/31084289-1357028320-747aac?p=8866) |\n| 富豪的心理 | 雷纳・齐特尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357028158-e90c4b?p=8866) |\n| 债务危机 | 瑞・达利欧 | [下载](https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866) |\n| 认识经济 | 迪恩・卡尔兰/乔纳森・默多克 | [下载](https://url89.ctfile.com/f/31084289-1357028074-3310e2?p=8866) |\n| 八〇年代 | 柳红 | [下载](https://url89.ctfile.com/f/31084289-1357027843-4ff995?p=8866) |\n| 涛动周期论 | 周金涛 | [下载](https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866) |\n| 高效管理 | 乔纳森・莱蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357027273-0ff681?p=8866) |\n| 周期 | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866) |\n| 不颠覆，就会被淘汰 | 杰・萨米特 | [下载](https://url89.ctfile.com/f/31084289-1357027000-f4bdfc?p=8866) |\n| 金融科技 | 张健 | [下载](https://url89.ctfile.com/f/31084289-1357026967-ef96b8?p=8866) |\n| 小趋势² | 马克・佩恩/梅勒迪斯・法恩曼 | [下载](https://url89.ctfile.com/f/31084289-1357026817-44ce10?p=8866) |\n| 一件T恤的全球经济之旅（原书第2版） | 皮厄特拉・里佛利 | [下载](https://url89.ctfile.com/f/31084289-1357026304-99402d?p=8866) |\n| 变量 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357026250-f993f8?p=8866) |\n| 圈层效应 | 托马斯・科洛波洛斯/丹・克尔德森 | [下载](https://url89.ctfile.com/f/31084289-1357025653-5dccf9?p=8866) |\n| 美国增长的起落 | 罗伯特・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357025557-5fe21b?p=8866) |\n| 贪婪的七宗罪 | 斯图尔特・西姆 | [下载](https://url89.ctfile.com/f/31084289-1357025005-486788?p=8866) |\n| 货币大师 | 埃里克・罗威 | [下载](https://url89.ctfile.com/f/31084289-1357024936-eb9734?p=8866) |\n| 价值规律 | 水木然 | [下载](https://url89.ctfile.com/f/31084289-1357024876-c08f98?p=8866) |\n| 解读中国经济（增订版） | 林毅夫 | [下载](https://url89.ctfile.com/f/31084289-1357024711-3b0c88?p=8866) |\n| 订阅：数字时代的商业变现路径 | 罗伯特・金奇尔 | [下载](https://url89.ctfile.com/f/31084289-1357024594-662d48?p=8866) |\n| 我为什么离开高盛 | 格雷格・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866) |\n| 企鹅沟通力系列合集 | 马丁・曼瑟等 | [下载](https://url89.ctfile.com/f/31084289-1357024171-e3e647?p=8866) |\n| 巨大的鸿沟 | 约瑟夫・斯蒂格利茨 | [下载](https://url89.ctfile.com/f/31084289-1357024129-2ba25b?p=8866) |\n| 底特律往事 | 比尔・弗拉斯科 | [下载](https://url89.ctfile.com/f/31084289-1357023997-84ee07?p=8866) |\n| 高盛帝国（套装上下册） | 查尔斯・埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357023976-b41d46?p=8866) |\n| 欧元的思想之争 | 马库斯・布伦纳迈耶等 | [下载](https://url89.ctfile.com/f/31084289-1357023955-ebc85a?p=8866) |\n| 算法的陷阱 | 阿里尔・扎拉奇 | [下载](https://url89.ctfile.com/f/31084289-1357023871-525e18?p=8866) |\n| 乡土中国、江村经济套装 | 费孝通 | [下载](https://url89.ctfile.com/f/31084289-1357023865-d85b53?p=8866) |\n| 认识商业 | 威廉・尼克尔斯等 | [下载](https://url89.ctfile.com/f/31084289-1357023658-a338bd?p=8866) |\n| 金融帝国风云录（共5册） | 茜拉・科尔哈特卡等 | [下载](https://url89.ctfile.com/f/31084289-1357023586-f64635?p=8866) |\n| 大而不倒 | 安德鲁・罗斯・索尔金 | [下载](https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866) |\n| 数文明 | 涂子沛 | [下载](https://url89.ctfile.com/f/31084289-1357023280-df0063?p=8866) |\n| 理解增长 | 道格拉斯・洛西科夫 | [下载](https://url89.ctfile.com/f/31084289-1357023250-ff1bb1?p=8866) |\n| 经济学关我什么事 | 文安德・冯・彼特尔斯多夫 | [下载](https://url89.ctfile.com/f/31084289-1357022896-9538ae?p=8866) |\n| 选择的悖论 | 巴里・施瓦茨 | [下载](https://url89.ctfile.com/f/31084289-1357022416-1776f2?p=8866) |\n| 赤裸裸的统计学 | 查尔斯・惠伦 | [下载](https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866) |\n| 时间的玫瑰（全新升级版） | 但斌 | [下载](https://url89.ctfile.com/f/31084289-1357022164-b67987?p=8866) |\n| 十年轮回（第三版） | 沈联涛 | [下载](https://url89.ctfile.com/f/31084289-1357022110-935967?p=8866) |\n| 韭菜的自我修养 | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1357022098-fc2d5f?p=8866) |\n| 黑石的选择 | 彼得・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357021963-e5f1f3?p=8866) |\n| 思维的发现 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357021693-d754a0?p=8866) |\n| 洞见未来商业（套装共4册） | 威廉・尼克尔斯等 | [下载](https://url89.ctfile.com/f/31084289-1357021645-7dcc3c?p=8866) |\n| 资本主义简史 | 于尔根・科卡 | [下载](https://url89.ctfile.com/f/31084289-1357021411-5edcb9?p=8866) |\n| 战后日本经济史 | 野口悠纪雄 | [下载](https://url89.ctfile.com/f/31084289-1357021297-512a7a?p=8866) |\n| 经济的律动 | 徐远 | [下载](https://url89.ctfile.com/f/31084289-1357021153-d537b4?p=8866) |\n| 大众经济学 | 帕萨・达斯古普塔 | [下载](https://url89.ctfile.com/f/31084289-1357021042-91492b?p=8866) |\n| 经济的本质 | 简·雅各布斯 | [下载](https://url89.ctfile.com/f/31084289-1357021006-706a67?p=8866) |\n| 比赛中的行为经济学 | 托拜厄斯・莫斯科维茨 | [下载](https://url89.ctfile.com/f/31084289-1357020904-4868bc?p=8866) |\n| 崛起大战略 | 新玉言 | [下载](https://url89.ctfile.com/f/31084289-1357020853-23b46a?p=8866) |\n| 美联储的诞生 | 罗杰・洛温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866) |\n| 击败庄家 | 爱德华・索普 | [下载](https://url89.ctfile.com/f/31084289-1357020409-f64014?p=8866) |\n| 行动的勇气 | 本・伯南克 | [下载](https://url89.ctfile.com/f/31084289-1357020406-9e3f24?p=8866) |\n| 非理性的时代 | 查尔斯・汉迪 | [下载](https://url89.ctfile.com/f/31084289-1357020283-d423d5?p=8866) |\n| 薛兆丰经济学讲义 | 薛兆丰 | [下载](https://url89.ctfile.com/f/31084289-1357020289-11672c?p=8866) |\n| 博弈与社会 | 张维迎 | [下载](https://url89.ctfile.com/f/31084289-1357020199-4cd873?p=8866) |\n| 搞定（全三册） | 戴维・艾伦 | [下载](https://url89.ctfile.com/f/31084289-1357020034-d97493?p=8866) |\n| 错误的行为+助推+赢家的诅咒 | 理查德・塞勒 | [下载](https://url89.ctfile.com/f/31084289-1357019986-7e603f?p=8866) |\n| 横越未知 | 周健工 | [下载](https://url89.ctfile.com/f/31084289-1357019683-4e86be?p=8866) |\n| 钱：7步创造终身收入 | 托尼・罗宾斯 | [下载](https://url89.ctfile.com/f/31084289-1357019368-76a1cb?p=8866) |\n| 中国财政史十六讲 | 刘守刚 | [下载](https://url89.ctfile.com/f/31084289-1357019311-2e842e?p=8866) |\n| 大萧条与罗斯福新政 | 埃里克・劳赫威 | [下载](https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866) |\n| 金融可以颠覆历史 | 王巍 | [下载](https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866) |\n| 繁荣的代价 | 托德·G·布赫霍尔茨  | [下载](https://url89.ctfile.com/f/31084289-1357019242-46e661?p=8866) |\n| 成功与运气 | 罗伯特・弗兰克 | [下载](https://url89.ctfile.com/f/31084289-1357019080-7e8875?p=8866) |\n| 脑洞经济学 | 温义飞 | [下载](https://url89.ctfile.com/f/31084289-1357018693-2f6ae5?p=8866) |\n| 一件T恤的全球经济之旅 | 皮翠拉・瑞沃莉 | [下载](https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866) |\n| 伟大的中国工业革命 | 文一 | [下载](https://url89.ctfile.com/f/31084289-1357018393-aa4452?p=8866) |\n| 萨缪尔森经济学精选套装（第19版共4册） | 保罗・萨缪尔森 | [下载](https://url89.ctfile.com/f/31084289-1357018045-002052?p=8866) |\n| 一盘大棋？中国新命运解析 | 罗思义 | [下载](https://url89.ctfile.com/f/31084289-1357017718-94ee07?p=8866) |\n| 超级强势股：如何投资小盘价值成长股（珍藏版） | 肯尼斯・费雪 | [下载](https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866) |\n| 当音乐停止之后 | 艾伦・布林德 | [下载](https://url89.ctfile.com/f/31084289-1357017622-dcb745?p=8866) |\n| 与中国打交道 | 亨利・鲍尔森 | [下载](https://url89.ctfile.com/f/31084289-1357017364-a7a83d?p=8866) |\n| 激荡十年，水大鱼大 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357017037-4de889?p=8866) |\n| Business Adventures | John Brooks | [下载](https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866) |\n| 智能数据 | 比约恩・布劳卿等 | [下载](https://url89.ctfile.com/f/31084289-1357016881-3901ea?p=8866) |\n| 大国雄心 | 马丁・雅克 | [下载](https://url89.ctfile.com/f/31084289-1357016716-d4f605?p=8866) |\n| 混乱 | 蒂姆・哈福德  | [下载](https://url89.ctfile.com/f/31084289-1357016671-4c4a5f?p=8866) |\n| 超级版图 | 帕拉格・康纳 | [下载](https://url89.ctfile.com/f/31084289-1357016413-98fcdd?p=8866) |\n| 松下幸之助三书（套装共3本） | 松下幸之助 | [下载](https://url89.ctfile.com/f/31084289-1357016254-1869c5?p=8866) |\n| Fintech：全球金融科技权威指南 | 苏珊娜・奇斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866) |\n| 重塑组织 | 弗雷德里克・莱卢  | [下载](https://url89.ctfile.com/f/31084289-1357016041-672fb1?p=8866) |\n| 金钱永不眠：资本世界的暗流涌动和金融逻辑 | 香帅无花 | [下载](https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866) |\n| 内容经济 | 谢利明 | [下载](https://url89.ctfile.com/f/31084289-1357015945-14a86f?p=8866) |\n| 经济思想简史 | 海因茨・库尔茨 | [下载](https://url89.ctfile.com/f/31084289-1357015903-3a8b81?p=8866) |\n| 富足：改变人类未来的4大力量 | 彼得・戴曼迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357015900-a0dfb0?p=8866) |\n| 国富论（全译本） | 亚当・斯密 | [下载](https://url89.ctfile.com/f/31084289-1357015849-0975d2?p=8866) |\n| 决策的智慧 | 大卫・亨德森/查尔斯・胡珀 | [下载](https://url89.ctfile.com/f/31084289-1357015825-593c66?p=8866) |\n| 经济学通识课 | 尼尔・基什特尼 | [下载](https://url89.ctfile.com/f/31084289-1357015651-08daff?p=8866) |\n| 大拐点 | 袁剑 | [下载](https://url89.ctfile.com/f/31084289-1357015597-bc638c?p=8866) |\n| 经济解释（四卷本） | 张五常 | [下载](https://url89.ctfile.com/f/31084289-1357015558-88b6f3?p=8866) |\n| 经济奇点 | 史蒂文・希尔 | [下载](https://url89.ctfile.com/f/31084289-1357015492-0b15f1?p=8866) |\n| 新制造时代 | 王千马/梁冬梅/何丹 | [下载](https://url89.ctfile.com/f/31084289-1357015264-52fd08?p=8866) |\n| 金融的解释 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866) |\n| 金融炼金术的终结 | 默文・金 | [下载](https://url89.ctfile.com/f/31084289-1357015246-2b570e?p=8866) |\n| 货币野史 | 菲利克斯・马汀 | [下载](https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866) |\n| 机器人时代 | 马丁・福特 | [下载](https://url89.ctfile.com/f/31084289-1357015234-30ae0c?p=8866) |\n| 金融的本质 | 本・伯南克 | [下载](https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866) |\n| 极简GDP史 | 黛安娜・科伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357015075-588dba?p=8866) |\n| 货币简史 | 卡比尔・塞加尔 | [下载](https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866) |\n| 白银资本：重视经济全球化中的东方 | 贡德・弗兰克 | [下载](https://url89.ctfile.com/f/31084289-1357014439-33d3c7?p=8866) |\n| 第一大亨（套装共2册） | 斯泰尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357014319-72a8ef?p=8866) |\n| 助推 | 理查德・泰勒/卡斯・桑斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357014280-c17c13?p=8866) |\n| 大众创新 | 埃里克・冯・希佩尔 | [下载](https://url89.ctfile.com/f/31084289-1357014226-977731?p=8866) |\n| 妙趣横生博弈论（珍藏版） | 阿维纳什・迪克西特/巴里・奈尔伯夫 | [下载](https://url89.ctfile.com/f/31084289-1357014160-37866b?p=8866) |\n| 用博弈的思维看世界 | 蒋文华 | [下载](https://url89.ctfile.com/f/31084289-1357014109-0ed381?p=8866) |\n| 纯粹经济学 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357013980-1ffdbe?p=8866) |\n| “错误”的行为 | 理查德・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357013920-5d454d?p=8866) |\n| 博弈论的诡计 | 王春永 | [下载](https://url89.ctfile.com/f/31084289-1357013656-8b275f?p=8866) |\n| 博弈论平话 | 王则柯 | [下载](https://url89.ctfile.com/f/31084289-1357013665-39aa00?p=8866) |\n| 中央帝国的财政密码 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866) |\n| 伟大的博弈 | 约翰・斯蒂尔・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866) |\n| 无价 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866) |\n| 中国经济大萧条还有多远 | 刘军洛 | [下载](https://url89.ctfile.com/f/31084289-1357012900-3ec719?p=8866) |\n| 中国富人为何变穷 | 张庭宾/艾经纬 | [下载](https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866) |\n| 降维攻击：未来互联网商业的三体法则 | 高德 | [下载](https://url89.ctfile.com/f/31084289-1357012711-3075ba?p=8866) |\n| 玻璃笼子 | 尼古拉斯・卡尔  | [下载](https://url89.ctfile.com/f/31084289-1357012654-ab68ab?p=8866) |\n| 名创优品没有秘密 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866) |\n| 逃离不平等 | 安格斯・迪顿 | [下载](https://url89.ctfile.com/f/31084289-1357012318-a4fae0?p=8866) |\n| 我的第一本金融入门书 | 邹一南 | [下载](https://url89.ctfile.com/f/31084289-1357012303-007194?p=8866) |\n| 权力与繁荣 | 曼瑟・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1357012258-603067?p=8866) |\n| 信号与噪声 | 纳特・西尔弗 | [下载](https://url89.ctfile.com/f/31084289-1357012051-590465?p=8866) |\n| 与机器赛跑 | 埃里克・布林约尔松 | [下载](https://url89.ctfile.com/f/31084289-1357012012-9217f7?p=8866) |\n| 动物精神 | 乔治・阿克洛夫/罗伯特・希勒 | [下载](https://url89.ctfile.com/f/31084289-1357011916-aa3741?p=8866) |\n| 债务和魔鬼 | 阿代尔・特纳勋爵 | [下载](https://url89.ctfile.com/f/31084289-1357011802-eff8c4?p=8866) |\n| 大国大城 | 陆铭 | [下载](https://url89.ctfile.com/f/31084289-1357011787-8e42f4?p=8866) |\n| 资本社会的17个矛盾 | 大卫・哈维 | [下载](https://url89.ctfile.com/f/31084289-1357011637-aacc42?p=8866) |\n| 中国是部金融史 | 陈雨露 | [下载](https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866) |\n| 中国是部金融史2 | 陈雨露 | [下载](https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866) |\n| 小岛经济学 | 彼得・希夫/安德鲁・希 | [下载](https://url89.ctfile.com/f/31084289-1357011544-598357?p=8866) |\n| 世界的逻辑 | 大卫・哈维 | [下载](https://url89.ctfile.com/f/31084289-1357011373-733a50?p=8866) |\n| 中国大趋势：新社会的八大支柱 | 约翰・奈斯比特 | [下载](https://url89.ctfile.com/f/31084289-1357011295-ef8ccd?p=8866) |\n| 在星巴克要买大杯咖啡 | 吉本佳生 | [下载](https://url89.ctfile.com/f/31084289-1357011169-86f7ad?p=8866) |\n| 千年金融史 | 威廉・戈兹曼 | [下载](https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866) |\n| 创新的先知 | 托马斯・麦克劳 | [下载](https://url89.ctfile.com/f/31084289-1357010812-0d5497?p=8866) |\n| 区块链社会 | 龚鸣 | [下载](https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866) |\n| 菜场经济学 | 财上海 | [下载](https://url89.ctfile.com/f/31084289-1357010680-4deff8?p=8866) |\n| 自私的皮球 | 辉格 | [下载](https://url89.ctfile.com/f/31084289-1357010674-bc3805?p=8866) |\n| 金融炼金术 | 乔治・索罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866) |\n| 哈佛商业评论・像管理者一样思考（全15册） | 哈佛商业评论 | [下载](https://url89.ctfile.com/f/31084289-1357010416-9b6248?p=8866) |\n| 大势研判：经济、政策与资本市场 | 任泽平 | [下载](https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866) |\n| 关系力 | 蒂姆・邓普顿 | [下载](https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866) |\n| 货币战争（套装共5册） | 宋鸿兵 | [下载](https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866) |\n| 倾听全球的声音（全10册） | 经济学人 | [下载](https://url89.ctfile.com/f/31084289-1357010230-dfe349?p=8866) |\n| 黑天鹅：如何应对不可预知的未来（升级版） | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357010107-9f4cbc?p=8866) |\n| 信任 | 弗朗西斯・福山 | [下载](https://url89.ctfile.com/f/31084289-1357009633-ce67ee?p=8866) |\n| 投资异类 | 王利杰 | [下载](https://url89.ctfile.com/f/31084289-1357009507-a811ef?p=8866) |\n| 金钱不能买什么 | 迈克尔・桑德尔 | [下载](https://url89.ctfile.com/f/31084289-1357009447-bec7f0?p=8866) |\n| 变革中国：市场经济的中国之路 | 罗纳德・哈里・科斯 | [下载](https://url89.ctfile.com/f/31084289-1357009333-847c6a?p=8866) |\n| 人类货币史 | 戴维・欧瑞尔 | [下载](https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866) |\n| 世界是红的：看懂中国经济格局的一本书 | 白云先生 | [下载](https://url89.ctfile.com/f/31084289-1357009159-272484?p=8866) |\n| 国家兴衰 | 鲁奇尔・夏尔马 | [下载](https://url89.ctfile.com/f/31084289-1357008958-5382a7?p=8866) |\n| 科技之巅 | 麻省理工科技评论 | [下载](https://url89.ctfile.com/f/31084289-1357008931-e2abf2?p=8866) |\n| 大揭秘：庞氏骗局的前世今生 | 柯琳・克罗丝 | [下载](https://url89.ctfile.com/f/31084289-1357008772-79825d?p=8866) |\n| 理性乐观派：一部人类经济进步史 | 马特・里德利 | [下载](https://url89.ctfile.com/f/31084289-1357008781-b8b9ad?p=8866) |\n| 镜厅 | 巴里・埃森格林 | [下载](https://url89.ctfile.com/f/31084289-1357008706-d0afd8?p=8866) |\n| 人工智能 | 李开复/王咏刚  | [下载](https://url89.ctfile.com/f/31084289-1357008751-19b821?p=8866) |\n| 经济学的思维方式 | 保罗・海恩/彼得・勃特克等 | [下载](https://url89.ctfile.com/f/31084289-1357008682-5efea1?p=8866) |\n| 活学活用博弈论 | 詹姆斯・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357008469-ce766b?p=8866) |\n| 风口上的猪：一本书看懂互联网金融 | 肖璟 | [下载](https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866) |\n| 大国的兴衰（套装共2册） | 保罗・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1357008259-394f05?p=8866) |\n| 引爆点：如何制造流行 | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866) |\n| 不可思议的年代 | 乔舒亚・库珀・雷默  | [下载](https://url89.ctfile.com/f/31084289-1357008043-4f0d68?p=8866) |\n| 一本读通10位经济学大师 | 菲尔・桑顿 | [下载](https://url89.ctfile.com/f/31084289-1357007854-f5a6d5?p=8866) |\n| 非富不可：曹仁超给年轻人的投资忠告 | 曹仁超 | [下载](https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866) |\n| 新一轮产业革命 | 亚力克・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357007671-2f2880?p=8866) |\n| 三十年河东：权力市场经济的困境 | 杨继绳 | [下载](https://url89.ctfile.com/f/31084289-1357007629-68d244?p=8866) |\n| 金钱有术 | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866) |\n| 掌舵三部曲（掌舵＋掌舵2+舵手） | 龙在宇 | [下载](https://url89.ctfile.com/f/31084289-1357007569-4330d8?p=8866) |\n| 我最需要的理财常识书 | 王华 | [下载](https://url89.ctfile.com/f/31084289-1357007512-679e65?p=8866) |\n| 稀缺：我们是如何陷入贫穷与忙碌的 | 塞德希尔・穆来纳森 / 埃尔德・沙菲尔  | [下载](https://url89.ctfile.com/f/31084289-1357007398-0da6e0?p=8866) |\n| 德鲁克的最后忠告 | 伊丽莎白・哈斯・埃德莎姆 | [下载](https://url89.ctfile.com/f/31084289-1357007284-95edb3?p=8866) |\n| 进步时代 | 张国庆 | [下载](https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866) |\n| 郎咸平说：新经济颠覆了什么 | 郎咸平 | [下载](https://url89.ctfile.com/f/31084289-1357007194-87eec7?p=8866) |\n| 集装箱改变世界（修订版） | 马克・莱文森 | [下载](https://url89.ctfile.com/f/31084289-1357007176-e9020a?p=8866) |\n| 年轻资本 | 凯文·鲁斯 | [下载](https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866) |\n| 股市长线法宝（原书第5版） | 杰里米J. 西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866) |\n| 富爸爸穷爸爸 | 罗伯特.T.清崎 | [下载](https://url89.ctfile.com/f/31084289-1357007110-af0d5d?p=8866) |\n| 国富论（缩译全彩插图本） | 亚当·斯密 | [下载](https://url89.ctfile.com/f/31084289-1357007206-3debf7?p=8866) |\n| 摩根财团 | 罗恩·彻诺 | [下载](https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866) |\n| 1分钟爱上管理学 | 姚余梁 | [下载](https://url89.ctfile.com/f/31084289-1357006891-f90357?p=8866) |\n| 草民经济学 | 南勇 | [下载](https://url89.ctfile.com/f/31084289-1357006894-56ae7d?p=8866) |\n| 钓愚：操纵与欺骗的经济学 | 乔治·阿克洛夫/罗伯特·席勒 | [下载](https://url89.ctfile.com/f/31084289-1357006885-f709bb?p=8866) |\n| 金融帝国：美国金融霸权的来源和基础 | 迈克尔·赫德森 | [下载](https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866) |\n| 梦想与浮沉：A股十年上市博弈（2004～2014） | 王骥跃/班妮 | [下载](https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866) |\n| TED竞争心理学 | 玛格丽特·赫夫南 | [下载](https://url89.ctfile.com/f/31084289-1357006765-ee8f78?p=8866) |\n| 时寒冰说：未来二十年，经济大趋势（合集） | 时寒冰 | [下载](https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866) |\n| 世界是部金融史（全新修订典藏版） | 陈雨露/杨栋  | [下载](https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866) |\n| 海上帝国 | 萝莉·安·拉罗科 | [下载](https://url89.ctfile.com/f/31084289-1357006567-e71694?p=8866) |\n| 还原真实的美联储 | 王健 | [下载](https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866) |\n| 地产江湖 | 肖宾 | [下载](https://url89.ctfile.com/f/31084289-1357006465-0c5bcc?p=8866) |\n| 拿什么拯救中国经济？ | 叶檀 | [下载](https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866) |\n| 戴立宁的传记与文集 | 戴立宁 | [下载](https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866) |\n| 金融之王 | 利雅卡特・艾哈迈德 | [下载](https://url89.ctfile.com/f/31084289-1357006060-6d6043?p=8866) |\n| 豪门兴衰：百年香港商业 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866) |\n| 荣氏百年：中国商业第一家族 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357006012-4096ac?p=8866) |\n| 自由选择（珍藏版） | 米尔顿・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1357005688-284601?p=8866) |\n| 生活中的经济学 | 吉蒂・贝克尔 | [下载](https://url89.ctfile.com/f/31084289-1357005685-e57087?p=8866) |\n| 增长的极限 | 德内拉・梅多斯 | [下载](https://url89.ctfile.com/f/31084289-1357005715-14a31a?p=8866) |\n| 盘活：中国民间金融百年风云 | 王千马 | [下载](https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866) |\n| 历代经济变革得失 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005394-6e2c3b?p=8866) |\n| 跌荡一百年：中国企业1870-1977（纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005442-27a545?p=8866) |\n| 浩荡两千年：中国企业公元前7世纪-1869年 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005376-f2a857?p=8866) |\n| 非理性繁荣（第二版） | 罗伯特·希勒 | [下载](https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866) |\n| 集体行动的逻辑 | 曼瑟・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1357005307-139e23?p=8866) |\n| 天才的回声 | 托德・布赫霍尔茨 | [下载](https://url89.ctfile.com/f/31084289-1357005325-8061fd?p=8866) |\n| 经济学常识1000问（超值金版） | 孙豆豆 | [下载](https://url89.ctfile.com/f/31084289-1357005202-d6a781?p=8866) |\n| 资本的雪球 | 吕波 | [下载](https://url89.ctfile.com/f/31084289-1357005127-494752?p=8866) |\n| 斯坦福极简经济学 | 蒂莫西・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866) |\n| 大江东去（全3册） | 阿耐 | [下载](https://url89.ctfile.com/f/31084289-1357005040-5558e2?p=8866) |\n| 大败局（十周年套装纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357005004-c6614b?p=8866) |\n| 反脆弱：从不确定性中获益 | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357004803-db29ba?p=8866) |\n| 沸腾十五年 | 林军 | [下载](https://url89.ctfile.com/f/31084289-1357004791-8293a3?p=8866) |\n| 激荡三十年（套装纪念版） | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357004818-5915ea?p=8866) |\n| 魔鬼经济学 | 史蒂芬・列维特 | [下载](https://url89.ctfile.com/f/31084289-1357004776-64c28d?p=8866) |\n"
  },
  {
    "path": "md/经济史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 经济史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 新食货志 | 杜君立 | [下载](https://url89.ctfile.com/f/31084289-1357046455-6cccab?p=8866) |\n| 无情的革命 | 乔伊斯・阿普尔比 | [下载](https://url89.ctfile.com/f/31084289-1357034626-9dc9a5?p=8866) |\n| 家族、土地与祖先 | 易劳逸 | [下载](https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866) |\n| 经济增长的迷雾 | 威廉・伊斯特利 | [下载](https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866) |\n"
  },
  {
    "path": "md/经济学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 经济学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 熊秉元生活经济学九部曲（套装共9册） | 熊秉元 | [下载](https://url89.ctfile.com/f/31084289-1375512484-bc72f7?p=8866) |\n| 1小时图解经济学 | 铃木一之 | [下载](https://url89.ctfile.com/f/31084289-1357004122-0feb48?p=8866) |\n| 分析与思考 | 黄奇帆 | [下载](https://url89.ctfile.com/f/31084289-1356999058-c4ff9b?p=8866) |\n| 漫画经济学一看就懂 | 武敬敏/田萍 | [下载](https://url89.ctfile.com/f/31084289-1356998920-f86ba8?p=8866) |\n| 诺贝尔经济学奖经典文库系列（套装共11册） | 保罗・克鲁格曼等 | [下载](https://url89.ctfile.com/f/31084289-1356995938-fd0511?p=8866) |\n| 牛奶可乐经济学套装（全四册） | 罗伯特・弗兰克 | [下载](https://url89.ctfile.com/f/31084289-1356986215-95b568?p=8866) |\n| 海盗经济学 | 彼得・里森 | [下载](https://url89.ctfile.com/f/31084289-1357050655-a3539f?p=8866) |\n| 给年轻人的极简金融课 | 童哲 | [下载](https://url89.ctfile.com/f/31084289-1357047652-cac8d7?p=8866) |\n| 经济学要义 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357044937-083bb7?p=8866) |\n| 市场真相 | 杰克D.施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866) |\n| 就业、利息和货币通论 | 约翰・梅纳德・凯恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357034656-57288e?p=8866) |\n| People, Power, and Profits | Joseph E. Stiglitz | [下载](https://url89.ctfile.com/f/31084289-1357034398-053bfe?p=8866) |\n| 精准投资 | 管清友 | [下载](https://url89.ctfile.com/f/31084289-1357032097-a4efc4?p=8866) |\n| 如何看待全球化 | 彼得・辛格 | [下载](https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866) |\n| 养老保险经济学 | 袁志刚 | [下载](https://url89.ctfile.com/f/31084289-1357031059-7ae40f?p=8866) |\n| 有闲阶级论 | 凡勃伦 | [下载](https://url89.ctfile.com/f/31084289-1357030537-777029?p=8866) |\n| 诺贝尔经济学奖的逻辑 | 阿夫纳・奥弗尔/加布里埃尔・索德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357030366-30de9b?p=8866) |\n| AI极简经济学 | 阿杰伊・阿格拉沃尔 | [下载](https://url89.ctfile.com/f/31084289-1357026862-49e254?p=8866) |\n| 创新法则：名企破局秘笈 | 理查德・科克等 | [下载](https://url89.ctfile.com/f/31084289-1357022977-4889d3?p=8866) |\n| 资本全球化 | 巴里・埃森格林 | [下载](https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866) |\n| 灰犀牛：如何应对大概率危机 | 米歇尔・渥克 | [下载](https://url89.ctfile.com/f/31084289-1357010110-fa186a?p=8866) |\n| 随机漫步的傻瓜 | 戴纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866) |\n| 一本读通10位经济学大师 | 菲尔・桑顿 | [下载](https://url89.ctfile.com/f/31084289-1357007854-f5a6d5?p=8866) |\n"
  },
  {
    "path": "md/经管.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 经管\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 反直觉 | 理查德・肖顿 | [下载](https://url89.ctfile.com/f/31084289-1356991807-b3fa21?p=8866) |\n| 思考的技术 | 大前研一 | [下载](https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866) |\n| 组织革新 | 杨国安/戴维・尤里奇 | [下载](https://url89.ctfile.com/f/31084289-1357052449-dfd4f2?p=8866) |\n| 领导力精进 | 马歇尔・古德史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866) |\n| 华与华百万大奖赛案例集 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866) |\n| 助推（实践版） | 戴维・哈尔彭 | [下载](https://url89.ctfile.com/f/31084289-1357043941-cd894d?p=8866) |\n| 智识的冒险 | 潘启雯 | [下载](https://url89.ctfile.com/f/31084289-1357043764-78293a?p=8866) |\n| 345薪酬 | 李祖滨/汤鹏等 | [下载](https://url89.ctfile.com/f/31084289-1357034002-cf5f79?p=8866) |\n| 25%的回头客创造75%的利润 | 高田靖久 | [下载](https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866) |\n| 事实 | 汉斯・罗斯林/欧拉・罗斯林 | [下载](https://url89.ctfile.com/f/31084289-1357030564-ad1a6d?p=8866) |\n| 从1到N：企业数字化生存指南 | 尤尔根・梅菲特/沙莎 | [下载](https://url89.ctfile.com/f/31084289-1357030510-608e72?p=8866) |\n| 崩溃 | 克里斯・克利尔菲尔德/安德拉什・蒂尔克斯克 | [下载](https://url89.ctfile.com/f/31084289-1357030447-711f24?p=8866) |\n| 沟通力就是执行力 | 赵伟 | [下载](https://url89.ctfile.com/f/31084289-1357027924-49edb9?p=8866) |\n| 超级激励者 | 西蒙・斯涅克 | [下载](https://url89.ctfile.com/f/31084289-1357023496-f9fdc6?p=8866) |\n| 麻省理工深度思考法 | 平井孝志 | [下载](https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866) |\n| 诺基亚总裁自述：重压之下 | 约玛・奥利拉/哈利・沙库马 | [下载](https://url89.ctfile.com/f/31084289-1357017967-f37367?p=8866) |\n| 商业模式全史 | 三谷宏治 | [下载](https://url89.ctfile.com/f/31084289-1357017052-d7e7bd?p=8866) |\n| 共赢 | 约翰・麦克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1357016227-aa004f?p=8866) |\n"
  },
  {
    "path": "md/经营.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 经营\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 华与华方法 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357000078-837358?p=8866) |\n| 关键的少数 | 乔恩・卡岑巴赫/詹姆斯・托马斯/格雷琴・安德森 | [下载](https://url89.ctfile.com/f/31084289-1356997447-983a7c?p=8866) |\n| 稻盛和夫经营实录（共5册） | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1356995602-63c5f5?p=8866) |\n| 干法（口袋版） | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866) |\n| 轻战略：量子时代的敏捷决策 | 许正 | [下载](https://url89.ctfile.com/f/31084289-1357045396-08411d?p=8866) |\n| 褚时健经营哲学系列（套装共3册） | 张小军 | [下载](https://url89.ctfile.com/f/31084289-1357044763-9f2f45?p=8866) |\n| 王道的经营（套装共6册） | 施振荣 | [下载](https://url89.ctfile.com/f/31084289-1357038655-84aceb?p=8866) |\n| 重新定义系列（共四册） | 埃里克・施密特等 | [下载](https://url89.ctfile.com/f/31084289-1357032847-a1873b?p=8866) |\n| 阿米巴核能 | 胡八一 | [下载](https://url89.ctfile.com/f/31084289-1357027267-f8932f?p=8866) |\n| 左脑思考，右脑执行 | 罗森维 | [下载](https://url89.ctfile.com/f/31084289-1357026472-343411?p=8866) |\n"
  },
  {
    "path": "md/经验.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 经验\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 第五项修炼（套装共5册） | 彼得・圣吉 | [下载](https://url89.ctfile.com/f/31084289-1357030288-17bf8f?p=8866) |\n"
  },
  {
    "path": "md/绘本.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 绘本\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 沙发上的心理学 | 菲利帕・佩里 | [下载](https://url89.ctfile.com/f/31084289-1375497946-e0bf91?p=8866) |\n| 入夜识 | FL-ZC小花/何敬尧 | [下载](https://url89.ctfile.com/f/31084289-1375498510-74f5f2?p=8866) |\n| 抱住棒棒的自己 | 徐慢慢心理话 | [下载](https://url89.ctfile.com/f/31084289-1375499602-b596d7?p=8866) |\n| 一只猫的存在主义思考 | 卡尔・史蒂文斯 | [下载](https://url89.ctfile.com/f/31084289-1375499605-2ef3e0?p=8866) |\n| 生活蒙太奇 | 天然 | [下载](https://url89.ctfile.com/f/31084289-1375499752-4d354d?p=8866) |\n| 朝暮集 | 呼葱觅蒜/白落梅 | [下载](https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866) |\n| 给孩子的天工开物·绘本版（全三册） | 一页书 | [下载](https://url89.ctfile.com/f/31084289-1375499782-bae286?p=8866) |\n| 你说的那个朋友是不是你自己 | 山羊卡罗 | [下载](https://url89.ctfile.com/f/31084289-1375499956-bf68f9?p=8866) |\n| 忍不住想打扰你 | bibi园长 | [下载](https://url89.ctfile.com/f/31084289-1375500922-1b9c21?p=8866) |\n| 高木直子系列（套装共4册） | 高木直子 | [下载](https://url89.ctfile.com/f/31084289-1375503232-de6e88?p=8866) |\n| 饭太稀个人绘本画集合辑 | 饭太稀 | [下载](https://url89.ctfile.com/f/31084289-1375507219-43a2f5?p=8866) |\n| 深夜食堂（第2部：卷7~卷12） | 安倍夜郎 | [下载](https://url89.ctfile.com/f/31084289-1375508347-d4d29b?p=8866) |\n| 北海怪兽 | 彭磊 | [下载](https://url89.ctfile.com/f/31084289-1375511941-7ee0fe?p=8866) |\n| 聪明的老板不苛责摸鱼的人 | 哎呀我兔 | [下载](https://url89.ctfile.com/f/31084289-1375513525-565ebf?p=8866) |\n| 老鼠什么都知道 | 海带 | [下载](https://url89.ctfile.com/f/31084289-1375513681-e01d68?p=8866) |\n| 爸爸妈妈，这就是我自己喜欢的！ | 阿斯特丽德・戴斯博尔德 | [下载](https://url89.ctfile.com/f/31084289-1375513690-7699b6?p=8866) |\n| 埃郡往事 | 杰夫・勒米尔 | [下载](https://url89.ctfile.com/f/31084289-1357000252-e32b66?p=8866) |\n| 熊与狸的四季之旅 | 帆 | [下载](https://url89.ctfile.com/f/31084289-1356999634-e42cb4?p=8866) |\n| 我离开之后 | 苏西・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1356999259-2ed8b9?p=8866) |\n| 哆啦A梦珍藏版（第七部：卷37-卷42） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356998470-967b6a?p=8866) |\n| 哆啦A梦珍藏版（第八部：卷43-卷45） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356997591-eabcd8?p=8866) |\n| 哆啦A梦珍藏版（第五部：卷25-卷30） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356997618-932079?p=8866) |\n| 哆啦A梦珍藏版（第六部：卷31-卷36） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356997519-73ae65?p=8866) |\n| 哆啦A梦珍藏版（第三部：卷13-卷18） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356997318-46ced3?p=8866) |\n| 哆啦A梦珍藏版（第四部：卷19-卷24） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356996397-964930?p=8866) |\n| 哆啦A梦珍藏版（第一部：卷1-卷6） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356996331-fb7503?p=8866) |\n| 哆啦A梦珍藏版（第二部：卷7-卷12） | 藤子·F·不二雄 | [下载](https://url89.ctfile.com/f/31084289-1356996145-6743c1?p=8866) |\n| BEASTARS 动物狂想曲（第2部：卷9~卷15） | 板垣巴留 | [下载](https://url89.ctfile.com/f/31084289-1356994582-4fd0a8?p=8866) |\n| BEASTARS 动物狂想曲（第1部：卷1~卷8） | 板垣巴留 | [下载](https://url89.ctfile.com/f/31084289-1356993796-d76c26?p=8866) |\n| 从早“茫”到晚 | 西沃恩・加拉格尔 | [下载](https://url89.ctfile.com/f/31084289-1356990868-fddced?p=8866) |\n| 给孩子的清宫兽谱 | 小海/夏雪 | [下载](https://url89.ctfile.com/f/31084289-1356990316-560b44?p=8866) |\n| 给孩子的清宫海错图 | 夏雪著 | [下载](https://url89.ctfile.com/f/31084289-1356990100-c64ba9?p=8866) |\n| 给孩子的清宫鸟谱 | 小海 | [下载](https://url89.ctfile.com/f/31084289-1356990010-138e10?p=8866) |\n| 你总说没事，但我知道你偷偷哭过很多次 | 一禅小和尚诞 | [下载](https://url89.ctfile.com/f/31084289-1356989443-b417cf?p=8866) |\n| 中国妖怪大全 | 孙见坤 | [下载](https://url89.ctfile.com/f/31084289-1356989074-e85c87?p=8866) |\n| 名侦探柯南（第11部：卷81~卷88） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054771-56c4aa?p=8866) |\n| 名侦探柯南（第12部：卷89~卷95） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054726-43235d?p=8866) |\n| 名侦探柯南（第8部：卷57~卷64） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054645-c4772c?p=8866) |\n| 名侦探柯南（第9部：卷65~卷72） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054474-d26884?p=8866) |\n| 名侦探柯南（第10部：卷73~卷80） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054366-0dccb2?p=8866) |\n| 名侦探柯南（第5部：卷33~卷40） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054279-6954ac?p=8866) |\n| 名侦探柯南（第6部：卷41~卷48） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357054189-c343d7?p=8866) |\n| 名侦探柯南（第7部：卷49~卷56） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053856-fdbd3f?p=8866) |\n| 名侦探柯南（第1部：卷1~卷8） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053607-cae7ea?p=8866) |\n| 名侦探柯南（第2部：卷9~卷16） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053487-daf28b?p=8866) |\n| 名侦探柯南（第3部：卷17~卷24） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053508-e33a08?p=8866) |\n| 名侦探柯南（第4部：卷25~卷32） | 青山刚昌 | [下载](https://url89.ctfile.com/f/31084289-1357053445-22ed13?p=8866) |\n| 造境记 | 曾仁臻 | [下载](https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866) |\n| 伪装者：巴黎往事 | 蚕蚕 | [下载](https://url89.ctfile.com/f/31084289-1357053010-bfbea0?p=8866) |\n| 一见你就好心情 | 莉兹・克里莫 | [下载](https://url89.ctfile.com/f/31084289-1357052329-f958f2?p=8866) |\n| 可怕的中年 | 贾森・黑兹利 | [下载](https://url89.ctfile.com/f/31084289-1357052275-fe05f1?p=8866) |\n| 企鹅都市生存指南（套装全9册） | 贾森・黑兹利/乔尔・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357051681-aaa912?p=8866) |\n| 国家是怎样炼成的2 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357051738-87657f?p=8866) |\n| 拜见女皇陛下（套装10册） | ZCloud | [下载](https://url89.ctfile.com/f/31084289-1357050091-232091?p=8866) |\n| 才不要让你知道 | 方小孬 | [下载](https://url89.ctfile.com/f/31084289-1357049062-ca8818?p=8866) |\n| 三分钟漫画汽车史 | 赛雷 | [下载](https://url89.ctfile.com/f/31084289-1357049047-18c707?p=8866) |\n| 火影忍者（第10部：卷65~卷72） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357049263-5b61c1?p=8866) |\n| 火影忍者（外传：宇智波莎罗娜） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357048198-844218?p=8866) |\n| 火影忍者（第8部：卷49~卷56） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357048327-ad09a2?p=8866) |\n| 火影忍者（第9部：卷57~卷64） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357048300-dcb294?p=8866) |\n| 火影忍者（第5部：卷28~卷34） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047895-7c9166?p=8866) |\n| 火影忍者（第6部：卷35~卷41） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047679-80d7b1?p=8866) |\n| 火影忍者（第7部：卷42~卷48） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047649-541ed0?p=8866) |\n| 火影忍者（第3部：卷15~卷21） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047475-b30d93?p=8866) |\n| 火影忍者（第4部：卷22~卷27） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047292-9a2d01?p=8866) |\n| 父与子（果麦经典） | 埃·奥·卜劳恩 | [下载](https://url89.ctfile.com/f/31084289-1357046836-36864d?p=8866) |\n| 火影忍者（第1部：卷1~卷7） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047172-ef6884?p=8866) |\n| 火影忍者（第2部：卷8~卷14） | 岸本齐史 | [下载](https://url89.ctfile.com/f/31084289-1357047043-883e2e?p=8866) |\n| 故事的开始 | 幾米 | [下载](https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866) |\n| 爆笑校园（套装共12册） | 朱斌 | [下载](https://url89.ctfile.com/f/31084289-1357043569-392016?p=8866) |\n| 我们林地里的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866) |\n| 我们迷人的鸟：猫头鹰 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039900-b4e002?p=8866) |\n| 企鹅与其他海鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039798-46922b?p=8866) |\n| 我们唱歌的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866) |\n| 罗小黑战记1 | MTJJ | [下载](https://url89.ctfile.com/f/31084289-1357039825-7c8219?p=8866) |\n| 餐桌是我的调色盘 | 夏威夷 | [下载](https://url89.ctfile.com/f/31084289-1357034944-4e1c17?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子4 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357034260-49fad6?p=8866) |\n| 粗糙食堂 | 莲小兔 | [下载](https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866) |\n| 丰子恺漫画古诗文 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357033339-74b60c?p=8866) |\n| 生而为猫挺好的 | 猫小姐 | [下载](https://url89.ctfile.com/f/31084289-1357032892-97c9fb?p=8866) |\n| 成功的聪明人太多了，我必须为笨蛋争口气！ | 书单狗 | [下载](https://url89.ctfile.com/f/31084289-1357032904-86dc17?p=8866) |\n| 黄同学漫画中国史 | 那个黄同学 | [下载](https://url89.ctfile.com/f/31084289-1357032829-e87ebf?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子3 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357032709-0558a6?p=8866) |\n| 就喜欢你看不惯我又干不掉我的样子2 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357032409-a7c4f5?p=8866) |\n| 今天也吸收了猫能量 | 卵山玉子 | [下载](https://url89.ctfile.com/f/31084289-1357032508-c0c419?p=8866) |\n| 猫头鹰的咖啡馆 | 佐拉 | [下载](https://url89.ctfile.com/f/31084289-1357030627-2a5347?p=8866) |\n| 怪医杜立德（果麦经典） | 休・洛夫廷 | [下载](https://url89.ctfile.com/f/31084289-1357028107-938589?p=8866) |\n| 回答不了 | 匡扶 | [下载](https://url89.ctfile.com/f/31084289-1357024438-9fee7d?p=8866) |\n| 飞乐鸟的手绘旅行笔记：苏州·杭州 | 飞乐鸟 | [下载](https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866) |\n| 下一站，西藏 | 山小 | [下载](https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866) |\n| 写给孩子的山海经·鱼鸟篇 | 竹马书坊 | [下载](https://url89.ctfile.com/f/31084289-1357021516-6fb0ba?p=8866) |\n| 写给孩子的山海经·异兽篇 | 竹马书坊 | [下载](https://url89.ctfile.com/f/31084289-1357021321-ab85f8?p=8866) |\n| 写给孩子的山海经·人神篇 | 竹马书坊 | [下载](https://url89.ctfile.com/f/31084289-1357021315-1732de?p=8866) |\n| 睡了吗？摘颗星星给你 | LOST7 | [下载](https://url89.ctfile.com/f/31084289-1357020397-464256?p=8866) |\n| 睡不着：Tango一日一画 | Tango | [下载](https://url89.ctfile.com/f/31084289-1357017952-e205a1?p=8866) |\n| 尾文字鱼 | 伍肆 | [下载](https://url89.ctfile.com/f/31084289-1357013374-cb4cf7?p=8866) |\n| 怪咖的自我修养 | 闫景歌 | [下载](https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866) |\n| 你今天真好看 | 莉兹・克里莫 | [下载](https://url89.ctfile.com/f/31084289-1357009873-17cd96?p=8866) |\n| 我可以咬一口吗？ | 莉兹・克里莫 | [下载](https://url89.ctfile.com/f/31084289-1357006363-81268e?p=8866) |\n| 我所有的朋友都死了（套装共2册） | 艾弗里・蒙森 | [下载](https://url89.ctfile.com/f/31084289-1357005922-7a0d0f?p=8866) |\n"
  },
  {
    "path": "md/绘画.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 绘画\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 画以人传 | 陈文璟 | [下载](https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866) |\n| 100天后会死的鳄鱼君 | 菊池祐纪 | [下载](https://url89.ctfile.com/f/31084289-1375510312-e1ca94?p=8866) |\n| 画家的一天 | 段张取艺 | [下载](https://url89.ctfile.com/f/31084289-1375512166-2a760f?p=8866) |\n| 丰子恺绘画鲁迅小说 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1375512835-de753e?p=8866) |\n| 名画中的符号 | 平松洋 | [下载](https://url89.ctfile.com/f/31084289-1357001521-888cfc?p=8866) |\n| 慕尼黑老绘画陈列馆（伟大的博物馆） | 西尔维娅・波尔盖斯 | [下载](https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866) |\n| 中国绘画史 | 陈师曾 | [下载](https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866) |\n| 西方画家及其作品套装（全4册） | 王月亮 | [下载](https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866) |\n| 造境记 | 曾仁臻 | [下载](https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866) |\n| 大美不言 | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866) |\n| 抽象城市 | 克里斯托夫・尼曼 | [下载](https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866) |\n| 伦勃朗1642 | 张佳玮 | [下载](https://url89.ctfile.com/f/31084289-1357034395-0071c2?p=8866) |\n| 画见 | 止庵 | [下载](https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866) |\n| 初见卢浮宫 | 中野京子 | [下载](https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866) |\n| 西方绘画大师经典佳作：德加 | 唐一帆/牛雪彤 | [下载](https://url89.ctfile.com/f/31084289-1357026688-6d5b37?p=8866) |\n| 西方绘画大师经典佳作：莫奈 | 牛雪彤/唐一帆 | [下载](https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866) |\n| 一幅画开启的世界 | 高畑勋 | [下载](https://url89.ctfile.com/f/31084289-1357024951-5f5325?p=8866) |\n| 被误诊的艺术史 | 董悠悠 | [下载](https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866) |\n| 名画背后的故事（全五册） | 中野京子/顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357019560-5d3b15?p=8866) |\n| 小顾聊绘画·壹 | 顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357014850-625ef1?p=8866) |\n| 小顾聊绘画·贰 | 顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357014826-5cb55d?p=8866) |\n| 小顾聊神话 | 顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866) |\n"
  },
  {
    "path": "md/统计.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 统计\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 数据如何误导了我们 | 桑内・布劳 | [下载](https://url89.ctfile.com/f/31084289-1375493749-25b5e6?p=8866) |\n| 女士品茶 | 戴维・萨尔斯伯格 | [下载](https://url89.ctfile.com/f/31084289-1375512682-fdee18?p=8866) |\n| 原因与结果的经济学 | 中室牧子/津川友介 | [下载](https://url89.ctfile.com/f/31084289-1357052284-b4a58c?p=8866) |\n| 数据的真相 | 约翰・H. 约翰逊/迈克・格鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357030222-7f2378?p=8866) |\n| 简单统计学 | 加里・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357026838-46434f?p=8866) |\n| 赤裸裸的统计学 | 查尔斯・惠伦 | [下载](https://url89.ctfile.com/f/31084289-1357022326-3d05d9?p=8866) |\n"
  },
  {
    "path": "md/绩效.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 绩效\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 行动教练 | 季益祥 | [下载](https://url89.ctfile.com/f/31084289-1356999400-98dabd?p=8866) |\n| 知识管理 | 尼克・米尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357030318-1dd6c3?p=8866) |\n| OKR工作法 | 克里斯蒂娜・沃特克 | [下载](https://url89.ctfile.com/f/31084289-1357016293-dc135c?p=8866) |\n"
  },
  {
    "path": "md/维也纳.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 维也纳\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 维也纳艺术史博物馆 | 西尔维娅・波尔盖斯 | [下载](https://url89.ctfile.com/f/31084289-1357018669-686c5d?p=8866) |\n"
  },
  {
    "path": "md/缉毒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 缉毒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 孤鹰（全2册） | 邵雪城 | [下载](https://url89.ctfile.com/f/31084289-1357046029-a3ef29?p=8866) |\n| 无夜边境 | 田浩 | [下载](https://url89.ctfile.com/f/31084289-1357038571-bea58f?p=8866) |\n| 破冰行动 | 千羽之城 | [下载](链接未找到) |\n"
  },
  {
    "path": "md/编剧.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 编剧\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 救猫咪：电影编剧指南 | 布莱克・斯奈德 | [下载](https://url89.ctfile.com/f/31084289-1375512766-6f75de?p=8866) |\n| 怎样写故事 | 莉萨・克龙 | [下载](https://url89.ctfile.com/f/31084289-1357054225-f88c8b?p=8866) |\n| 经典人物原型45种 | 维多利亚・林恩・施密特 | [下载](https://url89.ctfile.com/f/31084289-1357009963-96a3a8?p=8866) |\n"
  },
  {
    "path": "md/编程.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 编程\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 图灵程序设计丛书：Java进阶高手（套装共8册） | 沃伯顿等 | [下载](https://url89.ctfile.com/f/31084289-1375510480-b4a2df?p=8866) |\n| 图灵前端核心知识进阶系列（套装全10册） | 韦鲁等 | [下载](https://url89.ctfile.com/f/31084289-1375510897-922ded?p=8866) |\n| 程序员编程语言经典合集（共5册） | 兰斯・尼塞斯等 | [下载](https://url89.ctfile.com/f/31084289-1356996589-3e3123?p=8866) |\n| 漫画算法 | 魏梦舒 | [下载](https://url89.ctfile.com/f/31084289-1357051504-2fb08b?p=8866) |\n| 动手学深度学习 | 阿斯顿・张等 | [下载](https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866) |\n| Python高性能编程 | 戈雷利克/欧日沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866) |\n| 零基础入门学习Python | 小甲鱼 | [下载](https://url89.ctfile.com/f/31084289-1357048366-64d455?p=8866) |\n| JavaScript函数式编程 | Michael Fogus | [下载](https://url89.ctfile.com/f/31084289-1357048030-9c7b24?p=8866) |\n| 写给所有人的编程思维 | 吉姆・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357030678-9a8eed?p=8866) |\n| 精通Python爬虫框架Scrapy | 迪米特里奥斯 考奇斯-劳卡斯 | [下载](https://url89.ctfile.com/f/31084289-1357026256-a24bfa?p=8866) |\n| 算法的乐趣 | 王晓华 | [下载](https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866) |\n| 编写可维护的JavaScript | 扎卡斯 | [下载](https://url89.ctfile.com/f/31084289-1357022983-6dc43b?p=8866) |\n| 精通正则表达式：第3版 | Jeffrey E·F·Friedl | [下载](https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866) |\n| Go语言实战 | William Kennedy等 | [下载](https://url89.ctfile.com/f/31084289-1357021657-466648?p=8866) |\n| 从Python开始学编程 | Vamei | [下载](https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866) |\n| Spring Boot实战 | Craig Walls | [下载](https://url89.ctfile.com/f/31084289-1357021069-b1405c?p=8866) |\n| Java程序员修炼之道 | Benjamin J. Evans/Martijn Verburg | [下载](https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866) |\n| Java 8实战 | Raoul-Gabriel Urma等 | [下载](https://url89.ctfile.com/f/31084289-1357021054-fef42d?p=8866) |\n| Vim实用技巧 | Drew Neil | [下载](https://url89.ctfile.com/f/31084289-1357020997-2ff693?p=8866) |\n| 像计算机科学家一样思考Python | Allen B.Downey | [下载](https://url89.ctfile.com/f/31084289-1357019812-6df559?p=8866) |\n| Python基础教程（第3版） | Magnus Lie Hetland | [下载](https://url89.ctfile.com/f/31084289-1357019476-163e41?p=8866) |\n| Linux环境编程：从应用到内核 | 高峰 | [下载](https://url89.ctfile.com/f/31084289-1357019278-91aa23?p=8866) |\n| GitHub入门与实践 | 大塚弘记 | [下载](https://url89.ctfile.com/f/31084289-1357018630-3c62a1?p=8866) |\n| Python核心编程（第3版） | Wesley Chun | [下载](https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866) |\n| 征服C指针 | 前桥和弥 | [下载](https://url89.ctfile.com/f/31084289-1357018567-39a964?p=8866) |\n| Python极客项目编程 | Mahesh Venkitachalam | [下载](https://url89.ctfile.com/f/31084289-1357018480-2d6eec?p=8866) |\n| 编程珠玑（第2版·修订版） | Jon Bentley | [下载](https://url89.ctfile.com/f/31084289-1357018450-0ab379?p=8866) |\n| 流畅的Python | Luciano Ramalho | [下载](https://url89.ctfile.com/f/31084289-1357018351-499390?p=8866) |\n| 锋利的jQuery（第2版） | 单东林 | [下载](https://url89.ctfile.com/f/31084289-1357016728-3282f4?p=8866) |\n| 跟老齐学Python | 老齐 | [下载](https://url89.ctfile.com/f/31084289-1357016623-4a24a9?p=8866) |\n| Python网络数据采集 | Ryan Mitchell | [下载](https://url89.ctfile.com/f/31084289-1357016428-d0fcfa?p=8866) |\n| 笨办法学Python | Zed A.Shaw | [下载](https://url89.ctfile.com/f/31084289-1357016419-cf9c7e?p=8866) |\n| Python编程：从入门到实践 | 埃里克・马瑟斯 | [下载](https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866) |\n| Python学习手册（原书第4版） | Mark Lutz | [下载](https://url89.ctfile.com/f/31084289-1357014307-045cb6?p=8866) |\n| 第一本Docker书（修订版） | 詹姆斯・特恩布尔 | [下载](https://url89.ctfile.com/f/31084289-1357013125-e87194?p=8866) |\n| iOS编程（第4版） | Christian Keur/Aaron Hillegass | [下载](https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866) |\n| 算法图解 | Aditya Bhargava | [下载](https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866) |\n| Python编程快速上手 | Al Sweigart | [下载](https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866) |\n| 算法神探 | 杰瑞米・库比卡 | [下载](https://url89.ctfile.com/f/31084289-1357009255-fb075f?p=8866) |\n| JavaScript权威指南（第6版） | David Flanagan | [下载](https://url89.ctfile.com/f/31084289-1357007116-b8fd4f?p=8866) |\n| Python核心编程（第二版） | 丘恩 | [下载](https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866) |\n| PHP和MySQL Web开发（原书第4版） | Luke Welling | [下载](https://url89.ctfile.com/f/31084289-1357005859-aace71?p=8866) |\n| 父与子的编程之旅 | Warren Sande | [下载](https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866) |\n"
  },
  {
    "path": "md/编程语言.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 编程语言\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| Clojure编程乐趣 | Michael Fogus/Chris Houser | [下载](https://url89.ctfile.com/f/31084289-1357021192-c6e841?p=8866) |\n"
  },
  {
    "path": "md/网络.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 网络\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 巴拉巴西网络科学 | 艾伯特-拉斯洛・巴拉巴西 | [下载](https://url89.ctfile.com/f/31084289-1357000138-cf99ca?p=8866) |\n| 网络战争 | 查尔斯・亚瑟 | [下载](https://url89.ctfile.com/f/31084289-1356986830-27b53e?p=8866) |\n| 网络（牛津通识读本） | 圭多・卡尔达雷利/米凯莱・卡坦扎罗 | [下载](https://url89.ctfile.com/f/31084289-1357053052-0ef287?p=8866) |\n| 人类网络 | 马修・杰克逊 | [下载](https://url89.ctfile.com/f/31084289-1357052041-4a19af?p=8866) |\n| 断网生活 | 贾健 | [下载](https://url89.ctfile.com/f/31084289-1357033096-f85ae2?p=8866) |\n| 增强人类 | 海伦・帕帕扬尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357030204-bca3d3?p=8866) |\n| 最后一个人类 | 马克・奥康奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357027636-2d1cd6?p=8866) |\n| 网络是怎样连接的 | 户根勤 | [下载](https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866) |\n| 图解HTTP | 上野宣 | [下载](https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866) |\n"
  },
  {
    "path": "md/网络小说.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 网络小说\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 将夜（精校版） | 猫腻 | [下载](https://url89.ctfile.com/f/31084289-1357049074-8f7e9a?p=8866) |\n| 苍壁书（共3册） | 青林之初 | [下载](https://url89.ctfile.com/f/31084289-1357045138-443d3b?p=8866) |\n"
  },
  {
    "path": "md/网络时代.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 网络时代\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 互联网新商业时代（套装共三册） | 克里斯・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357005286-82afd6?p=8866) |\n"
  },
  {
    "path": "md/罗马.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 罗马\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 哲人与权臣 | 詹姆斯・罗姆 | [下载](https://url89.ctfile.com/f/31084289-1375491652-6fd685?p=8866) |\n| 帝国与蛮族 | 彼得・希瑟 | [下载](https://url89.ctfile.com/f/31084289-1375497679-01c4af?p=8866) |\n| 罗马史纲 | 李筠 | [下载](https://url89.ctfile.com/f/31084289-1375498807-cf24d9?p=8866) |\n| 帝国统治的逻辑 | 赫尔弗里德・明克勒 | [下载](https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866) |\n| 古罗马文学史（全3册） | 江澜 | [下载](https://url89.ctfile.com/f/31084289-1375506940-b655c7?p=8866) |\n| 男人们的故事（套装3册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1375512532-808aae?p=8866) |\n| 幽灵帝国拜占庭 | 理查德・菲德勒 | [下载](https://url89.ctfile.com/f/31084289-1375512850-c7227f?p=8866) |\n| 庞贝：一座罗马城市的生与死 | 玛丽・比尔德 | [下载](https://url89.ctfile.com/f/31084289-1357001596-3c92ea?p=8866) |\n| 罗马三巨头 | 查尔斯・梅里维尔 | [下载](https://url89.ctfile.com/f/31084289-1356995458-5d95b6?p=8866) |\n| 赌徒恺撒 | 马丁・耶内 | [下载](https://url89.ctfile.com/f/31084289-1356992116-97297a?p=8866) |\n| 牛津古罗马史 | 约翰・博德曼 | [下载](https://url89.ctfile.com/f/31084289-1356991120-197cc0?p=8866) |\n| 古希腊罗马技术史（贝克知识丛书） | 赫尔穆特・施耐德 | [下载](https://url89.ctfile.com/f/31084289-1357052017-116918?p=8866) |\n| 古典时代的终结（贝克知识丛书） | 哈特温・布兰特 | [下载](https://url89.ctfile.com/f/31084289-1357051666-bf6462?p=8866) |\n| 罗马的复辟 | 彼得・希瑟 | [下载](https://url89.ctfile.com/f/31084289-1357049971-9284b6?p=8866) |\n| 罗马帝国兴亡史三部曲 | 罗伯特・格雷夫斯 | [下载](https://url89.ctfile.com/f/31084289-1357047541-286b5b?p=8866) |\n| 罗马的命运 | 凯尔・哈珀 | [下载](https://url89.ctfile.com/f/31084289-1357040251-bcd0df?p=8866) |\n| 罗马的崛起 | 安东尼・艾福瑞特 | [下载](https://url89.ctfile.com/f/31084289-1357039726-2352c5?p=8866) |\n| 迦太基必须毁灭 | 理查德・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357033276-eb158a?p=8866) |\n| 高卢战记 | 盖乌斯・尤利乌斯・恺撒 | [下载](https://url89.ctfile.com/f/31084289-1357030762-72487f?p=8866) |\n| 罗马帝国的梦魇 | 刘衍钢 | [下载](https://url89.ctfile.com/f/31084289-1357029178-61ff6d?p=8866) |\n| 罗马共和国的衰落 | A.H.比斯利 | [下载](https://url89.ctfile.com/f/31084289-1357027213-bd8c70?p=8866) |\n| 全译罗马帝国衰亡史（全12册） | 爱德华・吉本 | [下载](https://url89.ctfile.com/f/31084289-1357022686-8c5d14?p=8866) |\n| 奥古斯都 | 约翰・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357019974-84c627?p=8866) |\n| 罗马：一座城市的兴衰史 | 克里斯托弗・希伯特 | [下载](https://url89.ctfile.com/f/31084289-1357019185-aa4682?p=8866) |\n| 古代的希腊和罗马 | 吴于廑 | [下载](https://url89.ctfile.com/f/31084289-1357017154-8d701b?p=8866) |\n| 罗马爱经（企鹅经典） | 奥维德 | [下载](https://url89.ctfile.com/f/31084289-1357013023-103db9?p=8866) |\n| 罗马帝国的陨落 | 彼得・希瑟 | [下载](https://url89.ctfile.com/f/31084289-1357010386-84b362?p=8866) |\n| 罗马人的故事（套装共15册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357007845-c066ba?p=8866) |\n| 罗马史 | 特奥多尔・蒙森 | [下载](https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866) |\n| 罗马灭亡后的地中海世界（上下册） | 盐野七生 | [下载](https://url89.ctfile.com/f/31084289-1357007191-f5ddac?p=8866) |\n| 一本最危险的书 | 克里斯托夫·克里布斯 | [下载](https://url89.ctfile.com/f/31084289-1357006450-7d964b?p=8866) |\n"
  },
  {
    "path": "md/罗马史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 罗马史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 罗马史（贝克知识丛书） | 克劳斯・布林格曼 | [下载](https://url89.ctfile.com/f/31084289-1357051513-17a241?p=8866) |\n"
  },
  {
    "path": "md/罪案.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 罪案\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 三叉戟 | 吕铮 | [下载](https://url89.ctfile.com/f/31084289-1356986530-0dddac?p=8866) |\n| 夜行实录 | 徐浪 | [下载](https://url89.ctfile.com/f/31084289-1357052968-eec90d?p=8866) |\n| 十宗罪6 | 蜘蛛 | [下载](https://url89.ctfile.com/f/31084289-1357043728-a03a5b?p=8866) |\n| 第五个目标 | 白雾 | [下载](https://url89.ctfile.com/f/31084289-1357037845-992b8d?p=8866) |\n"
  },
  {
    "path": "md/美元.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美元\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 美元真相 | 达尔辛妮・大卫 | [下载](https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866) |\n| 美元病 | 叶冰 | [下载](https://url89.ctfile.com/f/31084289-1356998812-5c6954?p=8866) |\n| 布雷顿森林货币战 | 本・斯泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866) |\n"
  },
  {
    "path": "md/美国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 美国四百年 | 布・斯里尼瓦桑 | [下载](https://url89.ctfile.com/f/31084289-1375490923-e9b635?p=8866) |\n| 坠落与重生：911的故事 | 米切尔・祖科夫 | [下载](https://url89.ctfile.com/f/31084289-1375497535-e9ce53?p=8866) |\n| 大萧条前夜的繁荣与疯狂 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1375498222-e55345?p=8866) |\n| 美利坚的民族 | 科林・伍达德 | [下载](https://url89.ctfile.com/f/31084289-1375499449-5b4652?p=8866) |\n| 辉煌信标：美国灯塔史 | 埃里克・杰・多林 | [下载](https://url89.ctfile.com/f/31084289-1375499494-7adcd3?p=8866) |\n| 达摩流浪者 | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1375501198-87ebe7?p=8866) |\n| 平原上的城市 | 科马克・麦卡锡 | [下载](https://url89.ctfile.com/f/31084289-1375501537-1986a4?p=8866) |\n| 帝国统治的逻辑 | 赫尔弗里德・明克勒 | [下载](https://url89.ctfile.com/f/31084289-1375503304-037ef1?p=8866) |\n| 被误解的盐 | 詹姆斯・迪尼科兰托尼奥 | [下载](https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866) |\n| 美国的反智传统 | 理查德・霍夫施塔特 | [下载](https://url89.ctfile.com/f/31084289-1375506823-0cc3c2?p=8866) |\n| 弹劾 | 戴维・E.凯卫格 | [下载](https://url89.ctfile.com/f/31084289-1375509883-93ef6c?p=8866) |\n| 来自世界的消息 | 波莱特・吉尔斯 | [下载](https://url89.ctfile.com/f/31084289-1375510216-bd22d0?p=8866) |\n| 凶年 | 大卫・西蒙 | [下载](https://url89.ctfile.com/f/31084289-1375510729-95a57c?p=8866) |\n| 致命雕刻 | 杰夫里・迪弗 | [下载](https://url89.ctfile.com/f/31084289-1375511026-be629f?p=8866) |\n| 亲爱的图书馆 | 苏珊・奥尔琳 | [下载](https://url89.ctfile.com/f/31084289-1375511101-21bf23?p=8866) |\n| 帝国陷阱 | 诺埃尔・毛雷尔 | [下载](https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866) |\n| 创造差异 | 斯科特・麦克凯恩 | [下载](https://url89.ctfile.com/f/31084289-1375512001-af91e6?p=8866) |\n| 小镇美国 | 罗伯特・伍斯诺 | [下载](https://url89.ctfile.com/f/31084289-1375512082-f8d626?p=8866) |\n| 星河战队 | 罗伯特・海因莱因 | [下载](https://url89.ctfile.com/f/31084289-1375512394-fa353d?p=8866) |\n| 我们深陷泥潭 | 加・泽文 | [下载](https://url89.ctfile.com/f/31084289-1375513357-b71e8f?p=8866) |\n| 美国怎么了 | 安妮・凯斯/安格斯・迪顿 | [下载](https://url89.ctfile.com/f/31084289-1375513774-6bfe74?p=8866) |\n| 下沉年代 | 乔治・帕克 | [下载](https://url89.ctfile.com/f/31084289-1375513777-106914?p=8866) |\n| 美国不平等的起源 | 伊莎贝尔・威尔克森 | [下载](https://url89.ctfile.com/f/31084289-1357004350-775f2e?p=8866) |\n| 美国革命的激进主义 | 戈登·S.伍德 | [下载](https://url89.ctfile.com/f/31084289-1357003327-20516e?p=8866) |\n| 深暗 | 赫克托・托巴尔 | [下载](https://url89.ctfile.com/f/31084289-1357002850-10fa6c?p=8866) |\n| 冷泉港（理查德·耶茨文集） | 理查德・耶茨 | [下载](https://url89.ctfile.com/f/31084289-1357002343-3176c0?p=8866) |\n| 美国病 | 伊丽莎白・罗森塔尔 | [下载](https://url89.ctfile.com/f/31084289-1357002316-fd91df?p=8866) |\n| 小说家与小说 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357002274-876831?p=8866) |\n| 下落小猫与基础物理学 | 格雷戈里·J.格布尔 | [下载](https://url89.ctfile.com/f/31084289-1357001302-28b2c5?p=8866) |\n| 燃烧的大洋 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357000363-43c63c?p=8866) |\n| 觉醒 | 凯特・肖邦 | [下载](https://url89.ctfile.com/f/31084289-1357000351-1aaa04?p=8866) |\n| 好老师，坏老师 | 达娜・戈德斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356999274-f8c29d?p=8866) |\n| 右派国家（新版） | 约翰・米克尔思韦特/阿德里安・伍尔德里奇 | [下载](https://url89.ctfile.com/f/31084289-1356999217-b101f1?p=8866) |\n| 性本恶 | 托马斯・品钦 | [下载](https://url89.ctfile.com/f/31084289-1356998977-2d9306?p=8866) |\n| 论美国的民主（全2册） | 托克维尔 | [下载](https://url89.ctfile.com/f/31084289-1356997912-ae03bf?p=8866) |\n| 誓言：白宫与最高法院 | 杰弗里・图宾 | [下载](https://url89.ctfile.com/f/31084289-1356997849-948c52?p=8866) |\n| 许倬云说美国 | 许倬云 | [下载](https://url89.ctfile.com/f/31084289-1356997786-2a7121?p=8866) |\n| 肮脏的三十年代 | 蒂莫西・伊根 | [下载](https://url89.ctfile.com/f/31084289-1356997711-0bbc97?p=8866) |\n| 美国国会（牛津通识读本） | 唐纳德・A.里奇 | [下载](https://url89.ctfile.com/f/31084289-1356997648-8af3a8?p=8866) |\n| 美国独行 | 马克・斯坦恩 | [下载](https://url89.ctfile.com/f/31084289-1356997540-afe385?p=8866) |\n| 美国监狱 | 肖恩・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1356997372-1eb3e6?p=8866) |\n| 新美国 | 弗雷德里克・洛根・帕克森 | [下载](https://url89.ctfile.com/f/31084289-1356997360-e5f427?p=8866) |\n| 盟友 | 琳恩・奥尔森 | [下载](https://url89.ctfile.com/f/31084289-1356996922-07437e?p=8866) |\n| 美国内战史：1861-1865 | 詹姆斯・福特・罗德斯 | [下载](https://url89.ctfile.com/f/31084289-1356996796-130fe4?p=8866) |\n| 美国第一夫人回忆录 | 塔夫脱总统夫人 | [下载](https://url89.ctfile.com/f/31084289-1356996388-d1c053?p=8866) |\n| 美国成长三部曲 | 弗雷德里克・刘易斯・艾伦 | [下载](https://url89.ctfile.com/f/31084289-1356996151-fcfc33?p=8866) |\n| 美国艺术史 | 塞缪尔·G.W.本杰明 | [下载](https://url89.ctfile.com/f/31084289-1356995716-d01373?p=8866) |\n| 美国真相 | 約瑟夫・斯蒂格利茨 | [下载](https://url89.ctfile.com/f/31084289-1356995392-08c297?p=8866) |\n| 汤姆·索亚历险记（读客经典文库） | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1356995134-d8eeaf?p=8866) |\n| 好女孩 | 布莉・贝内特 | [下载](https://url89.ctfile.com/f/31084289-1356994696-b834b3?p=8866) |\n| 在路上（博集天卷） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1356991828-ebec3e?p=8866) |\n| 国会政体 | 伍德罗・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1356991792-86a135?p=8866) |\n| 阿瑟·戈登·皮姆历险记 | 埃德加・爱伦・坡 | [下载](https://url89.ctfile.com/f/31084289-1356991789-d7e38a?p=8866) |\n| 在路上（果麦经典） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1356991528-1cf2cf?p=8866) |\n| 光阴似剪 | 达娜・斯皮奥塔 | [下载](https://url89.ctfile.com/f/31084289-1356991126-9b7881?p=8866) |\n| 上帝的孤独者 | 托马斯・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356990946-509c94?p=8866) |\n| 亲切的艺术 | 凯莉・威廉斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1356990370-2c27d7?p=8866) |\n| 革命之路（理查德·耶茨文集） | 理查德・耶茨 | [下载](https://url89.ctfile.com/f/31084289-1356990163-9fe5c2?p=8866) |\n| 哈扎尔绅士 | 迈克尔・夏邦 | [下载](https://url89.ctfile.com/f/31084289-1356990151-0b2e68?p=8866) |\n| 原罪、梦想与霸权 | 维克多・基尔南 | [下载](https://url89.ctfile.com/f/31084289-1356990136-08ea15?p=8866) |\n| 下一次将是烈火 | 詹姆斯・鲍德温 | [下载](https://url89.ctfile.com/f/31084289-1356990130-8af270?p=8866) |\n| 月光狂想曲 | 迈克尔・夏邦 | [下载](https://url89.ctfile.com/f/31084289-1356990055-36db01?p=8866) |\n| 魔桶（短经典） | 伯纳德・马拉默德 | [下载](https://url89.ctfile.com/f/31084289-1356990034-7cb146?p=8866) |\n| 拍卖第四十九批 | 托马斯・品钦 | [下载](https://url89.ctfile.com/f/31084289-1356989599-5f3577?p=8866) |\n| 假如比尔街可以作证 | 詹姆斯・鲍德温 | [下载](https://url89.ctfile.com/f/31084289-1356989149-9bb539?p=8866) |\n| 美国人与中国人 | 许烺光 | [下载](https://url89.ctfile.com/f/31084289-1356987727-ede1df?p=8866) |\n| 水刀子 | 保罗・巴奇加卢皮 | [下载](https://url89.ctfile.com/f/31084289-1356987310-e009b7?p=8866) |\n| 水妖 | 内森・希尔 | [下载](https://url89.ctfile.com/f/31084289-1356986659-c94878?p=8866) |\n| 苏珊·桑塔格全传 | 卡尔・罗利森 | [下载](https://url89.ctfile.com/f/31084289-1356986275-a21ab1?p=8866) |\n| 晚风如诉 | 肯特・哈鲁夫 | [下载](https://url89.ctfile.com/f/31084289-1356986068-b1f20b?p=8866) |\n| 皮尔士论符号 （二十世纪西方哲学经典） | 查尔斯・皮尔士 | [下载](https://url89.ctfile.com/f/31084289-1356985702-75b042?p=8866) |\n| 夜航（成为小王子系列） | 圣埃克苏佩里 | [下载](https://url89.ctfile.com/f/31084289-1356985648-4e718d?p=8866) |\n| 神弃之地 | 唐纳德・雷・波洛克 | [下载](https://url89.ctfile.com/f/31084289-1356985507-b2ba91?p=8866) |\n| 小报戏梦 | 罗伯特・奥伦・巴特勒 | [下载](https://url89.ctfile.com/f/31084289-1356985342-fd9e50?p=8866) |\n| 美国人：从殖民到民主的历程 | 丹尼尔・布尔斯廷 | [下载](https://url89.ctfile.com/f/31084289-1356985291-454b87?p=8866) |\n| 破战者 | 布兰登・桑德森 | [下载](https://url89.ctfile.com/f/31084289-1356985150-3bb1ea?p=8866) |\n| 无名之城 | H.P.洛夫克拉夫特 | [下载](https://url89.ctfile.com/f/31084289-1356985117-a407a9?p=8866) |\n| 美国海：墨西哥湾的历史 | 杰克·E.戴维斯 | [下载](https://url89.ctfile.com/f/31084289-1356984943-5a4981?p=8866) |\n| 八百万种死法 | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1356984805-e43574?p=8866) |\n| 无人幸免 | 奥马尔・阿卡德 | [下载](https://url89.ctfile.com/f/31084289-1356984742-499b70?p=8866) |\n| 杀母的文化 | 孙隆基 | [下载](https://url89.ctfile.com/f/31084289-1356983671-269fff?p=8866) |\n| 想我苦哈哈的一生 | 詹姆斯・瑟伯 | [下载](https://url89.ctfile.com/f/31084289-1356983644-9228c8?p=8866) |\n| 帕哈萨帕之歌 | 肯特・纳尔本 | [下载](https://url89.ctfile.com/f/31084289-1356983140-a2a003?p=8866) |\n| 政治动物 | 里克・申克曼 | [下载](https://url89.ctfile.com/f/31084289-1357054216-50db69?p=8866) |\n| 中国女孩 | 王苇柯 | [下载](https://url89.ctfile.com/f/31084289-1357053208-116309?p=8866) |\n| 艺术史：1940年至今天 | 乔纳森・费恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866) |\n| 小人物：我和父亲乔布斯 | 丽莎・布伦南・乔布斯 | [下载](https://url89.ctfile.com/f/31084289-1357053055-7b9e76?p=8866) |\n| 哲学的底色 | 提默・艾德勒 | [下载](https://url89.ctfile.com/f/31084289-1357053025-11c135?p=8866) |\n| 美国政党与选举（牛津通识读本） | 桑迪・梅塞尔 | [下载](https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866) |\n| 中国人与美国人 | 徐国琦 | [下载](https://url89.ctfile.com/f/31084289-1357052743-2f01b0?p=8866) |\n| 拯救资本主义 | 罗伯特・赖克 | [下载](https://url89.ctfile.com/f/31084289-1357052308-144997?p=8866) |\n| 爱尔兰人 | 查尔斯・勃兰特 | [下载](https://url89.ctfile.com/f/31084289-1357051825-b70bae?p=8866) |\n| 每个人的亚里士多德 | 莫提默・艾德勒 | [下载](https://url89.ctfile.com/f/31084289-1357051708-d0a98b?p=8866) |\n| 出身：不平等的选拔与精英的自我复制 | 劳伦·A·里韦拉 | [下载](https://url89.ctfile.com/f/31084289-1357051546-baba5d?p=8866) |\n| 美国式谋杀 | 迈克尔・道格拉斯卡林/罗素・普尔 | [下载](https://url89.ctfile.com/f/31084289-1357051417-1c4f15?p=8866) |\n| 低地 | 裘帕・拉希莉 | [下载](https://url89.ctfile.com/f/31084289-1357051336-a76694?p=8866) |\n| 美国科学新闻精选套装 | 《科学新闻》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357051444-a5e5e6?p=8866) |\n| 寂寞芳心小姐（守望者经典） | 纳撒尼尔・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357051063-a08447?p=8866) |\n| 简斯维尔 | 艾米・戈德斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357051057-c53d41?p=8866) |\n| 今天将会不一样 | 玛利亚・森普尔 | [下载](https://url89.ctfile.com/f/31084289-1357050877-93c812?p=8866) |\n| 美国式婚姻 | 塔亚莉・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357050862-f21a03?p=8866) |\n| 回归商业常识 | 麦克・霍夫林格 | [下载](https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866) |\n| 回不去的旅人 | 杰西・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357050415-6b055d?p=8866) |\n| 财富与权力 | 诺姆・乔姆斯基 | [下载](https://url89.ctfile.com/f/31084289-1357050388-652f61?p=8866) |\n| 隐秘战争 | 阿里・拉伊迪 | [下载](https://url89.ctfile.com/f/31084289-1357049881-b392fb?p=8866) |\n| 向和平宣战 | 罗南・法罗 | [下载](https://url89.ctfile.com/f/31084289-1357049848-3b94eb?p=8866) |\n| 白领：美国的中产阶级 | 米尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357049386-35756b?p=8866) |\n| 正义的代价 | 劳伦斯・李默尔 | [下载](https://url89.ctfile.com/f/31084289-1357049347-68bcfd?p=8866) |\n| 汤姆斯河 | 丹・费金 | [下载](https://url89.ctfile.com/f/31084289-1357048711-c9be23?p=8866) |\n| 艾娃·拉文德奇异而美丽的忧伤 | 蕾丝莱・沃顿 | [下载](https://url89.ctfile.com/f/31084289-1357048315-3325ba?p=8866) |\n| 华文全球史（套装15册） | 哈罗德坦珀利等 | [下载](https://url89.ctfile.com/f/31084289-1357048972-9cffd5?p=8866) |\n| 小城畸人 | 舍伍德・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357047148-e62f8e?p=8866) |\n| 大转折时代 | 茱莉亚・瓜尔内里 | [下载](https://url89.ctfile.com/f/31084289-1357046326-8b0fec?p=8866) |\n| 繁荣与衰退 | 艾伦・格林斯潘 | [下载](https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866) |\n| 西班牙无敌舰队 | 加勒・马丁利 | [下载](https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866) |\n| 哥伦布、大航海时代与地理大发现 | 约翰・S.C.阿伯特 | [下载](https://url89.ctfile.com/f/31084289-1357046194-8643e2?p=8866) |\n| 鸽羽（厄普代克作品） | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045633-3b7458?p=8866) |\n| 马人（厄普代克作品） | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045564-f66b5b?p=8866) |\n| 圣洁百合（厄普代克作品） | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045435-80896e?p=8866) |\n| 命运与狂怒 | 劳伦・格罗夫 | [下载](https://url89.ctfile.com/f/31084289-1357045408-c43a32?p=8866) |\n| 夫妇们（厄普代克作品） | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045300-60f287?p=8866) |\n| 泥土之界 | 希拉莉・乔顿 | [下载](https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866) |\n| 墨西哥湾千里徒步行 | 约翰・缪尔 | [下载](https://url89.ctfile.com/f/31084289-1357045213-afc460?p=8866) |\n| 兔子富了 | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045186-124685?p=8866) |\n| 兔子歇了 | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045129-8b542b?p=8866) |\n| 兔子，跑吧 | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357045000-71d22e?p=8866) |\n| 兔子归来 | 约翰・厄普代克 | [下载](https://url89.ctfile.com/f/31084289-1357044880-adae9d?p=8866) |\n| 苹果木桌子及其他简记 | 赫尔曼・麦尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357044877-c7b3c9?p=8866) |\n| 美国国家安全局 | 克劳德・德莱斯 | [下载](https://url89.ctfile.com/f/31084289-1357043971-2e0a71?p=8866) |\n| 万物的终结 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357043734-88cbdf?p=8866) |\n| 流吧！我的眼泪 | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357042693-17f1fb?p=8866) |\n| 尤比克 | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357042339-ab4228?p=8866) |\n| 我爱迪克 | 克丽丝・克劳斯 | [下载](https://url89.ctfile.com/f/31084289-1357041391-026711?p=8866) |\n| 绑架风云 | 大卫・I.科策 | [下载](https://url89.ctfile.com/f/31084289-1357041028-e5eb7e?p=8866) |\n| 沙丘六部曲 | 弗兰克・赫伯特 | [下载](https://url89.ctfile.com/f/31084289-1357040926-a4d303?p=8866) |\n| 自由的流亡者 | 马娅・亚桑诺夫 | [下载](https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866) |\n| 悲剧遭遇 | 佩吉・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357040260-bac7dc?p=8866) |\n| 六舰 | 伊恩・托尔 | [下载](https://url89.ctfile.com/f/31084289-1357040281-f9263d?p=8866) |\n| 冰雪王国：美国军舰珍妮特号的极地远征 | 汉普顿・塞兹 | [下载](https://url89.ctfile.com/f/31084289-1357040221-ed59c0?p=8866) |\n| 沃普萧丑闻 | 约翰・契弗 | [下载](https://url89.ctfile.com/f/31084289-1357039864-fe0768?p=8866) |\n| 根部之血：美国的一次种族清洗 | 特里克・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1357039666-2e4a1d?p=8866) |\n| 彩虹尽头 | 弗诺・文奇 | [下载](https://url89.ctfile.com/f/31084289-1357039390-a9f532?p=8866) |\n| 真名实姓 | 弗诺・文奇 | [下载](https://url89.ctfile.com/f/31084289-1357039282-aee0e3?p=8866) |\n| 螺丝在拧紧（译文经典） | 亨利・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357039372-a73b97?p=8866) |\n| 为何，以及如何谋划一场火灾 | 杰西・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357039045-ac9204?p=8866) |\n| 絕望者之歌 | 杰德・凡斯 | [下载](https://url89.ctfile.com/f/31084289-1357038868-7137e6?p=8866) |\n| 繁荣的真谛 | 路易吉・津加莱斯 | [下载](https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866) |\n| 末世之城（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357038598-b6383b?p=8866) |\n| 地球的呼唤 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038523-3217f5?p=8866) |\n| 在地图结束的地方（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357038514-a54c28?p=8866) |\n| 地球飞船 | 奥森・斯科特・卡德 | [下载](https://url89.ctfile.com/f/31084289-1357038415-60c72f?p=8866) |\n| 为奴十二年（译文经典） | 所罗门・诺瑟普 | [下载](https://url89.ctfile.com/f/31084289-1357038358-15a854?p=8866) |\n| 史迪威与美国在中国的经验（1911-1945） | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357038316-b9aa36?p=8866) |\n| 卡瓦利与克雷的神奇冒险 | 迈克尔・夏邦 | [下载](https://url89.ctfile.com/f/31084289-1357038055-ad70de?p=8866) |\n| 愚政进行曲 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357038037-be7f43?p=8866) |\n| 密室中的旅行（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357037878-b5f9c7?p=8866) |\n| 甜蜜巴士 | 梅雷迪斯・梅 | [下载](https://url89.ctfile.com/f/31084289-1357037812-224f59?p=8866) |\n| 第一声礼炮 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357037602-cd7502?p=8866) |\n| 邪恶之城 | 大卫・贝瑟尔 | [下载](https://url89.ctfile.com/f/31084289-1357037332-1f1148?p=8866) |\n| 银的故事 | 威廉・L.西尔伯 | [下载](https://url89.ctfile.com/f/31084289-1357037239-ead4cb?p=8866) |\n| 柏油娃娃 | 托妮・莫里森 | [下载](https://url89.ctfile.com/f/31084289-1357037164-700704?p=8866) |\n| 创业头条 | 兰德尔・莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357037152-7b8a11?p=8866) |\n| Cell | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357036906-9fb3a8?p=8866) |\n| Benjamin Franklin | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357036897-1a5d9e?p=8866) |\n| 嚣张的特权 | 巴里・艾肯格林 | [下载](https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866) |\n| 全球使命 | 亨利・H・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357036363-c10466?p=8866) |\n| 民粹主义大爆炸 | 约翰・朱迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357036261-d13b71?p=8866) |\n| 看不见的客人 | 塔娜・法兰奇 | [下载](https://url89.ctfile.com/f/31084289-1357036228-be9c0a?p=8866) |\n| 亡者归来 | 詹森・莫特 | [下载](https://url89.ctfile.com/f/31084289-1357035871-b3b323?p=8866) |\n| 征途美国 | 黄征宇 | [下载](https://url89.ctfile.com/f/31084289-1357035796-7503bb?p=8866) |\n| 鬼作家 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035496-5bc64f?p=8866) |\n| 世界因何美妙而优雅地运行 | 约翰・布罗克曼 | [下载](https://url89.ctfile.com/f/31084289-1357035325-95ee3b?p=8866) |\n| 愤怒的葡萄 | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357035292-fafe32?p=8866) |\n| 被释放的祖克曼 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035274-ec6a81?p=8866) |\n| 布拉格狂欢 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035217-ccde38?p=8866) |\n| 垂死的肉身 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035178-cb8804?p=8866) |\n| 华氏451 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1357035076-d9ac4f?p=8866) |\n| 退场的鬼魂 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035064-53a301?p=8866) |\n| 九月的十三天 | 劳伦斯・莱特 | [下载](https://url89.ctfile.com/f/31084289-1357035052-fc0dc1?p=8866) |\n| 解剖课 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035028-a2b7ba?p=8866) |\n| 美国大外交（60周年增订版） | 乔治・凯南 | [下载](https://url89.ctfile.com/f/31084289-1357034854-6a0ae2?p=8866) |\n| 欲望教授 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357034836-976ed6?p=8866) |\n| 乳房 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866) |\n| 哈克贝利·费恩历险记（读客经典） | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1357034635-bafac9?p=8866) |\n| 献给阿尔吉侬的花束 | 丹尼尔・凯斯/罗杰・泽拉兹尼  | [下载](https://url89.ctfile.com/f/31084289-1357034419-a7595b?p=8866) |\n| 冷血 | 杜鲁门・卡波特 | [下载](https://url89.ctfile.com/f/31084289-1357034077-79c03d?p=8866) |\n| 地下鲍勃·迪伦与老美国 | 格雷尔・马库斯 | [下载](https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866) |\n| 纯真年代（企鹅经典） | 伊迪丝・华顿 | [下载](https://url89.ctfile.com/f/31084289-1357033813-b518c2?p=8866) |\n| 白鲸（名著名译丛书） | 赫尔曼・梅尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357033726-6ae4d3?p=8866) |\n| 创新者的路径 | 斯蒂芬・温克尔等 | [下载](https://url89.ctfile.com/f/31084289-1357033540-f2ff54?p=8866) |\n| 利维坦号战记（套装共4册） | 斯科特・维斯特菲尔德/基斯・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866) |\n| 夜色温柔（企鹅经典） | F.S.菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357033453-716b81?p=8866) |\n| 心为身役：苏珊·桑塔格日记与笔记（1964-1980） | 苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866) |\n| 丽赛的故事 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033405-037d31?p=8866) |\n| 亚特兰蒂斯之心 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033399-aedb1b?p=8866) |\n| 捕梦网 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033348-e0226f?p=8866) |\n| 11/22/63 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033240-8ee3ff?p=8866) |\n| 绿里 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033228-ae51d1?p=8866) |\n| 暴政 | 提摩希・史奈德 | [下载](https://url89.ctfile.com/f/31084289-1357033231-d43b3e?p=8866) |\n| 时间里的痴人 | 珍妮弗・伊根 | [下载](https://url89.ctfile.com/f/31084289-1357033180-e2b5a5?p=8866) |\n| 了不起的盖茨比（企鹅经典） | F.S.菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357033117-e28c2f?p=8866) |\n| 总统班底 | 卡尔・伯恩斯坦/鲍勃・伍德沃德 | [下载](https://url89.ctfile.com/f/31084289-1357033144-0e9782?p=8866) |\n| 肖申克的救赎（纪念珍藏版） | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357033099-81dc57?p=8866) |\n| 非常年代 | 多莉丝・基恩斯・古德温 | [下载](https://url89.ctfile.com/f/31084289-1357033060-ff8338?p=8866) |\n| 财富的帝国 | 约翰.S.戈登 | [下载](https://url89.ctfile.com/f/31084289-1357032919-56ce6a?p=8866) |\n| 编码宝典（全三册） | 尼尔・斯蒂芬森 | [下载](https://url89.ctfile.com/f/31084289-1357032895-0e9ef5?p=8866) |\n| 富兰克林传 | 沃尔特・艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357032865-b8d3f2?p=8866) |\n| 分手信 | 尼古拉斯・斯帕克思 | [下载](https://url89.ctfile.com/f/31084289-1357032835-a16896?p=8866) |\n| 革命之夏：美国独立的起源 | 约瑟夫·J. 埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866) |\n| 暴力：思无所限 | 理查德·J.伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357032514-decc12?p=8866) |\n| 魔鬼与福尔摩斯 | 戴维・格兰 | [下载](https://url89.ctfile.com/f/31084289-1357032454-12d1a4?p=8866) |\n| 全民蠢萌的美国 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357032391-f42dd1?p=8866) |\n| 伟大的转型 | 诺姆・马格尔 | [下载](https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866) |\n| 从一到无穷大（完整精修珍藏译本） | 乔治・伽莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357032277-51cd6d?p=8866) |\n| 梦幻之地 | 库尔特・安德森 | [下载](https://url89.ctfile.com/f/31084289-1357032250-da0889?p=8866) |\n| 都柏林的雨 | 卡尔・盖瑞 | [下载](https://url89.ctfile.com/f/31084289-1357032241-04972e?p=8866) |\n| 少数派报告 | 菲利普・迪克 | [下载](https://url89.ctfile.com/f/31084289-1357032211-328213?p=8866) |\n| 巴别塔之犬 | 卡罗琳・帕克丝特 | [下载](https://url89.ctfile.com/f/31084289-1357032178-12fb03?p=8866) |\n| 数字人文 | 安妮·博迪克等 | [下载](https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866) |\n| 托马斯·杰斐逊与海盗 | 布莱恩・吉米德/唐・耶格 | [下载](https://url89.ctfile.com/f/31084289-1357032172-3a2bd7?p=8866) |\n| 献给艾米丽的一朵玫瑰 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357032145-b37d53?p=8866) |\n| 愤怒的葡萄（译文名著精选） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357032013-d0d355?p=8866) |\n| 煎饼坪（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357031713-7bf0a3?p=8866) |\n| 小红马（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](链接未找到) |\n| 月亮下去了（约翰·斯坦贝克作品系列） | 约翰・斯坦贝克 | [下载](https://url89.ctfile.com/f/31084289-1357031368-763178?p=8866) |\n| 成为妮可 | 艾米・埃利斯・纳特 | [下载](https://url89.ctfile.com/f/31084289-1357031317-baf4d3?p=8866) |\n| 慢慢学 | 托马斯・品钦 | [下载](https://url89.ctfile.com/f/31084289-1357031233-027c9c?p=8866) |\n| 首届国会 | 弗格斯·M.博德韦奇 | [下载](https://url89.ctfile.com/f/31084289-1357030696-279a0a?p=8866) |\n| 房奴 | 戴维・戴恩 | [下载](https://url89.ctfile.com/f/31084289-1357030609-8fa73b?p=8866) |\n| 网与石（套装共2册） | 托马斯・沃尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357030513-f4512b?p=8866) |\n| 温柔的正义 | 琳达・赫什曼 | [下载](https://url89.ctfile.com/f/31084289-1357030165-23894f?p=8866) |\n| 被掩盖的原罪 | 爱德华・巴普蒂斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029862-b1b437?p=8866) |\n| 廉价的代价 | 拉杰・帕特尔 | [下载](https://url89.ctfile.com/f/31084289-1357029697-5b7480?p=8866) |\n| 美国陷阱 | 弗雷德里克・皮耶鲁齐 | [下载](https://url89.ctfile.com/f/31084289-1357029646-dc6bd5?p=8866) |\n| 桑德堡诗选 | 卡尔・桑德堡 | [下载](https://url89.ctfile.com/f/31084289-1357029511-e8bfc2?p=8866) |\n| 看不见的美国 | 珍妮・拉斯卡斯 | [下载](https://url89.ctfile.com/f/31084289-1357029118-b5871f?p=8866) |\n| 穷忙 | 戴维・希普勒 | [下载](https://url89.ctfile.com/f/31084289-1357029112-66c068?p=8866) |\n| 纽约三部曲（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357029091-7d5ea9?p=8866) |\n| 永别了，武器（果麦经典） | 厄尼斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357029100-d7f57e?p=8866) |\n| 美国内战回忆录（上下册） | U.S.格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357029088-94aa48?p=8866) |\n| 塞缪尔·亨廷顿经典著作集（套装4册） | 塞缪尔・亨廷顿 | [下载](https://url89.ctfile.com/f/31084289-1357029049-0daa60?p=8866) |\n| 我嫁给了一个死人 | 康奈尔・伍尔里奇 | [下载](https://url89.ctfile.com/f/31084289-1357028947-dc320b?p=8866) |\n| 平等之路 | 迈克尔·J.克拉曼 | [下载](https://url89.ctfile.com/f/31084289-1357028548-1352b7?p=8866) |\n| 卡尔霍恩文集（上、下） | 约翰·C.卡尔霍恩 | [下载](https://url89.ctfile.com/f/31084289-1357028512-257e33?p=8866) |\n| 万国一邦 | 托马斯・本德 | [下载](https://url89.ctfile.com/f/31084289-1357028398-a4da09?p=8866) |\n| 过剩之地 | 莫妮卡・普拉萨德 | [下载](https://url89.ctfile.com/f/31084289-1357028335-7041a3?p=8866) |\n| 庶出的标志 | 弗拉基米尔・纳博科夫 | [下载](https://url89.ctfile.com/f/31084289-1357027663-0f6f2f?p=8866) |\n| 密西西比 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357027534-c6bd4e?p=8866) |\n| 常识（译文经典） | 托马斯・潘恩 | [下载](https://url89.ctfile.com/f/31084289-1357027453-81c1b0?p=8866) |\n| 搏击俱乐部 | 恰克・帕拉尼克 | [下载](https://url89.ctfile.com/f/31084289-1357027441-67fe4b?p=8866) |\n| 八百万种走法 | 劳伦斯・布洛克 | [下载](https://url89.ctfile.com/f/31084289-1357027432-29294c?p=8866) |\n| 爱（2016版） | 托妮・莫里森 | [下载](链接未找到) |\n| 致命绑架 | T.R.蕾根 | [下载](https://url89.ctfile.com/f/31084289-1357027393-6fd896?p=8866) |\n| 惡血 | 約翰・凱瑞魯 | [下载](https://url89.ctfile.com/f/31084289-1357027258-867926?p=8866) |\n| 幻影书（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357026946-7a477b?p=8866) |\n| 当图书进入战争 | 莫里・古皮提尔・曼宁 | [下载](https://url89.ctfile.com/f/31084289-1357026403-62f650?p=8866) |\n| 枪的合众国 | 帕梅拉・哈格 | [下载](https://url89.ctfile.com/f/31084289-1357026259-12b415?p=8866) |\n| 吃鲷鱼让我打嗝 | 杰西・艾森伯格 | [下载](https://url89.ctfile.com/f/31084289-1357025704-728b29?p=8866) |\n| 谁偷走了美国梦 | 赫德里克・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357025536-ab13ba?p=8866) |\n| 美国增长的起落 | 罗伯特・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357025557-5fe21b?p=8866) |\n| 美国秩序的根基 | 拉塞尔・柯克 | [下载](https://url89.ctfile.com/f/31084289-1357025275-8213f5?p=8866) |\n| The Litigators | John Grisham | [下载](https://url89.ctfile.com/f/31084289-1357025254-c952a1?p=8866) |\n| 成为 | 米歇尔・罗宾逊・奥巴马 | [下载](https://url89.ctfile.com/f/31084289-1357025125-c91f09?p=8866) |\n| 凯南日记 | 乔治・凯南 | [下载](https://url89.ctfile.com/f/31084289-1357025119-495340?p=8866) |\n| 蒲公英醇夏 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1357024867-dd3818?p=8866) |\n| 女勇士 | 汤亭亭 | [下载](https://url89.ctfile.com/f/31084289-1357024768-569cc0?p=8866) |\n| 血色子午线 | 科马克・麦卡锡 | [下载](https://url89.ctfile.com/f/31084289-1357024720-04f5eb?p=8866) |\n| 作家、水手、士兵、间谍 | 尼古拉斯・雷诺兹 | [下载](https://url89.ctfile.com/f/31084289-1357024699-ca5c82?p=8866) |\n| 寂寞芳心小姐 | 纳撒尼尔・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1357024618-6365f1?p=8866) |\n| 美国式幸福 | 亚瑟·C.布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357024441-a49ada?p=8866) |\n| 论美国的民主（套装共4册） | 亚力克西·德·托克维尔 | [下载](https://url89.ctfile.com/f/31084289-1357024132-df8a85?p=8866) |\n| 金钱暗流 | 简・迈耶 | [下载](https://url89.ctfile.com/f/31084289-1357023967-442cc2?p=8866) |\n| 美国创世记：埃利斯建国史系列（套装共4册） | 约瑟夫·J.埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357023937-036fb8?p=8866) |\n| 他们眼望上苍 | 佐拉・尼尔・赫斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357023859-28feb0?p=8866) |\n| 重启人 | 艾米・亭特拉 | [下载](https://url89.ctfile.com/f/31084289-1357023616-224cdd?p=8866) |\n| 克里斯汀 | 斯蒂芬・金 | [下载](https://url89.ctfile.com/f/31084289-1357023559-14c275?p=8866) |\n| 阿尔比恩的种子 | 大卫・哈克特・费舍尔 | [下载](https://url89.ctfile.com/f/31084289-1357023457-bdf8d4?p=8866) |\n| 忽然七日 | 劳伦・奥利弗 | [下载](https://url89.ctfile.com/f/31084289-1357023253-db0f49?p=8866) |\n| 超级连接者 | 伊桑・祖克曼 | [下载](https://url89.ctfile.com/f/31084289-1357023139-193ac9?p=8866) |\n| Paris in the Present Tense | Mark Helprin | [下载](https://url89.ctfile.com/f/31084289-1357023049-ffc255?p=8866) |\n| 飞跃5000年 | 克里昂・斯考森 | [下载](https://url89.ctfile.com/f/31084289-1357023022-17fd6d?p=8866) |\n| 我们都发狂了 | 凯伦・乔伊・富勒 | [下载](https://url89.ctfile.com/f/31084289-1357022860-956833?p=8866) |\n| 剑桥美国史 | 苏珊・玛丽・格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357022683-97bf54?p=8866) |\n| 野性的呼唤 | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357022581-919f29?p=8866) |\n| 一念桃花源 | 比尔・波特 | [下载](https://url89.ctfile.com/f/31084289-1357022563-9a7313?p=8866) |\n| Selected Stories of Philip K. Dick | Dick, Philip K.; Lethem, Jonathan; | [下载](https://url89.ctfile.com/f/31084289-1357022257-b9df83?p=8866) |\n| 美国年度畅销悬疑小说精选集 | 詹姆斯・哈金斯等 | [下载](https://url89.ctfile.com/f/31084289-1357022215-cfbe40?p=8866) |\n| 非理性的人（译文经典） | 威廉・巴雷特 | [下载](https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866) |\n| 亚裔美国的创生 | 李漪莲 | [下载](https://url89.ctfile.com/f/31084289-1357021834-cd2e21?p=8866) |\n| Little Fires Everywhere | Celeste Ng | [下载](链接未找到) |\n| 美国梦 | 斯塔兹・特克尔 | [下载](https://url89.ctfile.com/f/31084289-1357021570-d6cd8a?p=8866) |\n| 扫地出门：美国城市的贫穷与暴利 | 马修・德斯蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357021318-672292?p=8866) |\n| Our Kids | Robert D. Putnam | [下载](https://url89.ctfile.com/f/31084289-1357021228-d066f5?p=8866) |\n| 邻人之妻 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357021108-99beed?p=8866) |\n| 双峰：最终档案 | 马克・弗罗斯特 | [下载](https://url89.ctfile.com/f/31084289-1357021081-3ab4dd?p=8866) |\n| 魔鬼辞典 | 安布罗斯・比尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357020925-e0b984?p=8866) |\n| 哈佛通识教育红皮书 | 哈佛委员会 | [下载](https://url89.ctfile.com/f/31084289-1357020907-daf2ca?p=8866) |\n| 不完美风暴 | 迈克尔・莫雷尔/比尔・哈洛 | [下载](https://url89.ctfile.com/f/31084289-1357020889-6c92fe?p=8866) |\n| 梦的真相 | 大卫・兰德尔 | [下载](https://url89.ctfile.com/f/31084289-1357020793-75b8cb?p=8866) |\n| 喧哗与骚动 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357020775-4c22b6?p=8866) |\n| 来自12个星球的敌人 | 约翰・斯卡尔齐 | [下载](https://url89.ctfile.com/f/31084289-1357020703-2a774b?p=8866) |\n| 苹果酒屋的规则 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357020694-be7e51?p=8866) |\n| 秘密金鱼 | 大卫・米恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357020652-6cea44?p=8866) |\n| To Kill A Mockingbird | 哈珀・李 | [下载](https://url89.ctfile.com/f/31084289-1357020610-1f978d?p=8866) |\n| 汉密尔顿传 | 罗恩・彻诺 | [下载](https://url89.ctfile.com/f/31084289-1357020625-ed77e3?p=8866) |\n| 美联储的诞生 | 罗杰・洛温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866) |\n| 失踪的总统 | 比尔・克林顿/詹姆斯・帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357020400-df3adb?p=8866) |\n| 换心 | 朱迪・皮考特 | [下载](https://url89.ctfile.com/f/31084289-1357020223-e95fa1?p=8866) |\n| 凯恩舰哗变 | 赫尔曼・沃克 | [下载](https://url89.ctfile.com/f/31084289-1357020208-a68269?p=8866) |\n| 奥吉·马奇历险记（企鹅经典） | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1357020052-f63c2b?p=8866) |\n| 烟雾弥漫你的眼 | 凯特琳・道蒂 | [下载](https://url89.ctfile.com/f/31084289-1357020016-418bb3?p=8866) |\n| 权力之路：林登·约翰逊传 | 罗伯特・A.卡洛 | [下载](https://url89.ctfile.com/f/31084289-1357019971-fee950?p=8866) |\n| 谁丢了美国 | 安德鲁・杰克逊・奥肖内西 | [下载](https://url89.ctfile.com/f/31084289-1357019956-8834da?p=8866) |\n| 小小小小的火 | 伍绮诗 | [下载](https://url89.ctfile.com/f/31084289-1357019566-1aaf84?p=8866) |\n| 盖普眼中的世界 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357019422-ab6d18?p=8866) |\n| 大萧条与罗斯福新政 | 埃里克・劳赫威 | [下载](https://url89.ctfile.com/f/31084289-1357019272-ea43bf?p=8866) |\n| 白噪音 | 唐・德里罗 | [下载](https://url89.ctfile.com/f/31084289-1357019245-efeee7?p=8866) |\n| 美国建国史系列（套装全3册） | 约瑟夫・埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357019095-53ad54?p=8866) |\n| 华盛顿国家艺术馆 | 罗萨娜・乔尔吉 | [下载](https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866) |\n| 姐姐的守护者 | 朱迪・皮考特 | [下载](https://url89.ctfile.com/f/31084289-1357018414-c586fb?p=8866) |\n| 十二怒汉 | 雷金纳德・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357018195-04e94b?p=8866) |\n| 遗落的南境（套装共3册） | 杰夫・范德米尔 | [下载](https://url89.ctfile.com/f/31084289-1357017925-e0c5a3?p=8866) |\n| 火星编年史 | 雷・布拉德伯里 | [下载](https://url89.ctfile.com/f/31084289-1357017820-1ccbf2?p=8866) |\n| 分歧者2：反叛者 | 维罗尼卡・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357017793-8fd6cd?p=8866) |\n| 分歧者3：忠诚者 | 维罗尼卡・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357017790-3ab567?p=8866) |\n| 识骨女法医 | 肯德拉・艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357017739-a00298?p=8866) |\n| 寓言 | 威廉・福克纳 | [下载](https://url89.ctfile.com/f/31084289-1357017493-1b3020?p=8866) |\n| 安德的游戏三部曲 | 奥森・斯科特・卡德  | [下载](https://url89.ctfile.com/f/31084289-1357017406-384a04?p=8866) |\n| 年轻的心在哭泣 | 理查德・耶茨 | [下载](https://url89.ctfile.com/f/31084289-1357017271-7feab1?p=8866) |\n| 被仰望与被遗忘的 | 盖伊・特立斯 | [下载](https://url89.ctfile.com/f/31084289-1357016455-8ba51c?p=8866) |\n| 长夜漫漫路迢迢 | 尤金・奥尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357016038-fb4be7?p=8866) |\n| 群鸟飞舞的世界末日 |  查莉・简・安德斯 | [下载](https://url89.ctfile.com/f/31084289-1357015921-312cfa?p=8866) |\n| 联邦论：美国宪法评述 | 亚历山大・汉密尔顿等 | [下载](https://url89.ctfile.com/f/31084289-1357015762-dc2aec?p=8866) |\n| 经济奇点 | 史蒂文・希尔 | [下载](https://url89.ctfile.com/f/31084289-1357015492-0b15f1?p=8866) |\n| 解说疾病的人 | 裘帕・拉希莉 | [下载](https://url89.ctfile.com/f/31084289-1357015408-005737?p=8866) |\n| 今天过得怎么样 | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1357015108-00eb73?p=8866) |\n| 不适之地 | 裘帕・拉希利 | [下载](https://url89.ctfile.com/f/31084289-1357014985-9e6283?p=8866) |\n| 美国种族简史 | 托马斯・索威尔 | [下载](https://url89.ctfile.com/f/31084289-1357014247-ee3612?p=8866) |\n| 白鲸（译文名著典藏） | 赫尔曼・麦尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357013803-9f3bf0?p=8866) |\n| 帝国定型：美国的1890～1900 | 徐弃郁 | [下载](https://url89.ctfile.com/f/31084289-1357013650-529c52?p=8866) |\n| 神经漫游者 | 威廉・吉布森 | [下载](https://url89.ctfile.com/f/31084289-1357013500-119668?p=8866) |\n| 精酿啤酒革命 | 史蒂夫・欣迪 | [下载](https://url89.ctfile.com/f/31084289-1357013419-f207e2?p=8866) |\n| 太阳底下的新鲜事 | 约翰・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866) |\n| 管家 | 玛丽莲・罗宾逊 | [下载](https://url89.ctfile.com/f/31084289-1357012600-1fdf69?p=8866) |\n| 假如明天来临 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012417-3590de?p=8866) |\n| 灭顶之灾 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012426-b28838?p=8866) |\n| 镜子里的陌生人 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012408-160c95?p=8866) |\n| 祸起萧墙 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012396-eaa984?p=8866) |\n| 裸面 | 西德尼・谢尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357012078-b2add2?p=8866) |\n| 第二十二条军规（纪念版） | 约瑟夫・海勒 | [下载](https://url89.ctfile.com/f/31084289-1357011919-31c86e?p=8866) |\n| 岛上的最后一天 | 卡米尔・佩简 | [下载](https://url89.ctfile.com/f/31084289-1357011763-477c20?p=8866) |\n| 大英帝国的崩溃与美国的诞生 | 尼克・邦克 | [下载](https://url89.ctfile.com/f/31084289-1357011766-64bb06?p=8866) |\n| 爱伦·坡暗黑故事全集（上册） | 埃德加・爱伦・坡 | [下载](https://url89.ctfile.com/f/31084289-1357011532-a09ea4?p=8866) |\n| 屠夫十字镇 | 约翰・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357011511-06936a?p=8866) |\n| 自由 | 乔纳森・弗兰岑 | [下载](https://url89.ctfile.com/f/31084289-1357011283-cb0e40?p=8866) |\n| 独居的一年 | 约翰・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357010776-6affa0?p=8866) |\n| 你绝对不知道的美国独立秘史 | 何畏岩 | [下载](https://url89.ctfile.com/f/31084289-1357010698-8fdefe?p=8866) |\n| 斯通纳 | 约翰・威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357010497-2da934?p=8866) |\n| 历史的技艺：塔奇曼论历史 | 巴巴拉・W・塔奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357009993-e7441c?p=8866) |\n| 囚鸟 | 库尔特・冯内古特 | [下载](https://url89.ctfile.com/f/31084289-1357009828-d819d2?p=8866) |\n| 上帝与黄金 | 沃尔特・拉塞尔・米德 | [下载](https://url89.ctfile.com/f/31084289-1357009693-0b31d1?p=8866) |\n| 优秀的绵羊 | 威廉・德雷谢维奇 | [下载](https://url89.ctfile.com/f/31084289-1357009126-f98f0e?p=8866) |\n| 上帝的图书馆 | 司各特・霍金斯 | [下载](https://url89.ctfile.com/f/31084289-1357009051-91771d?p=8866) |\n| 辛普森何以逍遥法外？ | 文森特・布廖西 | [下载](https://url89.ctfile.com/f/31084289-1357008964-ad44de?p=8866) |\n| 暮光之城（豪华珍藏套装） | 斯蒂芬妮・梅尔 | [下载](https://url89.ctfile.com/f/31084289-1357008949-e8803d?p=8866) |\n| 辩论：美国制宪会议记录 | 詹姆斯・麦迪逊 | [下载](https://url89.ctfile.com/f/31084289-1357008826-b8a8a1?p=8866) |\n| 美国众神（十周年作者修订版） | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357008802-e10699?p=8866) |\n| 嘉莉妹妹 | 西奥多・德莱塞 | [下载](https://url89.ctfile.com/f/31084289-1357008712-177f57?p=8866) |\n| 晃来晃去的人 | 索尔・贝娄 | [下载](https://url89.ctfile.com/f/31084289-1357008463-5b54a8?p=8866) |\n| 改变美国的时刻 | 刘戈 | [下载](https://url89.ctfile.com/f/31084289-1357008301-e4125a?p=8866) |\n| 大法官说了算 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357008256-b24a0b?p=8866) |\n| 合理的怀疑 | 德肖维茨 | [下载](https://url89.ctfile.com/f/31084289-1357008154-8a89d6?p=8866) |\n| 地下铁道 | 科尔森・怀特黑德 | [下载](https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866) |\n| 第十层地狱 | 朱迪・皮考特 | [下载](https://url89.ctfile.com/f/31084289-1357008106-e60331?p=8866) |\n| 永恒的终结 | 艾萨克・阿西莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357007860-8793c1?p=8866) |\n| 马丁·伊登（译文名著精选） | 杰克・伦敦 | [下载](https://url89.ctfile.com/f/31084289-1357007722-8c323e?p=8866) |\n| 无声告白 | 伍绮诗 | [下载](https://url89.ctfile.com/f/31084289-1357007752-de9648?p=8866) |\n| 光荣与梦想（套装共4册） | 威廉・曼彻斯特 | [下载](https://url89.ctfile.com/f/31084289-1357007563-c959ad?p=8866) |\n| 降临 | 特德・姜 | [下载](https://url89.ctfile.com/f/31084289-1357007533-b1388b?p=8866) |\n| 艰难一日：海豹六队击毙本・拉登行动亲历 | 马克・欧文/凯文・莫勒 | [下载](https://url89.ctfile.com/f/31084289-1357007482-13c51f?p=8866) |\n| 说故事的人 | 朱迪・皮考特 | [下载](https://url89.ctfile.com/f/31084289-1357007407-3d5566?p=8866) |\n| CIA美国中央情报局全传 | 亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866) |\n| 帝国的分裂：美国独立战争的起源 | 郑非 | [下载](https://url89.ctfile.com/f/31084289-1357007368-a3414a?p=8866) |\n| 白宫岁月：基辛格回忆录（套装共4册） | 亨利・基辛格 | [下载](https://url89.ctfile.com/f/31084289-1357007311-07aa18?p=8866) |\n| 进步时代 | 张国庆 | [下载](https://url89.ctfile.com/f/31084289-1357007197-eb3577?p=8866) |\n| 美国是个大公司 | 闵纬国 | [下载](https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866) |\n| 岛上书店 | 加布瑞埃拉·泽文  | [下载](https://url89.ctfile.com/f/31084289-1357006963-ca71a3?p=8866) |\n| 海伯利安四部曲（套装共4册） | 丹·西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357006975-c613a8?p=8866) |\n| 火星崛起 | 皮尔斯・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357006954-0482f0?p=8866) |\n| 水手比利·巴德 | 赫尔曼・梅尔维尔 | [下载](https://url89.ctfile.com/f/31084289-1357006942-b622ce?p=8866) |\n| 金融帝国：美国金融霸权的来源和基础 | 迈克尔·赫德森 | [下载](https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866) |\n| 禅与摩托车维修艺术 | 罗伯特·M.波西格 | [下载](https://url89.ctfile.com/f/31084289-1357006678-f38811?p=8866) |\n| 猫眼看美国 | 聂平 | [下载](https://url89.ctfile.com/f/31084289-1357006549-1a4441?p=8866) |\n| 全民寂寞的美国 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357006432-89cb5c?p=8866) |\n| 地海传奇六部曲 | 厄休拉・勒古恩 | [下载](https://url89.ctfile.com/f/31084289-1357006213-e340bb?p=8866) |\n| 美国最高法院通识读本 | 琳达・格林豪斯 | [下载](https://url89.ctfile.com/f/31084289-1357005652-1c199f?p=8866) |\n| 袁腾飞讲美国史 | 袁腾飞 | [下载](https://url89.ctfile.com/f/31084289-1357005301-9fa40d?p=8866) |\n| 修配工 | 伯纳德・马拉默德 | [下载](https://url89.ctfile.com/f/31084289-1357004899-b12544?p=8866) |\n| 让你爱不释手的极简美国史 | 姚尧 | [下载](https://url89.ctfile.com/f/31084289-1357004815-0945d8?p=8866) |\n"
  },
  {
    "path": "md/美国史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美国史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 奠基者：独立战争那一代 | 约瑟夫·J. 埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357032793-3eb972?p=8866) |\n| 革命之夏：美国独立的起源 | 约瑟夫·J. 埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357032790-62cd12?p=8866) |\n"
  },
  {
    "path": "md/美学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 寻美：摄影中的东方美学 | 青简 | [下载](https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866) |\n| 大美中国（全8册） | 陈炎等 | [下载](https://url89.ctfile.com/f/31084289-1375513846-cbc74c?p=8866) |\n| 美学漫步 | 宗白华 | [下载](https://url89.ctfile.com/f/31084289-1357002514-7384a3?p=8866) |\n| 论爱美 | 夏尔・佩潘 | [下载](https://url89.ctfile.com/f/31084289-1357002430-c3c70e?p=8866) |\n| 艺术精神 | 罗伯特・亨利 | [下载](https://url89.ctfile.com/f/31084289-1356985927-d00167?p=8866) |\n| 美学讲稿 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357029019-43518f?p=8866) |\n| 无限的清单 | 翁贝托・艾柯 | [下载](https://url89.ctfile.com/f/31084289-1357029040-0003df?p=8866) |\n| 博洛尼亚国家艺术画廊 | 贝亚特莉切・布斯卡罗利 | [下载](https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866) |\n| 浪漫主义的根源 | 以赛亚・伯林 | [下载](https://url89.ctfile.com/f/31084289-1357011475-a98679?p=8866) |\n| 坎贝尔生活美学 | 戴安娜・奥斯本 | [下载](https://url89.ctfile.com/f/31084289-1357009570-bbd908?p=8866) |\n"
  },
  {
    "path": "md/美术.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美术\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 慕尼黑老绘画陈列馆（伟大的博物馆） | 西尔维娅・波尔盖斯 | [下载](https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866) |\n| 中国艺术精神 | 徐复观 | [下载](https://url89.ctfile.com/f/31084289-1356990142-c2cdbd?p=8866) |\n| 中国绘画史 | 陈师曾 | [下载](https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866) |\n| 世界美术名作二十讲 | 傅雷 | [下载](https://url89.ctfile.com/f/31084289-1357032403-de23a0?p=8866) |\n| 罗马博尔盖塞美术馆 | 弗朗切斯卡・卡丝特丽雅・马尔凯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866) |\n| 阿姆斯特丹国家博物馆 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866) |\n| 巫鸿美术史著作经典（共3册） | 巫鸿 | [下载](https://url89.ctfile.com/f/31084289-1357010881-0327d9?p=8866) |\n"
  },
  {
    "path": "md/美术史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美术史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 美术史十议 | 巫鸿 | [下载](https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866) |\n| 王朝物语（套装全四册） | 中野京子 | [下载](https://url89.ctfile.com/f/31084289-1357044622-dfbb22?p=8866) |\n"
  },
  {
    "path": "md/美洲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美洲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 1491年：前哥伦布时代美洲启示录 | 查尔斯・曼恩是 | [下载](https://url89.ctfile.com/f/31084289-1357011508-3f67fb?p=8866) |\n"
  },
  {
    "path": "md/美漫.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美漫\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 守望先锋（第一卷） | 美国暴雪娱乐 | [下载](https://url89.ctfile.com/f/31084289-1356989509-5b68c1?p=8866) |\n| 蝙蝠侠手记：超人类绝密档案 | S.D.佩里等 | [下载](https://url89.ctfile.com/f/31084289-1356985720-975708?p=8866) |\n| 漫威大战DC | 里德・塔克 | [下载](https://url89.ctfile.com/f/31084289-1357052785-7df0c3?p=8866) |\n"
  },
  {
    "path": "md/美联储.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美联储\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 金融的本质 | 本・伯南克 | [下载](https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866) |\n| 还原真实的美联储 | 王健 | [下载](https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866) |\n"
  },
  {
    "path": "md/美食.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 美食\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 行走的柠檬 | 海伦娜・阿特利 | [下载](https://url89.ctfile.com/f/31084289-1375501441-318ca9?p=8866) |\n| 吃和远方 | 程磊 | [下载](https://url89.ctfile.com/f/31084289-1375509802-3be4da?p=8866) |\n| 台湾小吃全书 | 焦桐 | [下载](https://url89.ctfile.com/f/31084289-1375513558-a182f2?p=8866) |\n| 肉料理原来是这么回事儿 | 亚瑟・勒凯恩 | [下载](https://url89.ctfile.com/f/31084289-1356995836-d28b5a?p=8866) |\n| 饮食生活新提案系列（套装共5册） | 特里斯坦・西卡尔等 | [下载](https://url89.ctfile.com/f/31084289-1356993028-2b5773?p=8866) |\n| 知日53：好吃不过拉面 | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1356990262-052cee?p=8866) |\n| 黄小厨的春夏秋冬 | 黄磊 | [下载](https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866) |\n| 家肴 | 唐颖 | [下载](https://url89.ctfile.com/f/31084289-1357050790-1acad4?p=8866) |\n| 厨艺的常识 | 迈克尔・鲁尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357047916-0cbbd4?p=8866) |\n| 雅舍谈吃 | 梁实秋 | [下载](https://url89.ctfile.com/f/31084289-1357044742-1db99f?p=8866) |\n| 食帖23：好久没去野餐了！ | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044721-dfba86?p=8866) |\n| 食帖24：啊！又想吃零食了 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866) |\n| 食帖20：面的奥义 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357044301-244117?p=8866) |\n| 食帖21：酒的全事典 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866) |\n| 吃货心理学 | 金圣荣 | [下载](https://url89.ctfile.com/f/31084289-1357043953-b41fb5?p=8866) |\n| 食帖19：下午茶时间到 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866) |\n| 食帖17：蔬菜多好吃啊 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866) |\n| 食帖18：真的，烤箱什么都能做 | 林江编者 | [下载](https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866) |\n| 食帖15：便当灵感集 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866) |\n| 食帖16：大满足！就爱锅料理 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866) |\n| 食帖13：腐的品格 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866) |\n| 食帖14：小聚会教科书 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866) |\n| 食帖10：早餐，真的太重要了 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866) |\n| 食帖11：美食漫画万岁 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043089-d00e80?p=8866) |\n| 食帖12：厨房，治愈人生的避难所 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866) |\n| 食帖08：自给自足指南书 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866) |\n| 食帖09：了不起的面包 | 林江编者 | [下载](https://url89.ctfile.com/f/31084289-1357042822-a3f181?p=8866) |\n| 食帖04：肉!肉!肉! | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866) |\n| 食帖05：全宇宙都在吃甜品 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866) |\n| 食帖07：大丈夫生于厨房 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866) |\n| 食帖03：食鲜最高 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866) |\n| 孤独的泡面 | 食帖番组主编 | [下载](https://url89.ctfile.com/f/31084289-1357040059-b9c317?p=8866) |\n| 餐桌是我的调色盘 | 夏威夷 | [下载](https://url89.ctfile.com/f/31084289-1357034944-4e1c17?p=8866) |\n| 粗糙食堂 | 莲小兔 | [下载](https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866) |\n| 红楼飨宴 | 闻佳/艾格吃饱了 | [下载](https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866) |\n| 风味人间 | 陈晓卿 | [下载](https://url89.ctfile.com/f/31084289-1357030402-372ed3?p=8866) |\n| 有风吹过厨房 | 食家饭 | [下载](https://url89.ctfile.com/f/31084289-1357025518-067637?p=8866) |\n| 知日19：料理之魂 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357022488-fcb817?p=8866) |\n| 至味在人间 | 陈晓卿 | [下载](https://url89.ctfile.com/f/31084289-1357019104-e77006?p=8866) |\n| 把这瓶开了！ | 玛德琳・帕克特/贾斯汀琳・海默克 | [下载](https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866) |\n| 一把盐下饭菜 | 左壮 | [下载](https://url89.ctfile.com/f/31084289-1357014430-7b97d6?p=8866) |\n| 吃的美德：餐桌上的哲学思考 | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1357013992-1e7670?p=8866) |\n| 暖食：质朴的味道，家的味道 | 蔡澜 | [下载](https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866) |\n"
  },
  {
    "path": "md/老子.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 老子\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 老子疏解 | 黄克剑 | [下载](https://url89.ctfile.com/f/31084289-1357051570-dc56d2?p=8866) |\n| 道德经说什么：一部教你做得道之人的生命学宝典 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866) |\n| 道德经 | 老子 | [下载](https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866) |\n"
  },
  {
    "path": "md/老舍.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 老舍\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 开市大吉（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357046323-88963e?p=8866) |\n| 茶馆（作家榜经典文库） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357044193-9ddc97?p=8866) |\n| 文学大师老舍长篇小说作品全集（套装十七册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031458-4659d9?p=8866) |\n| 文学大师老舍精选剧本集（套装21册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031395-dbf371?p=8866) |\n| 文学大师老舍精选中短篇小说集（套装六册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031305-740b89?p=8866) |\n| 文学大师老舍精选杂文集（套装八册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031314-80e1db?p=8866) |\n| 文学大师老舍代表作作品集（套装九册） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357031263-60ace5?p=8866) |\n| 四世同堂（完整版） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357023259-b549b1?p=8866) |\n"
  },
  {
    "path": "md/考古.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 考古\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 巫鸿经典作品集（套装10册） | 巫鸿 | [下载](https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866) |\n| 国家宝藏（全3季） | 于蕾 | [下载](https://url89.ctfile.com/f/31084289-1375498279-12a962?p=8866) |\n| 岳南：考古中国（全11册） | 岳南 | [下载](https://url89.ctfile.com/f/31084289-1375499434-08138d?p=8866) |\n| 斯坦因·西域游历丛书（15卷本） | 奥雷尔・斯坦因 | [下载](https://url89.ctfile.com/f/31084289-1357003783-1b5133?p=8866) |\n| 从考古发现中国 | 张经纬 | [下载](https://url89.ctfile.com/f/31084289-1357002247-ab8be4?p=8866) |\n| 良渚文明丛书 | 浙江大学出版社 | [下载](https://url89.ctfile.com/f/31084289-1357001587-15feaf?p=8866) |\n| 何以中国 | 许宏 | [下载](https://url89.ctfile.com/f/31084289-1356992287-042367?p=8866) |\n| 西周的灭亡（增订本） | 李峰 | [下载](https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866) |\n| 中国兵器史 | 周纬 | [下载](https://url89.ctfile.com/f/31084289-1357046650-e1648b?p=8866) |\n| 章服之实 | 王亚蓉 | [下载](https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866) |\n| 海昏侯刘贺 | 辛德勇 | [下载](https://url89.ctfile.com/f/31084289-1357032874-fa7f10?p=8866) |\n| 发现燕然山铭 | 辛德勇 | [下载](https://url89.ctfile.com/f/31084289-1357027969-c72992?p=8866) |\n| 考古的故事 | 埃里克·H.克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357026685-adfaf2?p=8866) |\n| 遗失的姆大陆之谜 | 詹姆斯・乔治瓦特 | [下载](https://url89.ctfile.com/f/31084289-1357021300-8fed7f?p=8866) |\n| 第五次开始 | 罗伯特・L .凯利 | [下载](https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866) |\n| 国宝四川：纪念汶川地震十周年 | 《华夏地理》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357019644-61d102?p=8866) |\n| 庞贝三日 | 阿尔贝托・安杰拉 | [下载](https://url89.ctfile.com/f/31084289-1357009300-9ee090?p=8866) |\n| 那些消失的文明 | 《环球科学》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357007593-9d1d64?p=8866) |\n"
  },
  {
    "path": "md/耶路撒冷.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 耶路撒冷\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 耶路撒冷三千年（全新增订版） | 西蒙・蒙蒂菲奥里 | [下载](https://url89.ctfile.com/f/31084289-1357049185-d3408d?p=8866) |\n| 耶路撒冷告白 | 利皮卡・佩拉汉 | [下载](https://url89.ctfile.com/f/31084289-1357021831-73809c?p=8866) |\n"
  },
  {
    "path": "md/聊斋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 聊斋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 聊斋志异详注新评 | 蒲松龄 | [下载](https://url89.ctfile.com/f/31084289-1357030834-021d30?p=8866) |\n| 唐朝诡事录2：长安鬼迹 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357006987-3d6cfc?p=8866) |\n"
  },
  {
    "path": "md/职业.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 职业\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 从雇佣到自由人 | 吕廷杰 | [下载](https://url89.ctfile.com/f/31084289-1357043239-da0578?p=8866) |\n| 转行：发现一个未知的自己 | 埃米尼亚・伊瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866) |\n| 远见：如何规划职业生涯3大阶段 | 布赖恩・费瑟斯通豪 | [下载](https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866) |\n| 领导梯队（原书第2版） | 拉姆・查兰/斯蒂芬・德罗特 | [下载](https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866) |\n"
  },
  {
    "path": "md/职场.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 职场\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 拆掉思维里的墙（白金升级版） | 古典 | [下载](https://url89.ctfile.com/f/31084289-1375493257-0dad21?p=8866) |\n| 像高手一样发言 | 久久 | [下载](https://url89.ctfile.com/f/31084289-1375497652-f3a0aa?p=8866) |\n| 理想之城：苏筱的战争 | 若花燃燃 | [下载](https://url89.ctfile.com/f/31084289-1375508209-e9ee8e?p=8866) |\n| 特别会说话的人都这样说话 | 大野萌子 | [下载](https://url89.ctfile.com/f/31084289-1375508956-e88e33?p=8866) |\n| 可复制的沟通力 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1375509097-19917b?p=8866) |\n| 你就是干不过做PPT的 | 下地宽也 | [下载](https://url89.ctfile.com/f/31084289-1375509607-fcbab6?p=8866) |\n| 深度影响 | 崔璀 | [下载](https://url89.ctfile.com/f/31084289-1375509760-4833a9?p=8866) |\n| 高级零工 | 村上敦伺 | [下载](https://url89.ctfile.com/f/31084289-1375509853-10fa45?p=8866) |\n| 重来3 | 贾森・弗里德/戴维・海涅迈尔・汉森（ | [下载](https://url89.ctfile.com/f/31084289-1375509919-d4b829?p=8866) |\n| 硬核晋升 | 朱莉・卓 | [下载](https://url89.ctfile.com/f/31084289-1375510306-6e2dbb?p=8866) |\n| 创新者的世界 | 许奔 | [下载](https://url89.ctfile.com/f/31084289-1375510588-693667?p=8866) |\n| 把自己当回事儿 | 杨天真 | [下载](https://url89.ctfile.com/f/31084289-1375510702-fc0e3b?p=8866) |\n| 非线性成长 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1375511170-6f2a00?p=8866) |\n| 细节的力量 | FLANAGAN裕美子 | [下载](https://url89.ctfile.com/f/31084289-1375513111-35214f?p=8866) |\n| 爱因斯坦的老板 | 罗伯特・赫罗马斯 | [下载](https://url89.ctfile.com/f/31084289-1375513645-5a5886?p=8866) |\n| 第一印象手册 | 柳沼佐千子 | [下载](https://url89.ctfile.com/f/31084289-1375513798-47c741?p=8866) |\n| 选准赛道再奔跑 | 七芊 | [下载](https://url89.ctfile.com/f/31084289-1357004608-82df1b?p=8866) |\n| 超级搜索术 | 朱丹 | [下载](https://url89.ctfile.com/f/31084289-1357004089-122bcf?p=8866) |\n| 转机 | 萨拉・罗布・奥黑根 | [下载](https://url89.ctfile.com/f/31084289-1357004059-dd3cc1?p=8866) |\n| 刘墉的处世情商课 | 刘墉 | [下载](https://url89.ctfile.com/f/31084289-1357002097-0765d4?p=8866) |\n| 聪明人的做事风格系列（全3册） | 高桥政史/横田真由子 | [下载](https://url89.ctfile.com/f/31084289-1357002070-37a922?p=8866) |\n| 创造人生的伙伴 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1357001332-3fec7e?p=8866) |\n| 职场自我成长 | 渡边秀和 | [下载](https://url89.ctfile.com/f/31084289-1357001134-9c9089?p=8866) |\n| 麦肯锡高效工作法 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866) |\n| 本事：应对未来世界的12项永久技能 | 基兰・弗拉纳根 | [下载](https://url89.ctfile.com/f/31084289-1357000405-a834ab?p=8866) |\n| 行动变现 | 杨小米 | [下载](https://url89.ctfile.com/f/31084289-1356999424-ac20ab?p=8866) |\n| 超级个体 | 徐大维 | [下载](https://url89.ctfile.com/f/31084289-1356997882-a1df03?p=8866) |\n| 懂得倾听，是学会沟通的第一步 | 伯纳德·T.费拉里 | [下载](https://url89.ctfile.com/f/31084289-1356997870-0eb102?p=8866) |\n| 打破你的学生思维 | 北京职慧公益创业发展中心 | [下载](https://url89.ctfile.com/f/31084289-1356997843-a71c7e?p=8866) |\n| 曾仕强品三国（套装共3册） | 曾仕强 | [下载](https://url89.ctfile.com/f/31084289-1356995533-1624d0?p=8866) |\n| 故事力 | 高琳/林宏博 | [下载](https://url89.ctfile.com/f/31084289-1356994093-5966fd?p=8866) |\n| 允许被说服 | 艾尔・比坦帕里 | [下载](https://url89.ctfile.com/f/31084289-1356991243-d42784?p=8866) |\n| 你没有退路，才有出路 | 李尚龙 | [下载](https://url89.ctfile.com/f/31084289-1356990586-6daef7?p=8866) |\n| 会说话的人运气都不会太差 | 矢野香 | [下载](https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866) |\n| 扛住就是本事 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1356990091-b0d17e?p=8866) |\n| 为什么精英都有超级领导力 | 金·R·鲍威尔 | [下载](https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866) |\n| 为什么精英都是动机控 | 池田贵将 | [下载](https://url89.ctfile.com/f/31084289-1356985912-e259f0?p=8866) |\n| 为什么精英都是方法控 | 金武贵 | [下载](https://url89.ctfile.com/f/31084289-1356985894-c96937?p=8866) |\n| 思考的技术 | 大前研一 | [下载](https://url89.ctfile.com/f/31084289-1356985579-94c4f1?p=8866) |\n| 人力资源管理从新手到总监（全2册） | 李志勇 | [下载](https://url89.ctfile.com/f/31084289-1356985228-e6aa30?p=8866) |\n| 如何有效管理自己（升级版） | 杜耿 | [下载](https://url89.ctfile.com/f/31084289-1356984787-7968f7?p=8866) |\n| 向诸葛亮借智慧 | 赵玉平 | [下载](https://url89.ctfile.com/f/31084289-1356983920-387cfd?p=8866) |\n| 异议的力量 | 查兰・奈米斯 | [下载](https://url89.ctfile.com/f/31084289-1356983770-5e830b?p=8866) |\n| 如何给别人留下好印象 | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1356983686-60bb22?p=8866) |\n| 向上管理 | 蒋巍巍 | [下载](https://url89.ctfile.com/f/31084289-1356983296-d41f93?p=8866) |\n| 职业通道 | 吴静 | [下载](https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866) |\n| 优秀到不能被忽视 | 卡尔・纽波特 | [下载](https://url89.ctfile.com/f/31084289-1357054414-1f8a55?p=8866) |\n| 这才是我要的工作 | 克里斯・吉耶博 | [下载](https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866) |\n| 用事实说话 | 马克・墨菲 | [下载](https://url89.ctfile.com/f/31084289-1357053700-37dd8a?p=8866) |\n| 一日之计 | 本杰明・斯帕/迈克尔・赞德 | [下载](https://url89.ctfile.com/f/31084289-1357053670-744d2e?p=8866) |\n| 赢在上班时 | 高城幸司 | [下载](https://url89.ctfile.com/f/31084289-1357053031-b35c04?p=8866) |\n| 重构 | 村西边老王 | [下载](https://url89.ctfile.com/f/31084289-1357052596-bc188a?p=8866) |\n| 个体突围 | 艾玛・加侬 | [下载](https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866) |\n| 如何成为职场实力派 | 日本GLOBIS商学院  | [下载](https://url89.ctfile.com/f/31084289-1357052479-c909c0?p=8866) |\n| 卓越工作 | 莫滕·T·汉森 | [下载](https://url89.ctfile.com/f/31084289-1357052374-207d48?p=8866) |\n| 执行力：10项驱动法则 | 章俊 | [下载](https://url89.ctfile.com/f/31084289-1357052290-876230?p=8866) |\n| 情商是什么？ | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357052245-835fbc?p=8866) |\n| 能力迁移 | 乔治・安德斯 | [下载](https://url89.ctfile.com/f/31084289-1357051759-6270a9?p=8866) |\n| 领导力精进 | 马歇尔・古德史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357051687-9902c1?p=8866) |\n| 你的降落伞是什么颜色？（全新修订版） | 理查德・尼尔森・鲍利斯 | [下载](https://url89.ctfile.com/f/31084289-1357051645-1c1d01?p=8866) |\n| 精简社交 | 莫拉格・巴雷特 | [下载](https://url89.ctfile.com/f/31084289-1357051432-be062d?p=8866) |\n| 如何一开口就赢 | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866) |\n| 绝地谈判 | 马蒂亚斯・施汉纳 | [下载](https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866) |\n| 麦肯锡入职培训第一课 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357051099-2c64b3?p=8866) |\n| 终身成长行动指南 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357051090-399562?p=8866) |\n| 加速 | 张萌 | [下载](https://url89.ctfile.com/f/31084289-1357051021-d70559?p=8866) |\n| 干法（口袋版） | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357050637-d4db7c?p=8866) |\n| 沟通也要懂套路 | 姜朝川 | [下载](https://url89.ctfile.com/f/31084289-1357050553-6c8088?p=8866) |\n| 权力48法则 | 罗伯特・格林 | [下载](https://url89.ctfile.com/f/31084289-1357050544-c1dce2?p=8866) |\n| 管理是个技术活 | 芭芭拉・米切尔/科妮莉亚・甘伦 | [下载](https://url89.ctfile.com/f/31084289-1357049890-4525e6?p=8866) |\n| 格局逆袭 | 宗宁 | [下载](https://url89.ctfile.com/f/31084289-1357049770-74e266?p=8866) |\n| 1分钟沟通课 | 鱼住理英 | [下载](https://url89.ctfile.com/f/31084289-1357049569-e67748?p=8866) |\n| 别做那只迷途的候鸟 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357049458-59841f?p=8866) |\n| 高效人士的问题解决术 | 森秀明 | [下载](https://url89.ctfile.com/f/31084289-1357049437-4b60bc?p=8866) |\n| 跟任何人都合得来 | 罗伯特・萨顿 | [下载](https://url89.ctfile.com/f/31084289-1357049395-f814dd?p=8866) |\n| 北上广女子图鉴 | 王小圈 | [下载](https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866) |\n| 领导就是让人追随 | 约翰・科特/霍尔格・拉斯格博 | [下载](https://url89.ctfile.com/f/31084289-1357048351-128b23?p=8866) |\n| 极简思考 | 迈克・费廖洛 | [下载](https://url89.ctfile.com/f/31084289-1357045453-221053?p=8866) |\n| 高效领导力 | 布伦达・本斯 | [下载](https://url89.ctfile.com/f/31084289-1357044523-e9c7cf?p=8866) |\n| 高情商沟通 | 仲佳伟/文娅 | [下载](https://url89.ctfile.com/f/31084289-1357043860-e43eee?p=8866) |\n| 看人心理学 | 赵育宁 | [下载](https://url89.ctfile.com/f/31084289-1357043821-0b9174?p=8866) |\n| 麦肯锡教我的写作武器 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866) |\n| 冲突管理 | 大卫・里德尔 | [下载](https://url89.ctfile.com/f/31084289-1357042798-f29838?p=8866) |\n| 麦肯锡教我的思考武器 | 安宅和人 | [下载](https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866) |\n| 策略：如何在复杂的世界里成为高手 | 江潮 | [下载](https://url89.ctfile.com/f/31084289-1357042420-4330fe?p=8866) |\n| 聪明人极简图表工作法 | 高桥政史 | [下载](https://url89.ctfile.com/f/31084289-1357041055-b76bd9?p=8866) |\n| 未来工作 | 泰勒・皮尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357040533-619ca7?p=8866) |\n| 跳槽圣经 | 北野唯我 | [下载](https://url89.ctfile.com/f/31084289-1357040419-a31bca?p=8866) |\n| 勇气 | 萨莉・克劳切克 | [下载](https://url89.ctfile.com/f/31084289-1357039423-2ec787?p=8866) |\n| 生涯线 | 戴维・范鲁伊 | [下载](https://url89.ctfile.com/f/31084289-1357035568-93b2da?p=8866) |\n| 销售圣经 | 杰弗里・吉特黙 | [下载](https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866) |\n| 职场第一课（套装共5册） | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1357034905-6be3d1?p=8866) |\n| 每周工作4小时（修订版） | 蒂莫西・费里斯 | [下载](https://url89.ctfile.com/f/31084289-1357034803-5cbfc5?p=8866) |\n| 高维度思考法：职场问题解决篇 | 细谷功 | [下载](https://url89.ctfile.com/f/31084289-1357032967-9a94c4?p=8866) |\n| 12个工作的基本 | 大久保幸夫 | [下载](https://url89.ctfile.com/f/31084289-1357032577-bb5e0b?p=8866) |\n| 学习力：颠覆职场学习的高效方法 | 王世民/缪志聪 | [下载](https://url89.ctfile.com/f/31084289-1357032280-a9aea7?p=8866) |\n| 绩效使能：超越OKR | 况阳 | [下载](https://url89.ctfile.com/f/31084289-1357031344-240881?p=8866) |\n| 横向领导力 | 罗杰・费希尔 | [下载](https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866) |\n| 中层领导力（共三册） | 约翰・麦克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866) |\n| 向前一步 | 谢丽尔・桑德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357029580-33e2ad?p=8866) |\n| 使命必达：百分之百实现目标的行为科学管理法 | 石田淳 | [下载](https://url89.ctfile.com/f/31084289-1357029574-176028?p=8866) |\n| 深度成长 | 亚力山德拉・卡弗拉科斯/凯瑟琳・明斯 | [下载](https://url89.ctfile.com/f/31084289-1357029517-6caf3c?p=8866) |\n| 转行：发现一个未知的自己 | 埃米尼亚・伊瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866) |\n| 你坚持的原则其实害了你 | 午堂登纪雄 | [下载](https://url89.ctfile.com/f/31084289-1357029151-25cd57?p=8866) |\n| 高能量姿势 | 埃米・卡迪 | [下载](https://url89.ctfile.com/f/31084289-1357027921-c57e26?p=8866) |\n| 自我赋能 | 蒂法尼・杜芙 | [下载](https://url89.ctfile.com/f/31084289-1357027006-6f650f?p=8866) |\n| 能力变现 | 林宣 | [下载](https://url89.ctfile.com/f/31084289-1357026904-ad5f9e?p=8866) |\n| 主宰演讲台 | 比尔・胡戈特伯 | [下载](https://url89.ctfile.com/f/31084289-1357026454-f43984?p=8866) |\n| 洞见 | 赵昂 | [下载](https://url89.ctfile.com/f/31084289-1357025662-874d05?p=8866) |\n| 从极简到极致 | 赵晓璃 | [下载](https://url89.ctfile.com/f/31084289-1357025524-050d17?p=8866) |\n| 做自己人生的CEO | 崔璀 | [下载](https://url89.ctfile.com/f/31084289-1357024684-060b59?p=8866) |\n| 逻辑工作法 | 西村克己 | [下载](https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866) |\n| 我每天只工作3小时 | 押井守 | [下载](https://url89.ctfile.com/f/31084289-1357024051-5c3359?p=8866) |\n| 个体赋能 | YouCore | [下载](https://url89.ctfile.com/f/31084289-1357023574-bc06f9?p=8866) |\n| 赢（纪念版） | 杰克・韦尔奇/苏茜・韦尔奇 | [下载](https://url89.ctfile.com/f/31084289-1357023238-f5a2b2?p=8866) |\n| 麻省理工深度思考法 | 平井孝志 | [下载](https://url89.ctfile.com/f/31084289-1357022962-4946d7?p=8866) |\n| 释放潜能：7个改变个人、团队和组织的教练技巧 | 迈克尔・K.辛普森 | [下载](https://url89.ctfile.com/f/31084289-1357021999-7bece0?p=8866) |\n| 精准表达：让你的方案在最短的时间内打动人心 | 高田贵久 | [下载](https://url89.ctfile.com/f/31084289-1357022005-8ea54a?p=8866) |\n| 圈子圈套1：战局篇 | 王强 | [下载](https://url89.ctfile.com/f/31084289-1357021465-4d2c0f?p=8866) |\n| 圈子圈套2：迷局篇 | 王强 | [下载](https://url89.ctfile.com/f/31084289-1357021450-f4aaca?p=8866) |\n| 圈子圈套3：终局篇 | 王强 | [下载](https://url89.ctfile.com/f/31084289-1357021447-9e6224?p=8866) |\n| 零秒工作 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357021129-71f208?p=8866) |\n| 泰普勒极简人生法则系列（套装共6册） | 理查德・泰普勒 | [下载](https://url89.ctfile.com/f/31084289-1357020667-154b56?p=8866) |\n| 精准努力 | 野口真人 | [下载](https://url89.ctfile.com/f/31084289-1357020343-fb81d1?p=8866) |\n| 职得：成为自己故事里的英雄 | 高琳 | [下载](https://url89.ctfile.com/f/31084289-1357019758-aa07ed?p=8866) |\n| 当机立断 | 出口治明 | [下载](https://url89.ctfile.com/f/31084289-1357019689-d767ca?p=8866) |\n| 天下没有陌生人 | 刘希平 | [下载](https://url89.ctfile.com/f/31084289-1357019620-995041?p=8866) |\n| 斜杠创业家 | 金伯莉・帕尔默 | [下载](https://url89.ctfile.com/f/31084289-1357019509-061739?p=8866) |\n| 远见：如何规划职业生涯3大阶段 | 布赖恩・费瑟斯通豪 | [下载](https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866) |\n| 秘书工作手记 | 像玉的石头  | [下载](https://url89.ctfile.com/f/31084289-1357017100-e77e05?p=8866) |\n| 工作是最好的修行 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357016611-837fca?p=8866) |\n| 演讲的本质 | 马丁・纽曼 | [下载](https://url89.ctfile.com/f/31084289-1357016086-95e98b?p=8866) |\n| 没经验，是你最大优势 | 蒋雅淇 | [下载](https://url89.ctfile.com/f/31084289-1357015990-ad6ad2?p=8866) |\n| 光速成长 | 林晅 | [下载](https://url89.ctfile.com/f/31084289-1357015888-f1ac25?p=8866) |\n| 麦肯锡教我的工作方法 | 中村诚一 | [下载](https://url89.ctfile.com/f/31084289-1357015750-dc42d1?p=8866) |\n| 麦肯锡精英系列（共五册） | 高杉尚孝等 | [下载](https://url89.ctfile.com/f/31084289-1357015747-03ae60?p=8866) |\n| 靠谱 | 大石哲之 | [下载](https://url89.ctfile.com/f/31084289-1357015399-c95a28?p=8866) |\n| 关键责任 | 科里・帕特森/约瑟夫・格雷尼等 | [下载](https://url89.ctfile.com/f/31084289-1357015333-d2457b?p=8866) |\n| 极简工作Ⅱ | 约根・库尔兹 | [下载](https://url89.ctfile.com/f/31084289-1357015210-742ca7?p=8866) |\n| 别让猴子跳回背上 | 威廉・安肯三世 | [下载](https://url89.ctfile.com/f/31084289-1357014490-3430ef?p=8866) |\n| 职场奋斗记：我在职场二十年 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1357012801-1f9218?p=8866) |\n| 工作DNA | 郝明义 | [下载](https://url89.ctfile.com/f/31084289-1357011814-6a2602?p=8866) |\n| 提问的力量 | 弗兰克・赛斯诺 | [下载](https://url89.ctfile.com/f/31084289-1357010539-958825?p=8866) |\n| 干法 | 稻盛和夫 | [下载](https://url89.ctfile.com/f/31084289-1357009981-818446?p=8866) |\n| 权力：为什么只为某些人所拥有（经典版） | 杰弗瑞・菲佛 | [下载](https://url89.ctfile.com/f/31084289-1357009081-1d3a99?p=8866) |\n| 你从未真正拼过 | LinkedIn（领英） | [下载](https://url89.ctfile.com/f/31084289-1357008895-f7513b?p=8866) |\n| 冷读术（白金珍藏版） | 石真语 | [下载](https://url89.ctfile.com/f/31084289-1357007497-602272?p=8866) |\n| 硬球：政治是这样玩的 | 克里斯·马修斯 | [下载](https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866) |\n| 杜拉拉升职记（套装共4册） | 李可 | [下载](https://url89.ctfile.com/f/31084289-1357006420-6369ee?p=8866) |\n| 小强升职记（升级版） | 邹鑫 | [下载](https://url89.ctfile.com/f/31084289-1357006204-c05b09?p=8866) |\n| 新版一分钟经理人 | 肯・布兰佳 | [下载](https://url89.ctfile.com/f/31084289-1357005577-99fa0a?p=8866) |\n| 销售就是要搞定人 | 倪建伟 | [下载](https://url89.ctfile.com/f/31084289-1357005031-3463fc?p=8866) |\n| 欢乐颂：第一季 | 阿耐 | [下载](https://url89.ctfile.com/f/31084289-1357004734-314fba?p=8866) |\n| 欢乐颂：第二季 | 阿耐 | [下载](https://url89.ctfile.com/f/31084289-1357004740-d1a809?p=8866) |\n| 欢乐颂：第三季 | 阿耐 | [下载](https://url89.ctfile.com/f/31084289-1357004752-0b1057?p=8866) |\n"
  },
  {
    "path": "md/股市.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 股市\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大猎杀2 | 庄欣 | [下载](https://url89.ctfile.com/f/31084289-1357024588-69ffa1?p=8866) |\n| 股民的眼泪 | 张华桥 | [下载](https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866) |\n| 战上海：决胜股市未来三十年 | 洪榕 | [下载](https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866) |\n| 大猎杀 | 庄欣 | [下载](https://url89.ctfile.com/f/31084289-1357006630-919838?p=8866) |\n| 股市真规则（第二版） | 帕特・多尔西 | [下载](https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866) |\n"
  },
  {
    "path": "md/股权.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 股权\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 股权战争（全新升级版） | 苏龙飞 | [下载](https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866) |\n| 一本书看透股权架构 | 李利威 | [下载](https://url89.ctfile.com/f/31084289-1357035283-84862e?p=8866) |\n| 合伙人制度 | 郑指梁 | [下载](https://url89.ctfile.com/f/31084289-1357020991-6d4b56?p=8866) |\n| King of Capital | David Carey/John E. Morris  | [下载](https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866) |\n| 解读私募股权基金 | 周炜 | [下载](https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866) |\n"
  },
  {
    "path": "md/股票.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 股票\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 价值投资的十项核心原则 | 詹姆斯・蒙蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1375491475-157297?p=8866) |\n| 股票魔法师3 | Mark Minervini | [下载](https://url89.ctfile.com/f/31084289-1375498612-5bb5b5?p=8866) |\n| 趋势投资 | 丁圣元 | [下载](https://url89.ctfile.com/f/31084289-1375498825-647703?p=8866) |\n| 股票投资三部曲 | 杰弗里・肯尼迪等 | [下载](https://url89.ctfile.com/f/31084289-1375498966-b96f00?p=8866) |\n| 常识的力量 | 梁宇峰 | [下载](https://url89.ctfile.com/f/31084289-1375498927-eace22?p=8866) |\n| 投资核心资产 | 王德伦等 | [下载](https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866) |\n| 投资理财红宝书 | 龙红亮 | [下载](https://url89.ctfile.com/f/31084289-1375499407-f22251?p=8866) |\n| 财报一看就懂 | 薛兆亨/徐林宽 | [下载](https://url89.ctfile.com/f/31084289-1375509232-8957d6?p=8866) |\n| 复利信徒 | 李杰 | [下载](https://url89.ctfile.com/f/31084289-1375509553-ecceff?p=8866) |\n| 祖鲁法则：成长股投资要义 | 吉姆・斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1375510081-ecc46f?p=8866) |\n| 股票大作手利弗莫尔的交易精髓 | 李路 | [下载](https://url89.ctfile.com/f/31084289-1375510084-3e7768?p=8866) |\n| 投资策略实战分析（原书第4版·典藏版） | 詹姆斯・奥肖内西 | [下载](https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866) |\n| 蜡烛图精解（典藏版） | 格里高里・莫里斯/赖安・里奇菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866) |\n| 格雷厄姆精选集 | 珍妮特・洛 | [下载](https://url89.ctfile.com/f/31084289-1357004341-efe06a?p=8866) |\n| 股票投资的24堂必修课（典藏版） | 威廉・欧奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357004278-bf2f1f?p=8866) |\n| 价值发现 | 张靖东 | [下载](https://url89.ctfile.com/f/31084289-1357004107-ba8cf8?p=8866) |\n| 财富自由新思维 | 洪榕 | [下载](https://url89.ctfile.com/f/31084289-1357000711-ebbf11?p=8866) |\n| 一个投机者的告白（实战版） | 安纳金 | [下载](https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866) |\n| 证券分析（原书第6版） | 本杰明・格雷厄姆/戴维・多德 | [下载](https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866) |\n| 股市趋势技术分析圣经 | 理查德·W·夏巴克 | [下载](https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866) |\n| 交易之路 | 陈凯 | [下载](https://url89.ctfile.com/f/31084289-1357051435-9ae2f8?p=8866) |\n| 投资心理学（原书第5版） | 约翰 R. 诺夫辛格 | [下载](https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866) |\n| 日本蜡烛图技术新解 | 史蒂夫・尼森 | [下载](https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866) |\n| 金融怪杰：华尔街的顶级交易员 | 杰克D. 施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866) |\n| 走进我的交易室 | 亚历山大・艾尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866) |\n| 股价潜结构 | 姚简明 | [下载](https://url89.ctfile.com/f/31084289-1357049869-9aa57b?p=8866) |\n| 金股博弈（第4版） | 弈樊 | [下载](https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866) |\n| 逆向投资策略 | 大卫・德雷曼 | [下载](https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866) |\n| 交易冠军 | 马丁・舒华兹 | [下载](https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866) |\n| 艾略特波浪理论：研判股市底部与顶部的有效工具 | 拉尔夫·N·艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866) |\n| 裸K线交易法 | 许佳聪 | [下载](https://url89.ctfile.com/f/31084289-1357046431-11f0bb?p=8866) |\n| 金融交易圣经 | 约翰・派珀 | [下载](https://url89.ctfile.com/f/31084289-1357046341-7d2450?p=8866) |\n| 给投资新手的极简股票课 | lip师兄 | [下载](https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866) |\n| 巴菲特的第一桶金 | 格伦・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357044766-53160b?p=8866) |\n| 亲历巴菲特股东大会 | 杰夫・马修斯 | [下载](https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866) |\n| 我如何从股市赚了200万（珍藏版） | 尼古拉斯・达瓦斯 | [下载](https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866) |\n| 小散逆袭：手把手教你做量化定投 | 万磊 | [下载](https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866) |\n| 看盘方法与技巧一本通 | 老牛 | [下载](https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866) |\n| 概率游戏：像操盘手那样做股票（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866) |\n| 概率游戏：像操盘手那样做股票 | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043512-106aeb?p=8866) |\n| 巴菲特与索罗斯的投资习惯（纪念版） | 马克・泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866) |\n| 黑马波段操盘术（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866) |\n| 振荡指标MACD（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866) |\n| 超额收益 | 刘哲 | [下载](https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866) |\n| 穿过迷雾 | 任俊杰 | [下载](https://url89.ctfile.com/f/31084289-1357042663-cec773?p=8866) |\n| 在苍茫中传灯 | 姚斌 | [下载](https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866) |\n| 以交易为生Ⅱ | 亚历山大・埃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866) |\n| 高频交易员 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866) |\n| 雪球投资 | 林起 | [下载](https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866) |\n| 巴菲特高收益投资策略 | 吉瓦・拉玛斯瓦米 | [下载](https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866) |\n| 12年20倍 | 唐彬 | [下载](https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866) |\n| 蜡烛图精解（原书第3版） | 格里高里・莫里斯等 | [下载](https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866) |\n| 巴菲特的投资组合（珍藏版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866) |\n| 股票作手回忆录 | 杰西・利弗莫尔 | [下载](https://url89.ctfile.com/f/31084289-1357040125-1a9d7d?p=8866) |\n| 我的第一本炒股书 | 杨金 | [下载](https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866) |\n| 量价分析 | 安娜・库林 | [下载](https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866) |\n| 股票基本面分析清单 | 迈克尔・希恩 | [下载](https://url89.ctfile.com/f/31084289-1357039261-a095a3?p=8866) |\n| 背离技术分析 | 江南小隐 | [下载](https://url89.ctfile.com/f/31084289-1357039435-cf40cf?p=8866) |\n| 投资最重要的事（全新升级版） | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866) |\n| 猎杀黑马 | 王宁 | [下载](https://url89.ctfile.com/f/31084289-1357038283-074510?p=8866) |\n| 过顶擒龙 | 王宁 | [下载](https://url89.ctfile.com/f/31084289-1357038112-a98e13?p=8866) |\n| 戴维·朗德里波段交易法则 | 戴维・朗德里 | [下载](https://url89.ctfile.com/f/31084289-1357037992-dbffa0?p=8866) |\n| 暴力K线擒大牛 | 王宁 | [下载](https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866) |\n| 彼得·林奇的成功投资（典藏版） | 彼得・林奇/约翰・罗瑟查尔德 | [下载](https://url89.ctfile.com/f/31084289-1357036582-dfafaf?p=8866) |\n| 在股市大崩溃前抛出的人（典藏版） | 伯纳德・巴鲁克 | [下载](https://url89.ctfile.com/f/31084289-1357036147-29ca3f?p=8866) |\n| 战胜华尔街（典藏版） | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866) |\n| 日本蜡烛图技术新解（典藏版） | 史蒂夫・尼森 | [下载](https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866) |\n| 赢得输家的游戏（原书第6版） | 查尔斯・埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866) |\n| 金融街：危险交易 | 梁成 | [下载](https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866) |\n| 炒股的智慧（第四版） | 陈江挺 | [下载](https://url89.ctfile.com/f/31084289-1357029619-c30e77?p=8866) |\n| 技术分析（原书第5版） | 马丁J. 普林格 | [下载](https://url89.ctfile.com/f/31084289-1357028260-40febb?p=8866) |\n| 价值投资的秘密 | Joel Greenblatt | [下载](https://url89.ctfile.com/f/31084289-1357028044-74e8a0?p=8866) |\n| 查理·芒格的投资思想 | 戴维・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866) |\n| 小乌龟投资智慧 | 伍治坚 | [下载](https://url89.ctfile.com/f/31084289-1357026301-703f65?p=8866) |\n| 股票魔法师2 | 马克・米勒维尼 | [下载](https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866) |\n| 股票大作手回忆录 | 埃德文・拉斐尔 | [下载](https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866) |\n| 股票大作手操盘术 | 杰西・利弗莫尔 | [下载](https://url89.ctfile.com/f/31084289-1357021099-c56b0b?p=8866) |\n| 一个投资家的20年（第2版） | 杨天南 | [下载](https://url89.ctfile.com/f/31084289-1357020628-097a89?p=8866) |\n| 巴菲特的估值逻辑 | 林安霁 | [下载](https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866) |\n| 股市趋势技术分析（原书第10版） | 罗伯特 D. 爱德华兹等 | [下载](https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866) |\n| 超级强势股：如何投资小盘价值成长股（珍藏版） | 肯尼斯・费雪 | [下载](https://url89.ctfile.com/f/31084289-1357017688-42d39e?p=8866) |\n| 炒股的智慧 | 陈江挺 | [下载](https://url89.ctfile.com/f/31084289-1357017415-1f1d36?p=8866) |\n| 冲刺白马股 | 启明 | [下载](https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866) |\n| 股票魔法师 | 马克・米勒维尼 | [下载](https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866) |\n| 彼得林奇投资经典全集（共3册） | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866) |\n| 期货市场技术分析 | 约翰・墨菲 | [下载](https://url89.ctfile.com/f/31084289-1357015753-885d37?p=8866) |\n| 不落俗套的成功 | 大卫・斯文森 | [下载](https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866) |\n| A股赚钱必修课 | 洪榕 | [下载](https://url89.ctfile.com/f/31084289-1357012393-e3ca99?p=8866) |\n| 华尔街幽灵 | 阿瑟・辛普森 | [下载](https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866) |\n| 专业投机原理（珍藏版） | 维克托・斯波朗迪 | [下载](https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866) |\n| 奥马哈之雾 | 任俊杰/朱晓芸 | [下载](https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866) |\n| 操盘手Ⅰ：自由救赎 | 花荣 | [下载](https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866) |\n| 走出幻觉・走向成熟 | 金融帝国 | [下载](https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866) |\n| 一个投资家的20年 | 杨天南 | [下载](https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866) |\n| 大牛市・股殇系列（全两册） | 诸葛就是不亮 | [下载](https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866) |\n| 百箭穿杨 | 小小辛巴 | [下载](https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866) |\n| 非赚不可 | 袁园 | [下载](https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866) |\n| 炒股怎能不懂波段 | 宋建文 | [下载](https://url89.ctfile.com/f/31084289-1357007434-479b88?p=8866) |\n| 股市长线法宝（原书第5版） | 杰里米J. 西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866) |\n| 梦想与浮沉：A股十年上市博弈（2004～2014） | 王骥跃/班妮 | [下载](https://url89.ctfile.com/f/31084289-1357006774-e721a4?p=8866) |\n| 史丹•温斯坦称傲牛熊市的秘密（珍藏版） | 史丹·温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866) |\n| 股市真规则（第二版） | 帕特・多尔西 | [下载](https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866) |\n| 祖鲁法则 | 吉姆·斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866) |\n| 安东尼·波顿的成功投资 | 安东尼·波顿 | [下载](https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866) |\n| 短线交易秘诀（原书第2版） | 拉里·威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357005604-3202f1?p=8866) |\n| 雪球「岛」系列・投资入门套装（共七册） | 雪球用户 | [下载](https://url89.ctfile.com/f/31084289-1357005484-765294?p=8866) |\n| 约翰·聂夫的成功投资（珍藏版） | 约翰・聂夫 | [下载](https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866) |\n| 以交易为生（珍藏版） | 亚历山大・埃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866) |\n| 通向财务自由之路（原书第2版·珍藏版） | 范・撒普 | [下载](https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866) |\n| 非理性繁荣（第二版） | 罗伯特·希勒 | [下载](https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866) |\n| 怎样选择成长股 | 菲利普·A·费舍 | [下载](https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866) |\n| 笑傲股市（原书第四版） | 威廉・欧奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866) |\n| 彼得·林奇教你理财 | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357004788-b9535b?p=8866) |\n| 风生水起：水皮股市创富录 | 水皮 | [下载](https://url89.ctfile.com/f/31084289-1357004770-b214ba?p=8866) |\n| 那些滚雪球的人 | 王星 | [下载](https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866) |\n"
  },
  {
    "path": "md/肯尼迪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 肯尼迪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 罗斯玛丽：肯尼迪家族隐藏的女儿 | 凯特・克里福・拉森 | [下载](https://url89.ctfile.com/f/31084289-1357024627-9a0631?p=8866) |\n"
  },
  {
    "path": "md/育儿.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 育儿\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 上岸：一个海淀妈妈的重点学校闯关记 | 安柏 | [下载](https://url89.ctfile.com/f/31084289-1375493359-744141?p=8866) |\n| 孩子的品格 | 彭凯平/闫伟 | [下载](https://url89.ctfile.com/f/31084289-1375493764-ff4380?p=8866) |\n| 好孕，从卵子开始 | 瑞贝卡・费特 | [下载](https://url89.ctfile.com/f/31084289-1375500655-c5e536?p=8866) |\n| 怀孕呵护指南 | 六层楼先生 | [下载](https://url89.ctfile.com/f/31084289-1375501330-30fc9c?p=8866) |\n| 崔玉涛自然养育法 | 崔玉涛 | [下载](https://url89.ctfile.com/f/31084289-1375501618-4b43b7?p=8866) |\n| 妈妈的悔过书 | 李柳南 | [下载](https://url89.ctfile.com/f/31084289-1375510222-3ee66f?p=8866) |\n| 睡前育儿法 | 李永爱 | [下载](https://url89.ctfile.com/f/31084289-1375510288-757ee6?p=8866) |\n| 让孩子像哲学家一样会思考 | 张玮/沈文婕 | [下载](https://url89.ctfile.com/f/31084289-1375511395-00f7ab?p=8866) |\n| 教育的常识 | 尹建莉 | [下载](https://url89.ctfile.com/f/31084289-1375511668-05c413?p=8866) |\n| 顽童小番茄 | 简媜 | [下载](https://url89.ctfile.com/f/31084289-1357004602-df8a5d?p=8866) |\n| 丁香妈妈科学养育 | 丁香妈妈 | [下载](https://url89.ctfile.com/f/31084289-1357004488-c3216d?p=8866) |\n| 最好的学区房是你家的书房 | 佐藤亮子 | [下载](https://url89.ctfile.com/f/31084289-1357000891-34d4f3?p=8866) |\n| 真希望我父母读过这本书 | 菲利帕・佩里 | [下载](https://url89.ctfile.com/f/31084289-1357000732-ac2b7d?p=8866) |\n| 准备 | 黛安娜・塔文纳 | [下载](https://url89.ctfile.com/f/31084289-1356998926-07fdc2?p=8866) |\n| 养育女孩（成长版） | 史蒂夫・比达尔夫 | [下载](https://url89.ctfile.com/f/31084289-1356994843-6e6be3?p=8866) |\n| 陪孩子终身成长 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1356991630-eba848?p=8866) |\n| 天生非此 | 奥利弗・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1356986632-034d98?p=8866) |\n| 父母的语言 | 达娜・萨斯金德等 | [下载](https://url89.ctfile.com/f/31084289-1357046104-734eee?p=8866) |\n| 反溺爱 | 罗恩・利伯 | [下载](https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866) |\n| 虎妈战歌 | 蔡美儿 | [下载](https://url89.ctfile.com/f/31084289-1357042387-c2b7fd?p=8866) |\n| 园丁与木匠 | 艾莉森・高普尼克 | [下载](https://url89.ctfile.com/f/31084289-1357039465-e654bf?p=8866) |\n| 科学本来很有趣 | 赛・太蒙尼 | [下载](https://url89.ctfile.com/f/31084289-1357036087-de1c48?p=8866) |\n| 不管教的勇气 | 岸见一郎 | [下载](https://url89.ctfile.com/f/31084289-1357035196-6f1a79?p=8866) |\n| 芬兰教育全球第一的秘密（珍藏版） | 陈之华 | [下载](https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866) |\n| 写给父母的未来之书 | 童行学院教研团队 | [下载](https://url89.ctfile.com/f/31084289-1357028215-1d6207?p=8866) |\n| 终身幼儿园 | 米切尔・雷斯尼克 | [下载](https://url89.ctfile.com/f/31084289-1357023376-8387e1?p=8866) |\n| 孩子是脚，教育是鞋 | 李跃儿 | [下载](https://url89.ctfile.com/f/31084289-1357020505-1ae1af?p=8866) |\n| 美国儿科学会育儿百科（第6版） | 斯蒂文・谢尔弗 | [下载](https://url89.ctfile.com/f/31084289-1357020160-df4997?p=8866) |\n| 0～12岁，给孩子一个好性格 | 葛安妮/葛碧建 | [下载](https://url89.ctfile.com/f/31084289-1357018738-0a0c03?p=8866) |\n| 你就是孩子最好的玩具 | 金伯莉・布雷恩 | [下载](https://url89.ctfile.com/f/31084289-1357017844-ea3b3d?p=8866) |\n| 成就好爸爸：男人一生最重要的工作 | 格雷戈里・史雷顿 | [下载](https://url89.ctfile.com/f/31084289-1357017655-919009?p=8866) |\n| Between Parent and Child | Haim G Ginott | [下载](https://url89.ctfile.com/f/31084289-1357013977-185e23?p=8866) |\n| 养育男孩（典藏版） | 史蒂夫・比达尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357011214-5d05e7?p=8866) |\n| 法伯睡眠宝典 | 理查德・法伯 | [下载](https://url89.ctfile.com/f/31084289-1357011148-584292?p=8866) |\n| 遇见孩子，遇见更好的自己 | 赛西・高夫/戴维・托马斯/梅丽莎・切瓦特桑 | [下载](https://url89.ctfile.com/f/31084289-1357008085-a78d7c?p=8866) |\n| 龙应台“人生三书”（套装共3册） | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357007842-a30497?p=8866) |\n| 第一次当奶爸 | 马克・伍兹 | [下载](https://url89.ctfile.com/f/31084289-1357007575-ad564d?p=8866) |\n| 一眼看懂小孩子 | 王勇 | [下载](https://url89.ctfile.com/f/31084289-1357006657-6d71ab?p=8866) |\n| 爱和自由：孙瑞雪幼儿教育演讲录 | 孙瑞雪 | [下载](https://url89.ctfile.com/f/31084289-1357006639-1e967f?p=8866) |\n| 谁拿走了孩子的幸福 | 李跃儿 | [下载](https://url89.ctfile.com/f/31084289-1357006636-098075?p=8866) |\n| 早教的秘密 | 李子勋 | [下载](https://url89.ctfile.com/f/31084289-1357006603-2c7afe?p=8866) |\n| 郑玉巧育儿经·婴儿卷 | 郑玉巧 | [下载](https://url89.ctfile.com/f/31084289-1357006084-2be15d?p=8866) |\n| 郑玉巧育儿经·幼儿卷 | 郑玉巧 | [下载](https://url89.ctfile.com/f/31084289-1357006141-816059?p=8866) |\n| 郑玉巧育儿经·胎儿卷 | 郑玉巧 | [下载](https://url89.ctfile.com/f/31084289-1357006081-99bed7?p=8866) |\n| 西尔斯育儿经 | 西尔斯夫妇 | [下载](https://url89.ctfile.com/f/31084289-1357005925-f7ac8a?p=8866) |\n| 定本育儿百科 | 松田道雄 | [下载](https://url89.ctfile.com/f/31084289-1357005931-4b7233?p=8866) |\n| 崔玉涛：宝贝健康公开课 | 崔玉涛 | [下载](https://url89.ctfile.com/f/31084289-1357004908-0271f7?p=8866) |\n"
  },
  {
    "path": "md/胡适.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 胡适\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 胡适19堂文学课（作家榜经典文库） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357043251-5f125a?p=8866) |\n"
  },
  {
    "path": "md/能力.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 能力\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 个体突围 | 艾玛・加侬 | [下载](https://url89.ctfile.com/f/31084289-1357052545-bd0c8e?p=8866) |\n| 全脑优势（第二版） | 奈德・赫曼等 | [下载](https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866) |\n| 能力都是逼出来的 | 布兰登・伯查德 | [下载](https://url89.ctfile.com/f/31084289-1357020433-eee874?p=8866) |\n"
  },
  {
    "path": "md/能源.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 能源\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 石油的时代 | 王能全 | [下载](https://url89.ctfile.com/f/31084289-1357004215-adccfc?p=8866) |\n| 沙特公司 | 埃伦·R.沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357030858-c373d3?p=8866) |\n"
  },
  {
    "path": "md/脑科学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 脑科学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 隐藏的自我 | 大卫・伊格曼 | [下载](https://url89.ctfile.com/f/31084289-1375500376-01a4ec?p=8866) |\n| 为什么精英这样用脑不会累 | 桦泽紫苑 | [下载](https://url89.ctfile.com/f/31084289-1356988534-41fc99?p=8866) |\n| 重塑大脑回路 | 亚历克斯・科布 | [下载](https://url89.ctfile.com/f/31084289-1357052773-076a3d?p=8866) |\n| 大脑训练手册 | 塔拉・斯瓦特 | [下载](https://url89.ctfile.com/f/31084289-1357051024-e3c24d?p=8866) |\n| 错觉心理学 | 博・洛托 | [下载](https://url89.ctfile.com/f/31084289-1357046674-506c48?p=8866) |\n| 触感引擎 | 大卫・林登 | [下载](https://url89.ctfile.com/f/31084289-1357042108-97942a?p=8866) |\n| 夜脑：在睡眠中自动学习的秘密 | 理查德・怀斯曼 | [下载](https://url89.ctfile.com/f/31084289-1357021975-75a947?p=8866) |\n| 笛卡尔的错误 | 安东尼奥・达马西奥 | [下载](https://url89.ctfile.com/f/31084289-1357018066-8ad3a0?p=8866) |\n"
  },
  {
    "path": "md/脱口秀.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 脱口秀\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 李诞脱口秀工作手册 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1375505839-67294e?p=8866) |\n| 如何成为一名脱口秀老手 | 格雷格・迪安 | [下载](https://url89.ctfile.com/f/31084289-1356985621-257d5f?p=8866) |\n| 手把手教你玩脱口秀 | 格雷格・迪安 | [下载](https://url89.ctfile.com/f/31084289-1357017172-eb3c87?p=8866) |\n"
  },
  {
    "path": "md/腐败.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 腐败\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 腐败：人性与文化 | 克里斯・肖尔/迪特尔・哈勒 | [下载](https://url89.ctfile.com/f/31084289-1356983827-64dbd1?p=8866) |\n"
  },
  {
    "path": "md/腾讯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 腾讯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 解密腾讯帝国（全6册） | 吴晓波等 | [下载](https://url89.ctfile.com/f/31084289-1357046593-97d36e?p=8866) |\n| 腾讯传1998-2016 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357007635-ae3d2a?p=8866) |\n"
  },
  {
    "path": "md/自传.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自传\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我知道光在哪里 | 安东尼・雷・辛顿/劳拉・洛夫・哈丁 | [下载](https://url89.ctfile.com/f/31084289-1375509493-31e3e9?p=8866) |\n| 马拉多纳自传 | 迭戈・阿曼多・马拉多纳 | [下载](https://url89.ctfile.com/f/31084289-1356999238-9530a8?p=8866) |\n| 大梦无疆 | 西蒙・佩雷斯 | [下载](https://url89.ctfile.com/f/31084289-1356995059-ff1e61?p=8866) |\n| 启与魅 | 卡森・麦卡勒斯 | [下载](https://url89.ctfile.com/f/31084289-1356994519-34f572?p=8866) |\n| 我的前半生（全本） | 爱新觉罗・溥仪 | [下载](https://url89.ctfile.com/f/31084289-1356993697-c9333e?p=8866) |\n| 胡适四十自述（作家榜经典文库） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866) |\n| 我的奋斗3：童年岛屿 | 卡尔・奥韦・克瑙斯高 | [下载](https://url89.ctfile.com/f/31084289-1357040794-82ba8e?p=8866) |\n| Becoming | Michelle Obama | [下载](链接未找到) |\n| I Am, I Am, I Am | Maggie O'Farrell | [下载](https://url89.ctfile.com/f/31084289-1357034404-5f9292?p=8866) |\n| 天生有罪 | 特雷弗・诺亚 | [下载](https://url89.ctfile.com/f/31084289-1357031266-3e9d43?p=8866) |\n| 永不放弃 | 唐纳德・特朗普/梅瑞迪斯・麦基沃 | [下载](https://url89.ctfile.com/f/31084289-1357030663-a0b1c0?p=8866) |\n| 我生有涯愿无尽 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357020394-9d305d?p=8866) |\n| 活着为了讲述 | 加西亚・马尔克斯 | [下载](https://url89.ctfile.com/f/31084289-1357016920-233354?p=8866) |\n| 富兰克林自传 | 富兰克林 | [下载](https://url89.ctfile.com/f/31084289-1357014847-bd9379?p=8866) |\n| 28岁赚千万 | 穷富弹指间 | [下载](https://url89.ctfile.com/f/31084289-1357010689-3e664e?p=8866) |\n| 墨迹：留在生命和记忆中 | 曾子墨 | [下载](https://url89.ctfile.com/f/31084289-1357006216-f45b42?p=8866) |\n"
  },
  {
    "path": "md/自信.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自信\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 心理学与情商 | 张小宁 | [下载](https://url89.ctfile.com/f/31084289-1357052866-70ecf0?p=8866) |\n| 自信思考 | 泉忠司著 | [下载](https://url89.ctfile.com/f/31084289-1357021117-3cead4?p=8866) |\n"
  },
  {
    "path": "md/自尊.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自尊\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 克服低自尊（第二版） | 梅勒妮・芬内尔 | [下载](https://url89.ctfile.com/f/31084289-1357051270-abaeb1?p=8866) |\n"
  },
  {
    "path": "md/自律.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自律\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 成为可怕的自律人 | 马歇尔・古德史密斯 | [下载](https://url89.ctfile.com/f/31084289-1375499233-71cb99?p=8866) |\n| 健身笔记 | 叔贵 | [下载](https://url89.ctfile.com/f/31084289-1357050808-e7d123?p=8866) |\n"
  },
  {
    "path": "md/自我.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自我\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 唤醒创作力 | 朱莉娅・卡梅伦 | [下载](https://url89.ctfile.com/f/31084289-1357044856-c10ec4?p=8866) |\n| 生命向前 | 迈克尔・海厄特/丹尼尔・哈卡维 | [下载](https://url89.ctfile.com/f/31084289-1357021474-0a76cd?p=8866) |\n| 抗压力：逆境重生法则 | 久世浩司 | [下载](https://url89.ctfile.com/f/31084289-1357020541-463985?p=8866) |\n| 隐形人格 | 海伦・麦格拉斯/哈泽尔・爱德华兹 | [下载](https://url89.ctfile.com/f/31084289-1357020031-123343?p=8866) |\n| 微习惯 | 斯蒂芬・盖斯 | [下载](https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866) |\n| 逆向管理 | 埃米尼亚・伊贝拉 | [下载](https://url89.ctfile.com/f/31084289-1357007590-ce7cce?p=8866) |\n| 清单革命 | 阿图・葛文德 | [下载](https://url89.ctfile.com/f/31084289-1357007152-e2b3d8?p=8866) |\n"
  },
  {
    "path": "md/自控力.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自控力\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 自控力（经典套装三册） | 凯利・麦格尼格尔 | [下载](https://url89.ctfile.com/f/31084289-1356984688-52a72a?p=8866) |\n| 棉花糖实验 | 沃尔特・米歇尔 | [下载](https://url89.ctfile.com/f/31084289-1357009000-8191ee?p=8866) |\n"
  },
  {
    "path": "md/自然.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自然\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 里程碑书系（套装7册） | 吉姆・贝尔等 | [下载](https://url89.ctfile.com/f/31084289-1375497502-218ca7?p=8866) |\n| 我们星球上的生命 | 大卫・爱登堡 | [下载](https://url89.ctfile.com/f/31084289-1375503952-5bd190?p=8866) |\n| 世界自然文学经典：博物图鉴版（共12册） | 伊迪丝・霍尔登等 | [下载](https://url89.ctfile.com/f/31084289-1375505827-9f090e?p=8866) |\n| 阳台人的植物生活 | 伊藤正幸 | [下载](https://url89.ctfile.com/f/31084289-1375508935-c37c4a?p=8866) |\n| 终极观星指南 | 鲍勃・金 | [下载](https://url89.ctfile.com/f/31084289-1375509532-bb27ee?p=8866) |\n| 牛津大学自然史博物馆的寻宝之旅 | 凯特・迪思顿/佐薇・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1375510750-5b4a2a?p=8866) |\n| 东方草木之美 | 西莉亚・费希尔 | [下载](https://url89.ctfile.com/f/31084289-1375510954-dcf045?p=8866) |\n| 自然界的印象（作家榜经典文库） | 儒勒・列那尔 | [下载](https://url89.ctfile.com/f/31084289-1375511644-242e91?p=8866) |\n| 达尔文的战争 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866) |\n| 漫步的艺术（果麦经典） | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1357004617-10c91b?p=8866) |\n| 鳗鱼的旅行 | 帕特里克・斯文松 | [下载](https://url89.ctfile.com/f/31084289-1357004113-be523b?p=8866) |\n| 水的密码 | 特里斯坦・古利 | [下载](https://url89.ctfile.com/f/31084289-1357004038-2e1bbb?p=8866) |\n| 进化的故事 | 奥伦・哈曼 | [下载](https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866) |\n| 海鸟的哭泣 | 亚当・尼科尔森 | [下载](https://url89.ctfile.com/f/31084289-1357000207-89a275?p=8866) |\n| 与达尔文共进晚餐 | 乔纳森・西尔弗顿 | [下载](https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866) |\n| 自然的音符 | 自然科研 | [下载](https://url89.ctfile.com/f/31084289-1356990082-a53ca5?p=8866) |\n| 生命之源 | 尼克・連恩 | [下载](https://url89.ctfile.com/f/31084289-1356985378-57f1a6?p=8866) |\n| 雨：一部自然与文化的历史 | 辛西娅・巴内特 | [下载](https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866) |\n| 造物记：人与树的故事 | 罗伯特・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1357052899-8745d3?p=8866) |\n| 《科学美国人》精选系列科学全景套装（共14册） | 《环球科学》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357049044-66fa66?p=8866) |\n| 醉鲨 | 莫腾・安德雷亚斯・斯特罗克奈斯 | [下载](https://url89.ctfile.com/f/31084289-1357048210-20211c?p=8866) |\n| 山之四季（果麦经典） | 高村光太郎 | [下载](https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866) |\n| 珠峰史诗 | 荣赫鹏 | [下载](https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866) |\n| 在西伯利亚森林中 | 西尔万・泰松 | [下载](https://url89.ctfile.com/f/31084289-1357045729-3f7030?p=8866) |\n| 十二堂经典科普课 | 吴京平/汪诘 | [下载](https://url89.ctfile.com/f/31084289-1357045681-e1cc56?p=8866) |\n| 第一道曙光下的真实 | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866) |\n| 大地上的事情 | 苇岸 | [下载](https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866) |\n| 听客溪的朝圣 | 安妮・迪拉德 | [下载](https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866) |\n| 我们花园里的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866) |\n| 我们林地里的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039921-a5deff?p=8866) |\n| 我们唱歌的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357039675-f4e104?p=8866) |\n| BBC自然探索系列（套装共7册） | 阿拉斯泰尔・福瑟吉尔等 | [下载](https://url89.ctfile.com/f/31084289-1357035511-2fd3b9?p=8866) |\n| 一想到还有95%的问题留给人类，我就放心了 | 豪尔赫・陈/丹尼尔・怀特森 | [下载](https://url89.ctfile.com/f/31084289-1357032136-e4603d?p=8866) |\n| 鸟类的天赋 | 珍妮弗・阿克曼 | [下载](https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866) |\n| 起源：万物大历史 | 大卫・克里斯蒂安 | [下载](https://url89.ctfile.com/f/31084289-1357029259-608e4e?p=8866) |\n| 没有极限的科学 | 周建 | [下载](https://url89.ctfile.com/f/31084289-1357029220-f6becc?p=8866) |\n| 科学的历程（修订第4版） | 吴国盛 | [下载](https://url89.ctfile.com/f/31084289-1357028968-a71f42?p=8866) |\n| 缤纷的生命 | 爱德华・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357024873-81e121?p=8866) |\n| 云彩收集者手册 | 加文・普雷特 | [下载](https://url89.ctfile.com/f/31084289-1357024291-bd3b5c?p=8866) |\n| 生命的法则 | 肖恩·B·卡罗尔 | [下载](https://url89.ctfile.com/f/31084289-1357022293-aa3784?p=8866) |\n| 植物知道生命的答案 | 丹尼尔・查莫维茨 | [下载](https://url89.ctfile.com/f/31084289-1357021111-55bfec?p=8866) |\n| 你好！植物（全彩） | 喵喵植物控 | [下载](https://url89.ctfile.com/f/31084289-1357019416-e03080?p=8866) |\n| 创造自然 | 安德烈娅・武尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357017490-5b557e?p=8866) |\n| 泥土：文明的侵蚀 | 戴维·R. 蒙哥马利 | [下载](https://url89.ctfile.com/f/31084289-1357016863-fce466?p=8866) |\n| 飞鸟记 | 欧仁・朗贝尔/保罗・罗贝尔 | [下载](https://url89.ctfile.com/f/31084289-1357016632-58b036?p=8866) |\n| 禅定荒野 | 加里・斯奈德 | [下载](https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866) |\n| 地理学与生活：全彩插图第11版 | 阿瑟・格蒂斯等 | [下载](https://url89.ctfile.com/f/31084289-1357016362-8c2f1f?p=8866) |\n| 看不见的森林 | 戴维・哈斯凯尔 | [下载](https://url89.ctfile.com/f/31084289-1357014241-6e9aee?p=8866) |\n| 动物的精神生活 | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357013392-71cce4?p=8866) |\n| 太阳底下的新鲜事 | 约翰・麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357013308-e06248?p=8866) |\n| 森林的奇妙旅行 | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357006462-24745a?p=8866) |\n| 大自然的社交网络 | 彼得・渥雷本 | [下载](https://url89.ctfile.com/f/31084289-1357006459-66ad57?p=8866) |\n"
  },
  {
    "path": "md/自然科学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自然科学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大灭绝时代：一部反常的自然史 | 伊丽莎白·科尔伯特 | [下载](https://url89.ctfile.com/f/31084289-1357005979-ed4bfe?p=8866) |\n"
  },
  {
    "path": "md/自由.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自由\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 遇见野兔的那一年 | 阿托・帕西林纳 | [下载](https://url89.ctfile.com/f/31084289-1357013932-463f69?p=8866) |\n| 批评官员的尺度 | 安东尼・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357010431-887c78?p=8866) |\n| 人生有何意义 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357009039-fb78df?p=8866) |\n| 我们能做什么 | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357009033-def390?p=8866) |\n| 地下铁道 | 科尔森・怀特黑德 | [下载](https://url89.ctfile.com/f/31084289-1357008088-5c687a?p=8866) |\n"
  },
  {
    "path": "md/自述.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 自述\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我心归处是敦煌 | 樊锦诗口述/顾春芳撰写 | [下载](https://url89.ctfile.com/f/31084289-1357049158-ed776b?p=8866) |\n"
  },
  {
    "path": "md/航天.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 航天\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 下一站火星 | 克里斯蒂安・达文波特 | [下载](https://url89.ctfile.com/f/31084289-1357028965-142e68?p=8866) |\n| 阿波罗 | 扎克・斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357024600-7d239d?p=8866) |\n"
  },
  {
    "path": "md/航海.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 航海\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 世界奇幻地图 | 爱德华・布鲁克-海钦 | [下载](https://url89.ctfile.com/f/31084289-1375501741-13c2f5?p=8866) |\n| 大海盗时代 | 海盗 | [下载](https://url89.ctfile.com/f/31084289-1357006711-8427bd?p=8866) |\n"
  },
  {
    "path": "md/艺术.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 艺术\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 达·芬奇传：自由的心灵 | 查尔斯・尼科尔 | [下载](https://url89.ctfile.com/f/31084289-1375491400-800bfb?p=8866) |\n| 诺顿音乐断代史丛书（套装共4册） | 菲利普・唐斯 | [下载](https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866) |\n| 巫鸿经典作品集（套装10册） | 巫鸿 | [下载](https://url89.ctfile.com/f/31084289-1375493836-97eea1?p=8866) |\n| 国宝来了 | 马菁菁 | [下载](https://url89.ctfile.com/f/31084289-1375498645-cc5e87?p=8866) |\n| 雕刻大地 | 林璎 | [下载](https://url89.ctfile.com/f/31084289-1375499059-e0fff6?p=8866) |\n| 未来艺术丛书（全7册） | 弗里德里希・尼采 | [下载](https://url89.ctfile.com/f/31084289-1375499785-9d1eba?p=8866) |\n| 朝暮集 | 呼葱觅蒜/白落梅 | [下载](https://url89.ctfile.com/f/31084289-1375499764-44bbfc?p=8866) |\n| 画以人传 | 陈文璟 | [下载](https://url89.ctfile.com/f/31084289-1375500001-4c62ff?p=8866) |\n| 优雅变老的艺术 | 奥特弗里德・赫费 | [下载](https://url89.ctfile.com/f/31084289-1375500535-92fecd?p=8866) |\n| 日本艺术之美（套装共5册） | 叶渭渠 | [下载](https://url89.ctfile.com/f/31084289-1375501900-e2790a?p=8866) |\n| 艺术的故事（共12册） | 林家治等 | [下载](https://url89.ctfile.com/f/31084289-1375503403-e9d087?p=8866) |\n| 读电影·百年奥斯卡佳片品鉴（套装3册） | 杨晓林 | [下载](https://url89.ctfile.com/f/31084289-1375503820-7cf8c0?p=8866) |\n| 原典书坊合辑（全八册） | 鲁迅等 | [下载](https://url89.ctfile.com/f/31084289-1375507189-20e043?p=8866) |\n| 对立之美：西方艺术500年 | 严伯钧 | [下载](https://url89.ctfile.com/f/31084289-1375508380-723c56?p=8866) |\n| 看名画的眼睛系列（套装共7册） | 尾崎彰宏等 | [下载](https://url89.ctfile.com/f/31084289-1375508881-f0aabb?p=8866) |\n| 逝物录 | 尤迪特・沙朗斯基 | [下载](https://url89.ctfile.com/f/31084289-1375509514-e22332?p=8866) |\n| 余下只有噪音 | 亚历克斯・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1375509967-ee6928?p=8866) |\n| 新媒体的语言 | 列夫・马诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1375510123-a09f0e?p=8866) |\n| 易中天谈美 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1375510363-f6a67e?p=8866) |\n| 平面设计200年 | 史蒂文・海勒/西摩・切瓦斯特 | [下载](https://url89.ctfile.com/f/31084289-1375510684-c22f94?p=8866) |\n| 星船与大树 | 马慧元 | [下载](https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866) |\n| 超现实主义宣言 | 安德烈・布勒东 | [下载](https://url89.ctfile.com/f/31084289-1375511032-8e425b?p=8866) |\n| 布光是门大学问 | 克里斯汀・霍夫 | [下载](https://url89.ctfile.com/f/31084289-1375511296-8d6ccf?p=8866) |\n| 世界建筑漫游指南（套装共6册） | 陈文捷等 | [下载](https://url89.ctfile.com/f/31084289-1375511977-1ed179?p=8866) |\n| 培生艺术史（套装6册） | 大卫·G.威尔金斯等 | [下载](https://url89.ctfile.com/f/31084289-1375511581-0d0d59?p=8866) |\n| 电影管理课 | 汤姆・雷利 | [下载](https://url89.ctfile.com/f/31084289-1375511722-52b940?p=8866) |\n| 非凡抄本寻访录 | 克里斯托弗・德・哈梅尔 | [下载](https://url89.ctfile.com/f/31084289-1375512256-da56df?p=8866) |\n| 画家的一天 | 段张取艺 | [下载](https://url89.ctfile.com/f/31084289-1375512166-2a760f?p=8866) |\n| 梵高的耳朵 | 贝尔纳黛特・墨菲 | [下载](https://url89.ctfile.com/f/31084289-1375512619-adecfe?p=8866) |\n| 号角：世界经典制服徽章艺术全集（套装共10册） | 指文号角工作室 | [下载](https://url89.ctfile.com/f/31084289-1375513021-755d2a?p=8866) |\n| 浮世绘 | 潘力 | [下载](https://url89.ctfile.com/f/31084289-1375512862-662b8e?p=8866) |\n| 高品质摄影全流程解析（套装全9册） | 斯科特・凯尔比 | [下载](https://url89.ctfile.com/f/31084289-1375513114-e51622?p=8866) |\n| 梵高手稿（典藏修订版） | 文森特・凡高 | [下载](https://url89.ctfile.com/f/31084289-1375513045-85b0e4?p=8866) |\n| 寻美：摄影中的东方美学 | 青简 | [下载](https://url89.ctfile.com/f/31084289-1375513324-160dbc?p=8866) |\n| 达·芬奇：500年纪念版 | 马汀・坎普/法比奥・斯卡莱蒂 | [下载](https://url89.ctfile.com/f/31084289-1375513528-1ecffb?p=8866) |\n| 探戈艺术的中国之花 | 欧占明 | [下载](https://url89.ctfile.com/f/31084289-1375513636-a3ca87?p=8866) |\n| 即兴戏剧 | 苏广辉 | [下载](https://url89.ctfile.com/f/31084289-1357003891-a41242?p=8866) |\n| 你的建筑有多重？ | 迪耶・萨迪奇 | [下载](https://url89.ctfile.com/f/31084289-1357003549-268c81?p=8866) |\n| 中国妆束：大唐女儿行 | 左丘萌/末春 | [下载](https://url89.ctfile.com/f/31084289-1357002652-a85fdd?p=8866) |\n| 美学漫步 | 宗白华 | [下载](https://url89.ctfile.com/f/31084289-1357002514-7384a3?p=8866) |\n| 大道既隐 | 彭卿 | [下载](https://url89.ctfile.com/f/31084289-1357002205-8879ae?p=8866) |\n| 定义邪典电影 | 马克・扬克维奇 | [下载](https://url89.ctfile.com/f/31084289-1357002151-9c4719?p=8866) |\n| 曼哈顿的中国杂技 | 李尤松 | [下载](https://url89.ctfile.com/f/31084289-1357001836-8e306e?p=8866) |\n| 名画中的符号 | 平松洋 | [下载](https://url89.ctfile.com/f/31084289-1357001521-888cfc?p=8866) |\n| 不正经的卢浮宫 | 西塞尔・巴隆等 | [下载](https://url89.ctfile.com/f/31084289-1356999955-1e4dbd?p=8866) |\n| 挥云而去：十张画里看中国 | 韩涧明 | [下载](https://url89.ctfile.com/f/31084289-1356999820-7f8c31?p=8866) |\n| 表演者言 | 电影频道《今日影评》栏目组 | [下载](https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866) |\n| 牛津艺术史系列（第一辑） | 罗宾・奥斯本等 | [下载](https://url89.ctfile.com/f/31084289-1357000579-0ed5b2?p=8866) |\n| 人人都该懂的美学 | 查尔斯・塔利亚费罗 | [下载](https://url89.ctfile.com/f/31084289-1356998848-bdbcb5?p=8866) |\n| 人人都该懂的艺术 | 劳里・施耐德・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1356997810-a286ea?p=8866) |\n| 残酷剧场 | 伊恩・布鲁玛 | [下载](https://url89.ctfile.com/f/31084289-1356997615-258e96?p=8866) |\n| 电影的元素 | 罗伯特・伯德 | [下载](https://url89.ctfile.com/f/31084289-1356996553-12e06b?p=8866) |\n| 艺术哲学（作家榜经典文库） | H. A. 丹纳 | [下载](https://url89.ctfile.com/f/31084289-1356995170-fa63f4?p=8866) |\n| 编剧的艺术 | 拉约什・埃格里 | [下载](https://url89.ctfile.com/f/31084289-1356994639-027e11?p=8866) |\n| 悲鸿生命 | 范迪安 | [下载](https://url89.ctfile.com/f/31084289-1356994642-86e3db?p=8866) |\n| 慕尼黑老绘画陈列馆（伟大的博物馆） | 西尔维娅・波尔盖斯 | [下载](https://url89.ctfile.com/f/31084289-1356992005-d19a73?p=8866) |\n| 人文精神的伟大冒险 | 菲利普·E.毕肖普 | [下载](https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866) |\n| 中国艺术精神 | 徐复观 | [下载](https://url89.ctfile.com/f/31084289-1356990142-c2cdbd?p=8866) |\n| 遇见毕加索 | 让・科克托 | [下载](https://url89.ctfile.com/f/31084289-1356990127-c4de9b?p=8866) |\n| 一个天文学家的夜空漫游指南 | 郑春顺 | [下载](https://url89.ctfile.com/f/31084289-1356990154-6f3d71?p=8866) |\n| 中国绘画史 | 陈师曾 | [下载](https://url89.ctfile.com/f/31084289-1356990124-83f7ff?p=8866) |\n| 手作理想国 | 墨念女塾 | [下载](https://url89.ctfile.com/f/31084289-1356990022-e0865e?p=8866) |\n| 知日42：枯山水 | 茶乌龙主编 | [下载](https://url89.ctfile.com/f/31084289-1356988927-f3482b?p=8866) |\n| 大话西方艺术史 | 意公子 | [下载](https://url89.ctfile.com/f/31084289-1356988072-ecbb42?p=8866) |\n| 条条大路通书法 | 寇克让 | [下载](https://url89.ctfile.com/f/31084289-1356987247-df4df8?p=8866) |\n| 伪装的艺术 | 本・雅格达 | [下载](https://url89.ctfile.com/f/31084289-1356986728-f4d72f?p=8866) |\n| 美术馆漫步：法国、伦敦、西班牙（全三册） | 崔瓊化等 | [下载](https://url89.ctfile.com/f/31084289-1356986452-33c37f?p=8866) |\n| 艺术精神 | 罗伯特・亨利 | [下载](https://url89.ctfile.com/f/31084289-1356985927-d00167?p=8866) |\n| 时光博物馆 | 人民日报社新媒体中心 | [下载](https://url89.ctfile.com/f/31084289-1356985591-ef4bb2?p=8866) |\n| 西方画家及其作品套装（全4册） | 王月亮 | [下载](https://url89.ctfile.com/f/31084289-1356985570-dab26e?p=8866) |\n| 书籍形态艺术 | 善本出版有限公司 | [下载](https://url89.ctfile.com/f/31084289-1356985075-19633a?p=8866) |\n| 现代主义：从波德莱尔到贝克特之后 | 彼得・盖伊 | [下载](https://url89.ctfile.com/f/31084289-1356983158-db138c?p=8866) |\n| 游艺黑白（全四册） | 焦元溥 | [下载](https://url89.ctfile.com/f/31084289-1356982555-e57eb3?p=8866) |\n| 让木乃伊跳舞（新版） | 托马斯・霍文 | [下载](https://url89.ctfile.com/f/31084289-1356982477-24fb5a?p=8866) |\n| 艺术哲学 | 丹纳 | [下载](https://url89.ctfile.com/f/31084289-1356982453-5594f6?p=8866) |\n| 永字八法 | 周汝昌 | [下载](https://url89.ctfile.com/f/31084289-1357053631-407cc1?p=8866) |\n| 艺术史：1940年至今天 | 乔纳森・费恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357053196-a997a9?p=8866) |\n| 电影（牛津通识读本） | 迈克尔・伍德 | [下载](https://url89.ctfile.com/f/31084289-1357053007-e4ec0e?p=8866) |\n| 戏剧（牛津通识读本） | 马文・卡尔森 | [下载](https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866) |\n| 罗丹艺术论 | 奥古斯特・罗丹 | [下载](https://url89.ctfile.com/f/31084289-1357052005-e1851b?p=8866) |\n| 美之地图 | 米哈埃拉・诺洛茨 | [下载](https://url89.ctfile.com/f/31084289-1357051243-3e4a73?p=8866) |\n| 罗兰·巴尔特文集（套装） | 罗兰・巴尔特 | [下载](https://url89.ctfile.com/f/31084289-1357048846-f260f9?p=8866) |\n| 美术史十议 | 巫鸿 | [下载](https://url89.ctfile.com/f/31084289-1357047574-fb6ad2?p=8866) |\n| 文艺复兴人 | 罗伯特・戴维斯/贝丝・琳达史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357047223-fd9cef?p=8866) |\n| 傅雷谈艺录及其他 | 傅雷 | [下载](https://url89.ctfile.com/f/31084289-1357046638-07ba91?p=8866) |\n| 章服之实 | 王亚蓉 | [下载](https://url89.ctfile.com/f/31084289-1357046395-8638fe?p=8866) |\n| 丰子恺：写给大家的简明艺术启蒙（套装共5册） | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357045609-c32fd3?p=8866) |\n| 美丽之问 | 弗兰克・维尔切克 | [下载](https://url89.ctfile.com/f/31084289-1357045297-681e1e?p=8866) |\n| 欢迎来到你的世界 | 莎拉・威廉姆斯・戈德哈根 | [下载](https://url89.ctfile.com/f/31084289-1357044979-772302?p=8866) |\n| 杜尚传（第二版） | 王瑞芸 | [下载](https://url89.ctfile.com/f/31084289-1357044862-f93665?p=8866) |\n| 建筑改变日本 | 伊东丰雄 | [下载](https://url89.ctfile.com/f/31084289-1357043842-398c3a?p=8866) |\n| 大美不言 | 李长之 | [下载](https://url89.ctfile.com/f/31084289-1357043458-416ad6?p=8866) |\n| 如何看懂艺术 | 翁昕 | [下载](https://url89.ctfile.com/f/31084289-1357043074-fa6d7a?p=8866) |\n| 如何看懂艺术2 | 翁昕 | [下载](https://url89.ctfile.com/f/31084289-1357042954-894e44?p=8866) |\n| 抽象城市 | 克里斯托夫・尼曼 | [下载](https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866) |\n| 马未都说收藏·家具篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039792-d361ac?p=8866) |\n| 马未都说收藏·杂项篇 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1357039771-d78ae8?p=8866) |\n| 西方文明史：延续不断的遗产（第五版） | 马克・凯什岚斯基等 | [下载](https://url89.ctfile.com/f/31084289-1357039009-245ea3?p=8866) |\n| 茶与茶器 | 静清和 | [下载](https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866) |\n| 非平面 | 尼克・索萨尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357036672-17b3c7?p=8866) |\n| 傅雷家书（经典版） | 傅雷 | [下载](https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866) |\n| 剑桥艺术史（套装全8册） | 苏珊・伍德福德等 | [下载](https://url89.ctfile.com/f/31084289-1357034887-1b0a28?p=8866) |\n| 敦煌：众人受到召唤 | 生活月刊 | [下载](https://url89.ctfile.com/f/31084289-1357034800-111f94?p=8866) |\n| 圆圈之书 | 曼纽尔・利马 | [下载](https://url89.ctfile.com/f/31084289-1357034347-163252?p=8866) |\n| 光影里的梦幻与真实 | 郑实 | [下载](https://url89.ctfile.com/f/31084289-1357033948-56518d?p=8866) |\n| 画见 | 止庵 | [下载](https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866) |\n| 米开朗琪罗与教皇的天花板 | 罗斯・金 | [下载](https://url89.ctfile.com/f/31084289-1357033408-846a9a?p=8866) |\n| BBC艺术经典三部曲 | 肯尼斯・克拉克/罗伯特・休斯/西蒙・沙玛 | [下载](https://url89.ctfile.com/f/31084289-1357033444-1d3101?p=8866) |\n| 世界美术名作二十讲 | 傅雷 | [下载](https://url89.ctfile.com/f/31084289-1357032403-de23a0?p=8866) |\n| 樱桃的滋味 | 阿巴斯・基阿鲁斯达米 | [下载](https://url89.ctfile.com/f/31084289-1357032268-b0e557?p=8866) |\n| 此生是我吗 | 刘苇 | [下载](https://url89.ctfile.com/f/31084289-1357031953-76b0e2?p=8866) |\n| 初见卢浮宫 | 中野京子 | [下载](https://url89.ctfile.com/f/31084289-1357031842-9ccaa0?p=8866) |\n| 奇点艺术 | 谭力勤 | [下载](https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866) |\n| 捡来的瓷器史 | 涂睿明 | [下载](https://url89.ctfile.com/f/31084289-1357031281-17ad02?p=8866) |\n| 电影是什么？ | 安德烈・巴赞 | [下载](https://url89.ctfile.com/f/31084289-1357030438-04eea9?p=8866) |\n| 辛丰年音乐文集（套装共六册） | 辛丰年 | [下载](https://url89.ctfile.com/f/31084289-1357030315-421cb1?p=8866) |\n| 传统即创造 | 冈本太郎 | [下载](https://url89.ctfile.com/f/31084289-1357029670-6ab6ca?p=8866) |\n| 今日的艺术 | 冈本太郎 | [下载](https://url89.ctfile.com/f/31084289-1357029625-e03046?p=8866) |\n| 理想的境界：历史真实中的山水画 | 王平 | [下载](https://url89.ctfile.com/f/31084289-1357029052-8dfc3b?p=8866) |\n| 无限的清单 | 翁贝托・艾柯 | [下载](https://url89.ctfile.com/f/31084289-1357029040-0003df?p=8866) |\n| 竞争的艺术 | 塞巴斯蒂安・斯密 | [下载](https://url89.ctfile.com/f/31084289-1357027540-ee0502?p=8866) |\n| 音乐符号 | 塔拉斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866) |\n| 明亮的泥土 | 菲利普・鲍尔 | [下载](https://url89.ctfile.com/f/31084289-1357026793-14240d?p=8866) |\n| 西方绘画大师经典佳作：德加 | 唐一帆/牛雪彤 | [下载](https://url89.ctfile.com/f/31084289-1357026688-6d5b37?p=8866) |\n| 西方绘画大师经典佳作：梵高 | 牛雪彤/唐一帆 | [下载](https://url89.ctfile.com/f/31084289-1357026721-4828bc?p=8866) |\n| 西方绘画大师经典佳作：莫奈 | 牛雪彤/唐一帆 | [下载](https://url89.ctfile.com/f/31084289-1357026718-ecf462?p=8866) |\n| 西方绘画大师原作：塞尚 | 牛雪彤/唐一帆 | [下载](https://url89.ctfile.com/f/31084289-1357026727-604405?p=8866) |\n| 达·芬奇手记（珍藏版） | 达・芬奇 | [下载](https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866) |\n| The Book of Ebenezer Le Page | Edwards | [下载](https://url89.ctfile.com/f/31084289-1357025245-f5258d?p=8866) |\n| 知中5·竹林七贤 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025290-c9d03c?p=8866) |\n| 知中15·再认识丰子恺 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025182-3c8f73?p=8866) |\n| 退步集 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866) |\n| 退步集续编 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357024990-62df18?p=8866) |\n| 一幅画开启的世界 | 高畑勋 | [下载](https://url89.ctfile.com/f/31084289-1357024951-5f5325?p=8866) |\n| 图说敦煌二五四窟 | 陈海涛/陈琦 | [下载](https://url89.ctfile.com/f/31084289-1357024357-c5306e?p=8866) |\n| 理解一张照片 | 约翰・伯格 | [下载](https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866) |\n| 普鲁斯特是个神经学家 | 乔纳・莱勒 | [下载](https://url89.ctfile.com/f/31084289-1357023946-7766c7?p=8866) |\n| 美术馆里聊怪咖 | 山田五郎/古山淳子 | [下载](https://url89.ctfile.com/f/31084289-1357023745-138eaa?p=8866) |\n| 街头巷尾 | 领读文化 | [下载](https://url89.ctfile.com/f/31084289-1357023154-daa1de?p=8866) |\n| 被误诊的艺术史 | 董悠悠 | [下载](https://url89.ctfile.com/f/31084289-1357022731-b78697?p=8866) |\n| 如何欣赏一部电影 | 托马斯・福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357022224-caab80?p=8866) |\n| 都灵萨包达美术馆 | 弗朗西斯卡・萨尔瓦多里 | [下载](https://url89.ctfile.com/f/31084289-1357022152-0c3bb2?p=8866) |\n| 佛罗伦萨圣母百花大教堂博物馆 | 蒂莫西・弗登 | [下载](https://url89.ctfile.com/f/31084289-1357022227-26b8b3?p=8866) |\n| 雅典考古博物馆 | 卢卡・莫扎蒂 | [下载](https://url89.ctfile.com/f/31084289-1357022161-31f368?p=8866) |\n| 那不勒斯国家考古博物馆 | 迪雷塔・哥伦布 | [下载](https://url89.ctfile.com/f/31084289-1357022095-e3f07a?p=8866) |\n| 罗马博尔盖塞美术馆 | 弗朗切斯卡・卡丝特丽雅・马尔凯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357022032-3c3bd8?p=8866) |\n| 米兰波尔迪·佩佐利博物馆 | 玛利亚·特蕾莎·巴尔博尼·布雷萨等 | [下载](https://url89.ctfile.com/f/31084289-1357022026-e8a5d2?p=8866) |\n| 开罗埃及博物馆 | 西尔维娅・埃诺迪 | [下载](https://url89.ctfile.com/f/31084289-1357022044-efa9f4?p=8866) |\n| 那不勒斯卡波迪蒙特博物馆 | 马蒂亚・盖塔 | [下载](https://url89.ctfile.com/f/31084289-1357022035-34c433?p=8866) |\n| 白鸟之歌 | 巴勃罗・卡萨尔斯  | [下载](https://url89.ctfile.com/f/31084289-1357021879-f9153e?p=8866) |\n| 走神的艺术与科学 | 迈克尔・C.科尔巴里斯 | [下载](https://url89.ctfile.com/f/31084289-1357021348-3556be?p=8866) |\n| 丑的历史 | 翁贝托・艾柯 | [下载](https://url89.ctfile.com/f/31084289-1357020424-b520de?p=8866) |\n| 瓶花谱 瓶史 | 张谦德/袁宏道 | [下载](https://url89.ctfile.com/f/31084289-1357020061-e5ca31?p=8866) |\n| 名画背后的故事（全五册） | 中野京子/顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357019560-5d3b15?p=8866) |\n| К.С.斯坦尼斯拉夫斯基作品集（套装共四册） | 斯坦尼斯拉夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1357019338-3fa8a5?p=8866) |\n| 米兰布雷拉美术馆 | 斯蒂芬尼・祖菲 | [下载](https://url89.ctfile.com/f/31084289-1357019170-dd2f29?p=8866) |\n| 帕尔马国家美术馆 | 乔瓦娜・达米亚尼等 | [下载](https://url89.ctfile.com/f/31084289-1357019065-def2cc?p=8866) |\n| 莫斯科普希金博物馆 | 西莫内塔・佩卢西 | [下载](https://url89.ctfile.com/f/31084289-1357019038-d6ede3?p=8866) |\n| 柏林画廊 | 威廉・德罗・鲁索 | [下载](https://url89.ctfile.com/f/31084289-1357018807-775ac1?p=8866) |\n| 博洛尼亚国家艺术画廊 | 贝亚特莉切・布斯卡罗利 | [下载](https://url89.ctfile.com/f/31084289-1357018801-161f22?p=8866) |\n| 都灵埃及博物馆 | 西尔维娅・埃诺迪  | [下载](https://url89.ctfile.com/f/31084289-1357018774-d1f92e?p=8866) |\n| 华盛顿国家艺术馆 | 罗萨娜・乔尔吉 | [下载](https://url89.ctfile.com/f/31084289-1357018789-4a7fa3?p=8866) |\n| 热那亚新街博物馆 | 皮耶罗・波卡尔多等  | [下载](https://url89.ctfile.com/f/31084289-1357018768-b9b484?p=8866) |\n| 伦敦国家美术馆 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357018696-513898?p=8866) |\n| 论巴赫 | 阿尔贝特・施韦泽 | [下载](https://url89.ctfile.com/f/31084289-1357018666-493f7e?p=8866) |\n| 乌尔比诺马尔凯国家美术馆 | 罗伦查・莫基・奥诺里等 | [下载](https://url89.ctfile.com/f/31084289-1357018648-5c52b0?p=8866) |\n| 对白：文字、舞台、银幕的言语行为艺术 | 罗伯特・麦基 | [下载](https://url89.ctfile.com/f/31084289-1357018612-e3095d?p=8866) |\n| 珍物：中国文艺百人物语 | 生活月刊编辑部 | [下载](https://url89.ctfile.com/f/31084289-1357018216-c353d3?p=8866) |\n| 亲爱的提奥：梵高传 | 文森特・威廉・梵高/约翰娜・梵高・邦格 | [下载](https://url89.ctfile.com/f/31084289-1357017379-8fa602?p=8866) |\n| 世界电影史（套装共3册） | 杰弗里・诺维尔・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357017265-9718d5?p=8866) |\n| 博物文库精美丛书 | 约瑟夫・胡克等 | [下载](https://url89.ctfile.com/f/31084289-1357017430-ca5c6c?p=8866) |\n| 现代艺术150年 | 威尔・贡培兹 | [下载](https://url89.ctfile.com/f/31084289-1357016560-3e425d?p=8866) |\n| 论摄影（插图珍藏本） |  苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357016032-7a80af?p=8866) |\n| 小顾聊绘画·壹 | 顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357014850-625ef1?p=8866) |\n| 小顾聊绘画·贰 | 顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357014826-5cb55d?p=8866) |\n| 小顾聊神话 | 顾爷 | [下载](https://url89.ctfile.com/f/31084289-1357014874-6a0964?p=8866) |\n| 梵高传（全三部） | 史蒂文・奈菲/格雷戈里・怀特・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357014130-c02352?p=8866) |\n| 此时此地 | 艾未未 | [下载](https://url89.ctfile.com/f/31084289-1357013965-add43d?p=8866) |\n| 与火同行：大卫·林奇谈电影 | 大卫・林奇/克里斯・罗德雷 | [下载](https://url89.ctfile.com/f/31084289-1357013269-f245ca?p=8866) |\n| 巴黎卢浮宫 | 亚历山德拉・弗雷格兰特 | [下载](https://url89.ctfile.com/f/31084289-1357012414-10182f?p=8866) |\n| 阿姆斯特丹国家博物馆 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357013218-677a0a?p=8866) |\n| 佛罗伦萨皮蒂宫 | 达尼埃拉・塔拉布拉 | [下载](https://url89.ctfile.com/f/31084289-1357012279-fd065b?p=8866) |\n| 佛罗伦萨乌菲齐画廊 | 艾莱娜・吉纳耐斯奇 | [下载](https://url89.ctfile.com/f/31084289-1357012285-af45df?p=8866) |\n| 巴黎奥赛美术馆 | 西蒙娜・巴尔多蕾娜 | [下载](https://url89.ctfile.com/f/31084289-1357012240-1bee54?p=8866) |\n| 巫鸿美术史著作经典（共3册） | 巫鸿 | [下载](https://url89.ctfile.com/f/31084289-1357010881-0327d9?p=8866) |\n| 哈默手稿 | 列奥纳多・达・芬奇 | [下载](https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866) |\n| 丰子恺漫画精品集（修订版） | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1357008643-d7e909?p=8866) |\n| 故宫的风花雪月 | 祝勇 | [下载](https://url89.ctfile.com/f/31084289-1357008334-82b157?p=8866) |\n| 好色的哈姆雷特 | 小白 | [下载](https://url89.ctfile.com/f/31084289-1357008223-e0d43a?p=8866) |\n| 时间的残渣 | 冯峰 | [下载](https://url89.ctfile.com/f/31084289-1357005298-2f40aa?p=8866) |\n| 写真的思考 | 饭泽耕太郎 | [下载](https://url89.ctfile.com/f/31084289-1357005058-c4eaa8?p=8866) |\n"
  },
  {
    "path": "md/艺术史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 艺术史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人文通史 | 詹尼特・勒博・本顿/罗伯特・笛亚尼 | [下载](https://url89.ctfile.com/f/31084289-1356984580-283f0e?p=8866) |\n"
  },
  {
    "path": "md/艺术文化.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 艺术文化\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 了不起的匠人（全20册套装） | 知了青年 | [下载](https://url89.ctfile.com/f/31084289-1357007389-02fb3c?p=8866) |\n"
  },
  {
    "path": "md/芬兰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 芬兰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 芬兰教育全球第一的秘密（珍藏版） | 陈之华 | [下载](https://url89.ctfile.com/f/31084289-1357034536-63eb78?p=8866) |\n| 芬兰人的噩梦 | 卡罗利娜・科尔霍宁 | [下载](https://url89.ctfile.com/f/31084289-1357021858-99d10a?p=8866) |\n"
  },
  {
    "path": "md/芭比.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 芭比\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 芭比：一个娃娃风靡世界的秘密 | 罗宾・格博 | [下载](https://url89.ctfile.com/f/31084289-1357051027-e3e027?p=8866) |\n"
  },
  {
    "path": "md/芯片.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 芯片\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 芯片陷阱 | 马克・拉叙斯 | [下载](https://url89.ctfile.com/f/31084289-1375495186-db8ef2?p=8866) |\n| 光刻巨人 | 瑞尼・雷吉梅克 | [下载](https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866) |\n| “芯”想事成 | 陈芳 | [下载](https://url89.ctfile.com/f/31084289-1357047433-4dec6d?p=8866) |\n"
  },
  {
    "path": "md/苏州.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 苏州\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 飞乐鸟的手绘旅行笔记：苏州·杭州 | 飞乐鸟 | [下载](https://url89.ctfile.com/f/31084289-1357022653-70c9f2?p=8866) |\n"
  },
  {
    "path": "md/苏格兰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 苏格兰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 苏格兰民族 | T.M.迪瓦恩 | [下载](https://url89.ctfile.com/f/31084289-1375503739-f61668?p=8866) |\n| BBC苏格兰史 | 尼尔・奥利弗 | [下载](https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866) |\n| 苏格兰女王的悲剧 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866) |\n"
  },
  {
    "path": "md/苏联.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 苏联\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 哈尔滨档案 | 玛拉・穆斯塔芬 | [下载](https://url89.ctfile.com/f/31084289-1357050781-93c481?p=8866) |\n| 日瓦戈医生（果麦经典） | 鲍里斯・帕斯捷尔纳克 | [下载](https://url89.ctfile.com/f/31084289-1357050505-1511fe?p=8866) |\n| Gulag | Anne Applebaum | [下载](https://url89.ctfile.com/f/31084289-1357039219-530b32?p=8866) |\n| 人，岁月，生活 | 爱伦堡 | [下载](https://url89.ctfile.com/f/31084289-1357031377-705e7b?p=8866) |\n| 高尔基自传三部曲（读客经典） | 玛克西姆・高尔基 | [下载](https://url89.ctfile.com/f/31084289-1357028830-4eb235?p=8866) |\n| 骑兵军 | 伊萨克・巴别尔 | [下载](https://url89.ctfile.com/f/31084289-1357024948-2a7089?p=8866) |\n| 中苏关系史纲（增订版） | 沈志华等 | [下载](https://url89.ctfile.com/f/31084289-1357023796-f14eb6?p=8866) |\n| 这里的黎明静悄悄…… | 鲍・瓦西里耶夫 | [下载](https://url89.ctfile.com/f/31084289-1357022146-d1c4bf?p=8866) |\n| 古拉格之恋 | 奥兰多・费吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357021333-798278?p=8866) |\n| 失败的帝国：从斯大林到戈尔巴乔夫 | 弗拉季斯拉夫・祖博克 | [下载](https://url89.ctfile.com/f/31084289-1357009546-8e12d9?p=8866) |\n| 大国的崩溃：苏联解体的台前幕后 | 沙希利・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1357009531-44dd38?p=8866) |\n| 耳语者 | 奥兰多・费吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357009489-577978?p=8866) |\n| 苏联真相：对101个重要问题的思考（全三册） | 陆南泉 | [下载](https://url89.ctfile.com/f/31084289-1357009399-e397a1?p=8866) |\n| 古拉格：一部历史 | 安妮・阿普尔鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357008823-3cb3b7?p=8866) |\n| 倒转红轮 | 金雁 | [下载](https://url89.ctfile.com/f/31084289-1357008238-c702a9?p=8866) |\n| 科雷马故事 | 瓦尔拉姆・沙拉莫夫 | [下载](https://url89.ctfile.com/f/31084289-1357007758-860467?p=8866) |\n| 苏联的最后一天 | 康纳・奥克莱利 | [下载](https://url89.ctfile.com/f/31084289-1357007443-688830?p=8866) |\n| 一个大国的崛起与崩溃 | 沈志华 | [下载](https://url89.ctfile.com/f/31084289-1357006309-28146c?p=8866) |\n| 二战秘密档案 | 鲍里斯・瓦季莫维奇・索科洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357006234-1612e9?p=8866) |\n| 朱可夫：斯大林的将军 | 杰弗里・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357006219-c6136a?p=8866) |\n"
  },
  {
    "path": "md/苏轼.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 苏轼\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 苏东坡新传 | 李一冰 | [下载](https://url89.ctfile.com/f/31084289-1356994948-24d8ca?p=8866) |\n| 苏轼词集（词系列） | 苏轼 | [下载](https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866) |\n"
  },
  {
    "path": "md/英国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 英国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 凝视上帝 | 西蒙・赫弗 | [下载](https://url89.ctfile.com/f/31084289-1375499425-8eff3d?p=8866) |\n| 维多利亚时代 | 朱迪丝・弗兰德斯 | [下载](https://url89.ctfile.com/f/31084289-1375500562-7ac52d?p=8866) |\n| 金线：织物如何改变了历史？ | 卡西亚・圣克莱尔 | [下载](https://url89.ctfile.com/f/31084289-1375501624-793bc8?p=8866) |\n| 英国文学史全系（套装共5本） | 李赋宁等 | [下载](https://url89.ctfile.com/f/31084289-1375508770-b38c29?p=8866) |\n| 我这样的机器 | 伊恩・麦克尤恩 | [下载](https://url89.ctfile.com/f/31084289-1375510408-102979?p=8866) |\n| 托马斯·克伦威尔 | 特蕾西・博尔曼 | [下载](https://url89.ctfile.com/f/31084289-1375511191-682a44?p=8866) |\n| 绅士肖像：毛姆短篇小说全集4 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1375511293-da7703?p=8866) |\n| 亨利八世与都铎王朝 | 约翰・马图夏克 | [下载](https://url89.ctfile.com/f/31084289-1375511740-575290?p=8866) |\n| 恶病年代 | 埃德・韦斯特 | [下载](https://url89.ctfile.com/f/31084289-1375512205-c22f7a?p=8866) |\n| BBC苏格兰史 | 尼尔・奥利弗 | [下载](https://url89.ctfile.com/f/31084289-1357004458-d70774?p=8866) |\n| 深蓝帝国：英国海军的兴衰 | 本・威尔逊 | [下载](https://url89.ctfile.com/f/31084289-1357003900-cc034b?p=8866) |\n| 纳尼亚传奇（果麦经典） | C. S. 刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357003126-d6c87d?p=8866) |\n| 心有猛虎，细嗅蔷薇（果麦经典） | 西格夫里・萨松 | [下载](https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866) |\n| 老爸乔治的烦恼 | 马克・哈登 | [下载](https://url89.ctfile.com/f/31084289-1357001620-a75c71?p=8866) |\n| 时装（牛津通识读本） | 丽贝卡・阿诺德 | [下载](https://url89.ctfile.com/f/31084289-1357001443-1e6b5d?p=8866) |\n| 自深深处（果麦经典） | 奥斯卡・王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357000213-ef7333?p=8866) |\n| 大英帝国套装（共2册） | 詹姆斯・查斯洛・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1356999904-67d00c?p=8866) |\n| 希望 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1356997777-1a2e95?p=8866) |\n| 泰晤士：大河大城 | 彼得・阿克罗伊德 | [下载](https://url89.ctfile.com/f/31084289-1356997744-607361?p=8866) |\n| 终于 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1356997603-36513e?p=8866) |\n| 母乳 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1356997357-beaba0?p=8866) |\n| 算了 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1356996913-f147a5?p=8866) |\n| 噩耗 | 爱德华・圣奥宾 | [下载](https://url89.ctfile.com/f/31084289-1356996463-7a111b?p=8866) |\n| 拜占庭帝国史：从拜占庭建城到君士坦丁堡陷落 | 查尔斯・奥曼 | [下载](https://url89.ctfile.com/f/31084289-1356996493-f3ded1?p=8866) |\n| 番茄酱之云 | 安娜贝儿・皮彻 | [下载](https://url89.ctfile.com/f/31084289-1356995293-e7ed6e?p=8866) |\n| 诺曼征服 | 马克・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356994756-0f820d?p=8866) |\n| 写在身体上 | 珍妮特・温特森 | [下载](https://url89.ctfile.com/f/31084289-1356994540-f64a45?p=8866) |\n| 不一样的文学史 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1356990265-aa11ea?p=8866) |\n| 邪恶的肉身 | 伊夫林・沃 | [下载](https://url89.ctfile.com/f/31084289-1356985819-c6fc66?p=8866) |\n| 简朴的哲学 | 埃默里斯・韦斯特科特 | [下载](https://url89.ctfile.com/f/31084289-1356984784-db9149?p=8866) |\n| 约翰王 | 马克・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1356983881-bdebff?p=8866) |\n| 一片树叶的颤动 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357054492-7e8119?p=8866) |\n| 奥威尔战时文集 | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357054411-ddeb17?p=8866) |\n| 西太后：薇薇安·威斯特伍德 | 薇薇安・威斯特伍德/伊恩・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357054321-5d3b9d?p=8866) |\n| 糖与香料 | 萨菲娜・德福奇 | [下载](https://url89.ctfile.com/f/31084289-1357053121-74a2f5?p=8866) |\n| 重逢 | 弗雷德・乌尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357053028-b8a395?p=8866) |\n| 静物 | A.S.拜厄特 | [下载](https://url89.ctfile.com/f/31084289-1357052191-7b68a7?p=8866) |\n| 理论的危机 | 斯科特・汉密尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357051699-18c407?p=8866) |\n| 生姜头，你疯了 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357051588-88d28b?p=8866) |\n| 走出防空洞 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357051501-efedaf?p=8866) |\n| 赖床的男人 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357051324-774754?p=8866) |\n| 巴别塔 | A.S.拜厄特 | [下载](https://url89.ctfile.com/f/31084289-1357050370-722d26?p=8866) |\n| E.M.福斯特文集（套装共8册） | E.M.福斯特 | [下载](https://url89.ctfile.com/f/31084289-1357049557-ddb05b?p=8866) |\n| 困惑的三文鱼 | 道格拉斯・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357049533-a0c153?p=8866) |\n| 维多利亚女王：帝国女统治者的秘密传记（全2册） | 茱莉娅・贝尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049212-d5dd56?p=8866) |\n| 论人类的认识（校勘全译本） | 约翰・洛克 | [下载](https://url89.ctfile.com/f/31084289-1357049083-4cbde1?p=8866) |\n| 一九八四（纪念版） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357049053-554dfe?p=8866) |\n| “尤利西斯”三部曲（套装共3册） | 詹姆斯・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357049059-191e8e?p=8866) |\n| 书店 | 佩内洛普・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357048501-57d0d1?p=8866) |\n| 蓝花 | 佩内洛普・菲茨杰拉德 | [下载](https://url89.ctfile.com/f/31084289-1357048498-7b3dc7?p=8866) |\n| 奥威尔纪实作品全集（套装共3册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357047856-263fe2?p=8866) |\n| 奥威尔小说全集（套装共6册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357047130-74f0d5?p=8866) |\n| 中非湖区探险记Ⅰ | 理查德・F.伯顿 | [下载](https://url89.ctfile.com/f/31084289-1357046932-06caa3?p=8866) |\n| 中非湖区探险记Ⅱ | 理查德・F.伯顿 | [下载](https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866) |\n| 智慧七柱Ⅱ | T. E.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357046350-539896?p=8866) |\n| 世界最险恶之旅Ⅱ | 阿普斯利・谢里-加勒德 | [下载](https://url89.ctfile.com/f/31084289-1357046278-bbd919?p=8866) |\n| 大英殖民帝国 | 阿尔弗雷德・考尔德科特 | [下载](https://url89.ctfile.com/f/31084289-1357046260-f5d6bc?p=8866) |\n| 珠峰史诗 | 荣赫鹏 | [下载](https://url89.ctfile.com/f/31084289-1357046020-2c19f2?p=8866) |\n| 萝西与苹果酒 | 洛瑞・李 | [下载](https://url89.ctfile.com/f/31084289-1357045690-dfeb85?p=8866) |\n| 丛林之书（果麦经典） | 鲁德亚德・吉卜林 | [下载](https://url89.ctfile.com/f/31084289-1357045132-c19a7a?p=8866) |\n| 日升之处 | A.W.金莱克 | [下载](https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866) |\n| 傲慢与偏见（果麦经典） | 简・奥斯汀 | [下载](https://url89.ctfile.com/f/31084289-1357044751-279929?p=8866) |\n| 一间自己的房间（作家榜经典文库） | 维吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357044304-7ba850?p=8866) |\n| 温莎王朝 | 汤姆・利文 | [下载](https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866) |\n| 黑暗时代的她们 | 杰奎琳・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357043416-decde6?p=8866) |\n| 大英图书馆书籍史话 | 大卫・皮尔森 | [下载](https://url89.ctfile.com/f/31084289-1357043452-8e78d1?p=8866) |\n| 缔造大英帝国 | 詹姆斯・查斯洛・亚当斯 | [下载](https://url89.ctfile.com/f/31084289-1357042840-1ccb85?p=8866) |\n| 美国男孩 | 安德鲁・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357042171-7d0446?p=8866) |\n| 爱德华一世 | 马克・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357041919-86ce33?p=8866) |\n| 瘟疫年纪事（译文经典） | 丹尼尔・笛福 | [下载](https://url89.ctfile.com/f/31084289-1357041763-ddc224?p=8866) |\n| 奥威尔杂文全集（全2册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866) |\n| 自由的流亡者 | 马娅・亚桑诺夫 | [下载](https://url89.ctfile.com/f/31084289-1357040584-d06291?p=8866) |\n| 帝国边缘 | 马娅・亚桑诺夫 | [下载](https://url89.ctfile.com/f/31084289-1357040506-d747d7?p=8866) |\n| 单日人，双日人 | 菲莉西亚・叶 | [下载](https://url89.ctfile.com/f/31084289-1357039492-8a2857?p=8866) |\n| 海浪（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357039150-6a4545?p=8866) |\n| 游泳课 | 克莱尔・富勒 | [下载](https://url89.ctfile.com/f/31084289-1357038988-b719e8?p=8866) |\n| 奥兰多（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357038967-31be31?p=8866) |\n| 达洛卫夫人（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357038763-358ae0?p=8866) |\n| 弗勒希（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357038658-5b950b?p=8866) |\n| 论小说与小说家（伍尔夫文集） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357038409-cb997a?p=8866) |\n| 印度：百万叛变的今天 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038352-395b19?p=8866) |\n| 世间之路 | V. S. 奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357038304-7876a3?p=8866) |\n| 尼罗河上的惨案（精装纪念版） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357037980-5f4597?p=8866) |\n| 福尔摩斯探案全集（图注本套装共9册） | 阿瑟・柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357038379-15f688?p=8866) |\n| 斯通与骑士伙伴 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037887-c76d6d?p=8866) |\n| 一九八四（译文经典） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357037821-bebf0d?p=8866) |\n| 天堂消息 | 戴维・洛奇 | [下载](https://url89.ctfile.com/f/31084289-1357037815-c1d2ef?p=8866) |\n| 抵达之谜 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037674-586f4c?p=8866) |\n| 模仿者 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037554-1eae8b?p=8866) |\n| 全民选举 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037491-26ed83?p=8866) |\n| 儿童分析的故事 | 梅兰妮・克莱因 | [下载](https://url89.ctfile.com/f/31084289-1357037545-425e4d?p=8866) |\n| 毕司沃斯先生的房子 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037305-c3a875?p=8866) |\n| 东方快车谋杀案（精装纪念版） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357037125-3935f9?p=8866) |\n| 奈保尔家书 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357036780-5f6eeb?p=8866) |\n| T.S.艾略特传 | 林德尔・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357036069-19be5d?p=8866) |\n| 皆大欢喜（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035328-54ced4?p=8866) |\n| 米德尔马契（名著名译丛书） | 乔治・艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357035091-250be1?p=8866) |\n| 简·爱（名著名译丛书） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357035043-4a5759?p=8866) |\n| 大象：劳伦斯诗集 | 劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866) |\n| 呼啸山庄（名著名译丛书） | 爱米丽・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357034848-f289fc?p=8866) |\n| 大卫·科波菲尔（名著名译丛书） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357034719-d1f933?p=8866) |\n| Goblin Market | Rossetti, Christina; Rackham, Arthur; | [下载](https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866) |\n| 北海鲸梦 | 伊恩・麦奎尔 | [下载](https://url89.ctfile.com/f/31084289-1357033870-13a526?p=8866) |\n| 从月亮来的男孩 | 安德鲁・米勒 | [下载](https://url89.ctfile.com/f/31084289-1357033777-207e83?p=8866) |\n| 双城记（企鹅经典） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357033369-82ddd0?p=8866) |\n| 乌有乡 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357033015-db0e92?p=8866) |\n| 黑暗昭昭（戈尔丁文集） | 威廉・戈尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357032988-e8826f?p=8866) |\n| 美妙的新世界（企鹅经典） | 阿道斯・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357032943-1adcbe?p=8866) |\n| 教堂尖塔（戈尔丁文集） | 威廉・戈尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357032922-ca9637?p=8866) |\n| 特拉法尔加战役 | 朱利安·S.科贝特 | [下载](https://url89.ctfile.com/f/31084289-1357032859-02f8e0?p=8866) |\n| 金字塔（戈尔丁文集） | 威廉・戈尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357032850-2b6466?p=8866) |\n| 品彻·马丁（戈尔丁文集） | 威廉・戈尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357032826-5e81ee?p=8866) |\n| 独角兽 | 艾丽丝・默多克 | [下载](https://url89.ctfile.com/f/31084289-1357032814-2310b8?p=8866) |\n| 动物农场（果麦经典） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357032811-2781ba?p=8866) |\n| 黑王子 | 艾丽丝・默多克 | [下载](https://url89.ctfile.com/f/31084289-1357032775-2d8d02?p=8866) |\n| 撒切尔夫人 | 乔纳森・艾特肯 | [下载](https://url89.ctfile.com/f/31084289-1357032679-f97385?p=8866) |\n| 大海，大海 | 艾丽丝・默多克 | [下载](https://url89.ctfile.com/f/31084289-1357032586-efa32a?p=8866) |\n| 英国下层阶级的愤怒 | 戴伦・麦加维 | [下载](https://url89.ctfile.com/f/31084289-1357032574-2a5e18?p=8866) |\n| 伦敦文学小史 | 埃洛伊丝・米勒/萨姆・乔迪森 | [下载](https://url89.ctfile.com/f/31084289-1357032556-eab92f?p=8866) |\n| 伊丽莎白女王 | 艾莉森・威尔 | [下载](https://url89.ctfile.com/f/31084289-1357032370-560396?p=8866) |\n| 文具盒里的时空漫游 | 詹姆斯・沃德 | [下载](https://url89.ctfile.com/f/31084289-1357032310-afb48d?p=8866) |\n| 美丽新世界（译文经典） | 奥尔德斯・赫胥黎 | [下载](链接未找到) |\n| 绝对笑喷之弃业医生日志 | 亚当・凯 | [下载](https://url89.ctfile.com/f/31084289-1357032118-d3d81f?p=8866) |\n| 打字机上的缪斯 | 杰西・波顿 | [下载](https://url89.ctfile.com/f/31084289-1357032046-bcf6eb?p=8866) |\n| 游泳回家 | 德博拉・利维 | [下载](https://url89.ctfile.com/f/31084289-1357031884-0e53c6?p=8866) |\n| 寒鸦之夏 | 大卫・阿尔蒙德 | [下载](https://url89.ctfile.com/f/31084289-1357031833-e6bd46?p=8866) |\n| 动物农场（译文经典） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357031764-29356d?p=8866) |\n| 英格兰，英格兰 | 朱利安・巴恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357031614-a56b26?p=8866) |\n| 凝视太阳 | 朱利安・巴恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357031605-7148b5?p=8866) |\n| 2061：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357031338-2f5a6b?p=8866) |\n| 3001：太空漫游 | 阿瑟・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357031323-aa1705?p=8866) |\n| 终结的感觉 | 朱利安・巴恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357031236-897f5d?p=8866) |\n| 莎士比亚喜剧悲剧全集（套装共6册） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866) |\n| 重生三部曲 | 派特・巴克 | [下载](https://url89.ctfile.com/f/31084289-1357030570-38049c?p=8866) |\n| 英国诗歌选集（珍藏版）（套装上下册） | 王佐良等 | [下载](https://url89.ctfile.com/f/31084289-1357030003-5f317b?p=8866) |\n| 英伦魔法师 | 苏珊娜・克拉克 | [下载](链接未找到) |\n| 10½章世界史 | 朱利安・巴恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357029607-91f650?p=8866) |\n| 到灯塔去（伍尔夫文集） | 弗吉尼亚・伍尔夫  | [下载](https://url89.ctfile.com/f/31084289-1357028380-bf539a?p=8866) |\n| 项狄传 | 劳伦斯・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1357027735-41f0a8?p=8866) |\n| 惊险的浪漫（午夜文库） | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357027543-dfcd65?p=8866) |\n| 多情客游记 | 劳伦斯・斯特恩 | [下载](https://url89.ctfile.com/f/31084289-1357027396-557075?p=8866) |\n| 刀锋（果麦经典） | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357027141-8e7a86?p=8866) |\n| 弃儿汤姆·琼斯的历史（译文名著典藏 ） | 亨利・菲尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357026775-06d1c5?p=8866) |\n| 名利场（译文名著典藏） | 萨克雷 | [下载](https://url89.ctfile.com/f/31084289-1357026769-c1d7b8?p=8866) |\n| 鲁滨孙历险记（译文名著典藏） | 笛福 | [下载](https://url89.ctfile.com/f/31084289-1357026760-cc5987?p=8866) |\n| 简·爱（译文名著典藏） | 夏洛蒂・勃朗特 | [下载](https://url89.ctfile.com/f/31084289-1357026733-0e7678?p=8866) |\n| 大卫·考坡菲（译文名著典藏） | 狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357026742-07aca9?p=8866) |\n| 傲慢与偏见（译文名著典藏） | 简・奥斯汀 | [下载](https://url89.ctfile.com/f/31084289-1357026730-bb23d6?p=8866) |\n| 木麻黄树 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026430-c550f5?p=8866) |\n| 客厅里的绅士 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026385-b08e93?p=8866) |\n| 巨匠与杰作 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026352-cee4c7?p=8866) |\n| 刀锋 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026358-54bc9d?p=8866) |\n| 莎士比亚四大悲剧（译文名著典藏） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357026406-61388c?p=8866) |\n| 美 | 扎迪・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357026232-fda9af?p=8866) |\n| 巫术师 | 约翰・福尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357025632-4de61f?p=8866) |\n| A Room with a View | E. M. Forster | [下载](https://url89.ctfile.com/f/31084289-1357025248-21fc37?p=8866) |\n| 贪婪的七宗罪 | 斯图尔特・西姆 | [下载](https://url89.ctfile.com/f/31084289-1357025005-486788?p=8866) |\n| 饥饿帝国 | 莉齐・克林汉姆 | [下载](https://url89.ctfile.com/f/31084289-1357024939-01ef66?p=8866) |\n| 时光尽头 | 珍妮・格林 | [下载](https://url89.ctfile.com/f/31084289-1357024645-7fef5c?p=8866) |\n| 大英帝国的崛起与衰落 | 劳伦斯・詹姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357024621-eefeab?p=8866) |\n| 全民自黑的英国 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866) |\n| 金银岛（果麦经典） | 罗伯特・路易斯・史蒂文森  | [下载](https://url89.ctfile.com/f/31084289-1357024498-232c2b?p=8866) |\n| 时光边缘的男人 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024444-7f3cf5?p=8866) |\n| 无人爱我 | D.H.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357024375-19382b?p=8866) |\n| 呼叫助产士 | 珍妮弗・沃斯 | [下载](https://url89.ctfile.com/f/31084289-1357024336-bc2744?p=8866) |\n| 理解一张照片 | 约翰・伯格 | [下载](https://url89.ctfile.com/f/31084289-1357024285-dc39c4?p=8866) |\n| 圣诞女孩 | 马特・海格 | [下载](https://url89.ctfile.com/f/31084289-1357024264-0ff0f7?p=8866) |\n| 日不落帝国兴衰史（全五册） | 约翰・布莱尔等 | [下载](https://url89.ctfile.com/f/31084289-1357024240-d3762e?p=8866) |\n| 神奇动物：格林德沃之罪 | J·K·罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357024141-baf465?p=8866) |\n| 海面之下 | 克莱尔・道格拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357023733-847d94?p=8866) |\n| 好兆头 | 特里・普拉切特/尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357023736-2634aa?p=8866) |\n| Fantastic Beasts and Where to Find Them | J·K·罗琳  | [下载](https://url89.ctfile.com/f/31084289-1357023595-b5827d?p=8866) |\n| 如何给狮子剥皮 | 克莱尔・科克-斯塔基 | [下载](https://url89.ctfile.com/f/31084289-1357022968-b9aee4?p=8866) |\n| 苏格兰女王的悲剧 | 斯蒂芬・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1357022848-5c64d6?p=8866) |\n| 北欧众神 | 尼尔・盖曼 | [下载](https://url89.ctfile.com/f/31084289-1357022500-26f71b?p=8866) |\n| 英国史（全3卷） | 西蒙・沙玛 | [下载](https://url89.ctfile.com/f/31084289-1357022530-d45c41?p=8866) |\n| 万物既伟大又渺小 | 吉米・哈利 | [下载](https://url89.ctfile.com/f/31084289-1357022239-aef96c?p=8866) |\n| 浮生梦 | 达芙妮・杜穆里埃 | [下载](https://url89.ctfile.com/f/31084289-1357021705-6e4f6d?p=8866) |\n| 赎罪 | 伊恩・麦克尤恩 | [下载](https://url89.ctfile.com/f/31084289-1357021276-1a6b77?p=8866) |\n| 儿童法案 | 伊恩・麦克尤恩 | [下载](https://url89.ctfile.com/f/31084289-1357021282-f30bee?p=8866) |\n| 狄更斯讲英国史（全彩图文版） | 查尔斯・狄更斯 | [下载](https://url89.ctfile.com/f/31084289-1357020844-2bcd58?p=8866) |\n| 英国人：国家的形成1707-1832 | 琳达・科利 | [下载](https://url89.ctfile.com/f/31084289-1357019965-6c0b00?p=8866) |\n| 甜牙 | 伊恩・麦克尤恩 | [下载](https://url89.ctfile.com/f/31084289-1357019632-82cbc6?p=8866) |\n| 染匠之手 | 奥登 | [下载](https://url89.ctfile.com/f/31084289-1357019410-f0261a?p=8866) |\n| 狼厅 | 希拉里・曼特尔  | [下载](https://url89.ctfile.com/f/31084289-1357019317-1aba3e?p=8866) |\n| 提堂 | 希拉里・曼特尔 | [下载](https://url89.ctfile.com/f/31084289-1357019320-e2263e?p=8866) |\n| 分裂的王国 | 丹・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357019212-e7ca0b?p=8866) |\n| 乌鸦之城：伦敦，伦敦塔与乌鸦的故事 | 博里亚・萨克斯 | [下载](https://url89.ctfile.com/f/31084289-1357018267-2f8477?p=8866) |\n| 鼠年 | 克莱尔・弗尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357017883-83d4c9?p=8866) |\n| 阿加莎·克里斯蒂自传 | 阿加莎・克里斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357017580-d6407e?p=8866) |\n| 幸福的建筑 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016800-10b9f5?p=8866) |\n| BBC世界史 | 安德鲁・玛尔 | [下载](https://url89.ctfile.com/f/31084289-1357015627-d57f22?p=8866) |\n| 达洛卫夫人（译文名著精选） | 弗吉尼亚・伍尔夫 | [下载](https://url89.ctfile.com/f/31084289-1357015435-2a37de?p=8866) |\n| 极简GDP史 | 黛安娜・科伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357015075-588dba?p=8866) |\n| 碟形世界：平等权利 | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357015015-402a9f?p=8866) |\n| 染血的王冠：不列颠王权和战争史 | 赵恺 | [下载](https://url89.ctfile.com/f/31084289-1357014103-2b0300?p=8866) |\n| 长日留痕 | 石黑一雄 | [下载](https://url89.ctfile.com/f/31084289-1357013677-6e7b44?p=8866) |\n| 大博弈：英俄帝国争霸战 | 彼得・霍普柯克 | [下载](https://url89.ctfile.com/f/31084289-1357013476-edaf89?p=8866) |\n| 企鹅课 | 汤姆・米切尔 | [下载](https://url89.ctfile.com/f/31084289-1357013266-02a0a3?p=8866) |\n| 动物庄园 | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357013113-3cbe8f?p=8866) |\n| 蝇王（戈尔丁文集） | 威廉・戈尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357012984-413b5f?p=8866) |\n| 夜莺书店 | 维罗妮卡・亨利 | [下载](https://url89.ctfile.com/f/31084289-1357012699-8a0f8a?p=8866) |\n| 牛虻 | 艾捷尔・丽莲・伏尼契 | [下载](https://url89.ctfile.com/f/31084289-1357012474-cb8e19?p=8866) |\n| 金雀花王朝 | 丹・琼斯 | [下载](https://url89.ctfile.com/f/31084289-1357011985-5c2ac6?p=8866) |\n| 贝伦与露西恩（插图本） | 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357011979-e75e80?p=8866) |\n| 罗尼 | 安德鲁・麦克尔・赫尔利 | [下载](https://url89.ctfile.com/f/31084289-1357011778-9792d8?p=8866) |\n| 孤儿列车 | 克里斯蒂娜・贝克・克兰 | [下载](https://url89.ctfile.com/f/31084289-1357011670-4e3c98?p=8866) |\n| 英国通史（套装共6册） | 钱乘旦 | [下载](https://url89.ctfile.com/f/31084289-1357011244-ca6f60?p=8866) |\n| 美妙的新世界 | 阿道司・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357010503-709f5d?p=8866) |\n| 工业与帝国：英国的现代化历程 | 埃里克・霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357010428-b210b9?p=8866) |\n| 简·奥斯丁小说全集 | 简・奥斯丁 | [下载](https://url89.ctfile.com/f/31084289-1357010251-5f85e0?p=8866) |\n| 月亮和六便士 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357010029-35b91e?p=8866) |\n| 偶发空缺 | J.K.罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357009801-91629b?p=8866) |\n| 看，这个世界 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357009435-6a6ded?p=8866) |\n| 生命不息 | 凯特・阿特金森 | [下载](https://url89.ctfile.com/f/31084289-1357009015-52993b?p=8866) |\n| 寻欢作乐 | 威廉・萨默塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357008001-2f0063?p=8866) |\n| 银行家的情人 | 肯・福莱特 | [下载](https://url89.ctfile.com/f/31084289-1357007959-2bd28b?p=8866) |\n| 夜莺与玫瑰 | 王尔德 | [下载](https://url89.ctfile.com/f/31084289-1357007755-dc10b4?p=8866) |\n| 三十九级台阶 | 约翰・巴肯 | [下载](https://url89.ctfile.com/f/31084289-1357007224-25a8f0?p=8866) |\n| 第一个世界帝国及其西征系列（共三册） | 布赖恩・莱弗里/汤姆・霍兰 | [下载](https://url89.ctfile.com/f/31084289-1357007089-66c01d?p=8866) |\n| 黑暗领域 | 薇儿·麦克德米德 | [下载](https://url89.ctfile.com/f/31084289-1357006831-f4f43b?p=8866) |\n| 你知道或不知道的英国史 | 贺桂金 | [下载](https://url89.ctfile.com/f/31084289-1357005250-b15525?p=8866) |\n| 福尔摩斯探案集（经典译林） | 柯南・道尔 | [下载](https://url89.ctfile.com/f/31084289-1357004821-0d75f5?p=8866) |\n"
  },
  {
    "path": "md/英文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 英文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 英国《金融时报》原文阅读精选集（六） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357043296-42eb15?p=8866) |\n| 英国《金融时报》原文阅读精选集（四） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042927-6a87ec?p=8866) |\n| 英国《金融时报》原文阅读精选集（一） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042762-ba6b8b?p=8866) |\n| Warnings | Richard A. Clarke/R.P. Eddy | [下载](链接未找到) |\n| The Saga of Gunnlaug Serpent-tongue | Anon Anon | [下载](https://url89.ctfile.com/f/31084289-1357029748-cd4b3f?p=8866) |\n| Machines Like Me | Ian McEwan | [下载](https://url89.ctfile.com/f/31084289-1357029739-328612?p=8866) |\n| Then She Was Gone | Lisa Jewell | [下载](https://url89.ctfile.com/f/31084289-1357023349-f937e5?p=8866) |\n| The Fifth Risk | Michael Lewis | [下载](https://url89.ctfile.com/f/31084289-1357022572-e36b2f?p=8866) |\n| Killing Floor | Child, Lee | [下载](https://url89.ctfile.com/f/31084289-1357020754-1c2d0f?p=8866) |\n| Wonder | R. J. Palacio | [下载](https://url89.ctfile.com/f/31084289-1357017160-80e85a?p=8866) |\n| Morning Star | Pierce Brown | [下载](链接未找到) |\n| The Three-Body Problem | Cixin Liu | [下载](https://url89.ctfile.com/f/31084289-1357013644-82ce19?p=8866) |\n| The Dark Forest | Cixin Liu | [下载](https://url89.ctfile.com/f/31084289-1357013641-7de59a?p=8866) |\n| Death&#8217;s End | Cixin Liu | [下载](https://url89.ctfile.com/f/31084289-1357013638-dd39ad?p=8866) |\n| Never Let Me Go | Kazuo Ishiguro | [下载](https://url89.ctfile.com/f/31084289-1357013593-c4885e?p=8866) |\n| The Remains of the Day | Kazuo Ishiguro | [下载](https://url89.ctfile.com/f/31084289-1357013581-23b14c?p=8866) |\n| 101 Classic Short Stories | Henry | [下载](https://url89.ctfile.com/f/31084289-1357013203-22727d?p=8866) |\n| Winter of the World | Ken Follett | [下载](https://url89.ctfile.com/f/31084289-1357013173-f5d994?p=8866) |\n| Lolita | Vladimir Nabokov | [下载](https://url89.ctfile.com/f/31084289-1357009768-8023b1?p=8866) |\n"
  },
  {
    "path": "md/英格兰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 英格兰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 英格兰简史大套装（套装共十册） | 埃德・韦斯特等 | [下载](https://url89.ctfile.com/f/31084289-1375504159-936447?p=8866) |\n"
  },
  {
    "path": "md/英语.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 英语\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中译经典文库•世界文学名著精选50册 | 中国对外翻译出版公司 | [下载](https://url89.ctfile.com/f/31084289-1375498132-8a1f72?p=8866) |\n| 翻译大师谈翻译：译家之言套装 | 许渊冲 | [下载](https://url89.ctfile.com/f/31084289-1375500748-930d1b?p=8866) |\n| 丽声指南针英语名著分级读物高中版第三级（套装共6册） | Joanna Davidson等 | [下载](https://url89.ctfile.com/f/31084289-1375506067-2ec3d5?p=8866) |\n| 布莱森英语简史 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357001344-4ed33f?p=8866) |\n| 钱歌川英语学习大全（套装共5册） | 钱歌川 | [下载](https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866) |\n| 漫威超级英雄双语故事集（套装共10本） | 美国漫威公司 | [下载](https://url89.ctfile.com/f/31084289-1357053103-e6f1dc?p=8866) |\n| 《自然》百年科学经典（第一卷） | 赫胥黎等 | [下载](https://url89.ctfile.com/f/31084289-1357050973-0371d3?p=8866) |\n| 牛津国际关系手册 | 罗伯特・基欧汉等 | [下载](https://url89.ctfile.com/f/31084289-1357045762-8a684a?p=8866) |\n| 英国《金融时报》原文阅读精选集（八） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357043593-cd4e90?p=8866) |\n| 英国《金融时报》原文阅读精选集（七） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357043164-770743?p=8866) |\n| 英国《金融时报》原文阅读精选集（三） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357043062-c23c04?p=8866) |\n| 王佐良全集（套装共12卷） | 王佐良 | [下载](https://url89.ctfile.com/f/31084289-1357042960-41e26a?p=8866) |\n| 英国《金融时报》原文阅读精选集（五） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042861-1cb1cb?p=8866) |\n| 英国《金融时报》原文阅读精选集（二） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042696-3e0f87?p=8866) |\n| 被解释的美 | 金雯 | [下载](https://url89.ctfile.com/f/31084289-1357041943-2f0dec?p=8866) |\n| 英语写作手册：风格的要素 | 威廉・斯特伦克 | [下载](https://url89.ctfile.com/f/31084289-1357024117-f9611c?p=8866) |\n| 英语民族史（套装共4本） | 温斯顿・丘吉尔 | [下载](https://url89.ctfile.com/f/31084289-1357023793-341588?p=8866) |\n| 再会，契普斯先生 | 詹姆斯・希尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357021627-c108f7?p=8866) |\n| The Sense of Style | Steven Pinker | [下载](https://url89.ctfile.com/f/31084289-1357021594-60f68e?p=8866) |\n| 无聊的魅力 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866) |\n| 1368个单词就够了 | 王乐平 | [下载](https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866) |\n| 翻译的技巧 | 钱歌川 | [下载](https://url89.ctfile.com/f/31084289-1357015609-4aebb7?p=8866) |\n| 英语的故事 | 戴维・克里斯特尔 | [下载](https://url89.ctfile.com/f/31084289-1357013851-0cea4d?p=8866) |\n| 成功就靠这点破英语 | 孙铁麟 | [下载](https://url89.ctfile.com/f/31084289-1357011910-c8a840?p=8866) |\n| 跟各国人都聊的来 | 本尼・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866) |\n| 外语是怎样学会的 | 王初明 | [下载](https://url89.ctfile.com/f/31084289-1357006816-a81b90?p=8866) |\n"
  },
  {
    "path": "md/英语读物.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 英语读物\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 格林童话全集（套装共3册） | 格林 | [下载](https://url89.ctfile.com/f/31084289-1357006672-9efda3?p=8866) |\n"
  },
  {
    "path": "md/苹果.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 苹果\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 蒂姆·库克传 | 利恩德・卡尼 | [下载](https://url89.ctfile.com/f/31084289-1357032322-3e088b?p=8866) |\n| 苹果首席设计师：乔纳森传 | 利恩德・卡尼 | [下载](https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866) |\n| 沃兹传：与苹果一起疯狂 | 吉娜・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357023163-c9e4da?p=8866) |\n| 库克：苹果的后乔布斯时代 | 冷湖 | [下载](https://url89.ctfile.com/f/31084289-1357007350-4946e4?p=8866) |\n| 史蒂夫·乔布斯传 | 沃尔特·艾萨克森 | [下载](https://url89.ctfile.com/f/31084289-1357005097-0768d7?p=8866) |\n"
  },
  {
    "path": "md/茶.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 茶\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 茶经 续茶经（全本全注全译） | 杜斌 | [下载](https://url89.ctfile.com/f/31084289-1375509088-32c32d?p=8866) |\n| 茶学与茶科学 | 叶士敏 | [下载](https://url89.ctfile.com/f/31084289-1375512316-d78971?p=8866) |\n| 茶叶战争（修订版） | 周重林 | [下载](https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866) |\n| 茶与茶器 | 静清和 | [下载](https://url89.ctfile.com/f/31084289-1357036960-e015cd?p=8866) |\n| 茶叶大盗 | 萨拉・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357035877-e9f8a6?p=8866) |\n| 茶的国度 | 戎新宇 | [下载](https://url89.ctfile.com/f/31084289-1357033186-d7f53e?p=8866) |\n| 绿色黄金：茶叶帝国 | 艾伦・麦克法兰/艾丽斯・麦克法兰 | [下载](https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866) |\n| 大观茶论 | 日月洲 | [下载](https://url89.ctfile.com/f/31084289-1357027285-051ff1?p=8866) |\n| 知中14·中国茶的基本 | 罗威尔 | [下载](https://url89.ctfile.com/f/31084289-1357025221-98cb56?p=8866) |\n| 茶席窥美 | 静清和 | [下载](https://url89.ctfile.com/f/31084289-1357021102-dfafb9?p=8866) |\n"
  },
  {
    "path": "md/茶文化.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 茶文化\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 绿色黄金：茶叶帝国 | 艾伦・麦克法兰/艾丽斯・麦克法兰 | [下载](https://url89.ctfile.com/f/31084289-1357032907-42d5d1?p=8866) |\n"
  },
  {
    "path": "md/荒诞.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 荒诞\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 有人必须死 | 李非 | [下载](https://url89.ctfile.com/f/31084289-1357051657-e02af4?p=8866) |\n| 企鹅的忧郁 | 安德烈・库尔科夫 | [下载](https://url89.ctfile.com/f/31084289-1357045798-191757?p=8866) |\n| 白银时代 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357034809-9dfcdb?p=8866) |\n| 红拂夜奔 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357032253-de9ad1?p=8866) |\n| 万寿寺 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357030480-1e074b?p=8866) |\n| 宇宙超度指南 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1357030267-3129e5?p=8866) |\n"
  },
  {
    "path": "md/药方.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 药方\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 小说药丸 | 埃拉・伯绍德/苏珊・埃尔德金 | [下载](https://url89.ctfile.com/f/31084289-1356987217-831e84?p=8866) |\n"
  },
  {
    "path": "md/荷兰.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 荷兰\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 海洋帝国的崛起 | 安东・范德伦 | [下载](https://url89.ctfile.com/f/31084289-1375497559-445fa9?p=8866) |\n| 荷兰海洋帝国史 | 顾卫民 | [下载](https://url89.ctfile.com/f/31084289-1357000186-39aa96?p=8866) |\n| 阿姆斯特丹：世界最自由城市的历史 | 萧拉瑟 | [下载](https://url89.ctfile.com/f/31084289-1357040344-803e71?p=8866) |\n| 郁金香热 | 迈克・达什 | [下载](https://url89.ctfile.com/f/31084289-1357033033-b304a2?p=8866) |\n| 雷沙革村的读墨人 | 托马斯・奥尔德・赫维尔特 | [下载](https://url89.ctfile.com/f/31084289-1357028404-d56f56?p=8866) |\n| 冰激凌家族 | 恩斯特・凡德奎斯特 | [下载](https://url89.ctfile.com/f/31084289-1357020658-1a3b66?p=8866) |\n"
  },
  {
    "path": "md/莎士比亚.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 莎士比亚\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 莎士比亚全集（套装共10本） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1356984475-8c8d8a?p=8866) |\n| 威尼斯商人（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357036159-3537ae?p=8866) |\n| 仲夏夜之梦（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035754-552ee9?p=8866) |\n| 李尔王（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035631-63e1ab?p=8866) |\n| 哈姆莱特（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035400-4bace1?p=8866) |\n| 奥瑟罗（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035262-7ae464?p=8866) |\n| 暴风雨（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035214-ce0c10?p=8866) |\n| 第十二夜（莎士比亚戏剧中文版） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357035130-63ad7b?p=8866) |\n| 莎士比亚喜剧悲剧全集（套装共6册） | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357030633-21d691?p=8866) |\n| 莎士比亚悲剧喜剧全集 | 威廉・莎士比亚 | [下载](https://url89.ctfile.com/f/31084289-1357022689-d55ee1?p=8866) |\n"
  },
  {
    "path": "md/菜谱.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 菜谱\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 食帖18：真的，烤箱什么都能做 | 林江编者 | [下载](https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866) |\n| 粗糙食堂 | 莲小兔 | [下载](https://url89.ctfile.com/f/31084289-1357033642-cbc979?p=8866) |\n| 红楼飨宴 | 闻佳/艾格吃饱了 | [下载](https://url89.ctfile.com/f/31084289-1357032670-fd7ebf?p=8866) |\n"
  },
  {
    "path": "md/萌宠.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 萌宠\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 就喜欢你看不惯我又干不掉我的样子 | 白茶 | [下载](https://url89.ctfile.com/f/31084289-1357032433-641b88?p=8866) |\n"
  },
  {
    "path": "md/营养.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 营养\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 深度营养 | 凯瑟琳・沙纳汉 | [下载](https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866) |\n| 你是你吃出来的 | 夏萌 | [下载](https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866) |\n| 总觉得饿？ | 大卫. 路德维希 | [下载](https://url89.ctfile.com/f/31084289-1357032166-4225b9?p=8866) |\n"
  },
  {
    "path": "md/营运.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 营运\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 裂变增长 | 施襄/杨嘉伟 | [下载](https://url89.ctfile.com/f/31084289-1357000963-f8460c?p=8866) |\n| 精益转型 | 约翰・涂尚徳 | [下载](https://url89.ctfile.com/f/31084289-1357051252-2f48cb?p=8866) |\n"
  },
  {
    "path": "md/营销.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 营销\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 多卖三倍 | 弗兰克 | [下载](https://url89.ctfile.com/f/31084289-1375491256-088984?p=8866) |\n| 故事经济学 | 罗伯特・麦基/哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1375503310-4e2ef8?p=8866) |\n| 催化：让一切加速改变 | 乔纳・伯杰 | [下载](https://url89.ctfile.com/f/31084289-1375510570-5a6471?p=8866) |\n| 从0到1打造个人品牌 | 王一九 | [下载](https://url89.ctfile.com/f/31084289-1375511005-0e066d?p=8866) |\n| 超级参与者 | 杰里米・海曼斯/亨利・蒂姆斯 | [下载](https://url89.ctfile.com/f/31084289-1375511710-5d87a4?p=8866) |\n| 好视频一秒抓住人心 | 高桥弘树 | [下载](https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866) |\n| 游戏化营销 | 胡华成 | [下载](https://url89.ctfile.com/f/31084289-1375512403-67c684?p=8866) |\n| 秒赞：文案女王20年创作技巧与心法 | 林桂枝 | [下载](https://url89.ctfile.com/f/31084289-1375512604-d11a42?p=8866) |\n| 开家书店，顺便赚钱 | 徐智明 | [下载](https://url89.ctfile.com/f/31084289-1375512910-991799?p=8866) |\n| 影响力变现 | 徐悦佳 | [下载](https://url89.ctfile.com/f/31084289-1375513336-2343ec?p=8866) |\n| Z世代营销 | 杰夫・弗若姆/安吉・瑞德 | [下载](https://url89.ctfile.com/f/31084289-1375513471-fe46fd?p=8866) |\n| 文案功夫 | 乐剑峰 | [下载](https://url89.ctfile.com/f/31084289-1357004422-027126?p=8866) |\n| 认识顾客（原书第13版） | 戴维·L.马瑟斯博等 | [下载](https://url89.ctfile.com/f/31084289-1357004203-857c83?p=8866) |\n| 极致零售 | 杜凤林 | [下载](https://url89.ctfile.com/f/31084289-1357000369-25a25b?p=8866) |\n| 瘾：让人上瘾的产品、广告与创意背后的秘密 | 吴文芳 | [下载](https://url89.ctfile.com/f/31084289-1356998839-6645d8?p=8866) |\n| 超级标签 | 闫跃龙 | [下载](https://url89.ctfile.com/f/31084289-1356997891-01926e?p=8866) |\n| 超级话题 | 肖大侠 | [下载](https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866) |\n| 顾客心理战 | 菲利普・格雷夫斯 | [下载](https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866) |\n| 带货王 | 李瑛 | [下载](https://url89.ctfile.com/f/31084289-1356995410-1921b6?p=8866) |\n| 抖音营销系统 | 刘大贺 | [下载](https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866) |\n| 文案的基本修养 | 东东枪 | [下载](https://url89.ctfile.com/f/31084289-1356994918-cff19c?p=8866) |\n| 外卖超级运营术 | 饿了么 | [下载](https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866) |\n| 创新者的行动 | 乔舒亚・甘斯 | [下载](https://url89.ctfile.com/f/31084289-1356991546-b38103?p=8866) |\n| 刷新品牌 | 高端训 | [下载](https://url89.ctfile.com/f/31084289-1356991498-c08cb2?p=8866) |\n| 人人都能学会的刷屏文案写作技巧 | 吕白 | [下载](https://url89.ctfile.com/f/31084289-1356990883-6f9bde?p=8866) |\n| 征服 | 邝大卫 | [下载](https://url89.ctfile.com/f/31084289-1356988423-8aeee2?p=8866) |\n| 微文案 | 朱冰 | [下载](https://url89.ctfile.com/f/31084289-1356986815-4423d3?p=8866) |\n| 销售技巧② | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866) |\n| 销售技巧① | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866) |\n| 用户画像 | 赵宏田 | [下载](https://url89.ctfile.com/f/31084289-1356985114-3f85fd?p=8866) |\n| 商业模式4.0 | 梁宇亮 | [下载](https://url89.ctfile.com/f/31084289-1356984169-e903be?p=8866) |\n| 引爆流行 | 德里克・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1356983782-f702eb?p=8866) |\n| 爆发式赢单 | 倪建伟 | [下载](https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866) |\n| 用得上的商学课 | 路骋 | [下载](https://url89.ctfile.com/f/31084289-1357053604-bca457?p=8866) |\n| 增长五线 | 王赛 | [下载](https://url89.ctfile.com/f/31084289-1357053205-8b8717?p=8866) |\n| 意志力销售法 | 杨朝福 | [下载](https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866) |\n| 从零开始玩转抖音 | 黑马唐 | [下载](https://url89.ctfile.com/f/31084289-1357051885-f479db?p=8866) |\n| 让顾客都成为回头客 | 安部修仁 | [下载](https://url89.ctfile.com/f/31084289-1357051840-11fd42?p=8866) |\n| 瑞幸闪电战 | 沈帅波 | [下载](https://url89.ctfile.com/f/31084289-1357051399-7bc94a?p=8866) |\n| 名创优品的101个新零售细节 | 张桓/杨永朋 | [下载](https://url89.ctfile.com/f/31084289-1357051315-899573?p=8866) |\n| 科学的广告 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357050856-6ba209?p=8866) |\n| 回归商业常识 | 麦克・霍夫林格 | [下载](https://url89.ctfile.com/f/31084289-1357050445-c90252?p=8866) |\n| 咖啡新零售 | 场景实验室 | [下载](https://url89.ctfile.com/f/31084289-1357049887-a61a3f?p=8866) |\n| 爆炸式增长 | 克里夫・勒纳 | [下载](https://url89.ctfile.com/f/31084289-1357049836-66e2fa?p=8866) |\n| 超级转化率 | 陈勇 | [下载](https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866) |\n| 营销的本质 | 包政 | [下载](https://url89.ctfile.com/f/31084289-1357049119-0dab70?p=8866) |\n| 营销的本质（珍藏版） | 包政 | [下载](https://url89.ctfile.com/f/31084289-1357048810-10c399?p=8866) |\n| 华与华百万大奖赛案例集 | 华杉/华楠 | [下载](https://url89.ctfile.com/f/31084289-1357048795-dfb0b3?p=8866) |\n| 世界皆营销 | 菲利普・科特勒 | [下载](https://url89.ctfile.com/f/31084289-1357046779-3315af?p=8866) |\n| 营销革命3.0（轻携版） | 菲利普・科特勒 | [下载](https://url89.ctfile.com/f/31084289-1357046362-c6312f?p=8866) |\n| 营销革命4.0 | 菲利普・科特勒等 | [下载](https://url89.ctfile.com/f/31084289-1357046284-8fb3e9?p=8866) |\n| 良性增长 | 拉姆・查兰 | [下载](https://url89.ctfile.com/f/31084289-1357045912-25395b?p=8866) |\n| 沟通力就是销售力 | 余尚祥 | [下载](https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866) |\n| 新定位 | 杰克・特劳特/史蒂夫・里夫金 | [下载](https://url89.ctfile.com/f/31084289-1357040557-45be4b?p=8866) |\n| 别输在不懂营销上 | 戈非 | [下载](https://url89.ctfile.com/f/31084289-1357039048-a43b0b?p=8866) |\n| 超级营销必修课（套装全8册） | 帕科・昂德希尔等 | [下载](https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866) |\n| 奥格威谈广告 | 杨名皓 | [下载](https://url89.ctfile.com/f/31084289-1357037881-a442a5?p=8866) |\n| 广告文案 | 乐剑峰 | [下载](https://url89.ctfile.com/f/31084289-1357035010-6298e9?p=8866) |\n| 新引爆点：抖音运营从0到1实战指南 | 头条易 | [下载](https://url89.ctfile.com/f/31084289-1357034614-ada148?p=8866) |\n| 获客 | 何润/张艳琳 | [下载](https://url89.ctfile.com/f/31084289-1357031698-1c4d3d?p=8866) |\n| 解密日本零售业（套装共4册） | 增田明子等 | [下载](https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866) |\n| 华尔街之狼：掌握直线销售的艺术 | 乔丹・贝尔福特 | [下载](https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866) |\n| 硅谷蓝图 | 雅各・范德库伊 | [下载](https://url89.ctfile.com/f/31084289-1357030753-271d59?p=8866) |\n| 文案变现 | 叶小鱼 | [下载](https://url89.ctfile.com/f/31084289-1357030300-907adf?p=8866) |\n| 新零售 | 范鹏 | [下载](https://url89.ctfile.com/f/31084289-1357028200-21484f?p=8866) |\n| 微信营销与运营 | 秦阳/秋叶 | [下载](https://url89.ctfile.com/f/31084289-1357025686-646e79?p=8866) |\n| 社群营销实战手册 | 秋叶 | [下载](https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866) |\n| 新媒体营销概论 | 秋叶 | [下载](https://url89.ctfile.com/f/31084289-1357025629-ed2810?p=8866) |\n| 如何把产品打造成有生命的品牌 | 叶明桂 | [下载](https://url89.ctfile.com/f/31084289-1357025542-105b08?p=8866) |\n| 常青：如何持久吸引客户 | 诺亚・弗雷明 | [下载](https://url89.ctfile.com/f/31084289-1357024480-7b4664?p=8866) |\n| 走红：如何打造个人品牌 | 杰瑞米・戈德曼/阿里・扎格特 | [下载](https://url89.ctfile.com/f/31084289-1357024471-fa34ec?p=8866) |\n| 深度粉销 | 丁丁 | [下载](https://url89.ctfile.com/f/31084289-1357024225-d9124f?p=8866) |\n| 好文案一句话就够了 | 川上徹也 | [下载](https://url89.ctfile.com/f/31084289-1357023655-f7c19e?p=8866) |\n| 情感驱动 | 维尔・桑切斯・拉米拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357023607-4fcc7f?p=8866) |\n| 病毒循环 | 亚当・潘恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357023577-b1c4f4?p=8866) |\n| 行为设计学：零成本改变 | 奇普・希思/丹・希思 | [下载](https://url89.ctfile.com/f/31084289-1357023532-18abb2?p=8866) |\n| 行为设计学：打造峰值体验 | 奇普・希思/丹・希思 | [下载](https://url89.ctfile.com/f/31084289-1357023541-95600c?p=8866) |\n| 认同感 | 吉姆・西诺雷利 | [下载](https://url89.ctfile.com/f/31084289-1357023244-e18c4d?p=8866) |\n| 抢占心智 | 江南春 | [下载](https://url89.ctfile.com/f/31084289-1357022992-629e44?p=8866) |\n| 销售脑 | 帕特里克・任瓦茨/克里斯托弗・莫林 | [下载](https://url89.ctfile.com/f/31084289-1357022623-017333?p=8866) |\n| 冷启动：零成本做营销 | 高臻臻 | [下载](https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866) |\n| 新媒体营销圣经 | 加里・维纳查克 | [下载](https://url89.ctfile.com/f/31084289-1357020331-3d803b?p=8866) |\n| 连接：顾客价值时代的营销战略 | 施炜 | [下载](https://url89.ctfile.com/f/31084289-1357020277-549efc?p=8866) |\n| 文案创作完全手册 | 罗伯特・布莱 | [下载](https://url89.ctfile.com/f/31084289-1357020019-128e2e?p=8866) |\n| 营销的16个关键词 | 叶茂中 | [下载](https://url89.ctfile.com/f/31084289-1357019953-21d24e?p=8866) |\n| 社群营销与运营 | 秋叶/秦阳 | [下载](https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866) |\n| 视觉锤 | 劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357019587-9bb3b2?p=8866) |\n| 流量池 | 杨飞 | [下载](https://url89.ctfile.com/f/31084289-1357019470-097c99?p=8866) |\n| 热点：引爆内容营销的6个密码 | 马克・舍费尔 | [下载](https://url89.ctfile.com/f/31084289-1357019395-c60176?p=8866) |\n| 不做无效的营销 | 王泽蕴 | [下载](https://url89.ctfile.com/f/31084289-1357018744-787c46?p=8866) |\n| 全栈市场人 | Lydia | [下载](https://url89.ctfile.com/f/31084289-1357018699-2a228c?p=8866) |\n| 人生定位：特劳特教你营销自己 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357017685-40353a?p=8866) |\n| 爆款文案 | 关健明 | [下载](https://url89.ctfile.com/f/31084289-1357017604-0d7b9e?p=8866) |\n| 参与感 | 黎万强 | [下载](https://url89.ctfile.com/f/31084289-1357017559-280c28?p=8866) |\n| 增长黑客：如何低成本实现爆发式成长 | Sean Ellis | [下载](https://url89.ctfile.com/f/31084289-1357017253-fb08da?p=8866) |\n| 2小时品牌素养 | 邓德隆 | [下载](https://url89.ctfile.com/f/31084289-1357017082-c4d7d4?p=8866) |\n| 小群效应 | 徐志斌 | [下载](https://url89.ctfile.com/f/31084289-1357016194-1f0452?p=8866) |\n| 卖故事：实践版 | 高朋 | [下载](https://url89.ctfile.com/f/31084289-1357016074-283b2b?p=8866) |\n| 零售心理战 | 铃木敏文 | [下载](https://url89.ctfile.com/f/31084289-1357015999-2d2d27?p=8866) |\n| 回头客战略 | 谢家华 | [下载](https://url89.ctfile.com/f/31084289-1357014988-d71fb1?p=8866) |\n| 爆品战略 | 金错刀 | [下载](https://url89.ctfile.com/f/31084289-1357014745-b33d69?p=8866) |\n| 一个广告人的自白 | 大卫・奥格威 | [下载](https://url89.ctfile.com/f/31084289-1357014712-d73daf?p=8866) |\n| 怎样卖龙虾 | 比尔・毕晓普 | [下载](https://url89.ctfile.com/f/31084289-1357014253-599182?p=8866) |\n| 新物种爆炸 | 吴声 | [下载](https://url89.ctfile.com/f/31084289-1357014184-7e8d0a?p=8866) |\n| 逆势销售：UGG创始人自述 | 布莱恩・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357014004-e22f1b?p=8866) |\n| AsK.反直觉询问 | 莱恩・莱韦斯克 | [下载](https://url89.ctfile.com/f/31084289-1357013026-3c4781?p=8866) |\n| 无价 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357012930-078336?p=8866) |\n| 粘住 | 奇普・希思/丹・希思 | [下载](https://url89.ctfile.com/f/31084289-1357011994-36d924?p=8866) |\n| 品牌洗脑（珍藏版） | 马丁・林斯特龙 | [下载](https://url89.ctfile.com/f/31084289-1357011694-d9e538?p=8866) |\n| 文案圣经 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357010962-7eb382?p=8866) |\n| 关系力 | 蒂姆・邓普顿 | [下载](https://url89.ctfile.com/f/31084289-1357010305-92ea3c?p=8866) |\n| 用户力：需求驱动的产品、运营和商业模式 | 郝志中 | [下载](https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866) |\n| 科学的广告+我的广告生涯 | 克劳德・霍普金斯 | [下载](https://url89.ctfile.com/f/31084289-1357009564-973727?p=8866) |\n| 销售就是要玩转情商 | 科林・斯坦利 | [下载](https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866) |\n| 董事会里的战争 | 艾・里斯/劳拉・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357008487-cf3b4c?p=8866) |\n| 引爆点：如何制造流行 | 马尔科姆・格拉德威尔 | [下载](https://url89.ctfile.com/f/31084289-1357008235-55cc2e?p=8866) |\n| 与众不同 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357008112-91ceed?p=8866) |\n| 重新定位（珍藏版） | 杰克・特劳特/史蒂夫・里夫金 | [下载](https://url89.ctfile.com/f/31084289-1357007785-fbfb9c?p=8866) |\n| 定位 | 杰克・特劳特/阿尔・里斯 | [下载](https://url89.ctfile.com/f/31084289-1357007803-8a849c?p=8866) |\n| 影响力 | 罗伯特・西奥迪尼 | [下载](https://url89.ctfile.com/f/31084289-1357007329-38e7a9?p=8866) |\n| 海底捞你学不会 | 黄铁鹰 | [下载](https://url89.ctfile.com/f/31084289-1357007323-db7bff?p=8866) |\n| 跨越鸿沟：颠覆性产品营销圣经 | 杰弗里・摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357007269-3c5543?p=8866) |\n| 商战 | 杰克・特劳特 / 阿尔・里斯  | [下载](https://url89.ctfile.com/f/31084289-1357007248-da1892?p=8866) |\n| 什么是战略 | 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357007155-4c1496?p=8866) |\n| 22条商规 | 艾・里斯 / 杰克・特劳特 | [下载](https://url89.ctfile.com/f/31084289-1357007092-d09c69?p=8866) |\n| 疯传：让你的产品、思想、行为像病毒一样入侵 | 乔纳・伯杰 | [下载](https://url89.ctfile.com/f/31084289-1357007077-d77b22?p=8866) |\n| 史玉柱自述：我的营销心得 | 优米网 | [下载](https://url89.ctfile.com/f/31084289-1357005712-e83c11?p=8866) |\n| 写作，打造个人IP，成就企业品牌 | 陈志红 | [下载](https://url89.ctfile.com/f/31084289-1357004692-21657a?p=8866) |\n"
  },
  {
    "path": "md/葡萄牙.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 葡萄牙\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 修道院纪事 | 若泽・萨拉马戈 | [下载](https://url89.ctfile.com/f/31084289-1357032682-f9c457?p=8866) |\n| 征服者：葡萄牙帝国崛起 | 罗杰・克劳利 | [下载](https://url89.ctfile.com/f/31084289-1357018390-117462?p=8866) |\n"
  },
  {
    "path": "md/葡萄酒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 葡萄酒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 推开红酒的门 | 王胜寒 | [下载](https://url89.ctfile.com/f/31084289-1375502554-c90c21?p=8866) |\n| 把这瓶开了！ | 玛德琳・帕克特/贾斯汀琳・海默克 | [下载](https://url89.ctfile.com/f/31084289-1357015426-ae6a95?p=8866) |\n"
  },
  {
    "path": "md/蒋介石.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 蒋介石\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 从大历史的角度读蒋介石日记 | 黄仁宇 | [下载](https://url89.ctfile.com/f/31084289-1357007581-4cf0f0?p=8866) |\n| 败因：蒋介石为什么败退台湾？ | 武更斌 | [下载](https://url89.ctfile.com/f/31084289-1357006501-a3058a?p=8866) |\n"
  },
  {
    "path": "md/蒙元史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 蒙元史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 忽必烈的挑战 | 杉山正明 | [下载](https://url89.ctfile.com/f/31084289-1357035727-8fa704?p=8866) |\n| 铁血蒙元 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357023403-367a50?p=8866) |\n"
  },
  {
    "path": "md/蒙古.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 蒙古\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 规训、惩罚与征服 | 周思成 | [下载](https://url89.ctfile.com/f/31084289-1375503931-6e6be2?p=8866) |\n| 隳三都 | 周思成 | [下载](https://url89.ctfile.com/f/31084289-1375507117-ec7ad5?p=8866) |\n| 蒙古帝国的世界征服 | 约西姆・巴克汉森 | [下载](https://url89.ctfile.com/f/31084289-1375512010-b9109b?p=8866) |\n| 蒙古历史拼图 | 邹进 | [下载](https://url89.ctfile.com/f/31084289-1356984655-a06873?p=8866) |\n| 游牧民的世界史（修订版） | 杉山正明 | [下载](https://url89.ctfile.com/f/31084289-1356982516-cdf7bc?p=8866) |\n| 蒙古帝国中亚征服史 | G. D.古拉提 | [下载](https://url89.ctfile.com/f/31084289-1357053502-bdd0ab?p=8866) |\n| 黄金家族的最后一个王爷 | 朱文楚 | [下载](https://url89.ctfile.com/f/31084289-1357048684-db805b?p=8866) |\n| 蒙古帝国 | 易强 | [下载](https://url89.ctfile.com/f/31084289-1357035415-04db3d?p=8866) |\n| Genghis Khan and the Making of the Modern World | Jack Weatherford | [下载](https://url89.ctfile.com/f/31084289-1357022176-fe3719?p=8866) |\n| 世界历史上的蒙古征服 | 梅天穆 | [下载](https://url89.ctfile.com/f/31084289-1357020139-2566c0?p=8866) |\n| 活着就为征服世界 | 勒内・格鲁塞 | [下载](https://url89.ctfile.com/f/31084289-1357005283-b48167?p=8866) |\n"
  },
  {
    "path": "md/蒙田.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 蒙田\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 阅读蒙田，是为了生活 | 萨拉・贝克韦尔 | [下载](https://url89.ctfile.com/f/31084289-1357030561-92e0d8?p=8866) |\n"
  },
  {
    "path": "md/蒸汽朋克.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 蒸汽朋克\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 利维坦号战记（套装共4册） | 斯科特・维斯特菲尔德/基斯・汤普森 | [下载](https://url89.ctfile.com/f/31084289-1357033564-579b0d?p=8866) |\n"
  },
  {
    "path": "md/虚构.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 虚构\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 满是空虚之物 | 阿伏伽德六 | [下载](https://url89.ctfile.com/f/31084289-1375511062-e94297?p=8866) |\n| 佛兰德镜子 | dome | [下载](https://url89.ctfile.com/f/31084289-1357044964-66fcfd?p=8866) |\n"
  },
  {
    "path": "md/蜡烛图.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 蜡烛图\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 日本蜡烛图技术新解 | 史蒂夫・尼森 | [下载](https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866) |\n| 蜡烛图精解（原书第3版） | 格里高里・莫里斯等 | [下载](https://url89.ctfile.com/f/31084289-1357040866-f876f5?p=8866) |\n"
  },
  {
    "path": "md/蝙蝠侠.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 蝙蝠侠\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 蝙蝠侠手记：超人类绝密档案 | S.D.佩里等 | [下载](https://url89.ctfile.com/f/31084289-1356985720-975708?p=8866) |\n"
  },
  {
    "path": "md/行为.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 行为\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 刻意观察 | 朱建国 | [下载](https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866) |\n| 欲罢不能：刷屏时代如何摆脱行为上瘾 | 亚当・阿尔特 | [下载](https://url89.ctfile.com/f/31084289-1357019824-1b7ec7?p=8866) |\n| 行为心理学 | 约翰・华生 | [下载](https://url89.ctfile.com/f/31084289-1357016383-2e302b?p=8866) |\n| 怪诞关系学 | 亚当・加林斯基/马利斯・施韦泽 | [下载](https://url89.ctfile.com/f/31084289-1357015357-1b1766?p=8866) |\n| 微习惯 | 斯蒂芬・盖斯 | [下载](https://url89.ctfile.com/f/31084289-1357012534-4af2f0?p=8866) |\n| 不诚实的诚实真相 | 丹・艾瑞里 | [下载](https://url89.ctfile.com/f/31084289-1357009519-879ad6?p=8866) |\n| 害羞心理学 | 菲利普・津巴多 | [下载](https://url89.ctfile.com/f/31084289-1357009510-378800?p=8866) |\n"
  },
  {
    "path": "md/行为学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 行为学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 怪诞行为学6 | 丹・艾瑞里/马特・R.特劳尔 | [下载](https://url89.ctfile.com/f/31084289-1357048546-c8fffc?p=8866) |\n"
  },
  {
    "path": "md/表达.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 表达\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| TED说话的力量 | 阿卡什·P.卡里亚 | [下载](https://url89.ctfile.com/f/31084289-1356986599-210179?p=8866) |\n| 如何做一场精彩的演讲 | 琼・戴兹 | [下载](https://url89.ctfile.com/f/31084289-1356984253-cb19a9?p=8866) |\n| 即兴演讲 | 朱迪思・汉弗莱 | [下载](https://url89.ctfile.com/f/31084289-1357050613-87d762?p=8866) |\n"
  },
  {
    "path": "md/西周.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 西周\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西周的灭亡（增订本） | 李峰 | [下载](https://url89.ctfile.com/f/31084289-1356991447-39ed27?p=8866) |\n| 穆天子传（全本全注全译） | 高永旺译注 | [下载](https://url89.ctfile.com/f/31084289-1356982456-b023c2?p=8866) |\n"
  },
  {
    "path": "md/西域.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 西域\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西域余闻 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357049209-37f50e?p=8866) |\n| 撒马尔罕 | 阿敏・马卢夫 | [下载](https://url89.ctfile.com/f/31084289-1357042624-8ffd59?p=8866) |\n"
  },
  {
    "path": "md/西方.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 西方\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 外研社双语读库：西方文学社科经典大套装（套装194本） | 劳伦斯等 | [下载](https://url89.ctfile.com/f/31084289-1375503094-de74e2?p=8866) |\n| 外研社双语读库·社会文化书系（套装共61本） | 杰罗姆等 | [下载](https://url89.ctfile.com/f/31084289-1375503208-381270?p=8866) |\n| 德里达（牛津通识读本） | 西蒙・格伦迪宁 | [下载](https://url89.ctfile.com/f/31084289-1357053589-5e0eec?p=8866) |\n| 黑格尔的精神现象学 | 马丁・海德格尔 | [下载](https://url89.ctfile.com/f/31084289-1357052602-06e6fe?p=8866) |\n| 《荒岛》及其他文本 | 吉尔・德勒兹/大卫・拉普雅德 | [下载](https://url89.ctfile.com/f/31084289-1357049398-c17314?p=8866) |\n| 哲学史讲演录（4卷） | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044793-12e1b9?p=8866) |\n| 现代西方哲学讲演集 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044244-278ff8?p=8866) |\n| 西方哲学常识 | 菲利普・斯托克斯 | [下载](https://url89.ctfile.com/f/31084289-1357032880-081e2d?p=8866) |\n| 一神论的影子 | 赵汀阳/阿兰・乐比雄 | [下载](https://url89.ctfile.com/f/31084289-1357031875-0e2059?p=8866) |\n| 被诅咒的部分 | 乔治・巴塔耶 | [下载](https://url89.ctfile.com/f/31084289-1357031845-690bc7?p=8866) |\n| 打开：周濂的100堂西方哲学课 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1357030471-e1cad7?p=8866) |\n| 极简西方哲学史 | 杰瑞米・斯坦格鲁/詹姆斯・加维 | [下载](https://url89.ctfile.com/f/31084289-1357024156-e74da6?p=8866) |\n| 理性、美德和灵魂的声音 | 西塞罗 | [下载](https://url89.ctfile.com/f/31084289-1357023961-69cf76?p=8866) |\n| 非理性的人（译文经典） | 威廉・巴雷特 | [下载](https://url89.ctfile.com/f/31084289-1357022101-c96945?p=8866) |\n| 哲学的快乐 | 罗伯特・所罗门 | [下载](https://url89.ctfile.com/f/31084289-1357019143-2bee90?p=8866) |\n| 名家名译·大师人生智慧精华丛书 | 柏拉图/叔本华等 | [下载](https://url89.ctfile.com/f/31084289-1357018189-56ffc0?p=8866) |\n| 沙娜拉之剑（全3册） | 特里・布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357014520-838f52?p=8866) |\n| 西方建筑小史 | 陈杰 | [下载](https://url89.ctfile.com/f/31084289-1357013878-1b5dea?p=8866) |\n| 西方哲学史（套装共2册） | 弗兰克・梯利 | [下载](https://url89.ctfile.com/f/31084289-1357009582-0a04b7?p=8866) |\n| 罗马史 | 特奥多尔・蒙森 | [下载](https://url89.ctfile.com/f/31084289-1357007344-8c8f3f?p=8866) |\n"
  },
  {
    "path": "md/西游记.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 西游记\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西游记（李卓吾批评本） | 吴承恩 | [下载](https://url89.ctfile.com/f/31084289-1357026781-f18846?p=8866) |\n| 煮酒探西游 | 吴闲云 | [下载](https://url89.ctfile.com/f/31084289-1357020517-dfd08e?p=8866) |\n"
  },
  {
    "path": "md/西班牙.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 西班牙\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 藏着：一个西班牙人的33年内战人生 | 罗纳德・弗雷泽 | [下载](https://url89.ctfile.com/f/31084289-1357001866-8ba183?p=8866) |\n| 塞万提斯全集（全八卷） | 米格尔・德・塞万提斯・萨阿维德拉 | [下载](https://url89.ctfile.com/f/31084289-1356988813-dff794?p=8866) |\n| 西班牙史（贝克知识丛书） | 瓦尔特·L.伯尔奈克 | [下载](https://url89.ctfile.com/f/31084289-1357051834-bf20ec?p=8866) |\n| 西班牙无敌舰队 | 加勒・马丁利 | [下载](https://url89.ctfile.com/f/31084289-1357046215-d2a105?p=8866) |\n| 巴黎仗剑寻书记 | 阿图罗・佩雷斯-雷维特 | [下载](https://url89.ctfile.com/f/31084289-1357035358-e49843?p=8866) |\n| 大仲马俱乐部 | 阿图罗・佩雷斯-雷维特 | [下载](https://url89.ctfile.com/f/31084289-1357035409-35f8e0?p=8866) |\n| 伊莎贝拉 | 克斯汀・唐尼 | [下载](https://url89.ctfile.com/f/31084289-1357032568-066b02?p=8866) |\n| 希特勒的影子帝国 | 皮耶尔保罗・巴维里 | [下载](https://url89.ctfile.com/f/31084289-1357027030-476a72?p=8866) |\n| 西班牙内战：真相、疯狂与死亡 | 阿曼达・维尔 | [下载](https://url89.ctfile.com/f/31084289-1357020454-d9c2eb?p=8866) |\n| 沉吟（短经典） | 梅尔塞・罗多雷达 | [下载](https://url89.ctfile.com/f/31084289-1357012465-2aeabb?p=8866) |\n| 河流之声 | 乔莫・卡夫雷 | [下载](https://url89.ctfile.com/f/31084289-1357008703-83cb6f?p=8866) |\n"
  },
  {
    "path": "md/西藏.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 西藏\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 西藏，西藏！ | 卡布 | [下载](https://url89.ctfile.com/f/31084289-1375496611-f0aac2?p=8866) |\n| 乌金的牙齿 | 万玛才旦 | [下载](https://url89.ctfile.com/f/31084289-1357048714-87e33e?p=8866) |\n| 藏传佛教极简史 | 德昆 | [下载](https://url89.ctfile.com/f/31084289-1357030657-b2ba04?p=8866) |\n| 西藏，不止旅行 | 周硚 | [下载](https://url89.ctfile.com/f/31084289-1357029412-ff503b?p=8866) |\n| 尘埃落定（十五周年纪念版） | 阿来 | [下载](https://url89.ctfile.com/f/31084289-1357026241-e45527?p=8866) |\n| 下一站，西藏 | 山小 | [下载](https://url89.ctfile.com/f/31084289-1357022398-2d23fe?p=8866) |\n| 冈底斯遗书 | 陈庆港 | [下载](https://url89.ctfile.com/f/31084289-1357011769-d9d5d5?p=8866) |\n| 西藏，改变一生的旅行 | 尼玛达娃 | [下载](https://url89.ctfile.com/f/31084289-1357011040-c11599?p=8866) |\n| 西藏生死书 | 索甲仁波切 | [下载](https://url89.ctfile.com/f/31084289-1357006984-c0ba57?p=8866) |\n| 艽野尘梦 | 陈渠珍 | [下载](https://url89.ctfile.com/f/31084289-1357006390-33e509?p=8866) |\n| 藏地密码（珍藏版大全集） | 何马 | [下载](https://url89.ctfile.com/f/31084289-1357005634-cbd5e4?p=8866) |\n"
  },
  {
    "path": "md/观察.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 观察\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 刻意观察 | 朱建国 | [下载](https://url89.ctfile.com/f/31084289-1357045936-bff944?p=8866) |\n| 洞察：精确观察和有效沟通的艺术 | 艾米・赫曼 | [下载](https://url89.ctfile.com/f/31084289-1357019857-7557d2?p=8866) |\n"
  },
  {
    "path": "md/规划.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 规划\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 规划最好的一年 | 迈克尔・海亚特 | [下载](https://url89.ctfile.com/f/31084289-1375512514-02047a?p=8866) |\n| 新城市科学 | 迈克尔・巴蒂 | [下载](https://url89.ctfile.com/f/31084289-1356995401-9787ba?p=8866) |\n| 职业通道 | 吴静 | [下载](https://url89.ctfile.com/f/31084289-1357054534-7659b9?p=8866) |\n| 这才是我要的工作 | 克里斯・吉耶博 | [下载](https://url89.ctfile.com/f/31084289-1357054237-ff0ccf?p=8866) |\n| 终身学习：10个你必须掌握的未来生存法则 | 丹・苏利文/凯瑟琳・野村 | [下载](https://url89.ctfile.com/f/31084289-1357051288-a97663?p=8866) |\n| 转行：发现一个未知的自己 | 埃米尼亚・伊瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357029235-6fc0c9?p=8866) |\n| 30年后，你拿什么养活自己？ | 高得诚/郑成镇/崔秉熙  | [下载](https://url89.ctfile.com/f/31084289-1357017421-191d50?p=8866) |\n| 远见：如何规划职业生涯3大阶段 | 布赖恩・费瑟斯通豪 | [下载](https://url89.ctfile.com/f/31084289-1357017316-d0ac6b?p=8866) |\n| 你的生命有什么可能 | 古典 | [下载](https://url89.ctfile.com/f/31084289-1357010275-448eff?p=8866) |\n"
  },
  {
    "path": "md/视频.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 视频\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 好视频一秒抓住人心 | 高桥弘树 | [下载](https://url89.ctfile.com/f/31084289-1375511719-eb94ac?p=8866) |\n| 刷屏 | 凯文・阿洛卡 | [下载](https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866) |\n"
  },
  {
    "path": "md/解密.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 解密\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 解密 | 麦家 | [下载](https://url89.ctfile.com/f/31084289-1357033438-7ed22e?p=8866) |\n| 阿桑奇自传：不能不说的秘密 | 朱利安・阿桑奇 | [下载](https://url89.ctfile.com/f/31084289-1357009390-bd0480?p=8866) |\n| 维基解密：谁授权美国统管世界 | 苏言/贺濒 | [下载](https://url89.ctfile.com/f/31084289-1357006888-73eb56?p=8866) |\n"
  },
  {
    "path": "md/言情.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 言情\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 不知东方既白 | 橘子宸 | [下载](链接未找到) |\n| 将门虎女（全2册） | 姽婳莲翩 | [下载](https://url89.ctfile.com/f/31084289-1357050739-cf2b32?p=8866) |\n| 第84封情书 | 骆淑景 | [下载](https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866) |\n| 天下倾歌（共2册） | 青林之初 | [下载](https://url89.ctfile.com/f/31084289-1357045369-5592ba?p=8866) |\n| 竹书谣（共4册） | 文简子 | [下载](https://url89.ctfile.com/f/31084289-1357045303-d67fa4?p=8866) |\n| 鹤唳华亭 | 雪满梁园 | [下载](https://url89.ctfile.com/f/31084289-1357045174-9ca4ca?p=8866) |\n| 张爱玲作品精选（共8册） | 张爱玲 | [下载](https://url89.ctfile.com/f/31084289-1357044931-653d40?p=8866) |\n| 为你打开时间的门 | 皎皎 | [下载](https://url89.ctfile.com/f/31084289-1357039795-12f145?p=8866) |\n| 晋江大神Priest经典作品合集（套装10册） | Priest | [下载](https://url89.ctfile.com/f/31084289-1357035787-47378b?p=8866) |\n| 迷雾围城（全两册） | 匪我思存 | [下载](https://url89.ctfile.com/f/31084289-1357035541-d08688?p=8866) |\n| 有匪（套装共4册） | Priest | [下载](https://url89.ctfile.com/f/31084289-1357035424-611fd0?p=8866) |\n| 我与谎言为邻 | 米娅 | [下载](https://url89.ctfile.com/f/31084289-1357035154-f86a21?p=8866) |\n| 篇篇十万+：朋友圈的戎马江湖（套装共11册） | 咪蒙/张小娴等 | [下载](https://url89.ctfile.com/f/31084289-1357034755-6f1025?p=8866) |\n| 密室困游鱼 | 墨宝非宝 | [下载](https://url89.ctfile.com/f/31084289-1357032955-deb293?p=8866) |\n| 花雨枪 | 夏生 | [下载](https://url89.ctfile.com/f/31084289-1357032712-d11eee?p=8866) |\n| 完美婚姻 | 米歇尔・里奇曼 | [下载](https://url89.ctfile.com/f/31084289-1357032565-223463?p=8866) |\n| 十二年，故人戏（全2册） | 墨宝非宝 | [下载](https://url89.ctfile.com/f/31084289-1357032544-a3bec7?p=8866) |\n| 蜜汁炖鱿鱼 | 墨宝非宝 | [下载](https://url89.ctfile.com/f/31084289-1357032229-530e18?p=8866) |\n| 夏目漱石四部曲 | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1357031974-779200?p=8866) |\n| 劳伦斯禁书三部曲（全新修订版） | D.H.劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357031536-958b1b?p=8866) |\n| 天子谋 | 青垚 | [下载](https://url89.ctfile.com/f/31084289-1357031365-98380f?p=8866) |\n| 犹是深闺梦里人 | 井上三尺 | [下载](https://url89.ctfile.com/f/31084289-1357030462-ce1a44?p=8866) |\n| 佳偶都绝色 | 李李翔 | [下载](https://url89.ctfile.com/f/31084289-1357027762-c1b434?p=8866) |\n| 风起青萍 | 皎皎 | [下载](https://url89.ctfile.com/f/31084289-1357027756-c0d52f?p=8866) |\n| 郎骑竹马来 | 半夏 | [下载](链接未找到) |\n| 楠木向北 | 凉风薄暮 | [下载](链接未找到) |\n| 若离于爱 | 青衫落拓 | [下载](https://url89.ctfile.com/f/31084289-1357027753-c0f9e8?p=8866) |\n| 独家记忆 | 木浮生 | [下载](https://url89.ctfile.com/f/31084289-1357027354-a1ded4?p=8866) |\n| 时擦 | 笙离 | [下载](https://url89.ctfile.com/f/31084289-1357027348-1f5ea8?p=8866) |\n| 耳洞 | 笙离 | [下载](https://url89.ctfile.com/f/31084289-1357027345-adc729?p=8866) |\n| 情锁（十六周年修订典藏版） | 藤萍 | [下载](https://url89.ctfile.com/f/31084289-1357027204-70c319?p=8866) |\n| 医见钟情 | 叶紫 | [下载](https://url89.ctfile.com/f/31084289-1357023367-9a9902?p=8866) |\n| 温暖的弦（套装共2册） | 安宁 | [下载](https://url89.ctfile.com/f/31084289-1357019809-be0128?p=8866) |\n| 打火机与公主裙·荒草园 | Twentine | [下载](https://url89.ctfile.com/f/31084289-1357011664-75c735?p=8866) |\n| 打火机与公主裙·长明灯 | Twentine | [下载](https://url89.ctfile.com/f/31084289-1357011661-c56c0c?p=8866) |\n| 三生三世枕上书 | 唐七公子 | [下载](https://url89.ctfile.com/f/31084289-1357011499-16f489?p=8866) |\n| 三生三世枕上书·终篇 | 唐七公子 | [下载](https://url89.ctfile.com/f/31084289-1357011490-f0b38c?p=8866) |\n| 三生三世十里桃花 | 唐七公子 | [下载](https://url89.ctfile.com/f/31084289-1357007647-923bd8?p=8866) |\n| 我也会爱上别人的 | 自由极光 | [下载](https://url89.ctfile.com/f/31084289-1357006873-68fdf4?p=8866) |\n| 沥川往事（全二册新版） | 施定柔 | [下载](https://url89.ctfile.com/f/31084289-1357006399-ae0df1?p=8866) |\n"
  },
  {
    "path": "md/计算机.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 计算机\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 硅谷之火（第3版） | 迈克尔・斯韦因/保罗・弗赖伯格 | [下载](https://url89.ctfile.com/f/31084289-1375513453-ee5563?p=8866) |\n| 光刻巨人 | 瑞尼・雷吉梅克 | [下载](https://url89.ctfile.com/f/31084289-1357000201-03170e?p=8866) |\n| 程序员编程语言经典合集（共5册） | 兰斯・尼塞斯等 | [下载](https://url89.ctfile.com/f/31084289-1356996589-3e3123?p=8866) |\n| 智能机器如何思考 | 肖恩・格里什 | [下载](https://url89.ctfile.com/f/31084289-1356983818-77750b?p=8866) |\n| Excel 2019公式、函数应用大全 | 张明真 | [下载](https://url89.ctfile.com/f/31084289-1357053154-079bbd?p=8866) |\n| 动手学深度学习 | 阿斯顿・张等 | [下载](https://url89.ctfile.com/f/31084289-1357050436-ecd1ba?p=8866) |\n| Python高性能编程 | 戈雷利克/欧日沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049494-9a6e10?p=8866) |\n| 科技与和平 | 皮埃罗・斯加鲁菲 | [下载](https://url89.ctfile.com/f/31084289-1357047055-d0635a?p=8866) |\n| 改变未来的九大算法 | 约翰・麦考密克 | [下载](https://url89.ctfile.com/f/31084289-1357042648-3bcb13?p=8866) |\n| 数字人文 | 安妮·博迪克等 | [下载](https://url89.ctfile.com/f/31084289-1357032175-ecded2?p=8866) |\n| 人工智能的进化 | 赫克托・莱韦斯克 | [下载](https://url89.ctfile.com/f/31084289-1357028998-aff30f?p=8866) |\n| 零基础读懂云计算 | 纳扬・鲁帕拉里 | [下载](https://url89.ctfile.com/f/31084289-1357028467-7f62ed?p=8866) |\n| 香农传 | 吉米・索尼 | [下载](https://url89.ctfile.com/f/31084289-1357027774-7345c1?p=8866) |\n| 密码朋克 | 朱利安・阿桑奇 | [下载](https://url89.ctfile.com/f/31084289-1357026898-48f8de?p=8866) |\n| 算法的乐趣 | 王晓华 | [下载](https://url89.ctfile.com/f/31084289-1357023505-bb7066?p=8866) |\n| 用Python写网络爬虫（第2版） | Katharine Jarmul | [下载](https://url89.ctfile.com/f/31084289-1357023493-43dbb4?p=8866) |\n| 鸟哥的Linux私房菜：基础学习篇（第三版） | 鸟哥 | [下载](https://url89.ctfile.com/f/31084289-1357022668-37c4df?p=8866) |\n| 鸟哥的Linux私房菜：服务器架设篇（第三版） | 鸟哥 | [下载](https://url89.ctfile.com/f/31084289-1357022671-598d7f?p=8866) |\n| 推荐系统实践 | 项亮 | [下载](https://url89.ctfile.com/f/31084289-1357022278-08bc44?p=8866) |\n| 精通正则表达式：第3版 | Jeffrey E·F·Friedl | [下载](https://url89.ctfile.com/f/31084289-1357022263-9d871d?p=8866) |\n| 网络是怎样连接的 | 户根勤 | [下载](https://url89.ctfile.com/f/31084289-1357021582-044470?p=8866) |\n| 从Python开始学编程 | Vamei | [下载](https://url89.ctfile.com/f/31084289-1357021285-a8babf?p=8866) |\n| Java程序员修炼之道 | Benjamin J. Evans/Martijn Verburg | [下载](https://url89.ctfile.com/f/31084289-1357021057-91cde2?p=8866) |\n| Vim实用技巧 | Drew Neil | [下载](https://url89.ctfile.com/f/31084289-1357020997-2ff693?p=8866) |\n| Linux就该这么学 | 刘遄 | [下载](https://url89.ctfile.com/f/31084289-1357020865-7cfd40?p=8866) |\n| Spring Cloud微服务实战 | 翟永超 | [下载](https://url89.ctfile.com/f/31084289-1357020250-1e5ad7?p=8866) |\n| 世界是数字的 | Brian W·Kernighan | [下载](https://url89.ctfile.com/f/31084289-1357019173-51d646?p=8866) |\n| Kubernetes实战（套装共2册） | 吴龙辉等 | [下载](https://url89.ctfile.com/f/31084289-1357019200-6c0097?p=8866) |\n| 计算广告 | 刘鹏/王超 | [下载](https://url89.ctfile.com/f/31084289-1357019167-5a0ed4?p=8866) |\n| GitHub入门与实践 | 大塚弘记 | [下载](https://url89.ctfile.com/f/31084289-1357018630-3c62a1?p=8866) |\n| Python核心编程（第3版） | Wesley Chun | [下载](https://url89.ctfile.com/f/31084289-1357018627-9a3458?p=8866) |\n| 大教堂与集市 | Eric S. Raymond | [下载](https://url89.ctfile.com/f/31084289-1357017643-c49df8?p=8866) |\n| Python编程：从入门到实践 | 埃里克・马瑟斯 | [下载](https://url89.ctfile.com/f/31084289-1357015693-bd5922?p=8866) |\n| 设计模式之禅（第2版） | 秦小波 | [下载](https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866) |\n| CSS禅意花园（修订版） | Dave Shea/Mollv E | [下载](https://url89.ctfile.com/f/31084289-1357014547-fc72e6?p=8866) |\n| 深度学习 | 伊恩・古德费洛/约书亚・本吉奥 | [下载](https://url89.ctfile.com/f/31084289-1357013449-ede60c?p=8866) |\n| 第一本Docker书（修订版） | 詹姆斯・特恩布尔 | [下载](https://url89.ctfile.com/f/31084289-1357013125-e87194?p=8866) |\n| 终极算法 | 佩德罗・多明戈斯 | [下载](https://url89.ctfile.com/f/31084289-1357012948-ee53b5?p=8866) |\n| 图解HTTP | 上野宣 | [下载](https://url89.ctfile.com/f/31084289-1357012594-bc33fd?p=8866) |\n| iOS编程（第4版） | Christian Keur/Aaron Hillegass | [下载](https://url89.ctfile.com/f/31084289-1357011823-73a7cc?p=8866) |\n| 算法图解 | Aditya Bhargava | [下载](https://url89.ctfile.com/f/31084289-1357011325-fbc676?p=8866) |\n| Python编程快速上手 | Al Sweigart | [下载](https://url89.ctfile.com/f/31084289-1357010017-8408ea?p=8866) |\n| 算法神探 | 杰瑞米・库比卡 | [下载](https://url89.ctfile.com/f/31084289-1357009255-fb075f?p=8866) |\n| 区块链 | 长铗/韩锋等 | [下载](https://url89.ctfile.com/f/31084289-1357008793-fe152a?p=8866) |\n| Python核心编程（第二版） | 丘恩 | [下载](https://url89.ctfile.com/f/31084289-1357005898-3c4238?p=8866) |\n| 父与子的编程之旅 | Warren Sande | [下载](https://url89.ctfile.com/f/31084289-1357005628-3e1260?p=8866) |\n| 别怕，Excel VBA其实很简单 | 罗国发 | [下载](https://url89.ctfile.com/f/31084289-1357005424-36e2bc?p=8866) |\n"
  },
  {
    "path": "md/认知.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 认知\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 破圈：如何突破认知局限并实现终身成长 | 顾及 | [下载](https://url89.ctfile.com/f/31084289-1375497148-fa747f?p=8866) |\n| 我要做人生的甲方 | 雾满拦江 | [下载](https://url89.ctfile.com/f/31084289-1356987070-1ac86a?p=8866) |\n| 人类思维的自然史 | 迈克尔・托马塞洛 | [下载](https://url89.ctfile.com/f/31084289-1356983137-5c8214?p=8866) |\n| 真相与错觉 | 塔莎・欧里希 | [下载](https://url89.ctfile.com/f/31084289-1357053745-5f95d8?p=8866) |\n| 学会提问（原书第11版） | 尼尔・布朗/斯图尔特・基利 | [下载](https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866) |\n| 学习天性 | 小沼势矢 | [下载](https://url89.ctfile.com/f/31084289-1357051951-468fab?p=8866) |\n| 跨界学习 | 王烁 | [下载](https://url89.ctfile.com/f/31084289-1357051273-53c63f?p=8866) |\n| 弥散的心智 | 里卡多・曼佐蒂 | [下载](https://url89.ctfile.com/f/31084289-1357036519-b91ce8?p=8866) |\n| 深度预测 | 理查德·A·克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357033822-1e355a?p=8866) |\n| 心智 | 约翰・布罗克曼  | [下载](https://url89.ctfile.com/f/31084289-1357031050-2272eb?p=8866) |\n| 认知尺度 | 魏坤琳 | [下载](https://url89.ctfile.com/f/31084289-1357030843-5db192?p=8866) |\n| 认知突围：做复杂时代的明白人 | 蔡垒磊 | [下载](https://url89.ctfile.com/f/31084289-1357027300-3d7269?p=8866) |\n| 认知迭代 | 卡罗琳・威廉姆斯 | [下载](https://url89.ctfile.com/f/31084289-1357026163-614e24?p=8866) |\n| 当自我来敲门 | 安东尼奥・达马西奥 | [下载](https://url89.ctfile.com/f/31084289-1357017889-ef3bdf?p=8866) |\n"
  },
  {
    "path": "md/记录.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 记录\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 危险地活着 | 汉斯・舒茨 | [下载](https://url89.ctfile.com/f/31084289-1357030033-74b617?p=8866) |\n| 敢问路在何方 | 杨洁 | [下载](https://url89.ctfile.com/f/31084289-1357012768-569107?p=8866) |\n"
  },
  {
    "path": "md/记忆.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 记忆\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 逢考必过 | 布里特・本尼特 | [下载](https://url89.ctfile.com/f/31084289-1375491946-02547b?p=8866) |\n| 记忆宫殿 | 石伟华 | [下载](https://url89.ctfile.com/f/31084289-1357000522-f56396?p=8866) |\n| 间谍学校 | 丹尼斯・布金 | [下载](https://url89.ctfile.com/f/31084289-1357000366-6508f7?p=8866) |\n| 如何高效记忆（原书第2版） | 肯尼思・希格比 | [下载](https://url89.ctfile.com/f/31084289-1356991930-4a8ea6?p=8866) |\n| 提高记忆的100种方法 | 王小军 | [下载](https://url89.ctfile.com/f/31084289-1356985825-3dd88d?p=8866) |\n| 你不是记性差，只是没找对方法 | 池田义博 | [下载](https://url89.ctfile.com/f/31084289-1357051291-a090b6?p=8866) |\n| 超级记忆 | 卢龙斌 | [下载](https://url89.ctfile.com/f/31084289-1357042054-d702f7?p=8866) |\n| 终身失忆人 | 卢克・迪特里希 | [下载](https://url89.ctfile.com/f/31084289-1357024192-0076c9?p=8866) |\n| 记忆魔法师 | 袁文魁 | [下载](https://url89.ctfile.com/f/31084289-1357022029-89926d?p=8866) |\n| 如何记忆 | 罗恩・弗莱 | [下载](https://url89.ctfile.com/f/31084289-1357020949-e41027?p=8866) |\n| 52周记忆魔法实战手册 | 多米尼克・奥布莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357004722-bce77e?p=8866) |\n| 我最想要的记忆魔法书 | 多米尼克・奥布莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357004725-2e954b?p=8866) |\n"
  },
  {
    "path": "md/论语.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 论语\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 论语密码 | 冶文彪 | [下载](https://url89.ctfile.com/f/31084289-1375493707-543fdf?p=8866) |\n| 樊登讲论语：先进 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1375502053-71d6f8?p=8866) |\n| 论语今读（增订版） | 李泽厚 | [下载](https://url89.ctfile.com/f/31084289-1357051648-6e8071?p=8866) |\n| 论语别裁 | 南怀瑾 | [下载](https://url89.ctfile.com/f/31084289-1357049293-16753b?p=8866) |\n| 华杉讲透论语 | 华杉 | [下载](https://url89.ctfile.com/f/31084289-1357017736-fae163?p=8866) |\n| 四书讲义（中华国学文库） | 吕留良撰 | [下载](https://url89.ctfile.com/f/31084289-1357012750-bf36f4?p=8866) |\n"
  },
  {
    "path": "md/讽刺.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 讽刺\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 离婚（果麦经典） | 老舍 | [下载](https://url89.ctfile.com/f/31084289-1357047961-f92bad?p=8866) |\n| 堂吉诃德（名著名译丛书） | 塞万提斯 | [下载](https://url89.ctfile.com/f/31084289-1357035391-f2f31c?p=8866) |\n| 羊脂球（读客经典） | 莫泊桑 | [下载](https://url89.ctfile.com/f/31084289-1357028713-de3407?p=8866) |\n| 百万英镑（译文名著精选） | 马克・吐温 | [下载](https://url89.ctfile.com/f/31084289-1357005322-1058e0?p=8866) |\n"
  },
  {
    "path": "md/设计.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 设计\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 平面设计200年 | 史蒂文・海勒/西摩・切瓦斯特 | [下载](https://url89.ctfile.com/f/31084289-1375510684-c22f94?p=8866) |\n| 创意选择 | 肯・科钦达 | [下载](https://url89.ctfile.com/f/31084289-1356997831-298155?p=8866) |\n| 当我们阅读时，我们看到了什么 | 彼得・门德尔桑德 | [下载](https://url89.ctfile.com/f/31084289-1356985468-47589b?p=8866) |\n| 书籍形态艺术 | 善本出版有限公司 | [下载](https://url89.ctfile.com/f/31084289-1356985075-19633a?p=8866) |\n| 造境记 | 曾仁臻 | [下载](https://url89.ctfile.com/f/31084289-1357053064-3ec67e?p=8866) |\n| 结构是什么 | 詹姆斯・爱德华・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357049299-5d82f2?p=8866) |\n| 积极计算 | 拉斐尔·A.卡里罗等 | [下载](https://url89.ctfile.com/f/31084289-1357044517-85f26a?p=8866) |\n| 抽象城市 | 克里斯托夫・尼曼 | [下载](https://url89.ctfile.com/f/31084289-1357042765-2ad1c6?p=8866) |\n| 设计大师的商业课 | 戴维・舍温 | [下载](https://url89.ctfile.com/f/31084289-1357032451-89db4e?p=8866) |\n| Design Systems | Alla Kholmatova | [下载](https://url89.ctfile.com/f/31084289-1357031929-0301f2?p=8866) |\n| 奇点艺术 | 谭力勤 | [下载](https://url89.ctfile.com/f/31084289-1357031506-d46d94?p=8866) |\n| 知日18：设计力 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025413-980d01?p=8866) |\n| 精益设计（第2版） | Jeff Gothelf | [下载](https://url89.ctfile.com/f/31084289-1357024648-c2286e?p=8866) |\n| 苹果首席设计师：乔纳森传 | 利恩德・卡尼 | [下载](https://url89.ctfile.com/f/31084289-1357023160-8abd49?p=8866) |\n| 形式感+ | 晋小彦 | [下载](https://url89.ctfile.com/f/31084289-1357021165-06e7c5?p=8866) |\n| 设计心理学（全四册） | 唐纳德・A・诺曼 | [下载](https://url89.ctfile.com/f/31084289-1357016626-0875e7?p=8866) |\n| 设计模式之禅（第2版） | 秦小波 | [下载](https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866) |\n| 设计冲刺 | 杰克・纳普 | [下载](https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866) |\n"
  },
  {
    "path": "md/访谈.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 访谈\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 谈话录 | 王安忆/张新颖 | [下载](https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866) |\n| 把自己作为方法 | 项飙 | [下载](https://url89.ctfile.com/f/31084289-1357002262-18b150?p=8866) |\n| 鲁豫有约：说出你的故事（共5册） | 凤凰书品 | [下载](https://url89.ctfile.com/f/31084289-1357001527-9d2004?p=8866) |\n| 表演者言 | 电影频道《今日影评》栏目组 | [下载](https://url89.ctfile.com/f/31084289-1356999676-b4366a?p=8866) |\n"
  },
  {
    "path": "md/访谈录.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 访谈录\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 加西亚·马尔克斯访谈录 | 加西亚・马尔克斯/吉恩・贝尔-维亚达 | [下载](https://url89.ctfile.com/f/31084289-1357049599-516265?p=8866) |\n"
  },
  {
    "path": "md/证券.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 证券\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 格雷厄姆精解证券分析 | 杰森・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1375499647-43f62c?p=8866) |\n| 财报背后的投资机会 | 蒋豹 | [下载](https://url89.ctfile.com/f/31084289-1356994606-801049?p=8866) |\n| 证券分析（原书第6版） | 本杰明・格雷厄姆/戴维・多德 | [下载](https://url89.ctfile.com/f/31084289-1356987478-dcc809?p=8866) |\n| 全球证券投资经典译丛（共16卷） | 拉尔夫・艾略特等 | [下载](https://url89.ctfile.com/f/31084289-1357034941-5999f0?p=8866) |\n| 经济增长的迷雾 | 威廉・伊斯特利 | [下载](https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866) |\n| 战上海：决胜股市未来三十年 | 洪榕 | [下载](https://url89.ctfile.com/f/31084289-1357012420-375410?p=8866) |\n| 史丹•温斯坦称傲牛熊市的秘密（珍藏版） | 史丹·温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866) |\n| 股市真规则（第二版） | 帕特・多尔西 | [下载](https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866) |\n| 怎样选择成长股 | 菲利普·A·费舍 | [下载](https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866) |\n"
  },
  {
    "path": "md/评论.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 评论\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 大家小书大全套 | 朱自清等 | [下载](https://url89.ctfile.com/f/31084289-1357049512-6d2564?p=8866) |\n| 窥豹录 | 胡亮 | [下载](https://url89.ctfile.com/f/31084289-1357035628-c24e75?p=8866) |\n| 评论文集 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357035013-9a2b5c?p=8866) |\n"
  },
  {
    "path": "md/词曲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 词曲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 诗词里的趣事套装（全4册） | 王月亮/黄震/黄秀春 | [下载](https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866) |\n"
  },
  {
    "path": "md/词话.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 词话\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 词品（词系列） | 杨慎 | [下载](https://url89.ctfile.com/f/31084289-1357033549-efac50?p=8866) |\n| 白雨斋词话（词系列） | 陈廷焯 | [下载](https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866) |\n"
  },
  {
    "path": "md/词集.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 词集\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 晏殊词集·晏幾道词集（词系列） | 晏殊/晏几道 | [下载](https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866) |\n| 温庭筠词集·韦庄词集（词系列） | 温庭筠/韦庄 | [下载](https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866) |\n"
  },
  {
    "path": "md/译文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 译文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 周作人译文全集 | 周作人 | [下载](https://url89.ctfile.com/f/31084289-1357044202-ce9b41?p=8866) |\n| 奇石：来自东西方的报道 | 彼得·海斯勒  | [下载](https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866) |\n"
  },
  {
    "path": "md/诗学.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 诗学\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 空间的诗学（译文经典） | 加斯东・巴什拉 | [下载](https://url89.ctfile.com/f/31084289-1357039459-5fcf57?p=8866) |\n"
  },
  {
    "path": "md/诗歌.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 诗歌\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我的心迟到了：佩索阿情诗 | 费尔南多・佩索阿 | [下载](https://url89.ctfile.com/f/31084289-1375493809-0d4478?p=8866) |\n| 我将宇宙随身携带：佩索阿诗集 | 费尔南多・佩索阿 | [下载](https://url89.ctfile.com/f/31084289-1375493875-8ebc30?p=8866) |\n| 月球家族三部曲 | 伊恩・麦克唐纳 | [下载](https://url89.ctfile.com/f/31084289-1375497508-09b5df?p=8866) |\n| 宋元笔记小说大观（全35册） | 王应麟等 | [下载](https://url89.ctfile.com/f/31084289-1375498384-f7c5ec?p=8866) |\n| 神曲（全三册） | 但丁・阿利格耶里 | [下载](https://url89.ctfile.com/f/31084289-1375498975-8ae0b3?p=8866) |\n| 日本短诗套装（共5册） | 松尾芭蕉等 | [下载](https://url89.ctfile.com/f/31084289-1375500349-0632a1?p=8866) |\n| 沉默的经典诗歌译丛1（套装共4册） | 戴维・赫伯特・劳伦斯等 | [下载](https://url89.ctfile.com/f/31084289-1375500385-56b9bc?p=8866) |\n| 沉默的经典诗歌译丛2（套装共4册） | 露易丝・格丽克等 | [下载](https://url89.ctfile.com/f/31084289-1375500388-f84a0c?p=8866) |\n| 莱蒙托夫诗选（外国文学名著丛书） | 莱蒙托夫 | [下载](https://url89.ctfile.com/f/31084289-1375509073-d17c81?p=8866) |\n| 死亡赋格：保罗·策兰诗精选 | 保罗・策兰 | [下载](https://url89.ctfile.com/f/31084289-1375510972-2fc82c?p=8866) |\n| 诗人与诗歌 | 哈罗德・布鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1375512106-566b82?p=8866) |\n| 别去读诗 | 斯蒂芬妮・伯特 | [下载](https://url89.ctfile.com/f/31084289-1375512253-297890?p=8866) |\n| 民国作家朱自清作品典藏全集（套装共十六册） | 朱自清 | [下载](https://url89.ctfile.com/f/31084289-1375513285-ea02d5?p=8866) |\n| 生命之殿 | 但丁・罗塞蒂 | [下载](https://url89.ctfile.com/f/31084289-1357004035-0d555d?p=8866) |\n| 陌生人音乐 | 莱昂纳德・科恩 | [下载](https://url89.ctfile.com/f/31084289-1357003981-ba89b3?p=8866) |\n| 诗的引诱（大家读大家） | 宇文所安 | [下载](https://url89.ctfile.com/f/31084289-1357003492-0ca141?p=8866) |\n| 花间集 | 赵崇祚 | [下载](https://url89.ctfile.com/f/31084289-1357003321-4f2249?p=8866) |\n| 心有猛虎，细嗅蔷薇（果麦经典） | 西格夫里・萨松 | [下载](https://url89.ctfile.com/f/31084289-1357002448-afc756?p=8866) |\n| 诗歌手册：诗歌阅读与创作指南 | 玛丽・奥利弗 | [下载](https://url89.ctfile.com/f/31084289-1357002031-f4b308?p=8866) |\n| 大山里的小诗人 | “是光”的孩子们 | [下载](https://url89.ctfile.com/f/31084289-1357001554-8c8cf0?p=8866) |\n| 火焰 | 莱昂纳德・科恩 | [下载](https://url89.ctfile.com/f/31084289-1357000321-1f47fc?p=8866) |\n| 我的焦虑是一束火花 | 阿多尼斯 | [下载](https://url89.ctfile.com/f/31084289-1356999841-6b89b0?p=8866) |\n| 桂花 | 阿多尼斯 | [下载](https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866) |\n| 唐诗选注 | 葛兆光 | [下载](https://url89.ctfile.com/f/31084289-1356990052-86abee?p=8866) |\n| 不三 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1356988819-9f6970?p=8866) |\n| 诗圣杜甫 | 吕正惠 | [下载](https://url89.ctfile.com/f/31084289-1356986797-203237?p=8866) |\n| 苏东坡的山药粥 | 徐佳 | [下载](https://url89.ctfile.com/f/31084289-1356986500-321916?p=8866) |\n| 沈从文诗集 | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866) |\n| 夏与西伯利亚 | 倪湛舸 | [下载](https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866) |\n| 悠悠我心 | 史杰鹏 | [下载](https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866) |\n| 流沙河讲诗经 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866) |\n| 诗人十四个 | 黄晓丹 | [下载](https://url89.ctfile.com/f/31084289-1357052656-80a0a8?p=8866) |\n| 楚辞（国学典藏） | 洪兴祖 补注 | [下载](https://url89.ctfile.com/f/31084289-1357051618-b00af4?p=8866) |\n| 唐诗排行榜 | 王兆鹏/邵大为/张静/唐元 | [下载](https://url89.ctfile.com/f/31084289-1357048627-25d87f?p=8866) |\n| 爱啊美啊人生啊 | 石川啄木 | [下载](https://url89.ctfile.com/f/31084289-1357047964-020a7a?p=8866) |\n| 辛波斯卡诗选三部曲 | 维斯拉瓦・辛波斯卡 | [下载](https://url89.ctfile.com/f/31084289-1357045282-d2f37d?p=8866) |\n| 流沙河讲古诗十九首 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357044709-330c0b?p=8866) |\n| 致后代 | 贝托尔特・布莱希特 | [下载](https://url89.ctfile.com/f/31084289-1357044217-6efbfc?p=8866) |\n| 覆舟的愉悦 | 朱塞培・翁加雷蒂 | [下载](https://url89.ctfile.com/f/31084289-1357043998-412f86?p=8866) |\n| 花与恶心 | 卡洛斯・德鲁蒙德・德・安德拉德 | [下载](https://url89.ctfile.com/f/31084289-1357043881-7197ca?p=8866) |\n| 爱丽尔（果麦经典） | 西尔维娅・普拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357043854-191350?p=8866) |\n| 我将敢于亲吻你 | 阿方斯娜・斯托尔妮 | [下载](https://url89.ctfile.com/f/31084289-1357043794-7c46f5?p=8866) |\n| 风景中的少年 | 胡戈・冯・霍夫曼斯塔尔 | [下载](https://url89.ctfile.com/f/31084289-1357043686-99ceaf?p=8866) |\n| 希尼三十年文选 | 谢默斯・希尼 | [下载](https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866) |\n| 艾略特文集（全5卷） | 托・斯・艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357040791-73a240?p=8866) |\n| 窥豹录 | 胡亮 | [下载](https://url89.ctfile.com/f/31084289-1357035628-c24e75?p=8866) |\n| 泰戈尔诗选（名著名译丛书） | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357035529-81da8d?p=8866) |\n| 大象：劳伦斯诗集 | 劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866) |\n| Goblin Market | Rossetti, Christina; Rackham, Arthur; | [下载](https://url89.ctfile.com/f/31084289-1357034377-fbf176?p=8866) |\n| 我用古典的方式爱过你 | 艾米莉・狄金森 | [下载](https://url89.ctfile.com/f/31084289-1357033786-700cbe?p=8866) |\n| 欧阳修词集（词系列） | 欧阳修 | [下载](https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866) |\n| 我愿意是急流 | 裴多菲・山陀尔 | [下载](https://url89.ctfile.com/f/31084289-1357033246-a24a75?p=8866) |\n| 博尔赫斯全集第二辑（套装共12册） | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866) |\n| 白雨斋词话（词系列） | 陈廷焯 | [下载](https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866) |\n| 二十首情诗和一支绝望的歌 | 巴勃罗・聂鲁达 | [下载](https://url89.ctfile.com/f/31084289-1357032373-77d3ce?p=8866) |\n| 宋词鉴赏辞典 | 唐圭璋/钟振振 | [下载](https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866) |\n| 天真的歌 | 余光中 | [下载](https://url89.ctfile.com/f/31084289-1357032004-ffb2cf?p=8866) |\n| 诗词里的趣事套装（全4册） | 王月亮/黄震/黄秀春 | [下载](https://url89.ctfile.com/f/31084289-1357030606-0b3ab0?p=8866) |\n| 万物归一 | 君特・格拉斯 | [下载](https://url89.ctfile.com/f/31084289-1357030096-2f337a?p=8866) |\n| 桑德堡诗选 | 卡尔・桑德堡 | [下载](https://url89.ctfile.com/f/31084289-1357029511-e8bfc2?p=8866) |\n| 金性尧选唐宋诗新注 | 金性尧 | [下载](https://url89.ctfile.com/f/31084289-1357028893-8fd3a1?p=8866) |\n| 你是一百只眼睛的水面 | 加布列拉・米斯特拉尔 | [下载](https://url89.ctfile.com/f/31084289-1357027525-6abbc5?p=8866) |\n| 杨牧诗选（1956-2013） | 杨牧 | [下载](https://url89.ctfile.com/f/31084289-1357026265-7f9451?p=8866) |\n| 彩画集（译文经典） | 兰波 | [下载](https://url89.ctfile.com/f/31084289-1357024798-46febb?p=8866) |\n| 孩子们的诗 | 果麦 | [下载](https://url89.ctfile.com/f/31084289-1357017097-fec3aa?p=8866) |\n| 李太白全集 | 李白 | [下载](https://url89.ctfile.com/f/31084289-1357015951-1e1abc?p=8866) |\n| 神曲（译文名著精选） | 但丁 | [下载](https://url89.ctfile.com/f/31084289-1357005313-5d3225?p=8866) |\n"
  },
  {
    "path": "md/诗经.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 诗经\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 流沙河讲诗经（锁线图文版） | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1375510882-3771c1?p=8866) |\n| 流沙河讲诗经 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357053793-95de26?p=8866) |\n| 诗经点醒 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866) |\n| 诗经楚辞鉴赏辞典 | 周啸天 | [下载](https://url89.ctfile.com/f/31084289-1357023427-f856e9?p=8866) |\n"
  },
  {
    "path": "md/诗词.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 诗词\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人间词话：叶嘉莹讲评本 | 叶嘉莹 | [下载](https://url89.ctfile.com/f/31084289-1375499446-d9ea31?p=8866) |\n| 半小时漫画必背古诗词 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375499623-bea742?p=8866) |\n| 蒙曼精选套装（共9册） | 蒙曼 | [下载](https://url89.ctfile.com/f/31084289-1375500643-e84655?p=8866) |\n| 千家诗（古典文学大字本） | 谷一然 | [下载](https://url89.ctfile.com/f/31084289-1375503001-f69279?p=8866) |\n| 诗境浅说 | 俞陛云 | [下载](https://url89.ctfile.com/f/31084289-1375512271-003d58?p=8866) |\n| 中华经典诗文之美（共13册） | 徐中玉 | [下载](https://url89.ctfile.com/f/31084289-1357004032-266b3e?p=8866) |\n| 戴老师魔性诗词课 | 戴建业 | [下载](https://url89.ctfile.com/f/31084289-1356995359-399e21?p=8866) |\n| 花间集校注（中华国学文库） | 赵崇祚编/杨景龙校注 | [下载](https://url89.ctfile.com/f/31084289-1356984802-9d5c8d?p=8866) |\n| 悠悠我心 | 史杰鹏 | [下载](https://url89.ctfile.com/f/31084289-1356983872-fe77f7?p=8866) |\n| 一年灯火要人归 | 陆蓓容 | [下载](https://url89.ctfile.com/f/31084289-1356983866-8a5362?p=8866) |\n| 唐祈诗全编 | 唐祈 | [下载](https://url89.ctfile.com/f/31084289-1356983401-76fd36?p=8866) |\n| 宋词排行榜 | 王兆鹏/郁玉英/郭红欣 | [下载](https://url89.ctfile.com/f/31084289-1357048642-b6ed20?p=8866) |\n| 诗经点醒 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1357045015-bcd130?p=8866) |\n| 陶渊明集（作家榜经典文库） | 陶渊明 | [下载](https://url89.ctfile.com/f/31084289-1357044679-8f284a?p=8866) |\n| 纳兰词（作家榜经典文库） | 纳兰性德 | [下载](https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866) |\n| 笠翁对韵（作家榜经典文库） | 李渔 | [下载](https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866) |\n| 经典咏流传诗词曲赋集（套装21册） | 李白/王维等 | [下载](https://url89.ctfile.com/f/31084289-1357033810-ff46b3?p=8866) |\n| 柳永词集（词系列） | 柳永 | [下载](https://url89.ctfile.com/f/31084289-1357033708-dc7a4b?p=8866) |\n| 姜夔词集（词系列） | 姜夔 | [下载](https://url89.ctfile.com/f/31084289-1357033648-4e54d1?p=8866) |\n| 词学通论（词系列） | 吴梅 | [下载](https://url89.ctfile.com/f/31084289-1357033588-ce609f?p=8866) |\n| 词品（词系列） | 杨慎 | [下载](https://url89.ctfile.com/f/31084289-1357033549-efac50?p=8866) |\n| 欧阳修词集（词系列） | 欧阳修 | [下载](https://url89.ctfile.com/f/31084289-1357033480-ff5727?p=8866) |\n| 黄庭坚词集（词系列） | 黄庭坚 | [下载](https://url89.ctfile.com/f/31084289-1357033456-e77dbf?p=8866) |\n| 唐宋词格律（词系列） | 龙榆生 | [下载](https://url89.ctfile.com/f/31084289-1357033402-d9e7be?p=8866) |\n| 苏轼词集（词系列） | 苏轼 | [下载](https://url89.ctfile.com/f/31084289-1357033372-c185aa?p=8866) |\n| 晏殊词集·晏幾道词集（词系列） | 晏殊/晏几道 | [下载](https://url89.ctfile.com/f/31084289-1357033255-ad9e76?p=8866) |\n| 纳兰词集（词系列） | 张草纫 | [下载](https://url89.ctfile.com/f/31084289-1357033222-a4ae5e?p=8866) |\n| 温庭筠词集·韦庄词集（词系列） | 温庭筠/韦庄 | [下载](https://url89.ctfile.com/f/31084289-1357033183-c60adc?p=8866) |\n| 秦观词集（词系列） | 秦观 | [下载](https://url89.ctfile.com/f/31084289-1357033132-aa3b54?p=8866) |\n| 白雨斋词话（词系列） | 陈廷焯 | [下载](https://url89.ctfile.com/f/31084289-1357033093-fccf0f?p=8866) |\n| 周邦彦词集（词系列） | 周邦彦 | [下载](https://url89.ctfile.com/f/31084289-1357033030-271dc5?p=8866) |\n| 贺铸词集（词系列） | 贺铸 | [下载](https://url89.ctfile.com/f/31084289-1357032997-d1ca33?p=8866) |\n| 陆游词集（词系列） | 陆游 | [下载](https://url89.ctfile.com/f/31084289-1357032937-95285d?p=8866) |\n| 宋词鉴赏辞典 | 唐圭璋/钟振振 | [下载](https://url89.ctfile.com/f/31084289-1357032100-258e07?p=8866) |\n| 唐诗鉴赏辞典 | 周啸天 | [下载](https://url89.ctfile.com/f/31084289-1357032091-ade230?p=8866) |\n| 半小时漫画唐诗 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1357030168-881705?p=8866) |\n| 辛弃疾词集（词系列） | 辛弃疾 | [下载](https://url89.ctfile.com/f/31084289-1357029985-edf7ad?p=8866) |\n| 宋诗鉴赏辞典 | 缪钺 | [下载](https://url89.ctfile.com/f/31084289-1357029934-f3d31f?p=8866) |\n| 小山词 | 晏几道 | [下载](https://url89.ctfile.com/f/31084289-1357026337-eedc64?p=8866) |\n| 中国诗词大会第二季（上册） | 栏目组  | [下载](https://url89.ctfile.com/f/31084289-1357015846-9ab93d?p=8866) |\n| 中国诗词大会第二季（下册） | 栏目组 | [下载](https://url89.ctfile.com/f/31084289-1357015822-5a5bf1?p=8866) |\n| 诗词大会：品味古文人的“八卦”人生（套装共4册） | 张觅/郭瑞祥/江晓英 | [下载](https://url89.ctfile.com/f/31084289-1357009096-8baf10?p=8866) |\n"
  },
  {
    "path": "md/诗集.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 诗集\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鸟道：周梦蝶世纪诗选 | 周梦蝶 | [下载](https://url89.ctfile.com/f/31084289-1357003564-b99874?p=8866) |\n| 桂花 | 阿多尼斯 | [下载](https://url89.ctfile.com/f/31084289-1356999778-b8687d?p=8866) |\n| 词境浅说 | 俞陛云 | [下载](https://url89.ctfile.com/f/31084289-1356996517-e39145?p=8866) |\n| 啸天说诗（全6册） | 周啸天 | [下载](https://url89.ctfile.com/f/31084289-1356987703-41f27c?p=8866) |\n| 沈从文诗集 | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1356984916-5e29ad?p=8866) |\n| 疯狂的奥兰多 | 卢多维科・阿里奥斯托 | [下载](https://url89.ctfile.com/f/31084289-1357048276-6241ff?p=8866) |\n| 大象：劳伦斯诗集 | 劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357034977-85c71a?p=8866) |\n| 生如夏花（作家榜经典文库） | 拉宾德拉纳特・泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1357031998-022925?p=8866) |\n| 夜空总有最大密度的蓝色 | 最果夕日 | [下载](https://url89.ctfile.com/f/31084289-1357030162-20452d?p=8866) |\n| 我的孤独是一座花园 | 阿多尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357007998-862b6d?p=8866) |\n"
  },
  {
    "path": "md/诡异.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 诡异\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 烧烤怪谈 | 蔡必贵 | [下载](https://url89.ctfile.com/f/31084289-1356984823-94a2cb?p=8866) |\n| 唐朝诡事录 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866) |\n"
  },
  {
    "path": "md/语文.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 语文\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 写作力 | 高语罕 | [下载](https://url89.ctfile.com/f/31084289-1356983338-8f2105?p=8866) |\n| 怎样学习文言文 | 张中行著 | [下载](https://url89.ctfile.com/f/31084289-1357032796-aecba7?p=8866) |\n"
  },
  {
    "path": "md/语言.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 语言\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 东言西语 | 郑子宁 | [下载](https://url89.ctfile.com/f/31084289-1356992410-59eaec?p=8866) |\n| 维特根斯坦说逻辑与语言 | 维特根斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356985915-d52a79?p=8866) |\n| 语言的诞生 | 丹尼尔·L. 埃弗雷特 | [下载](https://url89.ctfile.com/f/31084289-1356985408-646274?p=8866) |\n| 汉语讲话 | 王力 | [下载](https://url89.ctfile.com/f/31084289-1357045315-e7ccda?p=8866) |\n| 南腔北调：在语言中重新发现中国 | 郑子宁 | [下载](https://url89.ctfile.com/f/31084289-1357045024-9c30f9?p=8866) |\n| 如何高效学语言 | 亚历克斯・罗林斯 | [下载](https://url89.ctfile.com/f/31084289-1357043503-1bf41f?p=8866) |\n| 你所不知道的日本名词故事 | 新井一二三 | [下载](https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866) |\n| 语言表达的艺术 | 赵磊 | [下载](https://url89.ctfile.com/f/31084289-1357030414-9672c6?p=8866) |\n| 字里中国 | 张素凤 | [下载](https://url89.ctfile.com/f/31084289-1357029691-7b218d?p=8866) |\n| You are a Badass | Jen Sincero | [下载](https://url89.ctfile.com/f/31084289-1357029166-c6e723?p=8866) |\n| 写作全技术 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357025719-d465f4?p=8866) |\n| 语言风格的秘密 | 詹姆斯・彭尼贝克 | [下载](https://url89.ctfile.com/f/31084289-1357023781-4c8ac9?p=8866) |\n| 1368个单词就够了 | 王乐平 | [下载](https://url89.ctfile.com/f/31084289-1357016683-13ca04?p=8866) |\n| 英语的故事 | 戴维・克里斯特尔 | [下载](https://url89.ctfile.com/f/31084289-1357013851-0cea4d?p=8866) |\n| 语言本能 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010089-5eb4c7?p=8866) |\n| 跟各国人都聊的来 | 本尼・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357009894-69716f?p=8866) |\n"
  },
  {
    "path": "md/说话.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 说话\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 幽默就是说话让人舒服 | 王荣华 | [下载](https://url89.ctfile.com/f/31084289-1356993952-7eaaf2?p=8866) |\n| 会说话的人运气都不会太差 | 矢野香 | [下载](https://url89.ctfile.com/f/31084289-1356990352-ed506a?p=8866) |\n| 好好接话 | 山口拓朗 | [下载](https://url89.ctfile.com/f/31084289-1356985690-8adff9?p=8866) |\n| 好好说话第一步 | 麦克▪P.尼可斯 | [下载](https://url89.ctfile.com/f/31084289-1357030528-0e2cad?p=8866) |\n| 好好说话：新鲜有趣的话术精进技巧 | 马东/马薇薇/黄执中等 | [下载](https://url89.ctfile.com/f/31084289-1357007650-bd72ce?p=8866) |\n| 好好说话 | 学诚法师 | [下载](https://url89.ctfile.com/f/31084289-1357007503-b2ad10?p=8866) |\n"
  },
  {
    "path": "md/诸葛亮.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 诸葛亮\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 诸葛亮：蜀汉舵手的历史真相 | 南门太守 | [下载](https://url89.ctfile.com/f/31084289-1357034368-470d03?p=8866) |\n| 大谋小计五十年：诸葛亮传 | 若虚 | [下载](https://url89.ctfile.com/f/31084289-1357005889-9b8514?p=8866) |\n"
  },
  {
    "path": "md/诺贝尔.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 诺贝尔\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 诺贝尔文学奖作品典藏书系全集（共31册） | 海明威/泰戈尔等 | [下载](https://url89.ctfile.com/f/31084289-1357011121-5976eb?p=8866) |\n"
  },
  {
    "path": "md/读书.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 读书\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 要把读书当回事 | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1375499101-3b0d57?p=8866) |\n| 阅读变现 | 山口周 | [下载](https://url89.ctfile.com/f/31084289-1375499122-5f9eef?p=8866) |\n| 少时读书 | 废名 | [下载](https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866) |\n| 野味读书 | 孙犁 | [下载](https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866) |\n| 学会读书 | 叶圣陶 | [下载](https://url89.ctfile.com/f/31084289-1357003942-ca36b7?p=8866) |\n| 读懂一本书 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357044802-74a674?p=8866) |\n| 熊逸说经典作品集（套装共4册） | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866) |\n| 星条旗下的茶叶蛋 | 方柏林 | [下载](https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866) |\n| 如何用Kindle高效学习 | 直树桑 | [下载](https://url89.ctfile.com/f/31084289-1357032121-9975ae?p=8866) |\n| 读书毁了我 | 王强 | [下载](https://url89.ctfile.com/f/31084289-1357030408-4ed360?p=8866) |\n| 怎样读经典 | 王宁/彭林/孙钦善 | [下载](https://url89.ctfile.com/f/31084289-1357029706-559436?p=8866) |\n| 深阅读 | 斋藤孝 | [下载](https://url89.ctfile.com/f/31084289-1357022947-1ef20c?p=8866) |\n| 精准表达：让你的方案在最短的时间内打动人心 | 高田贵久 | [下载](https://url89.ctfile.com/f/31084289-1357022005-8ea54a?p=8866) |\n| 洋葱阅读法 | 彭小六 | [下载](https://url89.ctfile.com/f/31084289-1357021639-2cdecd?p=8866) |\n| 书都不会读，你还想成功 | 二志成/郑会一 | [下载](https://url89.ctfile.com/f/31084289-1357019692-41d226?p=8866) |\n| 生命最后的读书会 | 威尔・施瓦尔贝 | [下载](https://url89.ctfile.com/f/31084289-1357019641-a06ea5?p=8866) |\n| 如何有效阅读一本书 | 奥野宣之 | [下载](https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866) |\n| 读书是一辈子的事 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357017013-d5b280?p=8866) |\n| 旅行与读书 | 詹宏志 | [下载](https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866) |\n"
  },
  {
    "path": "md/读客.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 读客\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 约翰·克利斯朵夫（读客经典） | 罗曼・罗兰 | [下载](https://url89.ctfile.com/f/31084289-1357028821-f3f217?p=8866) |\n| 枕草子（读客经典） | 清少纳言 | [下载](https://url89.ctfile.com/f/31084289-1357027606-ce1525?p=8866) |\n| AI迷航3 | 肖遥 | [下载](https://url89.ctfile.com/f/31084289-1357027561-bda2a4?p=8866) |\n| 基督山伯爵（读客经典） | 大仲马 | [下载](https://url89.ctfile.com/f/31084289-1357023730-008d2e?p=8866) |\n| 伏尔泰小说精选（读客经典） | 伏尔泰 | [下载](https://url89.ctfile.com/f/31084289-1357023391-a24b80?p=8866) |\n| 银河铁道之夜（读客经典） | 宫泽贤治 | [下载](https://url89.ctfile.com/f/31084289-1357022767-1f1a92?p=8866) |\n| 茶花女（读客经典） | 小仲马 | [下载](https://url89.ctfile.com/f/31084289-1357022494-778de5?p=8866) |\n"
  },
  {
    "path": "md/读物.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 读物\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 伯吉斯野外生存系列（套装四册） | 桑顿・伯吉斯 | [下载](https://url89.ctfile.com/f/31084289-1357016269-44d268?p=8866) |\n| 从前有条喷火龙（第一辑） | 凯特・麦克马伦/比尔・巴索 | [下载](https://url89.ctfile.com/f/31084289-1357015708-adce19?p=8866) |\n| 夏洛书屋电子书大套装（套装共27本） | Digital Lab | [下载](https://url89.ctfile.com/f/31084289-1357015618-ef6dd5?p=8866) |\n"
  },
  {
    "path": "md/课程.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 课程\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 哈佛大学经典课程分享（套装9册） | 哈佛大学 | [下载](https://url89.ctfile.com/f/31084289-1357051456-35592c?p=8866) |\n| 统整的力量 | 陈怡倩 | [下载](https://url89.ctfile.com/f/31084289-1357038664-3ab357?p=8866) |\n"
  },
  {
    "path": "md/谈判.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 谈判\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 不妥协的谈判 | 丹尼尔・夏皮罗 | [下载](https://url89.ctfile.com/f/31084289-1375511224-78bbe2?p=8866) |\n| 绝地谈判2 | 马蒂亚斯・施汉纳 | [下载](https://url89.ctfile.com/f/31084289-1356999019-4001be?p=8866) |\n| 从对抗到共赢 | 杨杜泽/沈莉娟/王赛/范松璐 | [下载](https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866) |\n| 职场谈判经典书系（套装共3册） | 德雷克・阿顿 | [下载](https://url89.ctfile.com/f/31084289-1356991294-f1441c?p=8866) |\n| 制胜谈判 | 游梓翔 | [下载](https://url89.ctfile.com/f/31084289-1357052629-f068d8?p=8866) |\n| 如何一开口就赢 | 速溶综合研究所 | [下载](https://url89.ctfile.com/f/31084289-1357051384-6fdff6?p=8866) |\n| 绝地谈判 | 马蒂亚斯・施汉纳 | [下载](https://url89.ctfile.com/f/31084289-1357051264-a28eeb?p=8866) |\n| 谈判技巧：菜鸟谈判进阶的八大要领 | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1357049152-bbc1b9?p=8866) |\n| 麦肯锡教我的谈判武器 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866) |\n| 高情商者会谈判 | 冯岳宁 | [下载](https://url89.ctfile.com/f/31084289-1357042411-85770e?p=8866) |\n| 掌控谈话 | 克里斯・沃斯 | [下载](https://url89.ctfile.com/f/31084289-1357035001-d8a596?p=8866) |\n| 强势谈判心理学 | 朱建国 | [下载](https://url89.ctfile.com/f/31084289-1357014361-f635fc?p=8866) |\n| 罗杰·道森优势谈判系列 | 罗杰・道森 | [下载](https://url89.ctfile.com/f/31084289-1357010341-e7ab3f?p=8866) |\n"
  },
  {
    "path": "md/谋略.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 谋略\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 六韬（全本全注全译） | 陈曦 | [下载](https://url89.ctfile.com/f/31084289-1357054324-8d5b29?p=8866) |\n| 硬球：政治是这样玩的 | 克里斯·马修斯 | [下载](https://url89.ctfile.com/f/31084289-1357006951-8fd108?p=8866) |\n"
  },
  {
    "path": "md/谍战.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 谍战\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 解密 | 麦家 | [下载](https://url89.ctfile.com/f/31084289-1357033438-7ed22e?p=8866) |\n| 琥珀（套装共3册） | 闻人悦阅 | [下载](https://url89.ctfile.com/f/31084289-1357032733-795627?p=8866) |\n| 北平行动1925 | 银子辛 | [下载](https://url89.ctfile.com/f/31084289-1357032163-bc75fe?p=8866) |\n| 破绽 | 刘天壮 | [下载](https://url89.ctfile.com/f/31084289-1357029829-454eb2?p=8866) |\n| 面具 | 王小枪 | [下载](https://url89.ctfile.com/f/31084289-1357028050-fc3745?p=8866) |\n| 伪装者 | 张勇 | [下载](https://url89.ctfile.com/f/31084289-1357020640-b71138?p=8866) |\n| 于无声处 | 高满堂/张浩民/曲怡琳  | [下载](https://url89.ctfile.com/f/31084289-1357019869-b636c4?p=8866) |\n| 和平饭店 | 肖午/杨树 | [下载](https://url89.ctfile.com/f/31084289-1357019752-a8add3?p=8866) |\n| 风筝 | 退色的子弹  | [下载](https://url89.ctfile.com/f/31084289-1357017157-972251?p=8866) |\n| 柏林孤谍 | 约瑟夫・卡农 | [下载](https://url89.ctfile.com/f/31084289-1357014952-b3c01e?p=8866) |\n| 麻雀 | 海飞 | [下载](https://url89.ctfile.com/f/31084289-1357006330-3fd9d3?p=8866) |\n"
  },
  {
    "path": "md/谷歌.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 谷歌\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 后谷歌时代 | 乔治・吉尔德 | [下载](https://url89.ctfile.com/f/31084289-1356994819-aa6ccf?p=8866) |\n| 互联网四大 | 斯科特・加洛韦 | [下载](https://url89.ctfile.com/f/31084289-1356990415-ac4270?p=8866) |\n| 谷歌的故事 | 戴维・怀斯/马克・摩西德 | [下载](https://url89.ctfile.com/f/31084289-1356989413-7c4130?p=8866) |\n| 谷歌方法 | 比尔・基尔迪 | [下载](https://url89.ctfile.com/f/31084289-1357033915-dbcded?p=8866) |\n| 设计冲刺 | 杰克・纳普 | [下载](https://url89.ctfile.com/f/31084289-1357009069-7c0170?p=8866) |\n"
  },
  {
    "path": "md/财会.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 财会\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 像读悬疑小说一样读懂会计学 | 田中靖浩 | [下载](https://url89.ctfile.com/f/31084289-1357002445-d51d8d?p=8866) |\n"
  },
  {
    "path": "md/财务.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 财务\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 要钱还是要生活 | 维姬・罗宾/乔・多明格斯 | [下载](https://url89.ctfile.com/f/31084289-1375493644-fd98ee?p=8866) |\n| 华为战略财务讲义 | 何绍茂 | [下载](https://url89.ctfile.com/f/31084289-1375509100-205637?p=8866) |\n| 账簿与权力 | 雅各布・索尔 | [下载](https://url89.ctfile.com/f/31084289-1357004521-f2651d?p=8866) |\n| 财报就像一本兵法书 | 刘顺仁 | [下载](https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866) |\n| 不可撼动的财务自由 | 托尼・罗宾斯/彼得・默劳克 | [下载](https://url89.ctfile.com/f/31084289-1356995065-092353?p=8866) |\n| 让财报说话 | 郑永强 | [下载](https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866) |\n| 财务诡计 | 霍华德·M.施利特等 | [下载](https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866) |\n| 一本书读懂财报 | 肖星 | [下载](https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866) |\n| 销售进阶指南（套装共5册） | 埃尔默・惠勒 | [下载](https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866) |\n| 世界上最简单的会计书 | 达雷尔・穆利斯/朱迪斯・奥洛夫 | [下载](https://url89.ctfile.com/f/31084289-1357027939-522929?p=8866) |\n| Money Master the Game | Tony Robbins | [下载](https://url89.ctfile.com/f/31084289-1357026346-d7e225?p=8866) |\n| 管理者14天看懂财务报表 | 闫静 | [下载](https://url89.ctfile.com/f/31084289-1357021048-ccb824?p=8866) |\n"
  },
  {
    "path": "md/财商.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 财商\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 反溺爱 | 罗恩・利伯 | [下载](https://url89.ctfile.com/f/31084289-1357042486-4aa7d0?p=8866) |\n| 20堂商业思维进阶课 | 环球人物新媒体中心 | [下载](https://url89.ctfile.com/f/31084289-1357040860-3b8ea9?p=8866) |\n| 钱意识 | 沈诱冰 | [下载](https://url89.ctfile.com/f/31084289-1357034518-c32108?p=8866) |\n"
  },
  {
    "path": "md/财富.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 财富\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 超越财富 | 赵晶 | [下载](https://url89.ctfile.com/f/31084289-1375511332-7490f1?p=8866) |\n| 香帅财富报告 | 香帅 | [下载](https://url89.ctfile.com/f/31084289-1357004461-6ef1c3?p=8866) |\n| 财富千年史 | 辛西娅・克罗森 | [下载](https://url89.ctfile.com/f/31084289-1356995338-87f807?p=8866) |\n| 赢：有钱人和你想的不一样 | 塞缪尔・斯迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357052767-215ca9?p=8866) |\n| 钱从哪里来 | 香帅 | [下载](https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866) |\n| 富人的逻辑 | 雷纳・齐特尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357051171-6792a9?p=8866) |\n| 百万富翁快车道 | MJ·德马科 | [下载](https://url89.ctfile.com/f/31084289-1357050346-fb40ee?p=8866) |\n| 财富的起源 | 埃里克・拜因霍克 | [下载](https://url89.ctfile.com/f/31084289-1357047400-b0091e?p=8866) |\n| 穷人缺什么 | 古古 | [下载](https://url89.ctfile.com/f/31084289-1357044313-916f2a?p=8866) |\n| 财富自由 | 托马斯・斯坦利/萨拉斯坦利・弗洛 | [下载](https://url89.ctfile.com/f/31084289-1357035115-74ac9e?p=8866) |\n| 7分钟理财 | 罗元裳 | [下载](https://url89.ctfile.com/f/31084289-1357034965-f28528?p=8866) |\n| 穷人穷口袋，富人富脑袋 | 曾驿翔 | [下载](https://url89.ctfile.com/f/31084289-1357030693-20415a?p=8866) |\n| 全脑优势（第二版） | 奈德・赫曼等 | [下载](https://url89.ctfile.com/f/31084289-1357029154-f3d02b?p=8866) |\n| 富豪的心理 | 雷纳・齐特尔曼 | [下载](https://url89.ctfile.com/f/31084289-1357028158-e90c4b?p=8866) |\n| The Fifth Discipline Fieldbook | Peter M. Senge/et al  | [下载](https://url89.ctfile.com/f/31084289-1357021675-47e500?p=8866) |\n| 中国富人为何变穷 | 张庭宾/艾经纬 | [下载](https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866) |\n"
  },
  {
    "path": "md/财报.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 财报\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 财报一看就懂 | 薛兆亨/徐林宽 | [下载](https://url89.ctfile.com/f/31084289-1375509232-8957d6?p=8866) |\n| 财报就像一本兵法书 | 刘顺仁 | [下载](https://url89.ctfile.com/f/31084289-1357001083-098545?p=8866) |\n| 让财报说话 | 郑永强 | [下载](https://url89.ctfile.com/f/31084289-1356985708-c5bad8?p=8866) |\n| 一本书读懂财报 | 肖星 | [下载](https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866) |\n"
  },
  {
    "path": "md/财政.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 财政\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 中国财政史十六讲 | 刘守刚 | [下载](https://url89.ctfile.com/f/31084289-1357019311-2e842e?p=8866) |\n| 中央帝国的财政密码 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357013281-01b440?p=8866) |\n"
  },
  {
    "path": "md/财经.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 财经\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 影响商业的50本书 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1356993595-46d62c?p=8866) |\n| 投资的怪圈 | 贾森・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866) |\n| 信托的逻辑 | 道远/周萍/翁两民/贺洋  | [下载](https://url89.ctfile.com/f/31084289-1357049104-f15eba?p=8866) |\n| 商业冒险 | 约翰・布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866) |\n| 压力测试 | 蒂莫西・盖特纳 | [下载](https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866) |\n| 经济增长的迷雾 | 威廉・伊斯特利 | [下载](https://url89.ctfile.com/f/31084289-1357030690-272022?p=8866) |\n| 第一大亨（套装共2册） | 斯泰尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357014319-72a8ef?p=8866) |\n"
  },
  {
    "path": "md/货币.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 货币\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 美国货币史（精校本） | 米尔顿・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866) |\n| 世界钱币2000年 | 伯恩德・克鲁格 | [下载](https://url89.ctfile.com/f/31084289-1375503277-39fb14?p=8866) |\n| 钱的千年兴衰史 | 金菁 | [下载](https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866) |\n| 中国货币史 | 彭信威 | [下载](https://url89.ctfile.com/f/31084289-1356990364-a1c457?p=8866) |\n| 货币围城 | 约翰・莫尔丁等 | [下载](https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866) |\n| 货币之惑 | 乔治・吉尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866) |\n| 货币变局 | 巴里・艾肯格林等 | [下载](https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866) |\n| 布雷顿森林货币战（典藏版） | 本・斯泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357048705-a6c49c?p=8866) |\n| 货币金融学（原书第2版） | 弗雷德里克S.米什金 | [下载](https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866) |\n| 世界金融危机史经典丛书共6册 | 约翰・莫尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357037032-23759e?p=8866) |\n| 货币简史：从货币的起源到货币的未来 | 苗延波 | [下载](https://url89.ctfile.com/f/31084289-1357030525-dfd919?p=8866) |\n| 三千年来谁铸币 | 王永生 | [下载](https://url89.ctfile.com/f/31084289-1357030417-f9b05a?p=8866) |\n| 管理美元 | 船桥洋一 | [下载](https://url89.ctfile.com/f/31084289-1357023124-73dd6d?p=8866) |\n| 资本全球化 | 巴里・埃森格林 | [下载](https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866) |\n| 货币野史 | 菲利克斯・马汀 | [下载](https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866) |\n| 货币简史 | 卡比尔・塞加尔 | [下载](https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866) |\n| 白银帝国 | 徐瑾 | [下载](https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866) |\n| 布雷顿森林货币战 | 本・斯泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866) |\n| 货币战争（套装共5册） | 宋鸿兵 | [下载](https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866) |\n| 人类货币史 | 戴维・欧瑞尔 | [下载](https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866) |\n"
  },
  {
    "path": "md/贫穷.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 贫穷\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 贫穷的本质（修订版） | 阿比吉特・班纳吉/埃斯特・迪弗洛 | [下载](https://url89.ctfile.com/f/31084289-1357039345-48f95e?p=8866) |\n| 断裂的阶梯 | 基思・佩恩 | [下载](https://url89.ctfile.com/f/31084289-1357033159-17635a?p=8866) |\n"
  },
  {
    "path": "md/贸易.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 贸易\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 帝国陷阱 | 诺埃尔・毛雷尔 | [下载](https://url89.ctfile.com/f/31084289-1375511251-dba12c?p=8866) |\n| 伟大的贸易 | 威廉・伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357000336-222598?p=8866) |\n| 商业的本质套装（全3册） | 杨宗勇 | [下载](https://url89.ctfile.com/f/31084289-1357043839-832715?p=8866) |\n| 贸易的冲突 | 道格拉斯・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357042852-2ca538?p=8866) |\n| 贸易的真相 | 丹尼・罗德里克 | [下载](https://url89.ctfile.com/f/31084289-1357037065-bd5341?p=8866) |\n| 如何看待全球化 | 彼得・辛格 | [下载](https://url89.ctfile.com/f/31084289-1357031461-cf9210?p=8866) |\n| 一件T恤的全球经济之旅 | 皮翠拉・瑞沃莉 | [下载](https://url89.ctfile.com/f/31084289-1357018531-f7a2fa?p=8866) |\n"
  },
  {
    "path": "md/贸易战.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 贸易战\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 全球贸易摩擦与大国兴衰 | 任泽平/罗志恒 | [下载](https://url89.ctfile.com/f/31084289-1356991219-d430c3?p=8866) |\n"
  },
  {
    "path": "md/资产.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 资产\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 有效资产管理（典藏版） | 威廉・伯恩斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357050817-90e273?p=8866) |\n"
  },
  {
    "path": "md/资本.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 资本\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 耐心的资本 | 维多利亚・伊凡希娜/乔希・勒纳 | [下载](https://url89.ctfile.com/f/31084289-1375495492-4e8778?p=8866) |\n| 借钱：利息、债务和资本的故事 | 查尔斯・盖斯特 | [下载](https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866) |\n| 一本书看透IPO | 沈春晖 | [下载](https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866) |\n| 金牌投资人 | 龙在宇 | [下载](https://url89.ctfile.com/f/31084289-1357007572-2aa1dc?p=8866) |\n| 资本的年代：1848～1875 | 艾瑞克·霍布斯鲍姆 | [下载](https://url89.ctfile.com/f/31084289-1357006930-13ea2b?p=8866) |\n| 裸奔的钱 | 沈良 | [下载](https://url89.ctfile.com/f/31084289-1357006900-8b4e1f?p=8866) |\n| 潜伏在资本市场 | 仇子明 | [下载](https://url89.ctfile.com/f/31084289-1357006531-bbfae7?p=8866) |\n| 拿什么拯救中国经济？ | 叶檀 | [下载](https://url89.ctfile.com/f/31084289-1357006456-586f2e?p=8866) |\n"
  },
  {
    "path": "md/资本论.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 资本论\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 21世纪资本论+新资本论（套装共2册） | 托马斯・皮凯蒂/向松祚 | [下载](https://url89.ctfile.com/f/31084289-1357008418-dbe827?p=8866) |\n"
  },
  {
    "path": "md/资治通鉴.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 资治通鉴\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 柏杨白话版资治通鉴（全72册） | 柏杨 | [下载](https://url89.ctfile.com/f/31084289-1356990403-eee4f2?p=8866) |\n| 通鉴纪事本末（注译本）全42卷 | 袁枢 | [下载](https://url89.ctfile.com/f/31084289-1357052959-de2d4c?p=8866) |\n"
  },
  {
    "path": "md/越南.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 越南\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 战争哀歌 | 保宁 | [下载](https://url89.ctfile.com/f/31084289-1357052341-f29a44?p=8866) |\n| 越南密战：1950-1954中国援越战争纪实 | 钱江 | [下载](https://url89.ctfile.com/f/31084289-1357008241-5ab58c?p=8866) |\n"
  },
  {
    "path": "md/趋势.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 趋势\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 去规模化 | 赫曼特・塔内佳/凯文・梅尼 | [下载](https://url89.ctfile.com/f/31084289-1356994687-e7d6a6?p=8866) |\n| 隐藏的行为 | 托马斯・科洛波洛斯 | [下载](https://url89.ctfile.com/f/31084289-1357053679-c73b9c?p=8866) |\n| 人机共生 | 托马斯・达文波特/茱莉娅・柯尔比 | [下载](https://url89.ctfile.com/f/31084289-1357052242-ae31e9?p=8866) |\n| 第三次浪潮 | 阿尔文・托夫勒 | [下载](https://url89.ctfile.com/f/31084289-1357032949-77397f?p=8866) |\n| 小宣言 | 马格努斯・林奎斯特 | [下载](https://url89.ctfile.com/f/31084289-1357027162-16e6c5?p=8866) |\n| 趋势戒律 | 柯弗 | [下载](https://url89.ctfile.com/f/31084289-1357026925-f60e50?p=8866) |\n| 变量 | 何帆 | [下载](https://url89.ctfile.com/f/31084289-1357026250-f993f8?p=8866) |\n| 虚拟现实：万象的新开端 | 杰伦・拉尼尔 | [下载](https://url89.ctfile.com/f/31084289-1357023481-c4b2a4?p=8866) |\n| 富足：改变人类未来的4大力量 | 彼得・戴曼迪斯 | [下载](https://url89.ctfile.com/f/31084289-1357015900-a0dfb0?p=8866) |\n| 趋势红利 | 刘润 | [下载](https://url89.ctfile.com/f/31084289-1357015312-024ddb?p=8866) |\n| 必然 | 凯文・凯利 | [下载](https://url89.ctfile.com/f/31084289-1357007995-a3825d?p=8866) |\n"
  },
  {
    "path": "md/趣味.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 趣味\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 十分钟智商运动 | 李永乐 | [下载](https://url89.ctfile.com/f/31084289-1356984940-6dc445?p=8866) |\n| 全新万物简史 | 鲍勃・伯曼 | [下载](https://url89.ctfile.com/f/31084289-1357049317-ec2c73?p=8866) |\n"
  },
  {
    "path": "md/足球.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 足球\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 马拉多纳自传 | 迭戈・阿曼多・马拉多纳 | [下载](https://url89.ctfile.com/f/31084289-1356999238-9530a8?p=8866) |\n| 穆里尼奥传：葡萄牙制造（修订版） | 路易斯・洛伦索 | [下载](https://url89.ctfile.com/f/31084289-1357038871-d3b46d?p=8866) |\n| 瓜迪奥拉：胜利的另一种道路 | 吉列姆・巴拉格 | [下载](https://url89.ctfile.com/f/31084289-1357029349-68cd7c?p=8866) |\n| 亚历克斯·弗格森：我的自传 | 亚历克斯・弗格森 | [下载](https://url89.ctfile.com/f/31084289-1357029226-e94552?p=8866) |\n"
  },
  {
    "path": "md/跑步.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 跑步\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 跑步圣经（第2版） | 赫尔伯特・史迪凡尼 | [下载](https://url89.ctfile.com/f/31084289-1375493785-dc64ee?p=8866) |\n| 骨骼跑步法 | 铃木清和 | [下载](https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866) |\n| 科学跑步 | 罗炜樑 | [下载](https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866) |\n| 姿势跑法 | 尼古拉斯・罗曼诺夫/约翰・罗伯逊 | [下载](https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866) |\n| 无伤跑法 | 戴剑松/郑家轩 | [下载](https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866) |\n| 太极跑：不费力、无伤害的革命性跑步法 | 丹尼・德雷尔 | [下载](https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866) |\n| 你可以跑得更快 | 徐国峰 | [下载](https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866) |\n| 丹尼尔斯经典跑步训练法 | 杰克・丹尼尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866) |\n| 当我谈跑步时，我谈些什么 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357013386-6178c4?p=8866) |\n| 马拉松终极训练指南（原书第4版） | 霍尔・希格登 | [下载](https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866) |\n| 跑步圣经：我跑故我在 | 乔治・希恩 | [下载](https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866) |\n"
  },
  {
    "path": "md/软件.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 软件\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 数字乌托邦 | 尼古拉斯・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357020883-6adb43?p=8866) |\n| 大教堂与集市 | Eric S. Raymond | [下载](https://url89.ctfile.com/f/31084289-1357017643-c49df8?p=8866) |\n| 设计模式之禅（第2版） | 秦小波 | [下载](https://url89.ctfile.com/f/31084289-1357015291-39a08f?p=8866) |\n"
  },
  {
    "path": "md/轶事.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 轶事\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 唐人轶事汇编 | 周勋初/严杰/武秀成/姚松 | [下载](https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866) |\n"
  },
  {
    "path": "md/边疆.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 边疆\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 九色鹿•边疆史系列（全7册） | 薛小林等 | [下载](https://url89.ctfile.com/f/31084289-1356987808-e54515?p=8866) |\n| 危险的边疆：游牧帝国与中国 | 巴菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357014373-aa3442?p=8866) |\n"
  },
  {
    "path": "md/达芬奇.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 达芬奇\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| Leonardo da Vinci | Walter Isaacson | [下载](https://url89.ctfile.com/f/31084289-1357021798-d76fb3?p=8866) |\n| 哈默手稿 | 列奥纳多・达・芬奇 | [下载](https://url89.ctfile.com/f/31084289-1357009243-7141e9?p=8866) |\n"
  },
  {
    "path": "md/运动.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 运动\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 跑步圣经（第2版） | 赫尔伯特・史迪凡尼 | [下载](https://url89.ctfile.com/f/31084289-1375493785-dc64ee?p=8866) |\n| 懒惰脑科学 | 鲍里斯・薛瓦勒等 | [下载](https://url89.ctfile.com/f/31084289-1375498693-24f07a?p=8866) |\n| 骨骼跑步法 | 铃木清和 | [下载](https://url89.ctfile.com/f/31084289-1375513705-ae4487?p=8866) |\n| 科学跑步 | 罗炜樑 | [下载](https://url89.ctfile.com/f/31084289-1357001116-ffd1e7?p=8866) |\n| 姿势跑法 | 尼古拉斯・罗曼诺夫/约翰・罗伯逊 | [下载](https://url89.ctfile.com/f/31084289-1356994021-a3d5e2?p=8866) |\n| 颜值和身材一个都不能少（套装共10册） | 森拓郎等 | [下载](https://url89.ctfile.com/f/31084289-1356983329-e2252e?p=8866) |\n| 无伤跑法 | 戴剑松/郑家轩 | [下载](https://url89.ctfile.com/f/31084289-1357052995-813cad?p=8866) |\n| 闪电增肌 | 仰望尾迹云 | [下载](https://url89.ctfile.com/f/31084289-1357052464-a7cbaa?p=8866) |\n| 久坐不伤身 | 哈丽特・格里菲 | [下载](https://url89.ctfile.com/f/31084289-1357049230-7ce86b?p=8866) |\n| 学会呼吸 | 帕特里克・麦基翁 | [下载](https://url89.ctfile.com/f/31084289-1357045447-9e3be2?p=8866) |\n| 网：阿加西自传 | 安德烈・阿加西 | [下载](https://url89.ctfile.com/f/31084289-1357025626-a758c0?p=8866) |\n| 当体育遇上商业 | 乌尔里克・瓦格纳等 | [下载](https://url89.ctfile.com/f/31084289-1357025614-d87bae?p=8866) |\n| 郝鹏飞极简派健身 | 郝鹏飞 | [下载](https://url89.ctfile.com/f/31084289-1357024366-198ca6?p=8866) |\n| 再见，健身房 | 高宇 | [下载](https://url89.ctfile.com/f/31084289-1357023412-7eb509?p=8866) |\n| 太极跑：不费力、无伤害的革命性跑步法 | 丹尼・德雷尔 | [下载](https://url89.ctfile.com/f/31084289-1357022770-1b926f?p=8866) |\n| 力量训练套装 | 马克・瑞比拖/安迪・贝克 | [下载](https://url89.ctfile.com/f/31084289-1357021768-d392a6?p=8866) |\n| 你可以跑得更快 | 徐国峰 | [下载](https://url89.ctfile.com/f/31084289-1357021603-e4de89?p=8866) |\n| 拉伸运动系统训练（全彩图解第2版） | 阿诺德·G.尼尔森/尤卡・科科宁 | [下载](https://url89.ctfile.com/f/31084289-1357021546-5026de?p=8866) |\n| 施瓦辛格健身全书 | 阿诺德・施瓦辛格 | [下载](https://url89.ctfile.com/f/31084289-1357021087-b4c0c0?p=8866) |\n| 精准拉伸 | 克里斯蒂安・博格 | [下载](https://url89.ctfile.com/f/31084289-1357020916-4b8c4a?p=8866) |\n| 本能减脂 | 张景琦/孟令超 | [下载](https://url89.ctfile.com/f/31084289-1357020862-f0eec5?p=8866) |\n| 丹尼尔斯经典跑步训练法 | 杰克・丹尼尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866) |\n| 孤身绝壁 | 亚历克斯・汉诺尔德/大卫・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357011652-90caa3?p=8866) |\n| 马拉松终极训练指南（原书第4版） | 霍尔・希格登 | [下载](https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866) |\n| 失落的一代：中国的上山下乡运动1968-1980 | 潘鸣啸 | [下载](https://url89.ctfile.com/f/31084289-1357009123-8d75c5?p=8866) |\n| 跑步圣经：我跑故我在 | 乔治・希恩 | [下载](https://url89.ctfile.com/f/31084289-1357007326-3776ef?p=8866) |\n"
  },
  {
    "path": "md/运营.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 运营\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 创意短视频策划、推广、引流、爆粉与变现全能攻略 | 肖恩・卡内尔/本吉・特拉维斯 | [下载](https://url89.ctfile.com/f/31084289-1375510129-320b0f?p=8866) |\n| 催化：让一切加速改变 | 乔纳・伯杰 | [下载](https://url89.ctfile.com/f/31084289-1375510570-5a6471?p=8866) |\n| 转化率实战技巧从入门到精通 | 营销铁军 | [下载](https://url89.ctfile.com/f/31084289-1375510741-6aef3c?p=8866) |\n| 点亮视频号 | 刘兴亮 | [下载](https://url89.ctfile.com/f/31084289-1375511014-d8a952?p=8866) |\n| 无止之境 | 秦朔/陈天翔 | [下载](https://url89.ctfile.com/f/31084289-1375512349-8a08a2?p=8866) |\n| 得粉丝者得天下 | 佐伊・弗拉德・布拉纳等 | [下载](https://url89.ctfile.com/f/31084289-1357004536-baa43e?p=8866) |\n| 抖音营销系统 | 刘大贺 | [下载](https://url89.ctfile.com/f/31084289-1356994939-50ab04?p=8866) |\n| 外卖超级运营术 | 饿了么 | [下载](https://url89.ctfile.com/f/31084289-1356991687-b3638f?p=8866) |\n| 数据呈现之美 | 凌祯 | [下载](https://url89.ctfile.com/f/31084289-1356988333-c13fbe?p=8866) |\n| 15秒的商机 | 胡涵林 | [下载](https://url89.ctfile.com/f/31084289-1357051903-88c85f?p=8866) |\n| 拉新 | 加布里埃尔・温伯格/贾斯汀・迈尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357050880-8efe20?p=8866) |\n| 超级转化率 | 陈勇 | [下载](https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866) |\n| 突破之道 | 基思 R. 麦克法兰 | [下载](https://url89.ctfile.com/f/31084289-1357043140-d38840?p=8866) |\n| 首席增长官 | 张溪梦 | [下载](https://url89.ctfile.com/f/31084289-1357030732-7d1781?p=8866) |\n| 高阶运营 | 龙共火火 | [下载](https://url89.ctfile.com/f/31084289-1357030348-feb9be?p=8866) |\n| 用户的本质 | 史蒂文・范・贝莱格姆 | [下载](https://url89.ctfile.com/f/31084289-1357030252-5372fa?p=8866) |\n| 微博营销与运营 | 秋叶/萧秋水/刘勇 | [下载](https://url89.ctfile.com/f/31084289-1357025710-bd18ec?p=8866) |\n| 微信营销与运营 | 秦阳/秋叶 | [下载](https://url89.ctfile.com/f/31084289-1357025686-646e79?p=8866) |\n| 社群营销实战手册 | 秋叶 | [下载](https://url89.ctfile.com/f/31084289-1357025680-2b0006?p=8866) |\n| 新媒体写作平台策划与运营 | 哈默 | [下载](https://url89.ctfile.com/f/31084289-1357025650-823a65?p=8866) |\n| 疯长 | 肖恩・阿美拉蒂 | [下载](https://url89.ctfile.com/f/31084289-1357024261-f8d9c6?p=8866) |\n| 重新理解创业 | 周航 | [下载](https://url89.ctfile.com/f/31084289-1357023634-2da81d?p=8866) |\n| 写作是最好的自我投资 | Spenser | [下载](https://url89.ctfile.com/f/31084289-1357023547-075742?p=8866) |\n| 刷屏 | 凯文・阿洛卡 | [下载](https://url89.ctfile.com/f/31084289-1357023409-995a61?p=8866) |\n| 冷启动：零成本做营销 | 高臻臻 | [下载](https://url89.ctfile.com/f/31084289-1357020964-613154?p=8866) |\n| 社群营销与运营 | 秋叶/秦阳 | [下载](https://url89.ctfile.com/f/31084289-1357019884-e9a51d?p=8866) |\n| 互联网下半场 | 李光斗 | [下载](https://url89.ctfile.com/f/31084289-1357017361-0a5786?p=8866) |\n| 运营之光 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1357014592-684763?p=8866) |\n| 运营之光2.0 | 黄有璨 | [下载](https://url89.ctfile.com/f/31084289-1357014652-f0a5e8?p=8866) |\n| 11.11如何卖到一个亿 | 陈炉均/陈威/马国良 | [下载](https://url89.ctfile.com/f/31084289-1357013137-cd6eae?p=8866) |\n| 用户力：需求驱动的产品、运营和商业模式 | 郝志中 | [下载](https://url89.ctfile.com/f/31084289-1357010329-24f666?p=8866) |\n| 从零开始做运营进阶篇 | 张亮 | [下载](https://url89.ctfile.com/f/31084289-1357010224-4cbecb?p=8866) |\n| 从零开始做运营入门篇 | 张亮 | [下载](https://url89.ctfile.com/f/31084289-1357009843-bcf808?p=8866) |\n| 痛点：挖掘小数据满足用户需求 | 马丁・林斯特龙 | [下载](https://url89.ctfile.com/f/31084289-1357009792-8d26d5?p=8866) |\n"
  },
  {
    "path": "md/近代.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 近代\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 巴黎和会与北京政府的内外博弈 | 邓野 | [下载](https://url89.ctfile.com/f/31084289-1356987388-21355b?p=8866) |\n| 1943：中国在十字路口 | 周锡瑞/李皓天 | [下载](https://url89.ctfile.com/f/31084289-1357022335-aaa81a?p=8866) |\n| 历史的裂缝 | 雷颐 | [下载](https://url89.ctfile.com/f/31084289-1357019896-3e4312?p=8866) |\n| 世界的演变：19世纪史（全3册） | 于尔根・奥斯特哈默 | [下载](https://url89.ctfile.com/f/31084289-1357019389-c4eb1e?p=8866) |\n| 近代中国社会的新陈代谢（插图本） | 陈旭麓 | [下载](https://url89.ctfile.com/f/31084289-1357009594-ed0802?p=8866) |\n| 缠斗：方生与未死 | 袁伟时 | [下载](https://url89.ctfile.com/f/31084289-1357008910-584887?p=8866) |\n| 北洋大时代 | 陈钦 | [下载](https://url89.ctfile.com/f/31084289-1357008775-6d619f?p=8866) |\n| 失稳的帝国 | 邢超 | [下载](https://url89.ctfile.com/f/31084289-1357007863-6c2df5?p=8866) |\n| 戊戌变法史 | 汤志钧 | [下载](https://url89.ctfile.com/f/31084289-1357007872-ab8612?p=8866) |\n| 千古大变局 | 曾纪鑫 | [下载](https://url89.ctfile.com/f/31084289-1357006495-15b155?p=8866) |\n"
  },
  {
    "path": "md/近代史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 近代史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 革故鼎新 | 杨天宏 | [下载](https://url89.ctfile.com/f/31084289-1357004677-064105?p=8866) |\n| 中国近代史 | 陈恭禄 | [下载](https://url89.ctfile.com/f/31084289-1356990388-6ec689?p=8866) |\n| 孙宝瑄日记 | 孙宝瑄 | [下载](https://url89.ctfile.com/f/31084289-1356989530-0945d8?p=8866) |\n| 晚清三国 | 李洁 | [下载](https://url89.ctfile.com/f/31084289-1356985882-b16155?p=8866) |\n| 中国古道 | 伊莎贝拉・韦廉臣 | [下载](https://url89.ctfile.com/f/31084289-1357053949-72e6cc?p=8866) |\n| 茶叶战争（修订版） | 周重林 | [下载](https://url89.ctfile.com/f/31084289-1357045594-add593?p=8866) |\n| 历史的叙述方式 | 茅海建 | [下载](https://url89.ctfile.com/f/31084289-1357044724-930fe0?p=8866) |\n| 1848：革命之年 | 迈克・拉波特 | [下载](https://url89.ctfile.com/f/31084289-1357044028-1c4464?p=8866) |\n| 温莎王朝 | 汤姆・利文 | [下载](https://url89.ctfile.com/f/31084289-1357043893-b10f8d?p=8866) |\n| 五四运动史：现代中国的知识革命 | 周策纵 | [下载](https://url89.ctfile.com/f/31084289-1357041817-36939b?p=8866) |\n| 中华帝国的衰落 | 魏斐德 | [下载](https://url89.ctfile.com/f/31084289-1357034473-fa1b42?p=8866) |\n| 二战爆发前十天 | 理查德・奥弗里 | [下载](https://url89.ctfile.com/f/31084289-1357033210-186574?p=8866) |\n| 甲午两甲子：忆与思 | 姜鸣/贾葭 | [下载](https://url89.ctfile.com/f/31084289-1357032745-ec0c85?p=8866) |\n| 家族、土地与祖先 | 易劳逸 | [下载](https://url89.ctfile.com/f/31084289-1357031032-8c3eae?p=8866) |\n| 鸦片战争 | 蓝诗玲 | [下载](https://url89.ctfile.com/f/31084289-1357029562-9dc4cd?p=8866) |\n| 辛亥：计划外革命 | 雪珥 | [下载](https://url89.ctfile.com/f/31084289-1357022839-3d4f1f?p=8866) |\n| 中国近代史：1840-1937 | 蒋廷黻 | [下载](https://url89.ctfile.com/f/31084289-1357022515-8c554f?p=8866) |\n| 国家的启蒙 | 马国川 | [下载](https://url89.ctfile.com/f/31084289-1357021972-56b623?p=8866) |\n| 《伦敦新闻画报》记录的民国1926-1949（套装4册） | 沈弘 | [下载](https://url89.ctfile.com/f/31084289-1357022002-8a038c?p=8866) |\n| 两岸新编中国近代史·晚清卷（全2册） | 王建朗/黄克武 | [下载](https://url89.ctfile.com/f/31084289-1357015321-dbf17d?p=8866) |\n| 两岸新编中国近代史·民国卷（全2册） | 王建朗/黄克武 | [下载](https://url89.ctfile.com/f/31084289-1357015309-a31b4d?p=8866) |\n| 潮来潮去：海关与中国现代性的全球起源 | 方德万 | [下载](https://url89.ctfile.com/f/31084289-1357014019-0a08e6?p=8866) |\n| 中国现代史 | 徐中约 | [下载](https://url89.ctfile.com/f/31084289-1357010485-50d61d?p=8866) |\n| 中国近代通史（套装共10册） | 张海鹏 | [下载](https://url89.ctfile.com/f/31084289-1357009672-5434a0?p=8866) |\n| 甲午殇思 | 刘声东 | [下载](https://url89.ctfile.com/f/31084289-1357009177-e05cf4?p=8866) |\n| 东亚近代文明史上的梁启超 | 狭间直树 | [下载](https://url89.ctfile.com/f/31084289-1357008352-dff23b?p=8866) |\n| 北洋军阀史话 | 丁中江 | [下载](https://url89.ctfile.com/f/31084289-1357006738-a84f44?p=8866) |\n| 历史的底稿 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866) |\n| 极乐诱惑：太平天国的兴亡 | 赫连勃勃大王 | [下载](https://url89.ctfile.com/f/31084289-1357005265-493112?p=8866) |\n| 辛亥：摇晃的中国 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005151-2a156e?p=8866) |\n| 中国1927·谁主沉浮 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357005079-cc9fd4?p=8866) |\n| 北洋裂变 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005022-6f69d4?p=8866) |\n| 慈禧私生活回忆录 | 裕德龄 | [下载](https://url89.ctfile.com/f/31084289-1357004989-2742d5?p=8866) |\n| 大变局1911 | 叶曙明 | [下载](https://url89.ctfile.com/f/31084289-1357004980-3ead30?p=8866) |\n| 曾国藩的正面与侧面 | 张宏杰 | [下载](https://url89.ctfile.com/f/31084289-1357004977-3d6193?p=8866) |\n| 重说中国近代史 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357004869-d245f9?p=8866) |\n| 真实的汪精卫 | 林思云 | [下载](https://url89.ctfile.com/f/31084289-1357004836-d516eb?p=8866) |\n| 中国误会了袁世凯 | 吕峥 | [下载](https://url89.ctfile.com/f/31084289-1357004683-ae60b4?p=8866) |\n"
  },
  {
    "path": "md/近视.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 近视\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 近视怎么办：眼科医生教你正确配镜和治疗 | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357007638-12f9a2?p=8866) |\n"
  },
  {
    "path": "md/进化.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 进化\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们为什么长这样 | 爱丽丝・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1375498861-27862a?p=8866) |\n| 达尔文的战争 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1375512373-c184fa?p=8866) |\n| 奇葩进化论（套装共7册） | 玛拉·J. 哈尔特等 | [下载](https://url89.ctfile.com/f/31084289-1375513783-2e2ad9?p=8866) |\n| 进化的故事 | 奥伦・哈曼 | [下载](https://url89.ctfile.com/f/31084289-1357000825-3fbf8c?p=8866) |\n| 生命进化的跃升 | 尼克・莱恩 | [下载](https://url89.ctfile.com/f/31084289-1356997789-046166?p=8866) |\n| 与达尔文共进晚餐 | 乔纳森・西尔弗顿 | [下载](https://url89.ctfile.com/f/31084289-1356990160-57bfeb?p=8866) |\n| 人类成功统治地球的秘密 | 约瑟夫・亨里奇 | [下载](https://url89.ctfile.com/f/31084289-1356983602-a8d52c?p=8866) |\n| 人类起源的故事 | 大卫・赖克 | [下载](https://url89.ctfile.com/f/31084289-1357041208-76b02f?p=8866) |\n| 人类的算法 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033690-f7e5dd?p=8866) |\n| 驯化 | 艾丽丝・罗伯茨 | [下载](https://url89.ctfile.com/f/31084289-1357031020-9dc347?p=8866) |\n| 尼安德特人 | 斯万特・帕博 | [下载](https://url89.ctfile.com/f/31084289-1357029025-e57f2e?p=8866) |\n| 美的进化 | 理查德·O.普鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1357027783-fd1f03?p=8866) |\n| 盲眼钟表匠 | 理查德・道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357023208-874cd3?p=8866) |\n| 未完成的进化 | 凯文・拉兰德 | [下载](https://url89.ctfile.com/f/31084289-1357023028-0a6723?p=8866) |\n| 第五次开始 | 罗伯特・L .凯利 | [下载](https://url89.ctfile.com/f/31084289-1357021066-d7efd9?p=8866) |\n| 如何活出生命的意义 | 杰西・贝林 | [下载](https://url89.ctfile.com/f/31084289-1357019359-395102?p=8866) |\n| 我们人类的进化 | 亚历山大・哈考特 | [下载](https://url89.ctfile.com/f/31084289-1357017460-bc0979?p=8866) |\n| 地球上最伟大的表演 | 理查德・毛姆道金斯 | [下载](https://url89.ctfile.com/f/31084289-1357014634-2565d2?p=8866) |\n| 心智探奇 | 史蒂芬・平克 | [下载](https://url89.ctfile.com/f/31084289-1357010095-082be5?p=8866) |\n| 神似祖先 | 郑也夫 | [下载](https://url89.ctfile.com/f/31084289-1357009024-0025e8?p=8866) |\n"
  },
  {
    "path": "md/远古.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 远古\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 山海经密码大全集（套装共5册） | 阿菩 | [下载](https://url89.ctfile.com/f/31084289-1357006714-464296?p=8866) |\n| 青铜时代：五百年的大局观（套装共5册） | 潇水 | [下载](https://url89.ctfile.com/f/31084289-1357006483-1c8e69?p=8866) |\n"
  },
  {
    "path": "md/迪士尼.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 迪士尼\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 迪士尼大电影双语阅读（共18册） | 美国迪士尼公司 | [下载](https://url89.ctfile.com/f/31084289-1357017088-c29863?p=8866) |\n"
  },
  {
    "path": "md/迷幻.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 迷幻\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 众妙之门（精装插图版） | 阿道司・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357009396-d57366?p=8866) |\n"
  },
  {
    "path": "md/逆袭.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 逆袭\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 格局逆袭2 | 宗宁 | [下载](https://url89.ctfile.com/f/31084289-1357049563-1105d3?p=8866) |\n| 说话体现格局，决定结局 | 凌岚 | [下载](https://url89.ctfile.com/f/31084289-1357037023-583ee7?p=8866) |\n"
  },
  {
    "path": "md/选举.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 选举\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 美国政党与选举（牛津通识读本） | 桑迪・梅塞尔 | [下载](https://url89.ctfile.com/f/31084289-1357052806-3b5657?p=8866) |\n"
  },
  {
    "path": "md/通俗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 通俗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 唐朝定居指南（新版） | 森林鹿 | [下载](https://url89.ctfile.com/f/31084289-1356987265-e72b11?p=8866) |\n| 唐朝穿越指南（新版） | 森林鹿 | [下载](https://url89.ctfile.com/f/31084289-1356987238-a78002?p=8866) |\n| 问中医几度秋凉（增订版） | 艾宁 | [下载](https://url89.ctfile.com/f/31084289-1356984574-129632?p=8866) |\n| 5000年文明启示录 | 威廉·H.麦克尼尔 | [下载](https://url89.ctfile.com/f/31084289-1356982480-ddd078?p=8866) |\n| 你的误区 | 韦恩・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357051744-d5fffa?p=8866) |\n| 人人都该懂的心理学 | G. 尼尔・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357035829-d36c8b?p=8866) |\n| 张鸣重说晚清民国 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357010212-b5b1e6?p=8866) |\n| 半小时漫画中国史 | 二混子 | [下载](https://url89.ctfile.com/f/31084289-1357009573-2a5b19?p=8866) |\n| 哇，历史原来可以这样学（套装共2册） | 林欣浩 | [下载](https://url89.ctfile.com/f/31084289-1357007002-42ea06?p=8866) |\n"
  },
  {
    "path": "md/通信.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 通信\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 信息技术简史 | 吕廷杰等 | [下载](https://url89.ctfile.com/f/31084289-1357043158-2c151c?p=8866) |\n| 5G+：5G如何改变社会 | 李正茂 | [下载](https://url89.ctfile.com/f/31084289-1357037314-20cf94?p=8866) |\n"
  },
  {
    "path": "md/通史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 通史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 讲谈社·中国的历史（全十卷） | 宫本一夫/平势隆郎等 | [下载](https://url89.ctfile.com/f/31084289-1357010005-691c73?p=8866) |\n| 德国通史 | 丁建弘  | [下载](https://url89.ctfile.com/f/31084289-1357006747-c7bd73?p=8866) |\n"
  },
  {
    "path": "md/通识.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 通识\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 牛津通识课：理学套装（全4册） | 麦克・戈德史密斯等 | [下载](https://url89.ctfile.com/f/31084289-1375496950-51ea21?p=8866) |\n| 如何像人类学家一样思考·鹈鹕丛书 | 马修・恩格尔克 | [下载](https://url89.ctfile.com/f/31084289-1375501426-4e56e5?p=8866) |\n| 外研社百科通识文库（世界万象大套装共114本） | 伏尔泰等 | [下载](https://url89.ctfile.com/f/31084289-1375502542-168165?p=8866) |\n| 欧美名校通识课（第一辑）（套装7册） | 亨利·M.塞尔等 | [下载](https://url89.ctfile.com/f/31084289-1375502941-2add8e?p=8866) |\n| 牛津通识读本百本纪念套装（共100册） | 查尔斯・福斯特等 | [下载](https://url89.ctfile.com/f/31084289-1375506448-03adea?p=8866) |\n| 人文精神的伟大冒险 | 菲利普·E.毕肖普 | [下载](https://url89.ctfile.com/f/31084289-1356991423-35302d?p=8866) |\n| 德国文学（牛津通识读本） | 尼古拉斯・博伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357053517-29129a?p=8866) |\n| 一眼识破真相的思考力 | 丹尼尔・列维汀 | [下载](https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866) |\n| 戏剧（牛津通识读本） | 马文・卡尔森 | [下载](https://url89.ctfile.com/f/31084289-1357052719-637dff?p=8866) |\n| 政治学通识 | 包刚升 | [下载](https://url89.ctfile.com/f/31084289-1357045963-45d78b?p=8866) |\n"
  },
  {
    "path": "md/逻辑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 逻辑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 底层逻辑：看清这个世界的底牌 | 刘润 | [下载](https://url89.ctfile.com/f/31084289-1375499026-8d4b4e?p=8866) |\n| 如何证明你不是僵尸 | 杰里米・斯特朗姆 | [下载](https://url89.ctfile.com/f/31084289-1375500931-0f078b?p=8866) |\n| 批判性思维与说服性写作 | 路易丝・卡茨 | [下载](https://url89.ctfile.com/f/31084289-1375501387-c9409e?p=8866) |\n| 给职场人的5堂逻辑思考课 | 深泽真太郎 | [下载](https://url89.ctfile.com/f/31084289-1375510339-e28cbd?p=8866) |\n| 高效论证 | 大卫・莫罗 | [下载](https://url89.ctfile.com/f/31084289-1375510426-a96479?p=8866) |\n| 罗辑思维（全5册） | 罗振宇 | [下载](https://url89.ctfile.com/f/31084289-1357004005-539071?p=8866) |\n| 金岳霖哲学三书 | 金岳霖 | [下载](https://url89.ctfile.com/f/31084289-1357001944-360496?p=8866) |\n| 逻辑的力量 | 郑乐隽 | [下载](https://url89.ctfile.com/f/31084289-1357000540-cc1401?p=8866) |\n| 逻辑新引·怎样判别是非 | 殷海光 | [下载](https://url89.ctfile.com/f/31084289-1357000414-fe83d1?p=8866) |\n| 人人都该懂的批判性思维 | 莎伦・M. 凯 | [下载](https://url89.ctfile.com/f/31084289-1356998956-21da9b?p=8866) |\n| 春蚕吐丝 | 陈鼓应 | [下载](https://url89.ctfile.com/f/31084289-1356997690-f60a4b?p=8866) |\n| 我的最后一本口才书 | 陈慕妤 | [下载](https://url89.ctfile.com/f/31084289-1356995128-f6b3f7?p=8866) |\n| 你以为你以为的就是你以为的吗？ | 朱利安・巴吉尼/杰里米・斯唐鲁姆 | [下载](https://url89.ctfile.com/f/31084289-1356994855-13dc37?p=8866) |\n| 你以为你以为的就是你以为的吗？2 | 朱利安・巴吉尼 | [下载](https://url89.ctfile.com/f/31084289-1356994849-7d2318?p=8866) |\n| 身边的逻辑学 | 伯纳・派顿 | [下载](https://url89.ctfile.com/f/31084289-1356985057-68506c?p=8866) |\n| 学会提问（原书第11版） | 尼尔・布朗/斯图尔特・基利 | [下载](https://url89.ctfile.com/f/31084289-1357052875-2a1a1c?p=8866) |\n| 一眼识破真相的思考力 | 丹尼尔・列维汀 | [下载](https://url89.ctfile.com/f/31084289-1357052740-0a8fd4?p=8866) |\n| 逻辑学原来很有趣 | 齐露露 | [下载](https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866) |\n| 全脑演讲 | 大卫祁 | [下载](https://url89.ctfile.com/f/31084289-1357052488-95594d?p=8866) |\n| 逻辑学入门很简单 | 兰晓华 | [下载](https://url89.ctfile.com/f/31084289-1357051219-fc66ee?p=8866) |\n| 迷人的逻辑题 | 亚历克斯・贝洛斯 | [下载](https://url89.ctfile.com/f/31084289-1357051222-44b58a?p=8866) |\n| 小逻辑 | 黑格尔 | [下载](https://url89.ctfile.com/f/31084289-1357043518-deed3d?p=8866) |\n| 麦肯锡教我的写作武器 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357043101-63bfb8?p=8866) |\n| 麦肯锡教我的谈判武器 | 高杉尚孝 | [下载](https://url89.ctfile.com/f/31084289-1357042744-bacddb?p=8866) |\n| 麦肯锡教我的思考武器 | 安宅和人 | [下载](https://url89.ctfile.com/f/31084289-1357042711-680eed?p=8866) |\n| 反惯性思维 | 任白 | [下载](https://url89.ctfile.com/f/31084289-1357041880-037a54?p=8866) |\n| 12堂趣味逻辑课 | 阿里・阿莫萨维 | [下载](https://url89.ctfile.com/f/31084289-1357040821-2fd4bd?p=8866) |\n| 理性动物 | 道格拉斯・肯里克 | [下载](https://url89.ctfile.com/f/31084289-1357037677-00590a?p=8866) |\n| 11堂极简系统思维课 | 史蒂文・舒斯特 | [下载](https://url89.ctfile.com/f/31084289-1357037311-961ac9?p=8866) |\n| 三个逻辑学家去酒吧 | 霍格尔・丹贝克 | [下载](https://url89.ctfile.com/f/31084289-1357032730-cc30a1?p=8866) |\n| 逻辑思维与诡辩 | 张晓芒 | [下载](https://url89.ctfile.com/f/31084289-1357030423-4cac61?p=8866) |\n| 逻辑十九讲（美国新思想运动之父的逻辑学入门读物） | 威廉・沃克・阿特金森 | [下载](https://url89.ctfile.com/f/31084289-1357028428-351774?p=8866) |\n| 有用的逻辑学（第2版） | 梅森・皮里 | [下载](https://url89.ctfile.com/f/31084289-1357025659-255f15?p=8866) |\n| 逻辑工作法 | 西村克己 | [下载](https://url89.ctfile.com/f/31084289-1357024162-059c68?p=8866) |\n| 逻辑十九讲 | 威廉姆・沃克・阿特金森  | [下载](https://url89.ctfile.com/f/31084289-1357015987-649c89?p=8866) |\n| 隐性逻辑 | 卡尔・诺顿 | [下载](https://url89.ctfile.com/f/31084289-1357012783-6ffa1c?p=8866) |\n| 一本小小的蓝色逻辑书 | 布兰登・罗伊尔 | [下载](https://url89.ctfile.com/f/31084289-1357012690-ff82d5?p=8866) |\n| 清醒思考的艺术 | 罗尔夫・多贝里 | [下载](https://url89.ctfile.com/f/31084289-1357009120-be86f2?p=8866) |\n| 结构思考力 | 李忠秋 | [下载](https://url89.ctfile.com/f/31084289-1357008097-dc3186?p=8866) |\n| 金字塔原理 | 芭芭拉・明托 | [下载](https://url89.ctfile.com/f/31084289-1357007536-e10bf4?p=8866) |\n| 神逻辑：不讲道理的人怎么总有理 | 阿里·阿莫萨维 | [下载](https://url89.ctfile.com/f/31084289-1357007029-6c71ef?p=8866) |\n| 批判性思维（原书第10版） | 布鲁克·诺埃尔·摩尔 | [下载](https://url89.ctfile.com/f/31084289-1357006699-e54933?p=8866) |\n"
  },
  {
    "path": "md/道家.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 道家\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 周易参同契（全本全注全译） | 章偉文 | [下载](https://url89.ctfile.com/f/31084289-1357053709-9a091c?p=8866) |\n| 太平经（全本全注全译） | 杨寄林译注 | [下载](https://url89.ctfile.com/f/31084289-1357043176-3067b7?p=8866) |\n| 终南山密码 | 巫童 | [下载](https://url89.ctfile.com/f/31084289-1357033876-257d0b?p=8866) |\n| 梁冬说庄子系列（套装共六册） | 梁冬 | [下载](https://url89.ctfile.com/f/31084289-1357031500-73ab77?p=8866) |\n| 东西之道 | 汉斯・格奥尔格・梅勒 | [下载](https://url89.ctfile.com/f/31084289-1357024015-dece5c?p=8866) |\n| 道德经 | 老子 | [下载](https://url89.ctfile.com/f/31084289-1357008484-d7e885?p=8866) |\n| 当道家统治中国 | 林嘉文 | [下载](https://url89.ctfile.com/f/31084289-1357006966-d8d944?p=8866) |\n"
  },
  {
    "path": "md/道德经.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 道德经\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 道德经说什么 | 韩鹏杰 | [下载](https://url89.ctfile.com/f/31084289-1357034326-c79462?p=8866) |\n| 道德经说什么：一部教你做得道之人的生命学宝典 | 罗大伦 | [下载](https://url89.ctfile.com/f/31084289-1357033966-5668a0?p=8866) |\n"
  },
  {
    "path": "md/邓巴.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 邓巴\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 社群的进化 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033579-4ebdbf?p=8866) |\n| 最好的亲密关系 | 罗宾・邓巴 | [下载](https://url89.ctfile.com/f/31084289-1357033474-199aa4?p=8866) |\n"
  },
  {
    "path": "md/都市.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 都市\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 欲望都市 | 坎迪斯・布什奈尔 | [下载](https://url89.ctfile.com/f/31084289-1356990379-bb75be?p=8866) |\n| 北上广女子图鉴 | 王小圈 | [下载](https://url89.ctfile.com/f/31084289-1357048732-7b170e?p=8866) |\n"
  },
  {
    "path": "md/酷刑.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 酷刑\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 人类酷刑简史 | 马克·P.唐纳利/丹尼尔·迪尔 | [下载](https://url89.ctfile.com/f/31084289-1357030393-6bbecd?p=8866) |\n"
  },
  {
    "path": "md/重口味.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 重口味\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 肠子的小心思 | 朱莉娅・恩德斯 | [下载](https://url89.ctfile.com/f/31084289-1357011640-c1e2e4?p=8866) |\n| 面包匠的狂欢节 | 安德鲁・林赛 | [下载](https://url89.ctfile.com/f/31084289-1357010767-26c0e8?p=8866) |\n"
  },
  {
    "path": "md/重庆.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 重庆\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 文字与图像间的重庆（套装3册） | 杨宇振 | [下载](https://url89.ctfile.com/f/31084289-1375506388-3c8521?p=8866) |\n"
  },
  {
    "path": "md/野史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 野史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 挖历史（套装共2册） | 私家野史 | [下载](https://url89.ctfile.com/f/31084289-1357039153-c70834?p=8866) |\n| 清朝野史大观（全三册） | 小横香室主人 | [下载](https://url89.ctfile.com/f/31084289-1357020262-2939f2?p=8866) |\n"
  },
  {
    "path": "md/量化.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 量化\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 量化自我 | 吉娜・聂夫/唐恩・娜芙斯 | [下载](https://url89.ctfile.com/f/31084289-1357051282-277bb2?p=8866) |\n| 零起点Python大数据与量化交易 | 何海群 | [下载](https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866) |\n| 小散逆袭：手把手教你做量化定投 | 万磊 | [下载](https://url89.ctfile.com/f/31084289-1357044064-33fea5?p=8866) |\n| 超额收益融合战法 | 约翰・帕利卡 | [下载](https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866) |\n| 战胜一切市场的人 | 爱德华・索普 | [下载](https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866) |\n| 量化投资策略 | 理查德・托托里罗 | [下载](https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866) |\n| 解读量化投资 | 忻海 | [下载](https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866) |\n| 打开量化投资的黑箱（原书第2版） | 里什・纳兰 | [下载](https://url89.ctfile.com/f/31084289-1357012117-b0cdab?p=8866) |\n"
  },
  {
    "path": "md/量子.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 量子\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 李·斯莫林讲量子引力 | 李・斯莫林 | [下载](https://url89.ctfile.com/f/31084289-1375493503-da4a48?p=8866) |\n| 量子空间 | 吉姆・巴戈特 | [下载](https://url89.ctfile.com/f/31084289-1357001617-cba308?p=8866) |\n| 第一推动丛书·量子探秘系列（新版套装共5册） | 布鲁斯・罗森布鲁姆等 | [下载](https://url89.ctfile.com/f/31084289-1357037227-c08bef?p=8866) |\n| 无中生有的世界 | 吴京平 | [下载](https://url89.ctfile.com/f/31084289-1357034827-650bc5?p=8866) |\n| 邀你共进量子早餐 | 索尼娅・费尔南德斯・比达尔/弗兰塞斯克・米拉列斯 | [下载](https://url89.ctfile.com/f/31084289-1357033021-6aeca5?p=8866) |\n| 量子世界的发现之旅 | 迈克尔・S. 沃克 | [下载](https://url89.ctfile.com/f/31084289-1357028374-da6a86?p=8866) |\n| 给孩子讲量子力学 | 李淼 | [下载](https://url89.ctfile.com/f/31084289-1357022557-47995a?p=8866) |\n| 现实不似你所见 | 卡洛・罗韦利 | [下载](https://url89.ctfile.com/f/31084289-1357021264-7e2649?p=8866) |\n| 上帝掷骰子吗 | 曹天元  | [下载](https://url89.ctfile.com/f/31084289-1357010815-159c8d?p=8866) |\n| 神秘的量子生命 | 吉姆・艾尔/约翰乔・麦克法登 | [下载](https://url89.ctfile.com/f/31084289-1357008367-b73f5f?p=8866) |\n"
  },
  {
    "path": "md/金融.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 金融\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 金钱革命 | 安妮・博登 | [下载](https://url89.ctfile.com/f/31084289-1375490917-6f069c?p=8866) |\n| 财富是认知的变现 | 舒泰峰 | [下载](https://url89.ctfile.com/f/31084289-1375490950-03b116?p=8866) |\n| 耐心的资本 | 维多利亚・伊凡希娜/乔希・勒纳 | [下载](https://url89.ctfile.com/f/31084289-1375495492-4e8778?p=8866) |\n| 超级资管 | 乔永远/孔祥 | [下载](https://url89.ctfile.com/f/31084289-1375497304-dc9d0d?p=8866) |\n| 行为金融学 | 詹姆斯・蒙蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1375497613-50ebe9?p=8866) |\n| 新金融帝国 | 田中道昭 | [下载](https://url89.ctfile.com/f/31084289-1375497616-4a5b13?p=8866) |\n| 中国资本市场变革 | 肖钢 | [下载](https://url89.ctfile.com/f/31084289-1375497634-635389?p=8866) |\n| 行为投资者 | 丹尼尔・克罗斯比 | [下载](https://url89.ctfile.com/f/31084289-1375498837-ac3b7a?p=8866) |\n| 投资核心资产 | 王德伦等 | [下载](https://url89.ctfile.com/f/31084289-1375499194-e70303?p=8866) |\n| 美国货币史（精校本） | 米尔顿・弗里德曼 | [下载](https://url89.ctfile.com/f/31084289-1375499098-0300b3?p=8866) |\n| 非凡的成功 | 大卫・史文森 | [下载](https://url89.ctfile.com/f/31084289-1375499398-92a3da?p=8866) |\n| 华尔街教父格雷厄姆传 | 本杰明・格雷厄姆 | [下载](https://url89.ctfile.com/f/31084289-1375500121-c5ae86?p=8866) |\n| 羊群的共识 | 肖小跑 | [下载](https://url89.ctfile.com/f/31084289-1375500187-e6d4a0?p=8866) |\n| 半小时漫画经济学4：理财篇 | 陈磊 | [下载](https://url89.ctfile.com/f/31084289-1375500430-536636?p=8866) |\n| 预测：经济、周期与市场泡沫 | 洪灝 | [下载](https://url89.ctfile.com/f/31084289-1375502572-c1aab4?p=8866) |\n| 美联储 | 威廉・格雷德 | [下载](https://url89.ctfile.com/f/31084289-1375502575-8350f8?p=8866) |\n| 文明、资本与投资 | 丁昶 | [下载](https://url89.ctfile.com/f/31084289-1375502977-a6238f?p=8866) |\n| CFA协会金融前沿译丛（套装共5册） | 杰弗里等 | [下载](https://url89.ctfile.com/f/31084289-1375504405-6fda6c?p=8866) |\n| 美元真相 | 达尔辛妮・大卫 | [下载](https://url89.ctfile.com/f/31084289-1375508056-78f5a9?p=8866) |\n| 区块链实战：从技术创新到商业模式 | 冒志鸿/陈俊 | [下载](https://url89.ctfile.com/f/31084289-1375509589-e802c5?p=8866) |\n| 趋势的力量 | 李迅雷 | [下载](https://url89.ctfile.com/f/31084289-1375509727-20b6bf?p=8866) |\n| 投资：嘉信理财持续创新之道 | 查尔斯・施瓦布 | [下载](https://url89.ctfile.com/f/31084289-1375509862-81aced?p=8866) |\n| 交易的逻辑与艺术 | 陈侃迪 | [下载](https://url89.ctfile.com/f/31084289-1375510012-4179cc?p=8866) |\n| 崩盘：全球金融危机如何重塑世界 | 亚当・图兹 | [下载](https://url89.ctfile.com/f/31084289-1375510096-bd2d0a?p=8866) |\n| 交易的真相 | 极地之鹰 | [下载](https://url89.ctfile.com/f/31084289-1375510273-a95a54?p=8866) |\n| 巴芒演义 | 唐朝 | [下载](https://url89.ctfile.com/f/31084289-1375510399-e55bd3?p=8866) |\n| 新增点 | 管清友等 | [下载](https://url89.ctfile.com/f/31084289-1375510843-826852?p=8866) |\n| 地产是部金融史 | 黄立坚 | [下载](https://url89.ctfile.com/f/31084289-1375511071-933b91?p=8866) |\n| 钱的千年兴衰史 | 金菁 | [下载](https://url89.ctfile.com/f/31084289-1375511593-065a8c?p=8866) |\n| 风险投资的逻辑与常识 | 莱恩・巴特森/肯・弗里曼 | [下载](https://url89.ctfile.com/f/31084289-1375512811-ca0121?p=8866) |\n| 黄金的故事 | 詹姆斯・莱德贝特 | [下载](https://url89.ctfile.com/f/31084289-1375513099-a6d2c2?p=8866) |\n| 征服市场的人 | 格里高利・祖克曼 | [下载](https://url89.ctfile.com/f/31084289-1375513291-9c5177?p=8866) |\n| 金融激荡300年 | 瀛洲客 | [下载](https://url89.ctfile.com/f/31084289-1375513660-81fac3?p=8866) |\n| 经典技术分析（原书第3版）（上） | 小查尔斯·D. 柯克帕特里克 | [下载](https://url89.ctfile.com/f/31084289-1375513708-0faf51?p=8866) |\n| 投资者的朋友 | 朱宁 | [下载](https://url89.ctfile.com/f/31084289-1375513738-d81882?p=8866) |\n| 蜡烛图方法（原书第2版） | 斯蒂芬·W. 比加洛 | [下载](https://url89.ctfile.com/f/31084289-1357004659-15d3f7?p=8866) |\n| 投资者的敌人 | 朱宁 | [下载](https://url89.ctfile.com/f/31084289-1357004545-ac76c4?p=8866) |\n| 投资策略实战分析（原书第4版·典藏版） | 詹姆斯・奥肖内西 | [下载](https://url89.ctfile.com/f/31084289-1357004647-3d447c?p=8866) |\n| 蜡烛图精解（典藏版） | 格里高里・莫里斯/赖安・里奇菲尔德 | [下载](https://url89.ctfile.com/f/31084289-1357004524-8def08?p=8866) |\n| 行为金融与投资心理学（原书第6版） | 约翰 R. 诺夫辛格 | [下载](https://url89.ctfile.com/f/31084289-1357004407-2a20bf?p=8866) |\n| 稳赚：提升理财收益的投资工具 | 李红萍 | [下载](https://url89.ctfile.com/f/31084289-1357004362-ebb680?p=8866) |\n| 常赢投资系列（套装共5册） | 帕特・多尔西等 | [下载](https://url89.ctfile.com/f/31084289-1357004086-a896ca?p=8866) |\n| 格雷厄姆经典投资策略 | 珍妮特・洛尔 | [下载](https://url89.ctfile.com/f/31084289-1357004020-1bbe83?p=8866) |\n| 文明、现代化、价值投资与中国 | 李录 | [下载](https://url89.ctfile.com/f/31084289-1357003972-3db08b?p=8866) |\n| 投资交易心理分析（典藏版） | 布雷特 N. 斯蒂恩博格 | [下载](https://url89.ctfile.com/f/31084289-1357003861-7b210f?p=8866) |\n| 驾驭周期：自上而下的投资逻辑 | 乔治・达格尼诺 | [下载](https://url89.ctfile.com/f/31084289-1357003702-297e59?p=8866) |\n| 票据革命 | 张立洲 | [下载](https://url89.ctfile.com/f/31084289-1357003528-1640ad?p=8866) |\n| 世风日上 | 方三文 | [下载](https://url89.ctfile.com/f/31084289-1357003387-314f73?p=8866) |\n| 货币战争 | 詹姆斯・里卡兹 | [下载](https://url89.ctfile.com/f/31084289-1357003357-d4da5a?p=8866) |\n| 徐远的投资课 | 徐远 | [下载](https://url89.ctfile.com/f/31084289-1357003006-c3ad83?p=8866) |\n| 24堂财富课 | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357002823-f70963?p=8866) |\n| 像读悬疑小说一样读懂会计学 | 田中靖浩 | [下载](https://url89.ctfile.com/f/31084289-1357002445-d51d8d?p=8866) |\n| 交易圣经 | 布伦特・奔富 | [下载](https://url89.ctfile.com/f/31084289-1357002088-ed573d?p=8866) |\n| 财富管理的行为金融 | 迈克尔·M.庞皮恩 | [下载](https://url89.ctfile.com/f/31084289-1357001725-bf1b89?p=8866) |\n| 金融科技新时代 | 伊夫・埃奥内/埃尔维・芒斯龙 | [下载](https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866) |\n| 财富思维 | 李若问 | [下载](https://url89.ctfile.com/f/31084289-1357000345-3f82f4?p=8866) |\n| 漫画投资学一看就懂 | 武敬敏 | [下载](https://url89.ctfile.com/f/31084289-1356999472-902044?p=8866) |\n| 美元病 | 叶冰 | [下载](https://url89.ctfile.com/f/31084289-1356998812-5c6954?p=8866) |\n| 结构性改革 | 黄奇帆 | [下载](https://url89.ctfile.com/f/31084289-1356997597-3d930f?p=8866) |\n| 投资21戒 | 本・斯坦 | [下载](https://url89.ctfile.com/f/31084289-1356995251-996b19?p=8866) |\n| ETF全球投资指南 | 王延巍 | [下载](https://url89.ctfile.com/f/31084289-1356994768-9ce779?p=8866) |\n| 大钱细思 | 乔尔・蒂林哈斯特 | [下载](https://url89.ctfile.com/f/31084289-1356994555-74ad3d?p=8866) |\n| 投资的怪圈 | 贾森・茨威格 | [下载](https://url89.ctfile.com/f/31084289-1356993529-d39e9f?p=8866) |\n| 家庭财富保卫攻略 | 王昊 | [下载](https://url89.ctfile.com/f/31084289-1356992215-534761?p=8866) |\n| 借钱：利息、债务和资本的故事 | 查尔斯・盖斯特 | [下载](https://url89.ctfile.com/f/31084289-1356991303-09732d?p=8866) |\n| 长期投资 | 弗朗西斯科・加西亚・帕拉梅斯 | [下载](https://url89.ctfile.com/f/31084289-1356991150-020ce0?p=8866) |\n| 新货币战争 | 诺伯特・海林 | [下载](https://url89.ctfile.com/f/31084289-1356990925-93e06e?p=8866) |\n| 今天我们怎样做银行 | 陈琳 | [下载](https://url89.ctfile.com/f/31084289-1356990358-270f5d?p=8866) |\n| 叙事经济学 | 罗伯特・希勒 | [下载](https://url89.ctfile.com/f/31084289-1356990217-d9a829?p=8866) |\n| 超额收益2 | 刘哲 | [下载](https://url89.ctfile.com/f/31084289-1356989473-64fb2e?p=8866) |\n| 5G金融 | 莫开伟/陈名银/邱泉 | [下载](https://url89.ctfile.com/f/31084289-1356988384-74644e?p=8866) |\n| 全球房地产 | 夏磊/任泽平  | [下载](https://url89.ctfile.com/f/31084289-1356988075-bb96a4?p=8866) |\n| 非对称风险 | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866) |\n| 一个投机者的告白（实战版） | 安纳金 | [下载](https://url89.ctfile.com/f/31084289-1356986923-175ba6?p=8866) |\n| 投资的常识 | 布拉德福德・康纳尔等 | [下载](https://url89.ctfile.com/f/31084289-1356986503-d6017c?p=8866) |\n| 适应性市场 | 罗闻全 | [下载](https://url89.ctfile.com/f/31084289-1356985786-732afc?p=8866) |\n| 水库论坛欧神作品（共2册） | 欧成效 | [下载](https://url89.ctfile.com/f/31084289-1356985558-77cac1?p=8866) |\n| 无常的博弈 | 陆一 | [下载](https://url89.ctfile.com/f/31084289-1356985033-817187?p=8866) |\n| 我是怎么割韭菜的 | 查尔斯・庞兹 | [下载](https://url89.ctfile.com/f/31084289-1356984592-f438eb?p=8866) |\n| 富可敌国（经典版） | 塞巴斯蒂安・马拉比 | [下载](https://url89.ctfile.com/f/31084289-1357053043-9f3f2b?p=8866) |\n| 对冲 | 阿莉森・施拉格 | [下载](https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866) |\n| 精明投资者的满分课 | 孙旭东等 | [下载](https://url89.ctfile.com/f/31084289-1357052842-aa3ea3?p=8866) |\n| 最后一个金融大鳄2 | 邓荣栋 | [下载](https://url89.ctfile.com/f/31084289-1357052422-c462a6?p=8866) |\n| 全球金融体系 | 黄海洲 | [下载](https://url89.ctfile.com/f/31084289-1357051942-839ed7?p=8866) |\n| 最后一个金融大鳄 | 邓荣栋 | [下载](https://url89.ctfile.com/f/31084289-1357051852-ff30a4?p=8866) |\n| 股市趋势技术分析圣经 | 理查德·W·夏巴克 | [下载](https://url89.ctfile.com/f/31084289-1357051795-974f15?p=8866) |\n| 解读华尔街（原书第5版） | 杰弗里 B 利特尔 | [下载](https://url89.ctfile.com/f/31084289-1357051507-55c3ee?p=8866) |\n| 投资心理学（原书第5版） | 约翰 R. 诺夫辛格 | [下载](https://url89.ctfile.com/f/31084289-1357051393-4f14ce?p=8866) |\n| 钱从哪里来 | 香帅 | [下载](https://url89.ctfile.com/f/31084289-1357051330-952775?p=8866) |\n| 日本蜡烛图技术新解 | 史蒂夫・尼森 | [下载](https://url89.ctfile.com/f/31084289-1357051369-1ebd7b?p=8866) |\n| 明斯基时刻 | 兰德尔・雷 | [下载](https://url89.ctfile.com/f/31084289-1357051318-a2c092?p=8866) |\n| 金色的羁绊 | 巴里・艾肯格林 | [下载](https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866) |\n| 期权、期货及其他衍生产品（原书第9版） | 约翰・赫尔 | [下载](https://url89.ctfile.com/f/31084289-1357051072-f9ddb1?p=8866) |\n| 看得懂的金融投资课 | 向松祚 | [下载](https://url89.ctfile.com/f/31084289-1357050634-e74cb1?p=8866) |\n| 投资思想史（珍藏版） | 马克・鲁宾斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357050625-389c43?p=8866) |\n| 金融怪杰：华尔街的顶级交易员 | 杰克D. 施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357050358-52b1ac?p=8866) |\n| 资本的眼睛 | 吴卫军 | [下载](https://url89.ctfile.com/f/31084289-1357050181-714592?p=8866) |\n| 走进我的交易室 | 亚历山大・艾尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049941-822e0c?p=8866) |\n| 巴菲特的护城河（新版） | 帕特・多尔西 | [下载](https://url89.ctfile.com/f/31084289-1357049824-7181e3?p=8866) |\n| 驾驭交易（原书第2版） | 约翰・卡特 | [下载](https://url89.ctfile.com/f/31084289-1357049689-c4ab2e?p=8866) |\n| 货币围城 | 约翰・莫尔丁等 | [下载](https://url89.ctfile.com/f/31084289-1357049530-c16ffe?p=8866) |\n| 一套书读懂中国经济下半场（套装共25册） | 陈元/钱颖一等 | [下载](https://url89.ctfile.com/f/31084289-1357049776-110e89?p=8866) |\n| 货币之惑 | 乔治・吉尔德 | [下载](https://url89.ctfile.com/f/31084289-1357049446-9acfdc?p=8866) |\n| 金股博弈（第4版） | 弈樊 | [下载](https://url89.ctfile.com/f/31084289-1357049542-568ac4?p=8866) |\n| 大熊市启示录（原书第4版） | 拉塞尔・纳皮尔 | [下载](https://url89.ctfile.com/f/31084289-1357049257-1a259f?p=8866) |\n| 灭火：美国金融危机及其教训 | 本・伯南克等 | [下载](https://url89.ctfile.com/f/31084289-1357049191-705466?p=8866) |\n| Python金融大数据分析 | 伊夫・希尔皮斯科 | [下载](https://url89.ctfile.com/f/31084289-1357049215-c492ab?p=8866) |\n| 货币变局 | 巴里・艾肯格林等 | [下载](https://url89.ctfile.com/f/31084289-1357049137-210a58?p=8866) |\n| 逆向投资策略 | 大卫・德雷曼 | [下载](https://url89.ctfile.com/f/31084289-1357048786-184914?p=8866) |\n| 布雷顿森林货币战（典藏版） | 本・斯泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357048705-a6c49c?p=8866) |\n| 给年轻人的极简金融课 | 童哲 | [下载](https://url89.ctfile.com/f/31084289-1357047652-cac8d7?p=8866) |\n| 就业、利息与货币通论（去梯言系列） | 约翰・梅纳德・凯恩斯 | [下载](https://url89.ctfile.com/f/31084289-1357047628-8cc56b?p=8866) |\n| 零起点Python大数据与量化交易 | 何海群 | [下载](https://url89.ctfile.com/f/31084289-1357047622-173359?p=8866) |\n| 交易冠军 | 马丁・舒华兹 | [下载](https://url89.ctfile.com/f/31084289-1357047493-e1cc1b?p=8866) |\n| 货币金融学（原书第2版） | 弗雷德里克S.米什金 | [下载](https://url89.ctfile.com/f/31084289-1357047346-7c8f9b?p=8866) |\n| 一个农民的亿万传奇 | 傅海棠 | [下载](https://url89.ctfile.com/f/31084289-1357047262-31bda8?p=8866) |\n| 金融市场与金融机构（原书第7版） | 弗雷德里克 S. 米什金/斯坦利 G. 埃金斯 | [下载](https://url89.ctfile.com/f/31084289-1357047259-e1b54e?p=8866) |\n| 未来之路：金融的力量与责任 | 贲圣林 | [下载](https://url89.ctfile.com/f/31084289-1357046938-1c5b3e?p=8866) |\n| 艾略特波浪理论：研判股市底部与顶部的有效工具 | 拉尔夫·N·艾略特 | [下载](https://url89.ctfile.com/f/31084289-1357046911-e5bd5f?p=8866) |\n| 期权：就这么简单 | 韩冬 | [下载](https://url89.ctfile.com/f/31084289-1357046734-dc6599?p=8866) |\n| 逃不开的经济周期（珍藏版） | 拉斯・特维德 | [下载](https://url89.ctfile.com/f/31084289-1357046578-086683?p=8866) |\n| 逃不开的经济周期2 | 拉斯・特维德 | [下载](https://url89.ctfile.com/f/31084289-1357046458-38d35f?p=8866) |\n| 繁荣与衰退 | 艾伦・格林斯潘 | [下载](https://url89.ctfile.com/f/31084289-1357046308-3b3327?p=8866) |\n| 金融交易圣经Ⅱ | 约翰・派珀 | [下载](https://url89.ctfile.com/f/31084289-1357046155-96b7bf?p=8866) |\n| 股权战争（全新升级版） | 苏龙飞 | [下载](https://url89.ctfile.com/f/31084289-1357046044-63f8f6?p=8866) |\n| 新金融怪杰 | 杰克・施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357045939-51d0bd?p=8866) |\n| 在股市遇见凯恩斯 | 约翰 F. 瓦辛科 | [下载](https://url89.ctfile.com/f/31084289-1357045597-b0c939?p=8866) |\n| 给投资新手的极简股票课 | lip师兄 | [下载](https://url89.ctfile.com/f/31084289-1357045258-cd5c03?p=8866) |\n| 为什么中国人勤劳而不富有 | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357045201-e8008f?p=8866) |\n| 高频交易（原书第2版） | 艾琳・奥尔德里奇 | [下载](https://url89.ctfile.com/f/31084289-1357045159-031eee?p=8866) |\n| 为什么中国人勤劳而不富有（新版） | 陈志武 | [下载](https://url89.ctfile.com/f/31084289-1357045081-f80b00?p=8866) |\n| 罗斯柴尔德家族（套装上中下册） | 尼尔・弗格森 | [下载](https://url89.ctfile.com/f/31084289-1357044967-b617e0?p=8866) |\n| 资本圈 | 熊昌烈 | [下载](https://url89.ctfile.com/f/31084289-1357044658-bf19ba?p=8866) |\n| 亲历巴菲特股东大会 | 杰夫・马修斯 | [下载](https://url89.ctfile.com/f/31084289-1357044529-2e4018?p=8866) |\n| 有趣的金融 | 董希淼 | [下载](https://url89.ctfile.com/f/31084289-1357044286-e08e10?p=8866) |\n| 我如何从股市赚了200万（珍藏版） | 尼古拉斯・达瓦斯 | [下载](https://url89.ctfile.com/f/31084289-1357044232-f111b0?p=8866) |\n| 一本书读懂黄金白银投资理财 | 李若问 | [下载](https://url89.ctfile.com/f/31084289-1357044199-cabde2?p=8866) |\n| 股票投资入门与实战技巧 | 王坤 | [下载](https://url89.ctfile.com/f/31084289-1357044088-7c370a?p=8866) |\n| 看盘方法与技巧一本通 | 老牛 | [下载](https://url89.ctfile.com/f/31084289-1357043887-d0ff68?p=8866) |\n| 概率游戏：像操盘手那样做股票（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043809-6b6d2a?p=8866) |\n| 格林斯潘传 | 塞巴斯蒂安・马拉比 | [下载](https://url89.ctfile.com/f/31084289-1357043782-bf71a6?p=8866) |\n| 超额收益融合战法 | 约翰・帕利卡 | [下载](https://url89.ctfile.com/f/31084289-1357043698-5e0de1?p=8866) |\n| 白矮星：交易员的心理与交易体系 | 赛博格 | [下载](https://url89.ctfile.com/f/31084289-1357043554-fc98f2?p=8866) |\n| 富爸爸系列全集（套装共32册） | 罗伯特・清崎 | [下载](https://url89.ctfile.com/f/31084289-1357043707-53aa09?p=8866) |\n| 巴菲特与索罗斯的投资习惯（纪念版） | 马克・泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357043374-c20c7d?p=8866) |\n| 黑马波段操盘术（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357043350-ce1dc3?p=8866) |\n| 说谎者的扑克牌 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357043257-6d4c38?p=8866) |\n| 说谎者的扑克牌（纪念版） | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357043107-ffafa1?p=8866) |\n| 振荡指标MACD（升级版） | 凌波 | [下载](https://url89.ctfile.com/f/31084289-1357042945-d2f4e5?p=8866) |\n| 超额收益 | 刘哲 | [下载](https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866) |\n| 英国《金融时报》原文阅读精选集（一） | 英国《金融时报》 | [下载](https://url89.ctfile.com/f/31084289-1357042762-ba6b8b?p=8866) |\n| 商业冒险 | 约翰・布鲁克斯 | [下载](https://url89.ctfile.com/f/31084289-1357042717-e79702?p=8866) |\n| 在苍茫中传灯 | 姚斌 | [下载](https://url89.ctfile.com/f/31084289-1357042480-148a12?p=8866) |\n| 以交易为生Ⅱ | 亚历山大・埃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357042426-6fbc0f?p=8866) |\n| 高频交易员 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357042249-d077a1?p=8866) |\n| 市场真相 | 杰克D.施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357042174-98b1ea?p=8866) |\n| 漫步华尔街（原书第11版） | 伯顿G.马尔基尔 | [下载](https://url89.ctfile.com/f/31084289-1357042006-68c101?p=8866) |\n| 雪球投资 | 林起 | [下载](https://url89.ctfile.com/f/31084289-1357041394-90353b?p=8866) |\n| 巴菲特高收益投资策略 | 吉瓦・拉玛斯瓦米 | [下载](https://url89.ctfile.com/f/31084289-1357041169-c72f4b?p=8866) |\n| 债券投资实战 | 龙红亮 | [下载](https://url89.ctfile.com/f/31084289-1357041109-1089e2?p=8866) |\n| 12年20倍 | 唐彬 | [下载](https://url89.ctfile.com/f/31084289-1357040863-0749c1?p=8866) |\n| 巴菲特的投资组合（珍藏版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357040398-799d7d?p=8866) |\n| 我的第一本炒股书 | 杨金 | [下载](https://url89.ctfile.com/f/31084289-1357040095-b8d714?p=8866) |\n| 索罗斯传（白金珍藏版） | 罗伯特・斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1357039597-5b441d?p=8866) |\n| 量价分析 | 安娜・库林 | [下载](https://url89.ctfile.com/f/31084289-1357039528-b7bf2a?p=8866) |\n| 投资最重要的事 | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357038907-b62787?p=8866) |\n| 繁荣的真谛 | 路易吉・津加莱斯 | [下载](https://url89.ctfile.com/f/31084289-1357038796-aef5a3?p=8866) |\n| 投资最重要的事（全新升级版） | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357038721-d4ac4b?p=8866) |\n| 看得见的与看不见的 | 巴斯夏 | [下载](https://url89.ctfile.com/f/31084289-1357038388-dd5409?p=8866) |\n| 查理·芒格的智慧（原书第2版） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357038406-87e81f?p=8866) |\n| 被平均的风险 | 萨姆・萨维奇 | [下载](https://url89.ctfile.com/f/31084289-1357038088-8edfbb?p=8866) |\n| 涛动周期录 | 周金涛 | [下载](https://url89.ctfile.com/f/31084289-1357038970-dbafd4?p=8866) |\n| 暴力K线擒大牛 | 王宁 | [下载](https://url89.ctfile.com/f/31084289-1357037578-429bf2?p=8866) |\n| 压力测试 | 蒂莫西・盖特纳 | [下载](https://url89.ctfile.com/f/31084289-1357037365-f57ae1?p=8866) |\n| 积极型资产配置指南 | 马丁 J. 普林格 | [下载](https://url89.ctfile.com/f/31084289-1357037485-53e751?p=8866) |\n| 债：第一个5000年 | 大卫・格雷伯 | [下载](https://url89.ctfile.com/f/31084289-1357037263-d306b9?p=8866) |\n| 卧底经济学（套装共4册） | 蒂姆・哈福德 | [下载](https://url89.ctfile.com/f/31084289-1357037194-590484?p=8866) |\n| 彼得·林奇教你理财（典藏版） | 彼得・林奇/约翰・罗瑟查尔德 | [下载](https://url89.ctfile.com/f/31084289-1357037083-f9e2ec?p=8866) |\n| 金融怪杰：华尔街的顶级交易员（典藏版） | 杰克 D. 施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357036957-b631fc?p=8866) |\n| 世界金融危机史经典丛书共6册 | 约翰・莫尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357037032-23759e?p=8866) |\n| 证券混沌操作法（典藏版） | 比尔・威廉斯/贾丝廷・格雷戈里-威廉斯 | [下载](https://url89.ctfile.com/f/31084289-1357036660-4784bf?p=8866) |\n| 嚣张的特权 | 巴里・艾肯格林 | [下载](https://url89.ctfile.com/f/31084289-1357036417-932e82?p=8866) |\n| 对冲基金怪杰（典藏版） | 杰克・施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357036267-7d0071?p=8866) |\n| 50人的二十年 | 樊纲/易纲等 | [下载](https://url89.ctfile.com/f/31084289-1357036009-dce3bf?p=8866) |\n| 笑傲股市（原书第4版·典藏版） | 威廉・欧奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357036117-c98548?p=8866) |\n| 跨市场交易策略（典藏版） | 约翰 J. 墨菲 | [下载](https://url89.ctfile.com/f/31084289-1357035916-7ada89?p=8866) |\n| 战胜华尔街（典藏版） | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357035715-099e94?p=8866) |\n| 日本蜡烛图技术新解（典藏版） | 史蒂夫・尼森 | [下载](https://url89.ctfile.com/f/31084289-1357035604-e7b03a?p=8866) |\n| 向格雷厄姆学思考，向巴菲特学投资 | 劳伦斯・坎宁安 | [下载](https://url89.ctfile.com/f/31084289-1357035265-c85615?p=8866) |\n| 客户的游艇在哪里（典藏版） | 小弗雷德・施韦德 | [下载](https://url89.ctfile.com/f/31084289-1357035148-7cc8c3?p=8866) |\n| 巴菲特阴谋 | 余治国 | [下载](https://url89.ctfile.com/f/31084289-1357034896-b010a5?p=8866) |\n| 赢得输家的游戏（原书第6版） | 查尔斯・埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357034728-53fcc1?p=8866) |\n| 金融街：私募风云 | 梁成 | [下载](https://url89.ctfile.com/f/31084289-1357034311-81e387?p=8866) |\n| 转变：应对复杂新世界的思维方式 | 弗雷德蒙德・马利克 | [下载](https://url89.ctfile.com/f/31084289-1357033792-ac3db2?p=8866) |\n| 金融街：一个影子私募基金经理的自白 | 梁成 | [下载](https://url89.ctfile.com/f/31084289-1357033699-597e93?p=8866) |\n| 财务诡计 | 霍华德·M.施利特等 | [下载](https://url89.ctfile.com/f/31084289-1357033591-d196be?p=8866) |\n| 金融街：危险交易 | 梁成 | [下载](https://url89.ctfile.com/f/31084289-1357033417-045b8f?p=8866) |\n| 坚定不移 | 保罗・沃尔克 | [下载](https://url89.ctfile.com/f/31084289-1357033273-94c7f8?p=8866) |\n| 超越金融（纪念版） | 乔治・索罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357032973-62438d?p=8866) |\n| 一本书看透信贷 | 何华平 | [下载](https://url89.ctfile.com/f/31084289-1357032511-a20d5c?p=8866) |\n| 发现价格 | 姜洋 | [下载](https://url89.ctfile.com/f/31084289-1357032505-ae25a2?p=8866) |\n| 一本书看透IPO | 沈春晖 | [下载](https://url89.ctfile.com/f/31084289-1357032499-275752?p=8866) |\n| 一本书读懂生活中的金融常识 | 陈思进 | [下载](https://url89.ctfile.com/f/31084289-1357032193-cd3cc8?p=8866) |\n| 中国经济史 | 钱穆/叶龙 | [下载](https://url89.ctfile.com/f/31084289-1357031791-911fef?p=8866) |\n| 韭菜的自我修养（增订版） | 李笑来 | [下载](https://url89.ctfile.com/f/31084289-1357031653-2d9713?p=8866) |\n| 一本书读懂财报 | 肖星 | [下载](https://url89.ctfile.com/f/31084289-1357031443-8f55da?p=8866) |\n| 战胜一切市场的人 | 爱德华・索普 | [下载](https://url89.ctfile.com/f/31084289-1357031212-4c1971?p=8866) |\n| 美林传奇 | 小温斯洛普 H.史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357031134-590515?p=8866) |\n| 金融的解释：王福重金融学通识课 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357030924-fca2c3?p=8866) |\n| 诺贝尔经济学奖的逻辑 | 阿夫纳・奥弗尔/加布里埃尔・索德伯格 | [下载](https://url89.ctfile.com/f/31084289-1357030366-30de9b?p=8866) |\n| 故事与估值 | 阿斯沃斯・达摩达兰 | [下载](https://url89.ctfile.com/f/31084289-1357030378-3fa8ba?p=8866) |\n| 债务危机 | 瑞・达利欧 | [下载](https://url89.ctfile.com/f/31084289-1357028191-0b09a8?p=8866) |\n| 赌金者：长期资本管理公司的升腾与陨落 | 罗杰・洛温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357027954-43ce5e?p=8866) |\n| 查理·芒格的投资思想 | 戴维・克拉克 | [下载](https://url89.ctfile.com/f/31084289-1357027918-1b6352?p=8866) |\n| 涛动周期论 | 周金涛 | [下载](https://url89.ctfile.com/f/31084289-1357027915-a97fa6?p=8866) |\n| 周期 | 霍华德・马克斯 | [下载](https://url89.ctfile.com/f/31084289-1357027108-e2c453?p=8866) |\n| 你的第一本保险指南 | 槽叔 | [下载](https://url89.ctfile.com/f/31084289-1357026943-958d14?p=8866) |\n| 金融科技 | 张健 | [下载](https://url89.ctfile.com/f/31084289-1357026967-ef96b8?p=8866) |\n| 最后的财富帝国 | 彼得・查普曼 | [下载](https://url89.ctfile.com/f/31084289-1357026445-3c8f1b?p=8866) |\n| 小乌龟投资智慧2 | 伍治坚 | [下载](https://url89.ctfile.com/f/31084289-1357026310-b072b2?p=8866) |\n| 洗钱内幕 | 姚耀/秋叶良和 | [下载](https://url89.ctfile.com/f/31084289-1357025722-0dbcb6?p=8866) |\n| 从众危机 | 路德维希 B. 钦塞瑞尼 | [下载](https://url89.ctfile.com/f/31084289-1357025674-a4b790?p=8866) |\n| 货币大师 | 埃里克・罗威 | [下载](https://url89.ctfile.com/f/31084289-1357024936-eb9734?p=8866) |\n| 巴菲特之道（学习篇） | 罗伯特・哈格斯特朗 | [下载](https://url89.ctfile.com/f/31084289-1357024894-f81619?p=8866) |\n| 大鳄三部曲 | 仇晓慧 | [下载](https://url89.ctfile.com/f/31084289-1357024561-f0ec75?p=8866) |\n| 我为什么离开高盛 | 格雷格・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866) |\n| 股票魔法师2 | 马克・米勒维尼 | [下载](https://url89.ctfile.com/f/31084289-1357024018-f2250f?p=8866) |\n| 欧元的思想之争 | 马库斯・布伦纳迈耶等 | [下载](https://url89.ctfile.com/f/31084289-1357023955-ebc85a?p=8866) |\n| 金融帝国风云录（共5册） | 茜拉・科尔哈特卡等 | [下载](https://url89.ctfile.com/f/31084289-1357023586-f64635?p=8866) |\n| 大而不倒 | 安德鲁・罗斯・索尔金 | [下载](https://url89.ctfile.com/f/31084289-1357023274-ded16e?p=8866) |\n| 管理美元 | 船桥洋一 | [下载](https://url89.ctfile.com/f/31084289-1357023124-73dd6d?p=8866) |\n| 金牌投资人2 | 龙在宇 | [下载](https://url89.ctfile.com/f/31084289-1357022887-a6b83d?p=8866) |\n| 金牌投资人3 | 龙在宇 | [下载](https://url89.ctfile.com/f/31084289-1357022890-b575df?p=8866) |\n| 趋势交易 | 安德烈亚斯 F. 克列诺 | [下载](https://url89.ctfile.com/f/31084289-1357022596-faac9b?p=8866) |\n| 资本全球化 | 巴里・埃森格林 | [下载](https://url89.ctfile.com/f/31084289-1357022359-ecc228?p=8866) |\n| 黑石的选择 | 彼得・彼得森 | [下载](https://url89.ctfile.com/f/31084289-1357021963-e5f1f3?p=8866) |\n| 私募的进化 | 格上研究中心 | [下载](https://url89.ctfile.com/f/31084289-1357021588-bad8df?p=8866) |\n| 经济的律动 | 徐远 | [下载](https://url89.ctfile.com/f/31084289-1357021153-d537b4?p=8866) |\n| 股票大作手回忆录 | 埃德文・拉斐尔 | [下载](https://url89.ctfile.com/f/31084289-1357021105-f79b64?p=8866) |\n| 管理者14天看懂财务报表 | 闫静 | [下载](https://url89.ctfile.com/f/31084289-1357021048-ccb824?p=8866) |\n| 股民的眼泪 | 张华桥 | [下载](https://url89.ctfile.com/f/31084289-1357021027-4f3e9a?p=8866) |\n| 最富足的投资 | 吉姆・罗杰斯 | [下载](https://url89.ctfile.com/f/31084289-1357020763-38a84b?p=8866) |\n| 亿万：围剿华尔街大白鲨 | 茜拉・科尔哈特卡 | [下载](https://url89.ctfile.com/f/31084289-1357020631-09dbb2?p=8866) |\n| 华尔街之狼：金融之王卡尔·伊坎传 | 马克・史蒂文斯 | [下载](https://url89.ctfile.com/f/31084289-1357020559-859f48?p=8866) |\n| 华尔街之狼 | 乔丹・贝尔福特 | [下载](https://url89.ctfile.com/f/31084289-1357020553-c64dc1?p=8866) |\n| 美联储的诞生 | 罗杰・洛温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357020526-fc22e7?p=8866) |\n| 巴菲特的估值逻辑 | 林安霁 | [下载](https://url89.ctfile.com/f/31084289-1357020448-8b9cdd?p=8866) |\n| 行动的勇气 | 本・伯南克 | [下载](https://url89.ctfile.com/f/31084289-1357020406-9e3f24?p=8866) |\n| 金融投资400年 | 查尔斯・马凯 | [下载](https://url89.ctfile.com/f/31084289-1357020064-c7c756?p=8866) |\n| 帝国之弧 | 乔良 | [下载](https://url89.ctfile.com/f/31084289-1357020010-32ddc9?p=8866) |\n| 影子银行内幕：下一个次贷危机的源头（修订版） | 张化桥 | [下载](https://url89.ctfile.com/f/31084289-1357019980-714711?p=8866) |\n| 资本的规则 | 张巍 | [下载](https://url89.ctfile.com/f/31084289-1357019746-4daf20?p=8866) |\n| 暗池 | 帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357019674-38950f?p=8866) |\n| 估值 | 埃斯瓦斯・达莫达兰 | [下载](https://url89.ctfile.com/f/31084289-1357019614-245776?p=8866) |\n| King of Capital | David Carey/John E. Morris  | [下载](https://url89.ctfile.com/f/31084289-1357019350-173264?p=8866) |\n| 股市趋势技术分析（原书第10版） | 罗伯特 D. 爱德华兹等 | [下载](https://url89.ctfile.com/f/31084289-1357019437-bba4ec?p=8866) |\n| 金融可以颠覆历史 | 王巍 | [下载](https://url89.ctfile.com/f/31084289-1357019269-0194dd?p=8866) |\n| 并购估值 | 克里斯 M. 梅林/弗兰克 C. 埃文斯 | [下载](https://url89.ctfile.com/f/31084289-1357019248-0fcfaa?p=8866) |\n| 3G资本帝国 | 克里斯蒂娜・柯利娅 | [下载](https://url89.ctfile.com/f/31084289-1357017853-5d36d1?p=8866) |\n| 查理·芒格的原则 | 特兰・格里芬 | [下载](https://url89.ctfile.com/f/31084289-1357017835-758d98?p=8866) |\n| 蚂蚁金服：从支付宝到新金融生态圈 | 廉薇等 | [下载](https://url89.ctfile.com/f/31084289-1357017802-c45526?p=8866) |\n| 当音乐停止之后 | 艾伦・布林德 | [下载](https://url89.ctfile.com/f/31084289-1357017622-dcb745?p=8866) |\n| 穷查理宝典：查理·芒格智慧箴言录 | 查理・芒格 | [下载](https://url89.ctfile.com/f/31084289-1357017781-abd324?p=8866) |\n| 可转债投资魔法书 | 安道全 | [下载](https://url89.ctfile.com/f/31084289-1357017511-98fcc0?p=8866) |\n| 您厉害，您赚得多 | 方三文 | [下载](https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866) |\n| 邓普顿教你逆向投资 | 劳伦・邓普顿/斯科特・菲利普斯 | [下载](https://url89.ctfile.com/f/31084289-1357017418-95c7db?p=8866) |\n| 冲刺白马股 | 启明 | [下载](https://url89.ctfile.com/f/31084289-1357017487-d6c3c4?p=8866) |\n| 投资中不简单的事 | 邱国鹭等 | [下载](https://url89.ctfile.com/f/31084289-1357017031-9bb190?p=8866) |\n| 投资中最简单的事 | 邱国鹭 | [下载](https://url89.ctfile.com/f/31084289-1357017019-676d89?p=8866) |\n| Business Adventures | John Brooks | [下载](https://url89.ctfile.com/f/31084289-1357016902-55ee19?p=8866) |\n| 赌神数学家 | 威廉・庞德斯通 | [下载](https://url89.ctfile.com/f/31084289-1357016602-aa9497?p=8866) |\n| 跳着踢踏舞去上班 | 卡萝尔・卢米斯 | [下载](https://url89.ctfile.com/f/31084289-1357016587-6c0488?p=8866) |\n| 聪明的投资者 | 本杰明・格雷厄姆 | [下载](https://url89.ctfile.com/f/31084289-1357016575-efb66d?p=8866) |\n| 股票魔法师 | 马克・米勒维尼 | [下载](https://url89.ctfile.com/f/31084289-1357016617-c5580a?p=8866) |\n| 彼得林奇投资经典全集（共3册） | 彼得・林奇 | [下载](https://url89.ctfile.com/f/31084289-1357016605-d80a5f?p=8866) |\n| Fintech：全球金融科技权威指南 | 苏珊娜・奇斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357016137-a6f805?p=8866) |\n| 金钱永不眠：资本世界的暗流涌动和金融逻辑 | 香帅无花 | [下载](https://url89.ctfile.com/f/31084289-1357015996-5891cf?p=8866) |\n| 金融的解释 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357015243-97ed90?p=8866) |\n| 金融炼金术的终结 | 默文・金 | [下载](https://url89.ctfile.com/f/31084289-1357015246-2b570e?p=8866) |\n| 货币野史 | 菲利克斯・马汀 | [下载](https://url89.ctfile.com/f/31084289-1357015255-c37281?p=8866) |\n| 金融的本质 | 本・伯南克 | [下载](https://url89.ctfile.com/f/31084289-1357015177-18a4e8?p=8866) |\n| 巴菲特幕后智囊：查理·芒格传 | 珍妮特・洛尔 | [下载](https://url89.ctfile.com/f/31084289-1357014946-1126b6?p=8866) |\n| 货币简史 | 卡比尔・塞加尔 | [下载](https://url89.ctfile.com/f/31084289-1357014889-3acaa6?p=8866) |\n| 威科夫操盘法 | 孟洪涛 | [下载](https://url89.ctfile.com/f/31084289-1357014781-66c0d9?p=8866) |\n| 行为投资学手册 | 詹姆斯・蒙蒂尔 | [下载](https://url89.ctfile.com/f/31084289-1357014502-344441?p=8866) |\n| 不落俗套的成功 | 大卫・斯文森 | [下载](https://url89.ctfile.com/f/31084289-1357014121-66d69f?p=8866) |\n| 纯粹经济学 | 王福重 | [下载](https://url89.ctfile.com/f/31084289-1357013980-1ffdbe?p=8866) |\n| 雪球系列（套装共6册） | 唐朝等 | [下载](https://url89.ctfile.com/f/31084289-1357013536-91355d?p=8866) |\n| 量化投资策略 | 理查德・托托里罗 | [下载](https://url89.ctfile.com/f/31084289-1357013398-841e9d?p=8866) |\n| 伟大的博弈 | 约翰・斯蒂尔・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357012969-411e3c?p=8866) |\n| 中国经济大萧条还有多远 | 刘军洛 | [下载](https://url89.ctfile.com/f/31084289-1357012900-3ec719?p=8866) |\n| 中国富人为何变穷 | 张庭宾/艾经纬 | [下载](https://url89.ctfile.com/f/31084289-1357012804-ed8699?p=8866) |\n| 我的第一本金融入门书 | 邹一南 | [下载](https://url89.ctfile.com/f/31084289-1357012303-007194?p=8866) |\n| 解读量化投资 | 忻海 | [下载](https://url89.ctfile.com/f/31084289-1357012099-2bac97?p=8866) |\n| 投资哲学：保守主义的智慧之灯 | 刘军宁 | [下载](https://url89.ctfile.com/f/31084289-1357012027-429b8e?p=8866) |\n| 白银帝国 | 徐瑾 | [下载](https://url89.ctfile.com/f/31084289-1357011931-a452ca?p=8866) |\n| 动物精神 | 乔治・阿克洛夫/罗伯特・希勒 | [下载](https://url89.ctfile.com/f/31084289-1357011916-aa3741?p=8866) |\n| 期货大作手风云录 | 刘强 | [下载](https://url89.ctfile.com/f/31084289-1357011847-37541d?p=8866) |\n| 外汇交易：高手训练营 | 埃德・蓬西 | [下载](https://url89.ctfile.com/f/31084289-1357011841-468b02?p=8866) |\n| 外汇交易的10堂必修课 | 贾里德・马丁内斯 | [下载](https://url89.ctfile.com/f/31084289-1357011820-b1c202?p=8866) |\n| 债务和魔鬼 | 阿代尔・特纳勋爵 | [下载](https://url89.ctfile.com/f/31084289-1357011802-eff8c4?p=8866) |\n| 投资：一部历史 | 诺顿・雷默/杰西・唐宁  | [下载](https://url89.ctfile.com/f/31084289-1357011655-2f93f9?p=8866) |\n| 区块链革命 | 唐塔普斯科特 | [下载](https://url89.ctfile.com/f/31084289-1357011610-23b769?p=8866) |\n| 布雷顿森林货币战 | 本・斯泰尔 | [下载](https://url89.ctfile.com/f/31084289-1357011643-13670b?p=8866) |\n| 中国是部金融史 | 陈雨露 | [下载](https://url89.ctfile.com/f/31084289-1357011553-c099b8?p=8866) |\n| 中国是部金融史2 | 陈雨露 | [下载](https://url89.ctfile.com/f/31084289-1357011547-604003?p=8866) |\n| 海龟交易法则（珍藏版） | 柯蒂斯・费思 | [下载](https://url89.ctfile.com/f/31084289-1357011241-74591c?p=8866) |\n| 贼巢 | 詹姆斯・斯图尔特 | [下载](https://url89.ctfile.com/f/31084289-1357011229-a1db68?p=8866) |\n| 学会估值，轻松投资 | 阿斯沃斯・达摩达兰 | [下载](https://url89.ctfile.com/f/31084289-1357011184-2accab?p=8866) |\n| 千年金融史 | 威廉・戈兹曼 | [下载](https://url89.ctfile.com/f/31084289-1357011061-cc8d57?p=8866) |\n| 区块链社会 | 龚鸣 | [下载](https://url89.ctfile.com/f/31084289-1357010734-c527e7?p=8866) |\n| 金融炼金术 | 乔治・索罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357010584-f42edc?p=8866) |\n| 大势研判：经济、政策与资本市场 | 任泽平 | [下载](https://url89.ctfile.com/f/31084289-1357010359-8da2eb?p=8866) |\n| 货币战争（套装共5册） | 宋鸿兵 | [下载](https://url89.ctfile.com/f/31084289-1357010203-4335e8?p=8866) |\n| 钱商 | 阿瑟・黑利 | [下载](https://url89.ctfile.com/f/31084289-1357009600-e4c107?p=8866) |\n| 人类货币史 | 戴维・欧瑞尔 | [下载](https://url89.ctfile.com/f/31084289-1357009327-dbc2ba?p=8866) |\n| 宽客人生：从物理学家到数量金融大师的传奇 | 伊曼纽尔・德曼 | [下载](https://url89.ctfile.com/f/31084289-1357009288-de826c?p=8866) |\n| 华尔街幽灵 | 阿瑟・辛普森 | [下载](https://url89.ctfile.com/f/31084289-1357009225-33a957?p=8866) |\n| 随机漫步的傻瓜 | 戴纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1357009141-1c411a?p=8866) |\n| 蚂蚁金服 | 由曦 | [下载](https://url89.ctfile.com/f/31084289-1357008874-46e181?p=8866) |\n| 大揭秘：庞氏骗局的前世今生 | 柯琳・克罗丝 | [下载](https://url89.ctfile.com/f/31084289-1357008772-79825d?p=8866) |\n| 镜厅 | 巴里・埃森格林 | [下载](https://url89.ctfile.com/f/31084289-1357008706-d0afd8?p=8866) |\n| 华尔街潜规则 | 乔舒亚・布朗 | [下载](https://url89.ctfile.com/f/31084289-1357008634-2f3fc4?p=8866) |\n| 风口上的猪：一本书看懂互联网金融 | 肖璟 | [下载](https://url89.ctfile.com/f/31084289-1357008439-7c6b34?p=8866) |\n| 红楼梦教你的10堂理财课 | 朱国凤 | [下载](https://url89.ctfile.com/f/31084289-1357007884-57754e?p=8866) |\n| 非富不可：曹仁超给年轻人的投资忠告 | 曹仁超 | [下载](https://url89.ctfile.com/f/31084289-1357007779-598f50?p=8866) |\n| 专业投机原理（珍藏版） | 维克托・斯波朗迪 | [下载](https://url89.ctfile.com/f/31084289-1357007746-facd95?p=8866) |\n| 奥马哈之雾 | 任俊杰/朱晓芸 | [下载](https://url89.ctfile.com/f/31084289-1357007716-7c104a?p=8866) |\n| 金钱有术 | 知乎 | [下载](https://url89.ctfile.com/f/31084289-1357007578-400629?p=8866) |\n| 操盘手Ⅰ：自由救赎 | 花荣 | [下载](https://url89.ctfile.com/f/31084289-1357007518-95689f?p=8866) |\n| 走出幻觉・走向成熟 | 金融帝国 | [下载](https://url89.ctfile.com/f/31084289-1357007464-959f71?p=8866) |\n| 一个投资家的20年 | 杨天南 | [下载](https://url89.ctfile.com/f/31084289-1357007500-dfda5c?p=8866) |\n| 大牛市・股殇系列（全两册） | 诸葛就是不亮 | [下载](https://url89.ctfile.com/f/31084289-1357007425-b57f31?p=8866) |\n| 期权波动率与定价：高级交易策略与技巧 | 谢尔登・纳坦恩伯格 | [下载](https://url89.ctfile.com/f/31084289-1357007386-8c6a5c?p=8866) |\n| 大空头 | 迈克尔・刘易斯 | [下载](https://url89.ctfile.com/f/31084289-1357007293-e0084d?p=8866) |\n| 美国是个大公司 | 闵纬国 | [下载](https://url89.ctfile.com/f/31084289-1357007185-9c1f16?p=8866) |\n| 年轻资本 | 凯文·鲁斯 | [下载](https://url89.ctfile.com/f/31084289-1357007143-800d38?p=8866) |\n| 麦克米伦谈期权 | 劳伦斯G.麦克米伦 | [下载](https://url89.ctfile.com/f/31084289-1357007158-55a7b7?p=8866) |\n| 对冲基金奇才 | 杰克·施瓦格 | [下载](https://url89.ctfile.com/f/31084289-1357007137-7ddc11?p=8866) |\n| 股市长线法宝（原书第5版） | 杰里米J. 西格尔 | [下载](https://url89.ctfile.com/f/31084289-1357007167-2eef88?p=8866) |\n| 解读私募股权基金 | 周炜 | [下载](https://url89.ctfile.com/f/31084289-1357007095-d78802?p=8866) |\n| 巴菲特致股东的信（精华篇） | L·J·瑞德豪斯 | [下载](https://url89.ctfile.com/f/31084289-1357007083-5bd3a2?p=8866) |\n| 街头智慧 | 吉姆・罗杰斯 | [下载](https://url89.ctfile.com/f/31084289-1357007074-d9d1d7?p=8866) |\n| 摩根财团 | 罗恩·彻诺 | [下载](https://url89.ctfile.com/f/31084289-1357006912-ad8c6d?p=8866) |\n| 金融帝国：美国金融霸权的来源和基础 | 迈克尔·赫德森 | [下载](https://url89.ctfile.com/f/31084289-1357006819-885ced?p=8866) |\n| 时寒冰说：未来二十年，经济大趋势（合集） | 时寒冰 | [下载](https://url89.ctfile.com/f/31084289-1357006777-8359a3?p=8866) |\n| 史丹•温斯坦称傲牛熊市的秘密（珍藏版） | 史丹·温斯坦 | [下载](https://url89.ctfile.com/f/31084289-1357006768-8dfebe?p=8866) |\n| 世界是部金融史（全新修订典藏版） | 陈雨露/杨栋  | [下载](https://url89.ctfile.com/f/31084289-1357006675-60fb34?p=8866) |\n| 大猎杀 | 庄欣 | [下载](https://url89.ctfile.com/f/31084289-1357006630-919838?p=8866) |\n| 还原真实的美联储 | 王健 | [下载](https://url89.ctfile.com/f/31084289-1357006543-4ddeaf?p=8866) |\n| 潜伏在资本市场 | 仇子明 | [下载](https://url89.ctfile.com/f/31084289-1357006531-bbfae7?p=8866) |\n| 白手套 | 陈楫宝 | [下载](https://url89.ctfile.com/f/31084289-1357006468-79d6ba?p=8866) |\n| 戴立宁的传记与文集 | 戴立宁 | [下载](https://url89.ctfile.com/f/31084289-1357006300-30bd89?p=8866) |\n| 金融之王 | 利雅卡特・艾哈迈德 | [下载](https://url89.ctfile.com/f/31084289-1357006060-6d6043?p=8866) |\n| 股市真规则（第二版） | 帕特・多尔西 | [下载](https://url89.ctfile.com/f/31084289-1357005952-b622fa?p=8866) |\n| 资本之王 | 戴维・凯里/约翰・莫里斯 | [下载](https://url89.ctfile.com/f/31084289-1357005829-d05ccb?p=8866) |\n| 对冲基金到底是什么？ | 黄徽 | [下载](https://url89.ctfile.com/f/31084289-1357005835-5b1da4?p=8866) |\n| 盘活：中国民间金融百年风云 | 王千马 | [下载](https://url89.ctfile.com/f/31084289-1357005658-93b7d5?p=8866) |\n| 祖鲁法则 | 吉姆·斯莱特 | [下载](https://url89.ctfile.com/f/31084289-1357005610-2d0bdb?p=8866) |\n| 安东尼·波顿的成功投资 | 安东尼·波顿 | [下载](https://url89.ctfile.com/f/31084289-1357005526-ee2572?p=8866) |\n| 门口的野蛮人 | 布赖恩・伯勒 | [下载](https://url89.ctfile.com/f/31084289-1357005493-8121e5?p=8866) |\n| 约翰·聂夫的成功投资（珍藏版） | 约翰・聂夫 | [下载](https://url89.ctfile.com/f/31084289-1357005460-dffe7c?p=8866) |\n| 以交易为生（珍藏版） | 亚历山大・埃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357005463-8315db?p=8866) |\n| 通向财务自由之路（原书第2版·珍藏版） | 范・撒普 | [下载](https://url89.ctfile.com/f/31084289-1357005430-902bae?p=8866) |\n| 非理性繁荣（第二版） | 罗伯特·希勒 | [下载](https://url89.ctfile.com/f/31084289-1357005337-c4881f?p=8866) |\n| 怎样选择成长股 | 菲利普·A·费舍 | [下载](https://url89.ctfile.com/f/31084289-1357005124-95fd9b?p=8866) |\n| 斯坦福极简经济学 | 蒂莫西・泰勒 | [下载](https://url89.ctfile.com/f/31084289-1357005034-ac09e4?p=8866) |\n| 信贷的逻辑与常识 | 刘元庆 | [下载](https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866) |\n| 笑傲股市（原书第四版） | 威廉・欧奈尔 | [下载](https://url89.ctfile.com/f/31084289-1357004986-57dab6?p=8866) |\n| 那些滚雪球的人 | 王星 | [下载](https://url89.ctfile.com/f/31084289-1357004695-256168?p=8866) |\n"
  },
  {
    "path": "md/铲屎官.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 铲屎官\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 唯有猫能治愈我 | 杰克森・盖勒克西 | [下载](https://url89.ctfile.com/f/31084289-1357033900-848a6b?p=8866) |\n"
  },
  {
    "path": "md/银行.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 银行\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 金融科技新时代 | 伊夫・埃奥内/埃尔维・芒斯龙 | [下载](https://url89.ctfile.com/f/31084289-1357000354-2e7d98?p=8866) |\n| 今天我们怎样做银行 | 陈琳 | [下载](https://url89.ctfile.com/f/31084289-1356990358-270f5d?p=8866) |\n| 有趣的金融 | 董希淼 | [下载](https://url89.ctfile.com/f/31084289-1357044286-e08e10?p=8866) |\n| 信贷的逻辑与常识 | 刘元庆 | [下载](https://url89.ctfile.com/f/31084289-1357004893-f48b60?p=8866) |\n"
  },
  {
    "path": "md/销售.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 销售\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 销售经理的22条军规 | 仲崇玉 | [下载](https://url89.ctfile.com/f/31084289-1375511158-7a7bd5?p=8866) |\n| 快速成交 | 俞赛前 | [下载](https://url89.ctfile.com/f/31084289-1375511488-43d314?p=8866) |\n| 超级话题 | 肖大侠 | [下载](https://url89.ctfile.com/f/31084289-1356997528-ab2abc?p=8866) |\n| 顾客心理战 | 菲利普・格雷夫斯 | [下载](https://url89.ctfile.com/f/31084289-1356995557-20f811?p=8866) |\n| 从对抗到共赢 | 杨杜泽/沈莉娟/王赛/范松璐 | [下载](https://url89.ctfile.com/f/31084289-1356991477-b6f640?p=8866) |\n| 销售技巧② | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1356985390-d8a48d?p=8866) |\n| 销售技巧① | 鲍勃・埃瑟林顿 | [下载](https://url89.ctfile.com/f/31084289-1356985180-8023ba?p=8866) |\n| 爆发式赢单 | 倪建伟 | [下载](https://url89.ctfile.com/f/31084289-1356983416-05a6b8?p=8866) |\n| 名侦探的救赎 | 顾溪亭 | [下载](https://url89.ctfile.com/f/31084289-1357053478-fd88a8?p=8866) |\n| 意志力销售法 | 杨朝福 | [下载](https://url89.ctfile.com/f/31084289-1357052749-5b3fd5?p=8866) |\n| 零售畅销秘籍 | 本多利范 | [下载](https://url89.ctfile.com/f/31084289-1357045615-2e3e93?p=8866) |\n| 沟通力就是销售力 | 余尚祥 | [下载](https://url89.ctfile.com/f/31084289-1357041844-bdbc92?p=8866) |\n| 销售铁军 | 贺学友 | [下载](https://url89.ctfile.com/f/31084289-1357039498-7a25f2?p=8866) |\n| 超级营销必修课（套装全8册） | 帕科・昂德希尔等 | [下载](https://url89.ctfile.com/f/31084289-1357038832-af45a6?p=8866) |\n| 销售圣经 | 杰弗里・吉特黙 | [下载](https://url89.ctfile.com/f/31084289-1357035472-72f489?p=8866) |\n| 25%的回头客创造75%的利润 | 高田靖久 | [下载](https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866) |\n| 解密日本零售业（套装共4册） | 增田明子等 | [下载](https://url89.ctfile.com/f/31084289-1357031479-064779?p=8866) |\n| 华尔街之狼：掌握直线销售的艺术 | 乔丹・贝尔福特 | [下载](https://url89.ctfile.com/f/31084289-1357030939-c3246d?p=8866) |\n| 销售进阶指南（套装共5册） | 埃尔默・惠勒 | [下载](https://url89.ctfile.com/f/31084289-1357029535-c2736e?p=8866) |\n| 无人岛生存十六人 | 须川邦彦 | [下载](https://url89.ctfile.com/f/31084289-1357029532-acb43a?p=8866) |\n| 成交：如何实现可持续性销售 | 诺亚・弗雷明 | [下载](https://url89.ctfile.com/f/31084289-1357027513-d2ebed?p=8866) |\n| 暗黑西游 | 绯红色眼泪 | [下载](https://url89.ctfile.com/f/31084289-1357025137-84c2d0?p=8866) |\n| 极速成交 | 吉尔・康耐斯 | [下载](https://url89.ctfile.com/f/31084289-1357024138-4ecf7d?p=8866) |\n| 销售脑 | 帕特里克・任瓦茨/克里斯托弗・莫林 | [下载](https://url89.ctfile.com/f/31084289-1357022623-017333?p=8866) |\n| 销售就是要玩转情商 | 科林・斯坦利 | [下载](https://url89.ctfile.com/f/31084289-1357008718-5457d7?p=8866) |\n| 销售就是要搞定人 | 倪建伟 | [下载](https://url89.ctfile.com/f/31084289-1357005031-3463fc?p=8866) |\n"
  },
  {
    "path": "md/间谍.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 间谍\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 毒枪手：慕尼黑的秘密间谍 | 沙希利・浦洛基 | [下载](https://url89.ctfile.com/f/31084289-1375498735-7e0be3?p=8866) |\n| 暗黑之门 | 理查德・阿尔德里奇/罗里・科马克 | [下载](https://url89.ctfile.com/f/31084289-1356999205-192c10?p=8866) |\n| 海明威与骗子工厂 | 丹・西蒙斯 | [下载](https://url89.ctfile.com/f/31084289-1357053163-da42f2?p=8866) |\n| 代号D机关Ⅲ | 柳广司 | [下载](https://url89.ctfile.com/f/31084289-1357034080-736199?p=8866) |\n| 代号D机关Ⅰ | 柳广司 | [下载](https://url89.ctfile.com/f/31084289-1357033729-239911?p=8866) |\n| 代号D机关Ⅱ | 柳广司 | [下载](https://url89.ctfile.com/f/31084289-1357033720-1dd32f?p=8866) |\n| 无处可藏 | 格伦・格林沃尔德 | [下载](https://url89.ctfile.com/f/31084289-1357033462-b25888?p=8866) |\n| 美国情报界 | 杰弗瑞・理查尔森 | [下载](https://url89.ctfile.com/f/31084289-1357023136-5c184c?p=8866) |\n| 尔虞我诈：中国古代四千年谍海风云（全2册） | 赵英 | [下载](https://url89.ctfile.com/f/31084289-1357008742-adf1c5?p=8866) |\n| 间谍王：戴笠与中国特工 | 魏斐德 | [下载](https://url89.ctfile.com/f/31084289-1357008571-4000d9?p=8866) |\n| CIA美国中央情报局全传 | 亚诺 | [下载](https://url89.ctfile.com/f/31084289-1357007401-df2110?p=8866) |\n| 国家阴谋5：火焰王子 | 丹尼尔・席尔瓦 | [下载](https://url89.ctfile.com/f/31084289-1357006324-542463?p=8866) |\n| 7本书带你走进间谍圈（全七册） | 弗·福赛斯 | [下载](https://url89.ctfile.com/f/31084289-1357005466-1df1de?p=8866) |\n| 风起陇西 | 马伯庸 | [下载](https://url89.ctfile.com/f/31084289-1357005358-f7a76a?p=8866) |\n"
  },
  {
    "path": "md/阅读.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 阅读\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 文学的读法 | 特里・伊格尔顿 | [下载](https://url89.ctfile.com/f/31084289-1375497127-2181e6?p=8866) |\n| 阅读变现 | 山口周 | [下载](https://url89.ctfile.com/f/31084289-1375499122-5f9eef?p=8866) |\n| 卡片笔记写作法 | 申克・阿伦斯 | [下载](https://url89.ctfile.com/f/31084289-1375509484-b4866a?p=8866) |\n| 学会读书 | 叶圣陶 | [下载](https://url89.ctfile.com/f/31084289-1357003942-ca36b7?p=8866) |\n| 间谍学校 | 丹尼斯・布金 | [下载](https://url89.ctfile.com/f/31084289-1357000366-6508f7?p=8866) |\n| 给大忙人的高效阅读课 | 李源 | [下载](https://url89.ctfile.com/f/31084289-1356995281-68ab8d?p=8866) |\n| 心智与阅读 | 丹尼尔·T.威林厄姆 | [下载](https://url89.ctfile.com/f/31084289-1356992236-5d001e?p=8866) |\n| 钱歌川英语学习大全（套装共5册） | 钱歌川 | [下载](https://url89.ctfile.com/f/31084289-1356989314-5a163c?p=8866) |\n| 超级快速阅读 | 克里斯蒂安・格吕宁 | [下载](https://url89.ctfile.com/f/31084289-1356987370-2cefa8?p=8866) |\n| 如何阅读 | 艾比・马克斯・比尔 | [下载](https://url89.ctfile.com/f/31084289-1356984664-962b4e?p=8866) |\n| 麦肯锡精英高效阅读法 | 赤羽雄二 | [下载](https://url89.ctfile.com/f/31084289-1357047550-1b713b?p=8866) |\n| 短篇小说写作指南 | 美国《作家文摘》杂志社 | [下载](https://url89.ctfile.com/f/31084289-1357033153-79face?p=8866) |\n| 如何有效阅读 | 藤原和博 | [下载](https://url89.ctfile.com/f/31084289-1357031440-03cd3f?p=8866) |\n| 越读者 | 郝明义 | [下载](https://url89.ctfile.com/f/31084289-1357023550-9e1081?p=8866) |\n| 为生命而阅读 | 威尔・施瓦尔贝 | [下载](https://url89.ctfile.com/f/31084289-1357023328-a9e738?p=8866) |\n| 洋葱阅读法 | 彭小六 | [下载](https://url89.ctfile.com/f/31084289-1357021639-2cdecd?p=8866) |\n| 如何高效阅读 | 彼得・孔普 | [下载](https://url89.ctfile.com/f/31084289-1357018705-8aca11?p=8866) |\n| 碟形世界（套装共6册） | 特里・普拉切特 | [下载](https://url89.ctfile.com/f/31084289-1357018381-23efd5?p=8866) |\n| 如何有效阅读一本书 | 奥野宣之 | [下载](https://url89.ctfile.com/f/31084289-1357018084-2e78d2?p=8866) |\n| 极致阅读手册 | 高荣成 | [下载](https://url89.ctfile.com/f/31084289-1357017784-d6d43c?p=8866) |\n| 快速阅读术 | 印南敦史 | [下载](https://url89.ctfile.com/f/31084289-1357013968-1f2fcc?p=8866) |\n| 脑的阅读：破解人类阅读之谜 | 斯坦尼斯拉斯・迪昂 | [下载](https://url89.ctfile.com/f/31084289-1357008967-c4cc21?p=8866) |\n| 如何阅读一本书 | 莫提默・艾德勒 / 查尔斯・范多伦  | [下载](https://url89.ctfile.com/f/31084289-1357008229-e2b8e4?p=8866) |\n| 舍不得读完的书 | 聂震宁 | [下载](https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866) |\n| 52周记忆魔法实战手册 | 多米尼克・奥布莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357004722-bce77e?p=8866) |\n| 我最想要的记忆魔法书 | 多米尼克・奥布莱恩 | [下载](https://url89.ctfile.com/f/31084289-1357004725-2e954b?p=8866) |\n"
  },
  {
    "path": "md/阴谋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 阴谋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 邪恶之城 | 大卫・贝瑟尔 | [下载](https://url89.ctfile.com/f/31084289-1357037332-1f1148?p=8866) |\n| 国家阴谋：复仇天使四部曲 | 丹尼尔・席尔瓦 | [下载](https://url89.ctfile.com/f/31084289-1357006003-518eb4?p=8866) |\n"
  },
  {
    "path": "md/阿富汗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 阿富汗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 作家们的作家 | 克雷格・惠特洛克 | [下载](https://url89.ctfile.com/f/31084289-1375492210-4f29b8?p=8866) |\n| 王的归程 | 威廉・达尔林普尔 | [下载](https://url89.ctfile.com/f/31084289-1375510789-d047d4?p=8866) |\n| 没有终点的列车 | 劳拉・麦克维 | [下载](https://url89.ctfile.com/f/31084289-1357030246-4da254?p=8866) |\n| 群山回唱 | 卡勒德・胡赛尼 | [下载](https://url89.ctfile.com/f/31084289-1357029064-c691c9?p=8866) |\n| 无规则游戏 | 塔米姆・安萨利 | [下载](https://url89.ctfile.com/f/31084289-1357027660-1f7858?p=8866) |\n"
  },
  {
    "path": "md/阿拉伯.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 阿拉伯\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 阿拉伯“革命”隐藏的另一面 | 埃里克・德尼西 | [下载](https://url89.ctfile.com/f/31084289-1375496482-040f62?p=8866) |\n| 大征服 | 休・肯尼迪 | [下载](https://url89.ctfile.com/f/31084289-1356986032-6426f3?p=8866) |\n| 敌人与邻居 | 伊恩・布莱克 | [下载](https://url89.ctfile.com/f/31084289-1357045294-950ce9?p=8866) |\n| 征服与革命中的阿拉伯人 | 尤金・罗根 | [下载](https://url89.ctfile.com/f/31084289-1357043491-e8227f?p=8866) |\n| 伊本·赫勒敦 | 罗伯特・欧文 | [下载](https://url89.ctfile.com/f/31084289-1357030009-a9342c?p=8866) |\n| 穿越百年中东 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357010050-7579b9?p=8866) |\n"
  },
  {
    "path": "md/阿根廷.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 阿根廷\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鬼魂的盛宴 | 塞萨尔・艾拉 | [下载](https://url89.ctfile.com/f/31084289-1356997819-57a1d8?p=8866) |\n| 布宜诺斯艾利斯传 | 詹姆斯・加德纳 | [下载](https://url89.ctfile.com/f/31084289-1357051075-377d9d?p=8866) |\n| 野兔 | 塞萨尔・艾拉 | [下载](https://url89.ctfile.com/f/31084289-1357040452-a92efa?p=8866) |\n| 博尔赫斯全集第一辑（套装共16册） | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357033171-09f6c3?p=8866) |\n| 博尔赫斯全集第二辑（套装共12册） | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357033126-cbfe72?p=8866) |\n| 风景画家的片段人生 | 塞萨尔・艾拉 | [下载](https://url89.ctfile.com/f/31084289-1357032295-900cb5?p=8866) |\n| 恶棍列传 | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357008670-83c1da?p=8866) |\n"
  },
  {
    "path": "md/阿里巴巴.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 阿里巴巴\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 阿里巴巴正传 | 方兴东/刘伟  | [下载](https://url89.ctfile.com/f/31084289-1357018204-e1fd14?p=8866) |\n| 尽在双11：阿里巴巴技术演进与超越 | 阿里巴巴双11技术团队 | [下载](https://url89.ctfile.com/f/31084289-1357017178-2a79bc?p=8866) |\n| 穿布鞋的马云：决定阿里巴巴生死的27个节点 | 王利芬 | [下载](https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866) |\n"
  },
  {
    "path": "md/隋唐.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 隋唐\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 长安与河北之间 | 仇鹿鸣 | [下载](https://url89.ctfile.com/f/31084289-1357054402-00b665?p=8866) |\n| 唐朝诡事录3：大结局 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357022287-27301b?p=8866) |\n| 帝国的正午 | 赫连勃勃大王 | [下载](https://url89.ctfile.com/f/31084289-1357005139-267d57?p=8866) |\n"
  },
  {
    "path": "md/隋唐史.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 隋唐史\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 降魔变 | 马鸣谦 | [下载](https://url89.ctfile.com/f/31084289-1357041346-cd8c9b?p=8866) |\n| 唐人轶事汇编 | 周勋初/严杰/武秀成/姚松 | [下载](https://url89.ctfile.com/f/31084289-1357033762-b201b4?p=8866) |\n| 撒马尔罕的金桃 | 薛爱华 | [下载](https://url89.ctfile.com/f/31084289-1357033600-7f4a8f?p=8866) |\n| 唐开国 | 于赓哲 | [下载](https://url89.ctfile.com/f/31084289-1357027039-ea116e?p=8866) |\n"
  },
  {
    "path": "md/随便.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 随便\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我为你洒下月光 | 简媜 | [下载](https://url89.ctfile.com/f/31084289-1357022869-d5741b?p=8866) |\n| 阿弥陀佛么么哒 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357005679-dc7332?p=8866) |\n"
  },
  {
    "path": "md/随笔.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 随笔\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 长岛小记 | 郭红 | [下载](https://url89.ctfile.com/f/31084289-1375491448-bef079?p=8866) |\n| 那间街角的茶铺 | 王笛 | [下载](https://url89.ctfile.com/f/31084289-1375491775-2dbac0?p=8866) |\n| 读书是最对得起付出的一件事 | 梁晓声 | [下载](https://url89.ctfile.com/f/31084289-1375491988-526c88?p=8866) |\n| 我爱这哭不出来的浪漫 | 严明 | [下载](https://url89.ctfile.com/f/31084289-1375492279-da9a63?p=8866) |\n| 借山而居（珍藏版） | 张二冬 | [下载](https://url89.ctfile.com/f/31084289-1375492669-bdbbd4?p=8866) |\n| 躺平 | 贝恩德・布伦纳 | [下载](https://url89.ctfile.com/f/31084289-1375493068-3a03e2?p=8866) |\n| 声誉 | 唐诺 | [下载](https://url89.ctfile.com/f/31084289-1375493275-278681?p=8866) |\n| 圈外编辑 | 都筑响一 | [下载](https://url89.ctfile.com/f/31084289-1375493812-a4c0be?p=8866) |\n| 新冠时代的我们 | 保罗・乔尔达诺 | [下载](https://url89.ctfile.com/f/31084289-1375495420-65c573?p=8866) |\n| 再见，平成时代 | 新井一二三 | [下载](https://url89.ctfile.com/f/31084289-1375496449-4bf150?p=8866) |\n| 一切境 | 庆山 | [下载](https://url89.ctfile.com/f/31084289-1375498237-63e633?p=8866) |\n| 人间杭州 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1375498333-278c6e?p=8866) |\n| 故宫里的中国 | 祝勇 | [下载](https://url89.ctfile.com/f/31084289-1375498681-511b6c?p=8866) |\n| 灵长类人科动物图鉴 | 向田邦子 | [下载](https://url89.ctfile.com/f/31084289-1375498702-8b48c5?p=8866) |\n| 百万个明天 | 秦萤亮 | [下载](https://url89.ctfile.com/f/31084289-1375498915-531f5e?p=8866) |\n| 那猫那人那城 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1375498936-fe5a9d?p=8866) |\n| 未被摧毁的生活 | 李伟长 | [下载](https://url89.ctfile.com/f/31084289-1375503928-467c01?p=8866) |\n| 书店日记套装（全2册） | 肖恩・白塞尔 | [下载](https://url89.ctfile.com/f/31084289-1375506799-7d0cc6?p=8866) |\n| 有本事 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1375509241-f5b13a?p=8866) |\n| 大城北京 | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1375509667-8e85ae?p=8866) |\n| 古寺巡礼 | 和辻哲郎 | [下载](https://url89.ctfile.com/f/31084289-1375509676-6befb2?p=8866) |\n| 刻小说的人 | 比目鱼 | [下载](https://url89.ctfile.com/f/31084289-1375509745-085174?p=8866) |\n| 中国古典散文精选注译（套装共8册） | 傅璇琮 | [下载](https://url89.ctfile.com/f/31084289-1375509928-7dd06c?p=8866) |\n| 木心上海往事 | 铁戈 | [下载](https://url89.ctfile.com/f/31084289-1375510105-8d778a?p=8866) |\n| 漱石日记 | 夏目漱石 | [下载](https://url89.ctfile.com/f/31084289-1375510213-f80a7f?p=8866) |\n| 我的个天 | 戴建业 | [下载](https://url89.ctfile.com/f/31084289-1375510420-ff10a0?p=8866) |\n| 星船与大树 | 马慧元 | [下载](https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866) |\n| 没有意义就没有摇摆 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1375511080-f945a2?p=8866) |\n| 书鱼知小 | 流沙河 | [下载](https://url89.ctfile.com/f/31084289-1375511173-ce7dc0?p=8866) |\n| 明天又是崭新的一天 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1375511638-26ae7f?p=8866) |\n| 我爱天下一切狗 | 季羡林 | [下载](https://url89.ctfile.com/f/31084289-1375511947-976f66?p=8866) |\n| 饥饿：一部身体的回忆录 | 罗克珊・盖伊 | [下载](https://url89.ctfile.com/f/31084289-1375512007-c856a9?p=8866) |\n| 肥肉（增订版） | 朱赢椿等 | [下载](https://url89.ctfile.com/f/31084289-1375512190-f52a7f?p=8866) |\n| 停靠，一座城 | 李婧 | [下载](https://url89.ctfile.com/f/31084289-1375512250-e4c3ba?p=8866) |\n| 游荡集 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1375512268-80086a?p=8866) |\n| 价值的理由 | 陈嘉映 | [下载](https://url89.ctfile.com/f/31084289-1375512478-959447?p=8866) |\n| 护士的故事 | 克里斯蒂・沃森 | [下载](https://url89.ctfile.com/f/31084289-1375512511-6a8a40?p=8866) |\n| 有关品味 | 彼得・梅尔 | [下载](https://url89.ctfile.com/f/31084289-1375513072-dd4998?p=8866) |\n| 少时读书 | 废名 | [下载](https://url89.ctfile.com/f/31084289-1375513552-5b91fb?p=8866) |\n| 野味读书 | 孙犁 | [下载](https://url89.ctfile.com/f/31084289-1375513561-035977?p=8866) |\n| 缘缘堂随笔：足本 | 丰子恺 | [下载](https://url89.ctfile.com/f/31084289-1375513684-7de20d?p=8866) |\n| 百年曾祺：1920-2020 | 梁由之 | [下载](https://url89.ctfile.com/f/31084289-1357004320-812970?p=8866) |\n| 这是真的，我在一本书里读到过 | 巴斯卡尔・博尼法斯 | [下载](https://url89.ctfile.com/f/31084289-1357004263-cdcf18?p=8866) |\n| 谈话录 | 王安忆/张新颖 | [下载](https://url89.ctfile.com/f/31084289-1357004173-dcd05b?p=8866) |\n| 枕边书 | 帕梅拉・保罗 | [下载](https://url89.ctfile.com/f/31084289-1357004080-533237?p=8866) |\n| 让我去那花花世界 | 苗炜 | [下载](https://url89.ctfile.com/f/31084289-1357003999-efb1ee?p=8866) |\n| 史铁生文集（纪念版·全5册） | 史铁生 | [下载](https://url89.ctfile.com/f/31084289-1357003975-a3b5c9?p=8866) |\n| 自在京都 | 库索 | [下载](https://url89.ctfile.com/f/31084289-1357003879-27a2e4?p=8866) |\n| 冯唐成事心法 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357003486-f630c0?p=8866) |\n| 花间集 | 赵崇祚 | [下载](https://url89.ctfile.com/f/31084289-1357003321-4f2249?p=8866) |\n| 此生未完成（增订新版） | 于娟 | [下载](https://url89.ctfile.com/f/31084289-1357002841-046af5?p=8866) |\n| 海边小屋 | 梅・萨藤 | [下载](https://url89.ctfile.com/f/31084289-1357002400-bbe7a7?p=8866) |\n| 目光 | 陶勇 | [下载](https://url89.ctfile.com/f/31084289-1357001896-8e67ee?p=8866) |\n| 吃醋的人生 | 冯仑 | [下载](https://url89.ctfile.com/f/31084289-1357001887-dba4a1?p=8866) |\n| 全套系中文版陈舜臣随笔集 | 陈舜臣 | [下载](https://url89.ctfile.com/f/31084289-1357001860-bff3b9?p=8866) |\n| 岁月的针脚 | 小川糸 | [下载](https://url89.ctfile.com/f/31084289-1357001560-cd381e?p=8866) |\n| 浪客美食家 | 久住昌之 | [下载](https://url89.ctfile.com/f/31084289-1357001461-2bebba?p=8866) |\n| 单读：十周年特辑 | 尼古拉斯・卡尔 | [下载](https://url89.ctfile.com/f/31084289-1357001308-92f303?p=8866) |\n| 祝你快乐勇敢 | 果麦 | [下载](https://url89.ctfile.com/f/31084289-1357001137-84d35c?p=8866) |\n| 彼岸风景 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357000249-6eb01e?p=8866) |\n| 行走的耳朵 | 周云蓬 | [下载](https://url89.ctfile.com/f/31084289-1356999832-881ef8?p=8866) |\n| 培根随笔全集（作家榜经典文库） | 弗朗西斯・培根 | [下载](https://url89.ctfile.com/f/31084289-1356999565-7cd2dd?p=8866) |\n| 把地上的事往天上聊 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1356997897-ff709e?p=8866) |\n| 威尼斯：晨昏岛屿的集市 | 彼得・阿克罗伊德 | [下载](https://url89.ctfile.com/f/31084289-1356996892-8edff7?p=8866) |\n| 春风十里不如你 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1356996178-9bfced?p=8866) |\n| 走出唯一真理观 | 陈嘉映 | [下载](https://url89.ctfile.com/f/31084289-1356995503-31ccb1?p=8866) |\n| 谢谢你：松浦弥太郎处世小哲学 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1356995353-842ed3?p=8866) |\n| 张洁文集（九卷本） | 张洁 | [下载](https://url89.ctfile.com/f/31084289-1356995146-8f27a0?p=8866) |\n| 历史与传奇 | 张佳玮 | [下载](https://url89.ctfile.com/f/31084289-1356995116-27f3e6?p=8866) |\n| 在别人的句子里 | 陈以侃 | [下载](https://url89.ctfile.com/f/31084289-1356994660-ef8591?p=8866) |\n| 不要和你妈争辩 | 弗雷德里克・巴克曼 | [下载](https://url89.ctfile.com/f/31084289-1356992224-7edad4?p=8866) |\n| 假作真时 | 黄昱宁 | [下载](https://url89.ctfile.com/f/31084289-1356991696-edbc63?p=8866) |\n| 声音的魅力 | 张皓翔 | [下载](https://url89.ctfile.com/f/31084289-1356991552-babdf5?p=8866) |\n| 八千里路云和月 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1356991261-19628a?p=8866) |\n| 京都如晤 | 苏枕书 | [下载](https://url89.ctfile.com/f/31084289-1356991105-f1566d?p=8866) |\n| 业余者说 | 王人博 | [下载](https://url89.ctfile.com/f/31084289-1356990253-a98cef?p=8866) |\n| 野果 | 亨利・大卫・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1356989572-668ed4?p=8866) |\n| 不三 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1356988819-9f6970?p=8866) |\n| 两个李白 | 王充闾 | [下载](https://url89.ctfile.com/f/31084289-1356988381-e91c65?p=8866) |\n| 太阳与少女 | 森见登美彦 | [下载](https://url89.ctfile.com/f/31084289-1356987055-66c73f?p=8866) |\n| 扪虱谈鬼录（修订版） | 栾保群 | [下载](https://url89.ctfile.com/f/31084289-1356987067-dc3d81?p=8866) |\n| 爱情就是堆积如山的笔记 | 苏美 | [下载](https://url89.ctfile.com/f/31084289-1356986605-1d0750?p=8866) |\n| 冬牧场 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1356986113-258fce?p=8866) |\n| 评说历史系列丛书（套装共7册） | 夏坚勇等 | [下载](https://url89.ctfile.com/f/31084289-1356985966-9b3b5e?p=8866) |\n| 乌蒙山记 | 雷平阳 | [下载](https://url89.ctfile.com/f/31084289-1356985879-1cca19?p=8866) |\n| 我的音乐笔记 | 肖复兴 | [下载](https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866) |\n| 声色野记 | 侯磊 | [下载](https://url89.ctfile.com/f/31084289-1356985525-40f3ae?p=8866) |\n| 神性的温柔 | 泰戈尔 | [下载](https://url89.ctfile.com/f/31084289-1356985513-b3905d?p=8866) |\n| 我的美的世界 | 森茉莉 | [下载](https://url89.ctfile.com/f/31084289-1356985480-47ad93?p=8866) |\n| 沿坟墓而行 | 纳韦德・凯尔曼尼 | [下载](https://url89.ctfile.com/f/31084289-1356985387-9a67ee?p=8866) |\n| 蒙田随笔全集（共3册） | 米歇尔・德・蒙田 | [下载](https://url89.ctfile.com/f/31084289-1356985171-fc3c5a?p=8866) |\n| 生命是孤独的旅程 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1356984907-8a130e?p=8866) |\n| 李娟阿勒泰系列（共4册） | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1356984637-6f0d7a?p=8866) |\n| 夏与西伯利亚 | 倪湛舸 | [下载](https://url89.ctfile.com/f/31084289-1356983917-cff961?p=8866) |\n| 青眉抄 | 上村松园 | [下载](https://url89.ctfile.com/f/31084289-1356983134-c98139?p=8866) |\n| 黄小厨的春夏秋冬 | 黄磊 | [下载](https://url89.ctfile.com/f/31084289-1356982534-f9a23e?p=8866) |\n| 梦溪笔谈（全本全注全译） | 沈括 | [下载](https://url89.ctfile.com/f/31084289-1356982498-8c1213?p=8866) |\n| 在路上（读客经典） | 杰克・凯鲁亚克 | [下载](https://url89.ctfile.com/f/31084289-1356982507-7418ab?p=8866) |\n| 去他的巴西 | 胡续冬 | [下载](https://url89.ctfile.com/f/31084289-1356982432-70b440?p=8866) |\n| 小文65 | 马未都 | [下载](https://url89.ctfile.com/f/31084289-1356982444-87cc64?p=8866) |\n| 闲情偶寄（全本全注全译） | 李渔 | [下载](https://url89.ctfile.com/f/31084289-1356982435-f2b94d?p=8866) |\n| 正午6：旧山河，新故事 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052929-61e3c3?p=8866) |\n| 在时光中盛开的女子 | 李筱懿 | [下载](https://url89.ctfile.com/f/31084289-1357052680-befc4d?p=8866) |\n| 长皱了的小孩 | 严明 | [下载](https://url89.ctfile.com/f/31084289-1357052575-e2c228?p=8866) |\n| 天才为何成群地来 | 王汎森 | [下载](https://url89.ctfile.com/f/31084289-1357051240-d7d572?p=8866) |\n| 笑场（2017版） | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1357048558-fe098d?p=8866) |\n| 焚书（全本全注全译） | 张建业 | [下载](https://url89.ctfile.com/f/31084289-1357048288-6fa2cb?p=8866) |\n| 爱欲与哀矜 | 张定浩 | [下载](https://url89.ctfile.com/f/31084289-1357047418-fe398a?p=8866) |\n| 那些忧伤的年轻人 | 许知远 | [下载](https://url89.ctfile.com/f/31084289-1357047358-b7da0f?p=8866) |\n| 歌德谈话录（果麦经典） | 爱克曼 | [下载](https://url89.ctfile.com/f/31084289-1357047061-9b3ce0?p=8866) |\n| 第84封情书 | 骆淑景 | [下载](https://url89.ctfile.com/f/31084289-1357047031-83dc53?p=8866) |\n| 我的晃荡的青春 | 东野圭吾 | [下载](https://url89.ctfile.com/f/31084289-1357046584-e51f3a?p=8866) |\n| 媚骨之书 | 蒋蓝 | [下载](https://url89.ctfile.com/f/31084289-1357046599-ee2adf?p=8866) |\n| 波动 | 北岛 | [下载](https://url89.ctfile.com/f/31084289-1357046539-3edfdf?p=8866) |\n| 爵士乐群英谱 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357046266-bc8656?p=8866) |\n| 山之四季（果麦经典） | 高村光太郎 | [下载](https://url89.ctfile.com/f/31084289-1357046077-4fb72b?p=8866) |\n| 故事的开始 | 幾米 | [下载](https://url89.ctfile.com/f/31084289-1357045909-7e14cf?p=8866) |\n| 占卜师的预言 | 蒂齐亚诺・泰尔扎尼 | [下载](https://url89.ctfile.com/f/31084289-1357045684-642c71?p=8866) |\n| 只有一个人生 | 周国平 | [下载](https://url89.ctfile.com/f/31084289-1357045645-a16add?p=8866) |\n| 日升之处 | A.W.金莱克 | [下载](https://url89.ctfile.com/f/31084289-1357045108-31cd4d?p=8866) |\n| 不安的生活 | 何力 | [下载](https://url89.ctfile.com/f/31084289-1357044781-323bf8?p=8866) |\n| 食帖23：好久没去野餐了！ | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044721-dfba86?p=8866) |\n| 纳兰词（作家榜经典文库） | 纳兰性德 | [下载](https://url89.ctfile.com/f/31084289-1357044580-32b3a5?p=8866) |\n| 第一道曙光下的真实 | 欧内斯特・海明威 | [下载](https://url89.ctfile.com/f/31084289-1357044343-dd516b?p=8866) |\n| 笠翁对韵（作家榜经典文库） | 李渔 | [下载](https://url89.ctfile.com/f/31084289-1357044007-a27900?p=8866) |\n| 叛逆的思想家 | 皮耶尔乔治・奥迪弗雷迪 | [下载](https://url89.ctfile.com/f/31084289-1357043872-fbe83b?p=8866) |\n| 大地上的事情 | 苇岸 | [下载](https://url89.ctfile.com/f/31084289-1357043815-05cfe7?p=8866) |\n| 文化与人生 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357043635-743313?p=8866) |\n| 胡适四十自述（作家榜经典文库） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357043587-11c17e?p=8866) |\n| 听客溪的朝圣 | 安妮・迪拉德 | [下载](https://url89.ctfile.com/f/31084289-1357043377-309c92?p=8866) |\n| 忍不住的新努力（作家榜经典文库） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357043095-cf02bb?p=8866) |\n| 希尼三十年文选 | 谢默斯・希尼 | [下载](https://url89.ctfile.com/f/31084289-1357042900-67791e?p=8866) |\n| 美国深南之旅 | 保罗・索鲁 | [下载](https://url89.ctfile.com/f/31084289-1357042831-321a12?p=8866) |\n| 通往印度次大陆 | 赫尔曼・黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357041697-4eb06c?p=8866) |\n| 奥威尔杂文全集（全2册） | 乔治・奥威尔 | [下载](https://url89.ctfile.com/f/31084289-1357041355-9be4bc?p=8866) |\n| 当我在一个仲夏清晨出走 | 洛瑞・李 | [下载](https://url89.ctfile.com/f/31084289-1357041316-13ceb7?p=8866) |\n| 八股新论 | 金克木 | [下载](https://url89.ctfile.com/f/31084289-1357040908-f77a1a?p=8866) |\n| 常识与通识（纪念版） | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357040197-8d6560?p=8866) |\n| 吸猫指南 | 六井冰 | [下载](https://url89.ctfile.com/f/31084289-1357040377-276a7e?p=8866) |\n| 拔蒲歌 | 沈书枝 | [下载](https://url89.ctfile.com/f/31084289-1357040188-ed260c?p=8866) |\n| 威尼斯日记 | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357039990-dbfb2f?p=8866) |\n| 熊逸说经典作品集（套装共4册） | 熊逸 | [下载](https://url89.ctfile.com/f/31084289-1357039861-fc0604?p=8866) |\n| 太阳船上的孩子 | 雅丝米娜・米哈伊洛维奇 | [下载](https://url89.ctfile.com/f/31084289-1357038979-5304e6?p=8866) |\n| 星条旗下的茶叶蛋 | 方柏林 | [下载](https://url89.ctfile.com/f/31084289-1357038556-dea309?p=8866) |\n| 信徒的国度 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037947-743492?p=8866) |\n| 抵达之谜 | V.S.奈保尔 | [下载](https://url89.ctfile.com/f/31084289-1357037674-586f4c?p=8866) |\n| 瓦尔登湖（译文经典） | 亨利・戴维・梭罗 | [下载](https://url89.ctfile.com/f/31084289-1357036927-9c8859?p=8866) |\n| 堕落论（坂口安吾系列作品） | 坂口安吾 | [下载](https://url89.ctfile.com/f/31084289-1357036426-ed96c8?p=8866) |\n| 傅雷家书（经典版） | 傅雷 | [下载](https://url89.ctfile.com/f/31084289-1357035070-29903e?p=8866) |\n| 我的精神家园 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357034980-0be87d?p=8866) |\n| 反与正·婚礼集·夏 | 阿尔贝・加缪 | [下载](https://url89.ctfile.com/f/31084289-1357034794-60d4e9?p=8866) |\n| 原稿零枚日记 | 小川洋子 | [下载](https://url89.ctfile.com/f/31084289-1357034140-54223a?p=8866) |\n| 雨天炎天 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357034113-8c914e?p=8866) |\n| 和电风扇一起摇头 | 大岛 | [下载](https://url89.ctfile.com/f/31084289-1357034092-9f46c2?p=8866) |\n| 地下鲍勃·迪伦与老美国 | 格雷尔・马库斯 | [下载](https://url89.ctfile.com/f/31084289-1357034062-c50214?p=8866) |\n| 致女儿书 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357033981-f30b64?p=8866) |\n| 边境·近境 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357033975-46e832?p=8866) |\n| 地下巴黎 | 洛朗・多伊奇 | [下载](https://url89.ctfile.com/f/31084289-1357033960-4865f9?p=8866) |\n| 远方的鼓声 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357033570-2a737f?p=8866) |\n| 画见 | 止庵 | [下载](https://url89.ctfile.com/f/31084289-1357033513-1df154?p=8866) |\n| 韩寒的杂文们（套装共4册） | 韩寒 | [下载](https://url89.ctfile.com/f/31084289-1357033459-9d7d01?p=8866) |\n| 心为身役：苏珊·桑塔格日记与笔记（1964-1980） | 苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357033411-817dcb?p=8866) |\n| 猫头鹰在黄昏起飞 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357033234-b6cfcb?p=8866) |\n| 重生：苏珊·桑塔格日记与笔记（1947-1963） | 苏珊・桑塔格 | [下载](https://url89.ctfile.com/f/31084289-1357033216-d67227?p=8866) |\n| 简单：应对复杂世界的高级思维 | 木鱼/柳白 | [下载](https://url89.ctfile.com/f/31084289-1357033039-6a69db?p=8866) |\n| 我喜欢人生快活的样子 | 蔡澜 | [下载](https://url89.ctfile.com/f/31084289-1357032697-9f624a?p=8866) |\n| 蠹鱼文丛系列（套装10册） | 陈子善/叶瑜荪/李辉等  | [下载](https://url89.ctfile.com/f/31084289-1357032520-593c7e?p=8866) |\n| 沉住气，吃硬饭 | 王路 | [下载](https://url89.ctfile.com/f/31084289-1357032445-f909b3?p=8866) |\n| 四季，三餐，都随你 | 简猫 | [下载](https://url89.ctfile.com/f/31084289-1357032439-668022?p=8866) |\n| 小于一 | 约瑟夫・布罗茨基 | [下载](https://url89.ctfile.com/f/31084289-1357032349-ae3159?p=8866) |\n| 论小丑 | 诺曼・马内阿 | [下载](https://url89.ctfile.com/f/31084289-1357032298-d62fdc?p=8866) |\n| 玩儿 | 于谦 | [下载](https://url89.ctfile.com/f/31084289-1357032220-f9c708?p=8866) |\n| 闲话闲说（纪念版） | 阿城 | [下载](https://url89.ctfile.com/f/31084289-1357032094-c45426?p=8866) |\n| 地下乡愁蓝调 | 马世芳 | [下载](https://url89.ctfile.com/f/31084289-1357031992-c6a7a5?p=8866) |\n| 昨日书 | 马世芳 | [下载](https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866) |\n| 耳朵借我 | 马世芳 | [下载](https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866) |\n| 你所不知道的日本名词故事 | 新井一二三 | [下载](https://url89.ctfile.com/f/31084289-1357031881-8978eb?p=8866) |\n| 清欢三卷（唯美珍藏版） | 林清玄 | [下载](https://url89.ctfile.com/f/31084289-1357031848-4fe756?p=8866) |\n| 冬日笔记（理想国） | 保罗・奥斯特 | [下载](https://url89.ctfile.com/f/31084289-1357031746-95d746?p=8866) |\n| 寥寥中年事 | 秋色连波 | [下载](https://url89.ctfile.com/f/31084289-1357031434-15f851?p=8866) |\n| 冷月孤灯·静远楼读史 | 唐浩明 | [下载](https://url89.ctfile.com/f/31084289-1357031359-488f0a?p=8866) |\n| 奇来前书 | 杨牧 | [下载](https://url89.ctfile.com/f/31084289-1357031293-785e40?p=8866) |\n| 从一个蛋开始 | 徐则臣 | [下载](https://url89.ctfile.com/f/31084289-1357031023-96e5b6?p=8866) |\n| 人类愚蠢辞典 | 皮耶尔乔治・奥迪弗雷迪  | [下载](https://url89.ctfile.com/f/31084289-1357030942-19f5ab?p=8866) |\n| 美国家书 | 本杰明・富兰克林等 | [下载](https://url89.ctfile.com/f/31084289-1357030876-309b1f?p=8866) |\n| 锦灰堆 美人计 | 萧耳 | [下载](https://url89.ctfile.com/f/31084289-1357030711-cffcd0?p=8866) |\n| 纸短情长，民国大师们的最美情书（全6册套装） | 朱生豪/鲁迅/闻一多等 | [下载](https://url89.ctfile.com/f/31084289-1357030714-cbc286?p=8866) |\n| 自由在高处 | 熊培云 | [下载](链接未找到) |\n| 单独中的洞见 | 张方宇 | [下载](https://url89.ctfile.com/f/31084289-1357030474-91903e?p=8866) |\n| 读书毁了我 | 王强 | [下载](https://url89.ctfile.com/f/31084289-1357030408-4ed360?p=8866) |\n| 绿皮火车（精装增补图文版） | 周云蓬 | [下载](https://url89.ctfile.com/f/31084289-1357030276-97ed20?p=8866) |\n| 在新疆 | 刘亮程 | [下载](https://url89.ctfile.com/f/31084289-1357030111-69f33f?p=8866) |\n| 小王子的领悟 | 周保松 | [下载](https://url89.ctfile.com/f/31084289-1357029604-147daf?p=8866) |\n| 书贩笑忘录 | 陈晓维 | [下载](https://url89.ctfile.com/f/31084289-1357029508-bfbc07?p=8866) |\n| 四个春天 | 陆庆屹 | [下载](https://url89.ctfile.com/f/31084289-1357029481-41006d?p=8866) |\n| 一个人的文艺复兴 | 白先勇 | [下载](https://url89.ctfile.com/f/31084289-1357029421-adc6a2?p=8866) |\n| 下雨天一个人在家 | 江国香织 | [下载](https://url89.ctfile.com/f/31084289-1357029391-80179b?p=8866) |\n| 深思与省悟 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357029355-a50821?p=8866) |\n| 林清玄经典作品合集（套装共十二册） | 林清玄 | [下载](https://url89.ctfile.com/f/31084289-1357029175-3e7510?p=8866) |\n| 普通读者 | 西闪 | [下载](https://url89.ctfile.com/f/31084289-1357028995-84e54d?p=8866) |\n| 林中水滴 | 米・普里什文 | [下载](https://url89.ctfile.com/f/31084289-1357028419-0eee62?p=8866) |\n| 苦儿流浪记（果麦经典） | 埃克多・马洛 | [下载](https://url89.ctfile.com/f/31084289-1357028341-fbd188?p=8866) |\n| 古文辞类纂（全2册） | 姚鼐 | [下载](https://url89.ctfile.com/f/31084289-1357028095-524f25?p=8866) |\n| 见字如来 | 张大春 | [下载](https://url89.ctfile.com/f/31084289-1357028047-c7408c?p=8866) |\n| 大树 | 贝尔纳・韦伯 | [下载](https://url89.ctfile.com/f/31084289-1357027990-fdb107?p=8866) |\n| 浮沉万象记 | 毛晓雯 | [下载](https://url89.ctfile.com/f/31084289-1357028029-b341c0?p=8866) |\n| 给布里安娜的卡片 | 希瑟・麦克马拉米/威廉・克洛伊尔 | [下载](链接未找到) |\n| 试论疲倦 | 彼得・汉德克 | [下载](https://url89.ctfile.com/f/31084289-1357027906-d5f6a8?p=8866) |\n| 世间的名字都是秘密 | 苏缨 | [下载](https://url89.ctfile.com/f/31084289-1357027894-123174?p=8866) |\n| 春时樱，秋时叶 | 德富芦花  | [下载](https://url89.ctfile.com/f/31084289-1357027903-12eb42?p=8866) |\n| 书籍的世界 | 赫尔曼黑塞 | [下载](https://url89.ctfile.com/f/31084289-1357027612-b2d143?p=8866) |\n| 我们唱 | 叶三 | [下载](https://url89.ctfile.com/f/31084289-1357027609-3c8930?p=8866) |\n| 单读17：人的困境 | 吴琦主编 | [下载](https://url89.ctfile.com/f/31084289-1357027582-858cfb?p=8866) |\n| 单读18：都市一无所有 | 吴琦主编 | [下载](https://url89.ctfile.com/f/31084289-1357027570-69e4e0?p=8866) |\n| 单读19：到未来去 | 吴琦主编 | [下载](https://url89.ctfile.com/f/31084289-1357027576-7935d7?p=8866) |\n| 女人的食指 | 向田邦子 | [下载](https://url89.ctfile.com/f/31084289-1357027498-8a4dd7?p=8866) |\n| 丰饶与贫瘠 | 王安忆 | [下载](https://url89.ctfile.com/f/31084289-1357027381-2af7f7?p=8866) |\n| 哈佛读书札记 | 赵一凡 | [下载](https://url89.ctfile.com/f/31084289-1357027321-89ad70?p=8866) |\n| 一个观点，不一定对 | 黄章晋 | [下载](https://url89.ctfile.com/f/31084289-1357027276-aea6fc?p=8866) |\n| 男女有别 | 渡边淳一 | [下载](https://url89.ctfile.com/f/31084289-1357026973-55e3ae?p=8866) |\n| 自在独行 | 贾平凹 | [下载](https://url89.ctfile.com/f/31084289-1357026964-7741e7?p=8866) |\n| 大叔 | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1357026829-a09868?p=8866) |\n| 爱上几个人渣 | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866) |\n| 随性而至 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026382-2185ca?p=8866) |\n| 作家笔记 | 威廉・萨姆塞特・毛姆 | [下载](https://url89.ctfile.com/f/31084289-1357026373-6fd2ce?p=8866) |\n| 海胆 | 雷晓宇 | [下载](https://url89.ctfile.com/f/31084289-1357026202-702511?p=8866) |\n| 漂泊的异乡人 | 劳伦斯 | [下载](https://url89.ctfile.com/f/31084289-1357026148-636c2c?p=8866) |\n| 达·芬奇手记（珍藏版） | 达・芬奇 | [下载](https://url89.ctfile.com/f/31084289-1357026235-09adc4?p=8866) |\n| 国宴与家宴 | 王宣一 | [下载](https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866) |\n| 噪音 | 梁文道 | [下载](https://url89.ctfile.com/f/31084289-1357025527-55faa6?p=8866) |\n| 街角的老北京 | 卢文龙 | [下载](https://url89.ctfile.com/f/31084289-1357025494-89a58f?p=8866) |\n| 有话说 | 崔永元 | [下载](https://url89.ctfile.com/f/31084289-1357025344-b01496?p=8866) |\n| 退步集 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357024975-a909f9?p=8866) |\n| 耕种 食物 爱情 | 克里斯汀・金博尔 | [下载](https://url89.ctfile.com/f/31084289-1357024909-866ff8?p=8866) |\n| 走出荒野 | 谢丽尔・斯特雷德 | [下载](https://url89.ctfile.com/f/31084289-1357024669-658a2e?p=8866) |\n| 我讲个笑话，你可别哭啊 | 囧叔 | [下载](https://url89.ctfile.com/f/31084289-1357024642-ca56cb?p=8866) |\n| 全民自黑的英国 | 比尔・布莱森 | [下载](https://url89.ctfile.com/f/31084289-1357024585-96424a?p=8866) |\n| 在另一个宇宙的1003天 | 张春 | [下载](https://url89.ctfile.com/f/31084289-1357024516-a4c4cd?p=8866) |\n| 咖啡苦不苦 | 陈丹燕 | [下载](https://url89.ctfile.com/f/31084289-1357024429-89045d?p=8866) |\n| 美，看不见的竞争力 | 蒋勋 | [下载](https://url89.ctfile.com/f/31084289-1357024381-dc676d?p=8866) |\n| 贾想（套装共2册） | 贾樟柯 | [下载](https://url89.ctfile.com/f/31084289-1357024177-5dc26f?p=8866) |\n| 依赖共生 | 巴里・温霍尔德/贾内・温霍尔德 | [下载](https://url89.ctfile.com/f/31084289-1357024069-b92767?p=8866) |\n| 我只知道人是什么 | 余华 | [下载](https://url89.ctfile.com/f/31084289-1357023862-5896b8?p=8866) |\n| 慢煮生活 | 汪曾祺 | [下载](https://url89.ctfile.com/f/31084289-1357023556-6ec377?p=8866) |\n| 明天我要去冰岛 | 嘉倩 | [下载](https://url89.ctfile.com/f/31084289-1357023463-46e447?p=8866) |\n| 山河小岁月 | 李舒 | [下载](https://url89.ctfile.com/f/31084289-1357023418-3eafb8?p=8866) |\n| 朝话 | 梁漱溟 | [下载](https://url89.ctfile.com/f/31084289-1357023352-43d986?p=8866) |\n| 不过，一场生活 | 阿Sam | [下载](https://url89.ctfile.com/f/31084289-1357023298-eaaaea?p=8866) |\n| 天长地久：给美君的信 | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357022923-377b71?p=8866) |\n| 笑场 | 李诞 | [下载](https://url89.ctfile.com/f/31084289-1357022842-b37533?p=8866) |\n| 我们为什么总是看错人 | 王烁 | [下载](https://url89.ctfile.com/f/31084289-1357022611-49a550?p=8866) |\n| 无所畏 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357022455-8c8258?p=8866) |\n| 林达作品集（套装共10册） | 林达 | [下载](https://url89.ctfile.com/f/31084289-1357022713-97042e?p=8866) |\n| 潦草 | 贾行家 | [下载](https://url89.ctfile.com/f/31084289-1357021888-5f25ff?p=8866) |\n| 生命不息，折腾不止 | 罗永浩 | [下载](https://url89.ctfile.com/f/31084289-1357021867-a608cf?p=8866) |\n| 有如候鸟 | 周晓枫 | [下载](https://url89.ctfile.com/f/31084289-1357021786-f60585?p=8866) |\n| 生活上瘾指南 | 姚瑶 | [下载](https://url89.ctfile.com/f/31084289-1357021456-e1dbd0?p=8866) |\n| 私想鲁迅 | 刘春杰 | [下载](https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866) |\n| 一瓢纽约 | 张北海 | [下载](https://url89.ctfile.com/f/31084289-1357021135-c37724?p=8866) |\n| 大忘路 | 大忘路 | [下载](https://url89.ctfile.com/f/31084289-1357020988-769584?p=8866) |\n| 北野武的小酒馆 | 北野武 | [下载](https://url89.ctfile.com/f/31084289-1357020850-7ed159?p=8866) |\n| 文章皆岁月 | 萧乾 | [下载](https://url89.ctfile.com/f/31084289-1357020781-294c5e?p=8866) |\n| 三毛作品精选（共6册） | 三毛 | [下载](https://url89.ctfile.com/f/31084289-1357020745-33663b?p=8866) |\n| 老灵魂 | 韩松落 | [下载](https://url89.ctfile.com/f/31084289-1357020712-1dcbf2?p=8866) |\n| 以读攻读 | 但汉松 | [下载](https://url89.ctfile.com/f/31084289-1357020502-f49829?p=8866) |\n| 有时 | 徐瑾 | [下载](https://url89.ctfile.com/f/31084289-1357020499-b76fe6?p=8866) |\n| 把你交给时间 | 陶立夏 | [下载](https://url89.ctfile.com/f/31084289-1357020520-c95774?p=8866) |\n| 虫子旁 | 朱赢椿 | [下载](https://url89.ctfile.com/f/31084289-1357020127-6ae8cd?p=8866) |\n| 我的脖子让我很不爽 | 诺拉・艾芙隆 | [下载](https://url89.ctfile.com/f/31084289-1357019875-949ab1?p=8866) |\n| 水云（果麦经典） | 沈从文 | [下载](https://url89.ctfile.com/f/31084289-1357019872-c3302e?p=8866) |\n| 然而，很美：爵士乐之书 | 杰夫・戴尔 | [下载](https://url89.ctfile.com/f/31084289-1357019851-676e46?p=8866) |\n| 关键词 | 梁文道 | [下载](https://url89.ctfile.com/f/31084289-1357019260-b47d26?p=8866) |\n| 人间卧底 | 马良 | [下载](https://url89.ctfile.com/f/31084289-1357019188-c5a941?p=8866) |\n| 如丧 | 高晓松 | [下载](https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866) |\n| 人是一根会思考的芦苇 | 帕斯卡 | [下载](https://url89.ctfile.com/f/31084289-1357018051-3c51aa?p=8866) |\n| 偶遇 | 陈鲁豫 | [下载](https://url89.ctfile.com/f/31084289-1357017523-714fb8?p=8866) |\n| 风马牛（全三册） | 孙原 | [下载](https://url89.ctfile.com/f/31084289-1357017139-643906?p=8866) |\n| 慢慢来，反正也来不及 | 囧叔 | [下载](https://url89.ctfile.com/f/31084289-1357017091-63be9e?p=8866) |\n| 无聊的魅力 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016767-d5d553?p=8866) |\n| 机场里的小旅行 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016749-ca198e?p=8866) |\n| 工作颂歌 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016866-d1189f?p=8866) |\n| 哲学的慰藉 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016734-154cfc?p=8866) |\n| 幸福的建筑 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016800-10b9f5?p=8866) |\n| 拥抱逝水年华 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357016731-8427f1?p=8866) |\n| 你我皆凡人 | 六神磊磊 | [下载](https://url89.ctfile.com/f/31084289-1357016530-05da98?p=8866) |\n| 禅定荒野 | 加里・斯奈德 | [下载](https://url89.ctfile.com/f/31084289-1357016437-a21877?p=8866) |\n| 在这复杂世界里 | 韩寒 | [下载](https://url89.ctfile.com/f/31084289-1357016401-5810ba?p=8866) |\n| 你好，小确幸 | 加肥猫 | [下载](https://url89.ctfile.com/f/31084289-1357016305-40563d?p=8866) |\n| 美国的智慧（全2册） | 林语堂 | [下载](https://url89.ctfile.com/f/31084289-1357015927-98a2b1?p=8866) |\n| 来自静默时刻的讯息 | 亚历山大・克鲁格/格哈德・里希特 | [下载](https://url89.ctfile.com/f/31084289-1357015834-7f7b45?p=8866) |\n| 浮生六记（全本全译全注插图珍藏版） | 沈复 | [下载](https://url89.ctfile.com/f/31084289-1357015576-cbd161?p=8866) |\n| 旧山河 | 刀尔登 | [下载](https://url89.ctfile.com/f/31084289-1357015345-6077b5?p=8866) |\n| 武侠，从牛A到牛C | 大脸撑在小胸上 | [下载](https://url89.ctfile.com/f/31084289-1357015081-08667c?p=8866) |\n| 搜神记 | 冯唐 | [下载](https://url89.ctfile.com/f/31084289-1357014958-03a189?p=8866) |\n| 失落的优雅 | 阮义忠 | [下载](https://url89.ctfile.com/f/31084289-1357014619-e2d4f6?p=8866) |\n| 阅读是一座随身携带的避难所 | 威廉・萨默塞特・毛姆  | [下载](https://url89.ctfile.com/f/31084289-1357014526-6e422e?p=8866) |\n| 知道分子 | 王朔 | [下载](https://url89.ctfile.com/f/31084289-1357014475-8625ba?p=8866) |\n| 大萝卜和难挑的鳄梨 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357014292-185e18?p=8866) |\n| 送你一颗子弹 | 刘瑜 | [下载](https://url89.ctfile.com/f/31084289-1357014244-82b233?p=8866) |\n| 闲人遐想录 | 杰罗姆・克・杰罗姆 | [下载](https://url89.ctfile.com/f/31084289-1357013947-08bcf2?p=8866) |\n| 文稿拾零 | 豪尔赫・路易斯・博尔赫斯 | [下载](https://url89.ctfile.com/f/31084289-1357013854-de3eab?p=8866) |\n| 六神磊磊读唐诗 | 王晓磊 | [下载](https://url89.ctfile.com/f/31084289-1357013521-bdd110?p=8866) |\n| 睡觉大师 | 朱岳 | [下载](https://url89.ctfile.com/f/31084289-1357013257-d79e5b?p=8866) |\n| 给青年诗人的信 | 莱内・马利亚・里尔克 | [下载](https://url89.ctfile.com/f/31084289-1357012636-064601?p=8866) |\n| 爱的进化论 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357012588-04cd1e?p=8866) |\n| 愿你与这世界温暖相拥 | 毕淑敏 | [下载](https://url89.ctfile.com/f/31084289-1357012573-78aa7b?p=8866) |\n| 深山夏牧场 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357012348-5be301?p=8866) |\n| 前山夏牧场 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357012354-ef6a56?p=8866) |\n| 春牧场 | 李娟 | [下载](https://url89.ctfile.com/f/31084289-1357012315-5f2f15?p=8866) |\n| 她的国 | 寇研 | [下载](https://url89.ctfile.com/f/31084289-1357012282-94d4c2?p=8866) |\n| 东京一年 | 蒋方舟 | [下载](https://url89.ctfile.com/f/31084289-1357011895-9ac584?p=8866) |\n| 摩托日记 | 埃内斯托・切・格瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357011742-8ba474?p=8866) |\n| 撒哈拉的故事 | 三毛 | [下载](https://url89.ctfile.com/f/31084289-1357011679-8f3c6e?p=8866) |\n| 身份的焦虑 | 阿兰・德波顿 | [下载](https://url89.ctfile.com/f/31084289-1357011703-4d4366?p=8866) |\n| 无比芜杂的心绪 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357011481-7ffc07?p=8866) |\n| 谁是谁的太阳：尼采随笔 | 弗里德里希・威廉・尼采 | [下载](https://url89.ctfile.com/f/31084289-1357011469-72eb20?p=8866) |\n| 史铁生插图版经典作品选（全5册） | 史铁生 | [下载](https://url89.ctfile.com/f/31084289-1357011397-7d9849?p=8866) |\n| 雅舍遗珠 | 梁实秋 | [下载](https://url89.ctfile.com/f/31084289-1357011310-9751da?p=8866) |\n| 暖食：质朴的味道，家的味道 | 蔡澜 | [下载](https://url89.ctfile.com/f/31084289-1357010752-64eb82?p=8866) |\n| 人间世 | 二月河 | [下载](https://url89.ctfile.com/f/31084289-1357010728-b43c36?p=8866) |\n| 何必等来生 | 燕子 | [下载](https://url89.ctfile.com/f/31084289-1357010593-8d64d5?p=8866) |\n| 胡适文集（套装共7册） | 胡适 | [下载](https://url89.ctfile.com/f/31084289-1357010263-93ab41?p=8866) |\n| 超越智商 | 基思・斯坦诺维奇 | [下载](https://url89.ctfile.com/f/31084289-1357010014-dda1a4?p=8866) |\n| 菊次郎与佐纪 | 北野武 | [下载](https://url89.ctfile.com/f/31084289-1357009915-10ba80?p=8866) |\n| 像我这样的一个读者 | 西西 | [下载](https://url89.ctfile.com/f/31084289-1357009675-b3ceca?p=8866) |\n| 奥威尔作品集（套装共9册） | 奥威尔等 | [下载](https://url89.ctfile.com/f/31084289-1357009414-d712c7?p=8866) |\n| 众妙之门（精装插图版） | 阿道司・赫胥黎 | [下载](https://url89.ctfile.com/f/31084289-1357009396-d57366?p=8866) |\n| 船夫日记 | 凯尔泰斯・伊姆莱 | [下载](https://url89.ctfile.com/f/31084289-1357009303-181850?p=8866) |\n| 我们仨 | 杨绛 | [下载](https://url89.ctfile.com/f/31084289-1357008766-bd7185?p=8866) |\n| 易中天“帝国与共和”三部曲 | 易中天 | [下载](https://url89.ctfile.com/f/31084289-1357008115-8595c1?p=8866) |\n| 把生命浪费在美好的事物上 | 吴晓波 | [下载](https://url89.ctfile.com/f/31084289-1357008034-2d080f?p=8866) |\n| 一生的读书计划 | 克里夫顿・费迪曼/约翰・S・梅杰 | [下载](https://url89.ctfile.com/f/31084289-1357007917-971cd8?p=8866) |\n| 沙乡年鉴（果麦经典） | 奥尔多・利奥波德 | [下载](https://url89.ctfile.com/f/31084289-1357007749-a6a55e?p=8866) |\n| 性学五章 | 江晓原 | [下载](https://url89.ctfile.com/f/31084289-1357007680-460638?p=8866) |\n| 舍不得读完的书 | 聂震宁 | [下载](https://url89.ctfile.com/f/31084289-1357007632-c9b6ae?p=8866) |\n| 千年一叹 | 余秋雨 | [下载](https://url89.ctfile.com/f/31084289-1357007551-3154c1?p=8866) |\n| 旅行与读书 | 詹宏志 | [下载](https://url89.ctfile.com/f/31084289-1357007485-d3d2c4?p=8866) |\n| 皮囊 | 蔡崇达 | [下载](https://url89.ctfile.com/f/31084289-1357007422-fcec72?p=8866) |\n| 活在汉朝不容易 | 侯虹斌 | [下载](https://url89.ctfile.com/f/31084289-1357007359-dbc16f?p=8866) |\n| 上海秘境 | TimeOut 上海 | [下载](https://url89.ctfile.com/f/31084289-1357007212-b412d0?p=8866) |\n| 教科书里没有的历史细节 | 王国华 | [下载](https://url89.ctfile.com/f/31084289-1357007104-b8af9d?p=8866) |\n| 幸福了吗？ | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357007056-4db669?p=8866) |\n| 痛并快乐着 | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357007059-210539?p=8866) |\n| 目送（插图版） | 龙应台 | [下载](https://url89.ctfile.com/f/31084289-1357007047-59c74d?p=8866) |\n| 奇石：来自东西方的报道 | 彼得·海斯勒  | [下载](https://url89.ctfile.com/f/31084289-1357007032-db5e9e?p=8866) |\n| 乡关何处 | 土家野夫 | [下载](https://url89.ctfile.com/f/31084289-1357006978-c20038?p=8866) |\n| 从你的全世界路过 | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866) |\n| 沉默的大多数（彩绘插图本） | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357006861-a95707?p=8866) |\n| 白说 | 白岩松 | [下载](https://url89.ctfile.com/f/31084289-1357006843-caef85?p=8866) |\n| 1933：聆听民国 | 林语堂等 | [下载](https://url89.ctfile.com/f/31084289-1357006852-6ca6d0?p=8866) |\n| 我是爬行者小江 | 江一燕 | [下载](https://url89.ctfile.com/f/31084289-1357006828-cf34d0?p=8866) |\n| 看见 | 柴静 | [下载](https://url89.ctfile.com/f/31084289-1357006786-ed8dd0?p=8866) |\n| 你是尘埃也是光 | 梁子 | [下载](https://url89.ctfile.com/f/31084289-1357006552-85666d?p=8866) |\n| 你永远都无法叫醒一个装睡的人 | 周濂 | [下载](https://url89.ctfile.com/f/31084289-1357006522-520101?p=8866) |\n| 非洲三万里 | 毕淑敏 | [下载](https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866) |\n| 打回原形 | 朱新建 | [下载](https://url89.ctfile.com/f/31084289-1357006135-ed4c55?p=8866) |\n| 夜半蜘蛛猴 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357005913-712f9f?p=8866) |\n| 历史的底稿 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005871-ac57dc?p=8866) |\n| 大历史的边角料 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005868-04c945?p=8866) |\n| 吕著三国史话 | 吕思勉 | [下载](https://url89.ctfile.com/f/31084289-1357005895-c134ed?p=8866) |\n| 历史的空白处 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005820-bbbe2f?p=8866) |\n| 张鸣说历史：朝堂上的戏法 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005811-270f44?p=8866) |\n| 直截了当的独白 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005784-301300?p=8866) |\n| 船夫日记2 | 凯尔泰斯・伊姆莱 | [下载](https://url89.ctfile.com/f/31084289-1357005754-20f950?p=8866) |\n| 乖，摸摸头 | 大冰 | [下载](https://url89.ctfile.com/f/31084289-1357005667-4d1139?p=8866) |\n| 我亦飘零久 | 独木舟 | [下载](https://url89.ctfile.com/f/31084289-1357005637-3597fa?p=8866) |\n| 一年之痒 | 张鸣 | [下载](https://url89.ctfile.com/f/31084289-1357005586-a825c9?p=8866) |\n| 我们这个时代的怕和爱 | 陈丹青 | [下载](https://url89.ctfile.com/f/31084289-1357004716-7b334c?p=8866) |\n"
  },
  {
    "path": "md/隐私.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 隐私\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 捍卫隐私 | 凯文・米特尼克/罗伯特・瓦摩西 | [下载](https://url89.ctfile.com/f/31084289-1356995500-7cfe2e?p=8866) |\n"
  },
  {
    "path": "md/雍正.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 雍正\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 朕知道了 | 傅淞岩 | [下载](https://url89.ctfile.com/f/31084289-1357043092-87a4aa?p=8866) |\n| 雍正帝：中国的独裁君主 | 宫崎市定 | [下载](https://url89.ctfile.com/f/31084289-1357034107-e6a641?p=8866) |\n"
  },
  {
    "path": "md/雨.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 雨\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 雨：一部自然与文化的历史 | 辛西娅・巴内特 | [下载](https://url89.ctfile.com/f/31084289-1357052986-524b51?p=8866) |\n"
  },
  {
    "path": "md/雨果.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 雨果\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 巴黎圣母院 | 维克多・雨果 | [下载](https://url89.ctfile.com/f/31084289-1357028278-b28ff6?p=8866) |\n| 悲惨世界（套装上中下册） | 雨果 | [下载](https://url89.ctfile.com/f/31084289-1357008436-2ef843?p=8866) |\n"
  },
  {
    "path": "md/雪球.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 雪球\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 超额收益 | 刘哲 | [下载](https://url89.ctfile.com/f/31084289-1357042849-3026d2?p=8866) |\n| 手把手教你读财报 | 唐朝 | [下载](https://url89.ctfile.com/f/31084289-1357017625-c61710?p=8866) |\n| 手把手教你读财报2 | 唐朝 | [下载](https://url89.ctfile.com/f/31084289-1357017619-db3316?p=8866) |\n| 您厉害，您赚得多 | 方三文 | [下载](https://url89.ctfile.com/f/31084289-1357017433-319be1?p=8866) |\n| 百箭穿杨 | 小小辛巴 | [下载](https://url89.ctfile.com/f/31084289-1357007416-1edb0a?p=8866) |\n| 非赚不可 | 袁园 | [下载](https://url89.ctfile.com/f/31084289-1357007410-4bcce4?p=8866) |\n"
  },
  {
    "path": "md/零售.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 零售\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 亚马逊效应 | 娜塔莉・伯格/米娅・奈茨 | [下载](https://url89.ctfile.com/f/31084289-1356985669-150953?p=8866) |\n| 超级转化率 | 陈勇 | [下载](https://url89.ctfile.com/f/31084289-1357049704-9e77e3?p=8866) |\n| 25%的回头客创造75%的利润 | 高田靖久 | [下载](https://url89.ctfile.com/f/31084289-1357033051-dfc26a?p=8866) |\n| 零售的本质 | 本多利范 | [下载](https://url89.ctfile.com/f/31084289-1357030837-54e60d?p=8866) |\n| 新零售 | 范鹏 | [下载](https://url89.ctfile.com/f/31084289-1357028200-21484f?p=8866) |\n| 新零售进化论 | 陈欢/陈澄波 | [下载](https://url89.ctfile.com/f/31084289-1357023538-ca2fdb?p=8866) |\n| 永远的零售 | 厉玲 | [下载](https://url89.ctfile.com/f/31084289-1357021438-4c2d0b?p=8866) |\n| 零售心理战 | 铃木敏文 | [下载](https://url89.ctfile.com/f/31084289-1357015999-2d2d27?p=8866) |\n| 富甲美国 | 山姆・沃尔顿 | [下载](https://url89.ctfile.com/f/31084289-1357014853-c66266?p=8866) |\n| 名创优品没有秘密 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357012516-ef32a1?p=8866) |\n| 新零售时代三部曲（套装共三册） | 杰弗里・米勒/大卫・贝尔等 | [下载](https://url89.ctfile.com/f/31084289-1357011358-a99ca6?p=8866) |\n| 零售哲学系列：7-11便利店创始人自述（套装共2册） | 铃木敏文 | [下载](https://url89.ctfile.com/f/31084289-1357007086-5df848?p=8866) |\n"
  },
  {
    "path": "md/零食.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 零食\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 健康零食：知道这些就够了 | 戴尔・沃勒 | [下载](https://url89.ctfile.com/f/31084289-1357039639-a74990?p=8866) |\n"
  },
  {
    "path": "md/霍金.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 霍金\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| Brief Answers to the Big Questions | Stephen Hawking | [下载](https://url89.ctfile.com/f/31084289-1357023337-520d53?p=8866) |\n| My Brief History | Stephen Hawking | [下载](https://url89.ctfile.com/f/31084289-1357018171-0525fe?p=8866) |\n| 宇宙简史：起源与归宿 | 斯蒂芬・霍金 | [下载](https://url89.ctfile.com/f/31084289-1357008094-f957bd?p=8866) |\n"
  },
  {
    "path": "md/青春.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 青春\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我的天 | 子日山 | [下载](https://url89.ctfile.com/f/31084289-1375512580-5110c5?p=8866) |\n| 听你的 | 张皓宸 | [下载](https://url89.ctfile.com/f/31084289-1356985924-80e3bb?p=8866) |\n| 撒野 | 巫哲 | [下载](https://url89.ctfile.com/f/31084289-1357049875-0ec340?p=8866) |\n| 终点的少女 | 柚木麻子 | [下载](https://url89.ctfile.com/f/31084289-1357045948-748ac8?p=8866) |\n| 情书 | 岩井俊二 | [下载](https://url89.ctfile.com/f/31084289-1357033849-0749ba?p=8866) |\n| 悲伤逆流成河 | 郭敬明 | [下载](https://url89.ctfile.com/f/31084289-1357032358-7743cd?p=8866) |\n| 夏摩山谷 | 安妮宝贝 | [下载](https://url89.ctfile.com/f/31084289-1357032019-6efc6c?p=8866) |\n| 二十几岁，没有十年 | 孙晴悦 | [下载](https://url89.ctfile.com/f/31084289-1357031950-e4dc6b?p=8866) |\n| 素年锦时 | 安妮宝贝 | [下载](https://url89.ctfile.com/f/31084289-1357031728-e066c5?p=8866) |\n| 少女，请回答 | 张晓晗 | [下载](https://url89.ctfile.com/f/31084289-1357030582-0c3eb2?p=8866) |\n| 女少年 | 秋微 | [下载](https://url89.ctfile.com/f/31084289-1357028980-691d01?p=8866) |\n| 愿为西南风 | 闻人可轻 | [下载](https://url89.ctfile.com/f/31084289-1357027759-a931a4?p=8866) |\n| 击壤歌 | 朱天心 | [下载](https://url89.ctfile.com/f/31084289-1357027555-f77b84?p=8866) |\n| 时擦 | 笙离 | [下载](https://url89.ctfile.com/f/31084289-1357027348-1f5ea8?p=8866) |\n| 那些伤不起的年轻人 | 二白 | [下载](https://url89.ctfile.com/f/31084289-1357027111-bfde42?p=8866) |\n| 单身战争 | 韩十三 | [下载](https://url89.ctfile.com/f/31084289-1357025608-1cb333?p=8866) |\n| 夏日终曲 | 安德烈・艾西蒙 | [下载](https://url89.ctfile.com/f/31084289-1357024519-7dbbd6?p=8866) |\n| 疯犬少年的天空 | 里则林 | [下载](https://url89.ctfile.com/f/31084289-1357024507-39618c?p=8866) |\n| Pretty Little Liars | Shepard, Sara | [下载](https://url89.ctfile.com/f/31084289-1357023334-f0b621?p=8866) |\n| 少年的你，如此美丽 | 玖月晞 | [下载](https://url89.ctfile.com/f/31084289-1357022845-17524c?p=8866) |\n| 世事如刀，我来领教 | 房昊 | [下载](https://url89.ctfile.com/f/31084289-1357022374-2e403d?p=8866) |\n| 向着光亮那方 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357020682-46d971?p=8866) |\n| 匆匆那年 | 九夜茴 | [下载](https://url89.ctfile.com/f/31084289-1357020661-848463?p=8866) |\n| 如丧 | 高晓松 | [下载](https://url89.ctfile.com/f/31084289-1357019140-d37184?p=8866) |\n| 你好，旧时光（全三册） | 八月长安 | [下载](https://url89.ctfile.com/f/31084289-1357016317-8d59ff?p=8866) |\n| 怪咖的自我修养 | 闫景歌 | [下载](https://url89.ctfile.com/f/31084289-1357010989-fbbbcb?p=8866) |\n| 麦田里的守望者 | 杰罗姆・大卫・塞林格 | [下载](https://url89.ctfile.com/f/31084289-1357010602-c11552?p=8866) |\n| 一粒红尘 | 独木舟 | [下载](https://url89.ctfile.com/f/31084289-1357009345-5d9d0b?p=8866) |\n| 西决 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357008517-20a0f1?p=8866) |\n| 东霓 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357008514-7dfcb0?p=8866) |\n| 芙蓉如面柳如眉 | 笛安 | [下载](https://url89.ctfile.com/f/31084289-1357008502-5170e3?p=8866) |\n| 三重门 | 韩寒 | [下载](https://url89.ctfile.com/f/31084289-1357008460-b410d1?p=8866) |\n| 愿你的青春不负梦想 | 俞敏洪 | [下载](https://url89.ctfile.com/f/31084289-1357008100-18736d?p=8866) |\n| 从你的全世界路过 | 张嘉佳 | [下载](https://url89.ctfile.com/f/31084289-1357006897-6a2bbf?p=8866) |\n| 我也会爱上别人的 | 自由极光 | [下载](https://url89.ctfile.com/f/31084289-1357006873-68fdf4?p=8866) |\n| 谁的青春不迷茫 | 刘同 | [下载](https://url89.ctfile.com/f/31084289-1357005850-5ea470?p=8866) |\n| 最好的我们 | 八月长安 | [下载](https://url89.ctfile.com/f/31084289-1357005655-cb38de?p=8866) |\n| 我亦飘零久 | 独木舟 | [下载](https://url89.ctfile.com/f/31084289-1357005637-3597fa?p=8866) |\n"
  },
  {
    "path": "md/非洲.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 非洲\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 穿越非洲两百年 | 郭建龙 | [下载](https://url89.ctfile.com/f/31084289-1357004452-fd0c14?p=8866) |\n| 向您告知，明天我们一家就要被杀 | 菲利普・古雷维奇 | [下载](https://url89.ctfile.com/f/31084289-1357003192-ccdfef?p=8866) |\n| 美洲奴隶贸易 | 约翰・伦道夫・斯皮尔斯 | [下载](https://url89.ctfile.com/f/31084289-1356996619-c30f76?p=8866) |\n| 耶稣的童年（库切文集） | J.M.库切 | [下载](https://url89.ctfile.com/f/31084289-1356995413-aa1656?p=8866) |\n| 金犀牛 | 富威尔-艾玛尔 | [下载](https://url89.ctfile.com/f/31084289-1357051084-29d3c1?p=8866) |\n| 中非湖区探险记Ⅱ | 理查德・F.伯顿 | [下载](https://url89.ctfile.com/f/31084289-1357046923-a553c3?p=8866) |\n| 非洲民间故事 | 保罗・拉丁 | [下载](https://url89.ctfile.com/f/31084289-1357046212-6c1ced?p=8866) |\n| 察沃的食人魔 | J.H.帕特森 | [下载](https://url89.ctfile.com/f/31084289-1357044652-ec17b3?p=8866) |\n| 梦游之地 | 米亚・科托 | [下载](https://url89.ctfile.com/f/31084289-1357028986-63cce9?p=8866) |\n| 不可不知的非洲史 | 杨益 | [下载](https://url89.ctfile.com/f/31084289-1357019659-a63c03?p=8866) |\n| 走出非洲 | 凯伦・布里克森 | [下载](https://url89.ctfile.com/f/31084289-1357014577-f2fe26?p=8866) |\n| 非洲常识 | 吕夏乔 | [下载](https://url89.ctfile.com/f/31084289-1357010038-6ab9e8?p=8866) |\n| 非洲三万里 | 毕淑敏 | [下载](https://url89.ctfile.com/f/31084289-1357006354-c9d153?p=8866) |\n"
  },
  {
    "path": "md/非虚构.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 非虚构\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 正午7：我们的生活 | 正午 | [下载](https://url89.ctfile.com/f/31084289-1357052818-d04d83?p=8866) |\n| To Be a Machine | Mark O'Connell | [下载](https://url89.ctfile.com/f/31084289-1357027078-09d6c7?p=8866) |\n"
  },
  {
    "path": "md/革命.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 革命\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 法国大革命 | 维森 | [下载](https://url89.ctfile.com/f/31084289-1357044022-4cd692?p=8866) |\n| 33场革命 | 卡内克・桑切斯・格瓦拉 | [下载](https://url89.ctfile.com/f/31084289-1357034071-1f266c?p=8866) |\n| 伟大的转型 | 诺姆・马格尔 | [下载](https://url89.ctfile.com/f/31084289-1357032343-15727c?p=8866) |\n| 牛虻 | 艾捷尔・丽莲・伏尼契 | [下载](https://url89.ctfile.com/f/31084289-1357012474-cb8e19?p=8866) |\n| 红岩 | 罗广斌/杨益言 | [下载](https://url89.ctfile.com/f/31084289-1357009657-7a2398?p=8866) |\n| 帝国的凋零 | 金满楼 | [下载](https://url89.ctfile.com/f/31084289-1357006066-e17b41?p=8866) |\n"
  },
  {
    "path": "md/韩国.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 韩国\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 一座城市，一部历史 | 李永石等 | [下载](https://url89.ctfile.com/f/31084289-1356990139-26f89d?p=8866) |\n| 82年生的金智英 | 赵南柱 | [下载](https://url89.ctfile.com/f/31084289-1357039924-8e05df?p=8866) |\n| 不可不知的朝韩史 | 杨益 | [下载](https://url89.ctfile.com/f/31084289-1357019653-a807c8?p=8866) |\n| 素媛 | 苏在沅 | [下载](https://url89.ctfile.com/f/31084289-1357015792-2888ba?p=8866) |\n"
  },
  {
    "path": "md/音乐.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 音乐\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 诺顿音乐断代史丛书（套装共4册） | 菲利普・唐斯 | [下载](https://url89.ctfile.com/f/31084289-1375492282-3fa830?p=8866) |\n| 余下只有噪音 | 亚历克斯・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1375509967-ee6928?p=8866) |\n| 星船与大树 | 马慧元 | [下载](https://url89.ctfile.com/f/31084289-1375510558-539795?p=8866) |\n| 没有意义就没有摇摆 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1375511080-f945a2?p=8866) |\n| 不哀之歌 | 曹利群 | [下载](https://url89.ctfile.com/f/31084289-1375513687-619e62?p=8866) |\n| 柏辽兹回忆录 | 埃克托尔・柏辽兹 | [下载](https://url89.ctfile.com/f/31084289-1356996952-cf4c12?p=8866) |\n| 如何假装懂音乐 | 王硕/储智勇 | [下载](https://url89.ctfile.com/f/31084289-1356992167-7c7309?p=8866) |\n| 世界音乐汇 | 西蒙・布劳顿 | [下载](https://url89.ctfile.com/f/31084289-1356988903-9ca23c?p=8866) |\n| 我的音乐笔记 | 肖复兴 | [下载](https://url89.ctfile.com/f/31084289-1356985537-157393?p=8866) |\n| 游艺黑白（全四册） | 焦元溥 | [下载](https://url89.ctfile.com/f/31084289-1356982555-e57eb3?p=8866) |\n| 贝多芬传：扼住命运咽喉的英雄 | 费利克斯・胡赫 | [下载](https://url89.ctfile.com/f/31084289-1357051042-dc8d6b?p=8866) |\n| 遇见莫扎特 | 保罗・约翰逊 | [下载](https://url89.ctfile.com/f/31084289-1357050742-52e166?p=8866) |\n| 知日52：BGM之魂 | 茶乌龙 | [下载](https://url89.ctfile.com/f/31084289-1357047412-210b95?p=8866) |\n| 爵士乐群英谱 | 村上春树 | [下载](https://url89.ctfile.com/f/31084289-1357046266-bc8656?p=8866) |\n| 地下乡愁蓝调 | 马世芳 | [下载](https://url89.ctfile.com/f/31084289-1357031992-c6a7a5?p=8866) |\n| 昨日书 | 马世芳 | [下载](https://url89.ctfile.com/f/31084289-1357031995-cea4e2?p=8866) |\n| 耳朵借我 | 马世芳 | [下载](https://url89.ctfile.com/f/31084289-1357031983-981a1b?p=8866) |\n| 辛丰年音乐文集（套装共六册） | 辛丰年 | [下载](https://url89.ctfile.com/f/31084289-1357030315-421cb1?p=8866) |\n| 我们唱 | 叶三 | [下载](https://url89.ctfile.com/f/31084289-1357027609-3c8930?p=8866) |\n| 音乐符号 | 塔拉斯蒂 | [下载](https://url89.ctfile.com/f/31084289-1357027090-ea2b06?p=8866) |\n| 乐队女孩 | 金・戈登 | [下载](https://url89.ctfile.com/f/31084289-1357025644-afb8d9?p=8866) |\n| 知中4·民谣啊民谣 | 苏静 | [下载](https://url89.ctfile.com/f/31084289-1357025260-f23d1e?p=8866) |\n| 音乐的极境 | 爱德华·W.萨义德 | [下载](https://url89.ctfile.com/f/31084289-1357022965-9d1e5c?p=8866) |\n| 奇迹唱片行 | 蕾秋・乔伊斯 | [下载](https://url89.ctfile.com/f/31084289-1357022113-7cd057?p=8866) |\n| 老灵魂 | 韩松落 | [下载](https://url89.ctfile.com/f/31084289-1357020712-1dcbf2?p=8866) |\n| 论巴赫 | 阿尔贝特・施韦泽 | [下载](https://url89.ctfile.com/f/31084289-1357018666-493f7e?p=8866) |\n| 极简音乐史 | 冈田晓生 | [下载](https://url89.ctfile.com/f/31084289-1357006222-875cfc?p=8866) |\n"
  },
  {
    "path": "md/领导.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 领导\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 责任病毒 | 罗杰・马丁 | [下载](https://url89.ctfile.com/f/31084289-1357004377-5e4067?p=8866) |\n| 变革的力量 | 约翰·P.科特 | [下载](https://url89.ctfile.com/f/31084289-1357001737-a8b420?p=8866) |\n| 从1到N：天才创造世界 | 水木然 | [下载](https://url89.ctfile.com/f/31084289-1357041298-4d7a2c?p=8866) |\n| 高绩效团队 | 琳达・亨曼 | [下载](https://url89.ctfile.com/f/31084289-1357034740-89cf01?p=8866) |\n| 七个天才团队的故事 | 沃伦・本尼斯 | [下载](https://url89.ctfile.com/f/31084289-1357017868-d37baa?p=8866) |\n| 可复制的领导力 | 樊登 | [下载](https://url89.ctfile.com/f/31084289-1357017184-25e82f?p=8866) |\n| 愿景领导者 | 迪帕克・乔普拉 | [下载](https://url89.ctfile.com/f/31084289-1357011211-07999a?p=8866) |\n| 领导梯队（原书第2版） | 拉姆・查兰/斯蒂芬・德罗特 | [下载](https://url89.ctfile.com/f/31084289-1357007449-d7dc15?p=8866) |\n"
  },
  {
    "path": "md/领导力.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 领导力\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 团队赋能 | 迈克・布伦特/菲奥娜・爱尔莎・丹特 | [下载](https://url89.ctfile.com/f/31084289-1356987871-30cfdf?p=8866) |\n| 赢的答案（尊享版） | 杰克・韦尔奇/苏茜・韦尔奇 | [下载](https://url89.ctfile.com/f/31084289-1356987571-9f3cd2?p=8866) |\n| 为什么精英都有超级领导力 | 金·R·鲍威尔 | [下载](https://url89.ctfile.com/f/31084289-1356987307-bc319f?p=8866) |\n| 实践智慧 | 野中郁次郎/荻野进介 | [下载](https://url89.ctfile.com/f/31084289-1356986557-603446?p=8866) |\n| 先发制人 | 布伦特・格里森 | [下载](https://url89.ctfile.com/f/31084289-1356983161-cd7422?p=8866) |\n| 如何创建天才团队 | 里奇・卡尔加德/迈克尔・马隆 | [下载](https://url89.ctfile.com/f/31084289-1357033771-1dd74b?p=8866) |\n| 横向领导力 | 罗杰・费希尔 | [下载](https://url89.ctfile.com/f/31084289-1357030771-784169?p=8866) |\n| 领导力思维 | 珍妮弗・加维・伯格/基斯・约翰斯顿 | [下载](https://url89.ctfile.com/f/31084289-1357030723-7e489c?p=8866) |\n| 中层领导力（共三册） | 约翰・麦克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1357030426-c47b64?p=8866) |\n| 我这就跟你走 | 科里・鲍克 | [下载](https://url89.ctfile.com/f/31084289-1357024180-eaf889?p=8866) |\n| 感召力 | 西蒙・兰卡斯特 | [下载](https://url89.ctfile.com/f/31084289-1357023307-74d207?p=8866) |\n| 领导力21法则 | 约翰・麦克斯维尔 | [下载](https://url89.ctfile.com/f/31084289-1357005919-08ec04?p=8866) |\n"
  },
  {
    "path": "md/风险.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 风险\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 灰犀牛：个人、组织如何与风险共舞 | 米歇尔・渥克 | [下载](https://url89.ctfile.com/f/31084289-1375498000-f693d7?p=8866) |\n| 非对称风险 | 纳西姆・尼古拉斯・塔勒布 | [下载](https://url89.ctfile.com/f/31084289-1356986995-4dff63?p=8866) |\n| 对冲 | 阿莉森・施拉格 | [下载](https://url89.ctfile.com/f/31084289-1357053004-5e1406?p=8866) |\n| 风险认知 | 格尔德・吉仁泽 | [下载](https://url89.ctfile.com/f/31084289-1357048312-050dee?p=8866) |\n| 思维与陷阱 | 史蒂夫・卡斯纳 | [下载](https://url89.ctfile.com/f/31084289-1357048204-e315d6?p=8866) |\n| 被平均的风险 | 萨姆・萨维奇 | [下载](https://url89.ctfile.com/f/31084289-1357038088-8edfbb?p=8866) |\n"
  },
  {
    "path": "md/食帖.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 食帖\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 食帖24：啊！又想吃零食了 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044592-d0d992?p=8866) |\n| 食帖21：酒的全事典 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044253-91c967?p=8866) |\n| 食帖22：多谢款待！ | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044475-b4a83f?p=8866) |\n| 食帖19：下午茶时间到 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043995-a8dd68?p=8866) |\n| 食帖17：蔬菜多好吃啊 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043878-a30b17?p=8866) |\n| 食帖18：真的，烤箱什么都能做 | 林江编者 | [下载](https://url89.ctfile.com/f/31084289-1357043719-496b18?p=8866) |\n| 食帖15：便当灵感集 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043620-aff18a?p=8866) |\n| 食帖16：大满足！就爱锅料理 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866) |\n| 食帖13：腐的品格 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043419-782bd3?p=8866) |\n| 食帖14：小聚会教科书 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043290-a9d722?p=8866) |\n| 食帖10：早餐，真的太重要了 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043146-93525e?p=8866) |\n| 食帖12：厨房，治愈人生的避难所 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357043011-cb0172?p=8866) |\n| 食帖09：了不起的面包 | 林江编者 | [下载](https://url89.ctfile.com/f/31084289-1357042822-a3f181?p=8866) |\n| 食帖05：全宇宙都在吃甜品 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042384-e0e825?p=8866) |\n"
  },
  {
    "path": "md/饮食.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 饮食\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 戒糖：改变一生的科学饮食法 | 初夏之菡 | [下载](https://url89.ctfile.com/f/31084289-1375499878-93f684?p=8866) |\n| 一个健康吃货的自我修养（共4册） | 威廉・李博士 | [下载](https://url89.ctfile.com/f/31084289-1375500919-565881?p=8866) |\n| 被误解的盐 | 詹姆斯・迪尼科兰托尼奥 | [下载](https://url89.ctfile.com/f/31084289-1375504426-dfa18b?p=8866) |\n| 餐桌上的危机 | 玛丽安・麦克纳 | [下载](https://url89.ctfile.com/f/31084289-1375507075-2804d2?p=8866) |\n| 川菜 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1375507624-372f79?p=8866) |\n| 鱼米之乡 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1375507657-86e27f?p=8866) |\n| 中国人超会吃 | 王恺等 | [下载](https://url89.ctfile.com/f/31084289-1375508890-237674?p=8866) |\n| 随园食单（全本全注全译） | 陈伟明 | [下载](https://url89.ctfile.com/f/31084289-1375509007-e80dab?p=8866) |\n| 你想知道的生酮饮食错误 | 米尔萨德・哈西奇 | [下载](https://url89.ctfile.com/f/31084289-1375510993-f333dc?p=8866) |\n| 黄油：一部丰富的历史 | 约翰・马图夏克 | [下载](https://url89.ctfile.com/f/31084289-1375511737-ace1ac?p=8866) |\n| 威士忌原来是这么回事儿 | 米凯勒・吉多 | [下载](https://url89.ctfile.com/f/31084289-1356996415-64d488?p=8866) |\n| 奶酪原来是这么回事儿 | 特里斯坦・西卡尔 | [下载](https://url89.ctfile.com/f/31084289-1356995494-26afde?p=8866) |\n| 深度营养 | 凯瑟琳・沙纳汉 | [下载](https://url89.ctfile.com/f/31084289-1356985054-44a698?p=8866) |\n| 酒鬼与圣徒 | 劳伦斯・奥斯本 | [下载](https://url89.ctfile.com/f/31084289-1357047991-6117d4?p=8866) |\n| 食帖22：多谢款待！ | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357044475-b4a83f?p=8866) |\n| 食帖16：大满足！就爱锅料理 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357043407-31f6f6?p=8866) |\n| 食帖08：自给自足指南书 | 林江 | [下载](https://url89.ctfile.com/f/31084289-1357042924-7f6350?p=8866) |\n| 食帖04：肉!肉!肉! | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042750-6413e8?p=8866) |\n| 食帖07：大丈夫生于厨房 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042570-b5d85e?p=8866) |\n| 食帖03：食鲜最高 | 林江主编 | [下载](https://url89.ctfile.com/f/31084289-1357042135-43b857?p=8866) |\n| 孤独的泡面 | 食帖番组主编 | [下载](https://url89.ctfile.com/f/31084289-1357040059-b9c317?p=8866) |\n| 盐糖脂 | 迈克尔・莫斯 | [下载](https://url89.ctfile.com/f/31084289-1357037266-955677?p=8866) |\n| 醉酒简史 | 马克・福赛思 | [下载](https://url89.ctfile.com/f/31084289-1357036678-9ff107?p=8866) |\n| 你是你吃出来的 | 夏萌 | [下载](https://url89.ctfile.com/f/31084289-1357034914-d89bbb?p=8866) |\n| 学会吃饭 | 珍・克里斯特勒/艾莉莎・鲍曼 | [下载](https://url89.ctfile.com/f/31084289-1357034608-3ac64a?p=8866) |\n| 谷物大脑 | 戴维・珀尔马特/戴维・珀尔马特 | [下载](https://url89.ctfile.com/f/31084289-1357031755-790ed2?p=8866) |\n| 国宴与家宴 | 王宣一 | [下载](https://url89.ctfile.com/f/31084289-1357025695-74608a?p=8866) |\n| 长寿的基因 | 普雷斯顿・埃斯特普 | [下载](https://url89.ctfile.com/f/31084289-1357025035-47ccf2?p=8866) |\n| 随园食单 | 袁枚 | [下载](https://url89.ctfile.com/f/31084289-1357022155-c66a9b?p=8866) |\n| 鱼翅与花椒 | 扶霞・邓洛普 | [下载](https://url89.ctfile.com/f/31084289-1357021147-dd7a73?p=8866) |\n| 迈克尔·波伦“饮食觉醒”系列（套装共3册） | 迈克尔・波伦 | [下载](https://url89.ctfile.com/f/31084289-1357010398-660d7e?p=8866) |\n| 米，面，鱼 | 马特・古尔丁 | [下载](https://url89.ctfile.com/f/31084289-1357006654-03c347?p=8866) |\n"
  },
  {
    "path": "md/香港.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 香港\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 香港社会三部曲 | 刘兆佳 | [下载](https://url89.ctfile.com/f/31084289-1356990025-6b4933?p=8866) |\n| 香港味道1 | 欧阳应霁 | [下载](https://url89.ctfile.com/f/31084289-1356985993-0ff83e?p=8866) |\n| 香港味道2 | 欧阳应霁 | [下载](https://url89.ctfile.com/f/31084289-1356986050-b290ba?p=8866) |\n| 爱上几个人渣 | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1357026802-11ef23?p=8866) |\n| 龙头凤尾 | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1357010032-914b4e?p=8866) |\n| 香港电影史记 | 魏君子 | [下载](https://url89.ctfile.com/f/31084289-1357006993-4a082b?p=8866) |\n| 豪门兴衰：百年香港商业 | 杜博奇 | [下载](https://url89.ctfile.com/f/31084289-1357006018-893e1a?p=8866) |\n"
  },
  {
    "path": "md/香港随笔.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 香港随笔\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 马家辉家行散记（共3册） | 马家辉 | [下载](https://url89.ctfile.com/f/31084289-1356984712-10fe3b?p=8866) |\n"
  },
  {
    "path": "md/马云.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 马云\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 穿布鞋的马云：决定阿里巴巴生死的27个节点 | 王利芬 | [下载](https://url89.ctfile.com/f/31084289-1357005943-3ecde0?p=8866) |\n"
  },
  {
    "path": "md/马克思.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 马克思\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 马克思恩格斯文集1~10卷（套装共10册） | 中共中央马克思恩格斯列宁斯大林著作编译局 | [下载](https://url89.ctfile.com/f/31084289-1357001404-2469af?p=8866) |\n| 马克思博士论文 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044634-5ea046?p=8866) |\n| 马克思与《资本论》 | 大卫・哈维 | [下载](https://url89.ctfile.com/f/31084289-1357029055-50e394?p=8866) |\n"
  },
  {
    "path": "md/马拉松.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 马拉松\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 丹尼尔斯经典跑步训练法 | 杰克・丹尼尔斯 | [下载](https://url89.ctfile.com/f/31084289-1357018579-b7727c?p=8866) |\n| 马拉松终极训练指南（原书第4版） | 霍尔・希格登 | [下载](https://url89.ctfile.com/f/31084289-1357011541-fc8a9e?p=8866) |\n"
  },
  {
    "path": "md/马来西亚.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 马来西亚\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 马来群岛自然考察记Ⅰ | 阿尔弗雷德・R.华莱士 | [下载](https://url89.ctfile.com/f/31084289-1357046353-0dfadd?p=8866) |\n| 马来群岛自然考察记Ⅱ | 阿尔弗雷德・R.华莱士 | [下载](https://url89.ctfile.com/f/31084289-1357046371-066493?p=8866) |\n"
  },
  {
    "path": "md/高效.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 高效\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 高效忍者 | 格雷厄姆・阿尔科特 | [下载](https://url89.ctfile.com/f/31084289-1357043974-64e295?p=8866) |\n| 高效的秘密 | 查尔斯・都希格 | [下载](https://url89.ctfile.com/f/31084289-1357023991-c10596?p=8866) |\n"
  },
  {
    "path": "md/高盛.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 高盛\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我为什么离开高盛 | 格雷格・史密斯 | [下载](https://url89.ctfile.com/f/31084289-1357024330-c9003b?p=8866) |\n| 高盛帝国（套装上下册） | 查尔斯・埃利斯 | [下载](https://url89.ctfile.com/f/31084289-1357023976-b41d46?p=8866) |\n"
  },
  {
    "path": "md/高铁.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 高铁\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 高铁风云录 | 高铁见闻 | [下载](https://url89.ctfile.com/f/31084289-1357011880-d18366?p=8866) |\n| 大国速度 | 高铁见闻 | [下载](https://url89.ctfile.com/f/31084289-1357008568-459c27?p=8866) |\n"
  },
  {
    "path": "md/鬼怪.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 鬼怪\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 纸上寻仙记 | 锦翼 | [下载](https://url89.ctfile.com/f/31084289-1357054243-e7b44f?p=8866) |\n| 唐朝诡事录 | 魏风华 | [下载](https://url89.ctfile.com/f/31084289-1357006990-6265a9?p=8866) |\n"
  },
  {
    "path": "md/魏晋.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 魏晋\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 魏晋南北朝简史 | 劳榦先生 | [下载](https://url89.ctfile.com/f/31084289-1356990064-033d75?p=8866) |\n| 魏晋之际的政治权力与家族网络 | 仇鹿鸣 | [下载](https://url89.ctfile.com/f/31084289-1356989743-9081ea?p=8866) |\n| 人物志（全本全注全译） | 刘劭/梁满仓 | [下载](https://url89.ctfile.com/f/31084289-1356983728-45b043?p=8866) |\n| 悬崖边的名士 | 大生 | [下载](https://url89.ctfile.com/f/31084289-1357035499-d66334?p=8866) |\n| 后三国战争史 | 陈峰韬 | [下载](https://url89.ctfile.com/f/31084289-1357019494-ed08ec?p=8866) |\n| 天崩地裂三百年（上） | 覃仕勇 | [下载](https://url89.ctfile.com/f/31084289-1357016053-8fc9ae?p=8866) |\n| 天崩地裂三百年（下） | 覃仕勇 | [下载](https://url89.ctfile.com/f/31084289-1357016044-4b2a48?p=8866) |\n| 世家的天下（全3册） | 潘彦明 | [下载](https://url89.ctfile.com/f/31084289-1357009249-56da80?p=8866) |\n"
  },
  {
    "path": "md/魔兽.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 魔兽\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 魔兽世界官方小说合集典藏版（全23册） | 理查德·A.纳克等 | [下载](https://url89.ctfile.com/f/31084289-1357034209-86637e?p=8866) |\n"
  },
  {
    "path": "md/魔幻.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 魔幻\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 猎魔人修订版一至八全集 | 安杰伊・萨普科夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375493842-0102d1?p=8866) |\n| 猎魔人修订版全集（全七卷） | 安杰伊・萨普科夫斯基 | [下载](https://url89.ctfile.com/f/31084289-1375503922-b0f3e6?p=8866) |\n| 迷雾之子珍藏版套装 | 布兰登・桑德森 | [下载](https://url89.ctfile.com/f/31084289-1375508860-829716?p=8866) |\n| 亚瑟王三部曲 | 伯纳德・康威尔 | [下载](https://url89.ctfile.com/f/31084289-1375508911-7853b0?p=8866) |\n| 百变王牌套装 | 乔治·R.R.马丁 | [下载](https://url89.ctfile.com/f/31084289-1357004479-0fecb7?p=8866) |\n| 唐骨 | 天涯野草 | [下载](https://url89.ctfile.com/f/31084289-1356991843-ed92a9?p=8866) |\n| 食梦馆 | 黎奺酒 | [下载](https://url89.ctfile.com/f/31084289-1356985045-f4a6e9?p=8866) |\n| 纸魔法系列三部曲 | 查丽・恩・霍姆博格 | [下载](https://url89.ctfile.com/f/31084289-1357052563-87c7f5?p=8866) |\n| 驭鲛记（全二册） | 九鹭非香 | [下载](https://url89.ctfile.com/f/31084289-1357045429-d26386?p=8866) |\n| 胡林的子女（插图本） | J.R.R. 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357044868-5b0ca5?p=8866) |\n| A Game of Thrones Series | George R. R. Martin | [下载](https://url89.ctfile.com/f/31084289-1357039252-7f3bcd?p=8866) |\n| 我的阴阳两界 | 王小波 | [下载](https://url89.ctfile.com/f/31084289-1357035031-a60fc1?p=8866) |\n| 乳房 | 菲利普・罗斯 | [下载](https://url89.ctfile.com/f/31084289-1357034773-e58b29?p=8866) |\n| 白天的房子，夜晚的房子 | 奥尔加・托卡尔丘克 | [下载](https://url89.ctfile.com/f/31084289-1357027042-2e68ad?p=8866) |\n| 霍比特人 | J.R.R. 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357023265-3225d7?p=8866) |\n| 齐天大圣传（共六册） | 楚阳冬 | [下载](https://url89.ctfile.com/f/31084289-1357021522-feabef?p=8866) |\n| 龙枪正典（套装共6册） | 玛格丽特・魏丝/崔西・西克曼 | [下载](https://url89.ctfile.com/f/31084289-1357017556-0ea52d?p=8866) |\n| 精灵宝钻 | 托尔金 | [下载](https://url89.ctfile.com/f/31084289-1357015567-02c2c7?p=8866) |\n| 哈利波特完整系列 | J・K・罗琳 | [下载](https://url89.ctfile.com/f/31084289-1357008673-cef687?p=8866) |\n"
  },
  {
    "path": "md/魔术.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 魔术\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 魔术江湖3 | 唐四方 | [下载](https://url89.ctfile.com/f/31084289-1356985279-dd3b48?p=8866) |\n| 魔术江湖2 | 唐四方 | [下载](https://url89.ctfile.com/f/31084289-1357049356-1b7e9b?p=8866) |\n| 大魔术师 | 张海帆 | [下载](https://url89.ctfile.com/f/31084289-1357047799-4641cf?p=8866) |\n| 魔术江湖 | 唐四方 | [下载](https://url89.ctfile.com/f/31084289-1357032151-b0073a?p=8866) |\n"
  },
  {
    "path": "md/鲁迅.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 鲁迅\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鲁迅的都市漫游 | 藤井省三 | [下载](https://url89.ctfile.com/f/31084289-1356995002-8ac38e?p=8866) |\n| 字里行间读鲁迅 | 黄乔生 | [下载](https://url89.ctfile.com/f/31084289-1357052611-2c45de?p=8866) |\n| 我也是鲁迅的遗物：朱安传 | 乔丽华 | [下载](https://url89.ctfile.com/f/31084289-1357052323-71cb40?p=8866) |\n| 唐宋传奇集（精装典藏版） | 蔡义江 | [下载](https://url89.ctfile.com/f/31084289-1357036696-49672a?p=8866) |\n| 人间鲁迅 | 林贤治 | [下载](https://url89.ctfile.com/f/31084289-1357032694-225117?p=8866) |\n| 私想鲁迅 | 刘春杰 | [下载](https://url89.ctfile.com/f/31084289-1357021240-7affc3?p=8866) |\n"
  },
  {
    "path": "md/鸟.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 鸟\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 我们花园里的鸟 | 马特・休厄尔 | [下载](https://url89.ctfile.com/f/31084289-1357040224-794360?p=8866) |\n| 鸟类的天赋 | 珍妮弗・阿克曼 | [下载](https://url89.ctfile.com/f/31084289-1357031230-1b9578?p=8866) |\n"
  },
  {
    "path": "md/鸡尾酒.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 鸡尾酒\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 鸡尾酒原来是这么回事儿 | 米凯勒・吉多/亚尼斯・瓦卢西克斯 | [下载](https://url89.ctfile.com/f/31084289-1356995518-e1329b?p=8866) |\n"
  },
  {
    "path": "md/鸡汤.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 鸡汤\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 成为自控者 | Susan Kuang | [下载](https://url89.ctfile.com/f/31084289-1357004494-7eeeaf?p=8866) |\n| 孤独的150个信念 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1356999637-dbe8fc?p=8866) |\n| 每天演好一个情绪稳定的成年人 | 老杨的猫头鹰 | [下载](https://url89.ctfile.com/f/31084289-1356996994-edf7f5?p=8866) |\n| 向上生长 | 九边 | [下载](https://url89.ctfile.com/f/31084289-1356995068-5df96e?p=8866) |\n| 即答力 | 松浦弥太郎 | [下载](https://url89.ctfile.com/f/31084289-1356990169-68ccea?p=8866) |\n| 我喜欢你，像风走了八千里 | 末那大叔 | [下载](https://url89.ctfile.com/f/31084289-1356983929-54c905?p=8866) |\n| 逻辑学原来很有趣 | 齐露露 | [下载](https://url89.ctfile.com/f/31084289-1357052515-a89017?p=8866) |\n| 你的自律，给你自由 | 小椰子 | [下载](https://url89.ctfile.com/f/31084289-1357052215-b25d97?p=8866) |\n| 阶层跃迁 | 闫肖锋 | [下载](https://url89.ctfile.com/f/31084289-1357051423-630300?p=8866) |\n| 出众，从改变习惯开始 | 马克・列克劳 | [下载](https://url89.ctfile.com/f/31084289-1357051234-2dc2d1?p=8866) |\n| 董卿：做一个有才情的女子 | 乔瑞玲 | [下载](https://url89.ctfile.com/f/31084289-1357040893-5201ef?p=8866) |\n| Unfu*k Yourself | Gary John Bishop | [下载](https://url89.ctfile.com/f/31084289-1357039189-c32b85?p=8866) |\n| 人生的84000种可能 | 艾力 | [下载](https://url89.ctfile.com/f/31084289-1357033465-4e8890?p=8866) |\n| 你有多强大，就有多温柔 | 王珣 | [下载](https://url89.ctfile.com/f/31084289-1357030270-9e29cb?p=8866) |\n| 让我们相逢在更高处 | 王潇 | [下载](https://url89.ctfile.com/f/31084289-1357026193-085500?p=8866) |\n| 终有一天你会懂 | 琢磨先生 | [下载](https://url89.ctfile.com/f/31084289-1357022740-61bb09?p=8866) |\n| 好吗好的 | 大冰  | [下载](https://url89.ctfile.com/f/31084289-1357007014-27f7a8?p=8866) |\n"
  },
  {
    "path": "md/麦肯锡.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 麦肯锡\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 麦肯锡高效工作法 | 大岛祥誉 | [下载](https://url89.ctfile.com/f/31084289-1357000918-f2a3a1?p=8866) |\n| 麦肯锡教我的逻辑思维 | 高杉尚伊 | [下载](https://url89.ctfile.com/f/31084289-1357042774-30018e?p=8866) |\n"
  },
  {
    "path": "md/黄金.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 黄金\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 黄金：权力与财富的世界简史 | 伯德・史蒂芬・格雷 | [下载](https://url89.ctfile.com/f/31084289-1375491481-144bc0?p=8866) |\n| 金色的羁绊 | 巴里・艾肯格林 | [下载](https://url89.ctfile.com/f/31084289-1357051210-15e3a4?p=8866) |\n"
  },
  {
    "path": "md/黑人.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 黑人\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 泥土之界 | 希拉莉・乔顿 | [下载](https://url89.ctfile.com/f/31084289-1357045225-16c874?p=8866) |\n| 为奴十二年 | 所罗门・诺瑟普 | [下载](https://url89.ctfile.com/f/31084289-1357011313-653371?p=8866) |\n"
  },
  {
    "path": "md/黑暗.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 黑暗\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 黑暗塔系列（套装共8册） | 斯蒂芬・金  | [下载](https://url89.ctfile.com/f/31084289-1357015876-92b687?p=8866) |\n"
  },
  {
    "path": "md/黑格尔.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 黑格尔\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 黑格尔学述 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357044370-525bea?p=8866) |\n| 黑格尔哲学讲演集 | 贺麟 | [下载](https://url89.ctfile.com/f/31084289-1357043905-0f7e12?p=8866) |\n"
  },
  {
    "path": "md/黑洞.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 黑洞\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 黑洞之书 | 史蒂文・古布泽/弗兰斯・比勒陀利乌斯 | [下载](https://url89.ctfile.com/f/31084289-1357028161-9b121c?p=8866) |\n"
  },
  {
    "path": "md/黑色童话.md",
    "content": "# 版权声明\n\n本站内容均从网上搜集，版权归著作人及版权方所有，如侵犯您的权益，请通知我们，我们将会及时删除！ 下载链接仅供宽带测试研究用途，请下载后在24小时内删除，请勿用于商业目的。请支持正版！\n\n# 黑色童话\n\n| 书名 | 作者 | epub/mobi/azw3 |\n| --- | --- | --- |\n| 知更鸟女孩5：遗失的羽毛 | 查克・温迪格 | [下载](https://url89.ctfile.com/f/31084289-1357031854-fd253d?p=8866) |\n"
  },
  {
    "path": "scripts/generate_index.py",
    "content": "import json\nimport re\nfrom collections import defaultdict\nfrom pathlib import Path\n\n# 路径定义\nROOT = Path(__file__).parent.parent\nALL_BOOKS_FILE = ROOT / \"docs\" / \"all-books.json\"\nSTATS_FILE = ROOT / \"docs\" / \"parse-stats.json\"\nOUTPUT_HTML = ROOT / \"docs\" / \"index.html\"\nOUTPUT_JSON = ROOT / \"docs\" / \"books.json\"\n\n\ndef load_books():\n    \"\"\"从 all-books.json 加载真实数据\"\"\"\n    if ALL_BOOKS_FILE.exists():\n        try:\n            with open(ALL_BOOKS_FILE, \"r\", encoding=\"utf-8\") as f:\n                books = json.load(f)\n                print(f\"✅ 从 all-books.json 加载了 {len(books)} 本书籍\")\n                return books\n        except Exception as e:\n            print(f\"❌ 加载 all-books.json 失败: {e}\")\n            print(f\"💡 提示：请先运行 'python scripts/parse_md_to_json.py' 生成 all-books.json\")\n            return []\n    \n    print(\"⚠️  未找到 all-books.json 文件\")\n    print(f\"💡 提示：请先运行 'python scripts/parse_md_to_json.py' 生成 all-books.json\")\n    return []\n\n\ndef load_stats():\n    \"\"\"加载统计信息\"\"\"\n    if STATS_FILE.exists():\n        try:\n            with open(STATS_FILE, \"r\", encoding=\"utf-8\") as f:\n                return json.load(f)\n        except Exception as e:\n            print(f\"⚠️  加载统计信息失败: {e}\")\n    return None\n\n\ndef group_books(books):\n    grouped = defaultdict(lambda: defaultdict(lambda: defaultdict(list)))\n    categories, languages, levels = set(), set(), set()\n\n    for b in books:\n        c = b[\"category\"]\n        l = b[\"language\"]\n        lv = b[\"level\"]\n\n        categories.add(c)\n        languages.add(l)\n        levels.add(lv)\n\n        grouped[c][l][lv].append(b)\n\n    return grouped, categories, languages, levels\n\n\ndef render_overview(total_books, total_categories, languages, levels):\n    # 格式化数字\n    books_display = f\"{total_books:,}\" if total_books > 1000 else str(total_books)\n    cats_display = f\"{total_categories:,}\" if total_categories > 1000 else str(total_categories)\n    \n    # 语言显示\n    lang_display = \" / \".join(sorted(languages)) if languages else \"中文 / 英文\"\n    \n    return f\"\"\"## 📊 统计概览\n\n<div class=\"overview-stats\">\n<div class=\"stat-item\">\n<span>📘 总书籍数</span>\n<strong id=\"total-books\">{books_display}</strong>\n</div>\n<div class=\"stat-item\">\n<span>📂 分类数量</span>\n<strong id=\"total-categories\">{cats_display}</strong>\n</div>\n<div class=\"stat-item\">\n<span>🌍 支持语言</span>\n<strong>{lang_display}</strong>\n</div>\n<div class=\"stat-item\">\n<span>📥 支持格式</span>\n<strong>EPUB / MOBI / AZW3</strong>\n</div>\n</div>\n\"\"\"\n\n\ndef render_search_ui():\n    # 直接写 HTML（GitHub Pages 支持）\n    return \"\"\"## 🔍 搜索书籍\n\n<div class=\"search-container\">\n  <input\n    type=\"text\"\n    id=\"search-input\"\n    placeholder=\"搜索 书名 / 作者 / 分类（支持多关键词，用空格分隔）\"\n    oninput=\"onSearch(event)\"\n    aria-label=\"搜索书籍\"\n    autocomplete=\"off\"\n  />\n  <div class=\"search-hint\">\n    <span>💡</span>\n    <span>支持搜索书名、作者、分类，可输入多个关键词（用空格分隔）</span>\n  </div>\n</div>\n\n<div id=\"search-results\" role=\"region\" aria-live=\"polite\" aria-label=\"搜索结果\">\n  <div class=\"loading-indicator\">正在加载书籍数据...</div>\n</div>\n\n<script src=\"search.js\"></script>\n\"\"\"\n\n\ndef render_content(grouped, stats=None):\n    lines = []\n    \n    # 计算每个分类的书籍数量\n    category_counts = {}\n    for category, languages in grouped.items():\n        count = sum(len(books) for lang_dict in languages.values() for books in lang_dict.values())\n        category_counts[category] = count\n    \n    # 按书籍数量排序，优先显示热门分类\n    sorted_categories = sorted(category_counts.keys(), key=lambda x: category_counts[x], reverse=True)\n    \n    # 优先显示用户指定的热门分类\n    priority_categories = [\"文学\", \"沟通\", \"励志\", \"经典\", \"历史\", \"科普\", \"管理\", \"社会\", \"推理\", \"经济\", \"哲学\", \"传记\"]\n    \n    # 重新排序：优先分类在前，然后按数量排序\n    priority_set = set(priority_categories)\n    priority_list = [cat for cat in priority_categories if cat in sorted_categories]\n    other_list = [cat for cat in sorted_categories if cat not in priority_set]\n    sorted_categories = priority_list + other_list\n    \n    # 限制显示的分类数量（避免页面过长）\n    max_categories = 20\n    if len(sorted_categories) > max_categories:\n        lines.append(f\"<p class=\\\"note-text\\\">💡 注：共 {len(category_counts)} 个分类，以下显示前 {max_categories} 个热门分类的书籍。使用搜索功能可查找所有书籍。</p>\\n\\n\")\n        sorted_categories = sorted_categories[:max_categories]\n\n    for category in sorted_categories:\n        lines.append(f\"<div class=\\\"category-section\\\">\\n\")\n        lines.append(f\"## 📂 {category}\\n\")\n\n        for language in sorted(grouped[category].keys()):\n            lines.append(f\"### 🌍 Language: {language}\\n\")\n\n            for level in sorted(grouped[category][language].keys()):\n                lines.append(f\"#### ⭐ Level: {level}\\n\")\n\n                books_list = grouped[category][language][level]\n                # 每个分类-语言-级别组合最多显示10本书\n                max_books_per_section = 10\n                if len(books_list) > max_books_per_section:\n                    books_list = books_list[:max_books_per_section]\n                    lines.append(f\"<p class=\\\"note-text\\\">*（共 {len(grouped[category][language][level])} 本，显示前 {max_books_per_section} 本）*</p>\\n\")\n\n                for b in books_list:\n                    formats = \", \".join(b.get(\"formats\", []))\n                    author = b.get('author', '未知')\n                    lines.append(\n                        f\"<div class=\\\"book-item\\\">\\n\"\n                        f\"<strong>{b['title']}</strong>\\n\"\n                        f\"<div class=\\\"book-meta\\\">👤 {author} ｜ 📥 {formats}</div>\\n\"\n                        f\"<a href=\\\"{b['link']}\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" class=\\\"book-link\\\">📥 下载</a>\\n\"\n                        f\"</div>\\n\"\n                    )\n\n                lines.append(\"\")\n        \n        lines.append(\"</div>\\n\\n\")\n\n    if len(sorted_categories) < len(grouped.keys()):\n        lines.append(f\"\\n<hr>\\n\\n<p class=\\\"note-text\\\">💡 还有 {len(grouped.keys()) - len(sorted_categories)} 个分类未显示，请使用搜索功能查找。</p>\\n\")\n\n    return \"\\n\".join(lines)\n\n\ndef markdown_to_html(md_content):\n    \"\"\"简单的 Markdown 转 HTML 转换\"\"\"\n    lines = md_content.split('\\n')\n    result_lines = []\n    in_list = False\n    in_paragraph = False\n    paragraph_lines = []\n    in_html_block = False\n    \n    i = 0\n    while i < len(lines):\n        line = lines[i]\n        stripped = line.strip()\n        \n        # 检测 HTML 块开始/结束\n        if '<div' in stripped or '<script' in stripped:\n            in_html_block = True\n        if '</div>' in stripped or '</script>' in stripped:\n            in_html_block = False\n        \n        # HTML 块内的内容直接保留\n        if in_html_block or ('<' in stripped and '>' in stripped and not stripped.startswith('#')):\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            result_lines.append(line)\n            i += 1\n            continue\n        \n        # 空行\n        if not stripped:\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            result_lines.append('')\n            i += 1\n            continue\n        \n        # 标题\n        if stripped.startswith('#### '):\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            result_lines.append(f'<h4>{stripped[5:]}</h4>')\n        elif stripped.startswith('### '):\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            result_lines.append(f'<h3>{stripped[4:]}</h3>')\n        elif stripped.startswith('## '):\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            result_lines.append(f'<h2>{stripped[3:]}</h2>')\n        elif stripped.startswith('# '):\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            result_lines.append(f'<h1>{stripped[2:]}</h1>')\n        # 水平线\n        elif stripped == '---':\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            result_lines.append('<hr>')\n        # 引用\n        elif stripped.startswith('> '):\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            result_lines.append(f'<blockquote>{stripped[2:]}</blockquote>')\n        # 列表项\n        elif stripped.startswith('- '):\n            if in_paragraph:\n                result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n                paragraph_lines = []\n                in_paragraph = False\n            if not in_list:\n                result_lines.append('<ul>')\n                in_list = True\n            content = stripped[2:]\n            # 处理内联格式\n            content = re.sub(r'\\*\\*(.*?)\\*\\*', r'<strong>\\1</strong>', content)\n            content = re.sub(r'\\[([^\\]]+)\\]\\(([^\\)]+)\\)', r'<a href=\"\\2\">\\1</a>', content)\n            result_lines.append(f'<li>{content}</li>')\n        # 普通段落\n        else:\n            if in_list:\n                result_lines.append('</ul>')\n                in_list = False\n            # 处理内联格式\n            processed_line = re.sub(r'\\*\\*(.*?)\\*\\*', r'<strong>\\1</strong>', line)\n            processed_line = re.sub(r'\\[([^\\]]+)\\]\\(([^\\)]+)\\)', r'<a href=\"\\2\">\\1</a>', processed_line)\n            paragraph_lines.append(processed_line)\n            in_paragraph = True\n        \n        i += 1\n    \n    # 处理结尾\n    if in_list:\n        result_lines.append('</ul>')\n    if in_paragraph:\n        result_lines.append('<p>' + ' '.join(paragraph_lines) + '</p>')\n    \n    return '\\n'.join(result_lines)\n\n\ndef generate_html(md_content):\n    \"\"\"生成完整的 HTML 页面\"\"\"\n    html_body = markdown_to_html(md_content)\n    \n    # 尝试加载统计信息并生成更新脚本\n    stats_info = \"\"\n    try:\n        stats_file = ROOT / \"docs\" / \"parse-stats.json\"\n        if stats_file.exists():\n            with open(stats_file, 'r', encoding='utf-8') as f:\n                stats = json.load(f)\n                stats_info = f\"\"\"\n<script>\n// 更新统计信息（从 parse-stats.json）\n(function() {{\n    const stats = {json.dumps(stats, ensure_ascii=False)};\n    const totalBooksEl = document.getElementById('total-books');\n    const totalCatsEl = document.getElementById('total-categories');\n    if (totalBooksEl && stats.total_books) {{\n        totalBooksEl.textContent = stats.total_books.toLocaleString() + ' 本';\n    }}\n    if (totalCatsEl && stats.categories_count) {{\n        totalCatsEl.textContent = stats.categories_count.toLocaleString() + ' 个';\n    }}\n}})();\n</script>\"\"\"\n    except Exception as e:\n        print(f\"⚠️  生成统计信息脚本失败: {e}\")\n    \n    html_template = \"\"\"<!DOCTYPE html>\n<html lang=\"zh-CN\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"description\" content=\"电子书下载宝库 - 汇聚24,000+本电子书，涵盖文学、历史、科普、管理、技术等各个领域。支持epub、mobi、azw3格式，完全免费。\">\n    <meta name=\"keywords\" content=\"电子书下载,免费电子书,epub下载,mobi下载,azw3下载,电子书资源,文学电子书,历史电子书\">\n    <meta name=\"author\" content=\"ebook-treasure-chest\">\n    <meta name=\"robots\" content=\"index, follow\">\n    \n    <!-- Open Graph -->\n    <meta property=\"og:title\" content=\"📚 电子书下载宝库 - Ebook Treasure Chest\">\n    <meta property=\"og:description\" content=\"汇聚24,000+本电子书，涵盖文学、历史、科普、管理、技术等各个领域\">\n    <meta property=\"og:type\" content=\"website\">\n    \n    <!-- Preload critical resources -->\n    <link rel=\"preload\" href=\"all-books.json\" as=\"fetch\" crossorigin>\n    <link rel=\"preload\" href=\"search.js\" as=\"script\">\n    \n    <title>📚 电子书下载宝库 - Ebook Treasure Chest</title>\n    <style>\n        /* Solarized Dark Color Palette */\n        :root {{\n            --base03: #002b36;  /* darkest background */\n            --base02: #073642;  /* dark background */\n            --base01: #586e75;  /* dark content */\n            --base00: #657b83;  /* content */\n            --base0: #839496;   /* main content */\n            --base1: #93a1a1;   /* comments */\n            --base2: #eee8d5;   /* light background */\n            --base3: #fdf6e3;   /* lightest background */\n            --yellow: #b58900;\n            --orange: #cb4b16;\n            --red: #dc322f;\n            --magenta: #d33682;\n            --violet: #6c71c4;\n            --blue: #268bd2;\n            --cyan: #2aa198;\n            --green: #859900;\n        }}\n        \n        * {{\n            box-sizing: border-box;\n            margin: 0;\n            padding: 0;\n        }}\n        \n        body {{\n            font-family: \"SF Mono\", \"Monaco\", \"Inconsolata\", \"Fira Code\", \"Roboto Mono\", \"Source Code Pro\", \"Consolas\", \"Courier New\", monospace, \"Microsoft YaHei\", sans-serif;\n            line-height: 1.7;\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 20px;\n            color: var(--base0);\n            background: var(--base03);\n            min-height: 100vh;\n        }}\n        \n        @media (max-width: 768px) {{\n            body {{\n                padding: 15px;\n            }}\n        }}\n        \n        header {{\n            background: var(--base02);\n            padding: 30px;\n            border-radius: 8px;\n            border: 1px solid var(--base01);\n            margin-bottom: 30px;\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);\n        }}\n        \n        h1 {{\n            font-size: 2.5em;\n            margin: 0 0 16px 0;\n            color: var(--cyan);\n            font-weight: 700;\n            text-align: center;\n            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);\n            letter-spacing: -0.5px;\n        }}\n        \n        h2 {{\n            font-size: 1.75em;\n            margin: 32px 0 20px 0;\n            padding-bottom: 12px;\n            border-bottom: 2px solid var(--blue);\n            color: var(--base1);\n            font-weight: 600;\n            position: relative;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }}\n        \n        h2::before {{\n            content: \"\";\n            position: absolute;\n            left: 0;\n            bottom: -2px;\n            width: 60px;\n            height: 2px;\n            background: var(--cyan);\n            border-radius: 1px;\n        }}\n        \n        h3 {{\n            font-size: 1.3em;\n            margin: 24px 0 12px 0;\n            color: var(--base0);\n            font-weight: 500;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }}\n        \n        h4 {{\n            font-size: 1.1em;\n            margin: 16px 0 8px 0;\n            color: var(--base00);\n            font-weight: 500;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }}\n        \n        a {{\n            color: var(--blue);\n            text-decoration: none;\n            transition: all 0.2s ease;\n            font-weight: 500;\n        }}\n        \n        a:hover {{\n            color: var(--cyan);\n            text-decoration: underline;\n        }}\n        \n        a:focus {{\n            outline: 2px solid var(--blue);\n            outline-offset: 2px;\n            border-radius: 2px;\n        }}\n        \n        blockquote {{\n            padding: 16px 20px;\n            color: var(--base1);\n            border-left: 4px solid var(--yellow);\n            margin: 20px 0;\n            background: var(--base02);\n            border-radius: 6px;\n            font-style: italic;\n            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);\n        }}\n        \n        hr {{\n            height: 1px;\n            margin: 40px 0;\n            background: linear-gradient(90deg, transparent, var(--base01), transparent);\n            border: 0;\n        }}\n        \n        .search-container {{\n            margin: 30px 0;\n            position: relative;\n            background: var(--base02);\n            padding: 24px;\n            border-radius: 8px;\n            border: 1px solid var(--base01);\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);\n        }}\n        \n        input[type=\"text\"] {{\n            width: 100%;\n            padding: 14px 18px;\n            font-size: 16px;\n            border: 2px solid var(--base01);\n            border-radius: 6px;\n            box-sizing: border-box;\n            transition: all 0.3s ease;\n            background-color: var(--base03);\n            color: var(--base0);\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);\n        }}\n        \n        input[type=\"text\"]:hover {{\n            border-color: var(--base00);\n            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);\n        }}\n        \n        input[type=\"text\"]:focus {{\n            outline: none;\n            border-color: var(--blue);\n            box-shadow: 0 0 0 3px rgba(38, 139, 210, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.2);\n            background-color: var(--base02);\n        }}\n        \n        input[type=\"text\"]::placeholder {{\n            color: var(--base01);\n        }}\n        \n        .search-hint {{\n            margin-top: 12px;\n            color: var(--base1);\n            font-size: 14px;\n            display: flex;\n            align-items: center;\n            gap: 8px;\n            padding: 8px 12px;\n            background: var(--base03);\n            border-radius: 6px;\n            border: 1px solid var(--base01);\n        }}\n        \n        #search-results {{\n            margin-top: 24px;\n            min-height: 50px;\n        }}\n        \n        .loading-indicator {{\n            text-align: center;\n            padding: 40px 20px;\n            color: var(--base1);\n            font-size: 16px;\n            background: var(--base02);\n            border-radius: 8px;\n            border: 1px solid var(--base01);\n        }}\n        \n        .loading-indicator::before {{\n            content: \"⏳ \";\n            animation: pulse 1.5s ease-in-out infinite;\n            color: var(--yellow);\n        }}\n        \n        @keyframes pulse {{\n            0%, 100% {{ opacity: 1; }}\n            50% {{ opacity: 0.5; }}\n        }}\n        \n        ul {{\n            padding-left: 0;\n            margin: 16px 0;\n            list-style: none;\n        }}\n        \n        li {{\n            margin: 12px 0;\n            padding: 12px 16px;\n            background: var(--base02);\n            border-left: 3px solid var(--blue);\n            border-radius: 6px;\n            transition: all 0.2s ease;\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n            border: 1px solid var(--base01);\n        }}\n        \n        li:hover {{\n            transform: translateX(4px);\n            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);\n            border-left-width: 4px;\n            border-left-color: var(--cyan);\n            background: var(--base03);\n        }}\n        \n        li strong {{\n            color: var(--base1);\n            font-size: 1.05em;\n            font-weight: 600;\n        }}\n        \n        p {{\n            margin: 16px 0;\n            line-height: 1.7;\n            color: var(--base0);\n        }}\n        \n        .overview-stats {{\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));\n            gap: 20px;\n            margin: 30px 0;\n        }}\n        \n        .stat-item {{\n            padding: 20px 18px;\n            background: var(--base02);\n            border-radius: 8px;\n            border: 1px solid var(--base01);\n            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);\n            transition: all 0.3s ease;\n            text-align: center;\n        }}\n        \n        .stat-item:hover {{\n            transform: translateY(-2px);\n            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);\n            border-color: var(--cyan);\n            background: var(--base03);\n        }}\n        \n        .stat-item span {{\n            display: block;\n            font-size: 13px;\n            color: var(--base1);\n            margin-bottom: 10px;\n            font-weight: 500;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            opacity: 0.9;\n        }}\n        \n        .stat-item strong {{\n            display: block;\n            font-size: 1.4em;\n            color: var(--cyan);\n            font-weight: 600;\n            margin-top: 6px;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n            line-height: 1.3;\n        }}\n        \n        @media (max-width: 600px) {{\n            .overview-stats {{\n                grid-template-columns: 1fr;\n                gap: 16px;\n            }}\n            \n            h1 {{\n                font-size: 2em;\n            }}\n            \n            h2 {{\n                font-size: 1.5em;\n            }}\n        }}\n        \n        .category-section {{\n            background: var(--base02);\n            padding: 24px;\n            margin: 24px 0;\n            border-radius: 8px;\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);\n            border: 1px solid var(--base01);\n            transition: all 0.3s ease;\n        }}\n        \n        .category-section:hover {{\n            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);\n            border-color: var(--cyan);\n        }}\n        \n        .book-item {{\n            padding: 16px;\n            margin: 12px 0;\n            background: var(--base03);\n            border-radius: 6px;\n            border-left: 4px solid var(--blue);\n            border: 1px solid var(--base01);\n            border-left-width: 4px;\n            transition: all 0.2s ease;\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n        }}\n        \n        .book-item:hover {{\n            background: var(--base02);\n            transform: translateX(4px);\n            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);\n            border-left-color: var(--cyan);\n        }}\n        \n        .book-item strong {{\n            color: var(--base1);\n            font-size: 1.05em;\n            display: block;\n            margin-bottom: 6px;\n            font-weight: 600;\n        }}\n        \n        .book-item .book-meta {{\n            color: var(--base00);\n            font-size: 0.9em;\n            margin: 8px 0;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }}\n        \n        .book-item .book-link {{\n            display: inline-block;\n            margin-top: 8px;\n            padding: 6px 14px;\n            background: var(--blue);\n            color: var(--base03) !important;\n            border-radius: 6px;\n            font-weight: 600;\n            transition: all 0.2s ease;\n            text-decoration: none !important;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n        }}\n        \n        .book-item .book-link:hover {{\n            background: var(--cyan);\n            transform: translateY(-1px);\n            box-shadow: 0 4px 8px rgba(42, 161, 152, 0.4);\n            color: var(--base03) !important;\n        }}\n        \n        .note-text {{\n            padding: 12px 16px;\n            background: var(--base02);\n            border-left: 4px solid var(--yellow);\n            border-radius: 6px;\n            color: var(--yellow);\n            font-size: 14px;\n            margin: 20px 0;\n            border: 1px solid var(--base01);\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n        }}\n        \n        .footer-note {{\n            margin-top: 60px;\n            padding: 24px;\n            background: var(--base02);\n            border-radius: 8px;\n            text-align: center;\n            color: var(--base1);\n            font-size: 14px;\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);\n            border-top: 3px solid var(--cyan);\n            border: 1px solid var(--base01);\n            border-top-width: 3px;\n        }}\n        \n        .footer-note a {{\n            margin: 0 8px;\n            padding: 4px 8px;\n            border-radius: 4px;\n            color: var(--blue);\n        }}\n        \n        .footer-note a:hover {{\n            background: var(--base03);\n            text-decoration: none;\n            color: var(--cyan);\n        }}\n        \n        /* 滚动条样式 - Solarized Dark */\n        ::-webkit-scrollbar {{\n            width: 12px;\n        }}\n        \n        ::-webkit-scrollbar-track {{\n            background: var(--base03);\n        }}\n        \n        ::-webkit-scrollbar-thumb {{\n            background: var(--base01);\n            border-radius: 6px;\n            border: 2px solid var(--base03);\n        }}\n        \n        ::-webkit-scrollbar-thumb:hover {{\n            background: var(--base00);\n        }}\n        \n        /* 代码风格字体优化 */\n        code {{\n            background: var(--base02);\n            color: var(--green);\n            padding: 2px 6px;\n            border-radius: 3px;\n            font-family: \"SF Mono\", \"Monaco\", monospace;\n            font-size: 0.9em;\n            border: 1px solid var(--base01);\n        }}\n        \n        /* 强调文本 */\n        strong {{\n            color: var(--base1);\n            font-weight: 600;\n        }}\n        \n        /* 链接特殊样式 */\n        a[href^=\"http\"] {{\n            color: var(--blue);\n        }}\n        \n        a[href^=\"http\"]:hover {{\n            color: var(--cyan);\n        }}\n    </style>\n</head>\n<body>\n<header>\n{content}\n</header>\n\n<footer class=\"footer-note\">\n    <p>📚 电子书下载宝库 </p>\n    <p style=\"margin-top: 8px; font-size: 12px;\">\n        <a href=\"https://github.com/jbiaojerry/ebook-treasure-chest\" target=\"_blank\" rel=\"noopener\">GitHub 仓库</a> |\n        <a href=\"README.md\" target=\"_blank\">使用说明</a>\n    </p>\n</footer>\n{stats_script}\n</body>\n</html>\"\"\"\n    \n    return html_template.format(content=html_body, stats_script=stats_info)\n\n\ndef main():\n    books = load_books()\n    stats = load_stats()\n    \n    # 如果有统计信息，使用统计信息中的数据\n    if stats:\n        total_books = stats.get(\"total_books\", len(books))\n        total_categories = stats.get(\"categories_count\", len(set(b.get(\"category\", \"\") for b in books)))\n    else:\n        total_books = len(books)\n        total_categories = len(set(b.get(\"category\", \"\") for b in books))\n    \n    grouped, categories, languages, levels = group_books(books)\n    \n    # 使用统计信息中的分类数量（如果可用）\n    if stats and \"categories_count\" in stats:\n        categories_count = stats[\"categories_count\"]\n    else:\n        categories_count = len(categories)\n\n    md_parts = []\n    md_parts.append(\"# 📚 Ebook Treasure Chest\\n\")\n    md_parts.append(render_overview(total_books, categories_count, languages, levels))\n    md_parts.append(\"\\n---\\n\")\n    md_parts.append(render_search_ui())\n    md_parts.append(\"\\n---\\n\")\n    md_parts.append(render_content(grouped, stats))\n\n    md_content = \"\\n\".join(md_parts)\n    \n    OUTPUT_HTML.parent.mkdir(exist_ok=True)\n\n    # 写 index.html（GitHub Pages 优先查找）\n    html_content = generate_html(md_content)\n    OUTPUT_HTML.write_text(html_content, encoding=\"utf-8\")\n\n    # 写 books.json（给前端搜索用，作为 metadata 数据的备份）\n    OUTPUT_JSON.write_text(\n        json.dumps(books, ensure_ascii=False, indent=2),\n        encoding=\"utf-8\"\n    )\n\n    print(\"✅ index.html & books.json generated\")\n    \n    # 检查 all-books.json\n    if ALL_BOOKS_FILE.exists():\n        print(f\"ℹ️  检测到 all-books.json ({ALL_BOOKS_FILE.stat().st_size / 1024 / 1024:.2f} MB)\")\n    else:\n        print(\"⚠️  警告：未找到 all-books.json\")\n        print(\"💡 提示：运行 'python scripts/parse_md_to_json.py' 生成 all-books.json\")\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "scripts/generate_search_demo_gif.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n自动生成 GitHub Pages 搜索功能演示 GIF\n使用 playwright 自动化浏览器操作并录制 GIF\n\"\"\"\nimport asyncio\nimport time\nimport io\nfrom pathlib import Path\nfrom PIL import Image\nimport subprocess\nimport sys\n\nROOT = Path(__file__).parent.parent\nOUTPUT_GIF = ROOT / \".github\" / \"search-demo.gif\"\nGITHUB_PAGES_URL = \"https://jbiaojerry.github.io/ebook-treasure-chest/\"\n\ndef check_dependencies():\n    \"\"\"检查依赖是否安装\"\"\"\n    missing = []\n    \n    # 检查 playwright\n    try:\n        import playwright\n    except ImportError:\n        missing.append(\"playwright\")\n    \n    # 检查 Pillow\n    try:\n        import PIL\n    except ImportError:\n        missing.append(\"Pillow\")\n    \n    if missing:\n        print(f\"❌ 缺少以下依赖: {', '.join(missing)}\")\n        print(\"\\n请安装依赖：\")\n        if \"playwright\" in missing:\n            print(\"  pip install playwright\")\n            print(\"  playwright install chromium\")\n        if \"Pillow\" in missing:\n            print(\"  pip install Pillow\")\n        return False\n    \n    return True\n\nasync def wait_for_search_results(page, timeout=5000):\n    \"\"\"等待搜索结果出现\"\"\"\n    try:\n        # 等待搜索结果容器有内容（不是\"正在加载\"）\n        await page.wait_for_function(\n            \"\"\"() => {\n                const results = document.getElementById('search-results');\n                if (!results) return false;\n                const text = results.innerText || '';\n                return text.length > 0 && !text.includes('正在加载');\n            }\"\"\",\n            timeout=timeout\n        )\n        # 额外等待一下确保渲染完成\n        await asyncio.sleep(0.5)\n        return True\n    except:\n        return False\n\nasync def scroll_to_search_results(page):\n    \"\"\"滚动到搜索结果区域，确保搜索结果在视口内\"\"\"\n    try:\n        # 获取搜索结果元素\n        search_results = page.locator('#search-results')\n        if await search_results.count() > 0:\n            # 滚动到搜索结果区域\n            await search_results.scroll_into_view_if_needed()\n            await asyncio.sleep(0.3)\n            # 稍微向上滚动一点，让搜索框也可见\n            await page.evaluate(\"window.scrollBy(0, -100)\")\n            await asyncio.sleep(0.2)\n    except Exception as e:\n        print(f\"  ⚠️  滚动到搜索结果时出错: {e}\")\n\nasync def generate_gif():\n    \"\"\"生成搜索功能演示 GIF\"\"\"\n    try:\n        from playwright.async_api import async_playwright\n    except ImportError:\n        print(\"❌ 请先安装 playwright: pip install playwright && playwright install chromium\")\n        return False\n    \n    print(\"🚀 开始生成搜索功能演示 GIF...\")\n    print(f\"📡 访问页面: {GITHUB_PAGES_URL}\")\n    \n    screenshots = []\n    \n    async with async_playwright() as p:\n        # 启动浏览器（无头模式）\n        browser = await p.chromium.launch(headless=False)  # 设置为 False 以便观察\n        context = await browser.new_context(\n            viewport={'width': 1280, 'height': 720},\n            device_scale_factor=1\n        )\n        page = await context.new_page()\n        \n        try:\n            # 步骤 1: 访问页面\n            print(\"📄 步骤 1: 加载页面...\")\n            await page.goto(GITHUB_PAGES_URL, wait_until='networkidle', timeout=30000)\n            await asyncio.sleep(2)  # 等待页面完全加载\n            screenshots.append(await page.screenshot())\n            print(\"  ✅ 页面加载完成\")\n            \n            # 步骤 2: 等待数据加载\n            print(\"⏳ 步骤 2: 等待数据加载...\")\n            # 等待搜索框出现，说明页面已加载\n            await page.wait_for_selector('input[type=\"text\"]', timeout=10000)\n            await asyncio.sleep(3)  # 等待 all-books.json 加载\n            # 检查数据是否加载完成\n            data_loaded = await page.evaluate(\"\"\"() => {\n                return window.books && window.books.length > 0;\n            }\"\"\")\n            if data_loaded:\n                print(f\"  ✅ 数据加载完成（已加载书籍数据）\")\n            else:\n                print(f\"  ⚠️  数据可能还在加载中，继续...\")\n            screenshots.append(await page.screenshot())\n            \n            # 步骤 3: 输入搜索关键词 \"文学\"\n            print(\"🔍 步骤 3: 搜索 '文学'...\")\n            search_input = page.locator('input[type=\"text\"]')\n            await search_input.fill(\"文学\")\n            await asyncio.sleep(0.5)  # 等待输入完成\n            # 等待搜索结果出现\n            await wait_for_search_results(page, timeout=5000)\n            # 滚动到搜索结果\n            await scroll_to_search_results(page)\n            screenshots.append(await page.screenshot())\n            print(\"  ✅ 搜索完成，已展示搜索结果\")\n            \n            # 步骤 4: 清空并搜索 \"文学 钢铁是怎么炼成的\"\n            print(\"🔍 步骤 4: 搜索 '文学 钢铁是怎么炼成的'...\")\n            await search_input.fill(\"\")\n            await asyncio.sleep(0.5)\n            await search_input.fill(\"文学 钢铁是怎么炼成的\")\n            await asyncio.sleep(0.5)\n            # 等待搜索结果\n            await wait_for_search_results(page, timeout=5000)\n            await scroll_to_search_results(page)\n            screenshots.append(await page.screenshot())\n            print(\"  ✅ 搜索完成，已展示搜索结果\")\n            \n            # 步骤 5: 多关键词搜索\n            print(\"🔍 步骤 5: 多关键词搜索 '沟通 樊登 职场'...\")\n            await search_input.fill(\"\")\n            await asyncio.sleep(0.5)\n            await search_input.fill(\"沟通 樊登 职场\")\n            await asyncio.sleep(0.5)\n            # 等待搜索结果\n            await wait_for_search_results(page, timeout=5000)\n            await scroll_to_search_results(page)\n            screenshots.append(await page.screenshot())\n            print(\"  ✅ 多关键词搜索完成，已展示搜索结果\")\n            \n            # 步骤 6: 展示最终结果（多停留一会）\n            await asyncio.sleep(1)\n            await scroll_to_search_results(page)\n            screenshots.append(await page.screenshot())\n            \n        except Exception as e:\n            print(f\"❌ 录制过程中出错: {e}\")\n            import traceback\n            traceback.print_exc()\n            return False\n        finally:\n            await browser.close()\n    \n    # 将截图转换为 GIF\n    print(\"\\n🎬 步骤 6: 生成 GIF 动画...\")\n    try:\n        # 将截图转换为 PIL Image\n        images = [Image.open(io.BytesIO(img)) for img in screenshots]\n        \n        # 保存为 GIF\n        OUTPUT_GIF.parent.mkdir(parents=True, exist_ok=True)\n        # 第一帧显示时间稍长，其他帧正常显示\n        durations = [2000] + [1500] * (len(images) - 1)  # 第一帧 2 秒，其他 1.5 秒\n        \n        # 使用 save_all 保存多帧，但需要手动设置每帧的持续时间\n        # 由于 PIL 的 save_all 不支持每帧不同 duration，我们使用固定值\n        images[0].save(\n            OUTPUT_GIF,\n            save_all=True,\n            append_images=images[1:],\n            duration=1500,  # 每帧 1.5 秒\n            loop=0,\n            optimize=True\n        )\n        \n        file_size = OUTPUT_GIF.stat().st_size / 1024\n        print(f\"✅ GIF 已生成: {OUTPUT_GIF}\")\n        print(f\"📦 文件大小: {file_size:.1f} KB\")\n        print(f\"🖼️  帧数: {len(images)}\")\n        return True\n        \n    except Exception as e:\n        print(f\"❌ 生成 GIF 时出错: {e}\")\n        import traceback\n        traceback.print_exc()\n        return False\n\ndef main():\n    \"\"\"主函数\"\"\"\n    if not check_dependencies():\n        sys.exit(1)\n    \n    # 运行异步函数\n    success = asyncio.run(generate_gif())\n    \n    if success:\n        print(\"\\n🎉 完成！搜索功能演示 GIF 已生成\")\n        print(f\"📁 文件位置: {OUTPUT_GIF}\")\n        print(\"\\n💡 提示: 如果 GIF 质量不理想，可以调整以下参数：\")\n        print(\"  - duration: 每帧显示时间（毫秒）\")\n        print(\"  - viewport: 浏览器窗口大小\")\n        print(\"  - 等待时间: asyncio.sleep() 的延迟\")\n    else:\n        print(\"\\n❌ 生成失败，请检查错误信息\")\n        sys.exit(1)\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "scripts/parse_md_to_json.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n解析 md 目录下的所有 Markdown 文件，生成统一的 JSON 数据文件\n\"\"\"\n\nimport json\nimport re\nfrom pathlib import Path\nfrom collections import defaultdict\n\nROOT = Path(__file__).parent.parent\nMD_DIR = ROOT / \"md\"\nOUTPUT_JSON = ROOT / \"docs\" / \"all-books.json\"\nSTATS_FILE = ROOT / \"docs\" / \"parse-stats.json\"\n\n\ndef extract_category_from_file(file_path):\n    \"\"\"从文件路径提取分类名\"\"\"\n    # 从文件名提取（去掉 .md 扩展名）\n    category = file_path.stem\n    return category\n\n\ndef extract_category_from_content(content):\n    \"\"\"从文件内容提取分类名（备用方法）\"\"\"\n    # 查找 # 分类名 格式\n    match = re.search(r'^#\\s+(.+)$', content, re.MULTILINE)\n    if match:\n        # 跳过版权声明，找第二个 # 标题\n        lines = content.split('\\n')\n        for line in lines:\n            if line.startswith('# ') and '版权' not in line and '声明' not in line:\n                return line[2:].strip()\n    return None\n\n\ndef parse_markdown_table(content):\n    \"\"\"解析 Markdown 表格，提取书籍信息\"\"\"\n    books = []\n    lines = content.split('\\n')\n    \n    # 找到表格开始位置（包含 \"书名\" 的行）\n    table_start = -1\n    for i, line in enumerate(lines):\n        if '| 书名' in line or '书名 |' in line:\n            table_start = i\n            break\n    \n    if table_start == -1:\n        return books\n    \n    # 跳过表头分隔行（---）\n    data_start = table_start + 2\n    \n    # 解析数据行\n    for i in range(data_start, len(lines)):\n        line = lines[i].strip()\n        if not line or not line.startswith('|'):\n            continue\n        \n        # 解析表格行：| 书名 | 作者 | [下载](链接) |\n        # 使用正则表达式提取\n        pattern = r'\\|\\s*(.+?)\\s*\\|\\s*(.+?)\\s*\\|\\s*\\[下载\\]\\((.+?)\\)\\s*\\|'\n        match = re.match(pattern, line)\n        \n        if match:\n            title = match.group(1).strip()\n            author = match.group(2).strip()\n            link = match.group(3).strip()\n            \n            # 清理数据\n            title = title.replace('**', '').strip()\n            author = author.replace('**', '').strip()\n            \n            if title and link:  # 确保有书名和链接\n                books.append({\n                    'title': title,\n                    'author': author if author else '未知',\n                    'link': link\n                })\n    \n    return books\n\n\ndef parse_single_file(file_path):\n    \"\"\"解析单个 Markdown 文件\"\"\"\n    try:\n        with open(file_path, 'r', encoding='utf-8') as f:\n            content = f.read()\n    except Exception as e:\n        print(f\"⚠️  读取文件失败 {file_path}: {e}\")\n        return None, []\n    \n    # 提取分类名\n    category = extract_category_from_file(file_path)\n    category_from_content = extract_category_from_content(content)\n    \n    # 优先使用文件内容中的分类名（更准确）\n    if category_from_content and category_from_content != category:\n        category = category_from_content\n    \n    # 解析表格\n    books = parse_markdown_table(content)\n    \n    # 为每本书添加分类信息\n    for book in books:\n        book['category'] = category\n        # 默认值\n        book['language'] = 'ZH'  # 默认中文，后续可优化\n        book['level'] = 'Unknown'\n        book['formats'] = ['epub', 'mobi', 'azw3']  # 从表格列名推断\n    \n    return category, books\n\n\ndef main():\n    \"\"\"主函数\"\"\"\n    print(\"🚀 开始解析 md 文件...\")\n    \n    all_books = []\n    category_stats = defaultdict(int)\n    total_files = 0\n    success_files = 0\n    error_files = []\n    \n    # 获取所有 md 文件\n    md_files = list(MD_DIR.glob(\"*.md\"))\n    total_files = len(md_files)\n    \n    print(f\"📁 找到 {total_files} 个 md 文件\")\n    \n    # 解析每个文件\n    for i, md_file in enumerate(md_files, 1):\n        if i % 100 == 0:\n            print(f\"⏳ 处理进度: {i}/{total_files} ({i*100//total_files}%)\")\n        \n        category, books = parse_single_file(md_file)\n        \n        if category is None:\n            error_files.append(str(md_file))\n            continue\n        \n        if books:\n            all_books.extend(books)\n            category_stats[category] = len(books)\n            success_files += 1\n        else:\n            error_files.append(str(md_file))\n            print(f\"⚠️  未找到数据: {md_file.name}\")\n    \n    # 保存结果\n    OUTPUT_JSON.parent.mkdir(exist_ok=True)\n    \n    print(f\"\\n📊 解析统计:\")\n    print(f\"  - 总文件数: {total_files}\")\n    print(f\"  - 成功解析: {success_files}\")\n    print(f\"  - 失败文件: {len(error_files)}\")\n    print(f\"  - 总书籍数: {len(all_books)}\")\n    print(f\"  - 分类数量: {len(category_stats)}\")\n    \n    # 保存 JSON 文件\n    with open(OUTPUT_JSON, 'w', encoding='utf-8') as f:\n        json.dump(all_books, f, ensure_ascii=False, indent=2)\n    \n    print(f\"\\n✅ JSON 文件已生成: {OUTPUT_JSON}\")\n    print(f\"📦 文件大小: {OUTPUT_JSON.stat().st_size / 1024 / 1024:.2f} MB\")\n    \n    # 保存统计信息\n    stats = {\n        'total_files': total_files,\n        'success_files': success_files,\n        'error_files': len(error_files),\n        'total_books': len(all_books),\n        'categories_count': len(category_stats),\n        'top_categories': dict(sorted(category_stats.items(), key=lambda x: x[1], reverse=True)[:20]),\n        'error_file_list': error_files[:10]  # 只保存前10个错误文件\n    }\n    \n    with open(STATS_FILE, 'w', encoding='utf-8') as f:\n        json.dump(stats, f, ensure_ascii=False, indent=2)\n    \n    print(f\"📈 统计信息已保存: {STATS_FILE}\")\n    \n    # 显示前10个分类\n    print(f\"\\n🏆 前10个分类（按书籍数量）:\")\n    for cat, count in sorted(category_stats.items(), key=lambda x: x[1], reverse=True)[:10]:\n        print(f\"  - {cat}: {count} 本\")\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "scripts/sync/backup_md.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n备份现有的md目录\n\"\"\"\n\nimport shutil\nfrom pathlib import Path\nfrom datetime import datetime\nimport sys\n\nROOT = Path(__file__).parent.parent.parent\nMD_DIR = ROOT / \"md\"\nBACKUP_DIR = ROOT / \"md_backup\"\n\n\ndef backup_md_directory():\n    \"\"\"备份md目录\"\"\"\n    print(\"=\" * 80)\n    print(\"📦 备份md目录\")\n    print(\"=\" * 80)\n    print()\n    \n    if not MD_DIR.exists():\n        print(f\"⚠️  md目录不存在: {MD_DIR}\")\n        print(\"   无需备份\")\n        return None\n    \n    # 创建备份目录（带时间戳）\n    timestamp = datetime.now().strftime(\"%Y%m%d_%H%M%S\")\n    backup_path = BACKUP_DIR / f\"md_backup_{timestamp}\"\n    \n    print(f\"📁 源目录: {MD_DIR}\")\n    print(f\"📁 备份目录: {backup_path}\")\n    \n    try:\n        # 创建备份目录的父目录\n        backup_path.parent.mkdir(parents=True, exist_ok=True)\n        \n        # 复制目录\n        print(\"\\n⏳ 正在备份...\")\n        shutil.copytree(MD_DIR, backup_path)\n        \n        # 统计文件数量\n        md_files = list(backup_path.glob(\"*.md\"))\n        json_files = list(backup_path.glob(\"*.json\"))\n        \n        print(f\"\\n✅ 备份完成！\")\n        print(f\"  - MD文件数: {len(md_files)}\")\n        print(f\"  - JSON文件数: {len(json_files)}\")\n        print(f\"  - 备份路径: {backup_path}\")\n        \n        return backup_path\n        \n    except Exception as e:\n        print(f\"\\n❌ 备份失败: {e}\")\n        return None\n\n\nif __name__ == \"__main__\":\n    backup_path = backup_md_directory()\n    if backup_path:\n        print(f\"\\n💾 备份已保存到: {backup_path}\")\n"
  },
  {
    "path": "scripts/sync/find_max_book_id.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n查找读书站中现有的最大书籍ID\n通过检查\"最新书籍\"页面来找到最大ID\n\"\"\"\n\nimport requests\nimport re\nfrom bs4 import BeautifulSoup\nfrom typing import Optional\nimport os\nimport sys\n\n# 尝试导入配置\ntry:\n    from config import BOOK_SITE_DOMAIN\nexcept ImportError:\n    BOOK_SITE_DOMAIN = os.getenv(\"BOOK_SITE_DOMAIN\", \"\")\n    if not BOOK_SITE_DOMAIN:\n        print(\"❌ 错误: 未配置 BOOK_SITE_DOMAIN\")\n        print(\"请设置环境变量或创建 config.py\")\n        sys.exit(1)\n\n\ndef extract_book_id_from_url(url: str) -> Optional[int]:\n    \"\"\"从URL中提取书籍ID\"\"\"\n    match = re.search(r'book-content-(\\d+)\\.html', url)\n    if match:\n        return int(match.group(1))\n    return None\n\n\ndef find_max_book_id_from_homepage() -> Optional[int]:\n    \"\"\"\n    从首页的\"最新书籍\"列表中查找最大书籍ID\n    \n    Returns:\n        最大书籍ID，如果未找到返回None\n    \"\"\"\n    headers = {\n        'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',\n        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',\n        'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',\n        'Accept-Encoding': 'gzip, deflate, br',\n        'Connection': 'keep-alive',\n        'Upgrade-Insecure-Requests': '1',\n    }\n    \n    try:\n        # 访问首页\n        url = f\"{BOOK_SITE_DOMAIN}/\"\n        print(f\"📄 正在访问首页: {url}\")\n        \n        response = requests.get(url, headers=headers, timeout=10)\n        response.raise_for_status()\n        \n        soup = BeautifulSoup(response.text, 'html.parser')\n        \n        # 查找所有包含 book-content 的链接\n        book_links = soup.find_all('a', href=re.compile(r'book-content-\\d+\\.html'))\n        \n        max_id = 0\n        found_ids = []\n        \n        for link in book_links:\n            href = link.get('href', '')\n            book_id = extract_book_id_from_url(href)\n            if book_id:\n                found_ids.append(book_id)\n                if book_id > max_id:\n                    max_id = book_id\n        \n        if max_id > 0:\n            print(f\"✅ 从首页找到 {len(found_ids)} 个书籍链接\")\n            print(f\"📊 最大书籍ID: {max_id}\")\n            return max_id\n        else:\n            print(\"⚠️  首页未找到书籍链接\")\n            return None\n            \n    except Exception as e:\n        print(f\"❌ 访问首页失败: {e}\")\n        return None\n\n\ndef find_max_book_id_by_binary_search(start: int = 1, end: int = 100000) -> Optional[int]:\n    \"\"\"\n    使用二分查找法找到最大有效的书籍ID\n    \n    Args:\n        start: 起始ID\n        end: 结束ID（预估的最大值）\n    \n    Returns:\n        最大有效的书籍ID\n    \"\"\"\n    headers = {\n        'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',\n        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',\n        'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',\n        'Accept-Encoding': 'gzip, deflate, br',\n        'Connection': 'keep-alive',\n        'Upgrade-Insecure-Requests': '1',\n    }\n    \n    def check_book_exists(book_id: int) -> bool:\n        \"\"\"检查书籍ID是否存在\"\"\"\n        url = f\"{BOOK_SITE_DOMAIN}/book-content-{book_id}.html\"\n        try:\n            response = requests.head(url, headers=headers, timeout=5, allow_redirects=False)\n            return response.status_code == 200\n        except:\n            return False\n    \n    print(f\"🔍 使用二分查找法查找最大书籍ID (范围: {start} - {end})\")\n    \n    left, right = start, end\n    max_valid_id = 0\n    \n    # 先快速找到一个大致的上限\n    print(\"📊 步骤1: 快速定位大致范围...\")\n    step = 1000\n    current = start\n    while current <= end:\n        if check_book_exists(current):\n            max_valid_id = current\n            current += step\n        else:\n            break\n        if current % 10000 == 0:\n            print(f\"   已检查到 ID: {current}\")\n    \n    if max_valid_id == 0:\n        print(\"⚠️  未找到任何有效书籍ID\")\n        return None\n    \n    print(f\"✅ 找到大致范围，最大ID约在: {max_valid_id}\")\n    \n    # 在找到的范围内进行精确查找\n    print(\"📊 步骤2: 精确查找最大ID...\")\n    left = max_valid_id\n    right = min(max_valid_id + step * 2, end)\n    \n    while left <= right:\n        mid = (left + right) // 2\n        if check_book_exists(mid):\n            max_valid_id = mid\n            left = mid + 1\n        else:\n            right = mid - 1\n        \n        if (left + right) // 2 % 100 == 0:\n            print(f\"   当前范围: {left} - {right}, 最大有效ID: {max_valid_id}\")\n    \n    return max_valid_id\n\n\ndef find_max_book_id_from_latest_books(max_pages: int = 10) -> Optional[int]:\n    \"\"\"\n    从\"最新书籍\"页面查找最大书籍ID（通过分页）\n    \n    Args:\n        max_pages: 最多检查的页数\n    \n    Returns:\n        最大书籍ID\n    \"\"\"\n    headers = {\n        'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',\n        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',\n        'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',\n        'Accept-Encoding': 'gzip, deflate, br',\n        'Connection': 'keep-alive',\n        'Upgrade-Insecure-Requests': '1',\n    }\n    \n    max_id = 0\n    page = 1\n    \n    print(f\"📄 正在检查最新书籍页面（最多 {max_pages} 页）...\")\n    \n    while page <= max_pages:\n        # 构建URL（首页是 /，后续可能是分页）\n        if page == 1:\n            url = f\"{BOOK_SITE_DOMAIN}/\"\n        else:\n            # 尝试不同的分页格式\n            url = f\"{BOOK_SITE_DOMAIN}/book-{page}.html\"\n        \n        try:\n            response = requests.get(url, headers=headers, timeout=10)\n            if response.status_code != 200:\n                break\n            \n            soup = BeautifulSoup(response.text, 'html.parser')\n            book_links = soup.find_all('a', href=re.compile(r'book-content-\\d+\\.html'))\n            \n            if not book_links:\n                break\n            \n            page_max_id = 0\n            for link in book_links:\n                href = link.get('href', '')\n                book_id = extract_book_id_from_url(href)\n                if book_id and book_id > page_max_id:\n                    page_max_id = book_id\n            \n            if page_max_id > max_id:\n                max_id = page_max_id\n                print(f\"   第 {page} 页: 最大ID = {page_max_id}\")\n            \n            page += 1\n            \n        except Exception as e:\n            print(f\"⚠️  检查第 {page} 页时出错: {e}\")\n            break\n    \n    if max_id > 0:\n        print(f\"✅ 从最新书籍页面找到最大ID: {max_id}\")\n        return max_id\n    else:\n        print(\"⚠️  未从最新书籍页面找到有效ID\")\n        return None\n\n\ndef main():\n    \"\"\"主函数：查找最大书籍ID\"\"\"\n    print(\"=\" * 80)\n    print(\"🔍 查找读书站最大书籍ID\")\n    print(\"=\" * 80)\n    print()\n    \n    # 方法1：从首页查找（最快）\n    print(\"方法1: 从首页查找...\")\n    max_id = find_max_book_id_from_homepage()\n    \n    if max_id:\n        print(f\"\\n✅ 找到最大书籍ID: {max_id}\")\n        return max_id\n    \n    # 方法2：从最新书籍页面查找\n    print(\"\\n方法2: 从最新书籍页面查找...\")\n    max_id = find_max_book_id_from_latest_books(max_pages=5)\n    \n    if max_id:\n        print(f\"\\n✅ 找到最大书籍ID: {max_id}\")\n        return max_id\n    \n    # 方法3：使用二分查找（最可靠但较慢）\n    print(\"\\n方法3: 使用二分查找法（较慢但更准确）...\")\n    max_id = find_max_book_id_by_binary_search(start=1, end=100000)\n    \n    if max_id:\n        print(f\"\\n✅ 找到最大书籍ID: {max_id}\")\n        return max_id\n    \n    print(\"\\n❌ 未能找到最大书籍ID\")\n    return None\n\n\nif __name__ == \"__main__\":\n    max_id = main()\n    if max_id:\n        print(f\"\\n📝 建议：使用 ID 范围 1-{max_id} 进行全量同步\")\n        # 保存到文件\n        with open(\"max_book_id_found.txt\", \"w\") as f:\n            f.write(str(max_id))\n        print(f\"💾 最大ID已保存到: max_book_id_found.txt\")\n"
  },
  {
    "path": "scripts/sync/incremental_sync.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n增量同步脚本：比较已更新的最大书籍ID和读书站的最大ID，只处理新增书籍\n\"\"\"\n\nimport sys\nimport os\nfrom pathlib import Path\nimport asyncio\n\n# 添加当前目录到路径\nsys.path.insert(0, str(Path(__file__).parent))\n\n# 设置环境变量，确保使用正式目录md/\n# 必须在导入test_batch_sync之前设置\nos.environ['OUTPUT_DIR'] = 'md'\n\n# 导入test_batch_sync（必须在设置环境变量后）\nfrom find_max_book_id import find_max_book_id_from_homepage\nfrom test_batch_sync import load_max_book_id, main as sync_main\n\n\nasync def incremental_sync():\n    \"\"\"执行增量同步\"\"\"\n    print(\"=\" * 80)\n    print(\"🔄 增量同步书籍数据\")\n    print(\"=\" * 80)\n    print()\n    \n    # 步骤1：获取已更新的最大书籍ID\n    print(\"📊 步骤1: 获取已更新的最大书籍ID\")\n    print(\"-\" * 80)\n    last_max_id = load_max_book_id()\n    \n    if last_max_id == 0:\n        print(\"⚠️  未找到已更新的最大ID，将执行全量同步\")\n        print(\"   建议先运行全量同步脚本\")\n        return False\n    \n    print(f\"✅ 已更新的最大书籍ID: {last_max_id}\")\n    print()\n    \n    # 步骤2：查找读书站当前的最大ID\n    print(\"🔍 步骤2: 查找读书站当前的最大ID\")\n    print(\"-\" * 80)\n    current_max_id = find_max_book_id_from_homepage()\n    \n    if not current_max_id:\n        print(\"❌ 未能找到读书站的最大ID\")\n        return False\n    \n    print(f\"✅ 读书站当前最大ID: {current_max_id}\")\n    print()\n    \n    # 步骤3：比较并确定需要同步的范围\n    if current_max_id <= last_max_id:\n        print(\"✅ 没有新书籍需要同步\")\n        print(f\"   当前最大ID: {current_max_id}\")\n        print(f\"   已更新最大ID: {last_max_id}\")\n        return True\n    \n    new_books_count = current_max_id - last_max_id\n    print(f\"📚 步骤3: 发现 {new_books_count} 本新书籍需要同步\")\n    print(f\"   同步范围: ID {last_max_id + 1} - {current_max_id}\")\n    print()\n    \n    # 步骤4：执行同步\n    print(\"⏳ 开始同步新书籍...\")\n    sync_success = False\n    try:\n        await sync_main(last_max_id + 1, current_max_id)\n        sync_success = True\n        print(\"\\n\" + \"=\" * 80)\n        print(\"✅ 增量同步完成！\")\n        print(\"=\" * 80)\n    except Exception as e:\n        print(f\"\\n❌ 同步失败: {e}\")\n        import traceback\n        traceback.print_exc()\n        return False\n    \n    # 只有同步成功才更新README和all_books.json\n    if sync_success:\n        print(\"\\n\" + \"=\" * 80)\n        print(\"📝 步骤4: 更新README.md和all_books.json\")\n        print(\"=\" * 80)\n        print()\n        \n        # 更新README.md的热门分类章节\n        print(\"📝 更新README.md热门分类章节...\")\n        try:\n            from update_readme_hot_categories import update_readme\n            if update_readme():\n                print(\"✅ README.md已更新\")\n            else:\n                print(\"⚠️  README.md更新失败，但继续执行\")\n        except Exception as e:\n            print(f\"⚠️  更新README.md失败: {e}\")\n        \n        # 生成all_books.json\n        print(\"\\n📝 生成all_books.json...\")\n        try:\n            import subprocess\n            result = subprocess.run(\n                [\"python3\", str(Path(__file__).parent.parent.parent / \"scripts\" / \"parse_md_to_json.py\")],\n                cwd=str(Path(__file__).parent.parent.parent),\n                capture_output=True,\n                text=True\n            )\n            if result.returncode == 0:\n                print(\"✅ all_books.json已生成\")\n                if result.stdout:\n                    print(result.stdout)\n            else:\n                print(f\"⚠️  生成all_books.json失败: {result.stderr}\")\n        except Exception as e:\n            print(f\"⚠️  生成all_books.json失败: {e}\")\n    \n    return sync_success\n\n\nif __name__ == \"__main__\":\n    success = asyncio.run(incremental_sync())\n    exit(0 if success else 1)\n"
  },
  {
    "path": "scripts/sync/parse_book_detail_enhanced.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n增强版书籍详情页解析模块\n功能：解析书籍详情页，提取完整信息（包括标签、图片等）\n\"\"\"\n\nimport requests\nimport re\nimport os\nfrom bs4 import BeautifulSoup\nfrom urllib.parse import urljoin\nfrom typing import Dict, List, Optional\n\n# 尝试导入配置文件，如果不存在则使用环境变量或默认值\ntry:\n    from config import BOOK_SITE_DOMAIN\nexcept ImportError:\n    # 如果配置文件不存在，尝试从环境变量读取\n    BOOK_SITE_DOMAIN = os.getenv(\"BOOK_SITE_DOMAIN\", \"\")\n    if not BOOK_SITE_DOMAIN:\n        # 如果都没有，使用占位符（但会导致功能不可用）\n        BOOK_SITE_DOMAIN = \"\"\n\n\ndef parse_download_page(url: str) -> Optional[Dict[str, str]]:\n    \"\"\"\n    解析下载页面，提取诚通网盘的真实下载链接\n    \n    Args:\n        url: 下载页面 URL，例如: \"https://www.dushupai.com/download-book-64938.html\"\n    \n    Returns:\n        Optional[Dict]: 如果找到诚通网盘下载链接，返回包含 download_url 的字典；\n                       如果不存在该下载方式，返回 None\n    \"\"\"\n    headers = {\n        'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',\n        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',\n        'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',\n        'Accept-Encoding': 'gzip, deflate, br',\n        'Connection': 'keep-alive',\n        'Upgrade-Insecure-Requests': '1',\n    }\n    \n    try:\n        # 发送请求\n        response = requests.get(url, headers=headers, timeout=10)\n        response.raise_for_status()\n        \n        # 解析 HTML\n        soup = BeautifulSoup(response.text, 'html.parser')\n        \n        # 步骤1: 精确定位\"诚通网盘下载\"区域\n        # 方法1: 查找 class=\"source-title\" 且包含\"诚通网盘\"的 div\n        cheng_tong_title = soup.find('div', class_='source-title', string=lambda x: x and '诚通网盘' in str(x) if x else False)\n        \n        if not cheng_tong_title:\n            # 方法2: 查找包含\"诚通网盘下载\"文本的元素\n            cheng_tong_text = soup.find(string=lambda x: x and '诚通网盘下载' in str(x) if x else False)\n            if cheng_tong_text:\n                # 向上查找包含该文本的 source-title div\n                parent = cheng_tong_text.parent\n                while parent:\n                    if parent.name == 'div' and 'source-title' in str(parent.get('class', [])):\n                        cheng_tong_title = parent\n                        break\n                    if parent.name in ['body', 'html']:\n                        break\n                    parent = parent.parent\n        \n        if not cheng_tong_title:\n            # 如果找不到\"诚通网盘下载\"区域，返回 None\n            return None\n        \n        # 步骤2: 找到包含\"诚通网盘下载\"的容器（通常是 <div class=\"box\">）\n        container = cheng_tong_title.parent\n        while container:\n            # 如果当前容器是 box，使用它\n            if container.name == 'div' and 'box' in str(container.get('class', [])):\n                break\n            \n            # 检查当前容器是否包含 button\n            button_div = container.find('div', class_='button')\n            if button_div:\n                # 找到了包含按钮的容器\n                break\n            \n            # 继续向上查找\n            container = container.parent\n            \n            # 如果已经到 body 或 html，停止\n            if not container or container.name in ['body', 'html']:\n                container = None\n                break\n        \n        if not container:\n            return None\n        \n        # 步骤3: 在容器内查找\"立即下载\"按钮并提取链接\n        # 方法1: 查找 class=\"button\" 的 div 中的链接（最精确）\n        button_div = container.find('div', class_='button')\n        if button_div:\n            download_link = button_div.find('a', href=True)\n            if download_link:\n                download_url = download_link.get('href', '').strip()\n                # 验证是否是 ctfile.com 链接\n                if download_url and 'ctfile.com' in download_url.lower():\n                    return {\n                        \"download_url\": download_url\n                    }\n        \n        # 方法2: 在容器内查找包含\"立即下载\"文本的链接\n        download_links = container.find_all('a', string=lambda x: x and '立即下载' in str(x) if x else False)\n        for link in download_links:\n            href = link.get('href', '').strip()\n            if href and 'ctfile.com' in href.lower():\n                return {\n                    \"download_url\": href\n                }\n        \n        # 方法3: 在容器内查找所有包含 ctfile.com 的链接（最后备用）\n        ctfile_links = container.find_all('a', href=lambda x: x and 'ctfile.com' in str(x).lower() if x else False)\n        if ctfile_links:\n            download_url = ctfile_links[0].get('href', '').strip()\n            if download_url:\n                return {\n                    \"download_url\": download_url\n                }\n        \n        # 如果都没找到，返回 None\n        return None\n        \n    except requests.exceptions.RequestException as e:\n        return None\n    except Exception as e:\n        return None\n\n\ndef extract_book_id(url: str) -> Optional[str]:\n    \"\"\"\n    从URL中提取书籍ID\n    \n    Args:\n        url: 书籍详情页URL，例如: \"https://www.dushupai.com/book-content-63067.html\"\n    \n    Returns:\n        书籍ID字符串，例如: \"63067\"\n    \"\"\"\n    match = re.search(r'book-content-(\\d+)\\.html', url)\n    if match:\n        return match.group(1)\n    return None\n\n\ndef parse_book_detail_enhanced(url: str) -> Dict:\n    \"\"\"\n    解析书籍详情页，提取完整信息\n    \n    Args:\n        url: 书籍详情页 URL，例如: \"https://www.dushupai.com/book-content-63067.html\"\n    \n    Returns:\n        Dict: 包含以下字段的字典：\n            - book_id: 书籍ID\n            - title: 书名\n            - author: 作者信息\n            - cover_image: 封面图片URL\n            - download_page: 下载页面URL\n            - download_url: 实际下载链接（需要进一步解析下载页）\n            - tags: 标签列表\n            - category: 分类\n            - isbn: ISBN号\n            - rating: 评分\n            - publish_date: 发布日期\n            - description: 内容简介\n            - author_bio: 作者简介\n    \"\"\"\n    headers = {\n        'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',\n        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',\n        'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',\n        'Accept-Encoding': 'gzip, deflate, br',\n        'Connection': 'keep-alive',\n        'Upgrade-Insecure-Requests': '1',\n    }\n    \n    result = {\n        \"book_id\": extract_book_id(url) or \"\",\n        \"title\": \"\",\n        \"author\": \"未知\",\n        \"cover_image\": \"\",\n        \"download_page\": \"\",\n        \"download_url\": \"\",\n        \"tags\": [],\n        \"category\": \"\",\n        \"isbn\": \"\",\n        \"rating\": \"\",\n        \"publish_date\": \"\",\n        \"description\": \"\",\n        \"author_bio\": \"\",\n        \"formats\": []\n    }\n    \n    try:\n        # 发送请求\n        response = requests.get(url, headers=headers, timeout=10)\n        response.raise_for_status()\n        \n        # 解析 HTML\n        soup = BeautifulSoup(response.text, 'html.parser')\n        \n        # 1. 提取书名\n        title_elem = soup.select_one('h4.post-title')\n        if title_elem:\n            result[\"title\"] = title_elem.get_text(strip=True)\n        \n        if not result[\"title\"]:\n            post_info = soup.select_one('.post-info')\n            if post_info:\n                for li in post_info.find_all('li'):\n                    strong = li.find('strong')\n                    if strong and '书名' in strong.get_text():\n                        title_text = li.get_text().replace('书名：', '').strip()\n                        if title_text:\n                            result[\"title\"] = title_text\n                            break\n        \n        # 2. 提取作者信息\n        post_info = soup.select_one('.post-info')\n        if post_info:\n            for li in post_info.find_all('li'):\n                strong = li.find('strong')\n                if strong and '作者' in strong.get_text():\n                    author_links = li.find_all('a', href=lambda x: x and 'book-author' in str(x) if x else False)\n                    if author_links:\n                        authors = [link.get_text(strip=True) for link in author_links if link.get_text(strip=True)]\n                        if authors:\n                            result[\"author\"] = \" / \".join(authors)\n                    else:\n                        author_text = li.get_text().replace('作者：', '').strip()\n                        if author_text:\n                            result[\"author\"] = author_text\n                    break\n        \n        # 3. 提取封面图片\n        img_elem = soup.select_one('.post-content img')\n        if img_elem:\n            img_src = img_elem.get('src', '')\n            if img_src:\n                result[\"cover_image\"] = urljoin(url, img_src)\n        \n        # 4. 提取下载页面URL并解析实际下载链接\n        download_elem = soup.select_one('.post-download a')\n        if download_elem:\n            download_href = download_elem.get('href', '')\n            if download_href:\n                result[\"download_page\"] = urljoin(url, download_href)\n                \n                # 解析下载页面，获取诚通网盘的实际下载链接\n                try:\n                    download_info = parse_download_page(result[\"download_page\"])\n                    if download_info and download_info.get(\"download_url\"):\n                        result[\"download_url\"] = download_info[\"download_url\"]\n                except Exception as e:\n                    # 如果解析失败，不影响其他信息的提取\n                    pass\n        \n        # 5. 提取标签列表（关键功能）\n        # 方法1：直接查找包含 book-tag 的链接（最可靠）\n        tag_links = soup.find_all('a', href=lambda x: x and 'book-tag' in str(x) if x else False)\n        if tag_links:\n            tags = []\n            for link in tag_links:\n                tag_text = link.get_text(strip=True)\n                # 格式可能是 \"中国(5333)\" 或 \"中国\"\n                if '(' in tag_text:\n                    tag_name = tag_text.split('(')[0].strip()\n                else:\n                    tag_name = tag_text\n                \n                # 过滤掉空标签和数字标签（如年份）\n                if tag_name and tag_name not in tags:\n                    # 跳过纯数字标签（如年份）\n                    if not tag_name.isdigit():\n                        tags.append(tag_name)\n            \n            result[\"tags\"] = tags\n        \n        # 方法2：如果方法1没找到，尝试查找\"标签：\"后面的内容\n        if not result[\"tags\"]:\n            for elem in soup.find_all(['div', 'p', 'span', 'strong']):\n                text = elem.get_text()\n                if '标签' in text and ('：' in text or ':' in text):\n                    # 查找父元素或兄弟元素中的标签链接\n                    parent = elem.find_parent()\n                    if parent:\n                        tag_links = parent.find_all('a', href=lambda x: x and 'book-tag' in str(x) if x else False)\n                        if tag_links:\n                            tags = []\n                            for link in tag_links:\n                                tag_text = link.get_text(strip=True)\n                                if '(' in tag_text:\n                                    tag_name = tag_text.split('(')[0].strip()\n                                else:\n                                    tag_name = tag_text\n                                if tag_name and tag_name not in tags and not tag_name.isdigit():\n                                    tags.append(tag_name)\n                            if tags:\n                                result[\"tags\"] = tags\n                                break\n        \n        # 6. 提取分类\n        category_link = soup.find('a', href=lambda x: x and 'book-category' in str(x) if x else False)\n        if category_link:\n            result[\"category\"] = category_link.get_text(strip=True)\n        \n        # 7. 提取其他信息（ISBN、评分、发布日期等）\n        if post_info:\n            for li in post_info.find_all('li'):\n                strong = li.find('strong')\n                if not strong:\n                    continue\n                \n                strong_text = strong.get_text()\n                li_text = li.get_text()\n                \n                if 'ISBN' in strong_text:\n                    result[\"isbn\"] = li_text.replace('ISBN：', '').replace('ISBN:', '').strip()\n                elif '评分' in strong_text:\n                    rating_text = li_text.replace('评分：', '').replace('评分:', '').strip()\n                    result[\"rating\"] = rating_text\n                elif '时间' in strong_text or '日期' in strong_text:\n                    date_text = li_text.replace('时间：', '').replace('日期：', '').strip()\n                    result[\"publish_date\"] = date_text\n                elif '格式' in strong_text:\n                    formats_text = li_text.replace('格式：', '').replace('格式:', '').strip()\n                    result[\"formats\"] = [f.strip() for f in formats_text.split(',') if f.strip()]\n        \n        # 8. 提取内容简介\n        desc_elem = soup.find(string=re.compile(r'内容简介'))\n        if desc_elem:\n            # 查找简介内容（通常在\"内容简介\"后面的元素中）\n            parent = desc_elem.find_parent()\n            if parent:\n                # 查找下一个兄弟元素或父元素中的文本\n                desc_text = \"\"\n                for sibling in parent.next_siblings:\n                    if hasattr(sibling, 'get_text'):\n                        desc_text = sibling.get_text(strip=True)\n                        if desc_text:\n                            break\n                \n                if not desc_text:\n                    # 尝试从父元素中提取\n                    desc_text = parent.get_text(strip=True)\n                    # 去掉\"内容简介：\"前缀\n                    desc_text = re.sub(r'内容简介[：:]?\\s*', '', desc_text)\n                \n                result[\"description\"] = desc_text[:500]  # 限制长度\n        \n        # 9. 提取作者简介\n        author_bio_elem = soup.find(string=re.compile(r'作者简介'))\n        if author_bio_elem:\n            parent = author_bio_elem.find_parent()\n            if parent:\n                bio_text = \"\"\n                for sibling in parent.next_siblings:\n                    if hasattr(sibling, 'get_text'):\n                        bio_text = sibling.get_text(strip=True)\n                        if bio_text:\n                            break\n                \n                if not bio_text:\n                    bio_text = parent.get_text(strip=True)\n                    bio_text = re.sub(r'作者简介[：:]?\\s*', '', bio_text)\n                \n                result[\"author_bio\"] = bio_text[:300]  # 限制长度\n        \n        return result\n        \n    except requests.exceptions.RequestException as e:\n        print(f\"❌ 请求失败: {e}\")\n        return result\n    except Exception as e:\n        print(f\"❌ 解析过程出错: {e}\")\n        import traceback\n        traceback.print_exc()\n        return result\n\n\ndef main():\n    \"\"\"主函数：测试增强版解析功能\"\"\"\n    print(\"=\" * 80)\n    print(\"📚 测试增强版 parse_book_detail_enhanced 功能\")\n    print(\"=\" * 80)\n    \n    # 测试 URL\n    test_url = \"https://www.dushupai.com/book-content-63067.html\"\n    \n    print(f\"\\n📄 测试 URL: {test_url}\\n\")\n    \n    # 解析书籍详情\n    result = parse_book_detail_enhanced(test_url)\n    \n    # 显示结果\n    print(\"📋 解析结果：\")\n    print(\"-\" * 80)\n    print(f\"书籍ID: {result['book_id']}\")\n    print(f\"书名: {result['title']}\")\n    print(f\"作者: {result['author']}\")\n    print(f\"封面图片: {result['cover_image']}\")\n    print(f\"下载页面: {result['download_page']}\")\n    print(f\"标签: {', '.join(result['tags']) if result['tags'] else '无'}\")\n    print(f\"分类: {result['category']}\")\n    print(f\"ISBN: {result['isbn']}\")\n    print(f\"评分: {result['rating']}\")\n    print(f\"发布日期: {result['publish_date']}\")\n    print(f\"格式: {', '.join(result['formats']) if result['formats'] else '无'}\")\n    print(f\"简介: {result['description'][:100]}...\" if result['description'] else \"无简介\")\n    \n    # 显示 JSON 格式\n    print(\"\\n📋 JSON 格式：\")\n    import json\n    print(json.dumps(result, ensure_ascii=False, indent=2))\n    \n    print(\"\\n\" + \"=\" * 80)\n    print(\"✅ 测试完成！\")\n    print(\"=\" * 80)\n    \n    return result\n\n\nif __name__ == \"__main__\":\n    result = main()\n"
  },
  {
    "path": "scripts/sync/run_full_sync.sh",
    "content": "#!/bin/bash\n# 全量同步一键执行脚本\n\ncd \"$(dirname \"$0\")\"\n\necho \"==========================================\"\necho \"🚀 全量同步书籍数据\"\necho \"==========================================\"\necho \"\"\n\n# 检查配置文件\nif [ ! -f \"config.py\" ]; then\n    echo \"⚠️  配置文件不存在，正在创建...\"\n    cp config.py.example config.py\n    echo \"✅ 已创建 config.py，请编辑并设置 BOOK_SITE_DOMAIN\"\n    echo \"\"\n    read -p \"按回车键继续（确保已配置config.py）...\"\nfi\n\n# 执行全量同步\necho \"开始执行全量同步...\"\npython3 sync_all_books.py\n\necho \"\"\necho \"==========================================\"\necho \"✅ 执行完成\"\necho \"==========================================\"\n"
  },
  {
    "path": "scripts/sync/sync_all_books.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n全量同步脚本：备份现有md目录，查找最大书籍ID，然后生成所有书籍的md文件\n\"\"\"\n\nimport sys\nimport argparse\nimport os\nfrom pathlib import Path\nimport subprocess\n\n# 添加当前目录到路径\nsys.path.insert(0, str(Path(__file__).parent))\n\n# 注意：不在这里导入test_batch_sync，因为需要先设置环境变量\nfrom backup_md import backup_md_directory\nfrom find_max_book_id import find_max_book_id_from_homepage, find_max_book_id_by_binary_search\n\n\ndef main():\n    \"\"\"主函数\"\"\"\n    parser = argparse.ArgumentParser(description='全量同步书籍数据')\n    parser.add_argument('--max-id', type=int, help='手动指定最大书籍ID（跳过查找步骤）')\n    parser.add_argument('--skip-backup', action='store_true', help='跳过备份步骤')\n    parser.add_argument('--skip-find-id', action='store_true', help='跳过查找最大ID步骤（需要提供--max-id）')\n    parser.add_argument('--start-id', type=int, default=1, help='起始书籍ID（默认：1）')\n    parser.add_argument('--batch-size', type=int, help='分批处理大小（例如：20000，每次处理2万本书）。如果不指定，则一次性处理所有书籍')\n    \n    args = parser.parse_args()\n    \n    print(\"=\" * 80)\n    print(\"🚀 全量同步书籍数据\")\n    print(\"=\" * 80)\n    print()\n    \n    # 步骤1：备份现有md目录\n    if not args.skip_backup:\n        print(\"📦 步骤1: 备份现有md目录\")\n        print(\"-\" * 80)\n        backup_path = backup_md_directory()\n        if backup_path:\n            print(f\"✅ 备份完成: {backup_path}\\n\")\n        else:\n            print(\"⚠️  备份失败或目录不存在，继续执行...\\n\")\n    else:\n        print(\"⏭️  跳过备份步骤\\n\")\n    \n    # 步骤2：查找最大书籍ID\n    max_book_id = None\n    if not args.skip_find_id:\n        if args.max_id:\n            max_book_id = args.max_id\n            print(f\"📊 使用指定的最大书籍ID: {max_book_id}\\n\")\n        else:\n            print(\"🔍 步骤2: 查找最大书籍ID\")\n            print(\"-\" * 80)\n            # 先尝试从首页快速查找\n            max_book_id = find_max_book_id_from_homepage()\n            \n            # 如果首页没找到，使用二分查找（较慢但准确）\n            if not max_book_id:\n                print(\"\\n使用二分查找法（较慢但更准确）...\")\n                max_book_id = find_max_book_id_by_binary_search(start=1, end=100000)\n            \n            if max_book_id:\n                print(f\"\\n✅ 找到最大书籍ID: {max_book_id}\\n\")\n            else:\n                print(\"\\n❌ 未能找到最大书籍ID\")\n                print(\"   请手动指定: python3 sync_all_books.py --max-id <ID>\")\n                return\n    else:\n        if args.max_id:\n            max_book_id = args.max_id\n        else:\n            print(\"❌ 错误: 跳过查找ID步骤时必须提供 --max-id\")\n            return\n    \n    # 步骤3：生成所有书籍的md文件\n    print(\"📚 步骤3: 生成所有书籍的md文件\")\n    print(\"-\" * 80)\n    print(f\"📊 处理范围: ID {args.start_id} - {max_book_id}\")\n    print(f\"📊 预计书籍数量: {max_book_id - args.start_id + 1}\")\n    \n    # 方案3：分批处理支持\n    if args.batch_size:\n        total_books = max_book_id - args.start_id + 1\n        num_batches = (total_books + args.batch_size - 1) // args.batch_size\n        print(f\"📦 分批处理: 每批 {args.batch_size} 本，共 {num_batches} 批\")\n    print()\n    \n    # 设置环境变量，确保使用正式目录md/\n    # 必须在导入test_batch_sync之前设置\n    os.environ['OUTPUT_DIR'] = 'md'\n    \n    # 现在导入test_batch_sync（会读取环境变量）\n    import test_batch_sync\n    import asyncio\n    \n    print(\"⏳ 开始处理，这可能需要较长时间...\")\n    print(\"💡 提示：可以随时中断（Ctrl+C），下次运行会自动跳过已处理的ID（断点续传）\")\n    if args.batch_size:\n        print(f\"💡 分批处理：每批约 {args.batch_size * 0.5 / 60:.1f} 分钟\")\n    print(f\"💡 预计总时间：约 {((max_book_id - args.start_id + 1) * 0.5 / 60):.1f} 分钟（基于0.5秒/请求）\")\n    print(f\"💡 超时保护：600分钟（10小时）\\n\")\n    \n    sync_success = False\n    try:\n        # 方案3：分批处理\n        if args.batch_size:\n            current_start = args.start_id\n            batch_num = 1\n            \n            while current_start <= max_book_id:\n                current_end = min(current_start + args.batch_size - 1, max_book_id)\n                \n                print(\"\\n\" + \"=\" * 80)\n                print(f\"📦 批次 {batch_num}: 处理 ID {current_start} - {current_end}\")\n                print(\"=\" * 80)\n                \n                # 调用test_batch_sync的main函数，传入当前批次的范围\n                asyncio.run(test_batch_sync.main(current_start, current_end))\n                \n                print(f\"\\n✅ 批次 {batch_num} 完成\")\n                \n                # 准备下一批\n                current_start = current_end + 1\n                batch_num += 1\n                \n                # 如果不是最后一批，稍作停顿\n                if current_start <= max_book_id:\n                    print(\"⏸️  批次间暂停 5 秒...\")\n                    import time\n                    time.sleep(5)\n        else:\n            # 一次性处理所有书籍\n            asyncio.run(test_batch_sync.main(args.start_id, max_book_id))\n        \n        sync_success = True\n        print(\"\\n\" + \"=\" * 80)\n        print(\"✅ 全量同步完成！\")\n        print(\"=\" * 80)\n    except KeyboardInterrupt:\n        print(\"\\n\\n⚠️  用户中断，已保存进度\")\n        print(\"   下次运行时会自动从上次中断的地方继续（断点续传）\")\n        return\n    except Exception as e:\n        print(f\"\\n❌ 执行出错: {e}\")\n        import traceback\n        traceback.print_exc()\n        return\n    \n    # 只有同步成功才更新README和all_books.json\n    if sync_success:\n        print(\"\\n\" + \"=\" * 80)\n        print(\"📝 步骤4: 更新README.md和all_books.json\")\n        print(\"=\" * 80)\n        print()\n        \n        # 更新README.md的热门分类章节\n        print(\"📝 更新README.md热门分类章节...\")\n        try:\n            from update_readme_hot_categories import update_readme\n            if update_readme():\n                print(\"✅ README.md已更新\")\n            else:\n                print(\"⚠️  README.md更新失败，但继续执行\")\n        except Exception as e:\n            print(f\"⚠️  更新README.md失败: {e}\")\n        \n        # 生成all_books.json\n        print(\"\\n📝 生成all_books.json...\")\n        try:\n            import subprocess\n            result = subprocess.run(\n                [\"python3\", str(Path(__file__).parent.parent.parent / \"scripts\" / \"parse_md_to_json.py\")],\n                cwd=str(Path(__file__).parent.parent.parent),\n                capture_output=True,\n                text=True\n            )\n            if result.returncode == 0:\n                print(\"✅ all_books.json已生成\")\n                if result.stdout:\n                    print(result.stdout)\n            else:\n                print(f\"⚠️  生成all_books.json失败: {result.stderr}\")\n        except Exception as e:\n            print(f\"⚠️  生成all_books.json失败: {e}\")\n        \n        print(\"\\n\" + \"=\" * 80)\n        print(\"✅ 全量同步及后续更新完成！\")\n        print(\"=\" * 80)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "scripts/sync/test_batch_sync.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n批量测试脚本：根据书籍ID批量处理并生成md文件\n测试范围：ID 1-1000\n\"\"\"\n\nimport asyncio\nimport aiohttp\nimport time\nfrom pathlib import Path\nfrom collections import defaultdict\nfrom typing import Dict, List, Set\nimport json\nimport sys\n\n# 添加当前目录到路径\nsys.path.insert(0, str(Path(__file__).parent))\n\nfrom parse_book_detail_enhanced import parse_book_detail_enhanced\n\n# 尝试导入配置文件，如果不存在则使用环境变量\nimport os\ntry:\n    from config import BOOK_SITE_DOMAIN\nexcept ImportError:\n    # 如果配置文件不存在，尝试从环境变量读取（GitHub Actions会使用这种方式）\n    BOOK_SITE_DOMAIN = os.getenv(\"BOOK_SITE_DOMAIN\", \"\")\n    if not BOOK_SITE_DOMAIN:\n        print(\"⚠️  警告：未找到配置文件 config.py，也未设置环境变量 BOOK_SITE_DOMAIN\")\n        print(\"   本地运行：请复制 config.py.example 为 config.py 并配置 BOOK_SITE_DOMAIN\")\n        print(\"   GitHub Actions：请在 Repository Settings > Secrets 中添加 BOOK_SITE_DOMAIN\")\n        print(\"   或设置环境变量: export BOOK_SITE_DOMAIN='https://www.dushupai.com'\")\n        sys.exit(1)\n\n# 配置\nBASE_URL = f\"{BOOK_SITE_DOMAIN}/book-content-{{}}.html\"\n# 输出目录：根据环境变量决定是测试目录还是正式目录\nOUTPUT_DIR_ENV = os.getenv(\"OUTPUT_DIR\", \"md_test\")\nif OUTPUT_DIR_ENV == \"md\":\n    OUTPUT_DIR = Path(__file__).parent.parent.parent / \"md\"  # 正式目录\nelse:\n    OUTPUT_DIR = Path(__file__).parent.parent.parent / \"md_test\"  # 测试目录\nPROCESSED_IDS_FILE = OUTPUT_DIR / \"processed_ids.json\"\nSTATS_FILE = OUTPUT_DIR / \"stats.json\"\nMAX_BOOK_ID_FILE = OUTPUT_DIR / \"max_book_id.json\"  # 记录最大书籍ID\n\n# 并发配置\nMAX_CONCURRENT = 20  # 最大并发数\nREQUEST_DELAY = 0.5  # 请求延迟（秒）\n\n\ndef sanitize_filename(filename: str) -> str:\n    \"\"\"\n    清理文件名，移除不合法字符\n    \n    Args:\n        filename: 原始文件名\n    \n    Returns:\n        清理后的文件名\n    \"\"\"\n    # 替换不合法字符\n    invalid_chars = ['/', '\\\\', ':', '*', '?', '\"', '<', '>', '|']\n    for char in invalid_chars:\n        filename = filename.replace(char, '_')\n    \n    # 移除首尾空格和点\n    filename = filename.strip(' .')\n    \n    # 限制长度\n    if len(filename) > 200:\n        filename = filename[:200]\n    \n    return filename or \"未命名\"\n\n\ndef generate_md_file(tag_name: str, books: List[Dict], output_dir: Path) -> Path:\n    \"\"\"\n    生成Markdown文件\n    \n    Args:\n        tag_name: 标签名称\n        books: 书籍列表\n        output_dir: 输出目录\n    \n    Returns:\n        生成的文件路径\n    \"\"\"\n    output_dir.mkdir(parents=True, exist_ok=True)\n    \n    # 清理文件名\n    safe_filename = sanitize_filename(tag_name)\n    file_path = output_dir / f\"{safe_filename}.md\"\n    \n    # 过滤有效书籍（必须有书名和下载链接）\n    valid_books = []\n    for book in books:\n        title = book.get('title', '').strip()\n        # 优先使用实际下载链接（诚通网盘链接），避免使用下载页面链接（包含敏感域名）\n        download_url = book.get('download_url', '').strip()\n        \n        # 如果没有实际下载链接，跳过该书（不包含下载页面链接以保护隐私）\n        if not download_url:\n            continue\n        \n        if title and download_url:\n            valid_books.append({\n                'title': title,\n                'author': book.get('author', '未知').strip() or '未知',\n                'download_url': download_url\n            })\n    \n    if not valid_books:\n        return None\n    \n    # 生成Markdown内容\n    lines = []\n    lines.append(\"| 书名 | 作者 | epub/mobi/azw3 |\")\n    lines.append(\"| --- | --- | --- |\")\n    \n    for book in valid_books:\n        # 转义Markdown特殊字符\n        title_escaped = book['title'].replace('|', '\\\\|')\n        author_escaped = book['author'].replace('|', '\\\\|')\n        # 修改下载链接：将 ?pwd= 改成 ?p=\n        download_url = book['download_url'].replace('?pwd=', '?p=')\n        \n        # 隐私保护：如果下载链接包含敏感域名，移除该书籍（不生成到md文件）\n        # 这样可以确保GitHub仓库中不包含敏感域名\n        if download_url and BOOK_SITE_DOMAIN in download_url:\n            # 跳过包含敏感域名的链接（通常是下载页面链接）\n            # 只保留诚通网盘的实际下载链接\n            continue\n        \n        download_link = f\"[下载]({download_url})\"\n        \n        lines.append(f\"| {title_escaped} | {author_escaped} | {download_link} |\")\n    \n    # 写入文件\n    file_path.write_text('\\n'.join(lines), encoding='utf-8')\n    return file_path\n\n\nasync def fetch_book_async(session: aiohttp.ClientSession, book_id: int, semaphore: asyncio.Semaphore) -> Dict:\n    \"\"\"\n    异步获取书籍信息\n    \n    Args:\n        session: aiohttp会话\n        book_id: 书籍ID\n        semaphore: 信号量控制并发\n    \n    Returns:\n        书籍信息字典，失败返回None\n    \"\"\"\n    async with semaphore:\n        url = BASE_URL.format(book_id)\n        \n        try:\n            # 添加延迟避免请求过快\n            await asyncio.sleep(REQUEST_DELAY)\n            \n            # 使用同步请求（因为parse_book_detail_enhanced是同步的）\n            # 在实际生产环境中，可以改为异步版本\n            loop = asyncio.get_event_loop()\n            result = await loop.run_in_executor(None, parse_book_detail_enhanced, url)\n            \n            # 检查是否成功获取到书名（判断书籍是否存在）\n            if result.get('title'):\n                result['book_id'] = str(book_id)\n                return result\n            else:\n                return None\n                \n        except Exception as e:\n            print(f\"❌ 处理书籍ID {book_id} 时出错: {e}\")\n            return None\n\n\nasync def batch_process_books(book_ids: List[int]) -> Dict[str, List[Dict]]:\n    \"\"\"\n    批量处理书籍\n    \n    Args:\n        book_ids: 书籍ID列表\n    \n    Returns:\n        按标签分类的书籍字典 {tag: [books]}\n    \"\"\"\n    # 按标签分类的书籍\n    books_by_tag = defaultdict(list)\n    \n    # 创建信号量控制并发\n    semaphore = asyncio.Semaphore(MAX_CONCURRENT)\n    \n    # 创建aiohttp会话\n    async with aiohttp.ClientSession() as session:\n        # 创建任务列表\n        tasks = [fetch_book_async(session, book_id, semaphore) for book_id in book_ids]\n        \n        # 处理结果\n        completed = 0\n        total = len(tasks)\n        \n        for coro in asyncio.as_completed(tasks):\n            book_data = await coro\n            completed += 1\n            \n            if book_data:\n                # 按标签分类\n                tags = book_data.get('tags', [])\n                if tags:\n                    for tag in tags:\n                        books_by_tag[tag].append(book_data)\n                else:\n                    # 如果没有标签，使用分类作为标签\n                    category = book_data.get('category', '未分类')\n                    if category:\n                        books_by_tag[category].append(book_data)\n                    else:\n                        books_by_tag['未分类'].append(book_data)\n                \n                # 显示进度\n                if completed % 10 == 0 or completed == total:\n                    print(f\"📊 进度: {completed}/{total} ({completed*100//total}%) - 已找到 {len(books_by_tag)} 个标签\")\n            else:\n                if completed % 50 == 0 or completed == total:\n                    print(f\"📊 进度: {completed}/{total} ({completed*100//total}%)\")\n    \n    return dict(books_by_tag)\n\n\ndef save_processed_ids(book_ids: Set[int]):\n    \"\"\"保存已处理的ID列表\"\"\"\n    PROCESSED_IDS_FILE.parent.mkdir(parents=True, exist_ok=True)\n    with open(PROCESSED_IDS_FILE, 'w', encoding='utf-8') as f:\n        json.dump(sorted(book_ids), f, ensure_ascii=False, indent=2)\n\n\ndef load_processed_ids() -> Set[int]:\n    \"\"\"加载已处理的ID列表\"\"\"\n    if PROCESSED_IDS_FILE.exists():\n        with open(PROCESSED_IDS_FILE, 'r', encoding='utf-8') as f:\n            return set(json.load(f))\n    return set()\n\n\ndef save_stats(stats: Dict):\n    \"\"\"保存统计信息\"\"\"\n    with open(STATS_FILE, 'w', encoding='utf-8') as f:\n        json.dump(stats, f, ensure_ascii=False, indent=2)\n\n\ndef save_max_book_id(max_id: int):\n    \"\"\"保存最大书籍ID\"\"\"\n    with open(MAX_BOOK_ID_FILE, 'w', encoding='utf-8') as f:\n        json.dump({'max_book_id': max_id, 'last_updated': time.strftime('%Y-%m-%d %H:%M:%S')}, \n                 f, ensure_ascii=False, indent=2)\n\n\ndef load_max_book_id() -> int:\n    \"\"\"加载最大书籍ID\"\"\"\n    if MAX_BOOK_ID_FILE.exists():\n        with open(MAX_BOOK_ID_FILE, 'r', encoding='utf-8') as f:\n            data = json.load(f)\n            return data.get('max_book_id', 0)\n    return 0\n\n\ndef generate_hot_categories_index(books_by_tag: Dict[str, List[Dict]], output_dir: Path) -> Path:\n    \"\"\"\n    生成热门分类索引文件（按照README.md格式）\n    \n    Args:\n        books_by_tag: 按标签分类的书籍字典\n        output_dir: 输出目录\n    \n    Returns:\n        生成的文件路径\n    \"\"\"\n    output_dir.mkdir(parents=True, exist_ok=True)\n    file_path = output_dir / \"热门分类.md\"\n    \n    # 按书籍数量排序\n    sorted_tags = sorted(books_by_tag.items(), key=lambda x: len(x[1]), reverse=True)\n    \n    # 生成内容\n    lines = []\n    lines.append(\"# 📚 热门分类\")\n    lines.append(\"\")\n    lines.append(\"> **💡 使用 Ctrl+F 快速搜索关键词，或点击下方标签直接进入分类页面**\")\n    lines.append(\"\")\n    lines.append(\"## 🔥 热门分类\")\n    lines.append(\"\")\n    \n    # 每行8个标签\n    items_per_line = 8\n    for i in range(0, len(sorted_tags), items_per_line):\n        batch = sorted_tags[i:i + items_per_line]\n        line_items = []\n        \n        for tag, books in batch:\n            count = len(books)\n            # 清理文件名（与generate_md_file中的逻辑一致）\n            safe_filename = sanitize_filename(tag)\n            link = f\"- [{tag}({count})]({safe_filename}.md)\"\n            line_items.append(link)\n        \n        # 用 | 分隔，每行8个\n        line = \"  | \".join(line_items)\n        lines.append(line)\n    \n    # 写入文件\n    file_path.write_text('\\n'.join(lines), encoding='utf-8')\n    return file_path\n\n\nasync def main(start_id: int = 1, end_id: int = 1000):\n    \"\"\"\n    主函数\n    \n    Args:\n        start_id: 起始书籍ID（默认：1）\n        end_id: 结束书籍ID（默认：1000）\n    \"\"\"\n    print(\"=\" * 80)\n    print(f\"🚀 开始批量处理书籍（ID: {start_id}-{end_id}）\")\n    print(\"=\" * 80)\n    \n    # 创建输出目录\n    OUTPUT_DIR.mkdir(parents=True, exist_ok=True)\n    print(f\"📁 输出目录: {OUTPUT_DIR}\")\n    \n    # 生成书籍ID列表\n    book_ids = list(range(start_id, end_id + 1))\n    print(f\"📚 待处理书籍数量: {len(book_ids)}\")\n    \n    # 加载已处理的ID（用于断点续传）\n    processed_ids = load_processed_ids()\n    if processed_ids:\n        print(f\"📋 已处理ID数量: {len(processed_ids)}\")\n        book_ids = [bid for bid in book_ids if bid not in processed_ids]\n        print(f\"📚 剩余待处理: {len(book_ids)}\")\n    \n    if not book_ids:\n        print(\"✅ 所有书籍已处理完成！\")\n        return\n    \n    # 开始处理\n    start_time = time.time()\n    books_by_tag = await batch_process_books(book_ids)\n    elapsed_time = time.time() - start_time\n    \n    # 统计信息\n    total_books = sum(len(books) for books in books_by_tag.values())\n    total_tags = len(books_by_tag)\n    \n    print(f\"\\n📊 处理完成！\")\n    print(f\"  - 总耗时: {elapsed_time:.2f} 秒\")\n    print(f\"  - 成功处理: {total_books} 本书\")\n    print(f\"  - 标签数量: {total_tags} 个\")\n    \n    # 生成md文件\n    print(f\"\\n📝 开始生成Markdown文件...\")\n    generated_files = []\n    \n    for tag, books in sorted(books_by_tag.items()):\n        file_path = generate_md_file(tag, books, OUTPUT_DIR)\n        if file_path:\n            generated_files.append(str(file_path))\n            # 如果文件数量很多，减少输出频率\n            if len(generated_files) <= 50 or len(generated_files) % 50 == 0:\n                print(f\"  ✅ {tag}: {len(books)} 本书 -> {file_path.name}\")\n    \n    print(f\"\\n✅ 共生成 {len(generated_files)} 个Markdown文件\")\n    \n    # 保存统计信息\n    stats = {\n        'total_processed': total_books,\n        'total_tags': total_tags,\n        'generated_files': len(generated_files),\n        'elapsed_time': elapsed_time,\n        'tags': {tag: len(books) for tag, books in sorted(books_by_tag.items())}\n    }\n    save_stats(stats)\n    \n    # 保存已处理的ID\n    all_processed = processed_ids | set(book_ids)\n    save_processed_ids(all_processed)\n    \n    # 保存最大书籍ID（用于增量更新）\n    if book_ids:\n        max_id = max(book_ids)\n        save_max_book_id(max_id)\n        print(f\"\\n📊 最大书籍ID: {max_id}（已保存，用于增量更新）\")\n    \n    # 生成热门分类索引文件\n    print(f\"\\n📝 生成热门分类索引文件...\")\n    hot_categories_file = generate_hot_categories_index(books_by_tag, OUTPUT_DIR)\n    print(f\"  ✅ 热门分类索引: {hot_categories_file.name}\")\n    \n    print(f\"\\n📈 统计信息已保存: {STATS_FILE}\")\n    print(\"=\" * 80)\n    print(\"✅ 测试完成！\")\n    print(\"=\" * 80)\n\n\nif __name__ == \"__main__\":\n    import argparse\n    parser = argparse.ArgumentParser(description='批量处理书籍并生成md文件')\n    parser.add_argument('--start-id', type=int, default=1, help='起始书籍ID（默认：1）')\n    parser.add_argument('--end-id', type=int, default=1000, help='结束书籍ID（默认：1000）')\n    args = parser.parse_args()\n    \n    asyncio.run(main(args.start_id, args.end_id))\n"
  },
  {
    "path": "scripts/sync/update_readme_hot_categories.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\n更新README.md中的\"热门分类\"章节\n根据md目录下的所有md文件生成热门分类列表\n\"\"\"\n\nimport re\nfrom pathlib import Path\nfrom collections import defaultdict\n\nROOT = Path(__file__).parent.parent.parent\nREADME_FILE = ROOT / \"README.md\"\nMD_DIR = ROOT / \"md\"\n\n\ndef count_books_in_md_file(md_file: Path) -> int:\n    \"\"\"统计md文件中的书籍数量\"\"\"\n    try:\n        content = md_file.read_text(encoding='utf-8')\n        # 计算表格行数（排除表头）\n        lines = content.split('\\n')\n        count = 0\n        in_table = False\n        for line in lines:\n            if '| 书名' in line or '书名 |' in line:\n                in_table = True\n                continue\n            if in_table and line.strip().startswith('|') and '---' not in line:\n                # 检查是否是数据行（包含下载链接）\n                if '[下载](' in line:\n                    count += 1\n        return count\n    except Exception as e:\n        print(f\"⚠️  读取文件失败 {md_file}: {e}\")\n        return 0\n\n\ndef get_all_categories() -> dict:\n    \"\"\"获取所有分类及其书籍数量\"\"\"\n    categories = {}\n    \n    if not MD_DIR.exists():\n        print(f\"⚠️  md目录不存在: {MD_DIR}\")\n        return categories\n    \n    md_files = list(MD_DIR.glob(\"*.md\"))\n    \n    # 排除热门分类.md文件本身\n    md_files = [f for f in md_files if f.name != \"热门分类.md\"]\n    \n    for md_file in md_files:\n        category = md_file.stem  # 去掉.md扩展名\n        count = count_books_in_md_file(md_file)\n        if count > 0:\n            categories[category] = count\n    \n    return categories\n\n\ndef generate_hot_categories_section(categories: dict) -> str:\n    \"\"\"生成热门分类章节内容\"\"\"\n    # 按书籍数量排序\n    sorted_categories = sorted(categories.items(), key=lambda x: x[1], reverse=True)\n    \n    lines = []\n    lines.append(\"## 🔥 热门分类\")\n    lines.append(\"\")\n    \n    # 每行8个标签\n    items_per_line = 8\n    for i in range(0, len(sorted_categories), items_per_line):\n        batch = sorted_categories[i:i + items_per_line]\n        line_items = []\n        \n        for category, count in batch:\n            link = f\"- [{category}({count})](md/{category}.md)\"\n            line_items.append(link)\n        \n        # 用 | 分隔，每行8个\n        line = \"  | \".join(line_items)\n        lines.append(line)\n    \n    return '\\n'.join(lines)\n\n\ndef update_readme():\n    \"\"\"更新README.md中的热门分类章节\"\"\"\n    if not README_FILE.exists():\n        print(f\"❌ README.md不存在: {README_FILE}\")\n        return False\n    \n    # 读取README内容\n    content = README_FILE.read_text(encoding='utf-8')\n    \n    # 获取所有分类\n    print(\"📊 正在统计分类...\")\n    categories = get_all_categories()\n    print(f\"✅ 找到 {len(categories)} 个分类\")\n    \n    if not categories:\n        print(\"⚠️  未找到任何分类，跳过更新\")\n        return False\n    \n    # 生成新的热门分类章节\n    new_section = generate_hot_categories_section(categories)\n    \n    # 查找并替换\"热门分类\"章节\n    # 匹配从 \"## 🔥 热门分类\" 开始到下一个 \"##\" 或文件结尾\n    # 使用更宽松的匹配：允许不同的空行数量\n    pattern = r'(## 🔥 热门分类\\s*\\n\\s*\\n)(.*?)(?=\\n\\s*## |\\Z)'\n    \n    match = re.search(pattern, content, re.DOTALL | re.MULTILINE)\n    if match:\n        # 替换匹配的内容\n        new_content = re.sub(pattern, r'\\1' + new_section, content, flags=re.DOTALL | re.MULTILINE)\n        \n        # 写入文件\n        README_FILE.write_text(new_content, encoding='utf-8')\n        print(f\"✅ README.md已更新\")\n        print(f\"   - 分类数量: {len(categories)}\")\n        print(f\"   - 总书籍数: {sum(categories.values())}\")\n        return True\n    else:\n        print(\"⚠️  未找到'热门分类'章节，无法更新\")\n        return False\n\n\nif __name__ == \"__main__\":\n    print(\"=\" * 80)\n    print(\"📝 更新README.md热门分类章节\")\n    print(\"=\" * 80)\n    print()\n    \n    success = update_readme()\n    \n    if success:\n        print(\"\\n✅ 更新完成！\")\n    else:\n        print(\"\\n❌ 更新失败！\")\n        exit(1)\n"
  },
  {
    "path": "sponsors.md",
    "content": "# 赞助人名单\n\n感谢所有支持电子书下载宝库的朋友们！\n\n## 💝 微信赞赏\n\n扫描下方二维码进行微信赞赏：\n\n<img src=\".github/赞赏码.jpg\" alt=\"微信赞赏码\" width=\"200\">\n\n## 📝 赞助记录\n\n| 日期 | 赞助人 | 金额 | 留言 |\n|------|--------|------|------|\n| 2026-11-11 22:31:38 | 半城烟火 | ￥1 | 谢谢分享 |\n| 2026-01-09 16:14:24 | 薯片 | ￥5 | 辛苦辛苦 |\n| 2026-01-08 18:29:27 | 贾哥 | ￥10 | 谢谢整理这么详尽的书目！|\n| 2026-01-07 00:01:09 | 匿名书友 | ￥5 | 感谢分享👍🏻👍🏻👍🏻 |\n| 2026-01-06 10:11:06 | amusive321 | ￥20 | 很赞的电子书宝库 |\n| 2026-01-02 23:07:20 |  ， | ￥5 | 谢谢 |\n| 2025-12-27 08:07:28 | Lan | ￥15 | 感谢无私分享 |\n| 2025-12-24 19:14:04 | 花开富贵 | ￥10 | 谢谢分享 |\n| 2025-12-23 13:05:59 | 友善啊，朋友 | ￥5 | 感谢你的分享，这是对社会有益的事 |\n| 2025-12-16 18:56:54 | 匿名书友| ￥5 | 谢谢你帮忙整理这些资料。 |\n| 2025-11-27 17:55:44 | rain | ￥3 | 学生党没有多少钱，请您喝杯可乐，谢谢您|\n| 2025-11-27 14:19:00 | 匿名书友 | ￥5 | 无 |\n| 2025-11-27 12:07:21 | 👽 | ￥10 | 无 |\n| 2025-9-28 17:16:51 | Jackson George | ￥5 | 谢谢分享辛苦了[玫瑰] |\n| 2025-9-29 18:21:17 | Ooi Kean Shin | ￥5 | 谢谢分享 |\n\n\n---\n\n*感谢您的支持！*\n"
  }
]